Compare commits
25 commits
develop
...
feature/tr
Author | SHA1 | Date | |
---|---|---|---|
d63d48a5d7 | |||
c6e70da598 | |||
24013c65e8 | |||
9282e0c89b | |||
70e4b44d76 | |||
d408858976 | |||
85fdc7abd4 | |||
06eeffc4b6 | |||
6d8c0d17dc | |||
e0447c3428 | |||
4b5f01c74f | |||
cab14ae5c2 | |||
bd854b37af | |||
b19dac2bf6 | |||
35d540bf29 | |||
2097f3aaa4 | |||
2ecdee9245 | |||
e3939f1086 | |||
476d236575 | |||
f9079e137c | |||
73cfc23cd9 | |||
02a25ff4dd | |||
fba0ff5101 | |||
59a8f5879c | |||
ecb1bd5046 |
3
.vscode/settings.json
vendored
|
@ -17,5 +17,8 @@
|
|||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"[svelte]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"files.associations": {
|
||||
"*.protojson": "json"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1270,7 +1270,7 @@
|
|||
"moped=no"
|
||||
],
|
||||
"icon": {
|
||||
"path": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G11.svg",
|
||||
"path": "./assets/layers/traffic_sign/images/nl/G/Nederlands_verkeersbord_G11.svg",
|
||||
"class": "medium"
|
||||
}
|
||||
},
|
||||
|
@ -1288,7 +1288,7 @@
|
|||
"moped=designated"
|
||||
],
|
||||
"icon": {
|
||||
"path": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G12a.svg",
|
||||
"path": "./assets/layers/traffic_sign/images/nl/G/Nederlands_verkeersbord_G12a.svg",
|
||||
"class": "medium"
|
||||
}
|
||||
},
|
||||
|
@ -1306,7 +1306,7 @@
|
|||
"moped=no"
|
||||
],
|
||||
"icon": {
|
||||
"path": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G13.svg",
|
||||
"path": "./assets/layers/traffic_sign/images/nl/G/Nederlands_verkeersbord_G13.svg",
|
||||
"class": "medium"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
[
|
||||
{
|
||||
"path": "Nederlands_verkeersbord_G11.svg",
|
||||
"license": "CC0",
|
||||
"authors": [
|
||||
"Ministerie van Infrastructuur en Waterstaat"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Nederlands_verkeersbord_G11.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Nederlands_verkeersbord_G12a.svg",
|
||||
"license": "CC0",
|
||||
"authors": [
|
||||
"Ministerie van Infrastructuur en Waterstaat"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Nederlands_verkeersbord_G12a.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Nederlands_verkeersbord_G13.svg",
|
||||
"license": "CC0",
|
||||
"authors": [
|
||||
"Ministerie van Infrastructuur en Waterstaat"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Nederlands_verkeersbord_G13.svg"
|
||||
]
|
||||
}
|
||||
]
|
46
assets/layers/traffic_sign/README.md
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Traffic sign layer
|
||||
|
||||
As you might have noticed, the traffic sign theme and this layer is quite complex and large.
|
||||
To keep this manageable, this is generated from a JSON file per country.
|
||||
|
||||
## Adding a new country
|
||||
|
||||
Adding a country is as easy as creating a new JSON(`.protojson`) file in the `signs` folder named after the country code and adding the required images in a subfolder named after the country code.
|
||||
|
||||
## Regenerating the layer
|
||||
|
||||
To regenerate the layer, run `npm run generate:traffic_signs`.
|
||||
|
||||
## The JSON file format
|
||||
|
||||
The JSON files are formatted formatted based on [this](https://osm.rlin.eu/traffic_sign/schema/schema.json) JSON schema.
|
||||
A small example, not showing all properties is shown below.
|
||||
|
||||
```jsonc
|
||||
{
|
||||
// Indication for the JSON schema
|
||||
"$schema": "https://osm.rlin.eu/traffic_sign/schema/schema.json",
|
||||
// Name of the file
|
||||
"name": "Dutch Traffic Signs",
|
||||
// Country code
|
||||
"country": "NL",
|
||||
// Description of the file
|
||||
"description": "Traffic signs in the Netherlands",
|
||||
// Version of the file, can be either a date, a version number or something else
|
||||
"version": "1.0",
|
||||
// Object containing all traffic signs
|
||||
"traffic_signs": [
|
||||
{
|
||||
// ID of the traffic sign, as to be used in OSM
|
||||
"id": "NL:G11",
|
||||
// English name of the traffic sign
|
||||
"name": "Mandatory cycleway",
|
||||
// Image object, can be remote or as in this case local
|
||||
"image": {
|
||||
// File path of the image starting from the country folder in the images folder
|
||||
"file": "G/Nederlands_verkeersbord_G11.svg"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
179
assets/layers/traffic_sign/generateSigns.ts
Normal file
|
@ -0,0 +1,179 @@
|
|||
import { readFileSync, writeFileSync, readdirSync } from "fs";
|
||||
import type { LayerConfigJson } from "../../../Models/ThemeConfig/Json/LayerConfigJson";
|
||||
import PointRenderingConfigJson from "../../../Models/ThemeConfig/Json/PointRenderingConfigJson";
|
||||
import { MappingConfigJson, QuestionableTagRenderingConfigJson } from "../../../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson";
|
||||
import { TagRenderingConfigJson } from "../../../Models/ThemeConfig/Json/TagRenderingConfigJson";
|
||||
|
||||
interface SignFile {
|
||||
name: string;
|
||||
description: string;
|
||||
version: string;
|
||||
country: string;
|
||||
traffic_signs: TrafficSign[];
|
||||
}
|
||||
|
||||
interface TrafficSign {
|
||||
id: string;
|
||||
name: string;
|
||||
image: LocalImage;
|
||||
use?: {
|
||||
way: boolean;
|
||||
node: boolean;
|
||||
};
|
||||
implications?: Implication[];
|
||||
}
|
||||
|
||||
interface LocalImage {
|
||||
file: string;
|
||||
}
|
||||
|
||||
interface Implication {
|
||||
key: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
interface Translations {
|
||||
[key: string]: Translation;
|
||||
}
|
||||
|
||||
interface Translation {
|
||||
[key: string]: string;
|
||||
}
|
||||
|
||||
const worldWideMappings: MappingConfigJson[] = [
|
||||
{
|
||||
if: "traffic_sign=city_limit",
|
||||
then: {
|
||||
en: "City limit",
|
||||
},
|
||||
icon: "./assets/layers/traffic_sign/images/city_limit.svg"
|
||||
},
|
||||
{
|
||||
if: "traffic_sign=maxspeed",
|
||||
then: {
|
||||
en: "Maximum speed",
|
||||
},
|
||||
}
|
||||
]
|
||||
|
||||
function main(){
|
||||
// Open original file
|
||||
const originalFile = readFileSync("traffic_sign.json", "utf8");
|
||||
const originalLayer = JSON.parse(originalFile) as LayerConfigJson
|
||||
// Save current tagrendering, so we can use the translations in there
|
||||
const originalTagRenderings = originalLayer.tagRenderings as QuestionableTagRenderingConfigJson[];
|
||||
const originalSignTagRendering = originalTagRenderings.find(t => t.id === "traffic_sign") as QuestionableTagRenderingConfigJson;
|
||||
const originalSignMappings = originalSignTagRendering.mappings;
|
||||
const originalSignMapRendering = originalLayer.mapRendering[0] as PointRenderingConfigJson;
|
||||
const originalSignIcon = originalSignMapRendering.icon as TagRenderingConfigJson;
|
||||
|
||||
// Create new list of mappings
|
||||
const mappings: MappingConfigJson[] = [];
|
||||
const iconMappings: MappingConfigJson[] = [];
|
||||
const translationMemory: Translations = {};
|
||||
|
||||
// Add world wide mappings
|
||||
for(const mapping of worldWideMappings){
|
||||
// Add them to the list of mappings
|
||||
mappings.push({
|
||||
...mapping,
|
||||
then: {
|
||||
en: mapping.then.en,
|
||||
...originalSignMappings.find(m => m.if === mapping.if)?.then,
|
||||
}
|
||||
})
|
||||
// Add them to the list of icon mappings, if they have an icon
|
||||
if(mapping.icon){
|
||||
iconMappings.push({
|
||||
if: mapping.if,
|
||||
then: mapping.icon,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// Check which different files there are
|
||||
const files = readdirSync("signs");
|
||||
for(const file of files){
|
||||
const signFile = readFileSync("signs/" + file, "utf8");
|
||||
const signs = JSON.parse(signFile) as SignFile;
|
||||
for(const sign of signs.traffic_signs){
|
||||
// Find item in traffic_signs.json file and save the translations
|
||||
const originalMapping = originalSignMappings.find(m => m.if === "traffic_sign=" + sign.id);
|
||||
translationMemory[sign.name] = {
|
||||
...originalMapping?.then,
|
||||
en: sign.name,
|
||||
}
|
||||
|
||||
// Check if the sign starts with the country
|
||||
if(!sign.id.toLowerCase().startsWith(signs.country.toLowerCase())){
|
||||
throw new Error("Sign " + sign.id + " does not start with country " + signs.country + ", you should fix this!");
|
||||
}
|
||||
|
||||
// Create new mapping, reusing original translations
|
||||
const iconPath = "./assets/layers/traffic_sign/images/"+signs.country.toLowerCase()+"/"+sign.image.file
|
||||
const mapping: MappingConfigJson = {
|
||||
if: "traffic_sign=" + sign.id,
|
||||
then: {
|
||||
...originalMapping?.then,
|
||||
en: sign.name,
|
||||
},
|
||||
hideInAnswer: "_country!="+signs.country.toLowerCase(),
|
||||
icon: {
|
||||
path: iconPath,
|
||||
class: "large"
|
||||
}
|
||||
};
|
||||
const icon: MappingConfigJson = {
|
||||
if: "traffic_sign~" + sign.id + "(;.*)*$",
|
||||
then: iconPath
|
||||
|
||||
};
|
||||
mappings.push(mapping);
|
||||
iconMappings.push(icon);
|
||||
}
|
||||
}
|
||||
|
||||
// Re-run over all mappings, and add translations
|
||||
for(const mapping of mappings){
|
||||
const memoryTranslation = translationMemory[mapping.then.en];
|
||||
if(memoryTranslation){
|
||||
mapping.then = {
|
||||
...mapping.then,
|
||||
...memoryTranslation,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Create new layer
|
||||
const newLayer: LayerConfigJson = {
|
||||
...originalLayer,
|
||||
tagRenderings: [
|
||||
originalLayer.tagRenderings[0],
|
||||
{
|
||||
...originalSignTagRendering,
|
||||
mappings: mappings,
|
||||
}
|
||||
],
|
||||
mapRendering: [
|
||||
{
|
||||
...originalSignMapRendering,
|
||||
icon: {
|
||||
...originalSignIcon,
|
||||
mappings: iconMappings,
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
// Re-add all other tagrenderings
|
||||
for (let i = 2; i < originalLayer.tagRenderings.length; i++) {
|
||||
newLayer.tagRenderings.push(originalLayer.tagRenderings[i]);
|
||||
}
|
||||
|
||||
// Write new layer to file
|
||||
writeFileSync("traffic_sign.json", JSON.stringify(newLayer, null, 2));
|
||||
|
||||
|
||||
}
|
||||
|
||||
main();
|
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.713px" viewBox="0 0 95.797 83.713" enable-background="new 0 0 95.797 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.318,0.877,49.759,0,47.96,0c-1.719,0-2.479,0.837-3.398,2.112L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.143,0.68,6.976c1.04,1.036,2.238,1.515,3.597,1.435l86.385-0.04c1-0.159,1.959-0.638,2.719-1.395
|
||||
c1.479-1.515,1.84-3.707,1.079-5.581L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.318,0.877,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.837-3.398,2.112L0.95,75.294c-1.519,1.992-1.16,5.143,0.68,6.976c1.04,1.036,2.238,1.515,3.597,1.435l86.385-0.04
|
||||
c1-0.159,1.959-0.638,2.719-1.395c1.479-1.515,1.84-3.707,1.079-5.581L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.466 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.466
|
||||
14.702,72.902 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M46.881,53.172c-1.479,0-2.398-1.594-1.679-2.87
|
||||
c0.76-1.275,2.599-1.275,3.358,0C49.279,51.578,48.36,53.172,46.881,53.172z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M46.881,53.172c-1.479,0-2.398-1.594-1.679-2.87
|
||||
c0.76-1.275,2.599-1.275,3.358,0C49.279,51.578,48.36,53.172,46.881,53.172z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M58.273,62.379c-1.479,0-2.398-1.595-1.679-2.869
|
||||
c0.76-1.275,2.598-1.275,3.358,0C60.672,60.784,59.753,62.379,58.273,62.379z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.273,62.379c-1.479,0-2.398-1.595-1.679-2.869
|
||||
c0.76-1.275,2.598-1.275,3.358,0C60.672,60.784,59.753,62.379,58.273,62.379z"/>
|
||||
<path fill="#120C0E" d="M60.113,61.741c0.239-0.358,0.399-0.797,0.399-1.275c0-1.274-1-2.271-2.239-2.271
|
||||
c-0.599,0-1.159,0.238-1.558,0.599l-7.996-6.18c0.28-0.358,0.439-0.837,0.439-1.314c0-1.275-1-2.272-2.238-2.272
|
||||
c-0.64,0-1.2,0.239-1.599,0.639l-1.479-1.156c0-0.16-0.12-0.2,0-0.438l0.359-0.479l-0.239-0.279l0.279-0.638l0.24,0.12l0.839-1.555
|
||||
l2.599,1.674c0.48,0.319,1.999-0.119,2.518-0.159c0.72-0.04,1.48-0.279,1.998,0.239l5.837,4.663c0.16,0.159,0.2,0.119,0.28,0.279
|
||||
c0.159,0.238,0.159,0.559,0.159,0.757l0.2,2.671c0,0.239,0.16,0.479,0.24,0.678c0.08,0.039,0.719,0.478,0.719,0.598l2.879,2.591
|
||||
c0.64,0.598,0.04,1.195-0.68,1.674l0.2,0.24l-0.44,0.558l-0.398-0.12l-0.4,0.479c-0.2,0.318-0.28-0.04-0.4-0.04L60.113,61.741z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M60.113,61.741
|
||||
c0.239-0.358,0.399-0.797,0.399-1.275c0-1.274-1-2.271-2.239-2.271c-0.599,0-1.159,0.238-1.558,0.599l-7.996-6.18
|
||||
c0.28-0.358,0.439-0.837,0.439-1.314c0-1.275-1-2.272-2.238-2.272c-0.64,0-1.2,0.239-1.599,0.639l-1.479-1.156
|
||||
c0-0.16-0.12-0.2,0-0.438l0.359-0.479l-0.239-0.279l0.279-0.638l0.24,0.12l0.839-1.555l2.599,1.674
|
||||
c0.48,0.319,1.999-0.119,2.518-0.159c0.72-0.04,1.48-0.279,1.998,0.239l5.837,4.663c0.16,0.159,0.2,0.119,0.28,0.279
|
||||
c0.159,0.238,0.159,0.559,0.159,0.757l0.2,2.671c0,0.239,0.16,0.479,0.24,0.678c0.08,0.039,0.72,0.478,0.72,0.598l2.878,2.591
|
||||
c0.641,0.598,0.04,1.195-0.68,1.674l0.2,0.24l-0.44,0.558l-0.398-0.12l-0.4,0.479c-0.2,0.318-0.28-0.04-0.4-0.04L60.113,61.741z"/>
|
||||
<path fill="#FFFFFF" d="M58.154,52.335l-0.08,2.87l-4.397-3.588l1.639-1.952l2.639,2.072C58.194,51.977,58.074,52.215,58.154,52.335
|
||||
z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M58.154,52.335l-0.08,2.87l-4.397-3.588
|
||||
l1.639-1.952l2.639,2.072C58.194,51.977,58.074,52.215,58.154,52.335z"/>
|
||||
<path fill="#FFFFFF" d="M52.677,47.552l2.199,1.754l-1.679,1.913l-3.878-3.108l2.719-0.758c0.119-0.04,0.199,0.079,0.32,0
|
||||
C52.437,47.432,52.597,47.472,52.677,47.552z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M52.677,47.552l2.199,1.754l-1.679,1.913
|
||||
l-3.878-3.108l2.719-0.758c0.119-0.04,0.199,0.079,0.32,0C52.437,47.432,52.597,47.472,52.677,47.552z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M58.273,61.343c-0.679,0-1.079-0.717-0.759-1.315
|
||||
c0.319-0.598,1.198-0.598,1.52,0C59.394,60.626,58.954,61.343,58.273,61.343z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M58.273,61.343
|
||||
c-0.679,0-1.079-0.717-0.759-1.315c0.319-0.598,1.198-0.598,1.52,0C59.394,60.626,58.954,61.343,58.273,61.343z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M46.881,52.136c-0.68,0-1.08-0.718-0.759-1.315
|
||||
c0.319-0.599,1.199-0.599,1.518,0C48,51.418,47.561,52.136,46.881,52.136z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M46.881,52.135c-0.68,0-1.08-0.717-0.759-1.314
|
||||
c0.319-0.599,1.199-0.599,1.518,0C48,51.418,47.561,52.135,46.881,52.135z"/>
|
||||
<path fill="#120C0E" d="M66.749,62.738c-0.68-0.04-0.48-0.279-1.68,0c-1,0.239-1.919,0.837-3.037,0.877
|
||||
c-1.56,0.039-1.56-0.877-3.438-0.996c-1.438-0.08-2.599,1.155-3.837,1.035c-2-0.238-1.76-1.115-3.559-1.075
|
||||
c-2.159,0.04-2.758,1.714-4.877,0.797c-0.6-0.278-1.679-1.355-3.438-0.599c-0.639,0.28-1.479,0.798-2.438,0.798V50.581h-4.877
|
||||
l-6.236,17.777h37.417V62.738z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M66.749,62.737c-0.68-0.039-0.48-0.278-1.68,0
|
||||
c-1,0.24-1.919,0.838-3.037,0.878c-1.56,0.039-1.56-0.878-3.438-0.996c-1.438-0.08-2.599,1.155-3.837,1.035
|
||||
c-2-0.238-1.76-1.115-3.559-1.075c-2.159,0.04-2.758,1.714-4.877,0.797c-0.6-0.278-1.679-1.355-3.438-0.599
|
||||
c-0.639,0.28-1.479,0.798-2.438,0.798V50.581h-4.877l-6.236,17.777h37.417V62.737z"/>
|
||||
</svg>
|
After (image error) Size: 5.9 KiB |
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.703px" viewBox="0 0 95.797 83.703" enable-background="new 0 0 95.797 83.703" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.197,2.271C51.318,0.876,49.759,0,47.96,0c-1.72,0-2.479,0.836-3.398,2.112L0.95,75.294
|
||||
c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.036,2.238,1.435,3.597,1.435h86.306c1,0,2.039-0.678,2.799-1.435
|
||||
c1.479-1.515,1.839-3.706,1.078-5.58L52.197,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.72,0-2.479,0.836-3.398,2.112L0.95,75.294c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.036,2.238,1.435,3.597,1.435h86.306
|
||||
c1,0,2.039-0.678,2.799-1.435c1.479-1.515,1.839-3.706,1.078-5.58L52.197,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.465 14.701,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.465
|
||||
14.701,72.902 "/>
|
||||
<path fill="#120C0E" d="M67.147,56.919c-0.439-0.438-0.999-0.957-1.278-1.515c-0.96-2.592-3.478-4.425-6.396-4.425
|
||||
c-2.878,0-5.316,1.753-6.315,4.265c-0.92,1.873-2.838,3.149-5.078,3.149c-2.358,0-4.477-1.356-5.317-3.349
|
||||
c-0.959-2.591-3.397-4.504-6.315-4.504c-2.878,0-5.317,1.753-6.316,4.265c-0.361,0.758-0.84,1.635-1.479,2.153v5.579h38.495V56.919z
|
||||
"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M67.147,56.919
|
||||
c-0.439-0.438-0.999-0.957-1.278-1.515c-0.96-2.592-3.478-4.425-6.396-4.425c-2.878,0-5.316,1.753-6.315,4.265
|
||||
c-0.92,1.873-2.838,3.149-5.078,3.149c-2.358,0-4.477-1.356-5.317-3.349c-0.959-2.591-3.397-4.504-6.315-4.504
|
||||
c-2.878,0-5.317,1.753-6.316,4.265c-0.361,0.758-0.84,1.635-1.479,2.153v5.579h38.495V56.919z"/>
|
||||
</svg>
|
After (image error) Size: 2.1 KiB |
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="96.082px" height="84.307px" viewBox="0 0 96.082 84.307" enable-background="new 0 0 96.082 84.307" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M6.729,84.268c-2.004,0.21-3.166-0.419-4.643-1.886c-2.427-2.409-2.796-5.97-0.791-8.588L42.29,3.251
|
||||
c0.159-0.314-0.264,0.367-0.105,0.104c0.844-1.414,2.163-2.514,3.851-3.037c3.061-0.943,6.121,0.261,7.704,2.88l41.575,71.485
|
||||
c1.003,1.676,0.949,3.3,0.264,5.237c-1.055,2.775-3.745,4.398-6.595,4.347H6.729z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M6.729,84.268
|
||||
c-2.004,0.21-3.166-0.419-4.643-1.886c-2.427-2.409-2.796-5.97-0.791-8.588L42.29,3.251c0.159-0.314-0.264,0.367-0.105,0.104
|
||||
c0.844-1.414,2.163-2.514,3.851-3.037c3.061-0.943,6.121,0.261,7.704,2.88l41.575,71.485c1.003,1.676,0.949,3.3,0.264,5.237
|
||||
c-1.055,2.775-3.745,4.398-6.595,4.347H6.729z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="12.85,73.583 47.038,14.773 81.28,73.583 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.368" stroke-miterlimit="3.863" points="12.85,73.583 47.038,14.773
|
||||
81.28,73.583 "/>
|
||||
<path fill="#120C0E" d="M58.329,59.236c-2.427-3.091-6.278-4.924-10.552-4.924c-4.327,0-8.125,1.99-10.605,5.133
|
||||
c-1.952,2.252-4.801,3.928-8.02,3.928h-5.381v4.137l48.541-0.053l0.052-4.398h-6.015C63.13,63.058,60.228,61.488,58.329,59.236z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.329,59.236
|
||||
c-2.427-3.091-6.278-4.924-10.552-4.924c-4.327,0-8.125,1.99-10.605,5.133c-1.952,2.252-4.801,3.928-8.02,3.928h-5.381v4.137
|
||||
l48.541-0.053l0.052-4.398h-6.015C63.13,63.058,60.228,61.488,58.329,59.236z"/>
|
||||
</svg>
|
After (image error) Size: 2 KiB |
|
@ -0,0 +1,43 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.705px" viewBox="0 0 95.797 83.705" enable-background="new 0 0 95.797 83.705" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.318,0.877,49.759,0,47.96,0c-1.719,0-2.479,0.837-3.397,2.112L0.95,75.293
|
||||
c-1.519,1.993-1.16,5.143,0.68,6.976c1.04,1.037,2.238,1.436,3.597,1.436h86.305c1,0,2.039-0.678,2.799-1.436
|
||||
c1.479-1.515,1.84-3.707,1.079-5.58L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.318,0.877,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.837-3.397,2.112L0.95,75.293c-1.519,1.993-1.16,5.143,0.68,6.976c1.04,1.037,2.238,1.436,3.597,1.436h86.305
|
||||
c1,0,2.039-0.678,2.799-1.436c1.479-1.515,1.84-3.707,1.079-5.58L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.466 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.466
|
||||
14.702,72.902 "/>
|
||||
<path fill="#120C0E" d="M56.515,51.099l-0.72-0.238l-1.118,3.626l-2.119-0.677l1.119-3.668l-14.87-4.424l-1.2,3.747l-2.198-0.718
|
||||
l1.04-3.707l-0.8-0.278c0.2-2.233-0.399-4.903,1-7.135c0.399-0.479,0.6-0.439,0.959-0.678l5.437-6.178l15.23,4.543l0.919,7.853
|
||||
c0.041,0.238,0.121,0.438,0.361,0.559C60.272,45.917,58.074,49.185,56.515,51.099z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M56.515,51.099l-0.72-0.238l-1.118,3.626
|
||||
l-2.119-0.677l1.119-3.668l-14.87-4.424l-1.2,3.747l-2.198-0.718l1.04-3.707l-0.8-0.278c0.2-2.233-0.399-4.903,1-7.135
|
||||
c0.399-0.479,0.6-0.439,0.959-0.678l5.437-6.178l15.23,4.543l0.919,7.853c0.041,0.238,0.121,0.438,0.361,0.559
|
||||
C60.272,45.917,58.074,49.185,56.515,51.099z"/>
|
||||
<path fill="#FFFFFF" d="M38.686,37.428l4.677-5.421l14.111,4.225l0.839,6.936C51.679,40.098,46.881,38.663,38.686,37.428z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M38.686,37.428l4.677-5.421l14.111,4.225
|
||||
l0.839,6.936C51.679,40.098,46.881,38.663,38.686,37.428z"/>
|
||||
<path fill="#120C0E" d="M32.29,71.906l7.916-6.417c0.12-0.12,0.199-0.319,0.199-0.519c0-0.239-0.04-0.518-0.239-0.598l-8.355-3.946
|
||||
c-0.52-0.239-0.839-0.877-0.839-1.515c0-0.717,0.479-1.275,1.08-1.634l3.077-1.835h2.279l-4.558,2.832
|
||||
c-0.16,0.118-0.239,0.318-0.239,0.518c0,0.238,0.119,0.438,0.32,0.557l8.994,3.907c0.76,0.319,1.28,1.036,1.28,1.913
|
||||
c0,0.559-0.16,1.036-0.52,1.435l-6.557,5.302H32.29z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M32.29,71.906l7.916-6.417
|
||||
c0.12-0.12,0.199-0.319,0.199-0.519c0-0.239-0.04-0.518-0.239-0.598l-8.355-3.946c-0.52-0.239-0.839-0.877-0.839-1.515
|
||||
c0-0.717,0.479-1.275,1.08-1.634l3.077-1.835h2.279l-4.558,2.832c-0.16,0.118-0.239,0.318-0.239,0.518
|
||||
c0,0.238,0.119,0.438,0.32,0.557l8.994,3.906c0.76,0.32,1.28,1.037,1.28,1.914c0,0.559-0.16,1.036-0.52,1.435l-6.557,5.302H32.29z"
|
||||
/>
|
||||
<path fill="#120C0E" d="M52.317,71.945l6.596-6.377c0.121-0.119,0.201-0.318,0.201-0.518c0-0.239-0.32-0.479-0.48-0.598
|
||||
l-9.074-3.906c-0.92-0.398-1.159-0.359-1.319-1.436c-0.12-0.718,0.2-1.036,0.76-1.354l4.077-2.313h2.358l-4.438,2.552
|
||||
c-0.159,0.08-0.439,0.519-0.439,0.718c0,0.238,0.4,0.559,0.6,0.637l9.474,3.986c0.76,0.319,1.279,1.037,1.279,1.914
|
||||
c0,0.558-0.039,1.116-0.398,1.515l-5.037,5.222L52.317,71.945z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M52.317,71.945l6.596-6.377
|
||||
c0.121-0.119,0.201-0.318,0.201-0.518c0-0.239-0.32-0.479-0.48-0.598l-9.074-3.906c-0.92-0.398-1.159-0.359-1.319-1.436
|
||||
c-0.12-0.718,0.2-1.036,0.76-1.355l4.077-2.313h2.358l-4.438,2.552c-0.159,0.08-0.439,0.519-0.439,0.718
|
||||
c0,0.238,0.4,0.559,0.6,0.637l9.474,3.986c0.76,0.318,1.279,1.037,1.279,1.914c0,0.558-0.039,1.116-0.398,1.515l-5.037,5.222
|
||||
L52.317,71.945z"/>
|
||||
</svg>
|
After (image error) Size: 4.1 KiB |
109
assets/layers/traffic_sign/images/be/A/Belgian_road_sign_A17.svg
Normal file
|
@ -0,0 +1,109 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.704px" viewBox="0 0 95.797 83.704" enable-background="new 0 0 95.797 83.704" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0c-1.719,0-2.479,0.837-3.398,2.111L0.95,75.293
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.976c1.039,1.036,2.238,1.436,3.597,1.436h86.305c1,0,2.039-0.679,2.799-1.436
|
||||
c1.479-1.515,1.839-3.707,1.079-5.58L52.198,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.837-3.398,2.111L0.95,75.293c-1.519,1.993-1.16,5.142,0.68,6.976c1.039,1.036,2.238,1.436,3.597,1.436h86.305
|
||||
c1,0,2.039-0.679,2.799-1.436c1.479-1.515,1.839-3.707,1.079-5.58L52.198,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.901 47.92,15.464 14.702,72.901 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.901 47.92,15.464
|
||||
14.702,72.901 "/>
|
||||
<path fill="#120C0E" d="M20.697,67.919L75.143,67.8v-0.718H41.564v-6.576h1.758c1.879-4.066,1.72-8.092,1.32-12.516
|
||||
c-0.28-0.797-0.28-1.196-1.2-2.073l-5.477-10.921l-0.839,1.116l4.598,8.928l-9.435-0.358l-3.518,5.699h5.637v0.678h-5.877
|
||||
l-1.639,2.551h11.273v0.877H26.494l-1.479,2.352h9.594v0.957H24.535l-1.559,2.551h14.671v6.696H20.697V67.919z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M20.697,67.919L75.143,67.8v-0.718H41.564v-6.576
|
||||
h1.758c1.879-4.066,1.72-8.092,1.32-12.516c-0.28-0.797-0.28-1.196-1.2-2.073l-5.477-10.921l-0.839,1.116l4.598,8.928l-9.435-0.358
|
||||
l-3.518,5.699h5.637v0.678h-5.877l-1.639,2.551h11.273v0.877H26.494l-1.479,2.352h9.594v0.957H24.535l-1.559,2.551h14.671v6.696
|
||||
H20.697V67.919z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.565,51.656c-1.759,0-2.838-1.873-1.959-3.388
|
||||
c0.879-1.515,3.039-1.555,3.918,0C42.403,49.783,41.324,51.656,39.565,51.656z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M39.565,51.656c-1.759,0-2.838-1.873-1.959-3.388
|
||||
c0.879-1.515,3.039-1.555,3.918,0C42.403,49.783,41.324,51.656,39.565,51.656z"/>
|
||||
<polygon fill="#120C0E" points="42.403,65.368 55.795,35.514 57.233,36.511 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="42.403,65.368 55.795,35.514
|
||||
57.233,36.511 "/>
|
||||
<polygon fill="#120C0E" points="57.233,49.106 58.194,50.222 42.604,65.807 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="57.233,49.106 58.194,50.222
|
||||
42.604,65.807 "/>
|
||||
<polygon fill="#120C0E" points="42.604,66.165 58.833,55.522 59.474,56.52 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="42.604,66.165 58.833,55.522
|
||||
59.474,56.52 "/>
|
||||
<polygon fill="#120C0E" points="43.124,66.205 68.747,57.954 69.187,59.39 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="43.124,66.205 68.747,57.954
|
||||
69.187,59.39 "/>
|
||||
<path fill="#120C0E" d="M53.317,34.079c0-0.2,0-0.398,0-0.598c0-0.479,0.839-0.797,0.679-1.355c0.72,0,0.761-0.877,1.239-0.877
|
||||
c0.16,0.119,0.36,0.239,0.521,0.358c0.079,0.199,0.399,0.358,0.279,0.559c-0.439,0.677-0.399,1.195-0.64,1.195
|
||||
c-0.279,0.398-0.359,0.279-0.52,0.718c-0.199,0.04-0.439,0.08-0.6,0.238c-0.24-0.04-0.479-0.079-0.72-0.079
|
||||
C53.637,33.919,53.597,33.84,53.317,34.079z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M53.317,34.079c0-0.2,0-0.398,0-0.599
|
||||
c0-0.478,0.839-0.796,0.679-1.354c0.72,0,0.761-0.877,1.239-0.877c0.16,0.119,0.36,0.239,0.521,0.358
|
||||
c0.079,0.199,0.399,0.358,0.279,0.559c-0.439,0.677-0.399,1.195-0.64,1.195c-0.279,0.398-0.359,0.279-0.52,0.718
|
||||
c-0.199,0.04-0.439,0.08-0.6,0.238c-0.24-0.04-0.479-0.079-0.72-0.079C53.637,33.919,53.597,33.84,53.317,34.079z"/>
|
||||
<path fill="#120C0E" d="M49.96,36.629c0.158,0.12,0.359,0.28,0.518,0.399c0.24,0.159,0.281-0.518,0.721-0.159
|
||||
c-0.04-0.2,0.24-0.12,0.319-0.24c0.08-0.038,0.12-0.238,0.24-0.278c0.04-0.358,0.28-0.598-0.04-1.036c-0.24,0-0.6,0.12-0.839,0.159
|
||||
C50.278,35.673,49.919,35.952,49.96,36.629z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M49.96,36.629c0.158,0.12,0.359,0.28,0.518,0.399
|
||||
c0.24,0.159,0.281-0.518,0.721-0.159c-0.04-0.2,0.24-0.12,0.319-0.24c0.08-0.038,0.12-0.238,0.24-0.278
|
||||
c0.04-0.358,0.28-0.598-0.04-1.036c-0.24,0-0.6,0.12-0.839,0.159C50.278,35.673,49.919,35.952,49.96,36.629z"/>
|
||||
<path fill="#120C0E" d="M57.075,41.931c0.158,0,0.279,0,0.398,0.08c0,0.04,0.041,0.119,0.08,0.159c0.08-0.04,0.121,0.04,0.16,0.04
|
||||
c0.08,0.199,0.32,0.12,0.44,0.239c0-0.04,0.04-0.119,0.079-0.159c0.12,0,0.16-0.16,0.28-0.199c0.16-0.08,0.399,0,0.56-0.08
|
||||
c0.08-0.159,0.32-0.159,0.4-0.318c-0.041-0.24,0.199-0.479,0.039-0.719c-0.359-0.238-0.439-0.757-0.879-0.876
|
||||
c-0.04-0.04-0.08-0.12-0.08-0.159c-0.24-0.239-0.56,0.119-0.84-0.12c-0.039,0-0.119,0.04-0.16,0.08
|
||||
c-0.039,0.04-0.08,0.119-0.08,0.159c-0.479-0.04-0.08,0.718-0.318,0.758C56.755,40.855,56.555,41.612,57.075,41.931z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M57.075,41.931c0.158,0,0.279,0,0.398,0.08
|
||||
c0,0.04,0.041,0.119,0.08,0.159c0.08-0.04,0.121,0.04,0.16,0.04c0.08,0.199,0.32,0.12,0.44,0.239c0-0.04,0.04-0.119,0.079-0.159
|
||||
c0.12,0,0.16-0.16,0.28-0.199c0.16-0.08,0.399,0,0.56-0.08c0.08-0.159,0.32-0.159,0.4-0.318c-0.041-0.24,0.199-0.479,0.039-0.719
|
||||
c-0.359-0.238-0.439-0.757-0.879-0.876c-0.04-0.04-0.08-0.12-0.08-0.159c-0.24-0.239-0.56,0.119-0.84-0.12
|
||||
c-0.039,0-0.119,0.04-0.16,0.08c-0.039,0.04-0.08,0.119-0.08,0.159c-0.479-0.04-0.08,0.718-0.318,0.758
|
||||
C56.755,40.855,56.555,41.612,57.075,41.931z"/>
|
||||
<path fill="#120C0E" d="M57.474,45.957c-0.08,0.159-0.119-0.479-0.08-0.679c0.601-0.597,1.28-0.278,1.479-0.597
|
||||
c0.08-0.04,0.12,0.04,0.161,0.04c0.08,0.119,0.08,0.238,0.158,0.358c0.121,0.04,0.32,0.08,0.4,0.198
|
||||
c-0.08,0.08-0.199,0.16-0.24,0.28c-0.039,0-0.08-0.08-0.16-0.04c-0.078,0.08-0.239,0.04-0.279,0.199
|
||||
c-0.319-0.119-0.439,0.199-0.68,0.279C57.954,46.076,57.554,45.797,57.474,45.957z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M57.474,45.957
|
||||
c-0.08,0.159-0.119-0.479-0.08-0.679c0.601-0.597,1.28-0.278,1.479-0.597c0.08-0.04,0.12,0.04,0.161,0.04
|
||||
c0.08,0.119,0.08,0.238,0.158,0.358c0.121,0.04,0.32,0.08,0.4,0.198c-0.08,0.08-0.199,0.16-0.24,0.28c-0.039,0-0.08-0.08-0.16-0.04
|
||||
c-0.078,0.08-0.239,0.04-0.279,0.199c-0.319-0.119-0.439,0.199-0.68,0.279C57.954,46.076,57.554,45.797,57.474,45.957z"/>
|
||||
<path fill="#120C0E" d="M59.073,50.58c0-0.119,0-0.238,0-0.358c0.08,0,0.119-0.08,0.199-0.04c0.439-0.198,0.561-0.837,0.76-1.155
|
||||
c0.081,0,0.12,0,0.2,0c0.12,0.158,0.32,0.278,0.52,0.238c-0.04,0.08,0.04,0.12,0.04,0.16c0.12,0.12,0.24,0.238,0.359,0.358
|
||||
c0.04,0.12,0.04,0.2,0,0.318c-0.04,0-0.119,0.04-0.159,0.08c-0.04,0.16-0.12,0.359-0.08,0.519c-0.24-0.04-0.359,0.199-0.52,0.279
|
||||
c-0.36,0.04-0.601-0.239-0.999-0.04C59.272,50.819,59.192,50.7,59.073,50.58z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M59.073,50.58c0-0.119,0-0.238,0-0.358
|
||||
c0.08,0,0.119-0.08,0.199-0.04c0.439-0.199,0.561-0.837,0.76-1.155c0.081,0,0.12,0,0.2,0c0.12,0.158,0.32,0.278,0.52,0.238
|
||||
c-0.04,0.08,0.04,0.12,0.04,0.16c0.12,0.12,0.24,0.238,0.359,0.358c0.04,0.12,0.04,0.199,0,0.318c-0.04,0-0.119,0.04-0.159,0.08
|
||||
c-0.04,0.16-0.12,0.359-0.08,0.519c-0.24-0.04-0.359,0.199-0.52,0.279c-0.36,0.04-0.601-0.239-0.999-0.04
|
||||
C59.272,50.819,59.192,50.7,59.073,50.58z"/>
|
||||
<path fill="#120C0E" d="M64.03,52.732c0-0.278,0.119-0.996-0.16-1.116c0.279-0.158,0.439-0.478,0.76-0.518c0.08,0,0.119,0,0.2,0
|
||||
c-0.04,0.079,0.04,0.119,0.04,0.159c0.08,0-0.08,0,0,0c0.159,0,0.279,0.04,0.439,0.04c0.199,0.717,1.439,0.358,1.08,0.917
|
||||
c0,0.12,0.039,0.279,0.039,0.398c-0.48,0.199-0.88,0.279-1.279,0.558c-0.12,0.04-0.279,0.08-0.4,0.12
|
||||
c-0.119-0.16-0.199-0.398-0.398-0.479C64.229,52.772,64.149,52.772,64.03,52.732z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M64.03,52.732c0-0.278,0.119-0.996-0.16-1.116
|
||||
c0.279-0.158,0.439-0.478,0.76-0.518c0.08,0,0.119,0,0.2,0c-0.04,0.079,0.04,0.119,0.04,0.159c0.08,0-0.08,0,0,0
|
||||
c0.159,0,0.279,0.04,0.439,0.04c0.199,0.717,1.439,0.358,1.08,0.917c0,0.12,0.039,0.279,0.039,0.398
|
||||
c-0.48,0.199-0.88,0.279-1.279,0.558c-0.12,0.04-0.279,0.08-0.4,0.12c-0.119-0.16-0.199-0.398-0.398-0.479
|
||||
C64.229,52.772,64.149,52.772,64.03,52.732z"/>
|
||||
<path fill="#120C0E" d="M64.351,57.795c0.238,0,0.479-0.039,0.679-0.159c0,0.04,0-0.04,0,0c0,0.159,0.439,0.398,0.52,0.159
|
||||
c0.28-0.119,0.399-0.438,0.72-0.438c0.199-0.159,0.16-0.438,0.16-0.678c0-0.159-0.24-0.319-0.359-0.398
|
||||
c-0.16-0.079-0.64-0.399-0.561-0.359c-0.239,0.12-0.359,0.399-0.639,0.438c-0.16,0.04-0.281,0.08-0.4,0.12
|
||||
c-0.16,0-0.08,0.358-0.24,0.319c-0.08,0.159-0.16,0.318-0.238,0.479C63.911,57.476,64.149,57.795,64.351,57.795z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M64.351,57.795c0.238,0,0.479-0.039,0.679-0.159
|
||||
c0,0.04,0-0.04,0,0c0,0.159,0.439,0.398,0.52,0.159c0.28-0.119,0.399-0.438,0.72-0.438c0.199-0.159,0.16-0.438,0.16-0.678
|
||||
c0-0.159-0.24-0.319-0.359-0.398c-0.16-0.079-0.64-0.399-0.561-0.359c-0.239,0.12-0.359,0.399-0.639,0.438
|
||||
c-0.16,0.04-0.281,0.08-0.4,0.12c-0.16,0-0.08,0.358-0.24,0.319c-0.08,0.159-0.16,0.318-0.238,0.479
|
||||
C63.911,57.476,64.149,57.795,64.351,57.795z"/>
|
||||
<path fill="#120C0E" d="M69.826,62.617c-0.399,0.16-0.839-0.198-1.239-0.039c-0.039-0.039-0.24-0.239-0.24-0.359
|
||||
c-0.039,0,0.04,0,0,0c-0.079-0.079-0.199-0.198-0.279-0.278c0-0.08,0-0.12,0-0.199c0.04-0.119,0.16-0.199,0.24-0.279
|
||||
c0.079,0,0.119,0,0.199,0c0.32-0.318,0.6-0.678,0.92-0.956c0.359,0,0.959,0.119,0.959,0.558c0.12,0.04,0.24,0.04,0.361,0.08
|
||||
c-0.121,0.079-0.281,0.199-0.401,0.278c0,0.12-0.04,0.2-0.04,0.319c-0.079,0.119-0.159,0.239-0.239,0.359
|
||||
c-0.04,0.118-0.08,0.278-0.12,0.398C69.866,62.539,69.906,62.578,69.826,62.617z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M69.826,62.617
|
||||
c-0.399,0.16-0.839-0.198-1.239-0.039c-0.039-0.039-0.24-0.239-0.24-0.359c-0.039,0,0.041,0,0,0
|
||||
c-0.079-0.079-0.199-0.198-0.279-0.278c0-0.08,0-0.12,0-0.199c0.04-0.119,0.16-0.199,0.24-0.279c0.08,0,0.119,0,0.199,0
|
||||
c0.32-0.318,0.6-0.678,0.92-0.956c0.359,0,0.959,0.119,0.959,0.558c0.12,0.04,0.24,0.04,0.361,0.08
|
||||
c-0.121,0.079-0.281,0.199-0.401,0.278c0,0.12-0.04,0.2-0.04,0.319c-0.079,0.119-0.159,0.239-0.239,0.359
|
||||
c-0.04,0.118-0.08,0.278-0.12,0.398C69.866,62.539,69.906,62.578,69.826,62.617z"/>
|
||||
</svg>
|
After (image error) Size: 11 KiB |
|
@ -0,0 +1,78 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.705px" viewBox="0 0 95.797 83.705" enable-background="new 0 0 95.797 83.705" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.319,0.877,49.759,0,47.96,0c-1.719,0-2.479,0.838-3.397,2.113L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.977c1.04,1.035,2.238,1.434,3.598,1.434h86.306c0.999,0,2.039-0.678,2.8-1.434
|
||||
c1.479-1.516,1.838-3.708,1.078-5.582L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.319,0.877,49.759,0,47.961,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.977c1.04,1.035,2.238,1.434,3.598,1.434h86.306
|
||||
c0.999,0,2.039-0.678,2.8-1.434c1.479-1.516,1.838-3.708,1.078-5.582L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.139,72.903 47.92,15.465 14.702,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.139,72.903 47.92,15.465
|
||||
14.702,72.903 "/>
|
||||
<path fill="#191C21" d="M80.821,72.983H44.282c5.756-6.538,4.398-9.008,6.236-13.673c0.32-2.191,2.559-3.984,4.357-6.934
|
||||
c0.16-1.037-1.559-3.189-1.639-5.78c0-0.558-0.279-1.036-0.279-1.595c-0.279-1.793-1.479-5.102-1.799-6.497
|
||||
c-0.88-3.866,0.359,0.677,4.396-9.607L80.821,72.983z"/>
|
||||
<path fill="none" stroke="#191C21" stroke-width="0" stroke-miterlimit="3.863" d="M80.821,72.983H44.282
|
||||
c5.756-6.538,4.398-9.008,6.236-13.673c0.32-2.191,2.559-3.984,4.357-6.935c0.16-1.036-1.559-3.188-1.639-5.779
|
||||
c0-0.558-0.279-1.036-0.279-1.595c-0.279-1.793-1.479-5.102-1.799-6.497c-0.879-3.866,0.359,0.677,4.396-9.607L80.821,72.983z"/>
|
||||
<path fill="#120C0E" d="M35.449,71.906c0.319,0.16,0.719-0.039,1,0.121c0.199-0.041,0.399-0.08,0.599-0.08
|
||||
c0.2,0.239,1.519-1.953,0.12-2.432c-0.359,0-0.719-0.08-1.08-0.04c-0.52-0.12-0.799-0.479-1.199-0.677
|
||||
c-0.68,0-1.319-0.041-1.599,0.438c-0.48,0.638-0.359,0.838-0.359,1.594C33.169,71.906,34.608,72.625,35.449,71.906z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M35.449,71.906c0.319,0.16,0.719-0.039,1,0.121
|
||||
c0.199-0.041,0.399-0.08,0.599-0.08c0.2,0.239,1.519-1.953,0.12-2.432c-0.359,0-0.719-0.08-1.08-0.04
|
||||
c-0.52-0.12-0.799-0.479-1.199-0.677c-0.68,0-1.319-0.041-1.599,0.438c-0.48,0.638-0.359,0.838-0.359,1.594
|
||||
C33.169,71.906,34.608,72.625,35.449,71.906z"/>
|
||||
<path fill="#120C0E" d="M43.124,68.598c-0.76-0.079-0.6-0.599-0.64-0.638c0.04-0.318-0.04-0.159,0.08-0.479
|
||||
c0.12-0.08,0.08-0.238,0.16-0.358c0-0.12-0.2-0.319-0.16-0.438c-0.319-0.24-0.16-0.678-0.12-0.996c0.16-0.439,0.68-0.758,1.2-0.599
|
||||
c0.04,0.12,0.319,0.239,0.359,0.359c0.199,0.159,0.399,0.239,0.64,0.198c0.159,0.121,0.319,0.2,0.479,0.319
|
||||
c0.359,0.359,0.04,1.196,0.04,1.794c-0.2,0.479-0.6,0.598-0.92,0.637C43.803,68.876,43.283,68.478,43.124,68.598z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M43.124,68.598c-0.76-0.08-0.6-0.599-0.64-0.638
|
||||
c0.04-0.318-0.04-0.159,0.08-0.479c0.12-0.08,0.08-0.238,0.16-0.358c0-0.12-0.2-0.319-0.16-0.438c-0.319-0.24-0.16-0.678-0.12-0.996
|
||||
c0.16-0.439,0.68-0.758,1.2-0.599c0.04,0.12,0.319,0.239,0.359,0.359c0.199,0.159,0.399,0.239,0.64,0.198
|
||||
c0.159,0.121,0.319,0.2,0.479,0.319c0.359,0.359,0.04,1.196,0.04,1.794c-0.2,0.479-0.6,0.598-0.92,0.637
|
||||
C43.803,68.876,43.283,68.478,43.124,68.598z"/>
|
||||
<path fill="#120C0E" d="M37.327,64.213c0.959,0.398,2.398,0.2,2.718-0.04c0-0.039,0.28-0.158,0.319-0.198
|
||||
c0.2-0.319,0.32-0.519,0.4-0.917c-0.08-0.279-0.24-0.479-0.2-0.758c-0.16-0.318-0.56-0.518-0.879-0.559
|
||||
c-0.24-0.198-0.359-0.278-0.52-0.518c-0.359-0.119-0.759-0.238-1.16-0.199c-0.879,0.359-0.839,1.475-1.359,1.634
|
||||
c0,0.2,0,0.559,0.12,0.718C36.967,63.337,37.287,63.935,37.327,64.213z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M37.327,64.213c0.959,0.398,2.398,0.2,2.718-0.04
|
||||
c0-0.039,0.28-0.158,0.319-0.198c0.2-0.319,0.32-0.519,0.4-0.917c-0.08-0.279-0.24-0.479-0.2-0.758
|
||||
c-0.16-0.318-0.56-0.518-0.879-0.559c-0.24-0.198-0.359-0.278-0.52-0.518c-0.359-0.119-0.759-0.238-1.16-0.199
|
||||
c-0.879,0.359-0.839,1.475-1.359,1.634c0,0.2,0,0.559,0.12,0.718C36.967,63.337,37.287,63.935,37.327,64.213z"/>
|
||||
<path fill="#120C0E" d="M41.564,57.996c-0.12-0.318,0.2-0.559,0.239-0.837c0.72-0.718,0.92-0.798,0.92-1.993
|
||||
c0.439-1.036,1.079-2.033,2.038-1.275c0.12,0.079,0.64,0.598,1.918,0.318c0.04,0.041,0.72,0.359,0.76,0.398
|
||||
c0.159,0.398,0.159,1.037,0.479,1.355c0.6,1.953,1.399,1.715,0.719,4.225c0.361,0.519-0.479,1.117-0.519,1.037
|
||||
c-0.16,0.598-0.44,0.399-0.52,0.718c-0.039,0.278-0.759,0.04-0.919-0.279c-0.359-0.159-0.759-0.039-1.119-0.079
|
||||
c-0.479-0.32-0.88-0.639-1.36-0.918c-0.479-0.358-1.079-0.119-1.558-0.557c-0.28-0.559-0.68-1.396-0.879-1.715
|
||||
c0-0.04-0.08-0.08-0.04-0.16C41.645,58.156,41.604,58.116,41.564,57.996z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M41.564,57.996
|
||||
c-0.12-0.318,0.2-0.559,0.239-0.837c0.72-0.718,0.92-0.798,0.92-1.993c0.439-1.036,1.079-2.033,2.038-1.275
|
||||
c0.12,0.079,0.64,0.598,1.918,0.318c0.04,0.041,0.72,0.359,0.76,0.398c0.159,0.398,0.159,1.037,0.479,1.355
|
||||
c0.6,1.953,1.399,1.715,0.719,4.225c0.361,0.519-0.479,1.117-0.519,1.037c-0.159,0.598-0.44,0.399-0.52,0.718
|
||||
c-0.039,0.278-0.759,0.04-0.919-0.28c-0.359-0.158-0.759-0.038-1.119-0.078c-0.479-0.32-0.88-0.639-1.36-0.918
|
||||
c-0.479-0.358-1.079-0.119-1.558-0.557c-0.28-0.559-0.68-1.396-0.879-1.715c0-0.04-0.08-0.08-0.04-0.16
|
||||
C41.645,58.156,41.604,58.116,41.564,57.996z"/>
|
||||
<path fill="#120C0E" d="M37.607,51.778c-0.36,0.358-0.959,0.278-1,0.837c-0.12,0.039-0.199,0.16-0.32,0.199
|
||||
c0,0.877-0.479,1.634-0.319,2.512c0.799,0.557,2.398,0.158,2.758-0.279c0.6-0.359,0.16-2.591-0.52-3.469
|
||||
C38.126,51.458,37.727,51.818,37.607,51.778z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M37.607,51.778c-0.36,0.358-0.959,0.278-1,0.837
|
||||
c-0.12,0.039-0.199,0.16-0.32,0.199c0,0.877-0.479,1.634-0.319,2.512c0.799,0.557,2.398,0.158,2.758-0.279
|
||||
c0.6-0.359,0.16-2.591-0.52-3.469C38.126,51.458,37.727,51.818,37.607,51.778z"/>
|
||||
<path fill="#120C0E" d="M40.166,45.042c0.04-0.519,0.64-0.997,0.879-1.476c0.439-0.916,1.999-1.474,2.718-1.156
|
||||
c0.88,0.4,1.2,0.08,1.479,0.24c1.76,0.957,2.039,2.432,1.439,4.465c-1.279,1.154-0.959,3.586-3.117,2.948
|
||||
c-0.879-0.278-1.799-1.155-2.278-1.514c-0.56-0.438-1.76-2.192-1.56-2.632C39.766,45.798,40.085,45.082,40.166,45.042z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M40.166,45.042
|
||||
c0.04-0.519,0.64-0.997,0.879-1.476c0.439-0.916,1.999-1.474,2.718-1.156c0.88,0.4,1.2,0.08,1.479,0.24
|
||||
c1.76,0.957,2.039,2.432,1.439,4.465c-1.279,1.154-0.959,3.586-3.117,2.948c-0.879-0.278-1.799-1.155-2.278-1.514
|
||||
c-0.56-0.438-1.76-2.192-1.56-2.632C39.766,45.798,40.085,45.082,40.166,45.042z"/>
|
||||
<path fill="#120C0E" d="M47.121,39.062c-0.079-0.358,0.32-0.199,0.88-0.757c0.239-0.2,0.558-0.278,0.798-0.518
|
||||
c0.121,0.04,0.24-0.04,0.36-0.04c0.04-0.08,0.04-0.08,0.12-0.12c0.359,0,0.56-0.159,0.919,0.16c0.521,0.638,0.56,2.231,0.241,2.631
|
||||
c-0.801,0.398-0.681,0.917-1.32,0.917c-0.439,0-1.359-0.28-1.559-0.718C47.241,40.537,47.201,39.461,47.121,39.062z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M47.121,39.062
|
||||
c-0.079-0.358,0.32-0.199,0.88-0.757c0.239-0.2,0.558-0.278,0.798-0.518c0.121,0.04,0.24-0.04,0.36-0.04
|
||||
c0.04-0.08,0.04-0.08,0.12-0.12c0.359,0,0.56-0.159,0.919,0.16c0.521,0.638,0.56,2.231,0.241,2.631
|
||||
c-0.801,0.398-0.681,0.917-1.32,0.917c-0.439,0-1.359-0.28-1.559-0.718C47.241,40.537,47.201,39.461,47.121,39.062z"/>
|
||||
</svg>
|
After (image error) Size: 7.7 KiB |
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.713px" viewBox="0 0 95.797 83.713" enable-background="new 0 0 95.797 83.713" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#ED1C24" d="M43.6,2.272C44.479,0.877,46.039,0,47.837,0c1.719,0,2.479,0.838,3.398,2.113l43.613,73.182
|
||||
c1.518,1.993,1.158,5.142-0.681,6.977c-1.039,1.035-2.237,1.514-3.599,1.434L4.184,83.666c-1-0.16-1.959-0.639-2.718-1.395
|
||||
c-1.479-1.516-1.838-3.708-1.08-5.582L43.6,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M43.6,2.272C44.479,0.877,46.039,0,47.837,0
|
||||
c1.719,0,2.479,0.837,3.398,2.113l43.613,73.182c1.518,1.993,1.158,5.142-0.681,6.977c-1.039,1.035-2.237,1.514-3.599,1.434
|
||||
L4.184,83.666c-1-0.16-1.959-0.639-2.718-1.395c-1.479-1.516-1.838-3.708-1.08-5.582L43.6,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="14.658,72.903 47.917,15.465 81.177,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="14.658,72.903 47.917,15.465
|
||||
81.177,72.903 "/>
|
||||
<path fill="#120C0E" d="M41.282,40.218l-2.918,3.07l1.319,3.746l4.517,1.275c6.636,1.913,11.632,8.051,11.632,15.266v4.704
|
||||
l3.519-2.233l3.397,2.233v-4.704c0-10.563-7.195-19.49-16.949-22.082L41.282,40.218z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M41.282,40.218l-2.918,3.07l1.319,3.746
|
||||
l4.517,1.275c6.636,1.913,11.632,8.051,11.632,15.266v4.704l3.519-2.233l3.397,2.233v-4.704c0-10.563-7.195-19.49-16.949-22.082
|
||||
L41.282,40.218z"/>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 1.9 KiB |
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.816px" height="83.729px" viewBox="0 0 95.816 83.729" enable-background="new 0 0 95.816 83.729" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M43.608,2.271C44.488,0.876,46.047,0,47.846,0c1.72,0,2.479,0.836,3.399,2.113L94.867,75.31
|
||||
c1.52,1.992,1.159,5.143-0.68,6.977c-1.039,1.037-2.239,1.515-3.598,1.436L4.185,83.681c-1-0.159-1.959-0.638-2.719-1.395
|
||||
c-1.479-1.516-1.84-3.707-1.08-5.582L43.608,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M43.608,2.271C44.488,0.876,46.048,0,47.846,0
|
||||
c1.72,0,2.479,0.836,3.399,2.113L94.867,75.31c1.52,1.992,1.159,5.143-0.68,6.977c-1.039,1.037-2.239,1.515-3.598,1.436
|
||||
L4.185,83.681c-1-0.159-1.959-0.638-2.719-1.395c-1.479-1.516-1.84-3.707-1.08-5.582L43.608,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="14.66,72.917 47.926,15.468 81.193,72.917 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="14.66,72.917 47.926,15.468
|
||||
81.193,72.917 "/>
|
||||
<path fill="#120C0E" d="M54.524,40.066l2.918,3.069l-1.319,3.748l-4.518,1.275c-6.637,1.914-11.635,8.053-11.635,15.27v4.704
|
||||
l-3.518-2.233l-3.399,2.233v-4.704c0-10.564,7.197-19.496,16.953-22.087L54.524,40.066z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M54.524,40.066l2.918,3.069l-1.319,3.748
|
||||
l-4.518,1.275c-6.637,1.914-11.635,8.053-11.635,15.27v4.704l-3.518-2.233l-3.399,2.233v-4.704c0-10.564,7.198-19.496,16.953-22.087
|
||||
L54.524,40.066z"/>
|
||||
</svg>
|
After (image error) Size: 1.8 KiB |
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.796px" height="83.713px" viewBox="0 0 95.796 83.713" enable-background="new 0 0 95.796 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M4.184,83.664c-1-0.16-1.959-0.639-2.718-1.396c-1.479-1.515-1.839-3.706-1.08-5.581L43.6,2.271
|
||||
C44.479,0.876,46.038,0,47.836,0c1.719,0,2.479,0.836,3.398,2.111l43.612,73.182c1.52,1.993,1.159,5.143-0.68,6.976
|
||||
c-1.039,1.037-2.238,1.515-3.598,1.436"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M4.184,83.664c-1-0.16-1.959-0.639-2.718-1.396
|
||||
c-1.479-1.515-1.839-3.706-1.08-5.581L43.6,2.271C44.479,0.876,46.038,0,47.836,0c1.719,0,2.479,0.836,3.398,2.111l43.612,73.182
|
||||
c1.52,1.993,1.159,5.143-0.68,6.976c-1.039,1.037-2.238,1.515-3.598,1.436"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="14.658,72.901 47.917,15.465 81.176,72.901 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="14.658,72.901 47.917,15.465
|
||||
81.176,72.901 "/>
|
||||
<path fill="#120C0E" d="M36.003,50.7V39.58l3.398-2.233l3.358,2.233V50.7c0,0.598,0.479,1.116,1.12,1.116
|
||||
c0.24,0,0.479-0.08,0.64-0.199l8.395-4.862c1.16-0.679,2.438-1.037,3.877-1.037c4.279,0,7.796,3.507,7.796,7.813v15.625
|
||||
l-3.358-1.993l-3.357,1.993V53.569c0-0.597-0.48-1.115-1.08-1.115c-0.199,0-0.399,0.04-0.599,0.159l-8.395,4.822
|
||||
c-1.16,0.679-2.479,1.077-3.958,1.077C39.521,58.513,36.003,55.006,36.003,50.7z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M36.003,50.7V39.58l3.398-2.233l3.358,2.233
|
||||
V50.7c0,0.598,0.479,1.116,1.12,1.116c0.24,0,0.479-0.08,0.64-0.199l8.395-4.862c1.16-0.679,2.438-1.037,3.877-1.037
|
||||
c4.279,0,7.796,3.507,7.796,7.813v15.625l-3.358-1.993l-3.357,1.993V53.569c0-0.597-0.48-1.115-1.08-1.115
|
||||
c-0.199,0-0.398,0.04-0.599,0.159l-8.395,4.822c-1.16,0.679-2.479,1.077-3.958,1.077C39.521,58.513,36.003,55.006,36.003,50.7z"/>
|
||||
</svg>
|
After (image error) Size: 2.2 KiB |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.713px" viewBox="0 0 95.797 83.713" enable-background="new 0 0 95.797 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.197,2.271C51.318,0.877,49.759,0,47.96,0c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.294
|
||||
c-1.52,1.992-1.16,5.142,0.68,6.976c1.04,1.036,2.238,1.515,3.597,1.435l86.386-0.04c1-0.158,1.959-0.637,2.719-1.395
|
||||
c1.479-1.515,1.839-3.707,1.078-5.58L52.197,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.271C51.318,0.877,49.759,0,47.96,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.294c-1.52,1.992-1.16,5.142,0.68,6.976c1.04,1.036,2.238,1.515,3.597,1.435l86.386-0.04
|
||||
c1-0.158,1.959-0.637,2.719-1.395c1.479-1.515,1.839-3.707,1.078-5.58L52.197,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.903 47.92,15.466 14.701,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.903 47.92,15.466
|
||||
14.701,72.903 "/>
|
||||
<path fill="#120C0E" d="M59.792,50.701V39.58l-3.397-2.232l-3.358,2.232v11.121c0,0.598-0.479,1.115-1.118,1.115
|
||||
c-0.24,0-0.479-0.079-0.64-0.198l-8.396-4.863c-1.159-0.678-2.438-1.036-3.877-1.036c-4.277,0-7.795,3.508-7.795,7.813v15.624
|
||||
l3.358-1.993l3.359,1.993V53.571c0-0.599,0.48-1.116,1.079-1.116c0.2,0,0.399,0.04,0.6,0.159L48,57.438
|
||||
c1.159,0.677,2.477,1.075,3.957,1.075C56.274,58.513,59.792,55.006,59.792,50.701z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M59.792,50.701V39.58l-3.397-2.232
|
||||
l-3.358,2.232v11.121c0,0.598-0.479,1.115-1.118,1.115c-0.24,0-0.479-0.079-0.64-0.198l-8.396-4.863
|
||||
c-1.159-0.678-2.438-1.036-3.877-1.036c-4.277,0-7.795,3.508-7.795,7.813v15.624l3.358-1.993l3.359,1.993V53.571
|
||||
c0-0.599,0.48-1.116,1.079-1.116c0.2,0,0.399,0.04,0.6,0.159L48,57.438c1.159,0.677,2.477,1.075,3.957,1.075
|
||||
C56.274,58.513,59.792,55.006,59.792,50.701z"/>
|
||||
</svg>
|
After (image error) Size: 2.2 KiB |
103
assets/layers/traffic_sign/images/be/A/Belgian_road_sign_A21.svg
Normal file
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.816px" height="83.722px" viewBox="0 0 95.816 83.722" enable-background="new 0 0 95.816 83.722" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.208,2.271C51.329,0.876,49.77,0,47.97,0c-1.719,0-2.479,0.836-3.399,2.113L0.95,75.31
|
||||
c-1.519,1.992-1.16,5.143,0.68,6.977c1.04,1.037,2.239,1.436,3.598,1.436h86.324c1,0,2.039-0.679,2.798-1.436
|
||||
c1.48-1.516,1.84-3.707,1.079-5.582L52.208,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.208,2.271C51.329,0.876,49.77,0,47.97,0
|
||||
c-1.719,0-2.479,0.836-3.399,2.113L0.95,75.31c-1.519,1.992-1.16,5.143,0.68,6.977c1.04,1.037,2.239,1.436,3.598,1.436h86.324
|
||||
c1,0,2.039-0.679,2.799-1.436c1.479-1.516,1.839-3.707,1.078-5.582L52.208,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.155,72.917 47.93,15.468 14.704,72.917 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.155,72.917 47.93,15.468
|
||||
14.704,72.917 "/>
|
||||
<path fill="#120C0E" d="M37.094,48.877l-1.6-1.116l5.199-3.31l2.759-5.342l2.639-1.037l0.04-1.195c-0.281,0-0.401-0.08-0.68-0.08
|
||||
c-0.959-0.558-0.68-4.784-0.68-4.784c0.201-0.2,0.6-0.718,0.8-0.718c0.719-0.2,2.438-0.16,2.798,0.2
|
||||
c0.041,0.159,0.521,0.318,0.401,1.116v4.864l3.678,1.315l3.479,4.583l1.079,7.137l-1.599,0.799l-0.96-5.861l-2.999-3.269
|
||||
l-0.279,8.013l6.678,15.389l-3.84,1.914l-0.199-0.838l0.92-1.514L48.53,54.179l-7.517,13.556l-4.078-1.993l0.64-0.957l1.399,0.199
|
||||
l6.237-14.313l-0.719-7.097l-1.799,2.871L37.094,48.877z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M37.094,48.876l-1.6-1.115l5.199-3.31
|
||||
l2.759-5.342l2.639-1.037l0.04-1.195c-0.281,0-0.401-0.08-0.68-0.08c-0.959-0.558-0.68-4.784-0.68-4.784
|
||||
c0.201-0.2,0.6-0.718,0.8-0.718c0.719-0.2,2.438-0.16,2.798,0.2c0.041,0.159,0.521,0.318,0.401,1.116v4.864l3.678,1.315l3.479,4.583
|
||||
l1.079,7.137l-1.599,0.799l-0.96-5.861l-2.999-3.269l-0.279,8.013l6.678,15.389l-3.84,1.914l-0.199-0.838l0.92-1.514L48.53,54.179
|
||||
l-7.517,13.556l-4.078-1.993l0.64-0.957l1.399,0.199l6.237-14.313l-0.719-7.097l-1.799,2.871L37.094,48.876z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="65.603,70.844 66.122,69.847 68.401,69.847 67.841,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="65.603,70.844 66.122,69.847
|
||||
68.401,69.847 67.841,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="66.923,60.598 67.442,59.601 69.722,59.601 69.161,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="66.923,60.598 67.442,59.601
|
||||
69.722,59.601 69.161,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="62.165,60.598 62.685,59.601 64.962,59.601 64.402,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="62.165,60.598 62.685,59.601
|
||||
64.962,59.601 64.402,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="57.525,60.598 58.046,59.601 60.325,59.601 59.765,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="57.525,60.598 58.046,59.601
|
||||
60.325,59.601 59.765,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="56.126,70.844 56.646,69.847 58.926,69.847 58.366,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="56.126,70.844 56.646,69.847
|
||||
58.926,69.847 58.366,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="60.964,70.844 61.484,69.847 63.764,69.847 63.204,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="60.965,70.844 61.484,69.847
|
||||
63.764,69.847 63.204,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="52.768,60.598 53.288,59.601 55.567,59.601 55.007,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="52.768,60.598 53.288,59.601
|
||||
55.567,59.601 55.007,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="48.05,60.598 48.57,59.601 50.849,59.601 50.289,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="48.05,60.598 48.57,59.601
|
||||
50.849,59.601 50.289,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="43.332,60.598 43.852,59.601 46.131,59.601 45.571,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="43.332,60.598 43.852,59.601
|
||||
46.131,59.601 45.571,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="42.052,70.844 42.572,69.847 44.851,69.847 44.292,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="42.052,70.844 42.572,69.847
|
||||
44.851,69.847 44.292,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="46.77,70.844 47.29,69.847 49.569,69.847 49.009,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="46.77,70.844 47.29,69.847
|
||||
49.569,69.847 49.009,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="51.448,70.844 51.969,69.847 54.247,69.847 53.687,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="51.448,70.844 51.969,69.847
|
||||
54.247,69.847 53.687,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="38.693,60.598 39.214,59.601 41.492,59.601 40.933,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="38.693,60.598 39.214,59.601
|
||||
41.493,59.601 40.933,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="37.334,70.844 37.854,69.847 40.133,69.847 39.574,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="37.334,70.844 37.854,69.847
|
||||
40.133,69.847 39.574,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="33.696,60.598 34.216,59.601 36.495,59.601 35.936,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="33.696,60.598 34.216,59.601
|
||||
36.495,59.601 35.936,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="28.979,60.598 29.498,59.601 31.776,59.601 31.217,60.598
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="28.979,60.598 29.498,59.601
|
||||
31.776,59.601 31.217,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="32.457,70.844 32.976,69.847 35.255,69.847 34.696,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="32.457,70.844 32.976,69.847
|
||||
35.255,69.847 34.696,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="27.779,70.844 28.298,69.847 30.578,69.847 30.018,70.844
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="27.779,70.844 28.298,69.847
|
||||
30.578,69.847 30.018,70.844 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="24.1,60.598 24.62,59.601 26.899,59.601 26.339,60.598 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="24.1,60.598 24.62,59.601 26.899,59.601
|
||||
26.339,60.598 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="22.9,70.844 23.42,69.847 25.7,69.847 25.14,70.844 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="22.9,70.844 23.42,69.847 25.7,69.847
|
||||
25.14,70.844 "/>
|
||||
</svg>
|
After (image error) Size: 8 KiB |
130
assets/layers/traffic_sign/images/be/A/Belgian_road_sign_A23.svg
Normal file
|
@ -0,0 +1,130 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.704px" viewBox="0 0 95.797 83.704" enable-background="new 0 0 95.797 83.704" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0c-1.719,0-2.479,0.837-3.398,2.111L0.95,75.293
|
||||
c-1.519,1.993-1.16,5.143,0.68,6.976c1.04,1.037,2.238,1.436,3.597,1.436h86.305c1,0,2.039-0.679,2.799-1.436
|
||||
c1.479-1.515,1.84-3.706,1.079-5.579L52.198,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.836-3.398,2.111L0.95,75.293c-1.519,1.993-1.16,5.143,0.68,6.976c1.04,1.037,2.238,1.436,3.597,1.436h86.305
|
||||
c1,0,2.039-0.679,2.799-1.436c1.479-1.515,1.84-3.706,1.079-5.579L52.198,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.901 47.92,15.465 14.702,72.901 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.901 47.92,15.465
|
||||
14.702,72.901 "/>
|
||||
<path fill="#120C0E" d="M27.533,68.118h40.735v-1.155H56.755c0.68-0.678,1.519-1.076,2.158-2.192l0.279,0.12l0.641-0.679
|
||||
c0-0.118-0.121-0.358-0.08-0.479c-0.639-0.517-1.119-0.956-1.839-1.395c-0.72-1.475-1.399-3.229-2.519-4.464c0-0.159,0,0.159,0,0
|
||||
s0.04-0.319,0.08-0.478c0.68,0,1.398-0.479,1.998-0.957l-0.959-2.831l3.398-0.438c0.16-0.04,0.279-0.078,0.439-0.078
|
||||
c0.08-0.08,0.16-0.16,0.24-0.24c0.319-1.595,0.239-3.548-0.52-5.261c-0.6,0-1.16,0-1.76,0c-0.159-0.479,0.04-1.156-0.479-1.516
|
||||
c0.32-2.111-2.598-4.902-3.677-6.098l0.16-0.358l-0.641-1.076c0-0.24,0.12-0.438,0.12-0.679c0.239-0.518,0.479-0.797,0.919-1.076
|
||||
c0.199,0,0.24-0.519,0.279-0.717c0.121,0,0.4-0.678,0.521-0.678c0.08-1.436-0.36-1.476-0.88-2.072
|
||||
c-0.999-1.076-3.397-1.037-4.598-1.116c-0.559,0.238-0.598,0.438-0.759,0.996c0.12,0.12,0,0.559,0.12,0.639
|
||||
c0.08,0.517-0.2,1.514-0.16,2.031c0.08,0.719-0.16,1.037-0.239,1.436c0.239,0-0.12,0.239,0.479,0.399
|
||||
c0.16,0.158-0.4,0.278,0.16,0.597c0.199,0.12-0.4,0.319,0,0.957c0.32,0.199,0.52,0.04,0.879,0.159c0.04,0.12,0.12,0.2,0.16,0.318
|
||||
c-0.04,0.12-0.08,0.2-0.08,0.32c-1.08,1.354-2.678,1.274-3.398,4.145c-0.4,1.595-1.759,3.029-2.519,4.026
|
||||
c-0.399,0.519-0.719,0.797-0.879,1.235c0.04,0.239,0,0.119,0.16,0.318c-0.279,0.638-0.68,0.838-0.759,1.196
|
||||
c-0.2,0.08-0.36-0.16-0.56-0.239c-0.8-1.076-1.399-2.989-2.318-2.989c-0.24-0.558-0.8-0.718-0.8-1.236
|
||||
c0.479-1.475,0.72-1.115,1.16-1.195c0.08,0.119,0.399,0.159,0.479,0.239c-0.24,0.04-0.16,0.319-0.359,0.398
|
||||
c-0.04,0.239-0.12,0.518,0.039,0.718c0.24,0.238,0.28,0.358,0.64,0.278c0.24-0.119,0.56-0.278,0.56-0.597
|
||||
c-0.04-0.2-0.12-0.319-0.12-0.519c0.08-0.04,0.12,0.04,0.2,0.04c0.08,0.198,0.36-0.04,0.4,0.198c0.439,0,0.68,0.479,0.999,0.639
|
||||
c0.121-0.08,0.2-0.2,0.32-0.279c-0.4-0.438-0.48-0.479-0.759-0.758c-0.28-0.039-0.479-0.518-0.72-0.678
|
||||
c-0.119-0.079-0.119,0.12-0.199,0c0.08,0,0.119,0,0.199,0c0.56-0.278,0.879-0.956,0.64-1.554c-0.959-0.758-1.559,0.239-1.399,1.235
|
||||
c-0.56-0.12-0.52-0.599-0.919-0.757c-0.2-0.519-0.6-1.316-0.56-1.834c-0.28-0.239-0.36-0.598-0.839-0.957
|
||||
c-0.16-0.079-0.24-0.119-0.36-0.278c-0.48-0.12-0.959-0.279-1.319-0.358c-0.719-0.12-0.879,0.118-1.319,0.198
|
||||
c-0.08,0.04-0.08,0.04-0.12,0.12c-0.08-0.04-0.12,0.04-0.16,0.04c-0.439,0.238-0.479,0.638-0.479,1.076
|
||||
c0.2,0.119,0.08,0.358,0.24,0.519c-0.399,0.278-0.24,1.115,0.04,1.354c-0.24,0.877-0.399,1.993,0.399,2.67
|
||||
c0.12,0.04,0.36,0.16,0.48,0l0.64,1.156c-0.12,0.12-0.84,0.877-0.84,1.077c-0.439,0.597-0.399,0.717-0.719,1.395l-4.478,3.188v0.2
|
||||
c-0.12,0.039-0.199,0.118-0.319,0.158c-0.04,0.04-0.52,0.399-0.52,0.438c-0.319,0.08,0,0.16-0.319,0.239
|
||||
c-0.16,0.2-0.04,0.438-0.08,0.639c-0.08,0.238,0.159,0.398,0.319,0.557c-0.04,0.08,0.04,0.12,0.04,0.16
|
||||
c0.16,0.12,0.08,0.16,0.16,0.358c0.2,0.279,0.48,0.319,0.599,0.439c0.04,0,0.08-0.08,0.16-0.04c0.04-0.08-0.08,0.04,0,0
|
||||
c0.08-0.319,0.12-0.758,0.16-1.076c-0.08-0.438,0.239-0.319,0.279-0.438c0.04-0.08-0.08,0.04,0,0c0.161-0.04,0.281-0.08,0.4,0.119
|
||||
l2.279-1.594c0.679-0.479,0.04,0.717-0.08,2.032c-0.08,0.797-0.36,0.837-0.68,1.874c0,0.04-0.04-0.08,0,0
|
||||
c-0.279,0.198-0.119,0.558-0.439,0.717v0.917h1.399c-0.719,1.435,0.04,3.985-0.319,5.62c-0.241,1.076-1.08,0.678-1.999,0.957
|
||||
c-0.12,0.119-0.239,0.278-0.399,0.318c-0.04,0.16-0.121,0.358-0.08,0.519c0.08-0.04,0.12,0.04,0.16,0.04
|
||||
c0.04,0.039-0.201-0.08-0.16-0.04c0.08-0.04,0.439,0.358,0.479,0.358c0.08,0.119,0.24,0.119,0.359,0.159l-5.156,0.04V68.118z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M27.533,68.118h40.735v-1.155H56.755
|
||||
c0.68-0.678,1.519-1.076,2.158-2.192l0.279,0.12l0.641-0.679c0-0.118-0.121-0.358-0.08-0.479c-0.639-0.517-1.119-0.956-1.839-1.395
|
||||
c-0.72-1.475-1.399-3.229-2.519-4.464c0-0.159,0,0.159,0,0s0.04-0.319,0.08-0.478c0.68,0,1.398-0.479,1.998-0.957l-0.959-2.831
|
||||
l3.398-0.438c0.16-0.04,0.279-0.078,0.439-0.078c0.08-0.08,0.16-0.16,0.24-0.24c0.319-1.595,0.239-3.548-0.52-5.261
|
||||
c-0.6,0-1.16,0-1.76,0c-0.159-0.479,0.04-1.157-0.479-1.516c0.32-2.111-2.598-4.902-3.677-6.098l0.16-0.358l-0.641-1.076
|
||||
c0-0.24,0.12-0.438,0.12-0.679c0.239-0.518,0.479-0.797,0.919-1.076c0.199,0,0.24-0.519,0.279-0.717c0.121,0,0.4-0.678,0.521-0.678
|
||||
c0.08-1.436-0.359-1.476-0.88-2.072c-0.999-1.076-3.397-1.037-4.598-1.116c-0.559,0.238-0.598,0.438-0.759,0.996
|
||||
c0.12,0.12,0,0.559,0.12,0.639c0.08,0.517-0.2,1.514-0.16,2.031c0.08,0.719-0.16,1.037-0.239,1.436c0.239,0-0.12,0.239,0.479,0.399
|
||||
c0.16,0.158-0.4,0.278,0.16,0.597c0.199,0.12-0.4,0.319,0,0.957c0.32,0.199,0.52,0.04,0.879,0.159c0.04,0.12,0.12,0.2,0.16,0.318
|
||||
c-0.04,0.12-0.08,0.2-0.08,0.32c-1.08,1.354-2.678,1.274-3.398,4.145c-0.4,1.595-1.759,3.029-2.519,4.026
|
||||
c-0.399,0.519-0.719,0.797-0.879,1.235c0.04,0.239,0,0.119,0.16,0.318c-0.279,0.638-0.68,0.838-0.759,1.196
|
||||
c-0.2,0.08-0.36-0.16-0.56-0.239c-0.8-1.076-1.399-2.989-2.318-2.989c-0.24-0.558-0.8-0.718-0.8-1.236
|
||||
c0.479-1.475,0.72-1.115,1.16-1.195c0.08,0.119,0.399,0.159,0.48,0.239c-0.241,0.04-0.161,0.319-0.36,0.398
|
||||
c-0.04,0.239-0.12,0.518,0.039,0.718c0.24,0.238,0.28,0.358,0.64,0.278c0.24-0.119,0.56-0.278,0.56-0.597
|
||||
c-0.04-0.2-0.12-0.32-0.12-0.519c0.08-0.04,0.12,0.04,0.2,0.04c0.08,0.198,0.36-0.04,0.4,0.198c0.439,0,0.68,0.479,1,0.639
|
||||
c0.12-0.08,0.199-0.2,0.319-0.28c-0.4-0.438-0.48-0.478-0.759-0.757c-0.28-0.039-0.479-0.518-0.72-0.678
|
||||
c-0.119-0.079-0.119,0.12-0.199,0c0.08,0,0.119,0,0.199,0c0.56-0.278,0.879-0.956,0.64-1.554c-0.959-0.758-1.559,0.238-1.399,1.235
|
||||
c-0.56-0.12-0.52-0.599-0.919-0.757c-0.2-0.519-0.6-1.316-0.56-1.834c-0.28-0.239-0.36-0.598-0.839-0.957
|
||||
c-0.16-0.079-0.24-0.119-0.36-0.278c-0.48-0.12-0.959-0.279-1.319-0.358c-0.719-0.12-0.879,0.118-1.319,0.198
|
||||
c-0.08,0.04-0.08,0.04-0.12,0.12c-0.08-0.04-0.12,0.04-0.16,0.04c-0.439,0.238-0.479,0.638-0.479,1.076
|
||||
c0.2,0.119,0.08,0.358,0.24,0.519c-0.399,0.278-0.24,1.115,0.04,1.354c-0.24,0.877-0.399,1.993,0.399,2.67
|
||||
c0.12,0.04,0.36,0.16,0.48,0l0.64,1.156c-0.12,0.12-0.84,0.877-0.84,1.077c-0.44,0.597-0.4,0.717-0.719,1.395l-4.478,3.188v0.199
|
||||
c-0.12,0.04-0.199,0.119-0.319,0.159c-0.04,0.04-0.52,0.399-0.52,0.438c-0.319,0.08,0,0.16-0.319,0.239
|
||||
c-0.16,0.2-0.04,0.438-0.08,0.639c-0.08,0.238,0.159,0.398,0.319,0.557c-0.04,0.08,0.04,0.12,0.04,0.16
|
||||
c0.16,0.12,0.08,0.16,0.16,0.358c0.2,0.279,0.48,0.319,0.599,0.439c0.04,0,0.08-0.08,0.16-0.04c0.04-0.08-0.08,0.04,0,0
|
||||
c0.08-0.319,0.12-0.758,0.16-1.076c-0.08-0.438,0.239-0.319,0.279-0.438c0.04-0.08-0.08,0.04,0,0c0.161-0.04,0.281-0.08,0.4,0.119
|
||||
l2.279-1.594c0.679-0.479,0.04,0.717-0.08,2.032c-0.08,0.797-0.36,0.837-0.68,1.874c0,0.04-0.04-0.08,0,0
|
||||
c-0.279,0.198-0.119,0.558-0.439,0.717v0.917h1.399c-0.719,1.435,0.04,3.985-0.319,5.62c-0.241,1.075-1.08,0.677-1.999,0.957
|
||||
c-0.12,0.118-0.239,0.278-0.399,0.318c-0.04,0.16-0.121,0.358-0.08,0.519c0.08-0.04,0.12,0.04,0.16,0.04
|
||||
c0.04,0.039-0.201-0.08-0.16-0.04c0.08-0.04,0.439,0.358,0.479,0.358c0.08,0.119,0.24,0.119,0.359,0.159l-5.156,0.04V68.118z"/>
|
||||
<path fill="#FFFFFF" d="M54.077,47.791l1.639-0.12c0-1.036-0.4-2.032-1.08-2.75C54.437,45.359,53.557,46.276,54.077,47.791z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M54.077,47.791l1.639-0.12
|
||||
c0-1.036-0.4-2.032-1.08-2.75C54.437,45.359,53.557,46.276,54.077,47.791z"/>
|
||||
<path fill="#FFFFFF" d="M36.967,59.271c-0.399,0.877-0.599,0.438-0.519,1.554c0.039,0.918,0.08,1.953-0.12,2.909
|
||||
c-0.2,0.878-0.12,2.113-0.56,3.229h2.039c-0.241-1.196,1.279-0.398,1.519-2.392c-0.04-0.04-0.04-0.279-0.08-0.279
|
||||
c0-0.238-0.12-0.358-0.2-0.597c-0.08-0.08-0.04-0.28-0.12-0.36c-0.36-0.836-1.639-3.147-1.399-4.064H36.967z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M36.967,59.271
|
||||
c-0.399,0.877-0.599,0.438-0.519,1.554c0.04,0.918,0.08,1.953-0.12,2.909c-0.2,0.878-0.12,2.113-0.56,3.229h2.039
|
||||
c-0.241-1.196,1.279-0.398,1.519-2.392c-0.04-0.04-0.04-0.279-0.08-0.279c0-0.238-0.12-0.358-0.2-0.597
|
||||
c-0.08-0.08-0.04-0.28-0.12-0.36c-0.36-0.836-1.639-3.147-1.399-4.064H36.967z"/>
|
||||
<path fill="#FFFFFF" d="M44.442,55.522c0.12-0.078,0.4-0.278,0.6-0.238c0.439,0.12,0.439,0.996,0.799,1.275
|
||||
c0.241,0.598,0.48,1.355,0.161,1.993c-0.12,0.04-0.161,0.199-0.281,0.239l-3.677,1.793c-0.12,0.08-0.319,0.16-0.479,0.08
|
||||
c-0.04-0.04-0.08-0.08-0.12-0.119l-0.719-1.315c0.04,0.238-0.479-0.04-0.479,0.158c-0.08,0.04-0.201,0.36-0.241,0.439
|
||||
c-0.6,1.475,1,3.188,0.959,4.146c0.2,0.278,0.281,0.278,0.48,0.598c0.12,0.199,0.359,0.757,0.24,0.877
|
||||
c-0.52,0.519-0.68,0.677-0.919,0.837c-0.12-0.08-0.16-0.12-0.28-0.238c-0.08-0.08,0.08,0.078,0,0
|
||||
c-0.08,0.118-0.319,0.238-0.44,0.358c-0.08-0.04,0.041,0,0,0c-0.08,0.04,0.041-0.08,0,0c-0.239,0.04-0.64,0.318-0.799,0.478h4.077
|
||||
l-0.439-0.438c-0.199,0.039-0.439-0.28-0.399-0.359c0.08-0.159,0.24-0.359,0.2-0.518c0.119-0.2,1.279,0,1.638-0.399
|
||||
c0.76-0.199,0.959-0.996,1.479-1.514c-0.12-0.838,1.359-6.418,1.6-7.056c-0.04,0-0.08-0.08-0.16-0.04
|
||||
c-0.04-0.04-0.08-0.079-0.12-0.119c-0.36-0.519,0.24-0.996,0.2-1.435c0.12-0.559,0.279-0.878,0.399-1.356
|
||||
c0.04-0.079,0.04-0.079,0.12-0.119c0.04-0.199,0.04-0.478,0.2-0.638c-0.12-0.479,0.799-1.793,0.839-2.432
|
||||
c0.08-1.314-0.439-1.555-0.8-2.71l-2.318,3.309l-0.279-0.12c-0.08-0.04-0.12,0.04-0.16,0.04c-0.439,0.678-1.439,1.275-1.718,1.793
|
||||
C43.363,53.211,44.043,53.411,44.442,55.522z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M44.442,55.522c0.12-0.078,0.4-0.278,0.6-0.238
|
||||
c0.439,0.12,0.439,0.996,0.799,1.275c0.241,0.598,0.48,1.355,0.161,1.993c-0.12,0.04-0.161,0.199-0.281,0.239l-3.677,1.793
|
||||
c-0.12,0.08-0.319,0.16-0.479,0.08c-0.04-0.04-0.08-0.08-0.12-0.119l-0.719-1.315c0.04,0.238-0.479-0.04-0.479,0.158
|
||||
c-0.08,0.04-0.2,0.36-0.241,0.439c-0.6,1.475,1,3.188,0.959,4.146c0.201,0.278,0.281,0.278,0.48,0.598
|
||||
c0.12,0.199,0.359,0.757,0.24,0.877c-0.52,0.519-0.68,0.677-0.919,0.837c-0.12-0.08-0.16-0.12-0.28-0.238c-0.08-0.08,0.08,0.078,0,0
|
||||
c-0.08,0.118-0.319,0.238-0.439,0.358c-0.081-0.04,0.04,0,0,0c-0.081,0.04,0.04-0.08,0,0c-0.24,0.04-0.64,0.318-0.799,0.478h4.077
|
||||
l-0.439-0.438c-0.199,0.039-0.439-0.28-0.399-0.359c0.08-0.159,0.24-0.359,0.2-0.518c0.119-0.2,1.279,0,1.638-0.399
|
||||
c0.76-0.199,0.959-0.996,1.479-1.514c-0.12-0.838,1.359-6.418,1.6-7.056c-0.04,0-0.08-0.08-0.16-0.04
|
||||
c-0.04-0.04-0.08-0.079-0.12-0.119c-0.36-0.519,0.24-0.996,0.2-1.435c0.12-0.559,0.279-0.878,0.399-1.356
|
||||
c0.04-0.079,0.04-0.079,0.12-0.119c0.04-0.199,0.04-0.478,0.2-0.638c-0.12-0.479,0.799-1.793,0.839-2.432
|
||||
c0.08-1.314-0.439-1.555-0.8-2.71l-2.318,3.309l-0.279-0.12c-0.08-0.04-0.12,0.04-0.16,0.04c-0.439,0.678-1.439,1.275-1.718,1.793
|
||||
C43.363,53.211,44.043,53.411,44.442,55.522z"/>
|
||||
<path fill="#FFFFFF" d="M41.924,56.839l0.72-0.438c-0.2-2.033-1-3.27-1.64-4.026c-0.479,0.639,0,1.436-0.16,2.192
|
||||
c0.16,0.518,0.32,0.838,0.56,1.396C41.524,56.241,41.645,56.998,41.924,56.839z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M41.924,56.839l0.72-0.438
|
||||
c-0.2-2.033-1-3.27-1.64-4.026c-0.479,0.639,0,1.436-0.16,2.192c0.16,0.518,0.321,0.838,0.56,1.396
|
||||
C41.524,56.24,41.645,56.998,41.924,56.839z"/>
|
||||
<path fill="#FFFFFF" d="M47.401,66.923h8.235c0-0.079-0.08-0.119-0.04-0.199c-0.04-0.04-0.319-0.278-0.359-0.318
|
||||
c-0.081-0.16,0.159-0.24,0.199-0.398c0.12-0.08,0.32,0,0.439-0.04c0.12-0.2,0.32-0.16,0.52-0.24c0-0.318,0.12-0.996,0.399-1.234
|
||||
c0.121-0.24-0.119-0.28-0.158-0.519c-0.041-0.04-0.201-0.318-0.241-0.318c-0.319-0.957-1.56-1.795-1.878-2.472
|
||||
c-0.601-1.316-1.799-1.873-1.879-3.388c-0.041-0.04,0.039,0.04,0,0c-0.08-0.04,0.039,0,0,0c-0.041-0.04-0.359-0.16-0.4-0.2
|
||||
c-0.039-0.318-0.24-0.438-0.359-0.757c-0.16-0.04-0.2-0.598-0.4-0.438c-0.039,0.04-0.119,0.04-0.159,0.119
|
||||
c0.08,0.359-0.16,0.598-0.359,0.838c-0.28,0-0.521-0.12-0.8-0.12c-0.279,0.278-0.439,0.837-0.561,1.195
|
||||
c-0.439,1.156-1.439,4.306-1.838,5.421c0.08,0.12-0.199,0,0.12,0.279C47.84,64.571,47.401,65.608,47.401,66.923z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M47.401,66.923h8.235
|
||||
c0-0.079-0.08-0.119-0.04-0.199c-0.04-0.04-0.319-0.278-0.359-0.318c-0.08-0.16,0.159-0.24,0.199-0.398c0.12-0.08,0.32,0,0.439-0.04
|
||||
c0.12-0.2,0.32-0.16,0.521-0.24c0-0.318,0.119-0.996,0.398-1.234c0.121-0.24-0.119-0.28-0.158-0.519
|
||||
c-0.041-0.04-0.201-0.318-0.24-0.318c-0.32-0.957-1.561-1.795-1.879-2.472c-0.601-1.316-1.799-1.873-1.879-3.388
|
||||
c-0.041-0.04,0.039,0.039,0,0c-0.08-0.04,0.039,0,0,0c-0.041-0.04-0.359-0.16-0.4-0.2c-0.039-0.318-0.24-0.438-0.359-0.757
|
||||
c-0.16-0.04-0.2-0.599-0.4-0.438c-0.039,0.04-0.119,0.04-0.159,0.119c0.08,0.359-0.16,0.598-0.359,0.838
|
||||
c-0.28,0-0.521-0.12-0.8-0.12c-0.279,0.278-0.439,0.837-0.561,1.195c-0.439,1.156-1.439,4.306-1.838,5.421
|
||||
c0.08,0.12-0.199,0,0.12,0.279C47.84,64.571,47.401,65.608,47.401,66.923z"/>
|
||||
<line fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" x1="27.533" y1="68.118" x2="27.533" y2="67.401"/>
|
||||
</svg>
|
After (image error) Size: 14 KiB |
102
assets/layers/traffic_sign/images/be/A/Belgian_road_sign_A25.svg
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.704px" viewBox="0 0 95.797 83.704" enable-background="new 0 0 95.797 83.704" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.197,2.272C51.318,0.877,49.759,0,47.96,0c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.295
|
||||
c-1.52,1.992-1.16,5.141,0.68,6.975c1.04,1.036,2.238,1.435,3.597,1.435h86.306c1,0,2.039-0.677,2.799-1.435
|
||||
c1.479-1.515,1.839-3.707,1.078-5.58L52.197,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.272C51.318,0.877,49.759,0,47.96,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.295c-1.52,1.992-1.16,5.141,0.68,6.975c1.04,1.036,2.238,1.435,3.597,1.435h86.306
|
||||
c1,0,2.039-0.677,2.799-1.435c1.479-1.515,1.839-3.707,1.078-5.58L52.197,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.903 47.92,15.466 14.701,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.903 47.92,15.466
|
||||
14.701,72.903 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M58.034,68.16c-4.598,0-7.436-4.943-5.156-8.89
|
||||
c2.277-3.985,8.034-3.985,10.313,0C65.469,63.217,62.63,68.16,58.034,68.16z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.034,68.16c-4.598,0-7.436-4.943-5.156-8.89
|
||||
c2.277-3.985,8.034-3.985,10.313,0C65.469,63.217,62.63,68.16,58.034,68.16z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M58.034,67.642c-4.158,0-6.756-4.504-4.678-8.091
|
||||
c2.078-3.628,7.315-3.628,9.395,0C64.829,63.138,62.231,67.642,58.034,67.642z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.034,67.642c-4.158,0-6.756-4.504-4.678-8.091
|
||||
c2.078-3.628,7.315-3.628,9.395,0C64.829,63.138,62.231,67.642,58.034,67.642z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M58.073,63.456c-0.959,0-1.559-0.997-1.079-1.834
|
||||
c0.479-0.797,1.64-0.797,2.119,0C59.593,62.459,58.993,63.456,58.073,63.456z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.073,63.456c-0.959,0-1.559-0.997-1.079-1.834
|
||||
c0.479-0.797,1.64-0.797,2.119,0C59.593,62.459,58.993,63.456,58.073,63.456z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M37.887,68.08c-4.598,0-7.436-4.942-5.157-8.889
|
||||
c2.279-3.985,8.036-3.985,10.313,0C45.321,63.138,42.483,68.08,37.887,68.08z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M37.887,68.08c-4.598,0-7.436-4.942-5.157-8.889
|
||||
c2.279-3.985,8.036-3.985,10.314,0C45.321,63.138,42.483,68.08,37.887,68.08z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M37.887,67.562c-4.158,0-6.756-4.504-4.678-8.091
|
||||
c2.079-3.628,7.315-3.628,9.395,0C44.682,63.058,42.084,67.562,37.887,67.562z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M37.887,67.562c-4.158,0-6.756-4.504-4.678-8.091
|
||||
c2.079-3.628,7.315-3.628,9.395,0C44.682,63.058,42.084,67.562,37.887,67.562z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M37.887,63.058c-0.72,0-1.16-0.757-0.8-1.355
|
||||
c0.36-0.638,1.24-0.638,1.6,0C39.045,62.301,38.606,63.058,37.887,63.058z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M37.887,63.058c-0.72,0-1.16-0.757-0.8-1.355
|
||||
c0.36-0.638,1.24-0.638,1.6,0C39.045,62.301,38.606,63.058,37.887,63.058z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M51.638,63.138
|
||||
c-0.04-0.239-0.04-0.519-0.04-0.758c0-3.547,2.878-6.417,6.437-6.417c2.678,0,4.957,1.635,5.956,3.946 M35.607,56.201
|
||||
c0.72-0.238,1.439-0.398,2.239-0.398c3.557,0,6.436,2.87,6.436,6.418c0,0.159,0,0.358-0.04,0.519"/>
|
||||
<path fill="#120C0E" d="M49.399,40.417c0.359,0.358,0.639,0.639,1.039,0.957c1.119,0.838,1.839,1.993,2.518,2.91
|
||||
c0.721,0.956,2.398,5.103,2.559,6.616c-0.08,0.04-0.16,0.439-0.199,0.518c0.16-0.04,0.279,0.04,0.32,0.2
|
||||
c0,0.04-0.08,0.08-0.041,0.159c-0.039,0.04-0.119,0.04-0.16,0.119c-0.199,0-0.479-0.079-0.559,0.08l-0.521,1.036l3.478,8.132
|
||||
l-0.359,0.199l-3.357-8.013l-4.038,7.415c0.241,0.239,0.8,0.718,0.72,1.274l6.196,0.04v0.2h-6.196
|
||||
c0.16,0.717-0.68,1.435-1.279,1.673c0,0.12,0,0.28,0,0.399c0.12,0.199,0.32,0.398,0.28,0.678h-0.76L49,65.17h-0.521l-0.12-0.279
|
||||
L48.2,65.13l-1.519-0.079c0-0.12,0-0.319,0.16-0.358c0.52-0.04,0.919-0.08,1.359-0.398c-0.04-0.08,0.04-0.12,0.04-0.2l0.04-0.238
|
||||
l-0.959-0.04l-0.2-3.708l-5.317-5.42l-0.919,2.83c-0.36,1.315-0.919,2.83-1.359,3.188c-0.719,1.036-1.359,0.996-1.08,1.196
|
||||
c-0.12-0.08-0.28-0.12-0.28-0.24c0-0.159,0.201-0.119,0.6-0.677c0.239-0.319,1.279-1.635,1.439-2.591
|
||||
c0.199-0.479,0.239-0.758,0.319-1.077l2.079-6.576c0.439-0.159,0.719,0.199,1.399,0.04c-0.04-0.04,0.04,0.04,0,0
|
||||
c0-0.08-0.04-0.199-0.04-0.279c0.48,0,0.48-1.115,1.959-0.559c0.12-0.039,0.279-0.398,0.399-0.438c0.12-0.318,0.52-0.238,0.68-0.677
|
||||
c0.799-0.438,1.359-1.355,1.52-1.793c-0.201-0.759-0.241-1.316-0.52-2.073c-0.44-1.276-0.241-1.834-0.241-2.671
|
||||
c0.241-0.199,0.56-0.598,0.52-0.877c-0.04-0.08-0.12-0.08-0.16-0.12c-0.079,0-0.239,0.08-0.319,0.08
|
||||
c-0.121,0.239-0.041,0.438-0.4,0.438c-0.16,0-0.16-0.318-0.16-0.438c-0.04,0-0.08-0.08-0.159-0.04c-0.04-0.04-0.08-0.119-0.08-0.159
|
||||
c-0.04,0-0.08-0.079-0.16-0.039c-0.04-0.04-0.08-0.08-0.12-0.12c0-0.16,0.16,0,0,0c-0.08-0.08,0.12,0,0,0
|
||||
c-0.52,0.04-0.32-0.757-0.44-0.877c-0.08-0.12-0.399-0.519-0.52-0.598c-0.119,0.04-0.239-0.04-0.36-0.04
|
||||
c-0.08-0.239-0.08-0.717,0.28-0.757c-0.039-0.08,0.04-0.12,0.04-0.16c0.04-0.04,0.12-0.08,0.16-0.08
|
||||
c0.759-1.515,2.039-1.753,3.119-0.238c0.399,2.151,0.399,1.515,0.679,2.032c-0.08-0.039-0.12,0.04-0.16,0.04
|
||||
C49.399,40.298,49.319,40.338,49.399,40.417z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M49.399,40.417
|
||||
c0.359,0.358,0.639,0.639,1.039,0.957c1.119,0.838,1.839,1.993,2.518,2.91c0.721,0.956,2.398,5.103,2.559,6.616
|
||||
c-0.08,0.04-0.16,0.439-0.199,0.518c0.16-0.04,0.279,0.04,0.32,0.2c0,0.04-0.08,0.08-0.041,0.159c-0.039,0.04-0.119,0.04-0.16,0.119
|
||||
c-0.199,0-0.479-0.079-0.559,0.08l-0.521,1.036l3.478,8.132l-0.359,0.199l-3.357-8.013l-4.038,7.415
|
||||
c0.241,0.239,0.8,0.718,0.72,1.274l6.196,0.04v0.2h-6.196c0.16,0.717-0.68,1.435-1.279,1.673c0,0.12,0,0.28,0,0.399
|
||||
c0.12,0.199,0.32,0.398,0.28,0.678h-0.76L49,65.17h-0.521l-0.12-0.279L48.2,65.13l-1.519-0.079c0-0.12,0-0.319,0.16-0.358
|
||||
c0.52-0.04,0.919-0.08,1.359-0.398c-0.04-0.08,0.04-0.12,0.04-0.2l0.04-0.238l-0.959-0.04l-0.2-3.708l-5.317-5.42l-0.919,2.83
|
||||
c-0.36,1.315-0.919,2.83-1.359,3.188c-0.719,1.036-1.359,0.996-1.08,1.196c-0.12-0.08-0.28-0.12-0.28-0.24
|
||||
c0-0.159,0.201-0.119,0.6-0.677c0.239-0.319,1.279-1.635,1.439-2.591c0.199-0.479,0.239-0.758,0.319-1.077l2.079-6.576
|
||||
c0.44-0.16,0.719,0.199,1.399,0.04c-0.04-0.04,0.04,0.04,0,0c0-0.08-0.04-0.2-0.04-0.279c0.48,0,0.48-1.115,1.959-0.559
|
||||
c0.12-0.039,0.279-0.398,0.399-0.438c0.12-0.318,0.52-0.238,0.68-0.677c0.799-0.438,1.359-1.355,1.52-1.793
|
||||
c-0.201-0.759-0.241-1.316-0.52-2.073c-0.44-1.276-0.241-1.834-0.241-2.671c0.241-0.199,0.56-0.598,0.52-0.877
|
||||
c-0.04-0.08-0.12-0.08-0.16-0.12c-0.079,0-0.239,0.08-0.319,0.08c-0.121,0.239-0.041,0.438-0.4,0.438c-0.16,0-0.16-0.318-0.16-0.438
|
||||
c-0.04,0-0.08-0.08-0.159-0.04c-0.04-0.04-0.08-0.119-0.08-0.159c-0.04,0-0.08-0.079-0.16-0.039c-0.04-0.04-0.08-0.08-0.12-0.12
|
||||
c0-0.16,0.16,0,0,0c-0.08-0.08,0.12,0,0,0c-0.52,0.04-0.32-0.757-0.44-0.877c-0.08-0.12-0.399-0.519-0.52-0.598
|
||||
c-0.119,0.04-0.239-0.04-0.359-0.04c-0.081-0.239-0.081-0.717,0.279-0.757c-0.039-0.08,0.04-0.12,0.04-0.16
|
||||
c0.04-0.04,0.12-0.08,0.16-0.08c0.759-1.515,2.039-1.753,3.119-0.238c0.399,2.151,0.399,1.515,0.679,2.032
|
||||
c-0.08-0.039-0.12,0.04-0.16,0.04C49.399,40.298,49.319,40.338,49.399,40.417z"/>
|
||||
<path fill="#FFFFFF" d="M49.759,60.546l4.078-7.333h-0.6l-3.039,3.108c-0.399,0.438-0.56,1.076-0.6,1.675L49.759,60.546z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M49.759,60.546l4.078-7.333h-0.6l-3.039,3.108
|
||||
c-0.399,0.438-0.56,1.076-0.6,1.675L49.759,60.546z"/>
|
||||
<path fill="#FFFFFF" d="M41.924,54.288l0.399-1.195h1.479c-0.319,0.238-0.359,0.678-0.239,1.036c0.159,0.08,0.159,0.359,0.359,0.398
|
||||
l3.159,4.026v1.075L41.924,54.288z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M41.924,54.288l0.399-1.195h1.479
|
||||
c-0.319,0.238-0.359,0.678-0.239,1.036c0.159,0.08,0.159,0.359,0.359,0.398l3.159,4.026v1.075L41.924,54.288z"/>
|
||||
<polygon fill="#FFFFFF" points="46.921,54.607 47.4,55.245 48.4,53.81 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="46.921,54.607 47.4,55.245 48.4,53.81
|
||||
"/>
|
||||
<polygon fill="#FFFFFF" points="53.556,52.854 53.956,52.854 54.436,51.977 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="53.556,52.854 53.956,52.854
|
||||
54.436,51.977 "/>
|
||||
<path fill="#FFFFFF" d="M42.403,52.814h1.719l5.357-2.512l0.319-0.518l0.16-0.16l0.079-0.238l0.32-0.36l0.041-0.318l-0.16-0.358
|
||||
l0.039-0.598l-0.24,0.518L49,49.347l-1,0.797l-0.68,0.558l-1,0.398c-0.279-0.558-0.08-0.159-0.6-0.199
|
||||
c-0.04,0.956-0.52-0.239-0.52,0.159c0,0.2,0.2-0.04,0,0c-0.239,0.04,0.16,0.318-0.359,0.24c0.28,0.557-0.919-0.24-1.919-0.24
|
||||
L42.403,52.814z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M42.403,52.814h1.719l5.357-2.512l0.319-0.518
|
||||
l0.16-0.16l0.079-0.238l0.32-0.36l0.041-0.318l-0.16-0.358l0.039-0.598l-0.24,0.518L49,49.347l-1,0.797l-0.68,0.558l-1,0.398
|
||||
c-0.279-0.558-0.08-0.159-0.6-0.199c-0.04,0.956-0.52-0.239-0.52,0.159c0,0.2,0.201-0.04,0,0c-0.239,0.04,0.16,0.318-0.359,0.24
|
||||
c0.28,0.557-0.919-0.24-1.919-0.24L42.403,52.814z"/>
|
||||
<polygon fill="#120C0E" points="58.793,61.582 62.751,59.311 62.991,59.511 58.913,61.902 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="58.793,61.582 62.751,59.311
|
||||
62.991,59.511 58.913,61.902 "/>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
|
@ -0,0 +1,79 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.705px" viewBox="0 0 95.797 83.705" enable-background="new 0 0 95.797 83.705" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.271C51.319,0.877,49.759,0,47.96,0c-1.719,0-2.479,0.837-3.397,2.112L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.976c1.04,1.037,2.238,1.436,3.598,1.436h86.306c0.999,0,2.039-0.679,2.8-1.436
|
||||
c1.479-1.515,1.838-3.707,1.078-5.58L52.198,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.271C51.319,0.877,49.759,0,47.961,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.976c1.04,1.037,2.238,1.436,3.598,1.436h86.306
|
||||
c0.999,0,2.039-0.679,2.8-1.436c1.479-1.515,1.838-3.707,1.078-5.58L52.198,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.139,72.902 47.92,15.466 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.139,72.902 47.92,15.466
|
||||
14.702,72.902 "/>
|
||||
<path fill="#120C0E" d="M40.365,57.876c0.16,0,0.52,0,0.68,0.079c0.64,0.359,0.879,1.396,2.278,1.754
|
||||
c0.241,0.398,0.44,0.08,0.48,0.917c-0.399,0.358-1.399,0.599-1.999-0.239c-0.119,0-0.399-0.439-0.519-0.439
|
||||
c-0.08-0.198-0.361,0-0.441-0.198c-0.239-0.04-0.359-0.04-0.679-0.359c-0.64-0.517-1.2-2.47-2.159-3.587
|
||||
c-0.599-0.718-1.159-2.192-2.198-3.229c-0.2-0.199-0.04-0.518-0.08-0.758c0.16-0.039,0.2-0.158,0.279-0.238
|
||||
c1.56-0.319,5.238,1.155,6.276,1.275c0.16-0.2,0.28,0,0.32-0.238c-0.04-0.08,0.04-0.52,0-0.559c-0.04-0.12-0.24-0.359-0.24-0.519
|
||||
c0-0.398-0.28-0.917-0.159-1.396c0.319-1.235,0.719-1.953,0.439-3.388c-0.04-0.04-0.08-0.079-0.12-0.12
|
||||
c-0.08-0.159,0.04-1.354,0-1.514c-0.04-0.08-0.16-0.479-0.16-0.52c-0.28-0.357,0-0.598-0.4-0.876
|
||||
c-0.08-0.438-0.399-0.638-0.479-1.116c-0.12-0.558-0.239-1.036-0.199-1.634c0.039-0.598-0.321-1.315-0.8-1.395
|
||||
c-1.119-0.16-1.839-0.518-2.318-0.678c-0.52-0.198-0.56-0.717-0.799-0.717c-0.2-0.12-0.24-0.359-0.24-0.598
|
||||
c0-0.08,0.04-0.12,0.04-0.16c0.2-0.318,0.52-0.318,0.839-0.279c0.04-0.08,0.24,0,0.32-0.04c0.199-0.08,0.44-0.04,0.599-0.24
|
||||
c0.72-0.239,1.04-1.195,1.759-0.957c1.279,0.438,2.039-1.594,3.238-1.116c0.08,0,0.319-0.279,0.399-0.24
|
||||
c0.201-0.358,0.281-0.398,0.52-0.717c-0.16-0.558-0.12-1.555,0.32-2.313c0.079-0.358,0.199-0.557,0.399-0.837
|
||||
c0.04-0.318,0.56-0.598,0.759-0.876c-0.199,0.638-1.479,2.113-1.159,3.626c0.599-0.518,1.478-0.876,2.078-1.475
|
||||
c0.72-0.757,1.76-0.996,2.079-1.753c0.04,0,0.959-0.957,1.04-0.917c0,0.239,0.08,0,0,0c0,0.319-0.801,0.997-1,1.355
|
||||
c-0.4,0.28-0.76,0.718-1.12,0.997c0.479-0.04,1.04-0.278,1.519-0.08c-0.04,0.08,0.04,0.12,0.04,0.16
|
||||
c-0.6-0.04-1.839,0.2-2.358,0.558c-0.24,0.159-0.28,0.239-0.72,0.479c-0.439,0.398-1.199,0.558-1.598,1.275
|
||||
c-0.16,0.319-0.479,0.558-0.72,0.837c0,0.04,0.04,0.12,0.081,0.16c0.08-0.04,0.12,0.04,0.16,0.04c-0.08,0.04-0.08,0.04-0.12,0.12
|
||||
c-0.121-0.04-0.241-0.16-0.36-0.12c0.039,0.2,0.079,0.358,0.279,0.438c1.479-0.12,2.838,0.2,2.838,0.478
|
||||
c0.04,0.877-0.679,2.033-2.358,1.753c-0.319,1.037-0.08,4.226,1.16,5.381c0.119,0.08,0.919,1.316,0.959,1.715
|
||||
c0.399,0.598,0.799,1.554,0.879,2.191c0.081,0,0.121,0,0.2,0c0.04,0.041,0.48,0.2,0.519,0.24c0.08-0.04,0.641,0.557,0.681,0.557
|
||||
c0.919,0.679,0.839,1.437,1.958,1.476c2.479,0.079,6.037,0.678,6.236,0.996c0.121-0.04,1.679-0.318,1.799-0.358
|
||||
c3.238-0.518,5.316,1.475,5.236,1.475c0.08,0.08,0.641,0.398,0.721,0.479c0.04,0.358,0.16,0.996-0.201,1.275
|
||||
c0.041,0.119,0.121,0.199,0.201,0.279c0.08,0.519,0.719,0.996,0.919,3.627c0,0.12,0.04,0.24,0.08,0.359
|
||||
c0.04,0,0.12,0.039,0.159,0.079c-0.039,0.079,0.04,0.12,0.04,0.159c1.16,0.719,0.28,1.077,3.079,1.476
|
||||
c0.318,0.358,0.199,0.438,0.479,0.796c0.56,1.277,0.799,3.189,1.2,4.665c-0.041,0.079,0.279,0.278,0.279,0.358
|
||||
c0.199,0.119,0.398,0.238,0.52,0.438c-0.281,2.032,1.799,1.315,2.519,1.993c0.079,0.278,0.279,0.559,0.119,0.797
|
||||
c-0.119,0.039-0.159,0.239-0.28,0.279c-0.279,0-0.559,0.04-0.838-0.04c-0.44-0.159-0.321-0.398-0.521-0.519
|
||||
c-0.32-0.916-1.878-1.115-2.278-1.514c-0.68-0.679-0.92-1.236-1.279-2.153c-0.199-0.558-0.561-1.235-0.92-1.714
|
||||
c0-0.04-0.08-0.08-0.04-0.16c-0.199-0.158-0.319-0.597-0.52-0.756c-0.759-1.396-3.478,0.638-7.796-3.588
|
||||
c-1.198-0.717-1.078-1.475-4.316-1.235c-0.279-1.315-2.479-1.515-3.478-1.355c-0.6,0.398-2.279,0.797-2.639,0.837
|
||||
c-1.718,0.16-2.599-0.318-4.157-1.116c-1.479,1.236-2.239,0.798-3.198,0.2c-2.718-1.755-4.837-2.074-4.677-1.715
|
||||
c0.319,0.758,2.918,4.266,2.398,3.787C40.125,57.557,40.405,57.717,40.365,57.876z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M40.365,57.876c0.16,0,0.52,0,0.68,0.079
|
||||
c0.64,0.359,0.879,1.396,2.278,1.754c0.241,0.398,0.44,0.08,0.48,0.917c-0.399,0.358-1.399,0.599-1.999-0.239
|
||||
c-0.119,0-0.399-0.439-0.519-0.439c-0.08-0.198-0.361,0-0.441-0.198c-0.239-0.04-0.359-0.04-0.679-0.359
|
||||
c-0.64-0.517-1.2-2.47-2.159-3.587c-0.599-0.718-1.159-2.192-2.198-3.229c-0.2-0.199-0.04-0.518-0.08-0.758
|
||||
c0.16-0.039,0.2-0.158,0.279-0.238c1.56-0.319,5.238,1.155,6.276,1.275c0.16-0.2,0.28,0,0.32-0.238c-0.04-0.08,0.04-0.52,0-0.559
|
||||
c-0.04-0.12-0.24-0.359-0.24-0.519c0-0.398-0.28-0.917-0.159-1.396c0.319-1.235,0.719-1.953,0.439-3.388
|
||||
c-0.04-0.04-0.08-0.079-0.12-0.12c-0.08-0.159,0.04-1.354,0-1.514c-0.04-0.08-0.16-0.479-0.16-0.52c-0.28-0.357,0-0.598-0.4-0.876
|
||||
c-0.08-0.438-0.399-0.638-0.479-1.116c-0.12-0.558-0.239-1.036-0.199-1.634c0.039-0.598-0.321-1.315-0.8-1.395
|
||||
c-1.119-0.16-1.839-0.518-2.318-0.678c-0.52-0.199-0.56-0.717-0.799-0.717c-0.2-0.12-0.24-0.359-0.24-0.598
|
||||
c0-0.08,0.04-0.12,0.04-0.16c0.2-0.319,0.52-0.319,0.839-0.279c0.04-0.08,0.24,0,0.32-0.04c0.199-0.08,0.44-0.04,0.599-0.239
|
||||
c0.72-0.239,1.04-1.195,1.759-0.957c1.279,0.438,2.039-1.594,3.238-1.116c0.08,0,0.319-0.279,0.399-0.24
|
||||
c0.201-0.358,0.281-0.398,0.52-0.717c-0.16-0.558-0.12-1.555,0.32-2.313c0.079-0.358,0.199-0.557,0.399-0.837
|
||||
c0.04-0.318,0.56-0.598,0.759-0.876c-0.199,0.638-1.479,2.113-1.159,3.626c0.599-0.518,1.478-0.877,2.078-1.475
|
||||
c0.72-0.757,1.76-0.996,2.079-1.754c0.04,0,0.96-0.957,1.04-0.917c0,0.239,0.08,0,0,0c0,0.319-0.801,0.997-1,1.355
|
||||
c-0.4,0.28-0.76,0.718-1.12,0.997c0.479-0.04,1.04-0.278,1.519-0.08c-0.04,0.08,0.04,0.12,0.04,0.16
|
||||
c-0.6-0.04-1.838,0.2-2.358,0.558c-0.24,0.159-0.28,0.239-0.72,0.479c-0.439,0.398-1.199,0.558-1.598,1.275
|
||||
c-0.16,0.319-0.479,0.558-0.72,0.837c0,0.04,0.04,0.12,0.081,0.16c0.08-0.04,0.12,0.04,0.16,0.04c-0.08,0.04-0.08,0.04-0.12,0.12
|
||||
c-0.121-0.04-0.241-0.16-0.36-0.12c0.039,0.2,0.079,0.358,0.279,0.438c1.479-0.12,2.838,0.199,2.838,0.478
|
||||
c0.04,0.877-0.679,2.033-2.358,1.753c-0.319,1.037-0.08,4.226,1.16,5.381c0.119,0.08,0.919,1.316,0.959,1.715
|
||||
c0.399,0.598,0.799,1.554,0.879,2.191c0.081,0,0.121,0,0.2,0c0.04,0.041,0.48,0.2,0.519,0.24c0.08-0.04,0.641,0.557,0.681,0.557
|
||||
c0.919,0.679,0.839,1.437,1.958,1.476c2.479,0.079,6.037,0.678,6.236,0.996c0.121-0.04,1.679-0.318,1.799-0.358
|
||||
c3.238-0.518,5.316,1.475,5.236,1.475c0.08,0.08,0.641,0.398,0.721,0.479c0.04,0.358,0.16,0.996-0.201,1.275
|
||||
c0.041,0.119,0.121,0.199,0.201,0.279c0.08,0.519,0.719,0.996,0.919,3.627c0,0.119,0.04,0.24,0.08,0.359
|
||||
c0.04,0,0.12,0.039,0.159,0.079c-0.039,0.079,0.04,0.12,0.04,0.159c1.16,0.719,0.28,1.077,3.079,1.476
|
||||
c0.318,0.358,0.199,0.438,0.479,0.796c0.56,1.277,0.799,3.189,1.2,4.665c-0.041,0.079,0.279,0.278,0.279,0.358
|
||||
c0.199,0.119,0.398,0.238,0.52,0.438c-0.281,2.032,1.799,1.315,2.519,1.993c0.079,0.278,0.279,0.559,0.119,0.797
|
||||
c-0.119,0.039-0.159,0.239-0.28,0.279c-0.279,0-0.559,0.04-0.838-0.04c-0.44-0.159-0.321-0.398-0.521-0.519
|
||||
c-0.32-0.916-1.878-1.115-2.278-1.514c-0.68-0.679-0.92-1.236-1.279-2.153c-0.199-0.558-0.561-1.235-0.92-1.714
|
||||
c0-0.04-0.08-0.08-0.04-0.16c-0.199-0.158-0.319-0.597-0.52-0.756c-0.759-1.396-3.478,0.638-7.796-3.588
|
||||
c-1.198-0.717-1.078-1.476-4.316-1.235c-0.279-1.315-2.479-1.515-3.478-1.355c-0.6,0.398-2.279,0.797-2.639,0.837
|
||||
c-1.718,0.16-2.599-0.318-4.157-1.116c-1.479,1.235-2.239,0.798-3.198,0.2c-2.718-1.755-4.837-2.074-4.677-1.715
|
||||
c0.319,0.758,2.918,4.266,2.398,3.787C40.125,57.557,40.405,57.717,40.365,57.876z"/>
|
||||
</svg>
|
After (image error) Size: 8.1 KiB |
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.798px" height="83.705px" viewBox="0 0 95.798 83.705" enable-background="new 0 0 95.798 83.705" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.319,0.877,49.759,0,47.961,0c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.976c1.04,1.036,2.238,1.435,3.597,1.435h86.305c1,0,2.039-0.677,2.8-1.435
|
||||
c1.479-1.516,1.839-3.707,1.079-5.58L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.319,0.877,49.759,0,47.961,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.976c1.04,1.036,2.238,1.435,3.597,1.435h86.305
|
||||
c1,0,2.039-0.677,2.8-1.435c1.479-1.516,1.839-3.707,1.079-5.58L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.903 47.921,15.466 14.702,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.903 47.921,15.466
|
||||
14.702,72.903 "/>
|
||||
<path fill="#120C0E" d="M43.723,67.403c-0.479-0.041,1.4-1.236,0.64-3.947c-0.279-0.996-0.239-1.395-0.239-2.031
|
||||
c-0.201-0.599-0.72-0.799-1.64-0.838c-0.64-0.04-0.879-0.957-1.519-1.674c-1.56-1.754-0.48-3.588-3.118-4.943
|
||||
c-0.04,0-1.24,0.599-1.32,0.559c-0.279-0.199-1.239,0.12-1.319,0.318c-0.239,0-0.48,0.24-0.719-0.158
|
||||
c-0.4-0.08-0.84-0.439-1.399-0.2c-0.12-0.079-0.24-0.239-0.36-0.318c0-0.28-0.04-0.519,0.12-0.758c0.04-0.04,0.12-0.08,0.2-0.08
|
||||
c0.359-0.597,0.759-1.235,1.159-1.833c0-0.318,0-0.639,0.12-0.917c0.04-0.079,0.04-0.079,0.12-0.12c0-0.398,0.36-0.597,0.52-0.916
|
||||
c0.04-0.199,0.04-0.359,0-0.559c-0.04-0.04-0.12-0.078-0.16-0.078c-0.201,0.118-0.44,0.158-0.6,0.398
|
||||
c-0.04,0-0.239-0.121-0.319-0.08c0-0.08,0-0.12,0-0.2c0.16-0.118,0.279-0.278,0.399-0.438c0.279-0.318,0.959-0.318,1.16-0.637
|
||||
c0.079-0.04,0.119,0.039,0.159,0.039c0.04-0.119,0.16-0.199,0.241-0.279c0.239-0.08,0.479-0.08,0.719-0.08
|
||||
c0.24,0.28,0.68,0.32,1,0.398c0.04,0.041,0.08,0.08,0.12,0.121c0.16,0.039,0.359,0.079,0.52,0c0.239-0.319,0.839-0.121,0.999-0.639
|
||||
c0.12-0.039,0.28,0.04,0.4,0.04c0.24,0.359,0.2,0.678-0.12,0.996c-0.639,2.113,5.997-0.118,9.833,0.759
|
||||
c1.239,0.277,3.118-0.2,6.996-0.439c1.76-0.119,4.758,0.678,5.157,1.036c0.199,0.359,0.479,0.599,0.959,1.116
|
||||
c0.96,0.996,0.599,3.069,0.319,4.863c-0.08,0.479-0.319,1.275-0.359,1.753c-0.16,1.356,0.32,2.432-0.04,2.87
|
||||
c-0.12,0.04-0.16,0.119-0.28,0.16c-0.039,0-0.239-1.236-0.319-1.195c-0.239-1.236,0.28-1.037,0.64-3.349
|
||||
c0.199-1.435,0.12-1.675-0.04-3.269c-0.24-0.119-0.24-0.718-0.319-0.957c-0.12-0.318-0.16-0.119-0.52-0.877
|
||||
c-0.16,0.279,0.239,0.639,0.239,0.957c0.64,0.558,0.479,2.949,0.359,3.627c-0.119,0.797-0.319,1.156-0.639,1.873
|
||||
c-0.36,0.758-0.12,1.156-0.28,2.232c-0.16,1.116-0.24,1.475-0.16,2.83c0.041,0.758-0.959,1.116-0.999,4.186
|
||||
c-0.32-0.16-0.36,0.199-0.36,0.438c0.16,0.198-1.318,0.597-1.759,0.159c0.12-0.279,0.36-0.519,0.64-0.678
|
||||
c0.561-1.116,0.84-2.83,0.64-4.025c-0.44-0.318-0.239-0.838-0.36-1.275c-0.279-0.438-0.559-0.559-0.799-1.156
|
||||
c-0.399,0.279-1.318,0.559-0.72,1.314c-0.119,0-0.319-0.078-0.439-0.078c-0.12-0.24,0.04-0.479-0.159-0.678
|
||||
c-0.041,0-0.08-0.08-0.16-0.041c-0.041,0.041-0.121,0.041-0.16,0.12c-0.041,0.159-0.08,0.438-0.16,0.599
|
||||
c-0.119,0-0.279,0.039-0.279-0.24c0-0.278-0.08-0.398-0.08-0.678c-0.28-0.358-0.76-0.837-0.96-1.235c-0.04,0-0.119-0.12-0.159-0.04
|
||||
c-0.24,0.559-2.799,0.758-3.878,0.318c-1.599-0.158-2.319,0.758-4.437,0.519c-0.04,0.04-0.121,0.12-0.161,0.159
|
||||
c-0.279,1.197,0.241,3.229-0.399,3.588c-0.239,0.917-0.279,1.396-0.319,2.87c-0.04,0-0.399,0-0.44,0.04
|
||||
c0,0.318,0.041,0.518-0.04,0.797C44.603,67.602,44.203,67.442,43.723,67.403z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M43.723,67.403
|
||||
c-0.479-0.041,1.4-1.236,0.64-3.947c-0.279-0.996-0.239-1.395-0.239-2.031c-0.201-0.599-0.72-0.799-1.64-0.838
|
||||
c-0.64-0.04-0.879-0.957-1.519-1.674c-1.559-1.754-0.48-3.588-3.118-4.943c-0.04,0-1.24,0.599-1.32,0.559
|
||||
c-0.279-0.199-1.239,0.12-1.319,0.318c-0.239,0-0.48,0.24-0.719-0.158c-0.4-0.08-0.84-0.439-1.399-0.2
|
||||
c-0.12-0.079-0.24-0.239-0.36-0.318c0-0.28-0.04-0.519,0.12-0.758c0.04-0.04,0.12-0.08,0.2-0.08
|
||||
c0.359-0.597,0.759-1.235,1.159-1.833c0-0.318,0-0.639,0.12-0.917c0.04-0.079,0.04-0.079,0.12-0.12c0-0.398,0.36-0.597,0.52-0.916
|
||||
c0.04-0.199,0.04-0.359,0-0.559c-0.04-0.04-0.12-0.078-0.16-0.078c-0.201,0.118-0.44,0.158-0.6,0.398
|
||||
c-0.04,0-0.239-0.121-0.319-0.08c0-0.08,0-0.12,0-0.2c0.16-0.118,0.279-0.278,0.399-0.438c0.279-0.318,0.959-0.318,1.16-0.637
|
||||
c0.079-0.04,0.119,0.039,0.159,0.039c0.04-0.119,0.16-0.199,0.241-0.279c0.239-0.08,0.479-0.08,0.719-0.08
|
||||
c0.24,0.28,0.68,0.32,1,0.398c0.04,0.041,0.08,0.08,0.12,0.12c0.16,0.04,0.359,0.08,0.52,0c0.239-0.318,0.839-0.12,0.999-0.638
|
||||
c0.12-0.039,0.28,0.04,0.4,0.04c0.24,0.359,0.2,0.678-0.12,0.996c-0.639,2.113,5.997-0.118,9.833,0.759
|
||||
c1.239,0.277,3.118-0.2,6.996-0.439c1.76-0.119,4.758,0.678,5.157,1.036c0.199,0.359,0.479,0.599,0.959,1.116
|
||||
c0.96,0.996,0.599,3.069,0.319,4.863c-0.08,0.479-0.319,1.275-0.359,1.753c-0.16,1.356,0.32,2.432-0.04,2.87
|
||||
c-0.12,0.04-0.16,0.119-0.28,0.16c-0.039,0-0.239-1.236-0.319-1.195c-0.239-1.236,0.28-1.037,0.64-3.349
|
||||
c0.199-1.435,0.12-1.675-0.04-3.269c-0.24-0.119-0.24-0.718-0.319-0.957c-0.12-0.318-0.16-0.119-0.52-0.877
|
||||
c-0.16,0.279,0.239,0.639,0.239,0.957c0.64,0.558,0.479,2.949,0.359,3.627c-0.119,0.797-0.319,1.156-0.639,1.873
|
||||
c-0.36,0.758-0.12,1.156-0.28,2.232c-0.16,1.116-0.24,1.475-0.16,2.83c0.041,0.758-0.959,1.116-0.999,4.186
|
||||
c-0.32-0.16-0.36,0.199-0.36,0.438c0.16,0.198-1.318,0.597-1.759,0.159c0.12-0.279,0.36-0.519,0.64-0.678
|
||||
c0.561-1.116,0.84-2.83,0.64-4.025c-0.44-0.318-0.239-0.838-0.36-1.275c-0.279-0.438-0.559-0.559-0.799-1.156
|
||||
c-0.399,0.279-1.318,0.558-0.72,1.314c-0.119,0-0.319-0.078-0.439-0.078c-0.12-0.24,0.04-0.479-0.159-0.679
|
||||
c-0.041,0-0.08-0.079-0.16-0.04c-0.041,0.04-0.121,0.04-0.16,0.12c-0.041,0.159-0.08,0.438-0.16,0.599
|
||||
c-0.119,0-0.279,0.039-0.279-0.24c0-0.278-0.08-0.398-0.08-0.678c-0.28-0.358-0.76-0.837-0.96-1.235c-0.04,0-0.119-0.12-0.159-0.04
|
||||
c-0.24,0.559-2.799,0.758-3.878,0.318c-1.599-0.158-2.319,0.758-4.437,0.519c-0.04,0.04-0.121,0.12-0.161,0.159
|
||||
c-0.279,1.197,0.241,3.229-0.399,3.588c-0.239,0.917-0.279,1.396-0.319,2.87c-0.04,0-0.399,0-0.44,0.04
|
||||
c0,0.318,0.041,0.518-0.04,0.797C44.603,67.602,44.203,67.442,43.723,67.403z"/>
|
||||
</svg>
|
After (image error) Size: 6.5 KiB |
|
@ -0,0 +1,94 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.705px" viewBox="0 0 95.797 83.705" enable-background="new 0 0 95.797 83.705" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.318,0.878,49.759,0,47.96,0c-1.719,0-2.479,0.838-3.398,2.113L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.977c1.04,1.035,2.238,1.435,3.597,1.435h86.305c1,0,2.039-0.678,2.799-1.435
|
||||
c1.479-1.515,1.84-3.708,1.079-5.581L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.318,0.878,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.838-3.398,2.113L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.977c1.04,1.035,2.238,1.435,3.597,1.435h86.305
|
||||
c1,0,2.039-0.678,2.799-1.435c1.479-1.515,1.84-3.708,1.079-5.581L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.466 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.466
|
||||
14.702,72.902 "/>
|
||||
<path fill="#120C0E" d="M47.8,68.319H20.218v-2.432l3.518,0.039l3.917-4.463c0.52-0.599,1.999-1.316,2.718-0.32
|
||||
c1.08,0.719,1.439,1.236,1.479,1.555c-0.041,0.08,0.799,0.519,1.2,1.476c0.239,0,0.359,0.398,0.639,0.358
|
||||
c0.24,0.279,0.399,0.438,0.72,0.638c0.399,0.559,0.759,0.877,1.04,1.156h1.758l-0.12-1.196l0.32-0.318
|
||||
c-0.04-0.04-0.24-1.116-0.28-1.156c-0.64-3.188-0.16-4.465,0.2-6.338c0.08-0.398-0.72-3.108,0-4.663
|
||||
c-0.479-1.036-0.32-3.148-0.28-3.746c0.04-0.398,0.2-1.355,0.52-1.635c0.04-0.398,0.12-0.318,0.08-0.717
|
||||
c-0.56-0.24-1.319-0.599-1.798-1.157c-0.12-0.677,0.04-0.876,0.199-1.594h-0.359c0.08-0.997,0.72-3.428,1.16-4.226
|
||||
c0.359-0.637-0.2-1.076,0.04-1.435c0.319-0.398,0.359-0.398,0.52-0.438c0.159-0.08,0.119,0.04,0.279-0.04c0.081-0.158-0.16-0.08,0,0
|
||||
c0.121-0.318,0.839-0.398,0.919-0.757c0.76,0.04,2.039-0.598,3.478-1.435c0.199-0.12,0.4-0.319,0.52-0.519
|
||||
c0.04,0,0.08-0.08,0.159-0.04c0.04-0.239,0.32-0.159,0.4-0.358c0.239-0.08,0.52-0.12,0.759-0.04c0.04,0.04,0.08,0.08,0.12,0.119
|
||||
c1.959,0.239,2.158-0.079,2.638-0.398c0-0.04,0.04-0.119,0.08-0.159c0.28,0.159,0.4-0.199,0.6-0.239l0.479,0.438
|
||||
c0.16-0.04,0.879-0.438,0.959-0.797c0.439-0.398,0.52-0.797,0.2-1.873c-0.2-0.639,0.56-0.479,0.239-0.917
|
||||
c0.12-0.04,0.24-0.279,0.359-0.319c0.6-0.079,0.96,0,1.6,0.08c0.399,0.319,1.119,0.398,1.52,0.718
|
||||
c0.839,0.438,2.039,1.993,1.998,2.392c-0.199,0.198-0.16,0.158-0.398,0.358c0,0.239,0.279,1.515,0.039,1.354
|
||||
c-0.279-0.198-0.48-0.119-0.76-0.318c-0.56,0.717-0.799,1.076-1.6,1.475c-0.359-0.08-0.279,0.318-0.679,0.08
|
||||
c-0.12,0.199-0.439,0.398-0.439,0.717c0.319,0.438,0.799,1.077,1.118,1.476c0.52,0.836,1.56,1.036,0.6,2.989
|
||||
c-0.199,0.398-0.52,3.269-0.959,4.663c0.121,0.398,0.08,0.917,0.08,1.355c-0.08,1.873-0.12,2.192,0.52,3.627
|
||||
c0.4,0.559,1.279,0.797,1.799,1.195l6.196,2.83c0.399,0.2,0.6,0.599,1.04,0.758c0.52,0,0.799,0.358,1.479-0.12
|
||||
c0.319-0.238,0.68-0.358,0.959-0.677c0.4-0.758,1.439-1.076,1.759-1.555c0.601-0.239,1.079-0.996,2.079-0.798
|
||||
c0.479,0.24,0.879,0,1.199,0.479c-0.08,0.199,0.32,0.519,0.4,0.718c0.359,0.239,0.679,0.957,1.119,0.877
|
||||
c-0.52,0.917,0.4,0.678,0.559,1.354c0.881,0.639,0.721,1.236,1.04,2.113c0.2,0.08,0.2,0.519,0.32,0.677
|
||||
c0.279,0.359,0.319,0.359,0.519,0.719c-0.119,0.916,0.201,1.595,0.52,2.352c-0.039,0.079,0.32,0.518,0.32,0.558
|
||||
c0.48,0.757,0.88,1.754,1.04,3.468h0.759v2.033H47.8z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M47.8,68.319H20.218v-2.432l3.518,0.039
|
||||
l3.917-4.463c0.52-0.599,1.999-1.316,2.718-0.32c1.08,0.719,1.439,1.236,1.479,1.555c-0.041,0.08,0.799,0.519,1.2,1.476
|
||||
c0.239,0,0.359,0.398,0.639,0.358c0.24,0.279,0.399,0.438,0.72,0.638c0.399,0.559,0.759,0.877,1.04,1.156h1.758l-0.12-1.196
|
||||
l0.32-0.318c-0.04-0.04-0.24-1.116-0.28-1.156c-0.64-3.188-0.16-4.465,0.2-6.338c0.08-0.398-0.72-3.108,0-4.663
|
||||
c-0.479-1.036-0.32-3.148-0.28-3.746c0.04-0.398,0.2-1.355,0.52-1.635c0.04-0.398,0.12-0.318,0.08-0.717
|
||||
c-0.56-0.24-1.319-0.599-1.798-1.157c-0.12-0.677,0.04-0.876,0.199-1.595h-0.359c0.08-0.996,0.72-3.427,1.16-4.225
|
||||
c0.359-0.637-0.2-1.076,0.04-1.435c0.319-0.398,0.359-0.398,0.52-0.438c0.159-0.08,0.119,0.04,0.279-0.04c0.081-0.158-0.16-0.08,0,0
|
||||
c0.121-0.318,0.839-0.398,0.919-0.757c0.76,0.04,2.039-0.598,3.478-1.435c0.199-0.12,0.4-0.319,0.52-0.519
|
||||
c0.04,0,0.08-0.08,0.159-0.04c0.04-0.239,0.32-0.159,0.4-0.358c0.239-0.08,0.52-0.12,0.759-0.04c0.04,0.04,0.08,0.08,0.12,0.119
|
||||
c1.959,0.239,2.158-0.079,2.638-0.398c0-0.04,0.04-0.119,0.08-0.159c0.281,0.159,0.4-0.199,0.6-0.239l0.479,0.438
|
||||
c0.16-0.04,0.879-0.438,0.959-0.797c0.439-0.398,0.52-0.797,0.2-1.873c-0.2-0.639,0.56-0.479,0.239-0.917
|
||||
c0.12-0.04,0.24-0.279,0.359-0.319c0.6-0.079,0.96,0,1.6,0.08c0.399,0.319,1.119,0.398,1.52,0.718
|
||||
c0.839,0.438,2.039,1.993,1.998,2.392c-0.199,0.198-0.16,0.158-0.398,0.358c0,0.239,0.279,1.515,0.039,1.354
|
||||
c-0.279-0.198-0.48-0.119-0.76-0.318c-0.56,0.717-0.799,1.076-1.6,1.475c-0.359-0.08-0.279,0.318-0.679,0.08
|
||||
c-0.12,0.199-0.439,0.398-0.439,0.717c0.319,0.438,0.799,1.077,1.118,1.476c0.52,0.836,1.56,1.036,0.6,2.989
|
||||
c-0.199,0.398-0.52,3.269-0.959,4.663c0.121,0.398,0.08,0.917,0.08,1.355c-0.08,1.873-0.12,2.192,0.52,3.627
|
||||
c0.4,0.559,1.279,0.797,1.799,1.195l6.196,2.83c0.399,0.2,0.6,0.599,1.04,0.758c0.52,0,0.799,0.358,1.479-0.12
|
||||
c0.319-0.238,0.68-0.358,0.959-0.677c0.4-0.758,1.439-1.076,1.759-1.555c0.601-0.239,1.079-0.996,2.079-0.798
|
||||
c0.479,0.24,0.879,0,1.199,0.479c-0.08,0.199,0.32,0.519,0.4,0.718c0.359,0.239,0.679,0.957,1.119,0.877
|
||||
c-0.52,0.917,0.4,0.678,0.559,1.354c0.881,0.639,0.721,1.236,1.04,2.113c0.2,0.08,0.2,0.519,0.32,0.677
|
||||
c0.279,0.359,0.319,0.359,0.519,0.719c-0.119,0.916,0.201,1.594,0.52,2.352c-0.039,0.079,0.32,0.518,0.32,0.558
|
||||
c0.48,0.757,0.88,1.754,1.04,3.468h0.759v2.033H47.8z"/>
|
||||
<path fill="#FFFFFF" d="M38.486,43.885c0.52-0.876,0.8-2.432,0.959-3.547c0.88-0.159,1.919-0.956,2.918-1.116
|
||||
c-0.359,0.438-0.399,0.837-0.719,1.315c-0.04,0.519-0.6,0.996-0.76,1.475c-0.639,0.718-0.679,1.396-1.279,1.833
|
||||
c-0.08,0.32-0.239,0.519-0.52,0.679C39.006,44.244,39.006,43.885,38.486,43.885z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M38.486,43.885c0.52-0.876,0.8-2.432,0.959-3.547
|
||||
c0.88-0.159,1.919-0.956,2.918-1.116c-0.359,0.438-0.399,0.837-0.719,1.315c-0.04,0.519-0.6,0.996-0.76,1.475
|
||||
c-0.639,0.718-0.679,1.396-1.279,1.833c-0.08,0.32-0.239,0.519-0.52,0.679C39.006,44.244,39.006,43.885,38.486,43.885z"/>
|
||||
<path fill="#FFFFFF" d="M47.241,44.403c-0.159,0.04-0.52,0.398-0.679,0.638c-0.439,0.678-0.64,0.519-0.72,1.555
|
||||
c-0.08,0.917,1,2.072,1.479,2.313C47.082,47.632,46.562,45.041,47.241,44.403z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M47.241,44.403
|
||||
c-0.159,0.04-0.52,0.398-0.679,0.638c-0.439,0.678-0.64,0.519-0.72,1.555c-0.08,0.917,1,2.072,1.479,2.313
|
||||
C47.082,47.632,46.562,45.041,47.241,44.403z"/>
|
||||
<path fill="#FFFFFF" d="M41.604,66.366h5.836l-1.359-1.316l-0.321-0.597l-0.439,0.278l-1.279-1.076
|
||||
c0.12-0.318,0.279-0.559,0.359-0.837c0.36-0.08,0.36-0.438,0.76-0.479c-0.56-1.833,0.919-5.699,1.838-7.334c0.04-0.04,0.04,0.08,0,0
|
||||
l-3.797-3.269l-1.439,3.787c-0.4,0.996,0,2.112-0.44,3.029c-0.28,0.559-0.2,1.555-0.079,2.271c-0.64,0.837-0.241,1.196-0.44,2.271
|
||||
c-0.08,0.438-0.32,0.639-0.24,1.077c0.359,0.279,0.759-0.04,1-0.16c0.08-0.039,0.319,0.08,0.399,0.08
|
||||
c0.04,0.12,0.08,0.239,0.16,0.319C42.283,65.17,41.604,65.648,41.604,66.366z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M41.604,66.366h5.836l-1.359-1.316l-0.321-0.597
|
||||
l-0.439,0.278l-1.279-1.076c0.12-0.318,0.279-0.559,0.359-0.837c0.36-0.08,0.36-0.438,0.76-0.479
|
||||
c-0.56-1.833,0.919-5.699,1.838-7.334c0.041-0.04,0.041,0.08,0,0l-3.797-3.269l-1.439,3.787c-0.4,0.996,0,2.112-0.44,3.029
|
||||
c-0.28,0.559-0.2,1.555-0.079,2.271c-0.64,0.837-0.241,1.196-0.44,2.271c-0.08,0.438-0.32,0.639-0.24,1.077
|
||||
c0.359,0.279,0.759-0.04,1-0.16c0.08-0.039,0.319,0.08,0.399,0.08c0.04,0.12,0.08,0.239,0.16,0.319
|
||||
C42.283,65.17,41.604,65.648,41.604,66.366z"/>
|
||||
<path fill="#FFFFFF" d="M48.28,62.261c1.959,0,1.359-1.315,2.519-2.671c0.16-0.319,0.719-1.315,0.719-1.435
|
||||
c0.761-0.957,1.76-3.069,1.399-4.385c-0.199-0.758-1.199-1.276-0.199-1.315l7.595,3.468c0.72,0.319,0.16,0.916,1.878,0.838
|
||||
c0.84-0.04-1.079,0.318-1.598,1.833c-0.16,0.358-0.84,1.235-1.16,1.475c-0.119,0.239-1.718,0.598-2.119,1.515
|
||||
c-0.279,0.638-2.077,2.83-2.678,3.068c-1.758,0.719-1.519,0.957-2.717,1.954h-1.08c0.12-0.16,0.239-0.319,0.399-0.398
|
||||
c0-0.2,0.16-0.319,0.12-0.519c-0.04-0.04-0.08-0.08-0.12-0.12c-0.04,0-0.2-0.08-0.279-0.04c-0.8-0.479-1.04-0.677-1.2-1.793
|
||||
c-0.199-0.16-0.318-0.398-0.439-0.599c-0.2-0.198-0.439,0-0.68-0.118C48.36,62.858,48.44,62.5,48.28,62.261z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M48.28,62.261c1.959,0,1.359-1.315,2.519-2.671
|
||||
c0.16-0.319,0.719-1.315,0.719-1.435c0.761-0.957,1.76-3.069,1.399-4.385c-0.199-0.758-1.199-1.276-0.199-1.316l7.595,3.469
|
||||
c0.72,0.319,0.16,0.916,1.878,0.838c0.84-0.04-1.078,0.318-1.598,1.833c-0.16,0.358-0.84,1.235-1.16,1.475
|
||||
c-0.119,0.239-1.718,0.598-2.119,1.515c-0.279,0.638-2.077,2.83-2.678,3.068c-1.758,0.719-1.519,0.957-2.717,1.953h-1.08
|
||||
c0.12-0.159,0.239-0.318,0.399-0.397c0-0.2,0.16-0.319,0.12-0.519c-0.04-0.04-0.08-0.08-0.12-0.12c-0.04,0-0.2-0.08-0.279-0.04
|
||||
c-0.8-0.479-1.04-0.677-1.2-1.793c-0.199-0.16-0.318-0.398-0.439-0.599c-0.2-0.198-0.439,0-0.68-0.118
|
||||
C48.36,62.858,48.44,62.5,48.28,62.261z"/>
|
||||
</svg>
|
After (image error) Size: 9.5 KiB |
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.705px" viewBox="0 0 95.797 83.705" enable-background="new 0 0 95.797 83.705" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.319,0.877,49.759,0,47.96,0c-1.719,0-2.479,0.838-3.397,2.113L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.977c1.04,1.035,2.238,1.434,3.598,1.434h86.306c0.999,0,2.039-0.678,2.8-1.434
|
||||
c1.479-1.516,1.838-3.708,1.078-5.582L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.319,0.877,49.759,0,47.961,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.977c1.04,1.035,2.238,1.434,3.598,1.434h86.306
|
||||
c0.999,0,2.039-0.678,2.8-1.434c1.479-1.516,1.838-3.708,1.078-5.582L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.139,72.903 47.92,15.465 14.702,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.139,72.903 47.92,15.465
|
||||
14.702,72.903 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M47.96,39.62c-5.276,0-8.555-5.66-5.917-10.204
|
||||
c2.638-4.503,9.195-4.503,11.793,0C56.475,33.96,53.198,39.62,47.96,39.62z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M47.961,39.62c-5.277,0-8.556-5.66-5.917-10.204
|
||||
c2.638-4.503,9.195-4.503,11.793,0C56.475,33.96,53.198,39.62,47.961,39.62z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" d="M47.96,55.085c-5.276,0-8.555-5.659-5.917-10.203
|
||||
c2.638-4.504,9.195-4.504,11.793,0C56.475,49.426,53.198,55.085,47.96,55.085z"/>
|
||||
<path fill="none" stroke="#FFCB04" stroke-width="0" stroke-miterlimit="3.863" d="M47.961,55.085
|
||||
c-5.277,0-8.556-5.659-5.917-10.203c2.638-4.504,9.195-4.504,11.793,0C56.475,49.426,53.198,55.085,47.961,55.085z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#00A650" d="M47.96,70.431c-5.276,0-8.555-5.659-5.917-10.203
|
||||
c2.638-4.504,9.195-4.504,11.793,0C56.475,64.772,53.198,70.431,47.96,70.431z"/>
|
||||
<path fill="none" stroke="#00A650" stroke-width="0" stroke-miterlimit="3.863" d="M47.961,70.431
|
||||
c-5.277,0-8.556-5.659-5.917-10.203c2.638-4.504,9.195-4.504,11.793,0C56.475,64.772,53.198,70.431,47.961,70.431z"/>
|
||||
</svg>
|
After (image error) Size: 2.5 KiB |
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.798px" height="83.704px" viewBox="0 0 95.798 83.704" enable-background="new 0 0 95.798 83.704" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.272C51.319,0.877,49.759,0,47.961,0c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294
|
||||
c-1.519,1.992-1.16,5.143,0.68,6.976c1.04,1.036,2.238,1.435,3.597,1.435h86.305c1,0,2.039-0.678,2.8-1.435
|
||||
c1.479-1.515,1.839-3.706,1.079-5.581L52.198,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.272C51.319,0.877,49.759,0,47.961,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294c-1.519,1.992-1.16,5.143,0.68,6.976c1.04,1.036,2.238,1.435,3.597,1.435h86.305
|
||||
c1,0,2.039-0.678,2.8-1.435c1.479-1.515,1.839-3.706,1.079-5.581L52.198,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.921,15.466 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.921,15.466
|
||||
14.702,72.902 "/>
|
||||
<path fill="#120C0E" d="M49.2,65.011l-6.836-13.633l-5.476-1.156c-2.279-0.637-2.799-1.115-3.797-2.071
|
||||
c1.239-0.36,2.398-0.479,3.797-0.28l5.956,1.276l11.993-9.726l1.72,0.358l-6.196,8.53L49.88,50.7l7.835,1.834l0.8,0.279l2.598-2.75
|
||||
l1.359,0.358l-0.959,3.786l0.439,0.279l-0.641,0.039l-0.479,3.947l-1.359-0.199l-1.318-3.628l-0.841-0.12l-7.915-1.633l-0.559,2.471
|
||||
l1.958,10.125L49.2,65.011z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M49.2,65.011l-6.836-13.633l-5.476-1.156
|
||||
c-2.279-0.637-2.799-1.115-3.797-2.071c1.239-0.36,2.398-0.479,3.797-0.28l5.956,1.276l11.993-9.726l1.72,0.358l-6.196,8.53
|
||||
L49.88,50.7l7.835,1.834l0.8,0.279l2.598-2.75l1.359,0.358l-0.959,3.786l0.439,0.279l-0.641,0.039l-0.479,3.947l-1.359-0.199
|
||||
l-1.318-3.628l-0.841-0.12l-7.915-1.633l-0.559,2.471l1.958,10.125L49.2,65.011z"/>
|
||||
</svg>
|
After (image error) Size: 2.2 KiB |
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.816px" height="83.722px" viewBox="0 0 95.816 83.722" enable-background="new 0 0 95.816 83.722" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.208,2.272C51.328,0.877,49.769,0,47.97,0c-1.72,0-2.479,0.837-3.399,2.113L0.95,75.31
|
||||
c-1.519,1.993-1.16,5.143,0.68,6.977c1.04,1.037,2.239,1.436,3.599,1.436h86.324c0.999,0,2.039-0.679,2.798-1.436
|
||||
c1.479-1.515,1.839-3.707,1.079-5.582L52.208,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.208,2.272C51.328,0.877,49.769,0,47.97,0
|
||||
c-1.72,0-2.479,0.837-3.399,2.113L0.95,75.31c-1.519,1.993-1.16,5.143,0.68,6.977c1.04,1.037,2.239,1.436,3.599,1.436h86.324
|
||||
c0.999,0,2.039-0.679,2.798-1.436c1.479-1.515,1.839-3.707,1.079-5.582L52.208,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.155,72.917 47.93,15.469 14.704,72.917 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.155,72.917 47.93,15.469
|
||||
14.704,72.917 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M38.773,66.738 M39.533,66.738h-0.76V49.276h0.76V66.738z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M38.773,66.738 M39.533,66.738h-0.76V49.276h0.76
|
||||
V66.738z"/>
|
||||
<polyline fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" points="43.011,47.163 39.174,49.236
|
||||
40.932,52.466 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M58.685,57.808c-1.119,2.313-2.158,0.559-1.239-0.877
|
||||
C58.285,55.695,59.525,55.934,58.685,57.808z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.685,57.808
|
||||
c-1.119,2.313-2.158,0.559-1.239-0.877C58.285,55.695,59.525,55.934,58.685,57.808z"/>
|
||||
<path fill="#120C0E" d="M54.967,53.98l2.479,1.475c-1.759-0.278-2.919,1.236-1.679,2.791l-2.679-0.996
|
||||
C52.368,56.572,52.288,53.621,54.967,53.98z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M54.967,53.98l2.479,1.475
|
||||
c-1.759-0.278-2.919,1.236-1.679,2.791l-2.679-0.996C52.368,56.572,52.288,53.621,54.967,53.98z"/>
|
||||
<path fill="#120C0E" d="M50.648,51.508l2.279,1.356c-1.04-0.398-3.638,1.236-1.72,3.708l-2.479-0.997
|
||||
C46.77,53.423,48.81,50.99,50.648,51.508z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M50.648,51.508l2.279,1.356
|
||||
c-1.04-0.398-3.638,1.236-1.72,3.708l-2.479-0.997C46.77,53.423,48.81,50.99,50.648,51.508z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M58.685,56.252l-15.673-9.089 M57.525,58.845
|
||||
l-16.593-6.379"/>
|
||||
<path fill="#120C0E" d="M43.571,53.582l2.839,1.075c-2.039-2.949,0.839-4.584,2.039-4.384l-2.599-1.595
|
||||
C44.811,48.559,41.732,50.273,43.571,53.582z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M43.571,53.582l2.839,1.075
|
||||
c-2.039-2.949,0.839-4.584,2.039-4.385l-2.599-1.594C44.811,48.559,41.732,50.272,43.571,53.582z"/>
|
||||
<path fill="#120C0E" d="M40.932,52.466l0.281,0.04c-1.2-2.313,1.359-4.745,2.318-5.023l-0.52-0.319
|
||||
C42.413,47.322,39.493,50.153,40.932,52.466z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M40.932,52.466l0.281,0.04
|
||||
c-1.2-2.313,1.359-4.745,2.318-5.023l-0.52-0.319C42.413,47.322,39.493,50.153,40.932,52.466z"/>
|
||||
</svg>
|
After (image error) Size: 3.6 KiB |
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.704px" viewBox="0 0 95.797 83.704" enable-background="new 0 0 95.797 83.704" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.197,2.272C51.318,0.877,49.759,0,47.96,0c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.295
|
||||
c-1.52,1.992-1.16,5.141,0.68,6.975c1.04,1.036,2.238,1.435,3.597,1.435h86.306c1,0,2.039-0.677,2.799-1.435
|
||||
c1.479-1.515,1.839-3.707,1.078-5.58L52.197,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.272C51.318,0.877,49.759,0,47.96,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.113L0.95,75.295c-1.52,1.992-1.16,5.141,0.68,6.975c1.04,1.036,2.238,1.435,3.597,1.435h86.306
|
||||
c1,0,2.039-0.677,2.799-1.435c1.479-1.515,1.839-3.707,1.078-5.58L52.197,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.903 47.92,15.466 14.701,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.903 47.92,15.466
|
||||
14.701,72.903 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="37.287,36.831 41.803,36.831 41.803,59.471 46.401,59.471
|
||||
39.605,70.71 32.81,59.471 37.287,59.471 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="37.287,36.831 41.803,36.831
|
||||
41.803,59.471 46.401,59.471 39.605,70.71 32.81,59.471 37.287,59.471 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="54.076,70.552 58.594,70.552 58.594,47.911 63.19,47.911
|
||||
56.395,36.671 49.599,47.911 54.076,47.911 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="54.076,70.552 58.594,70.552
|
||||
58.594,47.911 63.19,47.911 56.395,36.671 49.599,47.911 54.076,47.911 "/>
|
||||
</svg>
|
After (image error) Size: 2.1 KiB |
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="96.067px" height="84.18px" viewBox="0 0 96.067 84.18" enable-background="new 0 0 96.067 84.18" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.345,2.285C51.463,0.882,49.9,0,48.096,0c-1.724,0-2.486,0.842-3.408,2.124L0.953,75.713
|
||||
c-1.524,2.004-1.163,5.172,0.681,7.016c1.042,1.042,2.245,1.522,3.608,1.443l86.629-0.041c1.002-0.16,1.965-0.642,2.726-1.402
|
||||
c1.483-1.523,1.845-3.729,1.083-5.612L52.345,2.285z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.345,2.285C51.463,0.882,49.9,0,48.096,0
|
||||
c-1.724,0-2.486,0.842-3.408,2.124L0.953,75.713c-1.524,2.004-1.163,5.172,0.681,7.016c1.042,1.042,2.245,1.522,3.608,1.443
|
||||
l86.629-0.041c1.002-0.16,1.965-0.642,2.726-1.402c1.483-1.523,1.845-3.729,1.083-5.612L52.345,2.285z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.367,73.309 48.056,15.552 14.743,73.309 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.367,73.309 48.056,15.552
|
||||
14.743,73.309 "/>
|
||||
<polygon fill="#120C0E" points="34.746,64.771 34.746,53.188 31.74,53.188 31.74,50.223 34.706,50.223 34.706,47.256 36.229,45.733
|
||||
37.673,47.256 37.673,50.223 40.639,50.223 40.639,47.256 42.163,45.733 43.606,47.256 43.606,50.223 46.572,50.223 46.572,47.256
|
||||
48.096,45.733 49.539,47.256 49.539,50.223 52.505,50.223 52.505,47.256 53.988,45.773 55.472,47.256 55.472,50.223 58.438,50.223
|
||||
58.438,47.256 59.922,45.773 61.404,47.256 61.404,50.223 64.371,50.223 64.371,53.188 61.404,53.188 61.404,64.771 64.371,64.771
|
||||
64.371,67.737 61.404,67.737 61.404,70.703 58.438,70.703 58.438,67.737 55.472,67.737 55.472,70.703 52.505,70.703 52.505,67.737
|
||||
49.539,67.737 49.539,70.703 46.572,70.703 46.572,67.737 43.606,67.737 43.606,70.703 40.639,70.703 40.639,67.737 37.673,67.737
|
||||
37.673,70.703 34.706,70.703 34.706,67.737 31.74,67.737 31.74,64.771 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" points="34.746,64.771 34.746,53.188
|
||||
31.74,53.188 31.74,50.223 34.706,50.223 34.706,47.256 36.229,45.733 37.673,47.256 37.673,50.223 40.639,50.223 40.639,47.256
|
||||
42.163,45.733 43.606,47.256 43.606,50.223 46.572,50.223 46.572,47.256 48.096,45.733 49.539,47.256 49.539,50.223 52.505,50.223
|
||||
52.505,47.256 53.988,45.773 55.472,47.256 55.472,50.223 58.438,50.223 58.438,47.256 59.922,45.773 61.404,47.256 61.404,50.223
|
||||
64.371,50.223 64.371,53.188 61.404,53.188 61.404,64.771 64.371,64.771 64.371,67.737 61.404,67.737 61.404,70.703 58.438,70.703
|
||||
58.438,67.737 55.472,67.737 55.472,70.703 52.505,70.703 52.505,67.737 49.539,67.737 49.539,70.703 46.572,70.703 46.572,67.737
|
||||
43.606,67.737 43.606,70.703 40.639,70.703 40.639,67.737 37.673,67.737 37.673,70.703 34.706,70.703 34.706,67.737 31.74,67.737
|
||||
31.74,64.771 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M37.753,64.771 M40.679,64.771h-2.926V53.148h2.926V64.771z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M37.753,64.771 M40.679,64.771h-2.926V53.148
|
||||
h2.926V64.771z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M43.726,64.771 M46.653,64.771h-2.926V53.148h2.926V64.771z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M43.726,64.771 M46.653,64.771h-2.926V53.148
|
||||
h2.926V64.771z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M49.699,64.771 M52.666,64.771h-2.967V53.148h2.967V64.771z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M49.699,64.771 M52.666,64.771h-2.967V53.148
|
||||
h2.967V64.771z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M55.552,64.771 M58.438,64.771h-2.887V53.148h2.887V64.771z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M55.552,64.771 M58.438,64.771h-2.887V53.148
|
||||
h2.887V64.771z"/>
|
||||
</svg>
|
After (image error) Size: 4.2 KiB |
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="96.051px" height="84.137px" viewBox="0 0 96.051 84.137" enable-background="new 0 0 96.051 84.137" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.336,2.284C51.453,0.882,49.891,0,48.087,0c-1.723,0-2.485,0.842-3.407,2.124L0.952,75.682
|
||||
c-1.523,2.004-1.162,5.17,0.681,7.012c1.042,1.042,2.245,1.443,3.608,1.443h86.535c1.002,0,2.045-0.682,2.806-1.443
|
||||
c1.483-1.522,1.844-3.727,1.081-5.609L52.336,2.284z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.336,2.284C51.453,0.882,49.891,0,48.087,0
|
||||
c-1.723,0-2.485,0.842-3.407,2.124L0.952,75.682c-1.523,2.004-1.162,5.17,0.681,7.012c1.042,1.042,2.245,1.443,3.608,1.443h86.535
|
||||
c1.002,0,2.045-0.682,2.806-1.443c1.483-1.522,1.844-3.727,1.081-5.609L52.336,2.284z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.354,73.258 48.047,15.545 14.72,73.258 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.354,73.258 48.047,15.545
|
||||
14.72,73.258 "/>
|
||||
<path d="M32.075,49.641c-0.261,0.08-0.441,0.32-0.441,0.601c0,0.261,0.24,0.501,0.461,0.601c0.02,0.021-0.02-0.02,0,0
|
||||
c0,0.021,0.04,0.061,0.04,0.08v1.663h-2.946c-0.281,0.06-0.401,0.261-0.481,0.461c-0.501,1.482-1.042,2.944-1.463,4.468
|
||||
c-0.1,0.36-0.02,0.66,0.16,0.74l1.243,0.561l-0.541,1.684h-1.183v1.441h-1.823v2.404h3.166c0.281,1.563,1.724,3.025,3.507,3.025
|
||||
c1.764,0,3.187-1.443,3.447-3.005h2.285c0.24,1.562,1.683,3.045,3.467,3.045c1.783,0,3.206-1.462,3.467-3.005h2.324
|
||||
c0.241,1.563,1.704,3.045,3.467,3.045c1.784,0,3.207-1.462,3.467-3.005h2.226c0.239,1.543,1.703,3.024,3.467,3.024
|
||||
c1.784,0,3.206-1.461,3.487-3.005h3.186V62.08H64.42V51.023h1.664V49.78h-9.279l-1.223,2.925h-4.129v-1.202h-4.067v1.103h-3.127
|
||||
c0.061-0.2,0.081-0.401,0.081-0.602c0-1.302-1.063-2.363-2.365-2.363c-1.303,0-2.365,1.062-2.365,2.363c0,0.2,0.02,0.381,0.08,0.581
|
||||
l-3.948,0.021v-1.644c0.04-0.12,0.161-0.12,0.221-0.14c0.2-0.12,0.32-0.32,0.32-0.561s-0.16-0.461-0.38-0.562
|
||||
c-0.101-0.04-0.421,0.06-0.401-0.24v-1.583c0.26-0.3,2.364-0.961,2.445-3.785c2.044,0.221,4.108-2.124,4.368-2.564
|
||||
c0.101-0.16,3.067-0.28,4.289-3.606c0.04-0.08,2.125-0.24,1.804-2.784c0-0.14,0.922-0.861,0.18-3.005
|
||||
c0.421-0.501,0.682-1.162,0.682-1.863c0-1.542-1.263-2.804-2.806-2.804c-1.583,0-2.826,1.262-2.826,2.804
|
||||
c0,0.441,0.1,0.841,0.261,1.202c-1.844,0.982-2.485,3.365-2.485,4.567c-2.024,1.102-3.147,2.985-4.109,4.528
|
||||
c-0.24,0.4-2.565,1.362-2.885,4.006c-1.804,0.04-2.185,1.763-2.185,1.783v3.125C32.235,49.5,32.275,49.641,32.075,49.641z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M32.075,49.641
|
||||
c-0.261,0.08-0.441,0.32-0.441,0.601c0,0.261,0.24,0.501,0.461,0.601c0.02,0.021-0.02-0.02,0,0c0,0.021,0.04,0.061,0.04,0.08v1.663
|
||||
h-2.946c-0.281,0.06-0.401,0.261-0.481,0.461c-0.501,1.482-1.042,2.944-1.463,4.468c-0.1,0.36-0.02,0.66,0.16,0.74l1.243,0.561
|
||||
l-0.541,1.684h-1.183v1.441h-1.823v2.404h3.166c0.281,1.563,1.724,3.025,3.507,3.025c1.764,0,3.187-1.443,3.447-3.005h2.285
|
||||
c0.24,1.562,1.683,3.045,3.467,3.045c1.783,0,3.206-1.462,3.467-3.005h2.324c0.241,1.563,1.704,3.045,3.467,3.045
|
||||
c1.784,0,3.207-1.462,3.467-3.005h2.226c0.239,1.543,1.703,3.024,3.467,3.024c1.784,0,3.206-1.461,3.487-3.005h3.186V62.08H64.42
|
||||
V51.023h1.664V49.78h-9.279l-1.223,2.925h-4.129v-1.202h-4.067v1.103h-3.127c0.061-0.2,0.081-0.401,0.081-0.602
|
||||
c0-1.302-1.063-2.363-2.365-2.363c-1.303,0-2.365,1.062-2.365,2.363c0,0.2,0.02,0.381,0.08,0.581l-3.948,0.021v-1.644
|
||||
c0.04-0.12,0.161-0.12,0.221-0.14c0.2-0.12,0.32-0.32,0.32-0.561s-0.16-0.461-0.38-0.562c-0.101-0.04-0.421,0.06-0.401-0.24v-1.583
|
||||
c0.26-0.3,2.364-0.961,2.445-3.785c2.044,0.221,4.108-2.124,4.368-2.564c0.101-0.16,3.067-0.28,4.289-3.606
|
||||
c0.04-0.08,2.125-0.24,1.804-2.784c0-0.14,0.922-0.861,0.18-3.005c0.421-0.501,0.682-1.162,0.682-1.863
|
||||
c0-1.542-1.263-2.804-2.806-2.804c-1.583,0-2.826,1.262-2.826,2.804c0,0.441,0.1,0.841,0.261,1.202
|
||||
c-1.844,0.982-2.485,3.365-2.485,4.567c-2.024,1.102-3.147,2.985-4.109,4.528c-0.24,0.4-2.565,1.362-2.885,4.006
|
||||
c-1.804,0.04-2.185,1.763-2.185,1.783v3.125C32.235,49.5,32.275,49.641,32.075,49.641z"/>
|
||||
<polygon fill="#FFFFFF" points="60.854,50.922 63.277,50.941 63.277,54.348 60.854,54.348 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" points="60.854,50.922 63.277,50.941
|
||||
63.277,54.348 60.854,54.348 "/>
|
||||
<polygon fill="#FFFFFF" points="56.865,54.389 60.392,54.389 60.232,50.902 57.445,50.902 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" points="56.865,54.389 60.392,54.389
|
||||
60.232,50.902 57.445,50.902 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.119,68.451 M67.086,68.451H24.119V67.43h42.967V68.451z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M24.119,68.451 M67.086,68.451H24.119V67.43
|
||||
h42.967V68.451z"/>
|
||||
</svg>
|
After (image error) Size: 5.1 KiB |
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="51.965px" height="141.188px" viewBox="0 0 51.965 141.188" enable-background="new 0 0 51.965 141.188"
|
||||
xml:space="preserve">
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M22.908,141.068 M29.716,141.068h-6.81V40.996
|
||||
h6.81V141.068z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.908,141.088 M29.716,141.088h-6.81V86.815h6.81V141.088z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" d="M22.908,141.088 M29.716,141.088h-6.81V86.815
|
||||
h6.81V141.088z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.908,59.08 M29.716,59.08h-6.81v-9.072h6.81V59.08z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" d="M22.908,59.08 M29.716,59.08h-6.81v-9.072h6.81
|
||||
V59.08z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.908,77.404 M29.716,77.404h-6.81v-9.072h6.81V77.404z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" d="M22.908,77.404 M29.716,77.404h-6.81v-9.072
|
||||
h6.81V77.404z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.908,41.057 M29.716,41.057h-6.81v-9.072h6.81V41.057z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" d="M22.908,41.057 M29.716,41.057h-6.81v-9.072
|
||||
h6.81V41.057z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="19.333,25.902 25.863,19.362 32.394,25.902 25.863,32.422
|
||||
"/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" points="19.333,25.902 25.863,19.362
|
||||
32.394,25.902 25.863,32.422 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="6.552,12.982 12.983,6.563 19.413,12.982 12.983,19.382
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="6.552,12.982 12.983,6.563
|
||||
19.413,12.982 12.983,19.382 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="32.394,38.803 38.824,32.382 45.253,38.803 38.824,45.203
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="32.394,38.803 38.824,32.382
|
||||
45.253,38.803 38.824,45.203 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="38.843,45.243 45.274,38.822 51.705,45.243 45.274,51.644
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="38.843,45.243 45.274,38.822
|
||||
51.705,45.243 45.274,51.644 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="45.414,12.962 38.984,6.542 32.593,12.922 39.003,19.343
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="45.414,12.962 38.984,6.542
|
||||
32.593,12.922 39.003,19.343 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="19.453,38.882 13.022,32.462 6.632,38.843 13.042,45.264
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="19.453,38.882 13.022,32.462
|
||||
6.632,38.843 13.042,45.264 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="39.222,19.123 32.792,12.724 26.142,19.362 32.573,25.764
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="39.222,19.123 32.792,12.724
|
||||
26.142,19.362 32.573,25.764 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="51.824,6.563 45.394,0.142 39.003,6.522 45.414,12.942 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="51.824,6.563 45.394,0.142
|
||||
39.003,6.522 45.414,12.942 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="12.843,19.243 19.273,12.843 25.863,19.422 19.433,25.843
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="12.843,19.243 19.273,12.843
|
||||
25.863,19.422 19.433,25.843 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="0.142,6.582 6.572,0.161 13.002,6.582 6.572,12.982 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="0.142,6.582 6.572,0.161 13.002,6.582
|
||||
6.572,12.982 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="25.863,32.482 19.433,26.063 13.042,32.442 19.453,38.862
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="25.863,32.482 19.433,26.063
|
||||
13.042,32.442 19.453,38.862 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="13.082,45.243 6.652,38.822 0.182,45.283 6.592,51.703 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="13.082,45.243 6.652,38.822
|
||||
0.182,45.283 6.592,51.703 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="25.983,32.402 32.413,25.982 38.843,32.402 32.413,38.803
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.2" stroke-miterlimit="3.863" points="25.983,32.402 32.413,25.982
|
||||
38.843,32.402 32.413,38.803 "/>
|
||||
</svg>
|
After (image error) Size: 5.4 KiB |
102
assets/layers/traffic_sign/images/be/A/Belgian_road_sign_A47.svg
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="52.429px" height="167.897px" viewBox="0 0 52.429 167.897" enable-background="new 0 0 52.429 167.897"
|
||||
xml:space="preserve">
|
||||
<path fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,167.777 M29.678,167.777h-6.865
|
||||
V67.184h6.865V167.777z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.813,167.797 M29.678,167.797h-6.865v-54.556h6.865V167.797z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,167.797 M29.678,167.797h-6.865
|
||||
v-54.556h6.865V167.797z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.813,85.363 M29.678,85.363h-6.865v-9.12h6.865V85.363z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,85.363 M29.678,85.363h-6.865v-9.12
|
||||
h6.865V85.363z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.813,103.781 M29.678,103.781h-6.865v-9.119h6.865V103.781z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,103.781 M29.678,103.781h-6.865
|
||||
v-9.119h6.865V103.781z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.813,67.244 M29.678,67.244h-6.865v-9.119h6.865V67.244z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,67.244 M29.678,67.244h-6.865v-9.119
|
||||
h6.865V67.244z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M22.813,33.112 M29.678,33.112h-6.865v-9.119h6.865V33.112z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,33.112 M29.678,33.112h-6.865v-9.119
|
||||
h6.865V33.112z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="19.53,26.037 26.114,19.463 32.699,26.037 26.114,32.59
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0.201" stroke-miterlimit="3.863" points="19.53,26.037 26.114,19.463
|
||||
32.699,26.037 26.114,32.59 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="6.646,13.049 13.128,6.595 19.612,13.049 13.128,19.483
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" points="6.646,13.049 13.128,6.595
|
||||
19.612,13.049 13.128,19.483 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="13.148,19.523 19.632,13.069 26.114,19.523 19.632,25.956
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="13.148,19.523 19.632,13.069
|
||||
26.114,19.523 19.632,25.956 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="45.825,13.028 39.342,6.575 32.9,12.989 39.363,19.443 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" points="45.825,13.028 39.342,6.575
|
||||
32.9,12.989 39.363,19.443 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="32.658,64.979 39.14,58.525 45.624,64.979 39.14,71.413
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" points="32.658,64.979 39.14,58.525
|
||||
45.624,64.979 39.14,71.413 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="39.161,71.453 45.644,64.999 52.126,71.453 45.644,77.887
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="39.161,71.453 45.644,64.999
|
||||
52.126,71.453 45.644,77.887 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="19.612,65.06 13.128,58.605 6.686,65.019 13.148,71.473
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" points="19.612,65.06 13.128,58.605
|
||||
6.686,65.019 13.148,71.473 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="19.49,52.011 26.074,45.438 32.658,52.011 26.074,58.565
|
||||
"/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0.201" stroke-miterlimit="3.863" points="19.49,52.011 26.074,45.438
|
||||
32.658,52.011 26.074,58.565 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="6.605,39.025 13.088,32.57 19.571,39.025 13.088,45.458
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" points="6.605,39.024 13.088,32.57
|
||||
19.571,39.024 13.088,45.458 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="45.785,39.003 39.302,32.55 32.859,38.964 39.322,45.418
|
||||
"/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.201" stroke-miterlimit="3.863" points="45.785,39.003 39.302,32.55
|
||||
32.859,38.964 39.322,45.418 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M22.813,42.271 M29.678,42.271h-6.865v-9.119h6.865V42.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" d="M22.813,42.271 M29.678,42.271h-6.865v-9.119
|
||||
h6.865V42.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="0.143,32.59 6.625,26.137 13.108,32.59 6.625,39.025 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="0.143,32.59 6.625,26.137
|
||||
13.108,32.59 6.625,39.024 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="12.988,45.377 19.47,38.924 26.074,45.498 19.592,51.931
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="12.988,45.377 19.47,38.924
|
||||
26.074,45.498 19.592,51.931 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="39.462,45.277 32.98,38.844 26.356,45.438 32.838,51.872
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="39.462,45.277 32.98,38.844
|
||||
26.356,45.438 32.838,51.872 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="52.248,32.57 45.765,26.117 39.322,32.53 45.785,38.984
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="52.248,32.57 45.765,26.117
|
||||
39.322,32.53 45.785,38.984 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="13.229,71.413 6.746,64.959 0.183,71.493 6.666,77.946 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="13.229,71.413 6.746,64.959
|
||||
0.183,71.493 6.666,77.946 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="26.074,58.625 19.592,52.172 13.148,58.585 19.612,65.04
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="26.074,58.625 19.592,52.172
|
||||
13.148,58.585 19.612,65.04 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="26.194,58.545 32.678,52.092 39.161,58.545 32.678,64.979
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="26.194,58.545 32.678,52.092
|
||||
39.161,58.545 32.678,64.979 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="0.183,6.615 6.666,0.162 13.148,6.615 6.666,13.049 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="0.183,6.615 6.666,0.162
|
||||
13.148,6.615 6.666,13.049 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="39.624,19.182 33.141,12.748 26.235,19.623 32.718,26.057
|
||||
"/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="39.624,19.182 33.141,12.748
|
||||
26.235,19.623 32.718,26.057 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="52.287,6.595 45.804,0.142 39.363,6.555 45.825,13.008 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.201" stroke-miterlimit="3.863" points="52.287,6.595 45.804,0.142
|
||||
39.363,6.555 45.825,13.008 "/>
|
||||
</svg>
|
After (image error) Size: 7.9 KiB |
|
@ -0,0 +1,90 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="94.29px" height="84.921px" viewBox="0 0 94.29 84.921" enable-background="new 0 0 94.29 84.921" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M6.592,84.885c-1.994,0.2-3.15-0.44-4.506-1.924c-2.432-2.403-2.791-6.011-0.797-8.655L41.523,3.294
|
||||
c0.12-0.321-0.279,0.361-0.12,0.08c0.837-1.402,2.154-2.525,3.749-3.045c3.03-0.962,6.02,0.241,7.576,2.885L93.52,75.227
|
||||
c0.996,1.684,0.957,3.326,0.279,5.25c-1.037,2.806-3.668,4.448-6.5,4.408H6.592z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M6.592,84.885c-1.994,0.2-3.15-0.441-4.506-1.924
|
||||
c-2.432-2.403-2.791-6.011-0.797-8.655L41.523,3.294c0.12-0.321-0.279,0.361-0.12,0.08c0.837-1.402,2.154-2.525,3.749-3.045
|
||||
c3.03-0.962,6.02,0.24,7.576,2.885L93.52,75.227c0.996,1.684,0.957,3.326,0.279,5.25c-1.037,2.806-3.668,4.448-6.5,4.408H6.592z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="12.613,74.106 46.188,14.876 79.764,74.106 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.28" stroke-miterlimit="3.863" points="12.613,74.106 46.188,14.876
|
||||
79.764,74.106 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M31.793,70.458c-0.917,0-1.515-1.002-1.036-1.804
|
||||
c0.479-0.801,1.595-0.801,2.074,0C33.308,69.457,32.711,70.458,31.793,70.458z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M31.793,70.458c-0.917,0-1.515-1.002-1.036-1.804
|
||||
c0.479-0.801,1.595-0.801,2.074,0C33.308,69.457,32.711,70.458,31.793,70.458z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M35.063,70.458c-0.917,0-1.476-1.002-1.037-1.804
|
||||
c0.438-0.801,1.595-0.801,2.033,0C36.498,69.457,35.941,70.458,35.063,70.458z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M35.063,70.458c-0.917,0-1.476-1.002-1.037-1.804
|
||||
c0.438-0.801,1.595-0.801,2.033,0C36.499,69.457,35.941,70.458,35.063,70.458z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M58.549,70.458c-0.956,0-1.555-1.002-1.076-1.804
|
||||
c0.479-0.801,1.635-0.801,2.113,0C60.064,69.457,59.467,70.458,58.549,70.458z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M58.549,70.458c-0.956,0-1.555-1.002-1.076-1.804
|
||||
c0.479-0.801,1.635-0.801,2.113,0C60.064,69.457,59.467,70.458,58.549,70.458z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M61.739,70.458c-0.917,0-1.515-1.002-1.036-1.804
|
||||
c0.478-0.801,1.595-0.801,2.072,0C63.254,69.457,62.656,70.458,61.739,70.458z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M61.739,70.458c-0.917,0-1.515-1.002-1.036-1.804
|
||||
c0.478-0.801,1.595-0.801,2.072,0C63.254,69.457,62.656,70.458,61.739,70.458z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M21.067,71.501 M72.426,71.501H21.067v-1.122h51.359V71.501z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M21.067,71.501 M72.426,71.501H21.067v-1.122
|
||||
h51.359V71.501z"/>
|
||||
<polygon fill="#120C0E" points="22.742,69.256 29.241,69.256 30.278,67.574 36.498,67.574 37.456,69.256 56.117,69.256
|
||||
56.994,67.614 63.215,67.614 64.211,69.457 70.711,69.457 70.711,69.016 71.229,69.016 71.229,67.934 70.75,67.934 70.75,63.085
|
||||
68.398,57.395 62.656,57.395 62.656,56.753 30.876,56.753 30.876,57.115 28.803,57.115 27.487,56.513 25.213,56.513 24.815,57.115
|
||||
22.542,63.045 22.542,67.574 22.063,67.574 22.063,68.735 22.742,68.735 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="22.742,69.256 29.241,69.256
|
||||
30.278,67.574 36.499,67.574 37.456,69.256 56.117,69.256 56.994,67.614 63.215,67.614 64.211,69.457 70.711,69.457 70.711,69.016
|
||||
71.229,69.016 71.229,67.934 70.75,67.934 70.75,63.085 68.398,57.395 62.656,57.395 62.656,56.753 30.876,56.753 30.876,57.115
|
||||
28.803,57.115 27.487,56.513 25.213,56.513 24.815,57.115 22.542,63.045 22.542,67.574 22.063,67.574 22.063,68.735 22.742,68.735
|
||||
"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M30.238,63.166 M37.894,63.166h-7.656v-4.77h7.656V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M30.238,63.166 M37.894,63.166h-7.656v-4.77
|
||||
h7.656V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M38.612,63.166 M46.308,63.166h-7.696v-4.77h7.696V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M38.612,63.166 M46.308,63.166h-7.696v-4.77
|
||||
h7.696V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M46.945,63.166 M54.682,63.166h-7.735v-4.77h7.735V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M46.945,63.166 M54.682,63.166h-7.735v-4.77
|
||||
h7.735V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M55.319,63.166 M63.055,63.166h-7.735v-4.77h7.735V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M55.319,63.166 M63.055,63.166h-7.735v-4.77
|
||||
h7.735V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M64.211,63.166 M65.368,63.166h-1.156v-4.77h1.156V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M64.211,63.166 M65.368,63.166h-1.156v-4.77
|
||||
h1.156V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M65.768,63.166 M66.883,63.166h-1.116v-4.77h1.116V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M65.768,63.166 M66.883,63.166h-1.116v-4.77
|
||||
h1.116V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M28.045,63.166 M29.202,63.166h-1.157v-4.77h1.157V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M28.045,63.166 M29.202,63.166h-1.157v-4.77
|
||||
h1.157V63.166z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M26.49,63.166 M27.646,63.166H26.49v-4.77h1.156V63.166z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M26.49,63.166 M27.646,63.166H26.49v-4.77h1.156
|
||||
V63.166z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="23.26,63.206 25.134,58.437 26.012,58.437 26.012,63.206
|
||||
"/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" points="23.26,63.206 25.134,58.437
|
||||
26.012,58.437 26.012,63.206 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="70.232,63.125 68.238,58.396 67.4,58.396 67.4,63.125 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" points="70.232,63.125 68.238,58.396
|
||||
67.4,58.396 67.4,63.125 "/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M39.888,53.066l-4.506-2.845 M39.888,53.427
|
||||
l-4.705-2.926 M35.143,56.392l-4.785-3.005 M35.143,56.753l-4.984-3.086 M35.063,56.392l4.506-2.805 M35.063,56.753l4.705-2.885"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M29.999,53.748c-0.358,0-0.558-0.36-0.398-0.642
|
||||
c0.159-0.28,0.598-0.28,0.757,0C30.517,53.387,30.318,53.748,29.999,53.748z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M29.999,53.748c-0.358,0-0.558-0.36-0.398-0.642
|
||||
c0.159-0.28,0.598-0.28,0.757,0C30.517,53.387,30.318,53.748,29.999,53.748z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M35.223,50.743c-0.359,0-0.599-0.361-0.399-0.642
|
||||
c0.16-0.281,0.599-0.281,0.758,0C35.781,50.381,35.542,50.743,35.223,50.743z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M35.223,50.743c-0.359,0-0.599-0.361-0.399-0.642
|
||||
c0.16-0.281,0.599-0.281,0.758,0C35.781,50.381,35.542,50.743,35.223,50.743z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M39.928,53.909c-0.319,0-0.479-0.361-0.359-0.642
|
||||
c0.159-0.281,0.559-0.281,0.718,0C40.446,53.547,40.247,53.909,39.928,53.909z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M39.928,53.909c-0.319,0-0.479-0.361-0.359-0.642
|
||||
c0.159-0.281,0.559-0.281,0.718,0C40.446,53.547,40.247,53.909,39.928,53.909z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.48" stroke-miterlimit="3.863" d="M30.118,53.467l4.985-3.086l4.745,2.926
|
||||
M30.118,53.467l4.985,3.086l4.745-2.926"/>
|
||||
</svg>
|
After (image error) Size: 8.5 KiB |
After (image error) Size: 13 KiB |
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.796px" height="83.713px" viewBox="0 0 95.796 83.713" enable-background="new 0 0 95.796 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.197,2.271C51.318,0.877,49.759,0,47.96,0c-1.719,0-2.479,0.837-3.398,2.113L0.95,75.294
|
||||
c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.385-0.04c0.999-0.159,1.959-0.638,2.719-1.396
|
||||
c1.479-1.515,1.839-3.706,1.079-5.58L52.197,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.271C51.318,0.877,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.837-3.398,2.113L0.95,75.294c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.385-0.04
|
||||
c0.999-0.159,1.959-0.638,2.719-1.396c1.479-1.515,1.839-3.706,1.079-5.58L52.197,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.138,72.902 47.92,15.466 14.701,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.138,72.902 47.92,15.466
|
||||
14.701,72.902 "/>
|
||||
<line fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" x1="46.521" y1="65.488" x2="48" y2="65.488"/>
|
||||
<path fill="#120C0E" d="M48.119,62.778c1.16,0.358,2,1.435,2,2.71c0,1.555-1.279,2.83-2.838,2.83c-1.56,0-2.838-1.275-2.838-2.83
|
||||
c0-1.275,0.839-2.352,1.999-2.71l-2.838-31.091c0-2.033,1.638-3.666,3.677-3.666c2.039,0,3.678,1.633,3.678,3.666L48.119,62.778z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M48.119,62.778c1.16,0.358,2,1.435,2,2.71
|
||||
c0,1.555-1.279,2.83-2.838,2.83c-1.56,0-2.838-1.275-2.838-2.83c0-1.275,0.839-2.352,1.999-2.71l-2.838-31.091
|
||||
c0-2.033,1.638-3.666,3.677-3.666c2.039,0,3.678,1.633,3.678,3.666L48.119,62.778z"/>
|
||||
</svg>
|
After (image error) Size: 2 KiB |
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.713px" viewBox="0 0 95.797 83.713" enable-background="new 0 0 95.797 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0c-1.719,0-2.479,0.836-3.398,2.112L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.385-0.04c1-0.159,1.959-0.638,2.719-1.396
|
||||
c1.479-1.515,1.84-3.706,1.079-5.58L52.198,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.836-3.398,2.112L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.385-0.04
|
||||
c1-0.159,1.959-0.638,2.719-1.396c1.479-1.515,1.84-3.706,1.079-5.58L52.198,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.465 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.465
|
||||
14.702,72.902 "/>
|
||||
<path fill="#ED1C24" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0c-1.719,0-2.479,0.836-3.398,2.112L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.385-0.04c1-0.159,1.959-0.638,2.719-1.396
|
||||
c1.479-1.515,1.84-3.706,1.079-5.58L52.198,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.719,0-2.479,0.836-3.398,2.112L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.385-0.04
|
||||
c1-0.159,1.959-0.638,2.719-1.396c1.479-1.515,1.84-3.706,1.079-5.58L52.198,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.465 14.702,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.465
|
||||
14.702,72.902 "/>
|
||||
<line fill="none" stroke="#DA2128" stroke-width="0" stroke-miterlimit="3.863" x1="37.687" y1="47.591" x2="41.844" y2="50.541"/>
|
||||
<polygon fill="#120C0E" points="40.445,52.534 45.442,45.559 45.442,34.598 40.326,34.598 40.326,43.965 35.288,51.02
|
||||
35.288,67.242 40.405,67.242 40.405,52.334 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="40.445,52.534 45.442,45.559
|
||||
45.442,34.598 40.326,34.598 40.326,43.965 35.288,51.02 35.288,67.241 40.405,67.241 40.405,52.334 "/>
|
||||
<polygon fill="#120C0E" points="55.676,52.733 50.679,45.758 50.679,34.797 55.795,34.797 55.795,44.163 60.832,51.219
|
||||
60.832,67.441 55.716,67.441 55.716,52.534 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="55.676,52.733 50.679,45.758
|
||||
50.679,34.797 55.795,34.797 55.795,44.163 60.832,51.219 60.832,67.441 55.716,67.441 55.716,52.534 "/>
|
||||
</svg>
|
After (image error) Size: 3.1 KiB |
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.713px" viewBox="0 0 95.797 83.713" enable-background="new 0 0 95.797 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.197,2.271C51.318,0.876,49.759,0,47.96,0c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294
|
||||
c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.386-0.04c1-0.159,1.959-0.638,2.719-1.396
|
||||
c1.479-1.515,1.839-3.706,1.078-5.58L52.197,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.386-0.04
|
||||
c1-0.159,1.959-0.638,2.719-1.396c1.479-1.515,1.839-3.706,1.078-5.58L52.197,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.465 14.701,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.465
|
||||
14.701,72.902 "/>
|
||||
<path fill="#ED1C24" d="M52.197,2.271C51.318,0.876,49.759,0,47.96,0c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294
|
||||
c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.386-0.04c1-0.159,1.959-0.638,2.719-1.396
|
||||
c1.479-1.515,1.839-3.706,1.078-5.58L52.197,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.197,2.271C51.318,0.876,49.759,0,47.96,0
|
||||
c-1.72,0-2.479,0.837-3.398,2.112L0.95,75.294c-1.52,1.992-1.16,5.142,0.68,6.975c1.04,1.037,2.238,1.515,3.597,1.436l86.386-0.04
|
||||
c1-0.159,1.959-0.638,2.719-1.396c1.479-1.515,1.839-3.706,1.078-5.58L52.197,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.902 47.92,15.465 14.701,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.902 47.92,15.465
|
||||
14.701,72.902 "/>
|
||||
<line fill="none" stroke="#DA2128" stroke-width="0" stroke-miterlimit="3.863" x1="37.687" y1="47.591" x2="41.843" y2="50.541"/>
|
||||
<polygon fill="#120C0E" points="40.444,52.534 45.442,45.559 45.442,34.598 40.325,34.598 40.325,43.965 35.288,51.02
|
||||
35.288,67.241 40.404,67.241 40.404,52.334 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="40.444,52.534 45.442,45.559
|
||||
45.442,34.598 40.325,34.598 40.325,43.965 35.288,51.02 35.288,67.241 40.404,67.241 40.404,52.334 "/>
|
||||
<polygon fill="#120C0E" points="50.679,34.797 55.794,34.797 55.755,66.963 50.718,66.963 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="50.679,34.797 55.794,34.797
|
||||
55.755,66.963 50.718,66.963 "/>
|
||||
</svg>
|
After (image error) Size: 3 KiB |
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.798px" height="83.713px" viewBox="0 0 95.798 83.713" enable-background="new 0 0 95.798 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M52.198,2.273C51.319,0.878,49.759,0,47.961,0c-1.72,0-2.479,0.838-3.398,2.113L0.95,75.294
|
||||
c-1.519,1.993-1.16,5.142,0.68,6.976c1.04,1.036,2.238,1.514,3.597,1.435l86.385-0.039c1-0.159,1.959-0.638,2.72-1.396
|
||||
c1.479-1.514,1.839-3.707,1.079-5.58L52.198,2.273z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M52.198,2.273C51.319,0.878,49.759,0,47.961,0
|
||||
c-1.72,0-2.479,0.838-3.398,2.113L0.95,75.294c-1.519,1.993-1.16,5.142,0.68,6.976c1.04,1.036,2.238,1.514,3.597,1.435l86.385-0.039
|
||||
c1-0.159,1.959-0.638,2.72-1.396c1.479-1.514,1.839-3.707,1.079-5.58L52.198,2.273z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="81.14,72.903 47.921,15.466 14.702,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="81.14,72.903 47.921,15.465
|
||||
14.702,72.903 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="35.009,57.756 31.931,54.688 52.798,33.881 55.876,36.951
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="35.009,57.756 31.931,54.688
|
||||
52.798,33.881 55.876,36.95 "/>
|
||||
<path fill="none" stroke="#A6CE39" stroke-width="0" stroke-miterlimit="3.863" d="M35.009,69.117v-2.95 M39.206,69.157V64.93"/>
|
||||
<path fill="#120C0E" d="M41.364,65.37c0.6,0.398,1.439,0.518,2.239,0.518c0.799,0,1.56-0.238,2.198-0.677
|
||||
c0.6-0.358,1.319-0.599,2.119-0.599c0.759,0,1.479,0.24,2.078,0.599c0.64,0.438,1.4,0.677,2.199,0.677s1.559-0.238,2.197-0.677
|
||||
c0.601-0.358,1.32-0.599,2.119-0.599c0.8,0,1.52,0.24,2.119,0.639c0.64,0.438,1.399,0.677,2.199,0.677v-8.29h6.477l6.675,11.479
|
||||
H21.857l6.636-11.439h6.477v8.45c0.799,0,1.558-0.24,2.158-0.679c0.6-0.358,1.319-0.837,2.079-0.837
|
||||
C40.005,64.612,40.766,64.93,41.364,65.37z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M41.364,65.37
|
||||
c0.6,0.398,1.439,0.518,2.239,0.518c0.799,0,1.56-0.238,2.198-0.677c0.6-0.358,1.319-0.599,2.119-0.599
|
||||
c0.759,0,1.479,0.24,2.078,0.599c0.64,0.438,1.4,0.677,2.199,0.677s1.559-0.238,2.197-0.677c0.601-0.358,1.32-0.599,2.119-0.599
|
||||
c0.8,0,1.52,0.24,2.119,0.639c0.64,0.438,1.399,0.677,2.199,0.677v-8.29h6.477l6.675,11.479H21.857l6.636-11.439h6.477v8.45
|
||||
c0.799,0,1.558-0.24,2.158-0.679c0.6-0.358,1.319-0.837,2.079-0.837C40.005,64.612,40.766,64.93,41.364,65.37z"/>
|
||||
</svg>
|
After (image error) Size: 2.8 KiB |
302
assets/layers/traffic_sign/images/be/A/license_info.json
Normal file
|
@ -0,0 +1,302 @@
|
|||
[
|
||||
{
|
||||
"path": "Belgian_road_sign_A11.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A11.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A13.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A13.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A14.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A14.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A15.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A15.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A17.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A17.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A19.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A19.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A1a.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A1a.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A1b.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A1b.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A1c.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A1c.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A1d.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A1d.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A21.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A21.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A23.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A23.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A25.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A25.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A27.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A27.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A29.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A29.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A31.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A31.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A33.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A33.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A35.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A35.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A37.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A37.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A39.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A39.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A41.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A41.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A43.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A43.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A45.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A45.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A47.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A47.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A49.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A49.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A50.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"FOD Mobiliteit"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A50.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A51.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A51.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A7a.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A7a.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A7b_(2).svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A7b_(2).svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_A9.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_A9.svg"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.816px" height="83.729px" viewBox="0 0 95.816 83.729" enable-background="new 0 0 95.816 83.729" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M43.608,81.457c0.88,1.396,2.439,2.272,4.238,2.272c1.719,0,2.48-0.838,3.399-2.112L94.867,8.42
|
||||
c1.52-1.993,1.158-5.143-0.68-6.977c-1.04-1.036-2.24-1.515-3.599-1.435L4.185,0.048C3.186,0.207,2.226,0.686,1.466,1.443
|
||||
c-1.479,1.515-1.839,3.707-1.08,5.582L43.608,81.457z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M43.608,81.457
|
||||
c0.88,1.396,2.439,2.272,4.238,2.272c1.719,0,2.48-0.838,3.399-2.112L94.867,8.42c1.52-1.993,1.158-5.143-0.68-6.977
|
||||
c-1.04-1.037-2.24-1.515-3.599-1.435L4.185,0.048C3.186,0.207,2.226,0.686,1.466,1.443c-1.479,1.515-1.839,3.707-1.08,5.582
|
||||
L43.608,81.457z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="14.66,10.892 47.926,68.261 81.192,10.892 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="14.66,10.892 47.926,68.261
|
||||
81.192,10.892 "/>
|
||||
</svg>
|
After (image error) Size: 1.4 KiB |
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="100.274px" height="100.274px" viewBox="0 0 100.274 100.274" enable-background="new 0 0 100.274 100.274"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M44.881,2.773c2.898-2.898,7.614-2.898,10.512,0l42.108,42.108c2.897,2.898,2.897,7.614,0,10.512
|
||||
L55.393,97.501c-2.897,2.897-7.614,2.897-10.512,0L2.773,55.393c-2.898-2.898-2.898-7.614,0-10.512L44.881,2.773z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.199" stroke-miterlimit="3.863" d="M44.881,2.773
|
||||
c2.898-2.898,7.614-2.898,10.512,0l42.108,42.108c2.897,2.898,2.897,7.614,0,10.512L55.393,97.501
|
||||
c-2.897,2.897-7.614,2.897-10.512,0L2.773,55.393c-2.898-2.898-2.898-7.614,0-10.512L44.881,2.773z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" points="13.885,50.157 50.137,13.905 86.39,50.157 50.137,86.39
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="1.998" stroke-miterlimit="3.863" points="13.885,50.157 50.137,13.905
|
||||
86.39,50.157 50.137,86.39 "/>
|
||||
<rect x="12.744" y="41.631" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 121.0413 50.1383)" fill="#120C0E" width="74.784" height="17.013"/>
|
||||
<rect x="12.744" y="41.631" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 121.0413 50.1383)" fill="none" stroke="#120C0E" stroke-width="0.4" stroke-miterlimit="3.863" width="74.784" height="17.013"/>
|
||||
</svg>
|
After (image error) Size: 1.6 KiB |
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.713px" viewBox="0 0 95.797 83.713" enable-background="new 0 0 95.797 83.713" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M43.6,2.272C44.479,0.877,46.039,0,47.837,0c1.719,0,2.479,0.838,3.398,2.113l43.613,73.182
|
||||
c1.518,1.993,1.158,5.142-0.681,6.977c-1.039,1.035-2.237,1.514-3.599,1.434L4.184,83.666c-1-0.16-1.959-0.639-2.718-1.395
|
||||
c-1.479-1.516-1.838-3.708-1.08-5.582L43.6,2.272z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M43.6,2.272C44.479,0.877,46.039,0,47.837,0
|
||||
c1.719,0,2.479,0.837,3.398,2.113l43.613,73.182c1.518,1.993,1.158,5.142-0.681,6.977c-1.039,1.035-2.237,1.514-3.599,1.434
|
||||
L4.184,83.666c-1-0.16-1.959-0.639-2.718-1.395c-1.479-1.516-1.838-3.708-1.08-5.582L43.6,2.272z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="14.658,72.903 47.917,15.465 81.177,72.903 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="14.658,72.903 47.917,15.465
|
||||
81.177,72.903 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M30.928,55.005 M64.946,55.005H30.928v-5.141h34.019V55.005z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.2" stroke-miterlimit="3.863" d="M30.928,55.005 M64.946,55.005H30.928v-5.142
|
||||
h34.019V55.005z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="39.402,70.711 39.283,40.697 47.917,30.652 56.432,40.856
|
||||
56.392,70.711 47.917,63.855 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" points="39.402,70.71 39.283,40.697
|
||||
47.917,30.652 56.432,40.856 56.392,70.71 47.917,63.855 "/>
|
||||
</svg>
|
After (image error) Size: 2 KiB |
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="95.797px" height="83.712px" viewBox="0 0 95.797 83.712" enable-background="new 0 0 95.797 83.712" xml:space="preserve">
|
||||
<path fill="#ED1C24" d="M43.6,2.271C44.479,0.876,46.038,0,47.837,0c1.719,0,2.479,0.837,3.398,2.113l43.612,73.181
|
||||
c1.519,1.993,1.159,5.143-0.68,6.976c-1.04,1.036-2.238,1.515-3.599,1.435L4.184,83.665c-1-0.16-1.958-0.639-2.718-1.396
|
||||
c-1.479-1.515-1.839-3.706-1.08-5.579L43.6,2.271z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M43.6,2.271C44.479,0.876,46.038,0,47.837,0
|
||||
c1.719,0,2.479,0.837,3.398,2.113l43.612,73.181c1.519,1.993,1.159,5.143-0.68,6.976c-1.04,1.036-2.238,1.515-3.599,1.435
|
||||
L4.184,83.665c-1-0.16-1.958-0.639-2.718-1.396c-1.479-1.515-1.839-3.706-1.08-5.579L43.6,2.271z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="14.658,72.902 47.917,15.465 81.176,72.902 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" points="14.658,72.902 47.917,15.465
|
||||
81.176,72.902 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="34.245,64.652 43.56,55.364 34.405,46.237 38.563,42.09 47.717,51.219
|
||||
57.031,41.812 61.147,45.958 51.874,55.364 61.388,64.85 57.23,68.997 47.717,59.509 38.403,68.797 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="34.245,64.652 43.56,55.364
|
||||
34.405,46.237 38.563,42.09 47.717,51.219 57.031,41.812 61.147,45.958 51.874,55.364 61.388,64.85 57.23,68.997 47.717,59.509
|
||||
38.403,68.797 "/>
|
||||
</svg>
|
After (image error) Size: 1.8 KiB |
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.429px" height="79.325px" viewBox="0 0 79.429 79.325" enable-background="new 0 0 79.429 79.325" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.709,0c30.525,0,49.616,33.043,34.343,59.489
|
||||
c-15.252,26.447-53.413,26.447-68.686,0C-9.885,33.043,9.185,0,39.709,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.709,0c30.525,0,49.616,33.043,34.343,59.489
|
||||
c-15.252,26.447-53.413,26.447-68.686,0C-9.885,33.043,9.185,0,39.709,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.69,68.306c-22.049,0-35.842-23.868-24.808-42.979
|
||||
c11.035-19.109,38.601-19.109,49.636,0C75.552,44.438,61.759,68.306,39.69,68.306z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.69,68.306
|
||||
c-22.049,0-35.842-23.868-24.808-42.979c11.035-19.109,38.601-19.109,49.636,0C75.552,44.438,61.759,68.306,39.69,68.306z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="29.475,20.09 29.475,47.896 34.013,47.896 27.216,59.249 20.42,47.896
|
||||
24.937,47.896 24.937,20.05 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.04" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" points="
|
||||
29.475,20.09 29.475,47.896 34.013,47.896 27.216,59.249 20.42,47.896 24.937,47.896 24.937,20.05 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="51.983,59.21 51.983,31.403 56.521,31.403 49.725,20.05
|
||||
42.928,31.403 47.446,31.403 47.446,59.249 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.04" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" points="
|
||||
51.983,59.21 51.983,31.403 56.521,31.403 49.725,20.05 42.928,31.403 47.446,31.403 47.446,59.249 "/>
|
||||
</svg>
|
After (image error) Size: 2.1 KiB |
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="45.322px" height="68.137px" viewBox="0 0 45.322 68.137" enable-background="new 0 0 45.322 68.137" xml:space="preserve">
|
||||
<path fill="#0071B3" d="M5.313,0h34.755c2.896,0,5.254,2.363,5.254,5.287V62.91c0,2.903-2.357,5.227-5.254,5.227H5.272
|
||||
C2.356,68.137,0,65.773,0,62.87L0.02,5.287C0.02,2.363,2.396,0,5.313,0z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M5.313,0h34.755c2.896,0,5.254,2.363,5.254,5.287
|
||||
V62.91c0,2.903-2.357,5.227-5.254,5.227H5.272C2.356,68.137,0,65.773,0,62.87L0.02,5.287C0.02,2.363,2.396,0,5.313,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#00AEEF" d="M38.61,9.994c-2.637,0-4.273-2.845-2.955-5.128
|
||||
c1.317-2.263,4.594-2.263,5.891,0C42.864,7.149,41.227,9.994,38.61,9.994z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M38.61,9.994c-2.637,0-4.273-2.845-2.955-5.128
|
||||
c1.317-2.263,4.594-2.263,5.891,0C42.864,7.149,41.227,9.994,38.61,9.994z"/>
|
||||
<path fill="#FFFFFF" d="M43.624,62.97c0,1.903-1.538,3.445-3.396,3.445H5.113c-1.877,0-3.396-1.542-3.396-3.445V5.146
|
||||
c0-1.882,1.518-3.444,3.396-3.444c11.006,0,24.089,0,35.115,0c1.857,0,3.396,1.542,3.396,3.465V62.97z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M43.624,62.97c0,1.903-1.538,3.445-3.396,3.445
|
||||
H5.113c-1.877,0-3.396-1.542-3.396-3.445V5.146c0-1.882,1.518-3.444,3.396-3.444c11.006,0,24.089,0,35.115,0
|
||||
c1.857,0,3.396,1.542,3.396,3.465V62.97z"/>
|
||||
<path fill="#0071B3" d="M41.965,62.99c0,0.961-0.799,1.723-1.737,1.723H5.113c-0.938,0-1.698-0.762-1.698-1.723V5.127
|
||||
c0-0.941,0.759-1.723,1.698-1.723c10.127,0,25.028,0,35.155,0c0.938,0,1.697,0.761,1.697,1.723V62.99z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M41.965,62.99c0,0.961-0.799,1.723-1.737,1.723
|
||||
H5.113c-0.938,0-1.698-0.762-1.698-1.723V5.127c0-0.941,0.759-1.723,1.698-1.723c10.127,0,25.028,0,35.155,0
|
||||
c0.938,0,1.697,0.761,1.697,1.723V62.99z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="33.756,53.837 33.756,25.656 38.291,25.656 31.499,14.14
|
||||
24.708,25.656 29.222,25.656 29.242,53.837 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0.04" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" points="
|
||||
33.756,53.837 33.756,25.656 38.291,25.656 31.499,14.14 24.708,25.656 29.222,25.656 29.242,53.837 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" points="16.499,14 16.499,42.18 21.033,42.18 14.241,53.696
|
||||
7.45,42.18 11.964,42.18 11.964,13.96 "/>
|
||||
<polygon fill="none" stroke="#ED1C24" stroke-width="0.04" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" points="
|
||||
16.499,14 16.499,42.18 21.033,42.18 14.241,53.696 7.45,42.18 11.964,42.18 11.964,13.96 "/>
|
||||
</svg>
|
After (image error) Size: 3.1 KiB |
123
assets/layers/traffic_sign/images/be/B/Belgian_road_sign_B22.svg
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?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"
|
||||
id="svg2816"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
width="95.81649"
|
||||
height="83.729599"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="Belgian road sign B22.svg"><metadata
|
||||
id="metadata2822"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2820"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
id="perspective2824" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2844"><path
|
||||
d="m 2562,672.668 3,0 0,-108 -3,0 0,108 z"
|
||||
id="path2846" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2854"><path
|
||||
d="m 731,6133.67 780,0 0,-679 -780,0 0,679 z"
|
||||
id="path2856" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2892"><path
|
||||
d="m 731,4841.67 780,0 0,-680 -780,0 0,680 z"
|
||||
id="path2894" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath3090"><path
|
||||
d="m 731,2387.67 779,0 0,-684 -779,0"
|
||||
id="path3092" /></clipPath><inkscape:perspective
|
||||
id="perspective3129"
|
||||
inkscape:persp3d-origin="47.908001 : 27.909665 : 1"
|
||||
inkscape:vp_z="95.816002 : 41.864498 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 41.864498 : 1"
|
||||
sodipodi:type="inkscape:persp3d" /><inkscape:perspective
|
||||
id="perspective4211"
|
||||
inkscape:persp3d-origin="39.790001 : 26.495 : 1"
|
||||
inkscape:vp_z="79.580002 : 39.7425 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 39.7425 : 1"
|
||||
sodipodi:type="inkscape:persp3d" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="838"
|
||||
id="namedview2818"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.140677"
|
||||
inkscape:cx="47.742493"
|
||||
inkscape:cy="42.339324"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g2826" /><g
|
||||
id="g2826"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Belgio"
|
||||
transform="matrix(1.25,0,0,-1.25,346.87909,480.97823)"><g
|
||||
id="g2840"
|
||||
transform="matrix(0.09762902,0,0,0.09762902,-202.75728,115.54083)"><g
|
||||
clip-path="url(#clipPath2844)"
|
||||
id="g2842"><g
|
||||
transform="scale(8.33333,8.33333)"
|
||||
id="g2848" /></g></g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<path
|
||||
id="path3115"
|
||||
d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8288 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z"
|
||||
style="fill:#ed1c24" /><path
|
||||
id="path3117"
|
||||
d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8296 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992" /><polygon
|
||||
id="polygon3119"
|
||||
points="47.926,68.261 81.192,10.892 14.66,10.892 "
|
||||
clip-rule="evenodd"
|
||||
transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)"
|
||||
style="fill:#ffffff;fill-rule:evenodd" /><polygon
|
||||
id="polygon3121"
|
||||
points="47.926,68.261 81.192,10.892 14.66,10.892 "
|
||||
stroke-miterlimit="3.863"
|
||||
transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)"
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992" /><path
|
||||
style="fill:#ffed45;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.31999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m -231.26354,357.69838 c -1.34367,0.12281 -2.52121,0.69462 -3.46633,1.68322 -0.998,1.04394 -1.53671,2.27606 -1.60888,3.67984 -0.0339,0.65964 0.11226,1.24682 0.51395,2.0645 0.57894,1.1785 1.43752,2.19077 2.29437,2.70506 0.10668,0.0641 0.31479,0.15627 0.46244,0.20495 0.52155,0.17194 0.62599,0.26164 0.62055,0.53293 -0.006,0.26596 -0.33704,0.82354 -0.7403,1.2444 -0.12913,0.13476 -0.16161,0.15184 -0.28886,0.15184 -0.16967,0 -0.31579,-0.0771 -0.958,-0.5056 -2.04063,-1.36152 -6.41288,-4.73175 -6.60552,-5.09169 -0.0559,-0.10455 -0.0285,-0.42985 0.0492,-0.58259 0.0315,-0.062 0.12797,-0.20932 0.21429,-0.32741 0.31765,-0.43453 0.41348,-0.73823 0.38564,-1.22219 -0.032,-0.55638 -0.20725,-0.9062 -0.6338,-1.26523 -0.51867,-0.43658 -0.64949,-0.45651 -1.37516,-0.20944 -0.27308,0.093 -0.50906,0.1534 -0.59909,0.1534 -0.24478,0 -0.41506,-0.14213 -0.83113,-0.69367 -0.82327,-1.09133 -1.74662,-1.78358 -2.92939,-2.19619 -0.60899,-0.21244 -0.95078,-0.26471 -1.73015,-0.26455 -0.73272,1.3e-4 -0.93055,0.0262 -1.49924,0.19736 -1.92475,0.57934 -3.4522,2.40105 -3.72021,4.43692 -0.30411,2.3101 1.01272,4.62854 3.15722,5.55867 0.64918,0.28156 1.19823,0.39229 2.06223,0.41592 0.76732,0.021 1.32941,-0.0495 1.88997,-0.23708 0.70208,-0.2349 1.19254,-0.54828 1.99128,-1.27237 0.52363,-0.4747 0.92806,-0.76798 1.03743,-0.75235 0.0574,0.008 0.0679,0.0305 0.0622,0.13141 -0.0225,0.38996 -0.5451,1.79029 -1.27378,3.41288 -0.39655,0.88303 -0.45502,0.99838 -0.67399,1.32971 -0.24305,0.36776 -0.39642,0.48005 -0.778,0.56964 -0.35042,0.0823 -0.51951,0.16055 -0.61842,0.28628 -0.16426,0.20883 -0.006,0.37121 0.43469,0.4444 0.39259,0.0653 3.63288,0.0655 3.99004,3.1e-4 0.30374,-0.0554 0.42221,-0.11317 0.46536,-0.22667 0.0531,-0.1398 -0.0206,-0.27007 -0.19734,-0.34823 -0.12228,-0.0541 -0.28608,-0.0742 -0.89427,-0.10965 -0.40952,-0.0239 -0.80194,-0.0602 -0.87206,-0.0805 -0.11725,-0.0341 -0.12596,-0.0447 -0.10851,-0.13201 0.10648,-0.53243 2.27576,-5.44935 2.40417,-5.44935 0.15339,0 0.83299,0.39345 1.84192,1.06636 0.91635,0.61116 1.72519,1.19134 4.07094,2.92004 l 1.83714,1.35389 1.84918,0.0223 c 2.38508,0.0288 2.55796,0.0498 2.81579,0.34273 0.15082,0.17134 0.32526,0.57007 0.37407,0.855 0.0282,0.16441 0.0242,0.24368 -0.0211,0.42763 -0.073,0.29561 -0.28752,0.73526 -0.42498,0.87079 -0.25047,0.24694 -0.44151,0.28458 -1.85986,0.36645 -1.21249,0.07 -1.53162,0.10049 -1.92144,0.18373 -0.23089,0.0493 -0.33407,0.1108 -0.29417,0.17536 0.0366,0.0592 0.46162,0.1317 1.0045,0.17138 0.69842,0.051 2.40993,0.0222 2.70529,-0.0456 0.34217,-0.0786 0.55789,-0.20879 0.78273,-0.47256 0.50948,-0.59769 0.72258,-1.2471 0.60028,-1.8293 -0.0842,-0.40068 -0.25149,-0.70122 -0.56153,-1.00855 -0.30557,-0.3029 -0.57152,-0.46469 -0.99823,-0.60726 -0.3324,-0.11107 -0.62458,-0.15262 -1.38578,-0.19709 -0.72069,-0.0421 -0.90676,-0.12032 -0.90536,-0.38058 8e-4,-0.18061 0.0813,-0.34664 0.32122,-0.66377 0.52666,-0.69617 0.97508,-0.97276 1.87468,-1.15631 0.72541,-0.14801 1.1711,-0.32548 1.78453,-0.71059 1.7548,-1.10164 2.62477,-2.72806 2.55011,-4.76748 -0.03,-0.81857 -0.19121,-1.47945 -0.53315,-2.18515 -0.29617,-0.61127 -0.67699,-1.08214 -1.25031,-1.54601 -1.20112,-0.97181 -2.72396,-1.52872 -3.88898,-1.42224 z"
|
||||
id="path4186" /><path
|
||||
style="fill:#ffed45;fill-opacity:1;stroke:#000000;stroke-width:0.31999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m -236.21364,351.37729 0.0849,2.17946 2.34342,-4.05028 -2.48076,-4.20684 0.0189,2.18003 -8.2238,0.17008 0.0334,3.86459 8.22401,-0.13708 0,-1e-5 0,5e-5 z"
|
||||
id="path4222"
|
||||
sodipodi:nodetypes="cccccccccc" /></g></svg>
|
After (image error) Size: 8.3 KiB |
124
assets/layers/traffic_sign/images/be/B/Belgian_road_sign_B23.svg
Normal file
|
@ -0,0 +1,124 @@
|
|||
<?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"
|
||||
id="svg2816"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
width="95.81649"
|
||||
height="83.729599"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="Belgio.pdf"><metadata
|
||||
id="metadata2822"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2820"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
id="perspective2824" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2844"><path
|
||||
d="m 2562,672.668 3,0 0,-108 -3,0 0,108 z"
|
||||
id="path2846" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2854"><path
|
||||
d="m 731,6133.67 780,0 0,-679 -780,0 0,679 z"
|
||||
id="path2856" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2892"><path
|
||||
d="m 731,4841.67 780,0 0,-680 -780,0 0,680 z"
|
||||
id="path2894" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath3090"><path
|
||||
d="m 731,2387.67 779,0 0,-684 -779,0"
|
||||
id="path3092" /></clipPath><inkscape:perspective
|
||||
id="perspective3129"
|
||||
inkscape:persp3d-origin="47.908001 : 27.909665 : 1"
|
||||
inkscape:vp_z="95.816002 : 41.864498 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 41.864498 : 1"
|
||||
sodipodi:type="inkscape:persp3d" /><inkscape:perspective
|
||||
id="perspective4211"
|
||||
inkscape:persp3d-origin="39.790001 : 26.495 : 1"
|
||||
inkscape:vp_z="79.580002 : 39.7425 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 39.7425 : 1"
|
||||
sodipodi:type="inkscape:persp3d" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="838"
|
||||
id="namedview2818"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.140677"
|
||||
inkscape:cx="47.742493"
|
||||
inkscape:cy="42.339324"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g2826" /><g
|
||||
id="g2826"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Belgio"
|
||||
transform="matrix(1.25,0,0,-1.25,346.87909,480.97823)"><g
|
||||
id="g2840"
|
||||
transform="matrix(0.09762902,0,0,0.09762902,-202.75728,115.54083)"><g
|
||||
clip-path="url(#clipPath2844)"
|
||||
id="g2842"><g
|
||||
transform="scale(8.33333,8.33333)"
|
||||
id="g2848" /></g></g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g4226"><path
|
||||
style="fill:#ed1c24"
|
||||
d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8288 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z"
|
||||
id="path3115" /><path
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992"
|
||||
stroke-miterlimit="3.863"
|
||||
d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8296 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z"
|
||||
id="path3117" /><polygon
|
||||
style="fill:#ffffff;fill-rule:evenodd"
|
||||
transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)"
|
||||
clip-rule="evenodd"
|
||||
points="81.192,10.892 14.66,10.892 47.926,68.261 "
|
||||
id="polygon3119" /><polygon
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992"
|
||||
transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)"
|
||||
stroke-miterlimit="3.863"
|
||||
points="81.192,10.892 14.66,10.892 47.926,68.261 "
|
||||
id="polygon3121" /><path
|
||||
id="path4186"
|
||||
d="m -231.26354,357.69838 c -1.34367,0.12281 -2.52121,0.69462 -3.46633,1.68322 -0.998,1.04394 -1.53671,2.27606 -1.60888,3.67984 -0.0339,0.65964 0.11226,1.24682 0.51395,2.0645 0.57894,1.1785 1.43752,2.19077 2.29437,2.70506 0.10668,0.0641 0.31479,0.15627 0.46244,0.20495 0.52155,0.17194 0.62599,0.26164 0.62055,0.53293 -0.006,0.26596 -0.33704,0.82354 -0.7403,1.2444 -0.12913,0.13476 -0.16161,0.15184 -0.28886,0.15184 -0.16967,0 -0.31579,-0.0771 -0.958,-0.5056 -2.04063,-1.36152 -6.41288,-4.73175 -6.60552,-5.09169 -0.0559,-0.10455 -0.0285,-0.42985 0.0492,-0.58259 0.0315,-0.062 0.12797,-0.20932 0.21429,-0.32741 0.31765,-0.43453 0.41348,-0.73823 0.38564,-1.22219 -0.032,-0.55638 -0.20725,-0.9062 -0.6338,-1.26523 -0.51867,-0.43658 -0.64949,-0.45651 -1.37516,-0.20944 -0.27308,0.093 -0.50906,0.1534 -0.59909,0.1534 -0.24478,0 -0.41506,-0.14213 -0.83113,-0.69367 -0.82327,-1.09133 -1.74662,-1.78358 -2.92939,-2.19619 -0.60899,-0.21244 -0.95078,-0.26471 -1.73015,-0.26455 -0.73272,1.3e-4 -0.93055,0.0262 -1.49924,0.19736 -1.92475,0.57934 -3.4522,2.40105 -3.72021,4.43692 -0.30411,2.3101 1.01272,4.62854 3.15722,5.55867 0.64918,0.28156 1.19823,0.39229 2.06223,0.41592 0.76732,0.021 1.32941,-0.0495 1.88997,-0.23708 0.70208,-0.2349 1.19254,-0.54828 1.99128,-1.27237 0.52363,-0.4747 0.92806,-0.76798 1.03743,-0.75235 0.0574,0.008 0.0679,0.0305 0.0622,0.13141 -0.0225,0.38996 -0.5451,1.79029 -1.27378,3.41288 -0.39655,0.88303 -0.45502,0.99838 -0.67399,1.32971 -0.24305,0.36776 -0.39642,0.48005 -0.778,0.56964 -0.35042,0.0823 -0.51951,0.16055 -0.61842,0.28628 -0.16426,0.20883 -0.006,0.37121 0.43469,0.4444 0.39259,0.0653 3.63288,0.0655 3.99004,3.1e-4 0.30374,-0.0554 0.42221,-0.11317 0.46536,-0.22667 0.0531,-0.1398 -0.0206,-0.27007 -0.19734,-0.34823 -0.12228,-0.0541 -0.28608,-0.0742 -0.89427,-0.10965 -0.40952,-0.0239 -0.80194,-0.0602 -0.87206,-0.0805 -0.11725,-0.0341 -0.12596,-0.0447 -0.10851,-0.13201 0.10648,-0.53243 2.27576,-5.44935 2.40417,-5.44935 0.15339,0 0.83299,0.39345 1.84192,1.06636 0.91635,0.61116 1.72519,1.19134 4.07094,2.92004 l 1.83714,1.35389 1.84918,0.0223 c 2.38508,0.0288 2.55796,0.0498 2.81579,0.34273 0.15082,0.17134 0.32526,0.57007 0.37407,0.855 0.0282,0.16441 0.0242,0.24368 -0.0211,0.42763 -0.073,0.29561 -0.28752,0.73526 -0.42498,0.87079 -0.25047,0.24694 -0.44151,0.28458 -1.85986,0.36645 -1.21249,0.07 -1.53162,0.10049 -1.92144,0.18373 -0.23089,0.0493 -0.33407,0.1108 -0.29417,0.17536 0.0366,0.0592 0.46162,0.1317 1.0045,0.17138 0.69842,0.051 2.40993,0.0222 2.70529,-0.0456 0.34217,-0.0786 0.55789,-0.20879 0.78273,-0.47256 0.50948,-0.59769 0.72258,-1.2471 0.60028,-1.8293 -0.0842,-0.40068 -0.25149,-0.70122 -0.56153,-1.00855 -0.30557,-0.3029 -0.57152,-0.46469 -0.99823,-0.60726 -0.3324,-0.11107 -0.62458,-0.15262 -1.38578,-0.19709 -0.72069,-0.0421 -0.90676,-0.12032 -0.90536,-0.38058 8e-4,-0.18061 0.0813,-0.34664 0.32122,-0.66377 0.52666,-0.69617 0.97508,-0.97276 1.87468,-1.15631 0.72541,-0.14801 1.1711,-0.32548 1.78453,-0.71059 1.7548,-1.10164 2.62477,-2.72806 2.55011,-4.76748 -0.03,-0.81857 -0.19121,-1.47945 -0.53315,-2.18515 -0.29617,-0.61127 -0.67699,-1.08214 -1.25031,-1.54601 -1.20112,-0.97181 -2.72396,-1.52872 -3.88898,-1.42224 z"
|
||||
style="fill:#ffed45;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.31999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /><path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
id="path4222"
|
||||
d="m -241.06949,349.14367 -2.18011,0.0661 4.0299,2.37829 4.22809,-2.44436 -2.18011,4e-5 -0.0991,-8.22496 -3.86473,10e-6 0.0661,8.22488 1e-5,0 -5e-5,0 z"
|
||||
style="fill:#ffed45;fill-opacity:1;stroke:#000000;stroke-width:0.31999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g></g></svg>
|
After (image error) Size: 8.3 KiB |
123
assets/layers/traffic_sign/images/be/B/Belgian_road_sign_B5.svg
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
|
||||
<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"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="102.425px"
|
||||
height="102.421px"
|
||||
viewBox="0 0 102.425 102.421"
|
||||
enable-background="new 0 0 102.425 102.421"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="Belgian road sign B5.svg"><metadata
|
||||
id="metadata37"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs35"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 51.210499 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="102.425 : 51.210499 : 1"
|
||||
inkscape:persp3d-origin="51.212502 : 34.140333 : 1"
|
||||
id="perspective39" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="738"
|
||||
id="namedview33"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.304215"
|
||||
inkscape:cx="51.212502"
|
||||
inkscape:cy="51.210499"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g2872"
|
||||
transform="translate(0,-0.001)"><polygon
|
||||
id="polygon3"
|
||||
points="70.91,98.636 98.718,70.829 98.718,31.523 70.91,3.716 31.564,3.716 3.757,31.523 3.757,70.829 31.564,98.636 "
|
||||
clip-rule="evenodd"
|
||||
style="fill:#ed1c24;fill-rule:evenodd" /><polygon
|
||||
id="polygon5"
|
||||
points="70.91,98.636 98.718,70.829 98.718,31.523 70.91,3.716 31.564,3.716 3.757,31.523 3.757,70.829 31.564,98.636 "
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0.2;stroke-miterlimit:3.86299992" /><path
|
||||
id="path7"
|
||||
d="m 94.311,45.626 c 0,4.007 -3.246,7.252 -7.293,7.252 l -6.17,0.081 V 69.506 H 75.639 V 33.045 h 11.1 c 4.007,0 7.453,3.246 7.453,7.333 v 5.369 l 0.119,-0.121 z"
|
||||
style="fill:#ffffff" /><path
|
||||
id="path9"
|
||||
d="m 94.311,45.626 c 0,4.007 -3.246,7.252 -7.293,7.252 l -6.17,0.081 V 69.506 H 75.639 V 33.045 h 11.1 c 4.007,0 7.453,3.246 7.453,7.333 v 5.369 l 0.119,-0.121 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:3.86299992" /><path
|
||||
id="path11"
|
||||
d="m 0.111,70.949 c 0,0.923 0.48,1.804 1.122,2.445 l 27.887,27.847 c 0.601,0.562 1.442,0.922 2.283,0.922 l 39.468,0.159 c 0.881,0 1.963,-0.52 2.564,-1.12 l 27.848,-27.888 c 0.641,-0.562 1.041,-1.442 1.041,-2.365 V 31.402 c 0,-0.921 -0.4,-1.803 -1.041,-2.364 L 73.556,1.312 C 72.914,0.67 71.992,0.11 71.071,0.11 H 31.645 c -0.641,-0.121 -2.484,0.881 -3.246,1.642 -0.16,0.201 0.201,-0.2 0,0 L 1.393,28.838 c -0.441,0.481 -1.242,1.443 -1.242,2.524 0,0.281 -0.08,0.481 -0.04,0.722 v 38.865 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#120c0e;stroke-width:0.2;stroke-miterlimit:3.86299992" /><path
|
||||
id="path13"
|
||||
d="m 21.828,41.66 5.009,0.04 c 0,-4.928 -4.007,-8.935 -8.896,-8.935 -4.968,0 -8.975,4.007 -8.975,8.935 0,2.885 1.402,5.49 3.566,7.132 l 8.855,9.296 c 0.281,0.642 0.521,1.283 0.521,2.004 0,2.324 -1.923,4.246 -4.247,4.246 -2.324,0 -4.207,-1.922 -4.207,-4.246 V 58.77 H 8.485 v 1.282 c 0,5.088 4.127,9.216 9.256,9.216 5.089,0 9.216,-4.128 9.216,-9.216 0,-2.645 -1.082,-5.009 -2.885,-6.691 l -8.855,-9.336 c -0.722,-0.641 -1.202,-1.643 -1.202,-2.684 0,-2.084 1.682,-3.807 3.806,-3.807 2.044,-10e-4 4.007,2.002 4.007,4.126 z"
|
||||
style="fill:#ffffff" /><path
|
||||
id="path15"
|
||||
d="m 21.828,41.66 5.009,0.04 c 0,-4.928 -4.007,-8.935 -8.896,-8.935 -4.968,0 -8.975,4.007 -8.975,8.935 0,2.885 1.402,5.49 3.566,7.132 l 8.855,9.296 c 0.281,0.642 0.521,1.283 0.521,2.004 0,2.324 -1.923,4.246 -4.247,4.246 -2.324,0 -4.207,-1.922 -4.207,-4.246 V 58.77 H 8.485 v 1.282 c 0,5.088 4.127,9.216 9.256,9.216 5.089,0 9.216,-4.128 9.216,-9.216 0,-2.645 -1.082,-5.009 -2.885,-6.691 l -8.855,-9.336 c -0.722,-0.641 -1.202,-1.643 -1.202,-2.684 0,-2.084 1.682,-3.807 3.806,-3.807 2.044,-10e-4 4.007,2.002 4.007,4.126 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:3.86299992" /><polygon
|
||||
id="polygon17"
|
||||
points="48.192,32.965 48.192,37.653 41.581,37.653 41.581,69.467 36.532,69.467 36.532,37.613 29.722,37.613 29.722,32.965 "
|
||||
style="fill:#ffffff" /><polygon
|
||||
id="polygon19"
|
||||
points="48.192,32.965 48.192,37.653 41.581,37.653 41.581,69.467 36.532,69.467 36.532,37.613 29.722,37.613 29.722,32.965 "
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:3.86299992" /><path
|
||||
id="path21"
|
||||
d="m 69.147,60.932 c 0,5.049 -4.047,8.654 -9.095,8.654 -5.089,0 -9.176,-4.086 -9.176,-9.135 V 41.62 c 0,-5.089 4.087,-9.176 9.176,-9.176 5.048,0 9.095,4.087 9.095,9.176 v 19.312 z"
|
||||
style="fill:#ffffff" /><path
|
||||
id="path23"
|
||||
d="m 69.147,60.932 c 0,5.049 -4.047,8.654 -9.095,8.654 -5.089,0 -9.176,-4.086 -9.176,-9.135 V 41.62 c 0,-5.089 4.087,-9.176 9.176,-9.176 5.048,0 9.095,4.087 9.095,9.176 v 19.312 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:3.86299992" /><path
|
||||
id="path25"
|
||||
d="m 64.34,60.812 c 0,2.324 -1.924,4.247 -4.247,4.247 -2.364,0 -4.247,-1.923 -4.247,-4.247 V 41.62 c 0,-2.364 1.883,-4.287 4.247,-4.287 2.323,0 4.247,1.923 4.247,4.287 v 19.192 z"
|
||||
style="fill:#ed1c24" /><path
|
||||
id="path27"
|
||||
d="m 64.34,60.812 c 0,2.324 -1.924,4.247 -4.247,4.247 -2.364,0 -4.247,-1.923 -4.247,-4.247 V 41.62 c 0,-2.364 1.883,-4.287 4.247,-4.287 2.323,0 4.247,1.923 4.247,4.287 v 19.192 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:3.86299992" /><path
|
||||
id="path29"
|
||||
d="m 89.303,41.099 v 3.847 c 0,2.003 -1.644,3.686 -3.646,3.686 H 80.969 V 37.854 h 4.688 c 2.003,0 3.646,1.642 3.646,3.646 v -0.401 z"
|
||||
style="fill:#ed1c24" /><path
|
||||
id="path31"
|
||||
d="m 89.303,41.099 v 3.847 c 0,2.003 -1.644,3.686 -3.646,3.686 H 80.969 V 37.854 h 4.688 c 2.003,0 3.646,1.642 3.646,3.646 v -0.401 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:3.86299992" /></g>
|
||||
</svg>
|
After (image error) Size: 6.7 KiB |
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="100.274px" height="100.274px" viewBox="0 0 100.274 100.274" enable-background="new 0 0 100.274 100.274"
|
||||
xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M44.881,2.773c2.898-2.898,7.614-2.898,10.512,0l42.108,42.108c2.897,2.898,2.897,7.614,0,10.512
|
||||
L55.393,97.501c-2.898,2.897-7.614,2.897-10.512,0L2.773,55.393c-2.898-2.897-2.898-7.614,0-10.512L44.881,2.773z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="1.199" stroke-miterlimit="3.863" d="M44.881,2.773
|
||||
c2.898-2.898,7.614-2.898,10.512,0l42.108,42.108c2.897,2.898,2.897,7.614,0,10.512L55.393,97.501
|
||||
c-2.898,2.897-7.614,2.897-10.512,0L2.773,55.393c-2.898-2.897-2.898-7.614,0-10.512L44.881,2.773z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" points="13.885,50.157 50.137,13.905 86.39,50.157 50.137,86.39
|
||||
"/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="1.998" stroke-miterlimit="3.863" points="13.885,50.157 50.137,13.905
|
||||
86.39,50.157 50.137,86.39 "/>
|
||||
</svg>
|
After (image error) Size: 1.3 KiB |
102
assets/layers/traffic_sign/images/be/B/license_info.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
[
|
||||
{
|
||||
"path": "Belgian_road_sign_B1.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B1.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B11.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B11.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B15.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B15.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B17.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B17.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B19.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B19.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B21.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B21.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B22.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/w/index.php?title=User:Gigillo83&action=edit&redlink=1\" class=\"new\" title=\"User:Gigillo83 (page does not exist)\">Gigillo83</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B22.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B23.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/w/index.php?title=User:Gigillo83&action=edit&redlink=1\" class=\"new\" title=\"User:Gigillo83 (page does not exist)\">Gigillo83</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B23.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B5.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B5.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_B9.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_B9.svg"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.847px" height="78.74px" viewBox="0 0 78.847 78.74" enable-background="new 0 0 78.847 78.74" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.43,0c30.299,0,49.238,32.8,34.081,59.056
|
||||
c-15.142,26.238-53.02,26.255-68.177,0C-9.823,32.8,9.13,0,39.43,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.43,0c30.299,0,49.238,32.8,34.081,59.056
|
||||
c-15.142,26.238-53.02,26.255-68.177,0C-9.823,32.8,9.13,0,39.43,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.415,67.807c-21.903,0-35.594-23.708-24.635-42.662
|
||||
c10.944-18.971,38.326-18.971,49.269,0C74.992,44.099,61.302,67.807,39.415,67.807z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.415,67.807
|
||||
c-21.903,0-35.594-23.708-24.635-42.662c10.944-18.971,38.326-18.971,49.269,0C74.992,44.099,61.302,67.807,39.415,67.807z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="4.362,44.562 3.636,39.421 4.362,34.158 74.668,34.158
|
||||
75.209,39.359 74.668,44.562 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" points="4.362,44.562 3.636,39.421 4.362,34.158
|
||||
74.668,34.158 75.209,39.359 74.668,44.562 "/>
|
||||
<path fill="#FFFFFF" d="M75.811,44.577L3.05,44.607c-0.247-1.729-0.386-3.457-0.386-5.248c0-1.775,0.123-3.534,0.37-5.247
|
||||
l72.777,0.107c0.23,1.683,0.355,3.396,0.355,5.14C76.166,41.15,76.058,42.849,75.811,44.577z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M75.811,44.577L3.05,44.607
|
||||
c-0.247-1.729-0.386-3.457-0.386-5.248c0-1.775,0.123-3.534,0.37-5.247l72.777,0.107c0.23,1.683,0.355,3.396,0.355,5.14
|
||||
C76.166,41.15,76.058,42.849,75.811,44.577z"/>
|
||||
</svg>
|
After (image error) Size: 2.1 KiB |
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="79.403" height="79.271">
|
||||
<path fill="#ED1C24" fill-rule="evenodd" d="M39.721 0c30.504 0 49.576 33.023 34.303 59.45-15.232 26.427-53.374 26.427-68.646 0C-9.894 33.023 9.176 0 39.721 0z" clip-rule="evenodd"/>
|
||||
<path fill="none" d="M39.721 0c30.504 0 49.576 33.023 34.303 59.45-15.232 26.427-53.374 26.427-68.646 0C-9.894 33.023 9.176 0 39.721 0z"/>
|
||||
<path fill="#FFF" fill-rule="evenodd" d="M39.681 68.286c-22.069 0-35.862-23.868-24.828-42.979 11.035-19.11 38.662-19.15 49.696 0 11.034 19.111-2.759 42.979-24.868 42.979z" clip-rule="evenodd"/>
|
||||
<path fill="none" d="M39.681 68.286c-22.069 0-35.862-23.868-24.828-42.979 11.035-19.11 38.662-19.15 49.696 0 11.034 19.111-2.759 42.979-24.868 42.979z"/>
|
||||
<path d="m29.286 32.344 10.035 8.915c-.4.44-.599 1.04-.599 1.64 0 1.279 1.039 2.398 2.318 2.558v2.959h-.398v.521h1.278v-.521h-.36v-2.919c1.2-.08 2.119-1.039 2.319-2.159h1.399c.199 4.878 4.197 8.756 9.076 8.756 5.037 0 9.114-4.077 9.114-9.116 0-4.997-4.077-9.075-9.114-9.075-1.52 0-2.959.36-4.199 1.039l-2.559-4.677.6-1.24c.201-.399.721-.279 1.039-.599.041-.2.041-.36.041-.56-.16-.08-.24-.28-.439-.28h-3.359c-.08.08-.199.04-.279.04l-.12.12c-.04.16-.08.4 0 .56.04.04.12.08.159.08h1.72c.2-.04.36.04.56.08.041.08.041.08.121.12-.041.12.079.279.039.399l-.359.8H29.886l.48-2.079c.4-.12.719.16 1.519-.2.32 0 1.039-.4 1.959-.08.16-.08-.08-.16.04-.28-.08-.04.12-.24.08-.32-.52-.159-1.679-.239-2.239.08-.56.32-1.319.12-1.799.16l-1.719 7.397c-1-.4-2.119-.6-3.239-.6-5.037 0-9.115 4.078-9.115 9.075 0 5.038 4.078 9.116 9.115 9.116 4.998 0 9.076-4.078 9.076-9.116 0-3.678-2.199-6.796-5.317-8.235l.559-2.359z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="m29.286 32.344 10.035 8.915c-.4.44-.599 1.04-.599 1.64 0 1.279 1.039 2.398 2.318 2.558v2.959h-.398v.521h1.278v-.521h-.36v-2.919c1.2-.08 2.119-1.039 2.319-2.159h1.399c.199 4.878 4.197 8.756 9.076 8.756 5.037 0 9.114-4.077 9.114-9.116 0-4.997-4.077-9.075-9.114-9.075-1.52 0-2.959.36-4.199 1.039l-2.559-4.677.6-1.24c.201-.399.721-.279 1.039-.599.041-.2.041-.36.041-.56-.16-.08-.24-.28-.439-.28h-3.359c-.08.08-.199.04-.279.04l-.12.12c-.04.16-.08.4 0 .56.04.04.12.08.159.08h1.72c.2-.04.36.04.56.08.041.08.041.08.121.12-.041.12.079.279.039.399l-.359.8H29.886l.48-2.079c.4-.12.719.16 1.519-.2.32 0 1.039-.4 1.959-.08.16-.08-.08-.16.04-.28-.08-.04.12-.24.08-.32-.52-.159-1.679-.239-2.239.08-.56.32-1.319.12-1.799.16l-1.719 7.397c-1-.4-2.119-.6-3.239-.6-5.037 0-9.115 4.078-9.115 9.075 0 5.038 4.078 9.116 9.115 9.116 4.998 0 9.076-4.078 9.076-9.116 0-3.678-2.199-6.796-5.317-8.235l.559-2.359z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="M23.489 33.263c.52-.08 1-.16 1.479-.16 5.398 0 9.796 4.438 9.796 9.875 0 .32 0 .601-.04.92"/>
|
||||
<path fill-rule="evenodd" d="M62.271 52.534H17.012v-.641H62.27v.641z" clip-rule="evenodd"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="M62.271 52.534H17.012v-.641H62.27v.641z"/>
|
||||
<path fill="#FFF" d="M25.688 41.859c-.2-.16-.48-.12-.76-.12-.719 0-1.359.6-1.359 1.319 0 .721.64 1.32 1.359 1.32.6 0 1.16-.4 1.32-.96h6.876c-.28 4.317-3.838 7.716-8.196 7.716-4.597 0-8.276-3.678-8.276-8.235 0-4.558 3.679-8.236 8.276-8.236 1.08 0 2.119.199 3.079.599l-.52 2.239c-.32 1.28-.759 2.799-1.799 4.358z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="M25.688 41.859c-.2-.16-.48-.12-.76-.12-.719 0-1.359.6-1.359 1.319 0 .721.64 1.32 1.359 1.32.6 0 1.16-.4 1.32-.96h6.876c-.28 4.317-3.838 7.716-8.196 7.716-4.597 0-8.276-3.678-8.276-8.235 0-4.558 3.679-8.236 8.276-8.236 1.08 0 2.119.199 3.079.599l-.52 2.239c-.32 1.28-.759 2.799-1.799 4.358z"/>
|
||||
<path fill="#FFF" d="m28.567 35.502-.6 2.359c-.28 1.159-1.16 3.438-1.919 4.358.12.16.2.36.24.56h6.876c-.08-3.239-1.919-5.957-4.597-7.277z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="m28.567 35.502-.6 2.359c-.28 1.159-1.16 3.438-1.919 4.358.12.16.2.36.24.56h6.876c-.08-3.239-1.919-5.957-4.597-7.277z"/>
|
||||
<path fill="#FFF" d="m29.446 31.784.24-1.439h17.311L42.2 40.46c-.2-.08-.36-.24-.68-.16v-2.879h.399v-.52H40.6v.52h.4v2.919c-.479.08-.879.28-1.239.56l-10.315-9.116z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="m29.446 31.784.24-1.439h17.311L42.2 40.46c-.2-.08-.36-.24-.68-.16v-2.879h.399v-.52H40.6v.52h.4v2.919c-.479.08-.879.28-1.239.56l-10.315-9.116z"/>
|
||||
<path fill="#FFF" d="m56.153 42.059 5.477-2.999c.641 1.16 1 2.519 1 3.917 0 4.559-3.678 8.236-8.236 8.236-4.438 0-8.035-3.479-8.235-7.876h6.437c.16.84.92 1.479 1.799 1.479 1 0 1.879-.84 1.879-1.84 0-.318-.08-.599-.199-.838l.078-.079z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="m56.153 42.059 5.477-2.999c.641 1.16 1 2.519 1 3.917 0 4.559-3.678 8.236-8.236 8.236-4.438 0-8.035-3.479-8.235-7.876h6.437c.16.84.92 1.479 1.799 1.479 1 0 1.879-.84 1.879-1.84 0-.318-.08-.599-.199-.838l.078-.079z"/>
|
||||
<path fill="#FFF" d="m55.833 41.739 5.557-3.038c-1.438-2.359-4.037-3.958-7.035-3.958-1.32 0-2.6.319-3.719.879l3.118 5.637c.2-.08.44-.12.681-.12.519 0 .998.24 1.398.6z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="m55.833 41.739 5.557-3.038c-1.438-2.359-4.037-3.958-7.035-3.958-1.32 0-2.6.319-3.719.879l3.118 5.637c.2-.08.44-.12.681-.12.519 0 .998.24 1.398.6z"/>
|
||||
<path fill="#FFF" d="m50.196 35.982 3.117 5.637c-.319.28-.559.68-.639 1.12h-6.557c.08-2.879 1.639-5.398 3.958-6.797l.121.04z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="m50.196 35.982 3.117 5.637c-.319.28-.559.68-.639 1.12h-6.557c.08-2.879 1.639-5.398 3.958-6.797l.121.04z"/>
|
||||
<path fill="#FFF" d="M47.317 30.825 42.8 40.74c.68.439 1.159 1.199 1.199 2.039h1.359c.08-3.199 1.799-5.997 4.397-7.557l-2.438-4.397z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="M47.317 30.825 42.8 40.74c.68.439 1.159 1.199 1.199 2.039h1.359c.08-3.199 1.799-5.997 4.397-7.557l-2.438-4.397z"/>
|
||||
<path fill="none" stroke="#000" stroke-miterlimit="3.863" stroke-width=".2" d="M44.759 44.458c-.08-.48-.119-.96-.119-1.48 0-5.437 4.396-9.875 9.834-9.875 4.039 0 7.477 2.439 8.995 5.917"/>
|
||||
</svg>
|
After (image error) Size: 6.2 KiB |
|
@ -0,0 +1,97 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.403px" height="79.271px" viewBox="0 0 79.403 79.271" enable-background="new 0 0 79.403 79.271" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.721,0c30.504,0,49.576,33.023,34.303,59.45
|
||||
c-15.232,26.427-53.374,26.427-68.646,0C-9.894,33.023,9.176,0,39.721,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.721,0c30.504,0,49.576,33.023,34.303,59.45
|
||||
c-15.232,26.427-53.374,26.427-68.646,0C-9.894,33.023,9.176,0,39.721,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.681,68.286c-22.069,0-35.862-23.868-24.828-42.979
|
||||
c11.035-19.11,38.662-19.15,49.696,0C75.583,44.418,61.79,68.286,39.681,68.286z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.681,68.286
|
||||
c-22.069,0-35.862-23.868-24.828-42.979c11.035-19.11,38.662-19.15,49.696,0C75.583,44.418,61.79,68.286,39.681,68.286z"/>
|
||||
<path d="M54.034,45.457c-0.32,1.72,1.398,3.799,3.479,3.799c1.959,0,3.518-1.76,3.518-3.719c0-0.08,0,0.08,0,0h4.158v-8.195
|
||||
c-0.279-0.32-0.76-0.36-1.16-0.4c-0.039-0.359-0.479-0.52-0.639-0.839c-0.52-0.2-0.439,0.2-1.439-0.44c-0.36,0-0.721,0-1.039-0.16
|
||||
c-0.439-0.199-0.881-0.959-1.439-0.799c-0.201-0.12-0.4-0.319-0.64-0.319c-0.16,0.079,0.08,0.04-0.521,0.279
|
||||
c-0.08,0.04-0.24,0.04-0.319,0.12c-0.841-0.56-1.159-0.52-2.039-0.2c-0.08-0.08-0.36-0.04-0.4-0.199
|
||||
c-0.599-0.24-1.159-0.16-1.759,0.119c-0.641-0.119-1.119-0.52-1.839-0.239c-0.12,0.12-0.36,0.12-0.479,0.239
|
||||
c-0.08,0-0.121,0-0.201,0c-0.039-0.04-0.08-0.079-0.119-0.119c-0.279,0-0.52,0-0.799,0c-0.08,0.04-0.08,0.04-0.121,0.119
|
||||
c-0.119,0.04-0.239-0.04-0.359-0.04c-0.561-0.119-1.199-0.239-1.52-0.079c-0.279,0.159-1.359,0.438-1.679,0.679
|
||||
c-0.159,0.16-0.52,0.479-0.6,0.479c-1.08,0.88-2.8,1.439-4.198,1.08c-0.04-0.04,0.439-0.359,0.4-0.399
|
||||
c0.24-0.92-0.12-1.64-0.08-2.68c0-0.479-0.12-0.919-0.561-1.238c-0.199-0.16-0.16-0.32-0.399-0.4c-0.08,0,0.159-0.52,0.159-0.439
|
||||
c0,0.079,0,0.039,0,0c0.24-0.44-0.08-0.48-0.039-0.76c0.08-0.04,0.119-0.399,0.16-0.399c0.039-0.08-0.08-0.24,0-0.28
|
||||
c-0.28-0.04-0.879-0.2-1.279-0.04c-0.04,0.08,0.04-0.08,0,0c-0.08,0.16-0.24,0.2-0.44,0.24c-0.24-0.08-0.28,0.16-0.32,0.2
|
||||
c0.8,0.239,0.44-0.04,0.52,0.239c0.04,0.08,0,0.119,0,0.199c-0.12,0.08-0.2,0.24-0.32,0.32c0.08,0.04,0.2,0.04,0.28,0.08
|
||||
c-0.16,0.04,0,0.359-0.08,0.439c0.12,0.16,0.24,0.04,0.44,0.08c0.08,0.16,0.321,0.44,0.04,0.641c-0.36,0.239-0.76,1.879-1.28,2.198
|
||||
c-0.679,0.399-0.359,0.08-0.839,0.56c-0.48-0.08-0.36-0.2-0.6-0.12c-0.12,0.16-0.24,0.24-0.2,0.439c0.24,0.24,0.24,0.24,0.96,0.12
|
||||
c0.16,0.2,0.479,0.32,0.719,0.16c0.08,0.28,0.16,0.92-0.319,0.88c-1.16,0.159-1.8,1.56-2.839,3.158c0.4,0.24,0.08,0.36-0.16,0.36
|
||||
c-0.32,0-0.36-0.36-0.6-0.44c-0.16,0-0.36,0.12-0.479,0.24l0.479,0.52v2.559h2.719v0.56h-2.519l-0.919-0.24
|
||||
c-0.16-2.638-0.36-3.197-2.039-4.317c-0.36-0.239-2.679-1.079-6.637-0.279c-2.519,0.52-5.677-0.52-6.277-2.438
|
||||
c-0.2-0.36-0.68-0.96-1.119-1.12c-0.44,0-0.72-0.24-1.16-0.32c-0.08-0.279-0.24-0.199-0.36-0.479c-0.08,0-0.359-0.44-0.439-0.4
|
||||
c0.08,0.4,0.04,0.959-0.12,1.319c-0.08,0.079-0.2,0.159-0.24,0.319c-0.24,0-0.36,0.44-0.52,0.561c0.4,1.318-1.559,2.678-1.439,3.397
|
||||
c0.12,0.08,0.08,0.32,0.2,0.4c-0.04,0.04-0.04-0.04,0,0c0.16,0.12,0.24-0.08,0.559,0.439c0.12-0.04,0.2-0.04,0.32-0.079
|
||||
c0.04-0.28,0.28-0.4,0.56-0.561c0.28-0.2,0.64-0.32,0.8-0.6c0.239-0.399,0.519-0.879,0.919-0.959c0.28,0.16,0.6,0.599,0.72,0.999
|
||||
c0.479,0.479,0.44,2.238,0.919,2.879c0.36,0.439,0.32,1.238,1.08,1.238l-0.96,2.76l0.12,2.039c0,0.08,0.04,0.12,0.04,0.159
|
||||
c-0.12,0.04-0.16,0.2-0.28,0.2c-0.08,0.12,0,0.28-0.04,0.399h0.76v-0.359l0.36-0.16l-0.36-0.359l-0.04-0.96l1.479-2.318
|
||||
c0.44,1.159,2.359,3.078,3.598,3.678l0.72,0.04l-0.28-0.84l-0.48,0.04c-0.119,0-0.239-0.04-0.359-0.08
|
||||
c-0.84-0.839-1.8-2.639-1.28-3.918c1.719,0.72,5.677-0.6,5.797-0.36c0.24,0.44,0.44,1.88,0.44,2.279c0,0.68-0.6,3.039-0.799,2.759
|
||||
c-0.16,0.2-0.68,0.4-0.48,0.72h0.839l0.32-0.479h-0.2l1.839-3.878l1.44,1.399l0.519,2.398l0.36,0.56l0.52-0.72
|
||||
c-0.16-0.119-0.28-0.279-0.4-0.479c-0.36-0.88-0.28-1.639-0.28-2.359c0-0.799-0.519-1.119-0.719-1.959l1.159,0.24l0.32,1.959h0.76
|
||||
l-0.12-1.639l0.839,0.319h2.639c-1.16,0.24-2.079,1.159-2.079,2.399c0,1.359,1.119,2.478,2.519,2.478
|
||||
c1.359,0,2.478-1.118,2.478-2.478c0-1.12-0.719-2.079-1.719-2.399h2.159v-0.84h-2.239v-0.56h2.799v2.398H54.034z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M54.034,45.457
|
||||
c-0.32,1.72,1.398,3.799,3.479,3.799c1.959,0,3.518-1.76,3.518-3.719c0-0.08,0,0.08,0,0h4.158v-8.195
|
||||
c-0.279-0.32-0.76-0.36-1.16-0.4c-0.039-0.359-0.479-0.52-0.639-0.839c-0.52-0.2-0.439,0.2-1.439-0.44c-0.36,0-0.721,0-1.039-0.16
|
||||
c-0.439-0.199-0.881-0.959-1.439-0.799c-0.201-0.12-0.4-0.319-0.64-0.319c-0.16,0.079,0.08,0.04-0.521,0.279
|
||||
c-0.08,0.04-0.24,0.04-0.319,0.12c-0.841-0.56-1.159-0.52-2.039-0.2c-0.08-0.08-0.36-0.04-0.4-0.199
|
||||
c-0.599-0.24-1.159-0.16-1.759,0.119c-0.641-0.119-1.119-0.52-1.839-0.239c-0.12,0.12-0.36,0.12-0.479,0.239
|
||||
c-0.08,0-0.121,0-0.201,0c-0.039-0.04-0.08-0.079-0.119-0.119c-0.279,0-0.52,0-0.799,0c-0.08,0.04-0.08,0.04-0.121,0.119
|
||||
c-0.119,0.04-0.239-0.04-0.359-0.04c-0.561-0.119-1.199-0.239-1.52-0.079c-0.279,0.159-1.359,0.438-1.679,0.679
|
||||
c-0.159,0.16-0.52,0.479-0.6,0.479c-1.08,0.88-2.8,1.439-4.198,1.08c-0.04-0.04,0.439-0.359,0.4-0.399
|
||||
c0.24-0.92-0.12-1.64-0.08-2.68c0-0.479-0.12-0.919-0.561-1.238c-0.199-0.16-0.16-0.32-0.399-0.4c-0.08,0,0.159-0.52,0.159-0.439
|
||||
c0,0.079,0,0.039,0,0c0.24-0.44-0.08-0.48-0.039-0.76c0.08-0.04,0.119-0.399,0.16-0.399c0.039-0.08-0.08-0.24,0-0.28
|
||||
c-0.28-0.04-0.879-0.2-1.279-0.04c-0.04,0.08,0.04-0.08,0,0c-0.08,0.16-0.24,0.2-0.44,0.24c-0.24-0.08-0.28,0.16-0.32,0.2
|
||||
c0.8,0.239,0.44-0.04,0.52,0.239c0.04,0.08,0,0.119,0,0.199c-0.12,0.08-0.2,0.24-0.32,0.32c0.08,0.04,0.2,0.04,0.28,0.08
|
||||
c-0.16,0.04,0,0.359-0.08,0.439c0.12,0.16,0.24,0.04,0.44,0.08c0.08,0.16,0.321,0.44,0.04,0.641c-0.36,0.239-0.76,1.879-1.28,2.198
|
||||
c-0.679,0.399-0.359,0.08-0.839,0.56c-0.48-0.08-0.36-0.2-0.6-0.12c-0.12,0.16-0.24,0.24-0.2,0.439c0.24,0.24,0.24,0.24,0.96,0.12
|
||||
c0.16,0.2,0.479,0.32,0.719,0.16c0.08,0.28,0.16,0.92-0.319,0.88c-1.16,0.159-1.8,1.56-2.839,3.158c0.4,0.24,0.08,0.36-0.16,0.36
|
||||
c-0.32,0-0.36-0.36-0.6-0.44c-0.16,0-0.36,0.12-0.479,0.24l0.479,0.52v2.559h2.719v0.56h-2.519l-0.919-0.24
|
||||
c-0.16-2.638-0.36-3.197-2.039-4.317c-0.36-0.239-2.679-1.079-6.637-0.279c-2.519,0.52-5.677-0.52-6.277-2.438
|
||||
c-0.2-0.36-0.68-0.96-1.119-1.12c-0.44,0-0.72-0.24-1.16-0.32c-0.08-0.279-0.24-0.199-0.36-0.479c-0.08,0-0.359-0.44-0.439-0.4
|
||||
c0.08,0.4,0.04,0.959-0.12,1.319c-0.08,0.079-0.2,0.159-0.24,0.319c-0.24,0-0.36,0.44-0.52,0.561c0.4,1.318-1.559,2.678-1.439,3.397
|
||||
c0.12,0.08,0.08,0.32,0.2,0.4c-0.04,0.04-0.04-0.04,0,0c0.16,0.12,0.24-0.08,0.559,0.439c0.12-0.04,0.2-0.04,0.32-0.079
|
||||
c0.04-0.28,0.28-0.4,0.56-0.561c0.28-0.2,0.64-0.32,0.8-0.6c0.239-0.399,0.519-0.879,0.919-0.959c0.28,0.16,0.6,0.599,0.72,0.999
|
||||
c0.479,0.479,0.44,2.238,0.919,2.879c0.36,0.439,0.32,1.238,1.08,1.238l-0.96,2.76l0.12,2.039c0,0.08,0.04,0.12,0.04,0.159
|
||||
c-0.12,0.04-0.16,0.2-0.28,0.2c-0.08,0.12,0,0.28-0.04,0.399h0.76v-0.359l0.36-0.16l-0.36-0.359l-0.04-0.96l1.479-2.318
|
||||
c0.44,1.159,2.359,3.078,3.598,3.678l0.72,0.04l-0.28-0.84l-0.48,0.04c-0.119,0-0.239-0.04-0.359-0.08
|
||||
c-0.84-0.839-1.8-2.639-1.28-3.918c1.719,0.72,5.677-0.6,5.797-0.36c0.24,0.44,0.44,1.88,0.44,2.279c0,0.68-0.6,3.039-0.799,2.759
|
||||
c-0.16,0.2-0.68,0.4-0.48,0.72h0.839l0.32-0.479h-0.2l1.839-3.878l1.44,1.399l0.519,2.398l0.36,0.56l0.52-0.72
|
||||
c-0.16-0.119-0.28-0.279-0.4-0.479c-0.36-0.88-0.28-1.639-0.28-2.359c0-0.799-0.519-1.119-0.719-1.959l1.159,0.24l0.32,1.959h0.76
|
||||
l-0.12-1.639l0.839,0.319h2.639c-1.16,0.24-2.079,1.159-2.079,2.399c0,1.359,1.119,2.478,2.519,2.478
|
||||
c1.359,0,2.478-1.118,2.478-2.478c0-1.12-0.719-2.079-1.719-2.399h2.159v-0.84h-2.239v-0.56h2.799v2.398H54.034z"/>
|
||||
<path fill="#FFFFFF" d="M32.525,40.021c0.24-0.24,0.519,0.12,0.639,0.12c0.48,0.679,0.56,1.238,0.48,3.078l-1.119-0.28
|
||||
C32.165,42.22,32.285,40.899,32.525,40.021z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M32.525,40.021
|
||||
c0.24-0.24,0.519,0.12,0.639,0.12c0.48,0.679,0.56,1.238,0.48,3.078l-1.119-0.28C32.165,42.22,32.285,40.899,32.525,40.021z"/>
|
||||
<path fill="#FFFFFF" d="M35.923,40.62l-0.4,0.08v1.439h3.598V38.98c-0.16,0-0.279,0-0.439,0c-0.76,0.32-0.96,0.96-1.4,1.52
|
||||
l-0.559-0.119l-0.56,0.719l-0.24-0.2V40.62z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M35.923,40.62l-0.4,0.08v1.439h3.598V38.98
|
||||
c-0.16,0-0.279,0-0.439,0c-0.76,0.32-0.96,0.96-1.4,1.52l-0.559-0.119l-0.56,0.719l-0.24-0.2V40.62z"/>
|
||||
<path d="M38.122,35.582c-0.28,0.44-0.12,0.601-0.12,0.88c0.12,0.2,0.36,0.359,0.56,0.2c0.08-0.24,0.2-0.439,0.04-0.68
|
||||
C38.482,35.862,38.282,35.662,38.122,35.582z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M38.122,35.582c-0.28,0.44-0.12,0.601-0.12,0.88
|
||||
c0.12,0.2,0.36,0.359,0.56,0.2c0.08-0.24,0.2-0.439,0.04-0.68C38.482,35.862,38.282,35.662,38.122,35.582z"/>
|
||||
<path fill="#FFFFFF" d="M38.162,35.902c0,0.28,0,0.36,0,0.52c0,0.12,0.2,0.2,0.36,0.12c0-0.159,0-0.239,0-0.399
|
||||
C38.362,36.063,38.362,35.942,38.162,35.902z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M38.162,35.902c0,0.28,0,0.36,0,0.52
|
||||
c0,0.12,0.2,0.2,0.36,0.12c0-0.159,0-0.239,0-0.399C38.362,36.063,38.362,35.942,38.162,35.902z"/>
|
||||
<path d="M18.292,39.301l0.2,0.279c-1.12,0.32-2.199,0.4-3.039,0.48l0.4-0.24C16.692,39.62,17.492,39.62,18.292,39.301z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M18.292,39.301l0.2,0.279
|
||||
c-1.12,0.32-2.199,0.4-3.039,0.48l0.4-0.24C16.692,39.62,17.492,39.62,18.292,39.301z"/>
|
||||
<path d="M37.722,35.022c-4.798,1.52-10.595,3.719-15.352,3.519c0.04-0.159,0.24,0.16,0.28,0.16c0.119,0.04,0.359,0.12,0.599,0.08
|
||||
c0.2-0.04,1.28-0.12,1.32-0.08c0.919,0.239,8.156-1.479,12.873-3.199C37.442,35.343,37.722,35.183,37.722,35.022z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M37.722,35.022
|
||||
c-4.798,1.52-10.595,3.719-15.352,3.519c0.04-0.159,0.24,0.16,0.28,0.16c0.119,0.04,0.359,0.12,0.599,0.08
|
||||
c0.2-0.04,1.28-0.12,1.32-0.08c0.919,0.239,8.156-1.479,12.873-3.199C37.442,35.343,37.722,35.183,37.722,35.022z"/>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.403px" height="79.271px" viewBox="0 0 79.403 79.271" enable-background="new 0 0 79.403 79.271" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.721,0c30.504,0,49.576,33.023,34.303,59.45
|
||||
c-15.232,26.427-53.374,26.427-68.646,0C-9.894,33.023,9.176,0,39.721,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.721,0c30.504,0,49.576,33.023,34.303,59.45
|
||||
c-15.232,26.427-53.374,26.427-68.646,0C-9.894,33.023,9.176,0,39.721,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.681,68.286c-22.069,0-35.862-23.868-24.828-42.979
|
||||
c11.035-19.11,38.662-19.15,49.696,0C75.583,44.418,61.79,68.286,39.681,68.286z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.681,68.286
|
||||
c-22.069,0-35.862-23.868-24.828-42.979c11.035-19.11,38.662-19.15,49.696,0C75.583,44.418,61.79,68.286,39.681,68.286z"/>
|
||||
<path d="M19.451,33.383c0.16,0,1.239,0.801,1.399,0.841c5.878,3.998,1.999,6.597,6.157,10.435l-4.517,4.797
|
||||
c0,0.04-0.08,0.08-0.04,0.16c-0.36,0.521-0.44,1.16-0.36,1.799c0.08,0.04,0.919,2.879,1.479,3.56c-0.04,0.158,0.04,0.358,0.12,0.479
|
||||
c0,0.04,0.04,0.12,0.08,0.16c-0.24,0.36-0.36,0.8-0.32,1.2c0.2,0.2,0.44,0.398,0.64,0.679l1.039-0.559l-0.12-0.801
|
||||
c-0.08-0.479-0.319-0.52-0.559-0.88c0-0.08-0.4-0.759-0.4-0.839c-0.2-0.2-0.28-1.24-0.4-1.519c-0.44-1.08,0.04-0.4-0.44-1.4
|
||||
c0.12-0.16,0.12-0.719,0.36-0.639c2.079-1.48,4.158-2.919,6.277-4.398c0.68,1.079,1.959,2.519,2.399,4.198
|
||||
c0.36,1.479,3.358,4.877,3.798,6.037c0.2,0.479-0.36,1.199-0.36,1.759h1.479l-0.12-1.08l0.36-0.12l-0.799-1.159
|
||||
c-0.68-1.039-0.72-0.84-1.32-1.959c-0.36-0.72-0.639-1.438-0.759-2.118c-0.04-0.12-0.8-3.998-0.44-5.837l0.959-0.681
|
||||
c1.48,0,2.719,0.12,4.238-0.12c1.08-0.16,3-0.319,3.798-0.879c1.839-0.56,2.439-1.359,2.959-1.52c0.08,0-0.04,0.04,0,0
|
||||
c0,0,0.04,0.92,1.398,3.119c0.561,1.238,1.959,2.519,0.881,3.798c-0.44,0.56-2.439,2.759-2.64,3.237c0,0.16-0.12,0.36-0.239,0.48
|
||||
c0,0.08-0.08,0.12-0.041,0.24c-0.199,0.12-0.319,0.319-0.439,0.52c0.04,0.44-0.318,0.64-0.04,1.079c0.28,0.16,0.2,0.68,0.28,0.92
|
||||
l1.039-0.92l-0.359-0.36l0.359-0.198l-0.199-0.48c-0.08-0.16,0.08-0.359,0.12-0.52c0.52-0.84,1.198-1.399,1.879-2.039
|
||||
c1.039-0.959,2.039-1.799,2.918-2.839c0.399-0.72,0.2-1.6,0.28-2.438c0.08,0.12,0.08,0.2,0.08,0.359
|
||||
c0.119,0.12,0.24,0.319,0.24,0.479c0.719,0.8,1.719,1.72,2.719,2.279c0.56,0.32,0.799,0.36,1.238,0.68c0.521,0.08,1.16,1.039,1,1.64
|
||||
l0.24,4.478c0.08,0.12,0.08,0.28,0.08,0.44c-0.561,0.318-0.68,0.919-0.6,1.599h1.358l-0.079-1.24l0.239-0.08
|
||||
c0.16-0.04-0.36-2.478-0.16-3.518c0.24-3.038,0.761-1.839,0.28-3.558c-0.32-1.08-0.999-0.841-1.52-1.8
|
||||
c-0.359,0-1.959-2.799-2.358-4.038c-0.32-0.96-0.4-3.878-0.12-4.638c0.4-1.119,0.12-2.639-0.359-3.438c0.159-0.12,0.439,0,0.6-0.04
|
||||
c0.119,0.08,0.199,0.159,0.359,0.159c1.959,1.359,1.439,3.479,2.279,5.397c0.04,0.04,0.08,0.08,0.12,0.12
|
||||
c-0.04,0.08,0.04,0.12,0.04,0.2c0.158,0.64,0.759,1.039,1.398,0.919c0.521-0.359,1.119-0.759,1.64-0.64l-2.958-5.677
|
||||
c-0.52-0.76-1.08-1-1.44-1.32c-0.879-0.319-1.319-0.239-2.198-0.279c-1.959-0.12-2.08-1.56-4.039-1.64
|
||||
c-3.357-0.119-3.397-0.119-5.196,0c-0.28,0-1.359,0.36-1.24,0.16l0.04-0.279l-1.238,0.039l0.479-1.118l-0.36-0.28l-1.479,1.479
|
||||
c0-0.839-0.16-1.118-0.36-1.679c-0.4-0.479-0.48-0.88-0.8-1.239c-0.2-1.279-0.599-5.438-3.798-6.236l-0.04-0.48l-0.36,0.12v-0.6
|
||||
l0.36,0.04l-0.24-0.999l0.52-1.12c-0.959-0.08-2.799-1.159-3.358,0c-0.4,0-0.6,0.12-0.92,0.16l0.84,0.319h0.08l0.04,0.721
|
||||
l-0.36,0.919h0.36v0.68c0,0.2-0.04,0.439,0.2,0.439c0.319-0.159,0.679,0,1.039-0.039l0.44,0.239c0.28,1.199-0.72,0.64,0.28,2.998
|
||||
c0,0.44-0.44,1.159-0.84,1.64c-0.6,0.84-0.679,0.8-2.119,2.039c-0.719,0.079-1.039,0.399-1.119,1.119c0.2,0.2,0.32,0.399,0.6,0.52
|
||||
c0.159,0.04,0.279-0.04,0.439-0.04c0.4-0.16,0.24-0.799,0.32-0.879c0.04-0.04,0.12-0.08,0.16-0.08c0.16,0.2,0.32,0.36,0.48,0.52
|
||||
c0.6-0.04,0.959-0.68,2.199-1.399c0.04-0.439,0.799-0.399,0.759-0.839c0-0.16,0.08,0.239,0.2,0.319
|
||||
c-0.08,0.839,0.32,1.56-0.24,2.358l-1.039,1.479h-1.319c-0.76,0-1.72-0.119-1.959-0.479c-1.64-0.96-2.439-1.279-3.799-2.239
|
||||
c-3.198-2.279-6.556-2.959-7.596-2.959c-0.44,0-0.879-0.358-1.159-0.599c0-0.08,0-0.12,0-0.2c-0.16-0.4-0.64-0.68-0.6-1.16
|
||||
l-0.28,0.92l-0.719-0.88c-0.04,0.04-0.08,0.12-0.08,0.2c0.239,0.479,0,1.08,0.08,1.6c-0.08,0.04-0.08,0.119-0.12,0.159
|
||||
c0,0.32-0.16,0.64-0.32,0.88c0.12,0.8-0.8,1.199-0.52,2.039c-0.12,1-0.4,1.479-0.76,2.399c-0.279,0.68-0.319,1.238-0.24,2.199
|
||||
c0.04,0.399,0.52,0.679,0.96,0.759c0.12,0,0.16-0.16,0.28-0.2c0.08,0.12,0.12,0.24,0.24,0.36c0.32,0,0.36,0.119,0.599-0.12
|
||||
c-0.04-0.279,0.28-0.479,0.28-0.76C18.612,34.543,18.612,34.703,19.451,33.383z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M19.451,33.383c0.16,0,1.239,0.801,1.399,0.841
|
||||
c5.878,3.998,1.999,6.597,6.157,10.435l-4.517,4.797c0,0.04-0.08,0.08-0.04,0.16c-0.36,0.521-0.44,1.16-0.36,1.799
|
||||
c0.08,0.04,0.919,2.879,1.479,3.56c-0.04,0.158,0.04,0.358,0.12,0.479c0,0.04,0.04,0.12,0.08,0.16c-0.24,0.36-0.36,0.8-0.32,1.2
|
||||
c0.2,0.2,0.44,0.398,0.64,0.679l1.039-0.559l-0.12-0.801c-0.08-0.479-0.319-0.52-0.559-0.88c0-0.08-0.4-0.759-0.4-0.839
|
||||
c-0.2-0.2-0.28-1.24-0.4-1.519c-0.44-1.08,0.04-0.4-0.44-1.4c0.12-0.16,0.12-0.719,0.36-0.639c2.079-1.48,4.158-2.919,6.277-4.398
|
||||
c0.68,1.079,1.959,2.519,2.399,4.198c0.36,1.479,3.358,4.877,3.798,6.037c0.2,0.479-0.36,1.199-0.36,1.759h1.479l-0.12-1.08
|
||||
l0.36-0.12l-0.799-1.159c-0.68-1.039-0.72-0.84-1.32-1.959c-0.36-0.72-0.639-1.438-0.759-2.118c-0.04-0.12-0.8-3.998-0.44-5.837
|
||||
l0.959-0.681c1.48,0,2.719,0.12,4.238-0.12c1.08-0.16,3-0.319,3.798-0.879c1.839-0.56,2.439-1.359,2.959-1.52c0.08,0-0.04,0.04,0,0
|
||||
c0,0,0.04,0.92,1.398,3.119c0.561,1.238,1.959,2.519,0.881,3.798c-0.44,0.56-2.439,2.759-2.64,3.237c0,0.16-0.12,0.36-0.239,0.48
|
||||
c0,0.08-0.08,0.12-0.041,0.24c-0.199,0.12-0.319,0.319-0.439,0.52c0.04,0.44-0.318,0.64-0.04,1.079c0.28,0.16,0.2,0.68,0.28,0.92
|
||||
l1.039-0.92l-0.359-0.36l0.359-0.198l-0.199-0.48c-0.08-0.16,0.08-0.359,0.12-0.52c0.52-0.84,1.198-1.399,1.879-2.039
|
||||
c1.039-0.959,2.039-1.799,2.918-2.839c0.399-0.72,0.2-1.6,0.28-2.438c0.08,0.12,0.08,0.2,0.08,0.359
|
||||
c0.119,0.12,0.24,0.319,0.24,0.479c0.719,0.8,1.719,1.72,2.719,2.279c0.56,0.32,0.799,0.36,1.238,0.68c0.521,0.08,1.16,1.039,1,1.64
|
||||
l0.24,4.478c0.08,0.12,0.08,0.28,0.08,0.44c-0.561,0.318-0.68,0.919-0.6,1.599h1.358l-0.079-1.24l0.239-0.08
|
||||
c0.16-0.04-0.36-2.478-0.16-3.518c0.24-3.038,0.761-1.839,0.28-3.558c-0.32-1.08-0.999-0.841-1.52-1.8
|
||||
c-0.359,0-1.959-2.799-2.358-4.038c-0.32-0.96-0.4-3.878-0.12-4.638c0.4-1.119,0.12-2.639-0.359-3.438c0.159-0.12,0.439,0,0.6-0.04
|
||||
c0.119,0.08,0.199,0.159,0.359,0.159c1.959,1.359,1.439,3.479,2.279,5.397c0.04,0.04,0.08,0.08,0.12,0.12
|
||||
c-0.04,0.08,0.04,0.12,0.04,0.2c0.158,0.64,0.759,1.039,1.398,0.919c0.521-0.359,1.119-0.759,1.64-0.64l-2.958-5.677
|
||||
c-0.52-0.76-1.08-1-1.44-1.32c-0.879-0.319-1.319-0.239-2.198-0.279c-1.959-0.12-2.08-1.56-4.039-1.64
|
||||
c-3.357-0.119-3.397-0.119-5.196,0c-0.28,0-1.359,0.36-1.24,0.16l0.04-0.279l-1.238,0.039l0.479-1.118l-0.36-0.28l-1.479,1.479
|
||||
c0-0.839-0.16-1.118-0.36-1.679c-0.4-0.479-0.48-0.88-0.8-1.239c-0.2-1.279-0.599-5.438-3.798-6.236l-0.04-0.48l-0.36,0.12v-0.6
|
||||
l0.36,0.04l-0.24-0.999l0.52-1.12c-0.959-0.08-2.799-1.159-3.358,0c-0.4,0-0.6,0.12-0.92,0.16l0.84,0.319h0.08l0.04,0.721
|
||||
l-0.36,0.919h0.36v0.68c0,0.2-0.04,0.439,0.2,0.439c0.319-0.159,0.679,0,1.039-0.039l0.44,0.239c0.28,1.199-0.72,0.64,0.28,2.998
|
||||
c0,0.44-0.44,1.159-0.84,1.64c-0.6,0.84-0.679,0.8-2.119,2.039c-0.719,0.079-1.039,0.399-1.119,1.119c0.2,0.2,0.32,0.399,0.6,0.52
|
||||
c0.159,0.04,0.279-0.04,0.439-0.04c0.4-0.16,0.24-0.799,0.32-0.879c0.04-0.04,0.12-0.08,0.16-0.08c0.16,0.2,0.32,0.36,0.48,0.52
|
||||
c0.6-0.04,0.959-0.68,2.199-1.399c0.04-0.439,0.799-0.399,0.759-0.839c0-0.16,0.08,0.239,0.2,0.319
|
||||
c-0.08,0.839,0.32,1.56-0.24,2.358l-1.039,1.479h-1.319c-0.76,0-1.72-0.119-1.959-0.479c-1.64-0.96-2.439-1.279-3.799-2.239
|
||||
c-3.198-2.279-6.556-2.959-7.596-2.959c-0.44,0-0.879-0.358-1.159-0.599c0-0.08,0-0.12,0-0.2c-0.16-0.4-0.64-0.68-0.6-1.16
|
||||
l-0.28,0.92l-0.719-0.88c-0.04,0.04-0.08,0.12-0.08,0.2c0.239,0.479,0,1.08,0.08,1.6c-0.08,0.04-0.08,0.119-0.12,0.159
|
||||
c0,0.32-0.16,0.64-0.32,0.88c0.12,0.8-0.8,1.199-0.52,2.039c-0.12,1-0.4,1.479-0.76,2.399c-0.279,0.68-0.319,1.238-0.24,2.199
|
||||
c0.04,0.399,0.52,0.679,0.96,0.759c0.12,0,0.16-0.16,0.28-0.2c0.08,0.12,0.12,0.24,0.24,0.36c0.32,0,0.36,0.119,0.599-0.12
|
||||
c-0.04-0.279,0.28-0.479,0.28-0.76C18.612,34.543,18.612,34.703,19.451,33.383z"/>
|
||||
<path d="M31.445,32.624c0.56,0.479,1.28,1.799-0.24,1.56c-0.04,0-0.4-0.521-0.479-0.48c-0.24-0.24,0.04-0.479,0.04-0.72
|
||||
c0-0.12,0.159,0.12,0.199,0.24c-0.12,0.439,0.32,0.8,0.76,0.72c0.04-0.08-0.08,0.04,0,0c0-0.12,0.28,0.04,0.08-0.48
|
||||
c-0.08-0.199-0.56-0.319-0.6-0.52L31.445,32.624z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M31.445,32.624
|
||||
c0.56,0.479,1.28,1.799-0.24,1.56c-0.04,0-0.4-0.521-0.479-0.48c-0.24-0.24,0.04-0.479,0.04-0.72c0-0.12,0.159,0.12,0.199,0.24
|
||||
c-0.12,0.439,0.32,0.8,0.76,0.72c0.04-0.08-0.08,0.04,0,0c0-0.12,0.28,0.04,0.08-0.48c-0.08-0.199-0.56-0.319-0.6-0.52
|
||||
L31.445,32.624z"/>
|
||||
<path d="M17.012,36.342l-0.04,0.48c1.24-0.4,3.479-0.76,5.078-1.56l-0.32-0.32C20.131,35.742,18.252,35.942,17.012,36.342z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M17.012,36.342l-0.04,0.48
|
||||
c1.24-0.4,3.479-0.76,5.078-1.56l-0.32-0.32C20.131,35.742,18.252,35.942,17.012,36.342z"/>
|
||||
<polygon points="30.166,32.464 30.406,32.783 29.006,32.983 28.607,32.704 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="30.166,32.464 30.406,32.783
|
||||
29.006,32.983 28.607,32.704 "/>
|
||||
</svg>
|
After (image error) Size: 9.8 KiB |
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.403px" height="79.271px" viewBox="0 0 79.403 79.271" enable-background="new 0 0 79.403 79.271" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.721,0c30.504,0,49.576,33.023,34.303,59.45
|
||||
c-15.232,26.427-53.374,26.427-68.646,0C-9.894,33.023,9.176,0,39.721,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.721,0c30.504,0,49.576,33.023,34.303,59.45
|
||||
c-15.232,26.427-53.374,26.427-68.646,0C-9.894,33.023,9.176,0,39.721,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.681,68.286c-22.069,0-35.862-23.868-24.828-42.979
|
||||
c11.035-19.11,38.662-19.15,49.696,0C75.583,44.418,61.79,68.286,39.681,68.286z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.681,68.286
|
||||
c-22.069,0-35.862-23.868-24.828-42.979c11.035-19.11,38.662-19.15,49.696,0C75.583,44.418,61.79,68.286,39.681,68.286z"/>
|
||||
<path d="M35.683,41.539l0.96-0.719c0.239,0.08,0.559,0.199,0.799,0.119c0.36-0.039,1.36-0.159,2.039-0.399l13.954-4.918
|
||||
c-0.08,0.4,0.799,0.68,0.959,0.32c-0.039,0.2,0.24,0.28,0.16,0.479c0.08,0.08-0.08-0.04,0,0l1.76-0.36
|
||||
c-0.041,0.48,0.16,1.559,0.6,1.999c0.279,0.28,0.158,0.56,0.158,0.919c-0.078,0.04-0.078,0.12-0.118,0.16l-1.72,3.639
|
||||
c-0.2,0.679-0.16,1.479,0,2.158l0.92,3.519c0.16,0.12,0.08,0.679-0.2,0.64c-0.44,0.08-0.88,0-1.239,0.359
|
||||
c-0.16,0.28-0.4,0.48-0.199,0.76c0.838,0,1.758-0.119,2.358-0.52l0.08,0.359l0.999-0.52v0.04l-0.08-0.56l-0.16-0.119
|
||||
c-0.12-0.12,0.52-0.12,0.48-0.28c-0.36-1.44-0.961-4.318-0.881-4.758c0.16-0.959,0.84-1.319,1.24-2.079l2.239,7.876
|
||||
c-0.44,0.12-0.84,0.319-1.2,0.6c0.08,0.12,0.04,0.24,0.12,0.36c0.479,0.08,1-0.04,1.399-0.16l1.039-0.32l0.041,0.2l0.76-0.479
|
||||
l-0.28-0.44l0.399-0.239l-2.358-7.597c0.24-3.958-0.44-3.158-0.2-4.118c0.4-1.519-0.08-1.839-0.439-3.278
|
||||
c-0.961-3.678-2.52-3.039-2.76-3.558c-0.279-0.64-0.318-0.2-0.519-0.32c-0.04-0.64-0.2-1.24-0.601-1.679
|
||||
c-0.399-0.08-0.84-0.04-1.238,0c-0.28,0.159-0.6,0.439-0.92,0.519c-0.12,0.24-0.16,0.52-0.08,0.76c0.08,0.08-0.12-0.04,0,0
|
||||
c0.04,0.44,0.48-0.2,0.32,1.599c0.359-0.24,0.64,0.2,0.68,0.52c0.158-0.2,0.359-0.28,0.599-0.32c0.08,0.24,0.08,0.44,0.08,0.68
|
||||
c0.08,0.08,0.2,0.16,0.28,0.24c-0.6,0.839-0.12,1.599,0.08,2.358c0.04,0.16-0.04-0.16,0,0c-1.039,0.28-1.6-0.359-2.239,0.12
|
||||
L40.481,39.7c-0.2,0.08-1.919,0.76-2.279,0.72c-0.36-0.04-0.24-0.08-0.4-0.12l0.28-0.2l-0.24-0.72l-1.039,0.32l-0.88-2.838
|
||||
c-0.2-0.6-0.76-0.92-1.559-0.72l-2.479,0.6c-0.24-0.84-0.84-0.92-1.479-0.76L13.214,40.82l1,4.517l4.038-0.239
|
||||
c0.2,2.959,2.718,5.357,5.797,5.357c1.639,0,3.198-0.72,4.238-1.919c0.559,0.2,1.199,0.28,1.839,0.28c3.158,0,5.757-2.6,5.757-5.758
|
||||
C35.883,42.539,35.803,42.019,35.683,41.539z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M35.683,41.539l0.96-0.719
|
||||
c0.239,0.08,0.559,0.199,0.799,0.119c0.36-0.039,1.36-0.159,2.039-0.399l13.954-4.918c-0.08,0.4,0.799,0.68,0.959,0.32
|
||||
c-0.039,0.2,0.24,0.28,0.16,0.479c0.08,0.08-0.08-0.04,0,0l1.76-0.36c-0.041,0.48,0.16,1.559,0.6,1.999
|
||||
c0.279,0.28,0.158,0.56,0.158,0.919c-0.078,0.04-0.078,0.12-0.118,0.16l-1.72,3.639c-0.2,0.679-0.16,1.479,0,2.158l0.92,3.519
|
||||
c0.16,0.12,0.08,0.679-0.2,0.64c-0.44,0.08-0.88,0-1.239,0.359c-0.16,0.28-0.4,0.48-0.199,0.76c0.838,0,1.758-0.119,2.358-0.52
|
||||
l0.08,0.359l0.999-0.52v0.04l-0.08-0.56l-0.16-0.119c-0.12-0.12,0.52-0.12,0.48-0.28c-0.36-1.44-0.961-4.318-0.881-4.758
|
||||
c0.16-0.959,0.84-1.319,1.24-2.079l2.239,7.876c-0.44,0.12-0.84,0.319-1.2,0.6c0.08,0.12,0.04,0.24,0.12,0.36
|
||||
c0.479,0.08,1-0.04,1.399-0.16l1.039-0.32l0.041,0.2l0.76-0.479l-0.28-0.44l0.399-0.239l-2.358-7.597
|
||||
c0.24-3.958-0.44-3.158-0.2-4.118c0.4-1.519-0.08-1.839-0.439-3.278c-0.961-3.678-2.52-3.039-2.76-3.558
|
||||
c-0.279-0.64-0.318-0.2-0.519-0.32c-0.04-0.64-0.2-1.24-0.601-1.679c-0.399-0.08-0.84-0.04-1.238,0
|
||||
c-0.28,0.159-0.6,0.439-0.92,0.519c-0.12,0.24-0.16,0.52-0.08,0.76c0.08,0.08-0.12-0.04,0,0c0.04,0.44,0.48-0.2,0.32,1.599
|
||||
c0.359-0.24,0.64,0.2,0.68,0.52c0.158-0.2,0.359-0.28,0.599-0.32c0.08,0.24,0.08,0.44,0.08,0.68c0.08,0.08,0.2,0.16,0.28,0.24
|
||||
c-0.6,0.839-0.12,1.599,0.08,2.358c0.04,0.16-0.04-0.16,0,0c-1.039,0.28-1.6-0.359-2.239,0.12L40.481,39.7
|
||||
c-0.2,0.08-1.919,0.76-2.279,0.72c-0.36-0.04-0.24-0.08-0.4-0.12l0.28-0.2l-0.24-0.72l-1.039,0.32l-0.88-2.838
|
||||
c-0.2-0.6-0.76-0.92-1.559-0.72l-2.479,0.6c-0.24-0.84-0.84-0.92-1.479-0.76L13.214,40.82l1,4.517l4.038-0.239
|
||||
c0.2,2.959,2.718,5.357,5.797,5.357c1.639,0,3.198-0.72,4.238-1.919c0.559,0.2,1.199,0.28,1.839,0.28c3.158,0,5.757-2.6,5.757-5.758
|
||||
C35.883,42.539,35.803,42.019,35.683,41.539z"/>
|
||||
<path fill="#FFFFFF" d="M24.609,49.096c-0.2,0.039-0.4,0.039-0.6,0.039c-0.6,0-1.12-0.119-1.599-0.279l0.959-2.318
|
||||
c0.28,0.08,0.56,0.12,0.8,0.12L24.609,49.096z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M24.609,49.096c-0.2,0.039-0.4,0.039-0.6,0.039
|
||||
c-0.6,0-1.12-0.119-1.599-0.279l0.959-2.318c0.28,0.08,0.56,0.12,0.8,0.12L24.609,49.096z"/>
|
||||
<path fill="#FFFFFF" d="M32.005,43.338l2.359-0.559c-0.04-0.4-0.12-0.8-0.24-1.16l-1.359,0.32l-0.8,0.48
|
||||
c0.04,0.2,0.08,0.36,0.08,0.559c0,0.04,0,0.12,0,0.16L32.005,43.338z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M32.005,43.338l2.359-0.559
|
||||
c-0.04-0.4-0.12-0.8-0.24-1.16l-1.359,0.32l-0.8,0.48c0.04,0.2,0.08,0.36,0.08,0.559c0,0.04,0,0.12,0,0.16L32.005,43.338z"/>
|
||||
<path fill="#FFFFFF" d="M33.804,45.457c0.44-0.679,0.56-1.359,0.56-2.238l-2.359,0.479c-0.08,0.16-0.12,0.319-0.24,0.479
|
||||
L33.804,45.457z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M33.804,45.457
|
||||
c0.44-0.679,0.56-1.359,0.56-2.238l-2.359,0.479c-0.08,0.16-0.12,0.319-0.24,0.479L33.804,45.457z"/>
|
||||
<path fill="#FFFFFF" d="M32.245,46.896l-1.16-2.198c0.16-0.08,0.28-0.2,0.4-0.32l1.959,1.439
|
||||
C33.124,46.217,32.725,46.617,32.245,46.896z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M32.245,46.896l-1.16-2.198
|
||||
c0.16-0.08,0.28-0.2,0.4-0.32l1.959,1.439C33.124,46.217,32.725,46.617,32.245,46.896z"/>
|
||||
<path fill="#FFFFFF" d="M30.246,45.018c0.24,0,0.32,0,0.559-0.08l1.12,2.119c-0.52,0.239-1.08,0.359-1.679,0.399V45.018z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M30.246,45.018c0.24,0,0.32,0,0.559-0.08
|
||||
l1.12,2.119c-0.52,0.239-1.08,0.359-1.679,0.399V45.018z"/>
|
||||
<path fill="#FFFFFF" d="M29.806,45.098v2.358c-0.24-0.04-0.4-0.08-0.68-0.12C29.526,46.697,29.726,45.896,29.806,45.098z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M29.806,45.098v2.358
|
||||
c-0.24-0.04-0.4-0.08-0.68-0.12C29.526,46.697,29.726,45.896,29.806,45.098z"/>
|
||||
<path fill="#FFFFFF" d="M27.247,46.377c0.16,0.2,0.36,0.32,0.56,0.48c0.2-0.4,0.36-0.801,0.44-1.2l-1.08,0.64L27.247,46.377z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M27.247,46.377c0.16,0.2,0.36,0.32,0.56,0.48
|
||||
c0.2-0.4,0.36-0.801,0.44-1.2l-1.08,0.64L27.247,46.377z"/>
|
||||
<path fill="#FFFFFF" d="M25.928,44.298c0.04,0.16,0.08,0.32,0.08,0.44c0.08,0.24,0.16,0.398,0.28,0.599l2.119-1.159
|
||||
c-0.12-0.16-0.2-0.359-0.24-0.6L25.928,44.298z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M25.928,44.298c0.04,0.16,0.08,0.32,0.08,0.44
|
||||
c0.08,0.24,0.16,0.398,0.28,0.599l2.119-1.159c-0.12-0.16-0.2-0.359-0.24-0.6L25.928,44.298z"/>
|
||||
<path fill="#FFFFFF" d="M20.171,46.777l1.959-1.48c-0.08-0.199-0.12-0.398-0.12-0.599l-2.359,0.28
|
||||
C19.651,45.617,19.891,46.217,20.171,46.777z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M20.171,46.777l1.959-1.48
|
||||
c-0.08-0.199-0.12-0.398-0.12-0.599l-2.359,0.28C19.651,45.617,19.891,46.217,20.171,46.777z"/>
|
||||
<path fill="#FFFFFF" d="M22.889,46.217c-0.239-0.16-0.399-0.32-0.559-0.52l-1.919,1.559c0.439,0.521,0.879,0.92,1.439,1.24
|
||||
L22.889,46.217z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M22.889,46.217
|
||||
c-0.239-0.16-0.399-0.32-0.559-0.52l-1.919,1.559c0.439,0.521,0.879,0.92,1.439,1.24L22.889,46.217z"/>
|
||||
<path fill="#FFFFFF" d="M25.208,46.137c-0.2,0.16-0.28,0.32-0.519,0.44l0.519,2.278c0.64-0.159,1.24-0.52,1.719-0.959
|
||||
C26.208,47.456,25.648,46.857,25.208,46.137z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M25.208,46.137c-0.2,0.16-0.28,0.32-0.519,0.44
|
||||
l0.519,2.278c0.64-0.159,1.24-0.52,1.719-0.959C26.208,47.456,25.648,46.857,25.208,46.137z"/>
|
||||
</svg>
|
After (image error) Size: 8.6 KiB |
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.387px" height="79.292px" viewBox="0 0 79.387 79.292" enable-background="new 0 0 79.387 79.292" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.687,79.292C9.176,79.292-9.885,46.25,5.37,19.825
|
||||
c15.256-26.425,53.395-26.441,68.648,0C89.274,46.25,70.196,79.292,39.687,79.292z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.687,79.292
|
||||
C9.176,79.292-9.885,46.25,5.37,19.825c15.256-26.425,53.395-26.441,68.648,0C89.274,46.25,70.196,79.292,39.687,79.292z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.687,67.936c-21.796,0-35.404-23.582-24.514-42.457
|
||||
c10.89-18.874,38.139-18.874,49.028,0C75.091,44.354,61.467,67.936,39.687,67.936z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M39.687,67.936
|
||||
c-21.796,0-35.404-23.582-24.514-42.457c10.89-18.874,38.139-18.874,49.028,0C75.091,44.354,61.467,67.936,39.687,67.936z"/>
|
||||
<path d="M43.026,41.325c0.047-0.357-0.232-0.87,0.265-0.917c0.28-0.016,0.171-0.217,0.217-0.403
|
||||
c0.017-0.171-0.155-0.296,0.202-0.296c0.451,0-0.046-3.387,0.156-4.815c0.062-1.197-0.016-2.237-0.202-3.403
|
||||
c-0.171-1.211,0.155-1.91-0.793-3.433l-1.367-2.408c-0.124-0.217-0.03-0.388-0.45-0.854c-0.248-0.311-0.279-0.311-0.186-0.839
|
||||
c-0.047-0.606,0.388-0.637,0.512-1.771c-0.078-0.621-0.637-1.647-1.553-1.833c-0.964-0.171-1.756,0-2.362,0.513
|
||||
c-0.326,0.885-0.171,1.118-0.202,1.522c-0.046,0.373-0.419,0.777-0.466,1.196c-0.015,0.187,0.435,0.373,0.544,0.606
|
||||
c0.155,0.388-0.078,0.932,0.016,1.258c0.015,0.094,0.186,0.094,0.202,0.202c0.636-0.202,0.932-0.062,1.211,0.14
|
||||
c-0.45,0.653-0.901,1.057-1.211,1.958c-0.513,1.537-0.637,2.299-0.793,4.241c-0.466,0.637-1.165,1.196-1.569,1.522
|
||||
c-0.14,0.078-0.559,0.357-1.056,0.808c-0.404,0.404-0.839,0.963-1.274,1.351c-0.28,0.249-0.637,0.156-0.854,0.373
|
||||
c-0.358,0.404-0.249,0.605-0.28,0.963c-0.109,0.9,0.233,0.762,0.528,0.793c0.357,0.046,0.606-0.14,0.544-0.389
|
||||
c-0.124-0.606,0.233-0.233,0.435-0.326c0.078-0.031,0.233,0.093,0.419,0.217c0.156,0.125,0.684-0.217,1.088-0.527
|
||||
c0.419-0.326,0.839-0.59,0.916-0.606c0.171-0.031,0.42-0.372,0.482-0.233c0.202,0.451-0.016,1.414-0.202,2.362
|
||||
c-0.109,0.714-0.093,1.46-0.202,1.771c-0.078,0.248,0.062,0.56,0.419,0.498c0.358-0.063,0.404,0.186,0.389,0.651l-0.218,1.461
|
||||
l-0.823,2.361l-0.451,1.739l-0.621,2.998l-0.264,1.569l-0.497,1.025l-0.528,0.108l-0.218,0.42l-0.994,0.155l-0.917-0.155
|
||||
l-0.466,0.389l0.156,0.404l0.885,0.543l0.87,0.342l1.258,0.156l0.109,0.449h1.026l0.201-0.248h0.296l0.528-0.994l0.124-0.42
|
||||
l0.062-0.574l0.202-0.467l0.373-0.248l1.212-2.719l0.046-0.574l0.575-0.746l1.088-2.129l0.279-0.621l0.389,0.793l0.528,1.041
|
||||
l1.104,1.414l0.404,0.713l0.092,1.119l0.248,1.088l0.28,0.947l-0.28,0.342l0.156,0.652l-0.605,0.637l-0.793,0.203l-0.311,0.387
|
||||
l0.467,0.295h2.051l1.07-0.34l1.01-0.42l0.078,0.342l1.258-0.467l-0.139-0.746l-0.793-1.381l-0.046-0.576l-1.491-5.328l-0.668-2.051
|
||||
l-0.203-0.652L43.026,41.325z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M43.026,41.325
|
||||
c0.047-0.357-0.232-0.87,0.265-0.917c0.28-0.016,0.171-0.217,0.217-0.403c0.017-0.171-0.155-0.296,0.202-0.296
|
||||
c0.451,0-0.046-3.387,0.156-4.815c0.062-1.197-0.016-2.237-0.202-3.403c-0.171-1.211,0.155-1.91-0.793-3.433l-1.367-2.408
|
||||
c-0.124-0.217-0.03-0.388-0.45-0.854c-0.248-0.311-0.279-0.311-0.186-0.839c-0.047-0.606,0.388-0.637,0.512-1.771
|
||||
c-0.078-0.621-0.637-1.647-1.553-1.833c-0.964-0.171-1.756,0-2.362,0.513c-0.326,0.885-0.171,1.118-0.202,1.522
|
||||
c-0.046,0.373-0.419,0.777-0.466,1.196c-0.015,0.187,0.435,0.373,0.544,0.606c0.155,0.388-0.078,0.932,0.016,1.258
|
||||
c0.015,0.094,0.186,0.094,0.202,0.202c0.636-0.202,0.932-0.062,1.211,0.14c-0.45,0.653-0.901,1.057-1.211,1.958
|
||||
c-0.513,1.537-0.637,2.299-0.793,4.241c-0.466,0.637-1.165,1.196-1.569,1.522c-0.14,0.078-0.559,0.357-1.056,0.808
|
||||
c-0.404,0.404-0.839,0.963-1.274,1.351c-0.28,0.249-0.637,0.156-0.854,0.373c-0.358,0.404-0.249,0.605-0.28,0.963
|
||||
c-0.109,0.9,0.233,0.762,0.528,0.793c0.357,0.046,0.606-0.14,0.544-0.389c-0.124-0.606,0.233-0.233,0.435-0.326
|
||||
c0.078-0.031,0.233,0.093,0.419,0.217c0.156,0.125,0.684-0.217,1.088-0.527c0.419-0.326,0.839-0.59,0.916-0.606
|
||||
c0.171-0.031,0.42-0.372,0.482-0.233c0.202,0.451-0.016,1.414-0.202,2.362c-0.109,0.714-0.093,1.46-0.202,1.771
|
||||
c-0.078,0.248,0.062,0.56,0.419,0.498c0.358-0.063,0.404,0.186,0.389,0.651l-0.218,1.461l-0.823,2.361l-0.451,1.739l-0.621,2.998
|
||||
l-0.264,1.569l-0.497,1.025l-0.528,0.108l-0.218,0.42l-0.994,0.155l-0.917-0.155l-0.466,0.389l0.156,0.404l0.885,0.543l0.87,0.342
|
||||
l1.258,0.156l0.109,0.449h1.026l0.201-0.248h0.296l0.528-0.994l0.124-0.42l0.062-0.574l0.202-0.467l0.373-0.248l1.212-2.719
|
||||
l0.046-0.574l0.575-0.746l1.088-2.129l0.279-0.621l0.389,0.793l0.528,1.041l1.104,1.414l0.404,0.713l0.092,1.119l0.248,1.088
|
||||
l0.28,0.947l-0.28,0.342l0.156,0.652l-0.605,0.637l-0.793,0.203l-0.311,0.387l0.467,0.295h2.051l1.07-0.34l1.01-0.42l0.078,0.342
|
||||
l1.258-0.467l-0.139-0.746l-0.793-1.381l-0.046-0.576l-1.491-5.328l-0.668-2.051l-0.203-0.652L43.026,41.325z"/>
|
||||
</svg>
|
After (image error) Size: 5.3 KiB |
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.138px" height="79.031px" viewBox="0 0 79.138 79.031" enable-background="new 0 0 79.138 79.031" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.576,0c30.411,0,49.42,32.921,34.208,59.273
|
||||
c-15.199,26.336-53.217,26.353-68.43,0C-9.86,32.921,9.165,0,39.576,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.576,0c30.411,0,49.42,32.921,34.208,59.273
|
||||
c-15.199,26.336-53.217,26.353-68.43,0C-9.86,32.921,9.165,0,39.576,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.544,68.042c-21.968,0-35.694-23.78-24.71-42.82
|
||||
c10.984-19.024,38.453-19.024,49.436,0C75.254,44.262,61.527,68.042,39.544,68.042z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.544,68.042
|
||||
c-21.968,0-35.694-23.78-24.71-42.82c10.984-19.024,38.453-19.024,49.436,0C75.254,44.262,61.527,68.042,39.544,68.042z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.771,36.825v-5.36h-6.305l-2.308,5.36H25.771z M26.716,36.825h6.274v-5.36
|
||||
h-6.274V36.825z M33.937,36.825h6.259v-5.36h-6.259V36.825z M41.141,36.825h6.274v-5.36h-6.274V36.825z M48.359,36.825h6.26v-5.36
|
||||
h-6.26V36.825z M61.559,36.825l-0.65-5.36h-5.345v5.36H61.559z M62.783,37.554l-0.837-7.003H18.615l-3.005,6.972v7.05h5.484
|
||||
c0-2.341,1.735-4.245,3.873-4.245c2.138,0,3.873,1.904,3.873,4.245h19.427c0-2.341,1.735-4.245,3.873-4.245s3.873,1.904,3.873,4.245
|
||||
h7.297v-1.768h-0.526V37.554z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M25.771,36.825v-5.36h-6.305l-2.308,5.36H25.771z
|
||||
M26.716,36.825h6.274v-5.36h-6.274V36.825z M33.937,36.825h6.259v-5.36h-6.259V36.825z M41.141,36.825h6.274v-5.36h-6.274V36.825z
|
||||
M48.359,36.825h6.26v-5.36h-6.26V36.825z M61.559,36.825l-0.65-5.36h-5.345v5.36H61.559z M62.783,37.554l-0.837-7.003H18.615
|
||||
l-3.005,6.972v7.05h5.484c0-2.341,1.735-4.245,3.873-4.245c2.138,0,3.873,1.904,3.873,4.245h19.427c0-2.341,1.735-4.245,3.873-4.245
|
||||
s3.873,1.904,3.873,4.245h7.297v-1.768h-0.526V37.554z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M52.14,48.32c-2.634,0-4.291-3.13-2.974-5.623c1.315-2.511,4.631-2.494,5.949,0
|
||||
C56.431,45.19,54.773,48.32,52.14,48.32z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M52.14,48.32c-2.634,0-4.291-3.13-2.974-5.623
|
||||
c1.315-2.511,4.631-2.494,5.949,0C56.431,45.19,54.773,48.32,52.14,48.32z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.966,48.32c-2.634,0-4.292-3.13-2.975-5.623c1.317-2.511,4.617-2.494,5.949,0
|
||||
C29.257,45.19,27.601,48.32,24.966,48.32z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M24.966,48.32c-2.634,0-4.292-3.13-2.975-5.623
|
||||
c1.317-2.511,4.617-2.494,5.949,0C29.257,45.19,27.601,48.32,24.966,48.32z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M52.14,46.569c-1.41,0-2.277-1.657-1.58-3.005
|
||||
c0.696-1.333,2.463-1.316,3.16,0C54.433,44.912,53.549,46.569,52.14,46.569 M24.966,46.569c-1.41,0-2.293-1.657-1.58-3.005
|
||||
c0.697-1.333,2.463-1.316,3.16,0C27.26,44.912,26.36,46.569,24.966,46.569"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.579,49.87 M63.34,49.87H15.579v-2.076H63.34V49.87z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M15.579,49.87 M63.34,49.87H15.579v-2.076H63.34
|
||||
V49.87z"/>
|
||||
</svg>
|
After (image error) Size: 3.7 KiB |
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.859px" height="78.741px" viewBox="0 0 78.859 78.741" enable-background="new 0 0 78.859 78.741" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.428,0c30.324,0,49.253,32.795,34.091,59.043
|
||||
c-15.131,26.249-53.021,26.28-68.184,0C-9.827,32.795,9.134,0,39.428,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.428,0c30.324,0,49.253,32.795,34.091,59.043
|
||||
c-15.131,26.249-53.021,26.28-68.184,0C-9.827,32.795,9.134,0,39.428,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.428,67.813c-21.925,0-35.605-23.717-24.643-42.676
|
||||
c10.932-18.961,38.354-18.992,49.285,0C75.033,44.097,61.353,67.813,39.428,67.813z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.428,67.813
|
||||
c-21.925,0-35.605-23.717-24.643-42.676c10.932-18.961,38.354-18.992,49.285,0C75.033,44.097,61.353,67.813,39.428,67.813z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.348,47.155 M62.65,47.155H17.349v-0.803H62.65V47.155z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M17.348,47.155 M62.65,47.155H17.349v-0.803
|
||||
H62.65V47.155z"/>
|
||||
<path d="M28.156,44.128l17.54,0.031c0.186,1.234,1.327,2.162,2.594,2.162s2.347-0.958,2.595-2.162h3.459V30.603h-21
|
||||
c-0.586,0-1.019,0.432-1.019,1.05h-4.601c-0.062-0.062-0.154-0.062-0.278-0.062c-0.463,0-0.864,0.247-1.112,0.648l-2.007,3.768
|
||||
c-0.339,0.432-0.463,0.123-1.081,0.803c-0.432,0.525-0.802,1.204-0.895,1.791l-0.803,4.477h-0.926v1.05h2.347
|
||||
c0.216,1.235,1.327,2.193,2.593,2.193C26.858,46.321,27.971,45.363,28.156,44.128z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.154" stroke-miterlimit="3.863" d="M28.156,44.128l17.54,0.031
|
||||
c0.186,1.234,1.327,2.162,2.594,2.162s2.347-0.958,2.595-2.162h3.459V30.603h-21c-0.586,0-1.019,0.432-1.019,1.05h-4.601
|
||||
c-0.062-0.062-0.154-0.062-0.278-0.062c-0.463,0-0.864,0.247-1.112,0.648l-2.007,3.768c-0.339,0.432-0.463,0.123-1.081,0.803
|
||||
c-0.432,0.525-0.802,1.204-0.895,1.791l-0.803,4.477h-0.926v1.05h2.347c0.216,1.235,1.327,2.193,2.593,2.193
|
||||
C26.858,46.321,27.971,45.363,28.156,44.128z"/>
|
||||
<path fill="#FFFFFF" d="M27.724,32.239h4.231v3.891l-7.01-0.061l1.698-3.212c0.216-0.185,0.247-0.587,0.402-0.618
|
||||
C27.415,32.116,27.477,32.239,27.724,32.239z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.154" stroke-miterlimit="3.863" d="M27.724,32.239h4.231v3.891l-7.01-0.061
|
||||
l1.698-3.212c0.216-0.185,0.247-0.587,0.402-0.618C27.415,32.116,27.477,32.239,27.724,32.239z"/>
|
||||
</svg>
|
After (image error) Size: 2.8 KiB |
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="76.609px" height="76.593px" viewBox="0 0 76.609 76.593" enable-background="new 0 0 76.609 76.593" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M38.305,76.593C8.867,76.593-9.54,44.697,5.18,19.156
|
||||
c14.719-25.541,51.532-25.541,66.251,0S67.743,76.593,38.305,76.593z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M38.305,76.593
|
||||
C8.867,76.593-9.54,44.697,5.18,19.156c14.719-25.541,51.532-25.541,66.251,0S67.743,76.593,38.305,76.593z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M38.305,65.561c-21.014,0-34.114-22.723-23.622-40.889
|
||||
c10.492-18.167,36.753-18.197,47.245,0C72.419,42.838,59.29,65.561,38.305,65.561z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M38.305,65.561
|
||||
c-21.014,0-34.114-22.723-23.622-40.889c10.492-18.167,36.753-18.197,47.245,0C72.419,42.838,59.29,65.561,38.305,65.561z"/>
|
||||
<path fill="#120C0E" d="M38.274,52.281c0.99-0.03,2.01,1.109,2.998,1.109h7.045v-1.109h0.301v-1.409
|
||||
c0-0.809,0.568-1.408,1.408-1.408s1.439,0.6,1.439,1.408c0.089,0.959-0.15,1.68,0.389,2.519c0.18,1.409-0.568,1.919-0.389,3.388
|
||||
c0.148,0.779-0.6,1.438-1.439,1.438s-1.408-0.6-1.408-1.438l-0.031-1.409h-0.359v-1.14h-6.984c-1.14,0-1.68,1.469-2.969,1.2
|
||||
c-1.229,0.269-1.738-1.2-2.877-1.2h-7.015v1.17h-0.33v1.379c-0.03,0.839-0.629,1.438-1.409,1.438c-0.839,0-1.589-0.6-1.469-1.438
|
||||
c0.21-1.409-0.569-1.949-0.359-3.328c0.509-0.898,0.239-1.619,0.359-2.518c0-0.869,0.63-1.469,1.469-1.469
|
||||
c0.78,0,1.409,0.6,1.409,1.469v1.379h0.27v1.079h7.075c0.959,0,1.918-1.14,2.877-1.079V52.281z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.15" stroke-miterlimit="3.863" d="M38.274,52.281
|
||||
c0.99-0.03,2.01,1.109,2.998,1.109h7.045v-1.109h0.301v-1.409c0-0.809,0.568-1.408,1.408-1.408s1.439,0.6,1.439,1.408
|
||||
c0.089,0.959-0.15,1.68,0.389,2.519c0.18,1.409-0.568,1.919-0.389,3.388c0.148,0.779-0.6,1.438-1.439,1.438s-1.408-0.6-1.408-1.438
|
||||
l-0.031-1.409h-0.359v-1.14h-6.984c-1.14,0-1.68,1.469-2.969,1.2c-1.229,0.269-1.738-1.2-2.877-1.2h-7.015v1.17h-0.33v1.379
|
||||
c-0.03,0.839-0.629,1.438-1.409,1.438c-0.839,0-1.589-0.6-1.469-1.438c0.21-1.409-0.569-1.949-0.359-3.328
|
||||
c0.509-0.898,0.239-1.619,0.359-2.518c0-0.869,0.63-1.469,1.469-1.469c0.78,0,1.409,0.6,1.409,1.469v1.379h0.27v1.079h7.075
|
||||
c0.959,0,1.918-1.14,2.877-1.079V52.281z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" d="M25.055,45.716 M51.436,45.716h-26.38V19.366h26.38V45.716z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.899" stroke-miterlimit="3.863" d="M25.055,45.716 M51.436,45.716h-26.38V19.366
|
||||
h26.38V45.716z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" d="M24.695,48.503 M51.794,48.503h-27.1v-1.019h27.1V48.503z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M24.695,48.503 M51.794,48.503h-27.1v-1.019h27.1
|
||||
V48.503z"/>
|
||||
</svg>
|
After (image error) Size: 3.2 KiB |
|
@ -0,0 +1,137 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="77.626px" height="77.526px" viewBox="0 0 77.626 77.526" enable-background="new 0 0 77.626 77.526" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M38.809,0c29.832,0,48.49,32.294,33.563,58.141
|
||||
c-14.906,25.847-52.201,25.847-67.127,0C-9.661,32.294,8.977,0,38.809,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M38.809,0c29.832,0,48.49,32.294,33.563,58.141
|
||||
c-14.906,25.847-52.201,25.847-67.127,0C-9.661,32.294,8.977,0,38.809,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M38.789,66.757c-21.548,0-35.029-23.328-24.244-42.004
|
||||
c10.784-18.677,37.725-18.677,48.509,0C73.838,43.429,60.359,66.757,38.789,66.757z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M38.789,66.757
|
||||
c-21.548,0-35.029-23.328-24.244-42.004c10.784-18.677,37.725-18.677,48.509,0C73.838,43.429,60.359,66.757,38.789,66.757z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" points="21.636,41.281 29.197,36.006 24.879,36.397 28.728,33.72
|
||||
23.903,30.985 29.295,32.392 18.51,22.213 28.806,27.586 24.801,19.595 31.502,23.053 30.76,19.166 33.808,22.741 36.406,18.423
|
||||
36.758,22.702 38.848,14.496 39.826,21.862 42.951,16.684 43.244,22.858 49.925,17.329 49.613,25.847 52.857,24.186 50.16,27.801
|
||||
55.904,29.461 50.785,31.122 63.328,35.049 50.238,36.494 56.548,43.136 48.167,40.636 51.43,47.669 42.775,43.567 42.248,47.669
|
||||
39.434,42.296 36.347,47.708 36.015,42.003 30.682,48.451 32.01,42.492 25.348,44.386 30.33,40.695 "/>
|
||||
<polygon fill="none" stroke="#FFCB04" stroke-width="1.172" stroke-miterlimit="3.863" points="21.636,41.281 29.197,36.006
|
||||
24.879,36.397 28.728,33.72 23.903,30.985 29.295,32.392 18.51,22.213 28.806,27.586 24.801,19.595 31.502,23.053 30.76,19.166
|
||||
33.808,22.741 36.406,18.423 36.758,22.702 38.848,14.496 39.826,21.862 42.951,16.684 43.244,22.858 49.925,17.329 49.613,25.847
|
||||
52.857,24.186 50.16,27.801 55.904,29.461 50.785,31.122 63.328,35.049 50.238,36.494 56.548,43.136 48.167,40.636 51.43,47.669
|
||||
42.775,43.567 42.248,47.669 39.434,42.296 36.347,47.708 36.015,42.003 30.682,48.451 32.01,42.492 25.348,44.386 30.33,40.695 "/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="48.441,31.923 28.142,31.923 23.199,41.125
|
||||
22.906,41.398 22.476,41.828 22.047,42.414 21.851,42.57 21.773,42.882 21.695,43.214 21.695,46.868 21.734,48.431 22.047,50.052
|
||||
22.281,50.833 22.672,51.5 23.199,51.927 23.824,52.125 23.824,56.852 26.97,56.852 26.97,52.358 49.613,52.358 49.613,56.852
|
||||
52.797,56.852 52.797,52.125 53.422,51.927 53.99,51.5 54.341,50.833 54.576,50.052 54.888,48.431 54.927,46.868 54.927,43.214
|
||||
54.848,42.882 54.576,42.414 54.145,41.828 53.715,41.398 53.422,41.125 48.441,31.923 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" points="
|
||||
48.441,31.923 28.142,31.923 23.199,41.125 22.906,41.398 22.476,41.828 22.047,42.414 21.851,42.57 21.773,42.882 21.695,43.214
|
||||
21.695,46.868 21.734,48.431 22.047,50.052 22.281,50.833 22.672,51.5 23.199,51.927 23.824,52.125 23.824,56.852 26.97,56.852
|
||||
26.97,52.358 49.613,52.358 49.613,56.852 52.797,56.852 52.797,52.125 53.422,51.927 53.99,51.5 54.341,50.833 54.576,50.052
|
||||
54.888,48.431 54.927,46.868 54.927,43.214 54.848,42.882 54.576,42.414 54.145,41.828 53.715,41.398 53.422,41.125 "/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="50.726,47.923 49.964,47.806 49.339,47.337
|
||||
48.949,46.791 48.792,46.4 48.753,46.067 48.792,45.638 48.949,45.248 49.339,44.583 49.964,44.192 50.316,44.075 50.726,44.036
|
||||
51.117,44.075 51.469,44.192 52.094,44.583 52.525,45.248 52.641,46.067 52.525,46.791 52.094,47.337 51.469,47.806 50.726,47.923
|
||||
"/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="25.934,47.962 25.387,47.884 24.918,47.689
|
||||
24.528,47.337 24.215,46.947 24.02,46.517 23.981,46.067 24.02,45.52 24.215,45.011 24.567,44.583 24.958,44.309 25.426,44.114
|
||||
25.934,44.036 26.423,44.114 26.853,44.309 27.282,44.583 27.595,45.011 27.829,45.52 27.908,46.067 27.829,46.517 27.595,46.947
|
||||
27.321,47.337 26.931,47.689 26.423,47.884 25.934,47.962 "/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="39.865,32.822 47.816,32.822 51.859,41.086
|
||||
48.558,40.656 45.178,40.304 41.72,40.109 38.34,40.07 34.902,40.109 31.444,40.304 28.064,40.656 24.762,41.086 28.806,32.822
|
||||
39.865,32.822 "/>
|
||||
<rect x="21.695" y="56.226" fill="#120C0E" width="33.232" height="1.094"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M21.695,56.226 M54.927,56.226H21.695v1.094h33.232V56.226z"/>
|
||||
<rect x="29.49" y="48.08" fill="#FFFFFF" width="17.563" height="0.469"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M29.49,48.08 M47.053,48.08H29.49v0.469h17.563V48.08z"/>
|
||||
<rect x="30.545" y="46.146" fill="#FFFFFF" width="15.493" height="0.488"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M30.545,46.146 M46.037,46.146H30.544v0.488h15.492V46.146z"/>
|
||||
<rect x="31.131" y="49.896" fill="#FFFFFF" width="14.28" height="0.469"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M31.131,49.897 M45.412,49.897h-14.28v0.469h14.28V49.897z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="39.297,24.909 39.336,26.414 39.611,25.476 39.512,26.629 39.708,26.296
|
||||
39.611,27.058 40.158,26.199 39.844,27.273 40.119,27.078 39.923,27.664 40.314,27.39 40.041,28.035 40.724,27.898 40.098,28.699
|
||||
40.49,29.051 40.08,29.383 40.607,30.243 39.943,29.989 40.059,30.399 39.865,30.282 40.294,31.767 39.826,30.809 39.865,31.317
|
||||
39.65,30.829 39.689,31.435 39.512,30.985 39.629,32.372 39.258,31.063 39.18,32.021 39.064,31.102 38.848,32.587 38.828,31.356
|
||||
38.653,31.903 38.672,31.181 38.242,32.431 38.457,30.868 38.223,31.181 38.379,30.399 37.969,30.907 38.262,29.832 37.598,29.969
|
||||
38.106,29.246 37.695,29.149 38.106,28.758 37.695,28.426 38.184,28.191 37.949,27.586 38.242,27.762 38.164,27.43 38.36,27.547
|
||||
38.067,26.277 38.535,27.078 38.438,25.867 38.711,26.707 38.731,25.241 38.946,26.394 39.004,25.652 39.102,26.296 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" points="39.297,24.909 39.336,26.414
|
||||
39.611,25.476 39.512,26.629 39.708,26.296 39.611,27.058 40.158,26.199 39.844,27.273 40.119,27.078 39.923,27.664 40.314,27.39
|
||||
40.041,28.035 40.724,27.898 40.098,28.699 40.49,29.051 40.08,29.383 40.607,30.243 39.943,29.989 40.059,30.399 39.865,30.282
|
||||
40.294,31.767 39.826,30.809 39.865,31.317 39.65,30.829 39.689,31.435 39.512,30.985 39.629,32.372 39.258,31.063 39.18,32.021
|
||||
39.064,31.102 38.848,32.587 38.828,31.356 38.653,31.903 38.672,31.181 38.242,32.431 38.457,30.868 38.223,31.181 38.379,30.399
|
||||
37.969,30.907 38.262,29.832 37.598,29.969 38.106,29.246 37.695,29.149 38.106,28.758 37.695,28.426 38.184,28.191 37.949,27.586
|
||||
38.242,27.762 38.164,27.43 38.36,27.547 38.067,26.277 38.535,27.078 38.438,25.867 38.711,26.707 38.731,25.241 38.946,26.394
|
||||
39.004,25.652 39.102,26.296 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" points="39.297,28.074 39.297,28.797 39.395,28.348 39.357,28.895
|
||||
39.416,28.739 39.395,29.09 39.572,28.68 39.473,29.188 39.572,29.11 39.494,29.383 39.629,29.246 39.533,29.559 39.766,29.5
|
||||
39.551,29.872 39.689,30.047 39.551,30.204 39.727,30.614 39.512,30.477 39.551,30.692 39.473,30.634 39.629,31.337 39.455,30.887
|
||||
39.473,31.122 39.395,30.887 39.416,31.181 39.357,30.966 39.395,31.63 39.279,31.005 39.24,31.454 39.201,31.024 39.141,31.728
|
||||
39.123,31.141 39.064,31.395 39.082,31.063 38.926,31.649 39.004,30.907 38.926,31.063 38.965,30.692 38.848,30.927 38.946,30.419
|
||||
38.711,30.477 38.887,30.145 38.75,30.087 38.887,29.911 38.75,29.754 38.907,29.637 38.828,29.344 38.926,29.422 38.907,29.266
|
||||
38.965,29.325 38.868,28.719 39.024,29.11 39.004,28.524 39.082,28.934 39.102,28.231 39.162,28.778 39.18,28.426 39.219,28.739 "/>
|
||||
<polygon fill="none" stroke="#FFCB04" stroke-width="0" stroke-miterlimit="3.863" points="39.297,28.074 39.297,28.797
|
||||
39.395,28.348 39.357,28.895 39.416,28.739 39.395,29.09 39.572,28.68 39.473,29.188 39.572,29.11 39.494,29.383 39.629,29.246
|
||||
39.533,29.559 39.766,29.5 39.551,29.872 39.689,30.047 39.551,30.204 39.727,30.614 39.512,30.477 39.551,30.692 39.473,30.634
|
||||
39.629,31.337 39.455,30.887 39.473,31.122 39.395,30.887 39.416,31.181 39.357,30.966 39.395,31.63 39.279,31.005 39.24,31.454
|
||||
39.201,31.024 39.141,31.728 39.123,31.141 39.064,31.395 39.082,31.063 38.926,31.649 39.004,30.907 38.926,31.063 38.965,30.692
|
||||
38.848,30.927 38.946,30.419 38.711,30.477 38.887,30.145 38.75,30.087 38.887,29.911 38.75,29.754 38.907,29.637 38.828,29.344
|
||||
38.926,29.422 38.907,29.266 38.965,29.325 38.868,28.719 39.024,29.11 39.004,28.524 39.082,28.934 39.102,28.231 39.162,28.778
|
||||
39.18,28.426 39.219,28.739 "/>
|
||||
<path d="M45.451,25.613c-0.272,0.547-0.703,0.762-0.78,1.504c0.155-0.039,0.332-0.059,0.487-0.098
|
||||
C45.531,26.668,45.648,25.202,45.451,25.613z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M45.451,25.613
|
||||
c-0.272,0.547-0.703,0.762-0.78,1.504c0.155-0.039,0.332-0.059,0.487-0.098C45.531,26.668,45.648,25.202,45.451,25.613z"/>
|
||||
<path d="M46.35,28.778c-0.606,0.019-1.094,0.429-1.327,0.859c0.194,0.098,0.428,0.156,0.663,0.117
|
||||
c0.392-0.332,0.88-0.449,1.406-0.488c0.04-0.195,0.021-0.41,0.06-0.606C46.859,28.641,46.527,28.445,46.35,28.778z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M46.35,28.778
|
||||
c-0.606,0.019-1.094,0.429-1.327,0.859c0.194,0.098,0.428,0.156,0.663,0.117c0.392-0.332,0.88-0.449,1.406-0.488
|
||||
c0.04-0.195,0.021-0.41,0.06-0.606C46.859,28.641,46.527,28.445,46.35,28.778z"/>
|
||||
<path d="M27.302,27.586c0.918,0.371,1.465,1.426,2.266,2.032c-0.117,0.019-0.234,0.019-0.371,0.058
|
||||
c-0.684,0.039-1.856-1.348-2.52-1.66c-0.117,0.019-0.215,0.039-0.313,0.078c-0.254-0.254-0.215-0.704,0-0.977
|
||||
C26.696,27.039,27.028,27.469,27.302,27.586z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M27.302,27.586
|
||||
c0.918,0.371,1.465,1.426,2.266,2.032c-0.117,0.019-0.234,0.019-0.371,0.058c-0.684,0.039-1.856-1.348-2.52-1.66
|
||||
c-0.117,0.019-0.215,0.039-0.313,0.078c-0.254-0.254-0.215-0.704,0-0.977C26.696,27.039,27.028,27.469,27.302,27.586z"/>
|
||||
<path d="M33.182,26.589c-0.644-0.214-0.898-1.035-1.602-1.074c-0.097,0.293-0.136,0.586-0.234,0.879
|
||||
c0.059,0.098,0.098,0.195,0.117,0.293C31.913,26.804,32.694,26.765,33.182,26.589z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M33.182,26.589
|
||||
c-0.644-0.214-0.898-1.035-1.602-1.074c-0.097,0.293-0.136,0.586-0.234,0.879c0.059,0.098,0.098,0.195,0.117,0.293
|
||||
C31.913,26.804,32.694,26.765,33.182,26.589z"/>
|
||||
<path d="M27.556,22.428c0.137,0.45,0.449,0.762,0.801,1.036c0-0.118,0-0.254,0-0.372C28.201,22.819,27.81,22.624,27.556,22.428z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M27.556,22.428
|
||||
c0.137,0.45,0.449,0.762,0.801,1.036c0-0.118,0-0.254,0-0.372C28.201,22.819,27.81,22.624,27.556,22.428z"/>
|
||||
<path d="M34.159,29.559c-0.371-0.254-0.957-0.254-1.328,0c-0.02,0.117-0.059,0.234-0.078,0.352
|
||||
C33.026,29.715,34.12,30.184,34.159,29.559z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M34.159,29.559c-0.371-0.254-0.957-0.254-1.328,0
|
||||
c-0.02,0.117-0.059,0.234-0.078,0.352C33.026,29.715,34.12,30.184,34.159,29.559z"/>
|
||||
<path d="M35.996,22.428c0.136,0.313,0.39,0.547,0.586,0.821c0.254-0.02,0.488-0.059,0.742-0.078
|
||||
c-0.019-0.118-0.058-0.254-0.078-0.372c-0.273-0.429-0.899-0.449-1.094-0.957C36.113,21.979,35.937,22.311,35.996,22.428z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M35.996,22.428
|
||||
c0.136,0.313,0.39,0.547,0.586,0.821c0.254-0.02,0.488-0.059,0.742-0.078c-0.019-0.118-0.058-0.254-0.078-0.372
|
||||
c-0.273-0.429-0.899-0.449-1.094-0.957C36.113,21.979,35.937,22.311,35.996,22.428z"/>
|
||||
<path d="M41.642,21.549c-0.039,0.606-0.059,1.27-0.352,1.836c0.117,0,0.234,0,0.352,0C41.427,22.721,41.955,22.096,41.642,21.549z"
|
||||
/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M41.642,21.549
|
||||
c-0.039,0.606-0.059,1.27-0.352,1.836c0.117,0,0.234,0,0.352,0C41.427,22.721,41.955,22.096,41.642,21.549z"/>
|
||||
<path d="M52.445,33.994c0.646-0.078,1.192,0.312,1.721,0.625c0.078-0.039,0.156-0.078,0.234-0.098
|
||||
c0.02-0.078,0.059-0.156,0.098-0.234c-0.039-0.098-0.059-0.195-0.098-0.293c-0.763-0.098-0.899-1.016-1.72-0.977
|
||||
C52.426,33.251,52.699,33.759,52.445,33.994z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M52.445,33.994
|
||||
c0.646-0.078,1.192,0.312,1.721,0.625c0.078-0.039,0.156-0.078,0.234-0.098c0.02-0.078,0.059-0.156,0.098-0.234
|
||||
c-0.039-0.098-0.059-0.195-0.098-0.293c-0.763-0.098-0.899-1.016-1.72-0.977C52.426,33.251,52.699,33.759,52.445,33.994z"/>
|
||||
<path d="M51.351,29.031c-0.742-0.058-1.367,0.333-1.992,0.665c0.098,0.078,0.195,0.136,0.293,0.215
|
||||
c0.605-0.039,1.231-0.02,1.836-0.059c0.078-0.078,0.138-0.176,0.215-0.234C51.742,29.383,51.801,29.071,51.351,29.031z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M51.351,29.031
|
||||
c-0.742-0.058-1.367,0.333-1.992,0.665c0.098,0.078,0.195,0.136,0.293,0.215c0.605-0.039,1.231-0.02,1.836-0.059
|
||||
c0.078-0.078,0.138-0.176,0.215-0.234C51.742,29.383,51.801,29.071,51.351,29.031z"/>
|
||||
<path d="M46.859,22.213c0.137,0.45,0.448,0.762,0.801,1.036c0-0.118,0-0.254,0-0.371C47.503,22.604,47.113,22.409,46.859,22.213z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="1.172" stroke-miterlimit="3.863" d="M46.859,22.213
|
||||
c0.137,0.45,0.448,0.762,0.801,1.036c0-0.118,0-0.254,0-0.371C47.503,22.604,47.113,22.409,46.859,22.213z"/>
|
||||
</svg>
|
After (image error) Size: 14 KiB |
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.916px" height="78.899px" viewBox="0 0 78.916 78.899" enable-background="new 0 0 78.916 78.899" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.458,78.899c-30.325,0-49.285-32.857-34.123-59.167
|
||||
c15.162-26.31,53.083-26.31,68.245,0C88.743,46.042,69.782,78.899,39.458,78.899z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.458,78.899
|
||||
c-30.325,0-49.285-32.857-34.123-59.167c15.162-26.31,53.083-26.31,68.245,0C88.743,46.042,69.782,78.899,39.458,78.899z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.458,67.535c-21.647,0-35.142-23.406-24.334-42.121
|
||||
c10.808-18.713,37.859-18.744,48.667,0C74.601,44.129,61.074,67.535,39.458,67.535z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.458,67.535
|
||||
c-21.647,0-35.142-23.406-24.334-42.121c10.808-18.713,37.859-18.744,48.667,0C74.601,44.129,61.074,67.535,39.458,67.535z"/>
|
||||
<path fill="#120C0E" d="M39.458,42.121c1.019-0.031,2.069,1.143,3.087,1.143h7.258v-1.143h0.308V40.67
|
||||
c0-0.834,0.587-1.451,1.452-1.451c0.863,0,1.482,0.617,1.482,1.451c0.092,0.987-0.154,1.729,0.4,2.594
|
||||
c0.186,1.451-0.586,1.976-0.4,3.49c0.153,0.801-0.619,1.481-1.482,1.481c-0.865,0-1.452-0.618-1.452-1.481l-0.03-1.453H49.71v-1.172
|
||||
h-7.195c-1.174,0-1.729,1.512-3.056,1.234c-1.266,0.277-1.791-1.234-2.965-1.234h-7.226v1.203h-0.339v1.422
|
||||
c-0.031,0.863-0.649,1.481-1.452,1.481c-0.864,0-1.637-0.618-1.513-1.481c0.216-1.453-0.587-2.009-0.371-3.429
|
||||
c0.525-0.927,0.247-1.668,0.371-2.594c0-0.896,0.649-1.513,1.513-1.513c0.803,0,1.452,0.617,1.452,1.513v1.42h0.277v1.112h7.288
|
||||
c0.988,0,1.977-1.174,2.965-1.112V42.121z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.154" stroke-miterlimit="3.863" d="M39.458,42.121
|
||||
c1.019-0.031,2.069,1.143,3.087,1.143h7.258v-1.143h0.308V40.67c0-0.834,0.587-1.451,1.452-1.451c0.863,0,1.482,0.617,1.482,1.451
|
||||
c0.092,0.987-0.154,1.729,0.4,2.594c0.186,1.451-0.586,1.976-0.4,3.49c0.153,0.801-0.619,1.481-1.482,1.481
|
||||
c-0.865,0-1.452-0.618-1.452-1.481l-0.03-1.453H49.71v-1.172h-7.195c-1.174,0-1.729,1.512-3.056,1.234
|
||||
c-1.266,0.277-1.791-1.234-2.965-1.234h-7.226v1.203h-0.339v1.422c-0.031,0.863-0.649,1.481-1.452,1.481
|
||||
c-0.864,0-1.637-0.618-1.513-1.481c0.216-1.453-0.587-2.009-0.371-3.429c0.525-0.927,0.247-1.668,0.371-2.594
|
||||
c0-0.896,0.649-1.513,1.513-1.513c0.803,0,1.452,0.617,1.452,1.513v1.42h0.277v1.112h7.288c0.988,0,1.977-1.174,2.965-1.112V42.121z
|
||||
"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" d="M25.563,38.26 M53.478,38.26H25.562v-1.049h27.916V38.26z"/>
|
||||
<path fill="none" stroke="#FFCB04" stroke-width="0" stroke-miterlimit="3.863" d="M25.563,38.26 M53.478,38.26H25.562v-1.049
|
||||
h27.916V38.26z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFCB04" d="M54.867,27.391c0,13.093-30.664,13.093-30.664,0
|
||||
C24.203,14.266,54.867,14.266,54.867,27.391"/>
|
||||
<path fill="none" stroke="#2E3092" stroke-width="1.544" stroke-miterlimit="3.863" d="M18.984,53.424
|
||||
c2.625,1.11,5.589,1.11,8.214-0.031c2.625-1.082,5.59-1.082,8.214,0.031c2.625,1.11,5.591,1.11,8.216-0.031
|
||||
c2.623-1.082,5.588-1.082,8.213,0.031c2.625,1.08,5.59,1.08,8.215-0.031 M18.984,50.52c2.625,1.113,5.589,1.113,8.214-0.03
|
||||
c2.625-1.081,5.59-1.081,8.214,0.03c2.625,1.113,5.591,1.113,8.216-0.03c2.623-1.081,5.588-1.081,8.213,0.03
|
||||
c2.625,1.082,5.59,1.082,8.215-0.03"/>
|
||||
</svg>
|
After (image error) Size: 3.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.891px" height="79.783px" viewBox="0 0 79.891 79.783" enable-background="new 0 0 79.891 79.783" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.953,0c30.7,0,49.89,33.234,34.532,59.837
|
||||
c-15.342,26.587-53.722,26.602-69.08,0C-9.954,33.234,9.252,0,39.953,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.953,0c30.7,0,49.89,33.234,34.532,59.837
|
||||
c-15.342,26.587-53.722,26.602-69.08,0C-9.954,33.234,9.252,0,39.953,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.937,68.704c-22.192,0-36.064-24.022-24.96-43.228
|
||||
c11.088-19.221,38.833-19.221,49.921,0C75.986,44.682,62.113,68.704,39.937,68.704z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.937,68.704
|
||||
c-22.192,0-36.064-24.022-24.96-43.228c11.088-19.221,38.833-19.221,49.921,0C75.986,44.682,62.113,68.704,39.937,68.704z"/>
|
||||
</svg>
|
After (image error) Size: 1.3 KiB |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.828px" height="79.092px" viewBox="0 0 78.828 79.092" enable-background="new 0 0 78.828 79.092" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.4,79.092c-30.292,0-49.222-32.941-34.06-59.313
|
||||
c15.131-26.372,53.021-26.372,68.152,0C88.654,46.15,69.694,79.092,39.4,79.092z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.4,79.092
|
||||
c-30.292,0-49.222-32.941-34.06-59.313c15.131-26.372,53.021-26.372,68.152,0C88.654,46.15,69.694,79.092,39.4,79.092z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.4,67.656c-15.471,0-28.069-12.581-28.069-28.106
|
||||
c0-15.557,12.599-28.138,28.069-28.138s28.07,12.581,28.07,28.138C67.471,55.075,54.871,67.656,39.4,67.656z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.4,67.656
|
||||
c-15.471,0-28.069-12.581-28.069-28.106c0-15.557,12.599-28.138,28.069-28.138s28.07,12.581,28.07,28.138
|
||||
C67.471,55.075,54.871,67.656,39.4,67.656z"/>
|
||||
<path fill="#120C0E" d="M26.524,61.645l3.057-2.851l2.749,2.604V39.209c0-4.369,3.645-7.53,7.967-7.53h10.282v8.46L62.19,28.921
|
||||
L50.578,17.424v8.553h-10.56c-7.442,0-13.495,6.074-13.495,13.573V61.645z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.155" stroke-miterlimit="3.863" d="M26.524,61.645l3.057-2.851l2.749,2.604
|
||||
V39.209c0-4.369,3.645-7.53,7.967-7.53h10.282v8.46L62.19,28.921L50.578,17.424v8.553h-10.56c-7.442,0-13.495,6.074-13.495,13.573
|
||||
V61.645z"/>
|
||||
<path fill="#ED1C24" d="M22.015,17.455c-1.481,1.146-2.933,2.603-4.076,3.874l39.217,40.037c1.328-1.24,2.408-2.201,3.922-3.874
|
||||
L22.015,17.455z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.155" stroke-miterlimit="3.863" d="M22.015,17.455
|
||||
c-1.481,1.146-2.933,2.603-4.076,3.874l39.217,40.037c1.328-1.24,2.408-2.201,3.922-3.874L22.015,17.455z"/>
|
||||
</svg>
|
After (image error) Size: 2.2 KiB |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.828px" height="79.091px" viewBox="0 0 78.828 79.091" enable-background="new 0 0 78.828 79.091" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.4,79.091c-30.293,0-49.223-32.94-34.06-59.313
|
||||
c15.131-26.371,53.021-26.371,68.152,0C88.654,46.15,69.695,79.091,39.4,79.091z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.4,79.091
|
||||
c-30.293,0-49.223-32.94-34.06-59.313c15.131-26.371,53.021-26.371,68.152,0C88.654,46.15,69.695,79.091,39.4,79.091z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.4,67.656c-15.471,0-28.07-12.581-28.07-28.106
|
||||
c0-15.557,12.599-28.138,28.07-28.138c15.47,0,28.07,12.581,28.07,28.138C67.47,55.075,54.871,67.656,39.4,67.656z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.4,67.656
|
||||
c-15.471,0-28.07-12.581-28.07-28.106c0-15.557,12.599-28.138,28.07-28.138c15.47,0,28.07,12.581,28.07,28.138
|
||||
C67.47,55.075,54.871,67.656,39.4,67.656z"/>
|
||||
<path fill="#120C0E" d="M53.142,61.645l-3.057-2.852l-2.749,2.604V39.209c0-4.37-3.644-7.53-7.967-7.53H29.086v8.46l-11.61-11.218
|
||||
l11.61-11.497v8.553h10.562c7.441,0,13.494,6.073,13.494,13.573V61.645z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.155" stroke-miterlimit="3.863" d="M53.142,61.645l-3.057-2.852l-2.749,2.604
|
||||
V39.209c0-4.37-3.644-7.53-7.967-7.53H29.086v8.46l-11.61-11.218l11.61-11.497v8.553h10.562c7.441,0,13.494,6.073,13.494,13.573
|
||||
V61.645z"/>
|
||||
<path fill="#ED1C24" d="M22.015,17.454c-1.481,1.147-2.933,2.603-4.076,3.874l39.217,40.038c1.329-1.24,2.409-2.201,3.922-3.874
|
||||
L22.015,17.454z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.155" stroke-miterlimit="3.863" d="M22.015,17.454
|
||||
c-1.481,1.147-2.933,2.603-4.076,3.874l39.217,40.038c1.329-1.24,2.409-2.201,3.922-3.874L22.015,17.454z"/>
|
||||
</svg>
|
After (image error) Size: 2.2 KiB |
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.313px" height="78.815px" viewBox="0 0 79.313 78.815" enable-background="new 0 0 79.313 78.815" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.643,78.815c-30.48,0-49.525-32.827-34.27-59.106
|
||||
c15.224-26.279,53.347-26.279,68.571,0C89.2,45.988,70.122,78.815,39.643,78.815z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.643,78.815
|
||||
c-30.48,0-49.525-32.827-34.27-59.106c15.224-26.279,53.347-26.279,68.571,0C89.2,45.988,70.122,78.815,39.643,78.815z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.643,67.42c-15.566,0-28.242-12.538-28.242-28.009
|
||||
c0-15.502,12.676-28.039,28.242-28.039c15.566,0,28.243,12.537,28.243,28.039C67.886,54.882,55.209,67.42,39.643,67.42z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.643,67.419
|
||||
c-15.566,0-28.242-12.537-28.242-28.008c0-15.502,12.676-28.039,28.242-28.039c15.566,0,28.243,12.537,28.243,28.039
|
||||
C67.886,54.882,55.209,67.419,39.643,67.419z"/>
|
||||
<path fill="#120C0E" d="M54.028,34.069l-0.156,27.577l-2.92-2.779l-2.765,2.594V34.223c0-4.941-3.978-8.77-8.949-8.77
|
||||
s-9.01,3.829-9.01,8.77v13.124h8.296l-11.372,11.52L15.563,47.255h8.886V34.069c0-8.122,6.618-14.545,14.789-14.545
|
||||
C47.411,19.524,54.028,25.947,54.028,34.069z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.155" stroke-miterlimit="3.863" d="M54.028,34.069l-0.156,27.577l-2.92-2.779
|
||||
l-2.765,2.594V34.223c0-4.941-3.978-8.77-8.949-8.77s-9.01,3.829-9.01,8.77v13.124h8.296l-11.372,11.52L15.563,47.255h8.886V34.069
|
||||
c0-8.122,6.618-14.545,14.789-14.545C47.411,19.524,54.028,25.947,54.028,34.069z"/>
|
||||
<path fill="#ED1C24" d="M22.15,17.394c-1.491,1.143-2.952,2.594-4.102,3.86l39.459,39.897c1.336-1.236,2.423-2.193,3.946-3.861
|
||||
L22.15,17.394z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.155" stroke-miterlimit="3.863" d="M22.15,17.394
|
||||
c-1.491,1.143-2.952,2.594-4.102,3.86l39.459,39.897c1.336-1.236,2.423-2.193,3.946-3.861L22.15,17.394z"/>
|
||||
</svg>
|
After (image error) Size: 2.3 KiB |
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.194px" height="79.177px" viewBox="0 0 79.194 79.177" enable-background="new 0 0 79.194 79.177" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.597,79.177c-30.431,0-49.458-32.972-34.242-59.375
|
||||
c15.215-26.402,53.27-26.402,68.485,0C89.055,46.205,70.028,79.177,39.597,79.177z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.597,79.177
|
||||
c-30.431,0-49.458-32.972-34.242-59.375c15.215-26.402,53.27-26.402,68.485,0C89.055,46.205,70.028,79.177,39.597,79.177z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.597,68.146c-22.002,0-35.73-23.801-24.729-42.828
|
||||
c10.97-19.027,38.488-19.058,49.458,0C75.327,44.345,61.6,68.146,39.597,68.146z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.597,68.146
|
||||
c-22.002,0-35.73-23.801-24.729-42.828c10.97-19.027,38.488-19.058,49.458,0C75.327,44.345,61.6,68.146,39.597,68.146z"/>
|
||||
<path fill="#1A1D21" d="M64.45,50.047h0.683v0.589H13.814v-0.589h28.541V46.64h-0.621c-1.518-2.264-1.177-4.557-1.177-7.902
|
||||
c0-0.744,0.496-0.744,0.651-0.961c0.154-0.155,0.309-0.094,0.371-0.155l3.099-7.809h17.386l3.656,7.748
|
||||
c0.155,0.062,0.248,0,0.403,0.092c0.155,0.218,0.619,0.218,0.619,0.992c0,3.315,0.248,5.424-1.332,7.717H64.45V50.047z"/>
|
||||
<path fill="none" stroke="#1A1D21" stroke-width="0.155" stroke-miterlimit="3.863" d="M64.45,50.047h0.683v0.589H13.814v-0.589
|
||||
h28.541V46.64h-0.621c-1.518-2.264-1.177-4.557-1.177-7.902c0-0.744,0.496-0.744,0.651-0.961c0.154-0.155,0.309-0.094,0.371-0.155
|
||||
l3.099-7.809h17.386l3.656,7.748c0.155,0.062,0.248,0,0.403,0.092c0.155,0.218,0.619,0.218,0.619,0.992
|
||||
c0,3.315,0.248,5.424-1.332,7.717H64.45V50.047z"/>
|
||||
<path fill="#FFFFFF" d="M45.236,50.108 M61.63,50.108H45.236V46.7H61.63V50.108z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.155" stroke-miterlimit="3.863" d="M45.236,50.108 M61.63,50.108H45.236V46.7
|
||||
H61.63V50.108z"/>
|
||||
<path fill="#FFFFFF" d="M64.977,37.373c-3.471-0.496-7.901-0.341-11.063-0.465c-3.254,0.124-7.654-0.031-11.156,0.465l2.604-6.756
|
||||
h16.207L64.977,37.373z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.155" stroke-miterlimit="3.863" d="M64.977,37.373
|
||||
c-3.471-0.496-7.901-0.341-11.063-0.465c-3.254,0.124-7.654-0.031-11.156,0.465l2.604-6.756h16.207L64.977,37.373z"/>
|
||||
<path fill="#ED1C24" d="M14.712,49.892h2.851v-3.438h16.394v3.438h2.882v-3.687H37.8c1.58-2.293,1.301-4.401,1.301-7.716
|
||||
c0-0.775-0.464-0.775-0.619-0.992c-0.155-0.094-0.248-0.031-0.403-0.094l-3.626-7.747H17.037l-3.098,7.809
|
||||
c-0.062,0.063-0.217,0-0.341,0.155c-0.155,0.217-0.682,0.217-0.682,0.961c0,3.347-0.31,5.64,1.177,7.901h0.62V49.892z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.155" stroke-miterlimit="3.863" d="M14.712,49.892h2.851v-3.438h16.394v3.438
|
||||
h2.882v-3.687H37.8c1.58-2.293,1.301-4.401,1.301-7.716c0-0.775-0.464-0.775-0.619-0.992c-0.155-0.094-0.248-0.031-0.403-0.094
|
||||
l-3.626-7.747H17.037l-3.098,7.809c-0.062,0.063-0.217,0-0.341,0.155c-0.155,0.217-0.682,0.217-0.682,0.961
|
||||
c0,3.347-0.31,5.64,1.177,7.901h0.62V49.892z"/>
|
||||
<path fill="#FFFFFF" d="M36.901,37.342c-3.44-0.495-7.902-0.341-11.063-0.465c-3.223,0.124-7.654-0.03-11.156,0.465l2.634-6.756
|
||||
h16.176L36.901,37.342z"/>
|
||||
<path fill="none" stroke="#EF402B" stroke-width="0.155" stroke-miterlimit="3.863" d="M36.901,37.342
|
||||
c-3.44-0.495-7.902-0.341-11.063-0.465c-3.223,0.124-7.654-0.03-11.156,0.465l2.634-6.756h16.176L36.901,37.342z"/>
|
||||
</svg>
|
After (image error) Size: 3.7 KiB |
125
assets/layers/traffic_sign/images/be/C/Belgian_road_sign_C37.svg
Normal file
|
@ -0,0 +1,125 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
|
||||
<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"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="79.581px"
|
||||
height="79.485px"
|
||||
viewBox="0 0 79.581 79.485"
|
||||
enable-background="new 0 0 79.581 79.485"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="Belgian road sign C37.svg"><metadata
|
||||
id="metadata33"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs31"><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 39.7425 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="79.581001 : 39.7425 : 1"
|
||||
inkscape:persp3d-origin="39.790501 : 26.495 : 1"
|
||||
id="perspective35" /></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="738"
|
||||
id="namedview29"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.9691136"
|
||||
inkscape:cx="97.720247"
|
||||
inkscape:cy="39.7425"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<path
|
||||
stroke-miterlimit="3.863"
|
||||
d="m 39.784,79.4075 c -30.526,0 -49.596,-33.058 -34.334,-59.496 15.263,-26.438 53.42,-26.453 68.683,0 15.263,26.438 -3.823,59.496 -34.349,59.496 z"
|
||||
id="path23"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.155;stroke-miterlimit:3.86299992" /><path
|
||||
fill="#BFBFBF"
|
||||
d="M33.039,26.999H16.02L11.9,35.827c0.047,0.109-0.419,0.342-0.575,0.575 c-0.124,0.202-0.233,0.389-0.388,0.544c-0.202,0.28-0.233,0.699-0.28,0.777v3.621c0,1.586,0.124,4.771,1.834,4.927v4.508h2.596 v-4.306h18.883v4.306h2.643v-4.508c1.709-0.155,1.787-3.341,1.787-4.927v-3.621c0-0.078-0.031-0.497-0.264-0.777 c-0.125-0.155-0.28-0.342-0.389-0.544c-0.124-0.233-0.621-0.466-0.59-0.575L33.039,26.999z"
|
||||
id="path3" />
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#BFBFBF"
|
||||
stroke-width="0"
|
||||
stroke-miterlimit="3.863"
|
||||
d="M33.039,26.999H16.02L11.9,35.827 c0.047,0.109-0.419,0.342-0.575,0.575c-0.124,0.202-0.233,0.389-0.388,0.544c-0.202,0.28-0.233,0.699-0.28,0.777v3.621 c0,1.586,0.124,4.771,1.834,4.927v4.508h2.596v-4.306h18.883v4.306h2.643v-4.508c1.709-0.155,1.787-3.341,1.787-4.927v-3.621 c0-0.078-0.031-0.497-0.264-0.777c-0.125-0.155-0.28-0.342-0.389-0.544c-0.124-0.233-0.621-0.466-0.59-0.575L33.039,26.999z"
|
||||
id="path5" />
|
||||
<path
|
||||
fill="#FFFFFF"
|
||||
d="M25.889,27.854h6.606l3.419,7.926c-3.652-0.621-7.538-0.963-11.377-0.963c-3.854,0-7.74,0.342-11.346,0.963 l3.373-7.926H25.889z"
|
||||
id="path7" />
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#C0B6B3"
|
||||
stroke-width="0"
|
||||
stroke-miterlimit="3.863"
|
||||
d="M25.889,27.854h6.606l3.419,7.926 c-3.652-0.621-7.538-0.963-11.377-0.963c-3.854,0-7.74,0.342-11.346,0.963l3.373-7.926H25.889z"
|
||||
id="path9" />
|
||||
<path
|
||||
fill="#BFBFBF"
|
||||
d="M63.548,26.999H46.53l-4.119,8.828c0.03,0.109-0.467,0.342-0.592,0.575 c-0.107,0.202-0.264,0.389-0.388,0.544c-0.233,0.28-0.265,0.699-0.265,0.777v3.621c0,1.586,0.078,4.771,1.787,4.927v4.508h2.643 v-4.306h18.885v4.306h2.596v-4.508c1.709-0.155,1.834-3.341,1.834-4.927v-3.621c-0.047-0.078-0.078-0.497-0.28-0.777 c-0.155-0.155-0.265-0.342-0.39-0.544c-0.154-0.233-0.62-0.466-0.574-0.575L63.548,26.999z"
|
||||
id="path11" />
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#BFBFBF"
|
||||
stroke-width="0"
|
||||
stroke-miterlimit="3.863"
|
||||
d="M63.548,26.999H46.53l-4.119,8.828 c0.03,0.109-0.467,0.342-0.592,0.575c-0.107,0.202-0.264,0.389-0.388,0.544c-0.233,0.28-0.265,0.699-0.265,0.777v3.621 c0,1.586,0.078,4.771,1.787,4.927v4.508h2.643v-4.306h18.885v4.306h2.596v-4.508c1.709-0.155,1.834-3.341,1.834-4.927v-3.621 c-0.047-0.078-0.078-0.497-0.28-0.777c-0.155-0.155-0.265-0.342-0.39-0.544c-0.154-0.233-0.62-0.466-0.574-0.575L63.548,26.999z"
|
||||
id="path13" />
|
||||
<path
|
||||
fill="#FFFFFF"
|
||||
d="M56.399,27.854h6.604l3.373,7.926c-3.606-0.621-7.491-0.963-11.347-0.963c-3.838,0-7.724,0.342-11.377,0.963 l3.42-7.926H56.399z"
|
||||
id="path15" />
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#C0B6B3"
|
||||
stroke-width="0"
|
||||
stroke-miterlimit="3.863"
|
||||
d="M56.399,27.854h6.604l3.373,7.926 c-3.606-0.621-7.491-0.963-11.347-0.963c-3.838,0-7.724,0.342-11.377,0.963l3.42-7.926H56.399z"
|
||||
id="path17" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
fill="#BFBFBF"
|
||||
d="M12.103,52.474 M67.294,52.474H12.102v-2.161h55.192V52.474z"
|
||||
id="path19" />
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#BFBFBF"
|
||||
stroke-width="0"
|
||||
stroke-miterlimit="3.863"
|
||||
d="M12.103,52.474 M67.294,52.474H12.102v-2.161 h55.192V52.474z"
|
||||
id="path21" />
|
||||
|
||||
<path
|
||||
fill="#120C0E"
|
||||
d="M61.093,6.219c2.409,1.445,7.911,5.378,10.211,9.496L17.294,72.586c-4.974-4.15-7.15-6.233-9.31-8.984 L61.093,6.219z"
|
||||
id="path25" />
|
||||
<path
|
||||
fill="none"
|
||||
stroke="#000000"
|
||||
stroke-width="0"
|
||||
stroke-miterlimit="3.863"
|
||||
d="M61.093,6.219 c2.409,1.445,7.911,5.378,10.211,9.496L17.294,72.586c-4.974-4.15-7.15-6.233-9.31-8.984L61.093,6.219z"
|
||||
id="path27" />
|
||||
</svg>
|
After (image error) Size: 5.5 KiB |
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.917px" height="78.901px" viewBox="0 0 78.917 78.901" enable-background="new 0 0 78.917 78.901" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.458,78.901c-30.325,0-49.285-32.857-34.123-59.168
|
||||
s53.083-26.311,68.246,0C88.744,46.043,69.783,78.901,39.458,78.901z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.458,78.901
|
||||
c-30.325,0-49.285-32.857-34.123-59.168s53.083-26.311,68.246,0C88.744,46.043,69.783,78.901,39.458,78.901z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.458,67.908c-21.925,0-35.605-23.718-24.643-42.678
|
||||
c10.932-18.961,38.354-18.991,49.286,0C75.064,44.19,61.384,67.908,39.458,67.908z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.458,67.908
|
||||
c-21.925,0-35.605-23.718-24.643-42.678c10.932-18.961,38.354-18.991,49.286,0C75.064,44.19,61.384,67.908,39.458,67.908z"/>
|
||||
<path fill="#120C0E" d="M18.397,55.741h23.747V52.9h-0.525c-1.266-1.915-0.987-3.829-0.987-6.641c0-0.617,0.433-0.617,0.556-0.802
|
||||
c0.124-0.124,0.247-0.063,0.309-0.124l2.595-6.547h14.606l3.057,6.484c0.124,0.063,0.216,0,0.34,0.094
|
||||
c0.124,0.185,0.525,0.185,0.525,0.834c0,2.778,0.216,4.539-1.112,6.454h-0.803v3.088h0.556v0.524H17.935v-0.524H18.397z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.154" stroke-miterlimit="3.863" d="M18.397,55.741h23.747V52.9h-0.525
|
||||
c-1.266-1.915-0.987-3.829-0.987-6.641c0-0.617,0.433-0.617,0.556-0.802c0.124-0.124,0.247-0.063,0.309-0.124l2.595-6.547h14.606
|
||||
l3.057,6.484c0.124,0.063,0.216,0,0.34,0.094c0.124,0.185,0.525,0.185,0.525,0.834c0,2.778,0.216,4.539-1.112,6.454h-0.803v3.088
|
||||
h0.556v0.524H17.935v-0.524H18.397z"/>
|
||||
<path fill="#FFFFFF" d="M61.137,45.118c-2.902-0.402-6.64-0.278-9.295-0.371c-2.718,0.093-6.423-0.031-9.357,0.371l2.192-5.651
|
||||
h13.589L61.137,45.118z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.154" stroke-miterlimit="3.863" d="M61.137,45.118
|
||||
c-2.902-0.402-6.64-0.278-9.295-0.371c-2.718,0.093-6.423-0.031-9.357,0.371l2.192-5.651h13.589L61.137,45.118z"/>
|
||||
<path fill="#FFFFFF" d="M44.554,55.801 M58.327,55.801H44.554v-2.872h13.773V55.801z"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0.154" stroke-miterlimit="3.863" d="M44.554,55.801 M58.327,55.801H44.554v-2.872
|
||||
h13.773V55.801z"/>
|
||||
<path fill="#ED1C24" d="M34.394,55.554h2.903v-4.199h1.451l-0.03-25.909c0-0.957-0.803-1.729-1.73-1.729H18.831
|
||||
c-0.958,0-1.73,0.771-1.73,1.636v25.909l1.297,0.031v4.261h3.057l-0.03-4.292h12.938L34.394,55.554z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.154" stroke-miterlimit="3.863" d="M34.394,55.554h2.903v-4.199h1.451
|
||||
l-0.03-25.909c0-0.957-0.803-1.729-1.73-1.729H18.831c-0.958,0-1.73,0.771-1.73,1.636v25.909l1.297,0.031v4.261h3.057l-0.03-4.292
|
||||
h12.938L34.394,55.554z"/>
|
||||
</svg>
|
After (image error) Size: 3.1 KiB |
|
@ -0,0 +1,43 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.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="Calque_1" sodipodi:docname="Belgian_road_sign_C41.svg" inkscape:version="0.47 r22583" 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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="79.92px" height="79.82px"
|
||||
viewBox="0 0 79.92 79.82" enable-background="new 0 0 79.92 79.82" xml:space="preserve">
|
||||
<defs>
|
||||
|
||||
|
||||
<inkscape:perspective id="perspective33" inkscape:persp3d-origin="39.9095 : 26.572001 : 1" inkscape:vp_z="79.819 : 39.858002 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 39.858002 : 1" sodipodi:type="inkscape:persp3d">
|
||||
</inkscape:perspective>
|
||||
</defs>
|
||||
<sodipodi:namedview id="namedview27" inkscape:current-layer="Calque_1" inkscape:window-y="-8" inkscape:window-x="-8" inkscape:window-height="738" inkscape:window-width="1280" inkscape:pageshadow="2" inkscape:pageopacity="0" inkscape:window-maximized="1" inkscape:cy="39.858002" inkscape:cx="-18.188604" inkscape:zoom="2.9605097" showgrid="false" guidetolerance="10" gridtolerance="10" objecttolerance="10" borderopacity="1" bordercolor="#666666" pagecolor="#ffffff">
|
||||
</sodipodi:namedview>
|
||||
<path id="path3" fill="#FFFFFF" d="M39.959,79.692c-30.611,0-49.751-33.136-34.446-59.664C20.819-6.5,59.099-6.5,74.404,20.028
|
||||
S70.569,79.692,39.959,79.692z"/>
|
||||
<path id="path5" fill="#CCCCCC" d="M30.295,58.618h3.772v-4.83h1.902l-0.031-29.989c0-1.06-1.029-1.964-2.214-1.964H9.94
|
||||
c-1.216,0-2.213,0.904-2.213,1.839v30.021l1.683,0.031v4.894h3.928l0.031-4.925h16.895L30.295,58.618z"/>
|
||||
<path id="path7" fill="none" stroke="#CCCCCC" stroke-width="0.156" stroke-miterlimit="3.863" d="M30.295,58.618h3.772v-4.83h1.902
|
||||
l-0.031-29.989c0-1.06-1.029-1.964-2.214-1.964H9.94c-1.216,0-2.213,0.904-2.213,1.839v30.021l1.683,0.031v4.894h3.928l0.031-4.925
|
||||
h16.895L30.295,58.618z"/>
|
||||
<path id="path9" fill="none" d="M6.011,58.9h34.009 M40.021,59.149H74.03"/>
|
||||
<path id="path11" fill="#CCCCCC" d="M9.908,58.464h34.29v-4.114h-0.779c-1.809-2.775-1.402-5.519-1.402-9.603
|
||||
c0-0.873,0.623-0.873,0.779-1.153c0.188-0.188,0.375-0.093,0.467-0.188l3.742-9.445h21.07l4.396,9.384
|
||||
c0.188,0.062,0.313,0,0.498,0.125c0.188,0.247,0.748,0.247,0.748,1.184c0,4.021,0.313,6.577-1.59,9.352h-1.152v4.459h2.93v0.748
|
||||
H6.011l-0.03-0.748H9.908z"/>
|
||||
<path id="path13" fill="none" stroke="#CCCCCC" stroke-width="0.156" stroke-miterlimit="3.863" d="M9.908,58.464h34.29v-4.114
|
||||
h-0.779c-1.809-2.775-1.402-5.519-1.402-9.603c0-0.873,0.623-0.873,0.779-1.153c0.188-0.188,0.375-0.093,0.467-0.188l3.742-9.445
|
||||
h21.07l4.396,9.384c0.188,0.062,0.313,0,0.498,0.125c0.188,0.247,0.748,0.247,0.748,1.184c0,4.021,0.313,6.577-1.59,9.352h-1.152
|
||||
v4.459h2.93v0.748H6.011l-0.03-0.748H9.908z"/>
|
||||
<path id="path15" fill="#FFFFFF" d="M71.599,43.096c-4.209-0.563-9.602-0.406-13.436-0.53c-3.896,0.124-9.259-0.032-13.498,0.53
|
||||
l3.18-8.168h19.606L71.599,43.096z"/>
|
||||
<path id="path17" fill="none" stroke="#CCCCCC" stroke-width="0.156" stroke-miterlimit="3.863" d="M71.599,43.096
|
||||
c-4.209-0.563-9.602-0.406-13.436-0.53c-3.896,0.124-9.259-0.032-13.498,0.53l3.18-8.168h19.606L71.599,43.096z"/>
|
||||
<path id="path19" fill="#FFFFFF" d="M67.548,58.557H47.659V54.38h19.889V58.557z"/>
|
||||
<path id="path21" fill="none" stroke="#CCCCCC" stroke-width="0.156" stroke-miterlimit="3.863" d="M67.548,58.557H47.659V54.38
|
||||
h19.889V58.557z"/>
|
||||
<path id="path23" fill="#120C0E" d="M61.312,6.312c2.432,1.434,7.949,5.393,10.256,9.508L17.389,72.865
|
||||
c-4.987-4.177-7.17-6.265-9.32-9.009L61.312,6.312z"/>
|
||||
<path id="path25" fill="none" d="M61.312,6.312c2.432,1.434,7.949,5.393,10.256,9.508L17.389,72.865
|
||||
c-4.987-4.177-7.17-6.265-9.32-9.009L61.312,6.312z"/>
|
||||
</svg>
|
After (image error) Size: 4 KiB |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80">
|
||||
<circle cx="40" cy="40" r="39" stroke="#000" fill="#FFF"/>
|
||||
<path fill="#111" d="m8,62 54-54 6,5 5,6-54,54-6-5"/>
|
||||
</svg>
|
After (image error) Size: 223 B |
111
assets/layers/traffic_sign/images/be/C/Belgian_road_sign_C47.svg
Normal file
|
@ -0,0 +1,111 @@
|
|||
<?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="900.39996"
|
||||
height="900.40021"
|
||||
viewBox="-50 -30 90.039874 90.040032"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="11.svg">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<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="1057"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
fit-margin-top="0.2"
|
||||
fit-margin-left="0.2"
|
||||
fit-margin-right="0.2"
|
||||
fit-margin-bottom="0.2"
|
||||
inkscape:zoom="0.68103018"
|
||||
inkscape:cx="314.72463"
|
||||
inkscape:cy="293.01728"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:showpageshadow="true"
|
||||
borderlayer="false"
|
||||
showborder="true" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3124-1"
|
||||
d="m -4.9800842,60.020032 c 24.8528572,0 45.0000232,-20.147185 45.0000232,-45.000028 0,-24.852801 -20.147166,-45.000004 -45.0000202,-45.000004 -24.8527938,0 -44.9999858,20.147203 -44.9999858,45.000004 0,24.852843 20.147192,45.000028 44.9999858,45.000028 z"
|
||||
style="fill:#ed1c24;fill-opacity:1;stroke:none"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
sodipodi:nodetypes="sssss"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
d="m -4.9800762,47.53853 c 17.9594822,0 32.5185192,-14.559035 32.5185192,-32.51852 0,-17.959452 -14.559037,-32.518507 -32.5185192,-32.518507 -17.9594428,0 -32.5184888,14.559055 -32.5184888,32.518507 0,17.959485 14.559046,32.51852 32.5184888,32.51852 z"
|
||||
id="path3977"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="matrix(0.10000001,0,0,0.10000001,-62.437385,71.749554)"
|
||||
id="g3039" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
clip-rule="evenodd"
|
||||
d="m -27.145304,8.383462 v 3.713835 h 1.900522 c 1.813308,0 1.813308,-3.713835 0,-3.713835 h -1.900522 z m -2.53479,-2.3580974 V 20.702893 h 2.53479 v -6.247498 h 1.900522 c 2.112313,0 3.889382,-1.427091 3.889382,-4.223509 0,-2.7816956 -1.777069,-4.2065214 -3.889382,-4.2065214 h -4.435312 z"
|
||||
id="path11"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
<polygon
|
||||
transform="matrix(1.132612,0,0,1.132612,-50.051253,-29.682492)"
|
||||
clip-rule="evenodd"
|
||||
points="33.602,44.486 33.602,42.419 29.438,42.419 29.438,38.737 33.229,38.737 33.229,36.67 29.438,36.67 29.438,33.609 33.602,33.609 33.602,31.527 27.201,31.527 27.201,44.486 "
|
||||
id="polygon15"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
clip-rule="evenodd"
|
||||
d="m -5.9564081,14.790649 1.0034959,-4.682219 1.0012283,4.682219 h -2.0047242 z m -3.9244947,5.912244 3.1328016,-14.6775284 h 3.5903779 L -0.0271792,20.702893 H -2.6842936 L -3.4941065,16.97207 h -2.9391274 l -0.7916941,3.730823 h -2.6559748 z"
|
||||
id="path19"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
clip-rule="evenodd"
|
||||
d="M 10.357743,10.582995 C 10.289789,7.4150788 9.3723709,5.7082328 6.0640111,5.7082328 c -4.3129874,0 -4.171411,3.6254906 -4.171411,7.6553242 0,4.047966 -0.1415764,7.656468 4.171411,7.656468 0.914018,0 2.3037317,-0.404342 2.8145406,-1.26626 v 0.950261 H 10.357743 V 12.731559 H 5.992656 v 2.341109 h 1.8303014 v 1.090706 c 0,1.179048 0.022658,2.885895 -1.7589463,2.885895 -1.5143026,0 -1.6377573,-1.706847 -1.6377573,-2.885895 v -5.580379 c 0,-1.1960382 0.1234547,-2.9028852 1.6377573,-2.9028852 1.777068,0 1.5822579,1.706847 1.7589463,2.9028852 h 2.5347856 z"
|
||||
id="path23"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
<polygon
|
||||
transform="matrix(1.132612,0,0,1.132612,-50.051253,-29.682492)"
|
||||
clip-rule="evenodd"
|
||||
points="61.602,44.486 61.602,42.419 57.438,42.419 57.438,38.737 61.229,38.737 61.229,36.67 57.438,36.67 57.438,33.609 61.602,33.609 61.602,31.527 55.201,31.527 55.201,44.486 "
|
||||
id="polygon27"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
clip-rule="evenodd"
|
||||
d="m -29.680064,26.620028 m 49.400013,0 h -49.400013 v -2.76 h 49.400013 v 2.76 z"
|
||||
id="path31"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none" />
|
||||
</svg>
|
After (image error) Size: 5.1 KiB |
101
assets/layers/traffic_sign/images/be/C/Belgian_road_sign_C48.svg
Normal file
|
@ -0,0 +1,101 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.873px" height="78.767px" viewBox="0 0 78.873 78.767" enable-background="new 0 0 78.873 78.767" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.443,0c30.309,0,49.253,32.81,34.091,59.074
|
||||
c-15.146,26.248-53.037,26.264-68.2,0C-9.827,32.81,9.134,0,39.443,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.443,0c30.309,0,49.253,32.81,34.091,59.074
|
||||
c-15.146,26.248-53.037,26.264-68.2,0C-9.827,32.81,9.134,0,39.443,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.427,67.828c-21.909,0-35.605-23.716-24.642-42.676
|
||||
c10.947-18.977,38.337-18.977,49.285,0C75.017,44.112,61.322,67.828,39.427,67.828z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.427,67.828
|
||||
c-21.909,0-35.605-23.716-24.642-42.676c10.947-18.977,38.337-18.977,49.285,0C75.017,44.112,61.322,67.828,39.427,67.828z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.554,30.88c-0.047-2.007-0.633-3.088-2.718-3.088
|
||||
c-2.748,0-2.655,2.285-2.655,4.848c0,2.563-0.093,4.864,2.655,4.864c2.085,0,2.671-1.081,2.718-3.088h-1.606
|
||||
c-0.108,0.741,0.015,1.837-1.112,1.837c-0.972,0-1.05-1.08-1.05-1.837V30.88c0-0.756,0.078-1.837,1.05-1.837
|
||||
c1.127,0,1.004,1.081,1.112,1.837H27.554z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M27.554,30.88
|
||||
c-0.047-2.007-0.633-3.088-2.718-3.088c-2.748,0-2.655,2.285-2.655,4.848c0,2.563-0.093,4.864,2.655,4.864
|
||||
c2.085,0,2.671-1.081,2.718-3.088h-1.606c-0.108,0.741,0.015,1.837-1.112,1.837c-0.972,0-1.05-1.08-1.05-1.837V30.88
|
||||
c0-0.756,0.078-1.837,1.05-1.837c1.127,0,1.004,1.081,1.112,1.837H27.554z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.503,29.475v2.378h1.204c1.158,0,1.158-2.378,0-2.378H30.503z M28.897,27.993
|
||||
v9.31h1.606v-4.246h1.204c0.556,0,1.004,0.603,1.004,1.205v1.713c0,0.465,0.077,0.911,0.247,1.328h1.606v-0.185
|
||||
c-0.139-0.154-0.247-0.834-0.247-1.144v-1.99c0-0.681-0.541-1.221-1.39-1.529c0.695-0.201,1.251-0.679,1.251-1.791
|
||||
c0-1.776-1.128-2.671-2.471-2.671H28.897z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M30.503,29.475v2.378h1.204
|
||||
c1.158,0,1.158-2.378,0-2.378H30.503z M28.897,27.993v9.31h1.606v-4.246h1.204c0.556,0,1.004,0.603,1.004,1.205v1.713
|
||||
c0,0.465,0.077,0.911,0.247,1.328h1.606v-0.185c-0.139-0.154-0.247-0.834-0.247-1.144v-1.99c0-0.681-0.541-1.221-1.39-1.529
|
||||
c0.695-0.201,1.251-0.679,1.251-1.791c0-1.776-1.128-2.671-2.471-2.671H28.897z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.783,27.993v5.526c0,2.595,0.448,3.984,2.656,3.984s2.656-1.39,2.656-3.984
|
||||
v-5.526h-1.606v6.423c0,1.544-0.386,1.837-1.05,1.837c-0.664,0-1.05-0.293-1.05-1.837v-6.423H35.783z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M35.783,27.993v5.526
|
||||
c0,2.595,0.448,3.984,2.656,3.984s2.656-1.39,2.656-3.984v-5.526h-1.606v6.423c0,1.544-0.386,1.837-1.05,1.837
|
||||
c-0.664,0-1.05-0.293-1.05-1.837v-6.423H35.783z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.438,27.993 M44.044,27.993h-1.605v9.311h1.605V27.993z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M42.438,27.993 M44.044,27.993h-1.605v9.311
|
||||
h1.605V27.993z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M50.56,30.834v-0.757c0-1.56-1.297-2.3-2.672-2.3c-1.297,0-2.424,0.895-2.424,2.3
|
||||
c0,0.958,0.124,1.637,0.91,2.224l1.978,1.466c0.494,0.356,0.694,0.695,0.694,1.298c0,0.771-0.401,1.111-1.065,1.111
|
||||
c-0.616,0-0.926-0.633-0.926-1.188V34.03h-1.668v0.834c0,1.697,0.987,2.64,2.594,2.64c1.868,0,2.748-0.834,2.748-2.764
|
||||
c0-1.158-0.262-1.621-1.173-2.285l-1.714-1.282C47.379,30.849,47.07,30.71,47.07,30c0-0.571,0.34-0.865,0.865-0.865
|
||||
c0.557,0,1.003,0.386,1.003,1.035v0.664H50.56z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M50.56,30.834v-0.757c0-1.56-1.297-2.3-2.672-2.3
|
||||
c-1.297,0-2.424,0.895-2.424,2.3c0,0.958,0.124,1.637,0.91,2.224l1.978,1.466c0.494,0.356,0.694,0.695,0.694,1.298
|
||||
c0,0.771-0.401,1.111-1.065,1.111c-0.616,0-0.926-0.633-0.926-1.188V34.03h-1.668v0.834c0,1.697,0.987,2.64,2.594,2.64
|
||||
c1.868,0,2.748-0.834,2.748-2.764c0-1.158-0.262-1.621-1.173-2.285l-1.714-1.282C47.379,30.849,47.07,30.71,47.07,30
|
||||
c0-0.571,0.34-0.865,0.865-0.865c0.557,0,1.003,0.386,1.003,1.035v0.664H50.56z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="52.074,27.993 52.074,37.303 56.674,37.303 56.674,35.806 53.679,35.806
|
||||
53.679,33.181 56.396,33.181 56.396,31.683 53.679,31.683 53.679,29.475 56.674,29.475 56.674,27.993 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="52.074,27.993 52.074,37.303
|
||||
56.674,37.303 56.674,35.806 53.679,35.806 53.679,33.181 56.396,33.181 56.396,31.683 53.679,31.683 53.679,29.475 56.674,29.475
|
||||
56.674,27.993 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.042,44.282c-0.047-1.992-0.633-3.072-2.718-3.072
|
||||
c-2.748,0-2.656,2.285-2.656,4.848c0,2.563-0.092,4.849,2.656,4.849c2.085,0,2.671-1.081,2.718-3.088h-1.606
|
||||
c-0.108,0.757,0.015,1.837-1.112,1.837c-0.973,0-1.05-1.08-1.05-1.837v-3.536c0-0.741,0.077-1.822,1.05-1.822
|
||||
c1.127,0,1.004,1.081,1.112,1.822H22.042z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M22.042,44.282
|
||||
c-0.047-1.992-0.633-3.072-2.718-3.072c-2.748,0-2.656,2.285-2.656,4.848c0,2.563-0.092,4.849,2.656,4.849
|
||||
c2.085,0,2.671-1.081,2.718-3.088h-1.606c-0.108,0.757,0.015,1.837-1.112,1.837c-0.973,0-1.05-1.08-1.05-1.837v-3.536
|
||||
c0-0.741,0.077-1.822,1.05-1.822c1.127,0,1.004,1.081,1.112,1.822H22.042z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.025,49.655c-0.88,0-1.034-0.617-1.034-1.837v-3.536
|
||||
c0-1.204,0.154-1.822,1.034-1.822c0.896,0,1.05,0.618,1.05,1.822v3.536C27.075,49.038,26.921,49.655,26.025,49.655z M26.025,50.906
|
||||
c-2.146,0-2.64-1.097-2.64-4.849c0-3.768,0.494-4.848,2.64-4.848c2.162,0,2.656,1.08,2.656,4.848
|
||||
C28.681,49.81,28.187,50.906,26.025,50.906z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M26.025,49.655c-0.88,0-1.034-0.617-1.034-1.837
|
||||
v-3.536c0-1.204,0.154-1.822,1.034-1.822c0.896,0,1.05,0.618,1.05,1.822v3.536C27.075,49.038,26.921,49.655,26.025,49.655z
|
||||
M26.025,50.906c-2.146,0-2.64-1.097-2.64-4.849c0-3.768,0.494-4.848,2.64-4.848c2.162,0,2.656,1.08,2.656,4.848
|
||||
C28.681,49.81,28.187,50.906,26.025,50.906z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="30.024,41.41 30.024,50.705 31.63,50.705 31.63,44.174 34.1,50.705
|
||||
35.922,50.705 35.922,41.41 34.317,41.41 34.317,47.787 31.908,41.41 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="30.024,41.41 30.024,50.705
|
||||
31.63,50.705 31.63,44.174 34.1,50.705 35.922,50.705 35.922,41.41 34.317,41.41 34.317,47.787 31.908,41.41 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="37.266,41.41 37.266,42.893 39.134,42.893 39.134,50.705 40.74,50.705
|
||||
40.74,42.893 42.623,42.893 42.623,41.41 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="37.266,41.41 37.266,42.893
|
||||
39.134,42.893 39.134,50.705 40.74,50.705 40.74,42.893 42.623,42.893 42.623,41.41 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.572,42.893v2.362h1.205c1.158,0,1.158-2.362,0-2.362H45.572z M43.967,41.41
|
||||
v9.295h1.604v-4.23h1.205c0.557,0,1.004,0.586,1.004,1.189v1.729c0,0.448,0.078,0.896,0.246,1.313h1.606V50.52
|
||||
c-0.14-0.153-0.247-0.834-0.247-1.127v-1.991c0-0.695-0.54-1.221-1.389-1.544c0.693-0.186,1.25-0.68,1.25-1.776
|
||||
c0-1.775-1.127-2.671-2.471-2.671H43.967z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M45.572,42.893v2.362h1.205
|
||||
c1.158,0,1.158-2.362,0-2.362H45.572z M43.967,41.41v9.295h1.604v-4.23h1.205c0.557,0,1.004,0.586,1.004,1.189v1.729
|
||||
c0,0.448,0.078,0.896,0.246,1.313h1.606V50.52c-0.14-0.153-0.247-0.834-0.247-1.127v-1.991c0-0.695-0.54-1.221-1.389-1.544
|
||||
c0.693-0.186,1.25-0.68,1.25-1.776c0-1.775-1.127-2.671-2.471-2.671H43.967z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.494,49.655c-0.881,0-1.035-0.617-1.035-1.837v-3.536
|
||||
c0-1.204,0.154-1.822,1.035-1.822c0.896,0,1.049,0.618,1.049,1.822v3.536C54.542,49.038,54.389,49.655,53.494,49.655z
|
||||
M53.494,50.906c-2.146,0-2.641-1.097-2.641-4.849c0-3.768,0.494-4.848,2.641-4.848c2.162,0,2.656,1.08,2.656,4.848
|
||||
C56.15,49.81,55.656,50.906,53.494,50.906z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M53.494,49.655c-0.881,0-1.035-0.617-1.035-1.837
|
||||
v-3.536c0-1.204,0.154-1.822,1.035-1.822c0.896,0,1.049,0.618,1.049,1.822v3.536C54.542,49.038,54.389,49.655,53.494,49.655z
|
||||
M53.494,50.906c-2.146,0-2.641-1.097-2.641-4.849c0-3.768,0.494-4.848,2.641-4.848c2.162,0,2.656,1.08,2.656,4.848
|
||||
C56.15,49.81,55.656,50.906,53.494,50.906z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="57.492,41.41 57.492,50.705 62.186,50.705 62.186,49.223 59.098,49.223
|
||||
59.098,41.41 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" points="57.492,41.41 57.492,50.705
|
||||
62.186,50.705 62.186,49.223 59.098,49.223 59.098,41.41 "/>
|
||||
<path fill="#ED1C24" d="M21.748,17.262c-1.497,1.158-2.964,2.625-4.122,3.906l39.62,40.299c1.343-1.251,2.439-2.208,3.968-3.906
|
||||
L21.748,17.262z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0.154" stroke-miterlimit="3.863" d="M21.748,17.262
|
||||
c-1.497,1.158-2.964,2.625-4.122,3.906l39.62,40.299c1.343-1.251,2.439-2.208,3.968-3.906L21.748,17.262z"/>
|
||||
</svg>
|
After (image error) Size: 9.6 KiB |
116
assets/layers/traffic_sign/images/be/C/Belgian_road_sign_C49.svg
Normal file
|
@ -0,0 +1,116 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.404px" height="79.309px" viewBox="0 0 79.404 79.309" enable-background="new 0 0 79.404 79.309" xml:space="preserve">
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M15.953,71.431
|
||||
C10.919,64.781,7.92,56.483,7.92,47.518c0-21.893,17.76-39.653,39.654-39.653c8.98,0,17.248,2.983,23.897,8.017 M62.988,7.927
|
||||
c4.971,6.635,7.924,14.87,7.924,23.789c0,21.878-17.76,39.638-39.638,39.638c-8.484,0-16.347-2.657-22.795-7.195"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.695,79.309c-30.517,0-49.582-33.05-34.324-59.48
|
||||
c15.259-26.43,53.406-26.446,68.664,0C89.292,46.259,70.212,79.309,39.695,79.309z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" d="M39.695,79.309
|
||||
c-30.517,0-49.582-33.05-34.324-59.48c15.259-26.43,53.406-26.446,68.664,0C89.292,46.259,70.212,79.309,39.695,79.309z"/>
|
||||
<polygon fill="#FFFFFF" points="46.299,53.996 46.299,45.451 47.417,45.451 47.417,49.787 48.77,47.781 50.059,47.781
|
||||
48.242,50.733 50.167,53.996 48.847,53.996 47.496,51.838 47.496,53.996 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" points="46.299,53.996 46.299,45.451
|
||||
47.417,45.451 47.417,49.787 48.77,47.781 50.059,47.781 48.242,50.733 50.167,53.996 48.847,53.996 47.496,51.838 47.496,53.996
|
||||
"/>
|
||||
<path fill="#FFFFFF" d="M56.477,53.889v-4.506c0-0.404-0.342-0.84-0.762-0.84c-0.482,0-0.839,0.436-0.839,0.84v4.613h-1.025v-4.582
|
||||
c0-0.436-0.357-0.793-0.793-0.793c-0.466,0-0.822,0.357-0.822,0.793v4.582h-1.119v-6.261h1.119v0.248
|
||||
c0.264-0.248,0.651-0.45,1.086-0.45c0.498,0,1.104,0.279,1.399,0.809c0.233-0.42,0.698-0.731,1.274-0.731
|
||||
c0.886,0,1.537,0.731,1.537,1.585v4.693H56.477z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M56.477,53.889v-4.506
|
||||
c0-0.404-0.342-0.84-0.762-0.84c-0.482,0-0.839,0.436-0.839,0.84v4.613h-1.025v-4.582c0-0.436-0.357-0.793-0.793-0.793
|
||||
c-0.466,0-0.822,0.357-0.822,0.793v4.582h-1.119v-6.261h1.119v0.248c0.264-0.248,0.651-0.45,1.086-0.45
|
||||
c0.498,0,1.104,0.279,1.399,0.809c0.233-0.42,0.698-0.731,1.274-0.731c0.886,0,1.537,0.731,1.537,1.585v4.693H56.477z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M23.194,20.684c-0.062-2.813-0.886-4.335-3.823-4.335
|
||||
c-3.838,0-3.713,3.216-3.713,6.821c0,3.589-0.125,6.805,3.713,6.805c2.937,0,3.761-1.507,3.823-4.319h-2.253
|
||||
c-0.156,1.041,0.015,2.564-1.57,2.564c-1.351,0-1.46-1.508-1.46-2.564v-4.972c0-1.057,0.109-2.58,1.46-2.58
|
||||
c1.585,0,1.414,1.523,1.57,2.58H23.194z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M23.194,20.684
|
||||
c-0.062-2.813-0.886-4.335-3.823-4.335c-3.838,0-3.713,3.216-3.713,6.821c0,3.589-0.125,6.805,3.713,6.805
|
||||
c2.937,0,3.761-1.507,3.823-4.319h-2.253c-0.156,1.041,0.015,2.564-1.57,2.564c-1.351,0-1.46-1.508-1.46-2.564v-4.972
|
||||
c0-1.057,0.109-2.58,1.46-2.58c1.585,0,1.414,1.523,1.57,2.58H23.194z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M27.327,18.726v3.309h1.694c1.6,0,1.6-3.309,0-3.309H27.327z
|
||||
M25.074,16.627v13.068h2.253v-5.951h1.694c0.776,0,1.398,0.839,1.398,1.678v2.424c0,0.637,0.093,1.274,0.342,1.849h2.253v-0.249
|
||||
c-0.187-0.233-0.342-1.181-0.342-1.6V25.05c0-0.964-0.777-1.725-1.942-2.16c0.963-0.264,1.74-0.948,1.74-2.502
|
||||
c0-2.501-1.585-3.76-3.449-3.76H25.074z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M27.327,18.726v3.309h1.694
|
||||
c1.6,0,1.6-3.309,0-3.309H27.327z M25.074,16.627v13.068h2.253v-5.951h1.694c0.776,0,1.398,0.839,1.398,1.678v2.424
|
||||
c0,0.637,0.093,1.274,0.342,1.849h2.253v-0.249c-0.187-0.233-0.342-1.181-0.342-1.6V25.05c0-0.964-0.777-1.725-1.942-2.16
|
||||
c0.963-0.264,1.74-0.948,1.74-2.502c0-2.501-1.585-3.76-3.449-3.76H25.074z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M34.723,16.627v7.754c0,3.651,0.622,5.593,3.729,5.593
|
||||
c3.092,0,3.729-1.942,3.729-5.593v-7.754h-2.253v9.028c0,2.16-0.543,2.564-1.476,2.564c-0.932,0-1.476-0.404-1.476-2.564v-9.028
|
||||
H34.723z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M34.723,16.627v7.754
|
||||
c0,3.651,0.622,5.593,3.729,5.593c3.092,0,3.729-1.942,3.729-5.593v-7.754h-2.253v9.028c0,2.16-0.543,2.564-1.476,2.564
|
||||
c-0.932,0-1.476-0.404-1.476-2.564v-9.028H34.723z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M44.062,16.627 M46.315,16.627h-2.253v13.068h2.253V16.627z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M44.062,16.627 M46.315,16.627h-2.253v13.068
|
||||
h2.253V16.627z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M55.451,20.622v-1.057c0-2.191-1.802-3.232-3.744-3.232
|
||||
c-1.818,0-3.418,1.259-3.418,3.232c0,1.336,0.186,2.284,1.289,3.108l2.797,2.065c0.684,0.497,0.947,0.979,0.947,1.818
|
||||
c0,1.088-0.543,1.569-1.49,1.569c-0.855,0-1.307-0.885-1.307-1.678v-1.336h-2.33v1.15c0,2.393,1.383,3.729,3.637,3.729
|
||||
c2.641,0,3.869-1.181,3.869-3.884c0-1.616-0.373-2.285-1.633-3.217l-2.424-1.787c-0.637-0.466-1.088-0.652-1.088-1.662
|
||||
c0-0.793,0.482-1.212,1.212-1.212c0.776,0,1.414,0.559,1.414,1.46v0.933H55.451z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M55.451,20.622v-1.057
|
||||
c0-2.191-1.802-3.232-3.744-3.232c-1.818,0-3.418,1.259-3.418,3.232c0,1.336,0.186,2.284,1.289,3.108l2.797,2.065
|
||||
c0.684,0.497,0.947,0.979,0.947,1.818c0,1.088-0.543,1.569-1.49,1.569c-0.855,0-1.307-0.885-1.307-1.678v-1.336h-2.33v1.15
|
||||
c0,2.393,1.383,3.729,3.637,3.729c2.641,0,3.869-1.181,3.869-3.884c0-1.616-0.373-2.285-1.633-3.217l-2.424-1.787
|
||||
c-0.637-0.466-1.088-0.652-1.088-1.662c0-0.793,0.482-1.212,1.212-1.212c0.776,0,1.414,0.559,1.414,1.46v0.933H55.451z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" points="57.58,16.627 57.58,29.695 64.029,29.695 64.029,27.613
|
||||
59.833,27.613 59.833,23.899 63.64,23.899 63.64,21.817 59.833,21.817 59.833,18.726 64.029,18.726 64.029,16.627 "/>
|
||||
<polygon fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" points="57.58,16.627 57.58,29.695
|
||||
64.029,29.695 64.029,27.613 59.833,27.613 59.833,23.899 63.64,23.899 63.64,21.817 59.833,21.817 59.833,18.726 64.029,18.726
|
||||
64.029,16.627 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M15.44,39.5c-0.062-2.813-0.885-4.335-3.822-4.335
|
||||
c-3.838,0-3.714,3.216-3.714,6.806c0,3.605-0.124,6.806,3.714,6.806c2.937,0,3.76-1.508,3.822-4.319h-2.253
|
||||
c-0.155,1.057,0.016,2.578-1.569,2.578c-1.352,0-1.461-1.521-1.461-2.578V39.5c0-1.072,0.109-2.58,1.461-2.58
|
||||
c1.585,0,1.414,1.523,1.569,2.58H15.44z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M15.44,39.5
|
||||
c-0.062-2.813-0.885-4.335-3.822-4.335c-3.838,0-3.714,3.216-3.714,6.806c0,3.605-0.124,6.806,3.714,6.806
|
||||
c2.937,0,3.76-1.508,3.822-4.319h-2.253c-0.155,1.057,0.016,2.578-1.569,2.578c-1.352,0-1.461-1.521-1.461-2.578V39.5
|
||||
c0-1.072,0.109-2.58,1.461-2.58c1.585,0,1.414,1.523,1.569,2.58H15.44z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M21.034,47.035c-1.243,0-1.461-0.869-1.461-2.578V39.5
|
||||
c0-1.709,0.218-2.58,1.461-2.58c1.259,0,1.476,0.871,1.476,2.58v4.957C22.51,46.166,22.293,47.035,21.034,47.035z M21.034,48.776
|
||||
c-3.014,0-3.714-1.522-3.714-6.806c0-5.268,0.7-6.806,3.714-6.806c3.03,0,3.729,1.539,3.729,6.806
|
||||
C24.763,47.254,24.064,48.776,21.034,48.776z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M21.034,47.035c-1.243,0-1.461-0.869-1.461-2.578
|
||||
V39.5c0-1.709,0.218-2.58,1.461-2.58c1.259,0,1.476,0.871,1.476,2.58v4.957C22.51,46.166,22.293,47.035,21.034,47.035z
|
||||
M21.034,48.776c-3.014,0-3.714-1.522-3.714-6.806c0-5.268,0.7-6.806,3.714-6.806c3.03,0,3.729,1.539,3.729,6.806
|
||||
C24.763,47.254,24.064,48.776,21.034,48.776z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" points="26.643,35.444 26.643,48.496 28.896,48.496 28.896,39.345
|
||||
32.361,48.496 34.925,48.496 34.925,35.444 32.672,35.444 32.672,44.41 29.285,35.444 "/>
|
||||
<polygon fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" points="26.643,35.444 26.643,48.496
|
||||
28.896,48.496 28.896,39.345 32.361,48.496 34.925,48.496 34.925,35.444 32.672,35.444 32.672,44.41 29.285,35.444 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" points="36.805,35.444 36.805,37.543 39.431,37.543 39.431,48.496
|
||||
41.684,48.496 41.684,37.543 44.326,37.543 44.326,35.444 "/>
|
||||
<polygon fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" points="36.805,35.444 36.805,37.543
|
||||
39.431,37.543 39.431,48.496 41.684,48.496 41.684,37.543 44.326,37.543 44.326,35.444 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M48.458,37.543v3.309h1.693c1.602,0,1.602-3.309,0-3.309H48.458z
|
||||
M46.207,35.444v13.052h2.252v-5.951h1.693c0.777,0,1.399,0.84,1.399,1.679v2.424c0,0.638,0.093,1.274,0.342,1.849h2.253v-0.248
|
||||
c-0.188-0.217-0.342-1.182-0.342-1.601v-2.797c0-0.963-0.777-1.709-1.941-2.144c0.963-0.265,1.739-0.965,1.739-2.518
|
||||
c0-2.486-1.585-3.745-3.45-3.745H46.207z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M48.458,37.543v3.309h1.693
|
||||
c1.602,0,1.602-3.309,0-3.309H48.458z M46.207,35.444v13.052h2.252v-5.951h1.693c0.777,0,1.399,0.84,1.399,1.679v2.424
|
||||
c0,0.638,0.093,1.274,0.342,1.849h2.253v-0.248c-0.188-0.217-0.342-1.182-0.342-1.601v-2.797c0-0.963-0.777-1.709-1.941-2.144
|
||||
c0.963-0.265,1.739-0.965,1.739-2.518c0-2.486-1.585-3.745-3.45-3.745H46.207z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" d="M59.57,47.035c-1.244,0-1.462-0.869-1.462-2.578V39.5
|
||||
c0-1.709,0.218-2.58,1.462-2.58c1.258,0,1.475,0.871,1.475,2.58v4.957C61.044,46.166,60.828,47.035,59.57,47.035z M59.57,48.776
|
||||
c-3.016,0-3.715-1.522-3.715-6.806c0-5.268,0.699-6.806,3.715-6.806c3.029,0,3.729,1.539,3.729,6.806
|
||||
C63.298,47.254,62.599,48.776,59.57,48.776z"/>
|
||||
<path fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" d="M59.57,47.035c-1.244,0-1.462-0.869-1.462-2.578
|
||||
V39.5c0-1.709,0.218-2.58,1.462-2.58c1.258,0,1.475,0.871,1.475,2.58v4.957C61.044,46.166,60.828,47.035,59.57,47.035z
|
||||
M59.57,48.776c-3.016,0-3.715-1.522-3.715-6.806c0-5.268,0.699-6.806,3.715-6.806c3.029,0,3.729,1.539,3.729,6.806
|
||||
C63.298,47.254,62.599,48.776,59.57,48.776z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#B3B3B3" points="65.178,35.444 65.178,48.496 71.766,48.496 71.766,46.414
|
||||
67.431,46.414 67.431,35.444 "/>
|
||||
<polygon fill="none" stroke="#B3B3B3" stroke-width="0" stroke-miterlimit="3.863" points="65.178,35.444 65.178,48.496
|
||||
71.766,48.496 71.766,46.414 67.431,46.414 67.431,35.444 "/>
|
||||
<path fill="#120C0E" d="M7.267,62.264L62.164,7.149c1.508,1.134,3.31,2.393,5.189,4.288c0.855,0.871,3.311,3.481,4.118,4.444
|
||||
c0.87,1.073,0.093,0.498,0.651,1.259l-54.896,54.99c-2.098-0.67-5.143-3.963-6.977-5.813C8.588,64.641,8.448,63.817,7.267,62.264z"
|
||||
/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-miterlimit="3.863" d="M7.267,62.264L62.164,7.149
|
||||
c1.508,1.134,3.31,2.393,5.189,4.288c0.855,0.871,3.311,3.481,4.118,4.444c0.87,1.073,0.093,0.498,0.651,1.259l-54.896,54.99
|
||||
c-2.098-0.67-5.143-3.963-6.977-5.813C8.588,64.641,8.448,63.817,7.267,62.264z"/>
|
||||
</svg>
|
After (image error) Size: 11 KiB |
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.429px" height="79.326px" viewBox="0 0 79.429 79.326" enable-background="new 0 0 79.429 79.326" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.71,0c30.525,0,49.616,33.043,34.343,59.49
|
||||
c-15.252,26.447-53.414,26.447-68.687,0C-9.885,33.043,9.185,0,39.71,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.71,0c30.525,0,49.616,33.043,34.343,59.49
|
||||
c-15.252,26.447-53.414,26.447-68.687,0C-9.885,33.043,9.185,0,39.71,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.69,68.306c-22.049,0-35.842-23.868-24.808-42.979
|
||||
c11.035-19.11,38.601-19.11,49.636,0C75.552,44.438,61.759,68.306,39.69,68.306z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.69,68.306
|
||||
c-22.049,0-35.842-23.868-24.808-42.979c11.035-19.11,38.601-19.11,49.636,0C75.552,44.438,61.759,68.306,39.69,68.306z"/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#120C0E" points="49.565,26.667 28.795,26.667 23.738,36.082
|
||||
23.438,36.362 22.998,36.802 22.559,37.401 22.359,37.561 22.279,37.881 22.199,38.221 22.199,41.959 22.239,43.558 22.559,45.216
|
||||
22.798,46.017 23.198,46.697 23.738,47.136 24.378,47.335 24.378,52.173 27.596,52.173 27.596,47.576 50.765,47.576 50.765,52.173
|
||||
54.023,52.173 54.023,47.335 54.663,47.136 55.242,46.697 55.603,46.017 55.843,45.216 56.162,43.558 56.202,41.959 56.202,38.221
|
||||
56.122,37.881 55.843,37.401 55.402,36.802 54.964,36.362 54.663,36.082 49.565,26.667 "/>
|
||||
<polygon fill="none" stroke="#120C0E" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" points="
|
||||
49.565,26.667 28.795,26.667 23.738,36.082 23.438,36.362 22.998,36.802 22.559,37.401 22.359,37.561 22.279,37.881 22.199,38.221
|
||||
22.199,41.959 22.239,43.558 22.559,45.216 22.798,46.017 23.198,46.697 23.738,47.136 24.378,47.335 24.378,52.173 27.596,52.173
|
||||
27.596,47.576 50.765,47.576 50.765,52.173 54.023,52.173 54.023,47.335 54.663,47.136 55.242,46.697 55.603,46.017 55.843,45.216
|
||||
56.162,43.558 56.202,41.959 56.202,38.221 56.122,37.881 55.843,37.401 55.402,36.802 54.964,36.362 54.663,36.082 "/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="51.904,43.038 51.124,42.918 50.485,42.439
|
||||
50.085,41.879 49.925,41.479 49.886,41.139 49.925,40.7 50.085,40.3 50.485,39.62 51.124,39.22 51.484,39.1 51.904,39.06
|
||||
52.304,39.1 52.664,39.22 53.304,39.62 53.743,40.3 53.863,41.139 53.743,41.879 53.304,42.439 52.664,42.918 51.904,43.038 "/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="26.537,43.078 25.977,42.998 25.497,42.799
|
||||
25.097,42.439 24.777,42.039 24.578,41.599 24.538,41.139 24.578,40.58 24.777,40.06 25.137,39.62 25.537,39.34 26.017,39.14
|
||||
26.537,39.06 27.036,39.14 27.476,39.34 27.917,39.62 28.236,40.06 28.476,40.58 28.556,41.139 28.476,41.599 28.236,42.039
|
||||
27.956,42.439 27.556,42.799 27.036,42.998 26.537,43.078 "/>
|
||||
<polyline fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="40.79,27.586 48.927,27.586 53.063,36.042 49.685,35.602
|
||||
46.228,35.242 42.689,35.042 39.23,35.002 35.712,35.042 32.174,35.242 28.716,35.602 25.337,36.042 29.475,27.586 40.79,27.586 "/>
|
||||
<rect x="22.199" y="51.535" fill="#120C0E" width="34.003" height="1.119"/>
|
||||
<path fill="none" stroke="#120C0E" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M22.199,51.534 M56.202,51.534H22.199v1.12h34.003V51.534z"/>
|
||||
<rect x="30.175" y="43.198" fill="#FFFFFF" width="17.971" height="0.479"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M30.175,43.198 M48.146,43.198H30.175v0.479h17.971V43.198z"/>
|
||||
<rect x="31.254" y="41.219" fill="#FFFFFF" width="15.852" height="0.5"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M31.254,41.219 M47.106,41.219H31.254v0.5h15.852V41.219z"/>
|
||||
<rect x="31.854" y="45.057" fill="#FFFFFF" width="14.613" height="0.479"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="3.863" d="
|
||||
M31.854,45.057 M46.468,45.057H31.854v0.479h14.613V45.057z"/>
|
||||
</svg>
|
After (image error) Size: 4.6 KiB |
225
assets/layers/traffic_sign/images/be/C/Belgian_road_sign_C6.svg
Normal file
|
@ -0,0 +1,225 @@
|
|||
<?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="79.429085"
|
||||
height="79.324501"
|
||||
id="svg4368"
|
||||
version="1.1"
|
||||
inkscape:version="0.47 r22583"
|
||||
sodipodi:docname="Nuovo documento 3">
|
||||
<defs
|
||||
id="defs4370">
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 526.18109 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
||||
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
||||
id="perspective4376" />
|
||||
<inkscape:perspective
|
||||
id="perspective4471"
|
||||
inkscape:persp3d-origin="39.7145 : 26.441666 : 1"
|
||||
inkscape:vp_z="79.429001 : 39.662498 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 39.662498 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<inkscape:perspective
|
||||
id="perspective4525"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2854">
|
||||
<path
|
||||
d="m 730,6134.67 711,0 0,-723 -356,0 -355,0 0,723 z"
|
||||
clip-rule="evenodd"
|
||||
id="path2856" />
|
||||
</clipPath>
|
||||
<inkscape:perspective
|
||||
id="perspective6373"
|
||||
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
|
||||
inkscape:vp_z="1 : 0.5 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 0.5 : 1"
|
||||
sodipodi:type="inkscape:persp3d" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.3414062"
|
||||
inkscape:cx="58.757913"
|
||||
inkscape:cy="35.009791"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="838"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata4373">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Livello 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-66.827428,-429.71186)">
|
||||
<path
|
||||
id="path4379"
|
||||
d="m 106.53781,429.71186 c 30.525,0 49.616,33.043 34.343,59.49 -15.252,26.446 -53.414001,26.446 -68.687001,0 -15.251,-26.447 3.819,-59.49 34.344001,-59.49 z"
|
||||
clip-rule="evenodd"
|
||||
style="fill:#ed1c24;fill-rule:evenodd"
|
||||
inkscape:export-filename="C:\Users\Studio2\Pictures\Mappe\Irlanda\Simboli\belgio.png"
|
||||
inkscape:export-xdpi="150"
|
||||
inkscape:export-ydpi="150" />
|
||||
|
||||
<path
|
||||
id="path4381"
|
||||
d="m 106.53781,429.71186 c 30.525,0 49.616,33.043 34.343,59.49 -15.252,26.446 -53.414001,26.446 -68.687001,0 -15.251,-26.447 3.819,-59.49 34.344001,-59.49 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992"
|
||||
inkscape:export-filename="C:\Users\Studio2\Pictures\Mappe\Irlanda\Simboli\belgio.png"
|
||||
inkscape:export-xdpi="150"
|
||||
inkscape:export-ydpi="150" />
|
||||
|
||||
<path
|
||||
id="path4383"
|
||||
d="m 106.51781,498.01786 c -22.049001,0 -35.842001,-23.868 -24.808001,-42.979 11.035,-19.11 38.601001,-19.11 49.636001,0 11.034,19.111 -2.759,42.979 -24.828,42.979 z"
|
||||
clip-rule="evenodd"
|
||||
style="fill:#ffffff;fill-rule:evenodd"
|
||||
inkscape:export-filename="C:\Users\Studio2\Pictures\Mappe\Irlanda\Simboli\belgio.png"
|
||||
inkscape:export-xdpi="150"
|
||||
inkscape:export-ydpi="150" />
|
||||
|
||||
<path
|
||||
id="path4385"
|
||||
d="m 106.51781,498.01786 c -22.049001,0 -35.842001,-23.868 -24.808001,-42.979 11.035,-19.11 38.601001,-19.11 49.636001,0 11.034,19.111 -2.759,42.979 -24.828,42.979 z"
|
||||
stroke-miterlimit="3.863"
|
||||
style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992"
|
||||
inkscape:export-filename="C:\Users\Studio2\Pictures\Mappe\Irlanda\Simboli\belgio.png"
|
||||
inkscape:export-xdpi="150"
|
||||
inkscape:export-ydpi="150" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g7173"
|
||||
transform="translate(0.29927519,-0.59855039)">
|
||||
<path
|
||||
sodipodi:nodetypes="csssssssssssssssssscccsssscccssccccccccccscccccccssscc"
|
||||
id="path6363"
|
||||
d="m 98.742883,474.37436 c -0.0409,-1.02499 -0.29999,-2.13552 -0.57581,-2.46786 -0.27582,-0.33234 -0.45265,-1.54774 -0.39296,-2.70089 0.13259,-2.56142 -0.57309,-3.50131 -1.7971,-2.39359 -1.68358,1.52362 -2.38651,0.70304 -1.46776,-1.71344 0.41176,-1.08303 0.35015,-1.16937 -0.83451,-1.16937 -1.25112,0 -3.02879,0.80621 -7.55191,3.42499 -2.15211,1.24601 -2.302569,1.0754 -0.748729,-0.84901 2.298529,-2.8467 3.377869,-3.94363 3.880379,-3.94363 0.31127,0 0.93666,-0.40964 1.38978,-0.91032 0.45311,-0.50068 1.94557,-1.26392 3.31657,-1.6961 2.2359,-0.7048 2.59184,-0.99852 3.45461,-2.85067 0.52902,-1.1357 1.01229,-2.14544 1.07392,-2.24385 0.0617,-0.0984 0.37343,0.0358 0.69291,0.29823 0.31948,0.26244 1.091627,0.5481 1.715907,0.63481 0.63587,0.0883 1.20192,0.50851 1.28711,0.95544 0.12231,0.64175 -0.17311,0.79779 -1.51039,0.79779 -1.333687,0 -1.632247,0.15672 -1.509797,0.79255 0.0839,0.43591 0.56056,0.86738 1.059147,0.95883 1.17942,0.21632 2.50211,1.40237 2.50211,2.24362 0,0.36439 1.14579,1.79015 2.54619,3.16837 l 2.5462,2.50583 3.29444,-0.16636 c 2.98568,-0.15077 3.58131,-0.35325 6.35498,-2.16037 1.68328,-1.0967 3.21654,-2.2728 3.40724,-2.61356 0.44927,-0.80282 6.01257,-1.44212 6.01257,-0.69094 0,0.28645 -0.19466,0.52082 -0.43259,0.52082 -0.23791,0 -0.78824,1.12832 -1.22295,2.50735 l -0.79036,2.50734 -2.21879,0 c -1.22033,0 -2.79993,0.30052 -3.51024,0.66783 -1.53962,0.79617 -4.13382,4.54334 -4.13382,5.97107 0,1.77466 -2.75901,2.47868 -9.71376,2.47868 l -6.048287,0 -0.0743,-1.86359 z m 13.159297,-1.44153 c 1.48515,-3.04998 2.19603,-4.89979 1.87188,-4.87087 -0.18398,0.0164 -0.95525,1.29856 -1.71392,2.84925 l -1.3794,2.81941 -4.50354,0 -4.50353,0 -0.83837,-2.46642 c -0.4611,-1.35653 -0.971707,-2.5874 -1.134717,-2.73528 -0.46197,-0.41912 0.15228,2.27855 0.950867,4.17597 l 0.71951,1.70955 4.90489,0 4.90489,0 0.72144,-1.48161 z m -4.65976,-7.74996 c -2.82649,-2.16182 -2.85859,-2.77853 -0.12102,-2.32558 2.84995,0.47155 4.16343,0.43279 8.52897,-0.25168 1.96815,-0.3086 3.66039,-0.47916 3.76052,-0.37903 0.20439,0.20439 -3.3726,2.56316 -5.60681,3.69729 -2.3195,1.17744 -4.35375,0.94771 -6.56166,-0.741 z"
|
||||
style="fill:#000000" />
|
||||
<g
|
||||
transform="translate(-87.716291,-17.77604)"
|
||||
id="g7163">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="path6387"
|
||||
sodipodi:cx="117.23721"
|
||||
sodipodi:cy="51.179104"
|
||||
sodipodi:rx="14.601747"
|
||||
sodipodi:ry="9.3112593"
|
||||
d="m 131.83896,51.179104 c 0,5.142466 -6.53742,9.311259 -14.60175,9.311259 -8.06432,0 -14.60174,-4.168793 -14.60174,-9.311259 0,-5.142467 6.53742,-9.311259 14.60174,-9.311259 8.06433,0 14.60175,4.168792 14.60175,9.311259 z"
|
||||
transform="matrix(0.50509511,0,0,0.78013831,119.31517,452.74588)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
id="path7161"
|
||||
sodipodi:cx="42.747143"
|
||||
sodipodi:cy="58.374168"
|
||||
sodipodi:rx="3.5975318"
|
||||
sodipodi:ry="3.5975318"
|
||||
d="m 46.344675,58.374168 c 0,1.986862 -1.61067,3.597532 -3.597532,3.597532 -1.986862,0 -3.597532,-1.61067 -3.597532,-3.597532 0,-1.986862 1.61067,-3.597531 3.597532,-3.597531 1.986862,0 3.597532,1.610669 3.597532,3.597531 z"
|
||||
transform="matrix(0.91176471,0,0,0.91176471,139.48139,439.41234)" />
|
||||
</g>
|
||||
<g
|
||||
id="g7167"
|
||||
transform="translate(-55.716291,-17.77604)">
|
||||
<path
|
||||
transform="matrix(0.50509511,0,0,0.78013831,119.31517,452.74588)"
|
||||
d="m 131.83896,51.179104 c 0,5.142466 -6.53742,9.311259 -14.60175,9.311259 -8.06432,0 -14.60174,-4.168793 -14.60174,-9.311259 0,-5.142467 6.53742,-9.311259 14.60174,-9.311259 8.06433,0 14.60175,4.168792 14.60175,9.311259 z"
|
||||
sodipodi:ry="9.3112593"
|
||||
sodipodi:rx="14.601747"
|
||||
sodipodi:cy="51.179104"
|
||||
sodipodi:cx="117.23721"
|
||||
id="path7169"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
transform="matrix(0.91176471,0,0,0.91176471,139.48139,439.41234)"
|
||||
d="m 46.344675,58.374168 c 0,1.986862 -1.61067,3.597532 -3.597532,3.597532 -1.986862,0 -3.597532,-1.61067 -3.597532,-3.597532 0,-1.986862 1.61067,-3.597531 3.597532,-3.597531 1.986862,0 3.597532,1.610669 3.597532,3.597531 z"
|
||||
sodipodi:ry="3.5975318"
|
||||
sodipodi:rx="3.5975318"
|
||||
sodipodi:cy="58.374168"
|
||||
sodipodi:cx="42.747143"
|
||||
id="path7171"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 9.1 KiB |
106
assets/layers/traffic_sign/images/be/C/Belgian_road_sign_C7.svg
Normal file
|
@ -0,0 +1,106 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.429px" height="79.325px" viewBox="0 0 79.429 79.325" enable-background="new 0 0 79.429 79.325" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.71,0c30.525,0,49.616,33.043,34.343,59.49
|
||||
c-15.252,26.446-53.414,26.446-68.687,0C-9.885,33.043,9.185,0,39.71,0z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.71,0c30.525,0,49.616,33.043,34.343,59.49
|
||||
c-15.252,26.446-53.414,26.446-68.687,0C-9.885,33.043,9.185,0,39.71,0z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.69,68.306c-22.049,0-35.842-23.868-24.808-42.979
|
||||
c11.035-19.11,38.601-19.11,49.636,0C75.552,44.438,61.759,68.306,39.69,68.306z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.69,68.306
|
||||
c-22.049,0-35.842-23.868-24.808-42.979c11.035-19.11,38.601-19.11,49.636,0C75.552,44.438,61.759,68.306,39.69,68.306z"/>
|
||||
<path d="M47.326,43.418c0.04,0.859-0.459,2.019-1.299,2.039l-1.438,0.06c-0.381,0.08-0.98,0.12-1.261,0.7
|
||||
c-0.559,1.199-0.14,2.419-1.739,2.718c-0.738,0.141-4.058,0.24-4.638-0.778c-0.04-0.021-0.06-0.021-0.119-0.021
|
||||
c-0.62-0.64-0.78-1.319-1.26-2.039c-0.7-1-2.139-1.12-2.139-2.779c0-4.258-3.438-7.695-7.676-7.695
|
||||
c-4.258,0-7.736,3.357-7.736,7.616h-0.46c0-4.478,3.638-8.097,8.096-8.097H19.44l1.22,1.759l-0.54,0.421l-1.659-2.18h-0.72h0.02
|
||||
h-0.02v-0.739h11.414v-1.199h0.8v1.199h0.16v1.739h1.099c-0.08-0.92,0.06-2.539,0.18-3.478c0.16-1.101,0.48-2.319,1-3.299
|
||||
c0.26-0.5,0.979-1.699,1.499-2.159c0.2-0.2,0.6-0.539,1.039-0.839c0.32-0.24,0.84-0.261,0.98-0.641c0.08-0.22,0.02-0.52-0.16-0.739
|
||||
c-0.16-0.08-0.22-0.399-0.26-0.619c-0.18-0.641-0.14-1.341,0-2.3c0.02-0.119-0.3,0.04-0.3-0.079c0-0.44,0.5-1.141,0.64-1.399
|
||||
c1.039-1.32,2.439-1.4,3.678-0.74c1.1,0.58,1.739,2.02,1.32,3.139c-0.079,0.06-0.1,0.239-0.18,0.38
|
||||
c-0.24,0.42-0.06,0.859-0.08,1.398c-0.18,0-0.28-0.04-0.44,0.04c-0.2,0.2-0.08,0.3-0.1,0.62c0,0.26-0.94-0.06-1.06,0.28
|
||||
c-0.179,0.42,0.12,1.999,0.22,2.639l2.439,2.458l1.039,0.34c1.18,0.38,2.438-0.239,3.738-0.16c0.619,0.021,0.999-0.06,1.419,0.04
|
||||
l0.5,0.301l2.56-0.341l0.299,0.78l1.26-0.8h0.999v2.159h-1.22l-0.879-0.52l1.18,2.898c0.34-0.14,0.42-0.16,0.959-0.24
|
||||
c0.14-0.02-0.12-1.159,0.14-1.179c0.261-0.021,3.638-0.04,3.638-0.021c0.141,0.8-0.16,1.339,0.08,1.439c1.34,0.56,2.1,1,2.979,1.859
|
||||
l-0.181,0.279c-1.338-1.299-3.178-2.099-5.196-2.099c-4.138,0-7.617,3.259-7.617,7.396C47.326,43.038,47.326,43.317,47.326,43.418z"
|
||||
/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M47.326,43.418
|
||||
c0.04,0.859-0.459,2.019-1.299,2.039l-1.438,0.06c-0.381,0.08-0.98,0.12-1.261,0.7c-0.559,1.199-0.14,2.419-1.739,2.718
|
||||
c-0.738,0.141-4.058,0.24-4.638-0.778c-0.04-0.021-0.06-0.021-0.119-0.021c-0.62-0.64-0.78-1.319-1.26-2.039
|
||||
c-0.7-1-2.139-1.12-2.139-2.779c0-4.258-3.438-7.695-7.676-7.695c-4.258,0-7.736,3.357-7.736,7.616h-0.46
|
||||
c0-4.478,3.638-8.097,8.096-8.097H19.44l1.22,1.759l-0.54,0.421l-1.659-2.18h-0.72h0.02h-0.02v-0.739h11.414v-1.199h0.8v1.199h0.16
|
||||
v1.739h1.099c-0.08-0.92,0.06-2.539,0.18-3.478c0.16-1.101,0.48-2.319,1-3.299c0.26-0.5,0.979-1.699,1.499-2.159
|
||||
c0.2-0.2,0.6-0.539,1.039-0.839c0.32-0.24,0.84-0.261,0.98-0.641c0.08-0.22,0.02-0.52-0.16-0.739c-0.16-0.08-0.22-0.399-0.26-0.619
|
||||
c-0.18-0.641-0.14-1.341,0-2.3c0.02-0.119-0.3,0.04-0.3-0.079c0-0.44,0.5-1.141,0.64-1.399c1.039-1.32,2.439-1.4,3.678-0.74
|
||||
c1.1,0.58,1.739,2.02,1.32,3.139c-0.079,0.06-0.1,0.239-0.18,0.38c-0.24,0.42-0.06,0.859-0.08,1.398c-0.18,0-0.28-0.04-0.44,0.04
|
||||
c-0.2,0.2-0.08,0.3-0.1,0.62c0,0.26-0.94-0.06-1.06,0.28c-0.179,0.42,0.12,1.999,0.22,2.639l2.439,2.458l1.039,0.34
|
||||
c1.18,0.38,2.438-0.239,3.738-0.16c0.619,0.021,0.999-0.06,1.419,0.04l0.5,0.301l2.56-0.341l0.299,0.78l1.26-0.8h0.999v2.159h-1.22
|
||||
l-0.879-0.52l1.18,2.898c0.34-0.14,0.42-0.16,0.959-0.24c0.14-0.02-0.12-1.159,0.14-1.179c0.261-0.021,3.638-0.04,3.638-0.021
|
||||
c0.141,0.8-0.16,1.339,0.08,1.439c1.34,0.56,2.1,1,2.979,1.859l-0.181,0.279c-1.338-1.299-3.178-2.099-5.196-2.099
|
||||
c-4.138,0-7.617,3.259-7.617,7.396C47.326,43.038,47.326,43.317,47.326,43.418z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.042,50.974 M62.399,50.974H17.042v-0.619h45.358V50.974z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M17.042,50.974 M62.399,50.974H17.042v-0.619
|
||||
h45.358V50.974z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.943,50.314c-5.478,0-8.896-5.937-6.157-10.694s9.596-4.778,12.333,0
|
||||
C63.858,44.378,60.44,50.314,54.943,50.314z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M54.943,50.314
|
||||
c-5.478,0-8.896-5.937-6.157-10.694s9.596-4.778,12.333,0C63.858,44.378,60.44,50.314,54.943,50.314z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.757,50.314c-5.497,0-8.936-5.937-6.177-10.694
|
||||
c2.739-4.758,9.615-4.778,12.354,0C34.693,44.378,31.254,50.314,25.757,50.314z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M25.757,50.314
|
||||
c-5.497,0-8.936-5.937-6.177-10.694c2.739-4.758,9.615-4.778,12.354,0C34.693,44.378,31.254,50.314,25.757,50.314z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M25.857,48.275c-3.878,0-6.297-4.197-4.358-7.556
|
||||
c1.939-3.358,6.777-3.358,8.716,0S29.735,48.275,25.857,48.275z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M25.857,48.275
|
||||
c-3.878,0-6.297-4.197-4.358-7.556c1.939-3.358,6.777-3.358,8.716,0S29.735,48.275,25.857,48.275z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M54.943,48.275c-3.899,0-6.317-4.197-4.378-7.556
|
||||
s6.796-3.358,8.734,0C61.239,44.078,58.821,48.275,54.943,48.275z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M54.943,48.275
|
||||
c-3.899,0-6.317-4.197-4.378-7.556s6.796-3.358,8.734,0C61.239,44.078,58.821,48.275,54.943,48.275z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M47.587,43.317 M53.183,43.317h-5.597v-0.679h5.597V43.317z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M47.587,43.317 M53.183,43.317h-5.597v-0.679
|
||||
h5.597V43.317z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.636,43.438 M30.914,43.438h-3.278v-0.479h3.278V43.438z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M27.636,43.438 M30.914,43.438h-3.278v-0.479
|
||||
h3.278V43.438z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.857,45.117c-1.439,0-2.319-1.56-1.619-2.799c0.719-1.26,2.519-1.26,3.238,0
|
||||
C28.176,43.558,27.296,45.117,25.857,45.117z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M25.857,45.117
|
||||
c-1.439,0-2.319-1.56-1.619-2.799c0.719-1.26,2.519-1.26,3.238,0C28.176,43.558,27.296,45.117,25.857,45.117z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="27.096,41.858 26.697,41.559 28.716,39.06 29.115,39.38 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="27.096,41.858 26.697,41.559
|
||||
28.716,39.06 29.115,39.38 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="52.724,38.721 53.384,38.44 54.583,41.379 53.903,41.659 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="52.724,38.721 53.384,38.44
|
||||
54.583,41.379 53.903,41.659 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="57.161,38.721 57.781,39.1 56.082,41.959 55.462,41.579 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="57.161,38.721 57.781,39.1
|
||||
56.082,41.959 55.462,41.579 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.943,45.117c-1.44,0-2.339-1.56-1.62-2.799c0.721-1.26,2.499-1.26,3.219,0
|
||||
C57.261,43.558,56.362,45.117,54.943,45.117z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M54.943,45.117c-1.44,0-2.339-1.56-1.62-2.799
|
||||
c0.721-1.26,2.499-1.26,3.219,0C57.261,43.558,56.362,45.117,54.943,45.117z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="58.861,37.081 58.382,36.782 58.581,36.481 59.062,36.782 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="58.861,37.081 58.382,36.782
|
||||
58.581,36.481 59.062,36.782 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="52.464,36.362 51.944,36.602 51.804,36.262 52.324,36.042 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="52.464,36.362 51.944,36.602
|
||||
51.804,36.262 52.324,36.042 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="30.415,37.921 29.995,37.561 30.315,37.181 30.735,37.541 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="30.415,37.921 29.995,37.561
|
||||
30.315,37.181 30.735,37.541 "/>
|
||||
<line fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" x1="39.23" y1="31.563" x2="41.449" y2="33.163"/>
|
||||
<path fill="#FFFFFF" d="M41.729,33.203l2.339-0.221l4.258-0.818l1.819-0.32l0.919,2.219c-0.699,0.2-1.239,0.261-1.88,0.36
|
||||
c-0.238-0.021-0.639-0.12-0.818-0.22c-0.939-0.54-1.04-0.34-1.619-0.44l-0.64,0.14l-3.718,1.64c-0.521,0.24-3.199,0.26-3.778-0.18
|
||||
c0.559-0.899,0.679-2.698,0.619-3.799L41.729,33.203z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M41.729,33.203l2.339-0.221l4.258-0.818
|
||||
l1.819-0.32l0.919,2.219c-0.699,0.2-1.239,0.261-1.88,0.36c-0.238-0.021-0.639-0.12-0.818-0.22c-0.939-0.54-1.04-0.34-1.619-0.44
|
||||
l-0.64,0.14l-3.718,1.64c-0.521,0.24-3.199,0.26-3.778-0.18c0.559-0.899,0.679-2.698,0.619-3.799L41.729,33.203z"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="24.479,42.039 22.319,39.7 22.738,39.32 24.877,41.659 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="24.479,42.039 22.319,39.7
|
||||
22.738,39.32 24.877,41.659 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" points="20.799,38.161 20.46,37.681 20.979,37.301 21.339,37.761 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="20.799,38.161 20.46,37.681
|
||||
20.979,37.301 21.339,37.761 "/>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
|
@ -0,0 +1,86 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.651px" height="79.536px" viewBox="0 0 79.651 79.536" enable-background="new 0 0 79.651 79.536" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#ED1C24" d="M39.825,79.536c-30.612,0-49.744-33.137-34.438-59.642
|
||||
c15.306-26.525,53.571-26.525,68.877,0C89.57,46.399,70.438,79.536,39.825,79.536z"/>
|
||||
<path fill="none" stroke="#ED1C24" stroke-width="0" stroke-miterlimit="3.863" d="M39.825,79.536
|
||||
c-30.612,0-49.744-33.137-34.438-59.642c15.306-26.525,53.571-26.525,68.877,0C89.57,46.399,70.438,79.536,39.825,79.536z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.805,68.156c-21.857,0-35.52-23.66-24.581-42.592
|
||||
c10.918-18.933,38.245-18.933,49.184,0C75.346,44.496,61.683,68.156,39.805,68.156z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M39.805,68.156
|
||||
c-21.857,0-35.52-23.66-24.581-42.592c10.918-18.933,38.245-18.933,49.184,0C75.346,44.496,61.683,68.156,39.805,68.156z"/>
|
||||
<path d="M55.132,38.987h2.945v-1.522h-0.902l-0.48-0.481H47.74l0.219-1.362l1.082-0.661c0.481-0.261,0.803-0.762,0.682-1.663
|
||||
c-0.16-0.18-0.3-0.301-0.48-0.261h-6.15v0.381l4.066,1.202l-2.224,6.571c-0.08,0.28-0.36,0.562-0.642,0.621h-4.947
|
||||
c-0.361-0.08-0.501-0.501-0.762-0.761l-3.265-4.168l0.16-0.561l-0.661-0.761l-0.281,0.24l-0.44-0.541l1.001-2.825h-0.781
|
||||
c0.341-0.42,0.461-1.422,0.661-2.203v-1.964h1.883v-0.681h-1.242c-0.06,0-0.14,0-0.18,0c0-0.14-0.04-0.28-0.16-0.381
|
||||
c-0.341-0.12-0.541-0.18-0.882,0.04c-0.08,0.101-0.22,0.241-0.22,0.341v3.606l-1.282-1.082h-1.082l-0.942,0.281l0.361,1.542h0.38
|
||||
l1.122-0.32c0.161-0.04,0.481-0.14,0.641-0.14c0.341,0.2,0.301,0.3,0.261,0.46c-0.301,0.321-0.481,0.241-0.821,0.461l-3.106,6.632
|
||||
c-0.921-0.421-1.923-0.643-2.985-0.643c-0.721,0-1.422,0.102-2.083,0.302l-0.101,0.601c-2.684,0.883-4.587,3.406-4.587,6.411
|
||||
c0,3.706,3.025,6.731,6.751,6.731c2.985,0,5.53-1.963,6.391-4.648l0.26-0.721l0.321-0.04c0.08-0.441,0.14-0.961,0.14-1.402
|
||||
c0-2.646-1.222-4.889-3.325-6.171l1.502-2.684c0.14,0.06,0.261,0.12,0.301,0.26c0.22,1.082,0.44,1.563,1.342,2.344
|
||||
c0.601,0.521,0.641,0.521,2.284,0.762c0.18,0.02,0.601,0.041,0.721,0.181c0.24,0.079,0.26,0.399,0.301,0.501
|
||||
c0.02,0.98-1.082,6.09-0.061,7.292c0.782,1.643,4.328,0.801,5.449,0.661v1.082h-0.58v0.5h1.541v-0.461h-0.479v-1.182l3.767-0.24
|
||||
c1.041,2.324,3.405,3.967,6.149,3.967c3.728,0,6.731-3.025,6.731-6.731l-0.119-1.342l0.14-0.341
|
||||
C58.998,41.671,57.335,39.767,55.132,38.987z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M55.132,38.987h2.945v-1.522h-0.902
|
||||
l-0.48-0.481H47.74l0.219-1.362l1.082-0.661c0.481-0.261,0.803-0.762,0.682-1.663c-0.16-0.18-0.3-0.301-0.48-0.261h-6.15v0.381
|
||||
l4.066,1.202l-2.224,6.571c-0.08,0.28-0.36,0.562-0.642,0.621h-4.947c-0.361-0.08-0.501-0.501-0.762-0.761l-3.265-4.168l0.16-0.561
|
||||
l-0.661-0.761l-0.281,0.24l-0.44-0.541l1.001-2.825h-0.781c0.341-0.42,0.461-1.422,0.661-2.203v-1.964h1.883v-0.681h-1.242
|
||||
c-0.06,0-0.14,0-0.18,0c0-0.14-0.04-0.28-0.16-0.381c-0.341-0.12-0.541-0.18-0.882,0.04c-0.08,0.101-0.22,0.241-0.22,0.341v3.606
|
||||
l-1.282-1.082h-1.082l-0.942,0.281l0.361,1.542h0.38l1.122-0.32c0.161-0.04,0.481-0.14,0.641-0.14c0.341,0.2,0.301,0.3,0.261,0.46
|
||||
c-0.301,0.321-0.481,0.241-0.821,0.461l-3.106,6.632c-0.921-0.421-1.923-0.643-2.985-0.643c-0.721,0-1.422,0.102-2.083,0.302
|
||||
l-0.101,0.601c-2.684,0.883-4.587,3.406-4.587,6.411c0,3.706,3.025,6.731,6.751,6.731c2.985,0,5.53-1.963,6.391-4.648l0.26-0.721
|
||||
l0.321-0.04c0.08-0.441,0.14-0.961,0.14-1.402c0-2.646-1.222-4.889-3.325-6.171l1.502-2.684c0.14,0.06,0.261,0.12,0.301,0.26
|
||||
c0.22,1.082,0.44,1.563,1.342,2.344c0.601,0.521,0.641,0.521,2.284,0.762c0.18,0.02,0.601,0.041,0.721,0.181
|
||||
c0.24,0.079,0.26,0.399,0.301,0.501c0.02,0.98-1.082,6.09-0.061,7.292c0.782,1.643,4.328,0.801,5.449,0.661v1.082h-0.58v0.5h1.541
|
||||
v-0.461h-0.479v-1.182l3.767-0.24c1.041,2.324,3.405,3.967,6.149,3.967c3.728,0,6.731-3.025,6.731-6.731l-0.119-1.342l0.14-0.341
|
||||
C58.998,41.671,57.335,39.767,55.132,38.987z"/>
|
||||
<line fill="none" stroke="#000000" stroke-width="0" stroke-miterlimit="3.863" x1="59.359" y1="44.356" x2="59.679" y2="43.855"/>
|
||||
<path fill="#FFFFFF" d="M50.263,39.107c-2.424,1.021-4.146,3.426-4.146,6.25h-0.422v-2.624l1.764-4.888h1.002
|
||||
C48.56,38.746,49.462,39.147,50.263,39.107z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M50.263,39.107
|
||||
c-2.424,1.021-4.146,3.426-4.146,6.25h-0.422v-2.624l1.764-4.888h1.002C48.56,38.746,49.462,39.147,50.263,39.107z"/>
|
||||
<polygon points="57.736,39.007 59.699,43.735 59.539,43.755 57.457,38.987 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="57.736,39.007 59.699,43.735
|
||||
59.539,43.755 57.457,38.987 "/>
|
||||
<path fill="#FFFFFF" d="M38.964,48.423c-1.202,0.359-2.164-0.803-1.883-2.045h1.402C38.623,46.74,38.303,47.501,38.964,48.423z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M38.964,48.423
|
||||
c-1.202,0.359-2.164-0.803-1.883-2.045h1.402C38.623,46.74,38.303,47.501,38.964,48.423z"/>
|
||||
<polygon fill="#FFFFFF" points="42.891,48.062 44.695,47.822 44.554,46.88 42.891,47.521 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="42.891,48.062 44.695,47.822
|
||||
44.554,46.88 42.891,47.521 "/>
|
||||
<polygon fill="#FFFFFF" points="42.35,48.122 40.828,48.322 42.33,47.761 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="42.35,48.122 40.828,48.322
|
||||
42.33,47.761 "/>
|
||||
<polygon fill="#FFFFFF" points="45.736,46.079 45.736,46.66 45.936,46.9 46.197,46.9 46.256,46.359 46.117,45.858 "/>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" points="45.736,46.079 45.736,46.66
|
||||
45.936,46.9 46.197,46.9 46.256,46.359 46.117,45.858 "/>
|
||||
<path fill="#FFFFFF" d="M48.46,48.623c0.941,1.342,2.564,2.264,4.348,2.264c2.885,0,5.208-2.344,5.208-5.209
|
||||
c0-2.864-2.323-5.209-5.208-5.209c-0.081,0-0.141,0-0.221,0.021l0.381,3.767c0.781,0,1.382,0.602,1.382,1.422
|
||||
c0,0.541-0.34,1.043-0.841,1.263l2.363-0.06v1.742H48.46z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M48.46,48.623
|
||||
c0.941,1.342,2.564,2.264,4.348,2.264c2.885,0,5.208-2.344,5.208-5.209c0-2.864-2.323-5.209-5.208-5.209
|
||||
c-0.081,0-0.141,0-0.221,0.021l0.381,3.767c0.781,0,1.382,0.602,1.382,1.422c0,0.541-0.34,1.043-0.841,1.263l2.363-0.06v1.742H48.46
|
||||
z"/>
|
||||
<path fill="#FFFFFF" d="M51.686,40.609l0.36,3.867c-0.42,0.26-0.682,0.681-0.682,1.222h-3.726
|
||||
C47.639,43.214,49.382,41.13,51.686,40.609z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M51.686,40.609l0.36,3.867
|
||||
c-0.42,0.26-0.682,0.681-0.682,1.222h-3.726C47.639,43.214,49.382,41.13,51.686,40.609z"/>
|
||||
<path fill="#FFFFFF" d="M47.639,46.199h3.767c0.159,0.36,0.541,0.682,0.881,0.841l-4.328,0.501
|
||||
C47.799,47.12,47.699,46.679,47.639,46.199z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M47.639,46.199h3.767
|
||||
c0.159,0.36,0.541,0.682,0.881,0.841l-4.328,0.501C47.799,47.12,47.699,46.679,47.639,46.199z"/>
|
||||
<path fill="#FFFFFF" d="M28.787,40.95c-0.661-0.321-1.383-0.461-2.164-0.461c-2.865,0-5.209,2.324-5.209,5.209
|
||||
c0,2.865,2.344,5.188,5.209,5.188c2.865,0,5.209-2.323,5.209-5.188h-3.767c0,0.781-0.641,1.422-1.442,1.422
|
||||
c-0.781,0-1.422-0.641-1.422-1.422c0-0.801,0.641-1.442,1.422-1.442c0.16,0,0.341,0.041,0.481,0.08L28.787,40.95z"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M28.787,40.95
|
||||
c-0.661-0.321-1.383-0.461-2.164-0.461c-2.865,0-5.209,2.324-5.209,5.209c0,2.865,2.344,5.188,5.209,5.188
|
||||
c2.865,0,5.209-2.323,5.209-5.188h-3.767c0,0.781-0.641,1.422-1.442,1.422c-0.781,0-1.422-0.641-1.422-1.422
|
||||
c0-0.801,0.641-1.442,1.422-1.442c0.16,0,0.341,0.041,0.481,0.08L28.787,40.95z"/>
|
||||
<path fill="#FFFFFF" d="M31.712,44.977c-0.201-1.503-1.042-2.785-2.244-3.587l-1.763,3.406c0.04,0.061,0.06,0.12,0.1,0.181H31.712z"
|
||||
/>
|
||||
<path fill="none" stroke="#000000" stroke-width="0.2" stroke-miterlimit="3.863" d="M31.712,44.977
|
||||
c-0.201-1.503-1.042-2.785-2.244-3.587l-1.763,3.406c0.04,0.061,0.06,0.12,0.1,0.181H31.712z"/>
|
||||
</svg>
|
After (image error) Size: 8.3 KiB |
272
assets/layers/traffic_sign/images/be/C/license_info.json
Normal file
|
@ -0,0 +1,272 @@
|
|||
[
|
||||
{
|
||||
"path": "Belgian_road_sign_C1.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C1.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C11.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C11.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C13.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C13.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C15.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C15.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C17.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C17.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C19.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C19.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C22.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C22.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C23.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C23.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C24a.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C24a.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C24b.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C24b.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C24c.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C24c.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C3.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C3.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C31d.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C31d.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C31g.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C31g.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C33.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C33.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C35.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C35.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C37.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C37.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C39.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C39.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C41.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C41.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C46.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C46.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C47.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C47.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C48.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C48.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C49.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C49.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C5.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C5.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C6.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/w/index.php?title=User:Gigillo83&action=edit&redlink=1\" class=\"new\" title=\"User:Gigillo83 (page does not exist)\">Gigillo83</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C6.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C7.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C7.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_C9.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_C9.svg"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="78.259px" height="78.164px" viewBox="0 0 78.259 78.164" enable-background="new 0 0 78.259 78.164" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.123,78.088c-30.018,0-48.772-32.509-33.763-58.507
|
||||
c15.009-25.998,52.532-26.014,67.541,0C87.91,45.579,69.141,78.088,39.123,78.088z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.153" stroke-miterlimit="3.863" d="M39.123,78.088
|
||||
c-30.018,0-48.772-32.509-33.763-58.507c15.009-25.998,52.532-26.014,67.541,0C87.91,45.579,69.141,78.088,39.123,78.088z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.123,76.132c-28.52,0-46.341-30.889-32.081-55.588
|
||||
c14.244-24.699,49.901-24.699,64.161,0C85.464,45.243,67.643,76.132,39.123,76.132z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.153" stroke-miterlimit="3.863" d="M39.123,76.132
|
||||
c-28.52,0-46.341-30.889-32.081-55.588c14.244-24.699,49.901-24.699,64.161,0C85.464,45.243,67.643,76.132,39.123,76.132z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.123,73.748c-26.686,0-43.361-28.903-30.018-52.012
|
||||
c13.343-23.11,46.693-23.11,60.036,0C82.484,44.845,65.809,73.748,39.123,73.748z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.153" stroke-miterlimit="3.863" d="M39.123,73.748
|
||||
c-26.686,0-43.361-28.903-30.018-52.012c13.343-23.11,46.693-23.11,60.036,0C82.484,44.845,65.809,73.748,39.123,73.748z"/>
|
||||
<path fill="#FFFFFF" d="M15.601,43.897l-4.891,0.918l7.978,6.587l6.572-9.323l-5.945,1.115c-0.245-1.237-0.367-2.506-0.367-3.82
|
||||
c0-8.941,5.762-16.522,13.756-19.274l-1.529-3.591c-9.399,3.332-16.124,12.319-16.124,22.865c0,1.527,0.137,3.011,0.412,4.463
|
||||
L15.601,43.897z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M15.601,43.897l-4.891,0.918l7.978,6.587
|
||||
l6.572-9.323l-5.945,1.115c-0.245-1.237-0.367-2.506-0.367-3.82c0-8.941,5.762-16.522,13.756-19.274l-1.529-3.591
|
||||
c-9.399,3.332-16.124,12.319-16.124,22.865c0,1.527,0.137,3.011,0.412,4.463L15.601,43.897z"/>
|
||||
<path fill="#FFFFFF" d="M63.104,43.806l-3.806-0.886c0.198-1.147,0.306-2.323,0.306-3.53c0-8.82-5.594-16.324-13.435-19.167
|
||||
l-1.927,5.38l-4.569-10.439l9.828-4.234l-2.003,5.579c9.354,3.362,16.049,12.334,16.049,22.85c0,1.514-0.139,2.98-0.396,4.418
|
||||
L63.104,43.806z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M63.104,43.806l-3.806-0.886
|
||||
c0.198-1.147,0.306-2.323,0.306-3.53c0-8.82-5.594-16.324-13.435-19.167l-1.927,5.38l-4.569-10.439l9.828-4.234l-2.003,5.579
|
||||
c9.354,3.362,16.049,12.334,16.049,22.85c0,1.514-0.139,2.98-0.396,4.418L63.104,43.806z"/>
|
||||
<path fill="#FFFFFF" d="M55.568,57.822l3.424,3.865l1.498-10.087l-11.371-1.039l3.606,4.065c-3.592,3.164-8.299,5.075-13.45,5.075
|
||||
c-4.952,0-9.476-1.758-13.007-4.693l-2.415,3.072c4.203,3.438,9.568,5.518,15.422,5.518c6.159,0,11.784-2.293,16.063-6.083
|
||||
L55.568,57.822z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M55.568,57.822l3.424,3.865l1.498-10.087
|
||||
l-11.371-1.039l3.606,4.065c-3.592,3.164-8.299,5.075-13.45,5.075c-4.952,0-9.476-1.758-13.007-4.693l-2.415,3.072
|
||||
c4.203,3.438,9.568,5.518,15.422,5.518c6.159,0,11.784-2.293,16.063-6.083L55.568,57.822z"/>
|
||||
</svg>
|
After (image error) Size: 3.5 KiB |
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.52px" height="79.392px" viewBox="0 0 79.52 79.392" enable-background="new 0 0 79.52 79.392" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.742,79.218c-30.412,0-49.432-32.921-34.209-59.292
|
||||
c15.224-26.336,53.23-26.336,68.453,0C89.211,46.297,70.189,79.218,39.742,79.218z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.348" stroke-miterlimit="3.863" d="M39.742,79.218
|
||||
c-30.412,0-49.432-32.921-34.209-59.292c15.224-26.336,53.23-26.336,68.453,0C89.211,46.297,70.189,79.218,39.742,79.218z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.742,77.231c-28.914,0-46.994-31.283-32.537-56.33
|
||||
c14.457-25.048,50.617-25.048,65.039,0C86.702,45.948,68.656,77.231,39.742,77.231z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.348" stroke-miterlimit="3.863" d="M39.742,77.231
|
||||
c-28.914,0-46.994-31.283-32.537-56.33c14.457-25.048,50.617-25.048,65.039,0C86.702,45.948,68.656,77.231,39.742,77.231z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.742,74.827c-27.033,0-43.928-29.262-30.412-52.707
|
||||
c13.517-23.41,47.343-23.41,60.859,0C83.707,45.565,66.811,74.827,39.742,74.827z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.348" stroke-miterlimit="3.863" d="M39.742,74.827
|
||||
c-27.033,0-43.928-29.262-30.412-52.707c13.517-23.41,47.343-23.41,60.859,0C83.707,45.565,66.811,74.827,39.742,74.827z"/>
|
||||
<path fill="#FFFFFF" d="M29.396,32.433l9.998,8.883c-0.383,0.453-0.627,1.01-0.627,1.637c0,1.289,1.08,2.404,2.299,2.508v2.962
|
||||
h-0.383v0.558h1.289v-0.558H41.59V45.53c1.219-0.07,2.125-1.045,2.299-2.125h1.428c0.174,4.842,4.146,8.709,9.023,8.709
|
||||
c5.016,0,9.092-4.076,9.092-9.057c0-5.018-4.076-9.093-9.092-9.093c-1.498,0-2.928,0.383-4.182,1.079l-2.543-4.702l0.627-1.22
|
||||
c0.176-0.383,0.697-0.278,1.012-0.592c0.033-0.209,0.033-0.349,0.033-0.558c-0.174-0.104-0.209-0.278-0.451-0.278H45.49
|
||||
c-0.035,0.104-0.174,0.069-0.277,0.069c-0.035,0.035-0.07,0.069-0.105,0.069c-0.07,0.175-0.07,0.418,0,0.593
|
||||
c0.035,0.034,0.105,0.069,0.174,0.069h1.707c0.174-0.035,0.35,0.035,0.523,0.105c0.068,0.034,0.068,0.034,0.139,0.068
|
||||
c-0.035,0.141,0.105,0.314,0.035,0.419l-0.348,0.801h-17.35l0.488-2.056c0.383-0.139,0.697,0.14,1.498-0.209
|
||||
c0.313,0,1.045-0.418,1.951-0.104c0.174-0.07-0.07-0.14,0.034-0.244c-0.104-0.07,0.14-0.244,0.105-0.313
|
||||
c-0.557-0.175-1.707-0.278-2.23,0.069c-0.557,0.313-1.323,0.104-1.811,0.14l-1.707,7.386c-0.975-0.384-2.09-0.628-3.24-0.628
|
||||
c-4.981,0-9.057,4.076-9.057,9.058c0,5.017,4.076,9.057,9.057,9.057c4.982,0,9.058-4.04,9.058-9.057
|
||||
c0-3.658-2.195-6.758-5.295-8.221L29.396,32.433z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.348" stroke-miterlimit="3.863" d="M29.396,32.433l9.998,8.883
|
||||
c-0.383,0.453-0.627,1.01-0.627,1.637c0,1.289,1.08,2.404,2.299,2.508v2.962h-0.383v0.558h1.289v-0.558H41.59V45.53
|
||||
c1.219-0.07,2.125-1.045,2.299-2.125h1.428c0.174,4.842,4.146,8.709,9.023,8.709c5.016,0,9.092-4.076,9.092-9.057
|
||||
c0-5.018-4.076-9.093-9.092-9.093c-1.498,0-2.928,0.383-4.182,1.079l-2.543-4.702l0.627-1.22c0.176-0.383,0.697-0.278,1.012-0.592
|
||||
c0.033-0.209,0.033-0.349,0.033-0.558c-0.174-0.104-0.209-0.278-0.451-0.278H45.49c-0.035,0.104-0.174,0.069-0.277,0.069
|
||||
c-0.035,0.035-0.07,0.069-0.105,0.069c-0.07,0.175-0.07,0.418,0,0.593c0.035,0.034,0.105,0.069,0.174,0.069h1.707
|
||||
c0.174-0.035,0.35,0.035,0.523,0.105c0.068,0.034,0.068,0.034,0.139,0.068c-0.035,0.141,0.105,0.314,0.035,0.419l-0.348,0.801
|
||||
h-17.35l0.488-2.056c0.383-0.139,0.697,0.14,1.498-0.209c0.313,0,1.045-0.418,1.951-0.104c0.174-0.07-0.07-0.14,0.034-0.244
|
||||
c-0.104-0.07,0.14-0.244,0.105-0.313c-0.557-0.175-1.707-0.278-2.23,0.069c-0.557,0.313-1.323,0.104-1.811,0.14l-1.707,7.386
|
||||
c-0.975-0.384-2.09-0.628-3.24-0.628c-4.981,0-9.057,4.076-9.057,9.058c0,5.017,4.076,9.057,9.057,9.057
|
||||
c4.982,0,9.058-4.04,9.058-9.057c0-3.658-2.195-6.758-5.295-8.221L29.396,32.433z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.418" stroke-miterlimit="3.863" d="M23.613,33.372
|
||||
c0.523-0.104,1.01-0.174,1.463-0.174c5.4,0,9.754,4.424,9.754,9.859c0,0.277,0,0.557-0.034,0.87"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M17.168,52.532 M62.213,52.532H17.169V51.87h45.043V52.532z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.348" stroke-miterlimit="3.863" d="M17.168,52.532 M62.213,52.532H17.169V51.87
|
||||
h45.043V52.532z"/>
|
||||
<path fill="#0071B3" d="M25.843,41.907c-0.244-0.139-0.488-0.104-0.767-0.104c-0.766,0-1.358,0.593-1.358,1.289
|
||||
c0,0.731,0.592,1.323,1.358,1.323c0.592,0,1.15-0.418,1.289-0.939h6.828c-0.244,4.284-3.797,7.664-8.117,7.664
|
||||
c-4.598,0-8.256-3.693-8.256-8.188c0-4.563,3.658-8.221,8.256-8.221c1.045,0,2.09,0.209,3.066,0.627l-0.558,2.194
|
||||
C27.271,38.842,26.854,40.34,25.843,41.907z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M25.843,41.907
|
||||
c-0.244-0.139-0.488-0.104-0.767-0.104c-0.766,0-1.358,0.593-1.358,1.289c0,0.731,0.592,1.323,1.358,1.323
|
||||
c0.592,0,1.15-0.418,1.289-0.939h6.828c-0.244,4.284-3.797,7.664-8.117,7.664c-4.598,0-8.256-3.693-8.256-8.188
|
||||
c0-4.563,3.658-8.221,8.256-8.221c1.045,0,2.09,0.209,3.066,0.627l-0.558,2.194C27.271,38.842,26.854,40.34,25.843,41.907z"/>
|
||||
<path fill="#0071B3" d="M29.048,35.776l-0.732,2.473c-0.348,1.15-1.184,3.658-1.916,4.564c0.07,0.174-0.035-0.174,0,0h6.863
|
||||
C33.158,39.608,31.695,37.101,29.048,35.776z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M29.048,35.776l-0.732,2.473
|
||||
c-0.348,1.15-1.184,3.658-1.916,4.564c0.07,0.174-0.035-0.174,0,0h6.863C33.158,39.608,31.695,37.101,29.048,35.776z"/>
|
||||
<path fill="#0071B3" d="M29.535,31.874l0.279-1.428h17.209L42.32,40.653c-0.209-0.07-0.348-0.349-0.662-0.279v-2.646h0.559v-0.802
|
||||
h-2.195v0.802h0.592v2.717c-0.487,0.104-0.557,0.035-0.906,0.348L29.535,31.874z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M29.535,31.874l0.279-1.428h17.209L42.32,40.653
|
||||
c-0.209-0.07-0.348-0.349-0.662-0.279v-2.646h0.559v-0.802h-2.195v0.802h0.592v2.717c-0.487,0.104-0.557,0.035-0.906,0.348
|
||||
L29.535,31.874z"/>
|
||||
<path fill="#0071B3" d="M61.828,39.469c0.662,1.149,0.768,2.16,0.768,3.589c0,4.493-3.658,8.15-8.221,8.15
|
||||
c-4.426,0-7.979-3.273-8.152-7.629h6.479c0.141,0.836,0.871,1.498,1.742,1.498c1.01,0,1.848-1.08,1.848-2.02
|
||||
c0-0.384-0.314-0.384-0.279-0.384C57.963,41.594,59.879,40.549,61.828,39.469z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.348" stroke-miterlimit="3.863" d="M61.828,39.469
|
||||
c0.662,1.149,0.768,2.16,0.768,3.589c0,4.493-3.658,8.15-8.221,8.15c-4.426,0-7.979-3.273-8.152-7.629h6.479
|
||||
c0.141,0.836,0.871,1.498,1.742,1.498c1.01,0,1.848-1.08,1.848-2.02c0-0.384-0.314-0.384-0.279-0.384
|
||||
C57.963,41.594,59.879,40.549,61.828,39.469z"/>
|
||||
<path fill="#0071B3" d="M55.838,41.803l5.504-3.065c-1.43-2.334-4.006-3.902-7.002-3.902c-1.289,0-2.578,0.279-3.693,0.871
|
||||
l3.1,5.609c0.176-0.07,0.453-0.14,0.662-0.14C54.932,41.176,55.42,41.454,55.838,41.803z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M55.838,41.803l5.504-3.065
|
||||
c-1.43-2.334-4.006-3.902-7.002-3.902c-1.289,0-2.578,0.279-3.693,0.871l3.1,5.609c0.176-0.07,0.453-0.14,0.662-0.14
|
||||
C54.932,41.176,55.42,41.454,55.838,41.803z"/>
|
||||
<path fill="#0071B3" d="M49.984,36.09l3.205,5.782c-0.313,0.279-0.453,0.453-0.521,0.906h-6.516
|
||||
C46.258,39.887,47.686,37.483,49.984,36.09z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M49.984,36.09l3.205,5.782
|
||||
c-0.313,0.279-0.453,0.453-0.521,0.906h-6.516C46.258,39.887,47.686,37.483,49.984,36.09z"/>
|
||||
<path fill="#0071B3" d="M47.547,31.353l-4.6,9.754c0.559,0.209,1.08,0.871,1.115,1.707l1.01-0.035c0.105-3.17,1.707-6.027,4.25-7.56
|
||||
L47.547,31.353z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M47.547,31.353l-4.6,9.754
|
||||
c0.559,0.209,1.08,0.871,1.115,1.707l1.01-0.035c0.105-3.17,1.707-6.027,4.25-7.56L47.547,31.353z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.418" stroke-miterlimit="3.863" d="M44.795,44.485
|
||||
c-0.105-0.488-0.141-0.976-0.141-1.428c0-5.436,4.424-9.859,9.824-9.859c4.006,0,7.42,2.404,8.953,5.853"/>
|
||||
</svg>
|
After (image error) Size: 8.2 KiB |
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="80.077px" height="79.982px" viewBox="0 0 80.077 79.982" enable-background="new 0 0 80.077 79.982" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M40.031,79.904c-30.716,0-49.905-33.266-34.547-59.868
|
||||
c15.358-26.603,53.753-26.619,69.111,0C89.953,46.638,70.748,79.904,40.031,79.904z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.156" stroke-miterlimit="3.863" d="M40.031,79.904
|
||||
c-30.716,0-49.905-33.266-34.547-59.868c15.358-26.603,53.753-26.619,69.111,0C89.953,46.638,70.748,79.904,40.031,79.904z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M40.031,77.902c-29.183,0-47.419-31.607-32.827-56.881
|
||||
c14.576-25.274,51.063-25.274,65.655,0C87.45,46.294,69.215,77.902,40.031,77.902z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.156" stroke-miterlimit="3.863" d="M40.031,77.902
|
||||
c-29.183,0-47.419-31.607-32.827-56.881c14.576-25.274,51.063-25.274,65.655,0C87.45,46.294,69.215,77.902,40.031,77.902z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M40.031,75.462c-27.306,0-44.369-29.574-30.716-53.221
|
||||
c13.654-23.647,47.778-23.647,61.433,0C84.401,45.888,67.338,75.462,40.031,75.462z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.156" stroke-miterlimit="3.863" d="M40.031,75.462
|
||||
c-27.306,0-44.369-29.574-30.716-53.221c13.654-23.647,47.778-23.647,61.433,0C84.401,45.888,67.338,75.462,40.031,75.462z"/>
|
||||
<path fill="#FFFFFF" d="M60.598,38.787l-4.566-7.1c-0.656-0.813-2.033-1.752-3.128-1.626v-1.22c0.782-0.376,1.313-1.126,1.313-2.096
|
||||
c0-1.22-0.969-2.283-2.283-2.283c-1.221,0-2.252,1.063-2.252,2.283c0,1.032,0.656,1.845,1.595,2.158v1.064
|
||||
c-1.282,0-4.379,0.844-4.379,4.003v6.663c0,0.532,0.438,0.97,0.97,0.97c0.563,0,0.969-0.438,0.969-0.97v-6.162
|
||||
c0-0.25,0.188-0.375,0.438-0.375s0.376,0.125,0.376,0.375v17.735c0,0.563,0.469,1.031,1.063,1.031c0.533,0,0.938-0.469,0.938-1.031
|
||||
v-9.571c0-0.376,0.282-0.626,0.657-0.626c0.376,0,0.595,0.25,0.595,0.626v11.792c0,0.531,0.47,1.063,1.063,1.063
|
||||
c0.531,0,0.97-0.531,0.97-1.063V33.845l3.784,5.943c0.313,0.531,0.75,0.47,1.127,0.344c0.312,1.22,0.531,1.939,1.376,1.971
|
||||
l2.627,0.156l-1.876,6.068h1.438v4.441c0,0.282,0.313,0.563,0.657,0.563c0.376,0,0.657-0.28,0.657-0.563v-4.504h0.845v3.628
|
||||
c0,0.313,0.281,0.626,0.656,0.626c0.376,0,0.688-0.313,0.688-0.626v-3.565h1.377l-1.314-5.004l1.689,1.877
|
||||
c0.219,0.125,0.438,0.125,0.563,0c0.188-0.157,0.251-0.313,0.094-0.627l-2.283-2.596c-0.469-0.501-0.75-0.813-1.377-0.939
|
||||
c-0.156-0.155-0.093-0.344-0.062-0.53c0.563-0.25,0.876-0.845,0.876-1.47c0-0.907-0.657-1.627-1.533-1.627
|
||||
c-0.97,0-1.689,0.72-1.689,1.627c0,0.719,0.47,1.313,1.189,1.531c0.031,0.219,0.063,0.563-0.219,0.688h-2.189
|
||||
c-0.375,0-0.563-0.062-0.813-0.345c-0.22-0.405-0.501-0.969-0.501-1.25c0-0.219-0.063-0.188-0.156-0.281
|
||||
C60.66,39.225,60.723,39.1,60.598,38.787z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M60.598,38.787l-4.566-7.1
|
||||
c-0.656-0.813-2.033-1.752-3.128-1.626v-1.22c0.782-0.376,1.313-1.126,1.313-2.096c0-1.22-0.969-2.283-2.283-2.283
|
||||
c-1.221,0-2.252,1.063-2.252,2.283c0,1.032,0.656,1.845,1.595,2.158v1.064c-1.282,0-4.379,0.844-4.379,4.003v6.663
|
||||
c0,0.532,0.438,0.97,0.97,0.97c0.563,0,0.969-0.438,0.969-0.97v-6.162c0-0.25,0.188-0.375,0.438-0.375s0.376,0.125,0.376,0.375
|
||||
v17.735c0,0.563,0.469,1.031,1.063,1.031c0.533,0,0.938-0.469,0.938-1.031v-9.571c0-0.376,0.282-0.626,0.657-0.626
|
||||
c0.376,0,0.595,0.25,0.595,0.626v11.792c0,0.531,0.47,1.063,1.063,1.063c0.531,0,0.97-0.531,0.97-1.063V33.845l3.784,5.943
|
||||
c0.313,0.531,0.75,0.47,1.127,0.344c0.312,1.22,0.531,1.939,1.376,1.971l2.627,0.156l-1.876,6.068h1.438v4.441
|
||||
c0,0.282,0.313,0.563,0.657,0.563c0.376,0,0.657-0.28,0.657-0.563v-4.504h0.845v3.628c0,0.313,0.281,0.626,0.656,0.626
|
||||
c0.376,0,0.688-0.313,0.688-0.626v-3.565h1.377l-1.314-5.004l1.689,1.877c0.219,0.125,0.438,0.125,0.563,0
|
||||
c0.188-0.157,0.251-0.313,0.094-0.627l-2.283-2.596c-0.469-0.501-0.75-0.813-1.377-0.939c-0.156-0.155-0.093-0.344-0.062-0.53
|
||||
c0.563-0.25,0.876-0.845,0.876-1.47c0-0.907-0.657-1.627-1.533-1.627c-0.97,0-1.689,0.72-1.689,1.627
|
||||
c0,0.719,0.47,1.313,1.189,1.531c0.031,0.219,0.063,0.563-0.219,0.688h-2.189c-0.375,0-0.563-0.062-0.813-0.345
|
||||
c-0.22-0.405-0.501-0.969-0.501-1.25c0-0.219-0.063-0.188-0.156-0.281C60.66,39.225,60.723,39.1,60.598,38.787z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.234,77.152 M40.846,77.152h-1.611V2.816h1.611V77.152z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.156" stroke-miterlimit="3.863" d="M39.234,77.152 M40.846,77.152h-1.611V2.816
|
||||
h1.611V77.152z"/>
|
||||
<path fill="#FFFFFF" d="M15.258,35.347l6.538,5.88c-0.251,0.282-0.407,0.688-0.407,1.063c0,0.845,0.719,1.564,1.501,1.658v1.939
|
||||
h-0.25v0.344h0.813v-0.344h-0.219V43.98c0.782-0.031,1.408-0.656,1.502-1.408h0.938c0.125,3.223,2.721,5.693,5.881,5.693
|
||||
c3.315,0,5.974-2.659,5.974-5.943c0-3.252-2.659-5.912-5.974-5.912c-0.97,0-1.877,0.219-2.69,0.688l-1.689-3.065l0.406-0.844
|
||||
c0.125-0.219,0.438-0.126,0.657-0.345c0.031-0.156,0.031-0.25,0.031-0.375c-0.093-0.094-0.125-0.188-0.281-0.188h-2.19
|
||||
c-0.031,0.032-0.125,0-0.187,0c0,0.032-0.063,0.063-0.094,0.063c-0.031,0.156-0.031,0.281,0,0.407
|
||||
c0.031,0.031,0.094,0.062,0.125,0.062h1.126c0.125-0.031,0.219,0.031,0.375,0.031c0,0.032,0,0.032,0.063,0.063
|
||||
c-0.031,0.125,0.062,0.219,0,0.25l-0.219,0.532H15.634l0.312-1.345c0.282-0.063,0.47,0.125,1.001-0.094
|
||||
c0.188,0,0.688-0.25,1.251-0.062c0.126-0.094-0.031-0.126,0.032-0.157c-0.063-0.031,0.094-0.219,0.062-0.25
|
||||
c-0.312-0.094-1.094-0.156-1.439,0.031c-0.375,0.219-0.844,0.094-1.188,0.125l-1.126,4.849c-0.626-0.251-1.376-0.407-2.096-0.407
|
||||
c-3.284,0-5.943,2.659-5.943,5.942c0,3.284,2.659,5.943,5.943,5.943c3.222,0,5.912-2.659,5.912-5.943
|
||||
c0-2.408-1.47-4.441-3.503-5.379L15.258,35.347"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.156" stroke-miterlimit="3.863" d="M11.474,36.004
|
||||
c0.345-0.032,0.626-0.126,0.97-0.126c3.503,0,6.381,2.908,6.381,6.443c0,0.219,0,0.438-0.031,0.627"/>
|
||||
<path fill="#0071B3" d="M12.913,41.603c-0.156-0.094-0.312-0.063-0.469-0.063c-0.5,0-0.907,0.406-0.907,0.845
|
||||
c0,0.5,0.407,0.844,0.907,0.844c0.344,0,0.72-0.219,0.813-0.594h4.505c-0.188,2.846-2.503,5.036-5.318,5.036
|
||||
c-3.003,0-5.411-2.409-5.411-5.381c0-3.002,2.408-5.411,5.411-5.411c0.688,0,1.314,0.188,2.002,0.407l-0.375,1.47
|
||||
C13.852,39.601,13.601,40.57,12.913,41.603"/>
|
||||
<path fill="#0071B3" d="M14.79,37.474l-0.375,1.532c-0.188,0.688-0.782,2.221-1.251,2.815c0,0.125,0.093,0.281,0.125,0.406h4.473
|
||||
C17.729,40.101,16.542,38.318,14.79,37.474z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M14.79,37.474l-0.375,1.532
|
||||
c-0.188,0.688-0.782,2.221-1.251,2.815c0,0.125,0.093,0.281,0.125,0.406h4.473C17.729,40.101,16.542,38.318,14.79,37.474z"/>
|
||||
<path fill="#0071B3" d="M15.353,35.034l0.188-0.938H26.8l-3.128,6.599c-0.156-0.062-0.25-0.125-0.469-0.125v-1.875h0.25V38.35
|
||||
h-0.813v0.345h0.25v1.907c-0.484,0.047-0.563,0.187-0.782,0.406L15.353,35.034"/>
|
||||
<path fill="#0071B3" d="M32.775,41.728l3.565-1.971c0.407,0.813,0.657,1.689,0.657,2.564c0,2.972-2.408,5.411-5.411,5.411
|
||||
c-2.878,0-5.224-2.252-5.318-5.161h4.161c0.062,0.563,0.594,1.002,1.157,1.002c0.688,0,1.251-0.563,1.251-1.252
|
||||
c0-0.219-0.031-0.375-0.094-0.531"/>
|
||||
<path fill="#0071B3" d="M32.557,41.541l3.597-2.002c-0.97-1.533-2.597-2.565-4.598-2.565c-0.814,0-1.658,0.188-2.378,0.532
|
||||
l2.034,3.722c0.093-0.062,0.281-0.094,0.375-0.094C31.961,41.133,32.305,41.291,32.557,41.541"/>
|
||||
<path fill="#0071B3" d="M28.865,37.755l2.033,3.691c-0.188,0.219-0.407,0.469-0.438,0.75h-4.223
|
||||
c0.031-1.877,1.064-3.535,2.565-4.473"/>
|
||||
<path fill="#0071B3" d="M26.988,34.408l-2.909,6.444c0.375,0.313,0.719,0.813,0.751,1.376h0.907
|
||||
c0.062-2.096,1.157-3.941,2.846-4.973L26.988,34.408"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.156" stroke-miterlimit="3.863" d="M25.331,43.324
|
||||
c-0.062-0.313-0.094-0.658-0.094-1.002c0-3.535,2.909-6.443,6.412-6.443c2.659,0,4.88,1.627,5.881,3.816"/>
|
||||
</svg>
|
After (image error) Size: 8.1 KiB |
|
@ -0,0 +1,77 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.58px" height="79.485px" viewBox="0 0 79.58 79.485" enable-background="new 0 0 79.58 79.485" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.783,79.408c-30.525,0-49.595-33.06-34.333-59.497
|
||||
c15.263-26.438,53.419-26.453,68.683,0C89.395,46.349,70.309,79.408,39.783,79.408z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,79.408
|
||||
c-30.525,0-49.595-33.06-34.333-59.497c15.263-26.438,53.419-26.453,68.683,0C89.395,46.349,70.309,79.408,39.783,79.408z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.783,77.418c-29.002,0-47.124-31.411-32.623-56.527
|
||||
c14.485-25.117,50.746-25.117,65.247,0C86.908,46.007,68.785,77.418,39.783,77.418z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,77.418
|
||||
c-29.002,0-47.124-31.411-32.623-56.527c14.485-25.117,50.746-25.117,65.247,0C86.908,46.007,68.785,77.418,39.783,77.418z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.783,74.994c-27.137,0-44.093-29.392-30.525-52.892
|
||||
c13.569-23.5,47.482-23.5,61.05,0S66.92,74.994,39.783,74.994z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,74.994
|
||||
c-27.137,0-44.093-29.392-30.525-52.892c13.569-23.5,47.482-23.5,61.05,0S66.92,74.994,39.783,74.994z"/>
|
||||
<path fill="#FFFFFF" d="M42.208,25.973l-4.538-7.056c-0.653-0.808-2.021-1.741-3.109-1.616v-1.213
|
||||
c0.777-0.373,1.306-1.119,1.306-2.082c0-1.213-0.964-2.27-2.27-2.27c-1.212,0-2.238,1.057-2.238,2.27
|
||||
c0,1.025,0.653,1.834,1.586,2.144v1.057c-1.275,0-4.352,0.84-4.352,3.979v6.621c0,0.529,0.435,0.964,0.963,0.964
|
||||
c0.56,0,0.964-0.435,0.964-0.964v-6.123c0-0.249,0.187-0.374,0.435-0.374c0.249,0,0.373,0.125,0.373,0.374v17.624
|
||||
c0,0.56,0.467,1.026,1.057,1.026c0.529,0,0.933-0.467,0.933-1.026v-9.511c0-0.373,0.279-0.622,0.652-0.622s0.591,0.249,0.591,0.622
|
||||
v11.718c0,0.529,0.466,1.058,1.057,1.058c0.528,0,0.964-0.528,0.964-1.058V21.062l3.761,5.906c0.311,0.528,0.747,0.466,1.12,0.342
|
||||
c0.311,1.212,0.527,1.927,1.367,1.958l2.611,0.156l-1.865,6.03h1.43v4.414c0,0.281,0.311,0.561,0.652,0.561
|
||||
c0.373,0,0.652-0.279,0.652-0.561v-4.476h0.84v3.606c0,0.31,0.279,0.621,0.652,0.621s0.685-0.312,0.685-0.621v-3.544h1.368
|
||||
l-1.307-4.974l1.68,1.866c0.217,0.124,0.435,0.124,0.559,0c0.188-0.156,0.249-0.311,0.094-0.622l-2.27-2.58
|
||||
c-0.467-0.498-0.746-0.808-1.367-0.933c-0.156-0.155-0.094-0.342-0.063-0.528c0.56-0.249,0.871-0.839,0.871-1.461
|
||||
c0-0.902-0.653-1.617-1.523-1.617c-0.964,0-1.68,0.715-1.68,1.617c0,0.715,0.467,1.305,1.182,1.523
|
||||
c0.031,0.218,0.063,0.56-0.217,0.684h-2.176c-0.373,0-0.561-0.062-0.809-0.342c-0.218-0.404-0.498-0.964-0.498-1.243
|
||||
c0-0.218-0.063-0.187-0.154-0.28C42.27,26.408,42.332,26.284,42.208,25.973z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M42.208,25.973l-4.538-7.056
|
||||
c-0.653-0.808-2.021-1.741-3.109-1.616v-1.213c0.777-0.373,1.306-1.119,1.306-2.082c0-1.213-0.964-2.27-2.27-2.27
|
||||
c-1.212,0-2.238,1.057-2.238,2.27c0,1.025,0.653,1.834,1.586,2.144v1.057c-1.275,0-4.352,0.84-4.352,3.979v6.621
|
||||
c0,0.529,0.435,0.964,0.963,0.964c0.56,0,0.964-0.435,0.964-0.964v-6.123c0-0.249,0.187-0.374,0.435-0.374
|
||||
c0.249,0,0.373,0.125,0.373,0.374v17.624c0,0.56,0.467,1.026,1.057,1.026c0.529,0,0.933-0.467,0.933-1.026v-9.511
|
||||
c0-0.373,0.279-0.622,0.652-0.622s0.591,0.249,0.591,0.622v11.718c0,0.529,0.466,1.058,1.057,1.058c0.528,0,0.964-0.528,0.964-1.058
|
||||
V21.062l3.761,5.906c0.311,0.528,0.747,0.466,1.12,0.342c0.311,1.212,0.527,1.927,1.367,1.958l2.611,0.156l-1.865,6.03h1.43v4.414
|
||||
c0,0.281,0.311,0.561,0.652,0.561c0.373,0,0.652-0.279,0.652-0.561v-4.476h0.84v3.606c0,0.31,0.279,0.621,0.652,0.621
|
||||
s0.685-0.312,0.685-0.621v-3.544h1.368l-1.307-4.974l1.68,1.866c0.217,0.124,0.435,0.124,0.559,0
|
||||
c0.188-0.156,0.249-0.311,0.094-0.622l-2.27-2.58c-0.467-0.498-0.746-0.808-1.367-0.933c-0.156-0.155-0.094-0.342-0.063-0.528
|
||||
c0.56-0.249,0.871-0.839,0.871-1.461c0-0.902-0.653-1.617-1.523-1.617c-0.964,0-1.68,0.715-1.68,1.617
|
||||
c0,0.715,0.467,1.305,1.182,1.523c0.031,0.218,0.063,0.56-0.217,0.684h-2.176c-0.373,0-0.561-0.062-0.809-0.342
|
||||
c-0.218-0.404-0.498-0.964-0.498-1.243c0-0.218-0.063-0.187-0.154-0.28C42.27,26.408,42.332,26.284,42.208,25.973z"/>
|
||||
<path fill="#FFFFFF" d="M33.069,53.031l6.497,5.845c-0.249,0.28-0.404,0.684-0.404,1.057c0,0.839,0.715,1.554,1.492,1.647v1.928
|
||||
h-0.249v0.342h0.808v-0.342h-0.217v-1.896c0.777-0.031,1.398-0.652,1.492-1.398h0.932c0.125,3.201,2.705,5.656,5.844,5.656
|
||||
c3.295,0,5.938-2.642,5.938-5.905c0-3.233-2.643-5.875-5.938-5.875c-0.963,0-1.864,0.218-2.672,0.685l-1.68-3.047l0.404-0.84
|
||||
c0.125-0.217,0.436-0.124,0.652-0.341C46,50.39,46,50.297,46,50.173c-0.093-0.095-0.124-0.187-0.279-0.187h-2.176
|
||||
c-0.031,0.03-0.125,0-0.187,0c0,0.03-0.062,0.062-0.093,0.062c-0.031,0.155-0.031,0.28,0,0.403c0.031,0.031,0.093,0.063,0.123,0.063
|
||||
h1.119c0.125-0.031,0.219,0.032,0.373,0.032c0,0.03,0,0.03,0.063,0.062c-0.031,0.125,0.063,0.217,0,0.248l-0.217,0.529H33.442
|
||||
l0.311-1.337c0.28-0.062,0.466,0.125,0.995-0.093c0.186,0,0.683-0.25,1.243-0.063c0.124-0.093-0.031-0.125,0.031-0.156
|
||||
c-0.062-0.031,0.093-0.217,0.062-0.248c-0.311-0.094-1.088-0.156-1.43,0.031c-0.373,0.217-0.839,0.094-1.181,0.124l-1.119,4.818
|
||||
c-0.622-0.248-1.368-0.404-2.083-0.404c-3.263,0-5.906,2.642-5.906,5.906c0,3.264,2.643,5.905,5.906,5.905
|
||||
c3.202,0,5.875-2.642,5.875-5.905c0-2.394-1.461-4.414-3.481-5.347L33.069,53.031"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M29.308,53.685
|
||||
c0.342-0.03,0.621-0.124,0.963-0.124c3.482,0,6.342,2.891,6.342,6.403c0,0.218,0,0.435-0.031,0.622"/>
|
||||
<path fill="#0071B3" d="M30.738,59.248c-0.156-0.092-0.311-0.062-0.467-0.062c-0.497,0-0.901,0.404-0.901,0.839
|
||||
c0,0.498,0.404,0.84,0.901,0.84c0.342,0,0.715-0.217,0.809-0.59h4.476c-0.187,2.828-2.487,5.004-5.285,5.004
|
||||
c-2.984,0-5.377-2.394-5.377-5.347c0-2.983,2.393-5.378,5.377-5.378c0.684,0,1.306,0.188,1.99,0.405l-0.373,1.461
|
||||
C31.67,57.26,31.422,58.223,30.738,59.248"/>
|
||||
<path fill="#0071B3" d="M32.603,55.146l-0.373,1.523c-0.187,0.684-0.777,2.207-1.244,2.798c0,0.124,0.094,0.279,0.125,0.404h4.445
|
||||
C35.525,57.757,34.343,55.984,32.603,55.146z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M32.603,55.146l-0.373,1.523
|
||||
c-0.187,0.684-0.777,2.207-1.244,2.798c0,0.124,0.094,0.279,0.125,0.404h4.445C35.525,57.757,34.343,55.984,32.603,55.146z"/>
|
||||
<path fill="#0071B3" d="M33.162,52.722l0.187-0.933h11.19l-3.107,6.559c-0.156-0.063-0.25-0.125-0.467-0.125v-1.865h0.248v-0.342
|
||||
h-0.808v0.342h0.249v1.897c-0.482,0.046-0.56,0.187-0.777,0.403L33.162,52.722"/>
|
||||
<path fill="#0071B3" d="M50.477,59.373l3.543-1.959c0.404,0.809,0.654,1.68,0.654,2.55c0,2.952-2.395,5.378-5.379,5.378
|
||||
c-2.859,0-5.191-2.238-5.283-5.129h4.133c0.063,0.559,0.592,0.994,1.15,0.994c0.684,0,1.244-0.559,1.244-1.243
|
||||
c0-0.218-0.031-0.373-0.094-0.528"/>
|
||||
<path fill="#0071B3" d="M50.26,59.187l3.574-1.989c-0.964-1.522-2.581-2.549-4.57-2.549c-0.808,0-1.646,0.187-2.361,0.528
|
||||
l2.02,3.699c0.094-0.063,0.28-0.093,0.373-0.093C49.668,58.783,50.01,58.938,50.26,59.187"/>
|
||||
<path fill="#0071B3" d="M46.592,55.426l2.02,3.668c-0.186,0.217-0.404,0.466-0.436,0.746H43.98c0.031-1.865,1.057-3.514,2.549-4.445
|
||||
"/>
|
||||
<path fill="#0071B3" d="M44.727,52.1l-2.892,6.403c0.373,0.311,0.716,0.808,0.746,1.368h0.901c0.063-2.084,1.15-3.918,2.828-4.942
|
||||
L44.727,52.1"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M43.078,60.959
|
||||
c-0.063-0.311-0.093-0.653-0.093-0.995c0-3.513,2.891-6.403,6.372-6.403c2.643,0,4.85,1.616,5.844,3.792"/>
|
||||
</svg>
|
After (image error) Size: 7.8 KiB |
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.58px" height="79.484px" viewBox="0 0 79.58 79.484" enable-background="new 0 0 79.58 79.484" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.783,79.407c-30.525,0-49.595-33.059-34.333-59.496
|
||||
c15.263-26.438,53.419-26.452,68.683,0C89.395,46.349,70.309,79.407,39.783,79.407z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,79.407
|
||||
c-30.525,0-49.595-33.059-34.333-59.496c15.263-26.438,53.419-26.452,68.683,0C89.395,46.349,70.309,79.407,39.783,79.407z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.783,77.418c-29.002,0-47.124-31.411-32.623-56.527
|
||||
c14.485-25.117,50.746-25.117,65.247,0C86.908,46.007,68.785,77.418,39.783,77.418z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,77.418
|
||||
c-29.002,0-47.124-31.411-32.623-56.527c14.485-25.117,50.746-25.117,65.247,0C86.908,46.007,68.785,77.418,39.783,77.418z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.783,74.993c-27.137,0-44.093-29.391-30.525-52.891
|
||||
c13.569-23.5,47.482-23.5,61.05,0S66.92,74.993,39.783,74.993z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,74.993
|
||||
c-27.137,0-44.093-29.391-30.525-52.891c13.569-23.5,47.482-23.5,61.05,0S66.92,74.993,39.783,74.993z"/>
|
||||
<path fill="#FFFFFF" d="M43.219,38.033l-6.435-10.087c-0.933-1.149-2.891-2.486-4.492-2.269v-1.772
|
||||
c1.15-0.527,1.912-1.601,1.912-2.969c0-1.74-1.43-3.248-3.249-3.248c-1.772,0-3.201,1.508-3.201,3.248
|
||||
c0,1.461,0.932,2.612,2.269,3.063v1.508c-1.819,0-6.217,1.197-6.217,5.688v9.466c0,0.746,0.621,1.367,1.383,1.367
|
||||
c0.793,0,1.414-0.621,1.414-1.367v-8.72c0-0.342,0.218-0.575,0.575-0.575c0.358,0,0.544,0.233,0.544,0.575v25.148
|
||||
c0,0.793,0.653,1.461,1.461,1.461c0.793,0,1.415-0.668,1.415-1.461V43.488c0-0.527,0.357-0.886,0.886-0.886
|
||||
c0.544,0,0.855,0.358,0.855,0.886v16.755c0,0.746,0.668,1.509,1.46,1.509c0.809,0,1.43-0.763,1.43-1.509V31.009l5.332,8.438
|
||||
c0.481,0.763,1.057,0.622,1.632,0.498c0.498,1.679,0.762,2.797,1.959,2.797l3.683,0.219l-2.658,8.626h2.131v6.295
|
||||
c0,0.403,0.403,0.808,0.886,0.808c0.497,0,0.839-0.404,0.839-0.808v-6.389h1.243v5.145c0,0.451,0.403,0.902,0.979,0.902
|
||||
c0.498,0,0.886-0.451,0.886-0.902v-5.051h2.006l-1.865-7.165l2.486,2.72c0.219,0.171,0.529,0.171,0.763,0
|
||||
c0.217-0.233,0.356-0.451,0.077-0.886l-3.187-3.699c-0.715-0.7-1.118-1.197-1.958-1.321c-0.264-0.232-0.187-0.498-0.093-0.762
|
||||
c0.808-0.404,1.29-1.15,1.29-2.083c0-1.336-1.073-2.315-2.316-2.315c-1.274,0-2.3,0.979-2.3,2.315c0,1.011,0.668,1.866,1.647,2.176
|
||||
c0.031,0.312,0.078,0.746-0.28,0.98h-3.155c-0.527,0-0.746-0.095-1.103-0.498c-0.312-0.575-0.716-1.321-0.716-1.772
|
||||
c0-0.31-0.125-0.264-0.264-0.403C43.358,38.655,43.436,38.469,43.219,38.033z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M43.219,38.033l-6.435-10.087
|
||||
c-0.933-1.149-2.891-2.486-4.492-2.269v-1.772c1.15-0.527,1.912-1.601,1.912-2.969c0-1.74-1.43-3.248-3.249-3.248
|
||||
c-1.772,0-3.201,1.508-3.201,3.248c0,1.461,0.932,2.612,2.269,3.063v1.508c-1.819,0-6.217,1.197-6.217,5.688v9.466
|
||||
c0,0.746,0.621,1.367,1.383,1.367c0.793,0,1.414-0.621,1.414-1.367v-8.72c0-0.342,0.218-0.575,0.575-0.575
|
||||
c0.358,0,0.544,0.233,0.544,0.575v25.148c0,0.793,0.653,1.461,1.461,1.461c0.793,0,1.415-0.668,1.415-1.461V43.488
|
||||
c0-0.527,0.357-0.886,0.886-0.886c0.544,0,0.855,0.358,0.855,0.886v16.755c0,0.746,0.668,1.509,1.46,1.509
|
||||
c0.809,0,1.43-0.763,1.43-1.509V31.009l5.332,8.438c0.481,0.763,1.057,0.622,1.632,0.498c0.498,1.679,0.762,2.797,1.959,2.797
|
||||
l3.683,0.219l-2.658,8.626h2.131v6.295c0,0.403,0.403,0.808,0.886,0.808c0.497,0,0.839-0.404,0.839-0.808v-6.389h1.243v5.145
|
||||
c0,0.451,0.403,0.902,0.979,0.902c0.498,0,0.886-0.451,0.886-0.902v-5.051h2.006l-1.865-7.165l2.486,2.72
|
||||
c0.219,0.171,0.529,0.171,0.763,0c0.217-0.233,0.356-0.451,0.077-0.886l-3.187-3.699c-0.715-0.7-1.118-1.197-1.958-1.321
|
||||
c-0.264-0.232-0.187-0.498-0.093-0.762c0.808-0.404,1.29-1.15,1.29-2.083c0-1.336-1.073-2.315-2.316-2.315
|
||||
c-1.274,0-2.3,0.979-2.3,2.315c0,1.011,0.668,1.866,1.647,2.176c0.031,0.312,0.078,0.746-0.28,0.98h-3.155
|
||||
c-0.527,0-0.746-0.095-1.103-0.498c-0.312-0.575-0.716-1.321-0.716-1.772c0-0.31-0.125-0.264-0.264-0.403
|
||||
C43.358,38.655,43.436,38.469,43.219,38.033z"/>
|
||||
</svg>
|
After (image error) Size: 4.6 KiB |
105
assets/layers/traffic_sign/images/be/D/Belgian_road_sign_D13.svg
Normal file
|
@ -0,0 +1,105 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="79.58px" height="79.485px" viewBox="0 0 79.58 79.485" enable-background="new 0 0 79.58 79.485" xml:space="preserve">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.783,79.408c-30.525,0-49.595-33.06-34.333-59.496
|
||||
c15.263-26.438,53.419-26.453,68.683,0C89.395,46.349,70.309,79.408,39.783,79.408z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,79.408
|
||||
c-30.525,0-49.595-33.06-34.333-59.496c15.263-26.438,53.419-26.453,68.683,0C89.395,46.349,70.309,79.408,39.783,79.408z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M39.783,77.418c-29.002,0-47.124-31.411-32.623-56.527
|
||||
c14.485-25.116,50.746-25.116,65.247,0S68.785,77.418,39.783,77.418z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,77.418
|
||||
c-29.002,0-47.124-31.411-32.623-56.527c14.485-25.116,50.746-25.116,65.247,0S68.785,77.418,39.783,77.418z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#0071B3" d="M39.783,74.994c-27.137,0-44.093-29.392-30.525-52.892
|
||||
c13.569-23.5,47.482-23.5,61.05,0S66.92,74.994,39.783,74.994z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.155" stroke-miterlimit="3.863" d="M39.783,74.994
|
||||
c-27.137,0-44.093-29.392-30.525-52.892c13.569-23.5,47.482-23.5,61.05,0S66.92,74.994,39.783,74.994z"/>
|
||||
<path fill="#FFFFFF" d="M22.454,33.667c0.155,0,1.196,0.777,1.352,0.808c5.719,3.886,1.943,6.419,5.984,10.149l-4.383,4.663
|
||||
c0,0.031-0.078,0.077-0.047,0.155c-0.342,0.496-0.42,1.118-0.342,1.74c0.078,0.046,0.886,2.797,1.43,3.467
|
||||
c-0.031,0.154,0.047,0.342,0.124,0.466c0,0.03,0.031,0.108,0.078,0.154c-0.233,0.343-0.357,0.778-0.311,1.166
|
||||
c0.187,0.188,0.42,0.39,0.622,0.653l1.01-0.544l-0.124-0.777c-0.078-0.466-0.311-0.498-0.544-0.854c0-0.078-0.389-0.731-0.389-0.809
|
||||
c-0.186-0.201-0.264-1.213-0.388-1.477c-0.42-1.057,0.046-0.388-0.42-1.367c0.109-0.156,0.109-0.7,0.342-0.622
|
||||
c2.02-1.43,4.041-2.829,6.108-4.273c0.653,1.057,1.896,2.455,2.331,4.087c0.342,1.43,3.264,4.741,3.684,5.859
|
||||
c0.202,0.467-0.342,1.165-0.342,1.709h1.43l-0.109-1.041l0.342-0.124l-0.777-1.118c-0.653-1.012-0.699-0.824-1.275-1.912
|
||||
c-0.357-0.699-0.621-1.399-0.746-2.053c-0.031-0.123-0.777-3.885-0.419-5.673l0.932-0.668c1.43,0,2.643,0.124,4.119-0.108
|
||||
c1.041-0.155,2.906-0.312,3.684-0.855c1.787-0.543,2.378-1.321,2.875-1.476c0.078,0-0.031,0.03,0,0c0,0,0.047,0.886,1.368,3.03
|
||||
c0.544,1.196,1.896,2.44,0.854,3.684c-0.436,0.544-2.377,2.688-2.564,3.155c0,0.155-0.124,0.342-0.233,0.467
|
||||
c0,0.077-0.077,0.107-0.047,0.232c-0.187,0.109-0.312,0.312-0.419,0.497c0.031,0.436-0.311,0.622-0.047,1.058
|
||||
c0.279,0.154,0.202,0.652,0.279,0.886l1.011-0.886l-0.356-0.357l0.356-0.187l-0.202-0.467c-0.078-0.155,0.078-0.357,0.124-0.513
|
||||
c0.498-0.808,1.166-1.352,1.819-1.974c1.01-0.934,1.988-1.756,2.844-2.768c0.389-0.698,0.186-1.554,0.264-2.361
|
||||
c0.078,0.108,0.078,0.187,0.078,0.342c0.124,0.124,0.232,0.311,0.232,0.466c0.699,0.777,1.68,1.679,2.643,2.223
|
||||
c0.544,0.312,0.777,0.343,1.213,0.653c0.497,0.077,1.119,1.01,0.963,1.6l0.233,4.353c0.078,0.109,0.078,0.264,0.078,0.42
|
||||
c-0.544,0.311-0.653,0.901-0.575,1.554h1.32l-0.077-1.196l0.233-0.077c0.155-0.047-0.357-2.409-0.156-3.42
|
||||
c0.234-2.953,0.73-1.787,0.265-3.467c-0.312-1.041-0.963-0.808-1.476-1.739c-0.342,0-1.896-2.721-2.285-3.934
|
||||
c-0.311-0.932-0.389-3.761-0.124-4.507c0.388-1.088,0.124-2.563-0.343-3.341c0.156-0.109,0.42,0,0.576-0.031
|
||||
c0.123,0.077,0.201,0.155,0.356,0.155c1.896,1.321,1.399,3.373,2.207,5.238c0.047,0.046,0.078,0.076,0.125,0.124
|
||||
c-0.047,0.077,0.03,0.108,0.03,0.187c0.156,0.621,0.746,1.01,1.367,0.901c0.498-0.357,1.088-0.746,1.586-0.622l-2.875-5.518
|
||||
c-0.498-0.746-1.041-0.979-1.398-1.29c-0.855-0.311-1.275-0.232-2.13-0.264c-1.911-0.125-2.021-1.523-3.933-1.601
|
||||
c-3.264-0.109-3.295-0.109-5.051,0c-0.264,0-1.32,0.356-1.197,0.154l0.031-0.264l-1.197,0.031l0.468-1.088l-0.358-0.265l-1.43,1.431
|
||||
c0-0.81-0.155-1.088-0.357-1.632c-0.389-0.468-0.466-0.855-0.777-1.197c-0.187-1.243-0.574-5.284-3.684-6.063l-0.046-0.466
|
||||
L37.53,24.45v-0.575l0.342,0.031l-0.234-0.964l0.513-1.089c-0.932-0.076-2.72-1.134-3.264,0c-0.388,0-0.59,0.109-0.901,0.156
|
||||
l0.824,0.312h0.077l0.032,0.698l-0.342,0.887h0.342v0.668c0,0.187-0.032,0.42,0.202,0.42c0.31-0.155,0.652,0,1.01-0.031l0.419,0.233
|
||||
c0.28,1.166-0.699,0.622,0.28,2.905c0,0.437-0.435,1.136-0.824,1.602c-0.575,0.809-0.652,0.776-2.051,1.974
|
||||
c-0.699,0.078-1.01,0.39-1.088,1.088c0.186,0.202,0.311,0.39,0.575,0.514c0.155,0.03,0.28-0.048,0.435-0.048
|
||||
c0.389-0.154,0.233-0.776,0.311-0.854c0.031-0.032,0.109-0.078,0.155-0.078c0.156,0.202,0.311,0.357,0.467,0.513
|
||||
c0.575-0.047,0.932-0.669,2.129-1.367c0.047-0.42,0.777-0.389,0.746-0.809c0-0.156,0.078,0.233,0.187,0.312
|
||||
c-0.078,0.808,0.31,1.507-0.234,2.283l-1.01,1.446h-1.274c-0.746,0-1.679-0.124-1.912-0.466c-1.585-0.933-2.362-1.244-3.684-2.176
|
||||
c-3.108-2.224-6.372-2.876-7.382-2.876c-0.435,0-0.855-0.357-1.135-0.59c0-0.078,0-0.109,0-0.188
|
||||
c-0.155-0.388-0.621-0.668-0.575-1.134l-0.28,0.901l-0.699-0.855c-0.031,0.031-0.078,0.109-0.078,0.187
|
||||
c0.233,0.467,0,1.058,0.078,1.555c-0.078,0.047-0.078,0.124-0.109,0.155c0,0.311-0.155,0.621-0.311,0.854
|
||||
c0.109,0.777-0.777,1.166-0.512,1.99c-0.109,0.963-0.389,1.43-0.731,2.331c-0.28,0.652-0.326,1.196-0.233,2.129
|
||||
c0.031,0.389,0.497,0.669,0.932,0.746c0.109,0,0.156-0.155,0.265-0.202c0.077,0.125,0.124,0.232,0.233,0.357
|
||||
c0.311,0,0.357,0.109,0.59-0.125c-0.046-0.264,0.265-0.466,0.265-0.729C21.63,34.786,21.63,34.941,22.454,33.667z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M22.454,33.667
|
||||
c0.155,0,1.196,0.777,1.352,0.808c5.719,3.886,1.943,6.419,5.984,10.149l-4.383,4.663c0,0.031-0.078,0.077-0.047,0.155
|
||||
c-0.342,0.496-0.42,1.118-0.342,1.74c0.078,0.046,0.886,2.797,1.43,3.467c-0.031,0.154,0.047,0.342,0.124,0.466
|
||||
c0,0.03,0.031,0.108,0.078,0.154c-0.233,0.343-0.357,0.778-0.311,1.166c0.187,0.188,0.42,0.39,0.622,0.653l1.01-0.544l-0.124-0.777
|
||||
c-0.078-0.466-0.311-0.498-0.544-0.854c0-0.078-0.389-0.731-0.389-0.809c-0.186-0.201-0.264-1.213-0.388-1.477
|
||||
c-0.42-1.057,0.046-0.388-0.42-1.367c0.109-0.156,0.109-0.7,0.342-0.622c2.02-1.43,4.041-2.829,6.108-4.273
|
||||
c0.653,1.057,1.896,2.455,2.331,4.087c0.342,1.43,3.264,4.741,3.684,5.859c0.202,0.467-0.342,1.165-0.342,1.709h1.43l-0.109-1.041
|
||||
l0.342-0.124l-0.777-1.118c-0.653-1.012-0.699-0.824-1.275-1.912c-0.357-0.699-0.621-1.399-0.746-2.053
|
||||
c-0.031-0.123-0.777-3.885-0.419-5.673l0.932-0.668c1.43,0,2.643,0.124,4.119-0.108c1.041-0.155,2.906-0.312,3.684-0.855
|
||||
c1.787-0.543,2.378-1.321,2.875-1.476c0.078,0-0.031,0.03,0,0c0,0,0.047,0.886,1.368,3.03c0.544,1.196,1.896,2.44,0.854,3.684
|
||||
c-0.436,0.544-2.377,2.688-2.564,3.155c0,0.155-0.124,0.342-0.233,0.467c0,0.077-0.077,0.107-0.047,0.232
|
||||
c-0.187,0.109-0.312,0.312-0.419,0.497c0.031,0.436-0.311,0.622-0.047,1.058c0.279,0.154,0.202,0.652,0.279,0.886l1.011-0.886
|
||||
l-0.356-0.357l0.356-0.187l-0.202-0.467c-0.078-0.155,0.078-0.357,0.124-0.513c0.498-0.808,1.166-1.352,1.819-1.974
|
||||
c1.01-0.934,1.988-1.756,2.844-2.768c0.389-0.698,0.186-1.554,0.264-2.361c0.078,0.108,0.078,0.187,0.078,0.342
|
||||
c0.124,0.124,0.232,0.311,0.232,0.466c0.699,0.777,1.68,1.679,2.643,2.223c0.544,0.312,0.777,0.343,1.213,0.653
|
||||
c0.497,0.077,1.119,1.01,0.963,1.6l0.233,4.353c0.078,0.109,0.078,0.264,0.078,0.42c-0.544,0.311-0.653,0.901-0.575,1.554h1.32
|
||||
l-0.077-1.196l0.233-0.077c0.155-0.047-0.357-2.409-0.156-3.42c0.234-2.953,0.73-1.787,0.265-3.467
|
||||
c-0.312-1.041-0.963-0.808-1.476-1.739c-0.342,0-1.896-2.721-2.285-3.934c-0.311-0.932-0.389-3.761-0.124-4.507
|
||||
c0.388-1.088,0.124-2.563-0.343-3.341c0.156-0.109,0.42,0,0.576-0.031c0.123,0.077,0.201,0.155,0.356,0.155
|
||||
c1.896,1.321,1.399,3.373,2.207,5.238c0.047,0.046,0.078,0.076,0.125,0.124c-0.047,0.077,0.03,0.108,0.03,0.187
|
||||
c0.156,0.621,0.746,1.01,1.367,0.901c0.498-0.357,1.088-0.746,1.586-0.622l-2.875-5.518c-0.498-0.746-1.041-0.979-1.398-1.29
|
||||
c-0.855-0.311-1.275-0.232-2.13-0.264c-1.911-0.125-2.021-1.523-3.933-1.601c-3.264-0.109-3.295-0.109-5.051,0
|
||||
c-0.264,0-1.32,0.356-1.197,0.154l0.031-0.264l-1.197,0.031l0.468-1.088l-0.358-0.265l-1.43,1.431c0-0.81-0.155-1.088-0.357-1.632
|
||||
c-0.389-0.468-0.466-0.855-0.777-1.197c-0.187-1.243-0.574-5.284-3.684-6.063l-0.046-0.466L37.53,24.45v-0.575l0.342,0.031
|
||||
l-0.234-0.964l0.513-1.089c-0.932-0.076-2.72-1.134-3.264,0c-0.388,0-0.59,0.109-0.901,0.156l0.824,0.312h0.077l0.032,0.698
|
||||
l-0.342,0.887h0.342v0.668c0,0.187-0.032,0.42,0.202,0.42c0.31-0.155,0.652,0,1.01-0.031l0.419,0.233
|
||||
c0.28,1.166-0.699,0.622,0.28,2.905c0,0.437-0.435,1.136-0.824,1.602c-0.575,0.809-0.652,0.776-2.051,1.974
|
||||
c-0.699,0.078-1.01,0.39-1.088,1.088c0.186,0.202,0.311,0.39,0.575,0.514c0.155,0.03,0.28-0.048,0.435-0.048
|
||||
c0.389-0.154,0.233-0.776,0.311-0.854c0.031-0.032,0.109-0.078,0.155-0.078c0.156,0.202,0.311,0.357,0.467,0.513
|
||||
c0.575-0.047,0.932-0.669,2.129-1.367c0.047-0.42,0.777-0.389,0.746-0.809c0-0.156,0.078,0.233,0.187,0.312
|
||||
c-0.078,0.808,0.31,1.507-0.234,2.283l-1.01,1.446h-1.274c-0.746,0-1.679-0.124-1.912-0.466c-1.585-0.933-2.362-1.244-3.684-2.176
|
||||
c-3.108-2.224-6.372-2.876-7.382-2.876c-0.435,0-0.855-0.357-1.135-0.59c0-0.078,0-0.109,0-0.188
|
||||
c-0.155-0.388-0.621-0.668-0.575-1.134l-0.28,0.901l-0.699-0.855c-0.031,0.031-0.078,0.109-0.078,0.187
|
||||
c0.233,0.467,0,1.058,0.078,1.555c-0.078,0.047-0.078,0.124-0.109,0.155c0,0.311-0.155,0.621-0.311,0.854
|
||||
c0.109,0.777-0.777,1.166-0.512,1.99c-0.109,0.963-0.389,1.43-0.731,2.331c-0.28,0.652-0.326,1.196-0.233,2.129
|
||||
c0.031,0.389,0.497,0.669,0.932,0.746c0.109,0,0.156-0.155,0.265-0.202c0.077,0.125,0.124,0.232,0.233,0.357
|
||||
c0.311,0,0.357,0.109,0.59-0.125c-0.046-0.264,0.265-0.466,0.265-0.729C21.63,34.786,21.63,34.941,22.454,33.667z"/>
|
||||
<path fill="#FFFFFF" d="M34.11,32.921c0.544,0.466,1.244,1.756-0.233,1.523c-0.046,0-0.388-0.514-0.466-0.468
|
||||
c-0.233-0.232,0.031-0.466,0.031-0.698c0-0.124,0.155,0.108,0.202,0.232c-0.124,0.42,0.311,0.777,0.731,0.7
|
||||
c0.046-0.078-0.078,0.031,0,0c0-0.125,0.279,0.031,0.077-0.467c-0.077-0.202-0.544-0.312-0.575-0.514L34.11,32.921z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M34.11,32.921
|
||||
c0.544,0.466,1.244,1.756-0.233,1.523c-0.046,0-0.388-0.514-0.466-0.468c-0.233-0.232,0.031-0.466,0.031-0.698
|
||||
c0-0.124,0.155,0.108,0.202,0.232c-0.124,0.42,0.311,0.777,0.731,0.7c0.046-0.078-0.078,0.031,0,0c0-0.125,0.279,0.031,0.077-0.467
|
||||
c-0.077-0.202-0.544-0.312-0.575-0.514L34.11,32.921z"/>
|
||||
<path fill="#FFFFFF" d="M20.076,36.542l-0.031,0.466c1.196-0.388,3.372-0.746,4.926-1.522l-0.31-0.312
|
||||
C23.106,35.951,21.288,36.153,20.076,36.542z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" d="M20.076,36.542l-0.031,0.466
|
||||
c1.196-0.388,3.372-0.746,4.926-1.522l-0.31-0.312C23.106,35.951,21.288,36.153,20.076,36.542z"/>
|
||||
<polygon fill="#FFFFFF" points="32.867,32.765 33.1,33.076 31.732,33.278 31.344,32.998 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0.155" stroke-miterlimit="3.863" points="32.867,32.765 33.1,33.076
|
||||
31.732,33.278 31.344,32.998 "/>
|
||||
</svg>
|
After (image error) Size: 11 KiB |
62
assets/layers/traffic_sign/images/be/D/license_info.json
Normal file
|
@ -0,0 +1,62 @@
|
|||
[
|
||||
{
|
||||
"path": "Belgian_road_sign_D05.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_D05.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_D07.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_D07.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_D09.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_D09.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_D10.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_D10.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_D11.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_D11.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_road_sign_D13.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"<a href=\"//commons.wikimedia.org/wiki/User:Vascer\" title=\"User:Vascer\">Vascer</a>"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_road_sign_D13.svg"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="25.03mm" height="25.02mm" viewBox="65549 30500 2503 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="65549" y="30500" width="2503" height="2502"/>
|
||||
<path fill="rgb(255,0,0)" stroke="none" d="M 68051,31751 L 68050,31720 68049,31689 68047,31659 68045,31628 68041,31597 68037,31567 68032,31537 68027,31507 68020,31477 68013,31447 68006,31417 67997,31388 67988,31358 67978,31329 67967,31301 67956,31272 67944,31244 67931,31215 67917,31187 67903,31160 67888,31133 67873,31107 67857,31081 67840,31055 67823,31030 67805,31005 67786,30980 67767,30956 67747,30933 67727,30910 67706,30888 67685,30866 67663,30844 67640,30823 67617,30803 67594,30783 67570,30764 67545,30745 67520,30728 67495,30710 67469,30693 67443,30677 67417,30662 67390,30647 67363,30633 67335,30619 67307,30607 67279,30595 67251,30583 67222,30573 67193,30563 67163,30553 67134,30545 67104,30537 67074,30530 67044,30523 67014,30518 66984,30513 66954,30509 66923,30505 66892,30503 66862,30501 66831,30500 66801,30500 66770,30500 66739,30501 66708,30503 66678,30505 66647,30509 66617,30513 66587,30518 66557,30523 66527,30530 66497,30537 66467,30545 66438,30553 66408,30563 66379,30573 66350,30583 66322,30595 66294,30607 66266,30619 66237,30633 66210,30647 66183,30662 66157,30677 66131,30693 66105,30710 66079,30728 66055,30745 66030,30764 66006,30783 65983,30803 65960,30823 65937,30844 65915,30866 65894,30888 65873,30910 65853,30933 65833,30956 65814,30980 65795,31005 65777,31030 65760,31055 65743,31081 65727,31107 65712,31133 65697,31160 65683,31187 65669,31215 65656,31244 65644,31272 65633,31301 65622,31329 65612,31358 65603,31388 65594,31417 65587,31447 65580,31477 65573,31507 65568,31537 65563,31567 65559,31597 65555,31628 65552,31659 65551,31689 65549,31720 65549,31750 65549,31781 65551,31812 65552,31842 65555,31873 65559,31904 65563,31934 65568,31964 65573,31994 65580,32024 65587,32054 65594,32084 65603,32113 65612,32143 65622,32172 65633,32200 65644,32229 65656,32257 65669,32285 65683,32313 65697,32340 65712,32367 65727,32393 65743,32419 65760,32445 65777,32470 65795,32495 65814,32520 65833,32544 65853,32567 65873,32590 65894,32612 65915,32634 65937,32656 65960,32677 65983,32697 66006,32717 66030,32736 66055,32755 66079,32772 66105,32790 66131,32807 66157,32823 66183,32838 66210,32853 66237,32867 66266,32881 66294,32893 66322,32905 66350,32917 66379,32927 66408,32937 66438,32947 66467,32955 66497,32963 66527,32970 66557,32977 66587,32982 66617,32987 66647,32991 66678,32995 66708,32997 66739,32999 66770,33000 66800,33001 66831,33000 66862,32999 66892,32997 66923,32995 66954,32991 66984,32987 67014,32982 67044,32977 67074,32970 67104,32963 67134,32955 67163,32947 67193,32937 67222,32927 67251,32917 67279,32905 67307,32893 67335,32881 67363,32867 67390,32853 67417,32838 67443,32823 67469,32807 67495,32790 67520,32772 67545,32755 67570,32736 67594,32717 67617,32697 67640,32677 67663,32656 67685,32634 67706,32612 67727,32590 67747,32567 67767,32544 67786,32520 67805,32495 67823,32470 67840,32445 67857,32419 67873,32393 67888,32367 67903,32340 67917,32313 67931,32285 67944,32257 67956,32229 67967,32200 67978,32172 67988,32143 67997,32113 68006,32084 68013,32054 68020,32024 68027,31994 68032,31964 68037,31934 68041,31904 68045,31873 68047,31842 68049,31812 68050,31781 68051,31751 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="66263" y="30857" width="1432" height="1431"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 67514,32287 L 66263,31036 66279,31024 66295,31013 66312,31002 66328,30991 66345,30981 66363,30971 66380,30961 66398,30952 66416,30943 66434,30935 66452,30927 66471,30919 66490,30912 66509,30905 66528,30899 66547,30893 66567,30888 66586,30883 66605,30878 66625,30874 66645,30870 66664,30867 66684,30864 66704,30862 66724,30860 66743,30858 66763,30857 66783,30857 66803,30857 66823,30857 66843,30858 66863,30859 66883,30860 66903,30863 66923,30865 66942,30868 66962,30871 66982,30875 67001,30880 67021,30884 67040,30889 67059,30895 67078,30901 67097,30907 67116,30914 67134,30921 67153,30929 67171,30937 67189,30946 67207,30954 67225,30964 67242,30973 67259,30983 67276,30994 67293,31005 67310,31016 67326,31027 67342,31039 67358,31052 67373,31064 67388,31077 67403,31091 67418,31104 67432,31118 67446,31132 67460,31147 67473,31162 67486,31177 67498,31192 67511,31208 67523,31224 67534,31241 67546,31257 67556,31274 67567,31291 67577,31308 67586,31325 67596,31343 67605,31361 67613,31379 67621,31397 67629,31416 67636,31434 67643,31453 67649,31472 67655,31491 67661,31510 67666,31529 67671,31549 67675,31568 67679,31588 67682,31608 67685,31627 67688,31647 67690,31667 67691,31687 67693,31707 67693,31727 67694,31747 67693,31767 67693,31787 67692,31807 67690,31826 67688,31846 67686,31866 67683,31886 67680,31905 67676,31925 67672,31945 67667,31964 67662,31983 67657,32003 67651,32022 67645,32041 67638,32059 67631,32078 67623,32096 67615,32115 67607,32133 67598,32151 67589,32170 67580,32187 67570,32204 67559,32221 67549,32238 67537,32255 67526,32271 67514,32287 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="65906" y="31213" width="1432" height="1431"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 67337,32464 L 66086,31213 66074,31229 66063,31245 66051,31262 66041,31279 66030,31296 66020,31313 66011,31330 66002,31348 65993,31366 65985,31384 65977,31403 65969,31421 65962,31440 65955,31458 65949,31477 65943,31496 65937,31516 65933,31535 65928,31554 65924,31574 65920,31594 65917,31613 65914,31633 65912,31653 65910,31673 65908,31692 65907,31712 65906,31732 65906,31752 65907,31772 65907,31792 65909,31812 65910,31832 65912,31852 65915,31872 65918,31891 65921,31911 65925,31931 65929,31950 65934,31970 65939,31989 65945,32008 65951,32027 65957,32046 65964,32065 65971,32083 65979,32102 65987,32120 65995,32138 66004,32157 66014,32175 66023,32192 66033,32209 66044,32226 66054,32243 66066,32259 66077,32276 66089,32292 66102,32308 66114,32323 66127,32338 66140,32353 66154,32368 66168,32382 66182,32396 66197,32409 66212,32423 66227,32436 66242,32448 66258,32461 66274,32473 66290,32484 66307,32495 66324,32506 66341,32517 66358,32527 66375,32536 66393,32546 66411,32554 66429,32563 66447,32571 66466,32579 66484,32586 66504,32593 66523,32599 66542,32605 66561,32611 66580,32616 66600,32621 66619,32625 66639,32629 66659,32632 66678,32635 66698,32637 66718,32640 66738,32641 66758,32642 66778,32643 66798,32643 66818,32643 66837,32643 66858,32642 66877,32640 66897,32638 66917,32636 66937,32633 66956,32630 66976,32626 66996,32622 67015,32617 67034,32612 67054,32607 67073,32601 67092,32595 67110,32588 67129,32581 67148,32573 67166,32565 67184,32557 67202,32548 67220,32539 67237,32529 67254,32519 67272,32509 67288,32498 67305,32487 67321,32476 67337,32464 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
|
@ -0,0 +1,110 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="25.03mm" height="25.02mm" viewBox="102249 30500 2503 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="102249" y="30500" width="2503" height="2502"/>
|
||||
<path fill="rgb(255,0,0)" stroke="none" d="M 104751,31751 L 104751,31720 104749,31689 104747,31659 104745,31628 104741,31597 104737,31567 104732,31537 104727,31507 104720,31477 104713,31447 104706,31417 104697,31388 104688,31358 104678,31329 104667,31301 104656,31272 104644,31244 104631,31215 104617,31187 104603,31160 104588,31133 104573,31107 104557,31081 104540,31055 104523,31030 104505,31005 104486,30980 104467,30956 104447,30933 104427,30910 104406,30888 104385,30866 104363,30844 104340,30823 104317,30803 104294,30783 104270,30764 104245,30745 104220,30728 104195,30710 104169,30693 104143,30677 104117,30662 104090,30647 104063,30633 104035,30620 104007,30607 103979,30595 103951,30583 103922,30573 103893,30563 103863,30553 103834,30545 103804,30537 103774,30530 103743,30523 103713,30518 103683,30513 103653,30509 103622,30505 103591,30503 103561,30501 103530,30500 103500,30500 103469,30500 103438,30501 103408,30503 103377,30505 103346,30509 103316,30513 103286,30518 103256,30523 103226,30530 103196,30537 103166,30545 103137,30553 103107,30563 103078,30573 103050,30583 103021,30595 102993,30607 102965,30620 102937,30633 102910,30647 102883,30662 102857,30677 102831,30693 102805,30710 102780,30728 102755,30745 102730,30764 102706,30783 102683,30803 102660,30823 102637,30844 102615,30866 102594,30888 102573,30910 102553,30933 102533,30956 102514,30980 102495,31005 102477,31030 102460,31055 102443,31081 102427,31107 102412,31133 102397,31160 102383,31187 102369,31215 102356,31244 102344,31272 102333,31301 102322,31329 102312,31358 102303,31388 102294,31417 102287,31447 102280,31477 102273,31507 102268,31537 102263,31567 102259,31597 102255,31628 102253,31659 102251,31689 102249,31720 102249,31750 102249,31781 102251,31812 102253,31843 102255,31873 102259,31904 102263,31934 102268,31964 102273,31994 102280,32024 102287,32054 102294,32084 102303,32113 102312,32143 102322,32172 102333,32200 102344,32229 102356,32257 102369,32285 102383,32313 102397,32340 102412,32367 102427,32393 102443,32419 102460,32445 102477,32470 102495,32495 102514,32520 102533,32544 102553,32567 102573,32590 102594,32612 102615,32634 102637,32656 102660,32677 102683,32697 102706,32717 102730,32736 102755,32755 102780,32772 102805,32790 102831,32807 102857,32823 102883,32838 102910,32853 102937,32867 102965,32881 102993,32893 103021,32905 103050,32917 103078,32927 103107,32937 103137,32947 103166,32955 103196,32963 103226,32970 103256,32977 103286,32982 103316,32987 103346,32991 103377,32995 103408,32997 103438,32999 103469,33000 103499,33001 103530,33000 103561,32999 103591,32997 103622,32995 103653,32991 103683,32987 103713,32982 103743,32977 103774,32970 103804,32963 103834,32955 103863,32947 103893,32937 103922,32927 103951,32917 103979,32905 104007,32893 104035,32881 104063,32867 104090,32853 104117,32838 104143,32823 104169,32807 104195,32790 104220,32772 104245,32755 104270,32736 104294,32717 104317,32697 104340,32677 104363,32656 104385,32634 104406,32612 104427,32590 104447,32567 104467,32544 104486,32520 104505,32495 104523,32470 104540,32445 104557,32419 104573,32393 104588,32367 104603,32340 104617,32313 104631,32285 104644,32257 104656,32229 104667,32200 104678,32172 104688,32143 104697,32113 104706,32084 104713,32054 104720,32024 104727,31994 104732,31964 104737,31934 104741,31904 104745,31873 104747,31843 104749,31812 104751,31781 104751,31751 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="102608" y="31214" width="1429" height="1428"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 102787,31214 L 102776,31230 102764,31247 102753,31263 102742,31280 102732,31297 102722,31314 102713,31332 102703,31349 102695,31367 102687,31385 102679,31404 102671,31422 102664,31441 102657,31459 102651,31478 102645,31497 102640,31516 102635,31536 102630,31555 102626,31575 102622,31594 102619,31614 102616,31633 102614,31653 102612,31673 102610,31693 102609,31713 102609,31733 102609,31753 102609,31773 102610,31792 102611,31812 102612,31832 102615,31852 102617,31872 102620,31891 102623,31911 102627,31930 102631,31950 102636,31969 102641,31988 102647,32007 102653,32026 102659,32045 102666,32065 102673,32084 102681,32102 102689,32120 102697,32138 102706,32156 102716,32174 102725,32191 102735,32208 102746,32225 102756,32242 102768,32258 102779,32275 102791,32290 102803,32306 102816,32322 102829,32337 102842,32352 102856,32366 102870,32380 102884,32394 102898,32408 102913,32421 102928,32434 102944,32447 102959,32459 102975,32471 102992,32482 103008,32493 103025,32504 103042,32515 103059,32525 103076,32534 103094,32544 103112,32552 103130,32561 103148,32569 103166,32577 103185,32584 103204,32591 103223,32597 103241,32603 103261,32608 103280,32614 103299,32618 103319,32623 103338,32626 103358,32630 103377,32633 103398,32635 103418,32637 103438,32639 103458,32640 103477,32641 103498,32641 103517,32641 103537,32640 103557,32639 103577,32638 103597,32636 103617,32634 103636,32631 103656,32628 103675,32624 103695,32620 103714,32615 103734,32610 103753,32605 103772,32599 103791,32593 103809,32586 103828,32579 103846,32571 103865,32563 103883,32555 103901,32546 103918,32537 103936,32528 103953,32518 103970,32507 103987,32497 104003,32486 104020,32474 104036,32463 102787,31214 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="102964" y="30858" width="1428" height="1429"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 102964,31038 L 104213,32286 104224,32270 104236,32253 104247,32237 104258,32220 104268,32203 104278,32186 104287,32168 104297,32151 104305,32133 104313,32115 104321,32096 104329,32078 104336,32058 104343,32040 104349,32021 104355,32002 104360,31983 104365,31963 104370,31944 104374,31924 104378,31905 104381,31885 104384,31866 104386,31846 104388,31826 104390,31806 104391,31786 104391,31766 104391,31747 104391,31727 104390,31707 104389,31687 104388,31667 104385,31647 104383,31627 104380,31608 104377,31588 104373,31569 104369,31549 104364,31530 104359,31511 104353,31492 104347,31473 104341,31454 104334,31435 104327,31416 104319,31398 104311,31380 104303,31362 104294,31344 104284,31327 104275,31309 104265,31292 104254,31275 104244,31258 104232,31242 104221,31225 104209,31210 104197,31194 104184,31178 104171,31163 104158,31149 104144,31134 104130,31120 104116,31106 104102,31092 104087,31079 104072,31066 104056,31053 104041,31041 104025,31029 104008,31018 103992,31007 103975,30996 103958,30985 103941,30975 103924,30966 103906,30956 103888,30948 103870,30939 103852,30931 103834,30923 103815,30916 103796,30909 103777,30903 103759,30897 103739,30892 103720,30886 103701,30882 103681,30877 103662,30874 103642,30870 103623,30867 103603,30865 103583,30863 103563,30861 103543,30860 103524,30859 103503,30859 103484,30859 103464,30860 103444,30861 103424,30862 103404,30864 103383,30867 103364,30869 103344,30873 103325,30876 103305,30880 103286,30885 103266,30890 103247,30895 103228,30901 103209,30907 103191,30914 103172,30921 103154,30929 103135,30937 103117,30945 103099,30954 103082,30963 103064,30973 103047,30982 103030,30993 103013,31003 102997,31014 102980,31026 102964,31038 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="102949" y="32050" width="126" height="42"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 102949,32050 L 103074,32050 103074,32091 102949,32091 102949,32050 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="102841" y="31928" width="67" height="287"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 102865,32214 L 102865,31994 102841,31994 102841,31970 102865,31928 102907,31928 102907,32214 102865,32214 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="104148" y="31286" width="67" height="287"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 104173,31572 L 104173,31353 104148,31353 104148,31329 104173,31286 104214,31286 104214,31572 104173,31572 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="103961" y="31282" width="148" height="295"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 104018,31404 L 104035,31404 104041,31404 104046,31402 104051,31400 104055,31396 104059,31392 104061,31387 104063,31382 104064,31376 104064,31347 104063,31342 104061,31337 104059,31332 104055,31327 104051,31324 104046,31321 104041,31320 104035,31319 104029,31320 104023,31321 104018,31324 104014,31327 104010,31332 104008,31337 104006,31342 104006,31347 104006,31360 103965,31360 103965,31352 103965,31345 103966,31338 103968,31331 103970,31325 103973,31319 103977,31313 103980,31308 103985,31303 103990,31298 103996,31294 104001,31291 104008,31288 104014,31285 104020,31284 104028,31283 104035,31282 104042,31283 104049,31284 104055,31285 104062,31288 104068,31291 104074,31294 104079,31298 104084,31303 104089,31308 104093,31313 104096,31319 104099,31325 104101,31331 104103,31338 104104,31345 104104,31352 104104,31376 104104,31383 104103,31390 104100,31397 104097,31403 104094,31409 104089,31414 104084,31419 104079,31424 104085,31428 104091,31433 104096,31438 104100,31445 104104,31451 104106,31459 104108,31466 104108,31474 104108,31503 104108,31510 104107,31517 104105,31524 104103,31531 104100,31538 104096,31544 104092,31550 104087,31555 104081,31560 104076,31564 104070,31568 104063,31571 104056,31573 104049,31575 104042,31576 104035,31576 104028,31576 104020,31575 104013,31573 104006,31571 104000,31568 103993,31564 103988,31560 103982,31555 103977,31550 103973,31544 103969,31538 103966,31531 103964,31524 103962,31517 103961,31510 103961,31503 103961,31490 104002,31490 104002,31507 104002,31510 104002,31514 104003,31517 104004,31520 104005,31523 104007,31525 104009,31528 104011,31530 104013,31532 104016,31534 104019,31536 104022,31537 104026,31538 104029,31539 104032,31540 104035,31540 104038,31540 104042,31539 104045,31538 104048,31537 104050,31536 104053,31534 104056,31532 104058,31530 104060,31528 104062,31525 104064,31523 104065,31520 104066,31517 104067,31514 104068,31510 104068,31507 104068,31474 104068,31471 104067,31467 104066,31464 104065,31461 104064,31458 104062,31456 104060,31453 104058,31451 104056,31449 104053,31447 104050,31445 104048,31444 104045,31443 104042,31442 104038,31441 104035,31441 104018,31441 104018,31404 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id10">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="103820" y="31409" width="127" height="42"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 103820,31409 L 103945,31409 103945,31450 103820,31450 103820,31409 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id11">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="103641" y="31282" width="150" height="295"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 103682,31507 L 103682,31474 103682,31471 103683,31467 103684,31464 103685,31461 103686,31458 103688,31456 103690,31453 103692,31451 103694,31449 103697,31447 103699,31445 103702,31444 103705,31443 103708,31442 103712,31441 103715,31441 103718,31441 103721,31442 103724,31443 103727,31444 103730,31445 103734,31447 103737,31449 103739,31451 103741,31453 103743,31456 103744,31458 103746,31461 103747,31464 103748,31467 103748,31471 103748,31474 103748,31507 103748,31510 103748,31514 103747,31517 103746,31520 103744,31523 103743,31525 103741,31528 103739,31530 103737,31532 103734,31534 103730,31536 103727,31537 103724,31538 103721,31539 103718,31540 103715,31540 103712,31540 103708,31539 103705,31538 103702,31537 103699,31536 103697,31534 103694,31532 103692,31530 103690,31528 103688,31525 103686,31523 103685,31520 103684,31517 103683,31514 103682,31510 103682,31507 Z M 103641,31503 L 103641,31356 103642,31348 103643,31341 103645,31334 103647,31328 103650,31321 103654,31315 103658,31309 103663,31304 103668,31299 103674,31295 103680,31291 103687,31288 103694,31285 103701,31284 103708,31283 103715,31282 103722,31283 103729,31284 103737,31285 103744,31288 103750,31291 103757,31295 103762,31299 103768,31304 103772,31309 103777,31315 103781,31321 103784,31328 103786,31334 103788,31341 103789,31348 103789,31356 103789,31360 103748,31360 103748,31352 103748,31348 103748,31345 103747,31342 103746,31339 103744,31336 103743,31333 103741,31331 103739,31329 103737,31326 103734,31324 103730,31323 103727,31322 103724,31320 103721,31320 103718,31319 103715,31319 103712,31319 103708,31320 103705,31320 103702,31322 103699,31323 103697,31324 103694,31326 103692,31329 103690,31331 103688,31333 103686,31336 103685,31339 103684,31342 103683,31345 103682,31348 103682,31352 103682,31418 103686,31416 103690,31413 103694,31411 103699,31410 103703,31408 103707,31407 103712,31407 103717,31406 103721,31406 103726,31406 103730,31407 103736,31408 103740,31409 103745,31410 103749,31412 103753,31414 103757,31416 103761,31419 103764,31422 103768,31425 103771,31428 103774,31431 103777,31435 103779,31439 103782,31443 103784,31447 103785,31451 103787,31456 103788,31460 103788,31465 103789,31469 103789,31474 103789,31503 103789,31510 103788,31517 103786,31524 103784,31531 103781,31538 103777,31544 103772,31550 103768,31555 103762,31560 103757,31564 103750,31568 103744,31571 103737,31573 103729,31575 103722,31576 103715,31576 103708,31576 103701,31575 103694,31573 103687,31571 103680,31568 103674,31564 103668,31560 103663,31555 103658,31550 103654,31544 103650,31538 103647,31531 103645,31524 103643,31517 103642,31510 103641,31503 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id12">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="103524" y="31286" width="67" height="287"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 103548,31572 L 103548,31353 103524,31353 103524,31329 103548,31286 103589,31286 103589,31572 103548,31572 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id13">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="103214" y="31928" width="148" height="291"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 103214,32132 L 103214,32144 103214,32152 103215,32159 103217,32166 103219,32172 103222,32179 103226,32185 103230,32191 103235,32196 103240,32201 103246,32205 103252,32209 103259,32212 103266,32215 103272,32216 103280,32217 103287,32218 103294,32217 103302,32216 103309,32215 103316,32212 103322,32209 103329,32205 103334,32201 103340,32196 103345,32191 103349,32185 103352,32179 103355,32172 103358,32166 103360,32159 103361,32152 103361,32144 103361,32092 103361,32083 103359,32074 103356,32066 103352,32058 103347,32051 103342,32044 103335,32038 103328,32033 103320,32029 103312,32026 103303,32025 103294,32024 103285,32024 103276,32026 103268,32029 103260,32032 103260,31965 103355,31965 103355,31928 103219,31928 103219,32071 103261,32071 103265,32068 103269,32064 103273,32062 103278,32060 103283,32059 103288,32059 103293,32059 103299,32061 103303,32063 103307,32066 103311,32069 103314,32073 103317,32077 103319,32082 103320,32086 103320,32092 103320,32148 103320,32152 103320,32155 103319,32158 103318,32161 103317,32164 103315,32167 103313,32169 103311,32172 103308,32174 103306,32176 103303,32177 103300,32179 103297,32180 103293,32181 103290,32181 103287,32181 103284,32181 103280,32181 103277,32180 103274,32179 103271,32177 103269,32176 103266,32174 103264,32172 103262,32169 103260,32167 103258,32164 103257,32161 103256,32158 103255,32155 103254,32152 103254,32148 103254,32132 103214,32132 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id14">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="103098" y="31928" width="66" height="287"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 103122,32214 L 103122,31994 103098,31994 103098,31970 103122,31928 103163,31928 103163,32214 103122,32214 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 20 KiB |
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="25.03mm" height="25.02mm" viewBox="68649 30500 2503 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="68649" y="30500" width="2503" height="2502"/>
|
||||
<path fill="rgb(255,0,0)" stroke="none" d="M 71151,31751 L 71151,31720 71149,31689 71147,31659 71145,31628 71141,31597 71137,31567 71132,31537 71127,31507 71120,31477 71113,31447 71106,31417 71097,31388 71088,31358 71078,31329 71067,31301 71056,31272 71044,31244 71031,31215 71017,31187 71003,31160 70988,31133 70973,31107 70957,31081 70940,31055 70923,31030 70905,31005 70886,30980 70867,30956 70847,30933 70827,30910 70806,30888 70785,30866 70763,30844 70740,30823 70717,30803 70694,30783 70670,30764 70645,30745 70620,30728 70595,30710 70569,30693 70543,30677 70517,30662 70490,30647 70463,30633 70435,30619 70407,30607 70379,30595 70351,30583 70322,30573 70293,30563 70263,30553 70234,30545 70204,30537 70174,30530 70144,30523 70114,30518 70084,30513 70054,30509 70023,30505 69992,30503 69962,30501 69931,30500 69901,30500 69870,30500 69839,30501 69808,30503 69778,30505 69747,30509 69717,30513 69687,30518 69657,30523 69627,30530 69597,30537 69567,30545 69538,30553 69508,30563 69479,30573 69450,30583 69422,30595 69394,30607 69366,30619 69338,30633 69311,30647 69284,30662 69258,30677 69232,30693 69206,30710 69181,30728 69156,30745 69131,30764 69107,30783 69084,30803 69061,30823 69038,30844 69016,30866 68995,30888 68974,30910 68954,30933 68934,30956 68915,30980 68896,31005 68878,31030 68861,31055 68844,31081 68828,31107 68813,31133 68798,31160 68784,31187 68770,31215 68757,31244 68744,31272 68733,31301 68722,31329 68712,31358 68703,31388 68694,31417 68687,31447 68680,31477 68673,31507 68668,31537 68663,31567 68659,31597 68655,31628 68653,31659 68651,31689 68649,31720 68649,31750 68649,31781 68651,31812 68653,31842 68655,31873 68659,31904 68663,31934 68668,31964 68673,31994 68680,32024 68687,32054 68694,32084 68703,32113 68712,32143 68722,32172 68733,32200 68744,32229 68757,32257 68770,32285 68784,32313 68798,32340 68813,32367 68828,32393 68844,32419 68861,32445 68878,32470 68896,32495 68915,32520 68934,32544 68954,32567 68974,32590 68995,32612 69016,32634 69038,32656 69061,32677 69084,32697 69107,32717 69131,32736 69156,32755 69181,32772 69206,32790 69232,32807 69258,32823 69284,32838 69311,32853 69338,32867 69366,32881 69394,32893 69422,32905 69450,32917 69479,32927 69508,32937 69538,32947 69567,32955 69597,32963 69627,32970 69657,32977 69687,32982 69717,32987 69747,32991 69778,32995 69808,32997 69839,32999 69870,33000 69900,33001 69931,33000 69962,32999 69992,32997 70023,32995 70054,32991 70084,32987 70114,32982 70144,32977 70174,32970 70204,32963 70234,32955 70263,32947 70293,32937 70322,32927 70351,32917 70379,32905 70407,32893 70435,32881 70463,32867 70490,32853 70517,32838 70543,32823 70569,32807 70595,32790 70620,32772 70645,32755 70670,32736 70694,32717 70717,32697 70740,32677 70763,32656 70785,32634 70806,32612 70827,32590 70847,32567 70867,32544 70886,32520 70905,32495 70923,32470 70940,32445 70957,32419 70973,32393 70988,32367 71003,32340 71017,32313 71031,32285 71044,32257 71056,32229 71067,32200 71078,32172 71088,32143 71097,32113 71106,32084 71113,32054 71120,32024 71127,31994 71132,31964 71137,31934 71141,31904 71145,31873 71147,31842 71149,31812 71151,31781 71151,31751 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="69363" y="31926" width="1075" height="718"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 70437,32463 L 69900,31926 69363,32463 69377,32474 69392,32484 69407,32494 69422,32504 69437,32513 69453,32523 69468,32531 69484,32540 69500,32548 69516,32556 69533,32564 69549,32571 69566,32579 69583,32585 69599,32592 69616,32597 69634,32603 69651,32608 69668,32613 69686,32617 69703,32622 69721,32625 69738,32629 69756,32632 69774,32635 69792,32637 69810,32639 69828,32641 69845,32642 69864,32643 69882,32643 69900,32643 69917,32643 69935,32643 69953,32642 69971,32641 69989,32639 70007,32637 70025,32635 70043,32632 70061,32629 70078,32625 70096,32622 70113,32617 70131,32613 70148,32608 70165,32603 70183,32597 70199,32592 70216,32585 70233,32579 70250,32571 70266,32564 70284,32556 70300,32548 70316,32540 70332,32531 70347,32523 70363,32513 70378,32504 70393,32494 70408,32484 70423,32474 70437,32463 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="69363" y="30857" width="1075" height="718"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 69900,31574 L 69363,31036 69377,31025 69392,31015 69407,31005 69422,30995 69437,30986 69453,30976 69468,30968 69484,30959 69500,30951 69516,30943 69533,30935 69549,30928 69566,30921 69583,30915 69599,30909 69616,30903 69634,30897 69651,30892 69668,30887 69686,30883 69703,30878 69721,30875 69738,30871 69756,30868 69774,30865 69792,30863 69810,30861 69828,30860 69845,30858 69864,30857 69882,30857 69900,30857 69917,30857 69935,30857 69953,30858 69971,30860 69989,30861 70007,30863 70025,30865 70043,30868 70060,30871 70078,30875 70096,30878 70113,30883 70131,30887 70148,30892 70165,30897 70183,30903 70199,30909 70216,30915 70233,30921 70250,30928 70266,30935 70284,30943 70300,30951 70316,30959 70332,30968 70347,30976 70363,30986 70378,30995 70393,31005 70408,31015 70423,31025 70437,31036 69900,31574 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="70076" y="31213" width="719" height="1075"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 70614,32287 L 70076,31750 70614,31213 70625,31227 70635,31242 70645,31257 70655,31272 70665,31287 70674,31303 70683,31318 70691,31334 70699,31350 70707,31367 70715,31383 70722,31399 70729,31416 70735,31433 70742,31450 70747,31467 70753,31484 70758,31501 70763,31518 70768,31536 70772,31553 70775,31571 70779,31589 70782,31606 70785,31624 70787,31642 70789,31661 70791,31679 70792,31697 70793,31715 70794,31733 70794,31751 70794,31768 70793,31786 70792,31804 70791,31822 70789,31840 70787,31858 70785,31876 70782,31894 70779,31912 70775,31929 70772,31947 70768,31964 70763,31982 70758,31999 70753,32016 70747,32033 70742,32050 70735,32067 70729,32084 70722,32101 70715,32117 70707,32133 70699,32150 70691,32166 70683,32182 70674,32197 70665,32213 70655,32228 70645,32243 70635,32258 70625,32273 70614,32287 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="69006" y="31213" width="719" height="1075"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 69724,31750 L 69187,31213 69176,31227 69166,31242 69156,31257 69146,31272 69136,31287 69127,31303 69118,31318 69110,31334 69102,31350 69093,31367 69085,31383 69078,31399 69071,31416 69065,31433 69058,31450 69052,31467 69047,31484 69042,31501 69037,31518 69032,31536 69028,31553 69025,31571 69021,31588 69018,31606 69015,31624 69013,31642 69011,31661 69009,31679 69008,31697 69007,31715 69006,31733 69006,31751 69006,31768 69007,31786 69008,31804 69009,31822 69011,31840 69013,31858 69015,31876 69018,31894 69021,31912 69025,31929 69028,31947 69032,31964 69037,31982 69042,31999 69047,32016 69052,32033 69058,32050 69065,32067 69071,32084 69078,32101 69085,32117 69093,32133 69102,32150 69110,32166 69118,32182 69127,32197 69136,32213 69146,32228 69156,32243 69166,32258 69176,32273 69187,32287 69724,31750 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 11 KiB |
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="25.03mm" height="25.02mm" viewBox="71749 30500 2503 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="71749" y="30500" width="2503" height="2502"/>
|
||||
<path fill="rgb(255,0,0)" stroke="none" d="M 74251,31751 L 74251,31720 74249,31689 74247,31659 74245,31628 74241,31597 74237,31567 74232,31537 74227,31507 74220,31477 74213,31447 74205,31417 74197,31388 74188,31358 74178,31329 74167,31301 74156,31272 74144,31244 74131,31215 74117,31187 74103,31160 74088,31133 74073,31107 74057,31081 74040,31055 74023,31030 74005,31005 73986,30980 73967,30956 73947,30933 73927,30910 73906,30888 73885,30866 73863,30844 73840,30823 73817,30803 73794,30783 73770,30764 73744,30745 73719,30728 73694,30710 73668,30693 73642,30677 73616,30662 73589,30647 73562,30633 73534,30619 73506,30607 73478,30595 73449,30583 73421,30573 73392,30563 73362,30553 73333,30545 73303,30537 73273,30530 73244,30523 73213,30518 73183,30513 73153,30509 73122,30505 73092,30503 73061,30501 73030,30500 73000,30500 72969,30500 72938,30501 72908,30503 72877,30505 72846,30509 72816,30513 72786,30518 72756,30523 72726,30530 72696,30537 72666,30545 72637,30553 72607,30563 72578,30573 72550,30583 72521,30595 72493,30607 72465,30619 72437,30633 72410,30647 72383,30662 72357,30677 72331,30693 72305,30710 72280,30728 72255,30745 72230,30764 72206,30783 72183,30803 72160,30823 72137,30844 72115,30866 72094,30888 72073,30910 72053,30933 72033,30956 72014,30980 71995,31005 71977,31030 71960,31055 71943,31081 71927,31107 71912,31133 71897,31160 71883,31187 71869,31215 71856,31244 71844,31272 71833,31301 71822,31329 71812,31358 71803,31388 71794,31417 71787,31447 71780,31477 71773,31507 71768,31537 71763,31567 71759,31597 71755,31628 71753,31659 71751,31689 71750,31720 71749,31750 71750,31781 71751,31812 71753,31842 71755,31873 71759,31904 71763,31934 71768,31964 71773,31994 71780,32024 71787,32054 71794,32084 71803,32113 71812,32143 71822,32172 71833,32200 71844,32229 71856,32257 71869,32285 71883,32313 71897,32340 71912,32367 71927,32393 71943,32419 71960,32445 71977,32470 71995,32495 72014,32520 72033,32544 72053,32567 72073,32590 72094,32612 72115,32634 72137,32656 72160,32677 72183,32697 72206,32717 72230,32736 72255,32755 72280,32772 72305,32790 72331,32807 72357,32823 72383,32838 72410,32853 72437,32867 72465,32881 72493,32893 72521,32905 72550,32917 72578,32927 72607,32937 72637,32947 72666,32955 72696,32963 72726,32970 72756,32977 72786,32982 72816,32987 72846,32991 72877,32995 72908,32997 72938,32999 72969,33000 72999,33001 73030,33000 73061,32999 73092,32997 73122,32995 73153,32991 73183,32987 73213,32982 73244,32977 73273,32970 73303,32963 73333,32955 73362,32947 73392,32937 73421,32927 73449,32917 73478,32905 73506,32893 73534,32881 73562,32867 73589,32853 73616,32838 73642,32823 73668,32807 73694,32790 73719,32772 73744,32755 73770,32736 73794,32717 73817,32697 73840,32677 73863,32656 73885,32634 73906,32612 73927,32590 73947,32567 73967,32544 73986,32520 74005,32495 74023,32470 74040,32445 74057,32419 74073,32393 74088,32367 74103,32340 74117,32313 74131,32285 74144,32257 74156,32229 74167,32200 74178,32172 74188,32143 74197,32113 74205,32084 74213,32054 74220,32024 74227,31994 74232,31964 74237,31934 74241,31904 74245,31873 74247,31842 74249,31812 74251,31781 74251,31751 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="72462" y="30857" width="1433" height="1431"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 73714,32287 L 72463,31036 72479,31024 72495,31013 72512,31002 72529,30991 72546,30981 72563,30971 72580,30961 72598,30952 72616,30943 72634,30935 72652,30927 72671,30919 72690,30912 72708,30905 72727,30899 72746,30893 72766,30888 72785,30883 72804,30878 72824,30874 72844,30870 72863,30867 72883,30864 72903,30862 72923,30860 72942,30858 72963,30857 72982,30857 73002,30857 73022,30857 73042,30858 73062,30859 73082,30860 73102,30863 73122,30865 73141,30868 73161,30871 73181,30875 73200,30880 73220,30884 73239,30889 73258,30895 73277,30901 73296,30907 73315,30914 73333,30921 73352,30929 73370,30937 73388,30946 73406,30954 73424,30964 73441,30973 73458,30983 73475,30994 73492,31005 73509,31016 73525,31027 73541,31039 73557,31052 73572,31064 73587,31077 73603,31091 73618,31104 73632,31118 73646,31132 73659,31147 73673,31162 73686,31177 73698,31192 73711,31208 73723,31224 73734,31241 73746,31257 73756,31274 73767,31291 73777,31308 73786,31325 73796,31343 73805,31361 73813,31379 73821,31397 73829,31416 73836,31434 73843,31453 73849,31472 73855,31491 73861,31510 73866,31529 73871,31549 73875,31568 73879,31588 73882,31608 73885,31627 73888,31647 73890,31667 73891,31687 73893,31707 73893,31727 73894,31747 73893,31767 73893,31787 73892,31807 73890,31826 73888,31846 73886,31866 73883,31886 73880,31905 73876,31925 73872,31945 73867,31964 73862,31983 73857,32003 73851,32022 73845,32041 73838,32059 73831,32078 73823,32096 73815,32115 73807,32133 73798,32151 73789,32170 73780,32187 73770,32204 73759,32221 73749,32238 73737,32255 73726,32271 73714,32287 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="72106" y="31213" width="1432" height="1431"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 73537,32464 L 72287,31213 72275,31229 72264,31245 72252,31262 72242,31279 72231,31296 72221,31313 72212,31330 72203,31348 72194,31366 72186,31384 72178,31403 72170,31421 72162,31440 72155,31458 72149,31477 72143,31496 72138,31516 72133,31535 72128,31554 72124,31574 72120,31594 72117,31613 72114,31633 72112,31653 72110,31673 72108,31692 72107,31712 72107,31732 72106,31752 72107,31772 72107,31792 72109,31812 72110,31832 72112,31852 72115,31872 72118,31891 72121,31911 72125,31931 72129,31950 72134,31970 72139,31989 72145,32008 72151,32027 72157,32046 72164,32065 72172,32083 72180,32102 72188,32120 72196,32138 72205,32157 72215,32175 72224,32192 72234,32209 72245,32226 72255,32243 72267,32259 72278,32276 72290,32292 72303,32308 72315,32323 72328,32338 72341,32353 72355,32368 72369,32382 72383,32396 72398,32409 72413,32423 72428,32436 72443,32448 72459,32461 72475,32473 72491,32484 72508,32495 72525,32506 72542,32517 72559,32527 72576,32536 72594,32546 72612,32554 72630,32563 72648,32571 72667,32579 72685,32586 72704,32593 72723,32599 72742,32605 72761,32611 72780,32616 72800,32621 72819,32625 72839,32629 72859,32632 72878,32635 72898,32637 72918,32640 72938,32641 72958,32642 72978,32643 72998,32643 73018,32643 73038,32643 73058,32642 73077,32640 73097,32638 73117,32636 73137,32633 73157,32630 73176,32626 73196,32622 73215,32617 73234,32612 73254,32607 73273,32601 73292,32595 73310,32588 73329,32581 73348,32573 73366,32565 73384,32557 73402,32548 73420,32539 73437,32529 73454,32519 73472,32509 73488,32498 73505,32487 73521,32476 73537,32464 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="72392" y="31535" width="125" height="431"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 72392,31658 L 72436,31658 72436,31965 72515,31965 72515,31535 72436,31535 72392,31615 72392,31658 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="73532" y="31535" width="294" height="438"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 73542,31781 L 73618,31781 73620,31776 73624,31772 73627,31768 73632,31764 73636,31760 73641,31757 73645,31754 73650,31752 73656,31750 73661,31748 73667,31747 73672,31747 73678,31746 73683,31747 73689,31748 73694,31749 73700,31750 73705,31752 73710,31755 73715,31758 73719,31761 73724,31765 73728,31769 73731,31773 73734,31778 73737,31783 73740,31788 73742,31793 73743,31798 73744,31804 73745,31809 73745,31815 73745,31836 73745,31842 73744,31848 73743,31854 73741,31860 73739,31866 73736,31871 73732,31876 73729,31881 73724,31886 73720,31890 73715,31893 73710,31896 73704,31899 73698,31901 73692,31903 73686,31904 73680,31904 73674,31904 73668,31904 73662,31903 73656,31901 73650,31899 73645,31897 73640,31893 73635,31890 73630,31886 73626,31881 73622,31877 73619,31872 73615,31866 73613,31860 73611,31855 73533,31855 73536,31866 73539,31876 73543,31887 73549,31897 73554,31906 73561,31915 73568,31924 73576,31932 73584,31940 73593,31946 73603,31952 73613,31958 73623,31962 73634,31966 73645,31969 73656,31971 73667,31972 73678,31972 73690,31972 73701,31971 73712,31968 73722,31965 73733,31961 73743,31957 73753,31951 73763,31945 73771,31938 73780,31931 73788,31922 73795,31914 73801,31904 73808,31895 73813,31884 73817,31874 73820,31863 73823,31852 73824,31841 73825,31830 73825,31819 73824,31807 73822,31796 73819,31785 73816,31775 73812,31764 73807,31754 73800,31745 73793,31735 73786,31727 73778,31719 73770,31711 73761,31705 73751,31699 73741,31693 73731,31689 73720,31685 73709,31682 73698,31680 73687,31679 73676,31679 73664,31679 73653,31681 73642,31683 73631,31686 73621,31690 73621,31607 73793,31607 73793,31535 73542,31535 73542,31781 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="73301" y="31535" width="124" height="431"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 73392,31965 L 73424,31965 73424,31535 73344,31535 73301,31615 73301,31658 73344,31658 73344,31919 73392,31965 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 13 KiB |
|
@ -0,0 +1,80 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="25.03mm" height="25.02mm" viewBox="74849 30500 2503 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="74849" y="30500" width="2503" height="2502"/>
|
||||
<path fill="rgb(255,0,0)" stroke="none" d="M 77351,31751 L 77351,31720 77349,31689 77348,31659 77345,31628 77341,31597 77337,31567 77332,31537 77327,31507 77320,31477 77313,31447 77305,31417 77297,31388 77288,31358 77278,31329 77267,31301 77256,31272 77244,31244 77231,31215 77217,31187 77203,31160 77188,31133 77173,31107 77157,31081 77140,31055 77123,31030 77105,31005 77086,30980 77067,30956 77047,30933 77027,30910 77006,30888 76985,30866 76963,30844 76940,30823 76917,30803 76894,30783 76870,30764 76845,30745 76820,30728 76795,30710 76770,30693 76743,30677 76717,30662 76690,30647 76663,30633 76635,30619 76607,30607 76579,30595 76550,30583 76522,30573 76493,30563 76463,30553 76434,30545 76404,30537 76374,30530 76344,30523 76314,30518 76284,30513 76254,30509 76222,30505 76192,30503 76161,30501 76130,30500 76100,30500 76069,30500 76038,30501 76007,30503 75977,30505 75946,30509 75916,30513 75886,30518 75856,30523 75826,30530 75796,30537 75766,30545 75737,30553 75707,30563 75678,30573 75650,30583 75621,30595 75593,30607 75565,30619 75537,30633 75510,30647 75483,30662 75457,30677 75430,30693 75405,30710 75379,30728 75355,30745 75330,30764 75306,30783 75283,30803 75260,30823 75237,30844 75215,30866 75194,30888 75173,30910 75153,30933 75133,30956 75114,30980 75095,31005 75077,31030 75060,31055 75043,31081 75027,31107 75012,31133 74997,31160 74983,31187 74969,31215 74956,31244 74944,31272 74933,31301 74922,31329 74912,31358 74903,31388 74894,31417 74887,31447 74879,31477 74873,31507 74868,31537 74863,31567 74859,31597 74855,31628 74852,31659 74851,31689 74849,31720 74849,31750 74849,31781 74851,31812 74852,31842 74855,31873 74859,31904 74863,31934 74868,31964 74873,31994 74879,32024 74887,32054 74894,32084 74903,32113 74912,32143 74922,32172 74933,32200 74944,32229 74956,32257 74969,32285 74983,32313 74997,32340 75012,32367 75027,32393 75043,32419 75060,32445 75077,32470 75095,32495 75114,32520 75133,32544 75153,32567 75173,32590 75194,32612 75215,32634 75237,32656 75260,32677 75283,32697 75306,32717 75330,32736 75355,32755 75379,32772 75405,32790 75430,32807 75457,32823 75483,32838 75510,32853 75537,32867 75565,32881 75593,32893 75621,32905 75650,32917 75678,32927 75707,32937 75737,32947 75766,32955 75796,32963 75826,32970 75856,32977 75886,32982 75916,32987 75946,32991 75977,32995 76007,32997 76038,32999 76069,33000 76099,33001 76130,33000 76161,32999 76192,32997 76222,32995 76254,32991 76284,32987 76314,32982 76344,32977 76374,32970 76404,32963 76434,32955 76463,32947 76493,32937 76522,32927 76550,32917 76579,32905 76607,32893 76635,32881 76663,32867 76690,32853 76717,32838 76743,32823 76770,32807 76795,32790 76820,32772 76845,32755 76870,32736 76894,32717 76917,32697 76940,32677 76963,32656 76985,32634 77006,32612 77027,32590 77047,32567 77067,32544 77086,32520 77105,32495 77123,32470 77140,32445 77157,32419 77173,32393 77188,32367 77203,32340 77217,32313 77231,32285 77244,32257 77256,32229 77267,32200 77278,32172 77288,32143 77297,32113 77305,32084 77313,32054 77320,32024 77327,31994 77332,31964 77337,31934 77341,31904 77345,31873 77348,31842 77349,31812 77351,31781 77351,31751 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="75206" y="31213" width="1432" height="1431"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 76637,32464 L 75386,31213 75374,31229 75363,31245 75351,31262 75341,31279 75330,31296 75320,31313 75311,31330 75302,31348 75293,31366 75284,31384 75277,31403 75269,31421 75262,31440 75255,31458 75249,31477 75243,31496 75238,31516 75233,31535 75228,31554 75224,31574 75220,31594 75217,31613 75214,31633 75212,31653 75210,31673 75208,31692 75207,31712 75206,31732 75206,31752 75207,31772 75207,31792 75209,31812 75210,31832 75212,31852 75215,31872 75218,31891 75221,31911 75225,31931 75229,31950 75234,31970 75239,31989 75245,32008 75251,32027 75257,32046 75264,32065 75271,32083 75279,32102 75287,32120 75295,32138 75304,32157 75314,32175 75323,32192 75333,32209 75344,32226 75354,32243 75366,32259 75377,32276 75389,32292 75401,32308 75414,32323 75427,32338 75440,32353 75454,32368 75468,32382 75482,32396 75497,32409 75512,32423 75527,32436 75542,32448 75558,32461 75574,32473 75590,32484 75607,32495 75624,32506 75641,32517 75658,32527 75675,32536 75693,32546 75711,32554 75729,32563 75747,32571 75766,32579 75784,32586 75803,32593 75822,32599 75841,32605 75860,32611 75879,32616 75899,32621 75918,32625 75938,32629 75958,32632 75977,32635 75997,32637 76017,32640 76037,32641 76057,32642 76077,32643 76097,32643 76117,32643 76137,32643 76156,32642 76176,32640 76196,32638 76216,32636 76236,32633 76256,32630 76275,32626 76295,32622 76314,32617 76333,32612 76353,32607 76372,32601 76391,32595 76409,32588 76428,32581 76447,32573 76466,32565 76484,32557 76502,32548 76520,32539 76537,32529 76554,32519 76572,32509 76588,32498 76605,32487 76621,32476 76637,32464 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="75562" y="30857" width="1433" height="1431"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 76814,32287 L 75563,31036 75579,31024 75595,31013 75612,31002 75628,30991 75646,30981 75663,30971 75680,30961 75698,30952 75716,30943 75734,30935 75752,30927 75771,30919 75790,30912 75808,30905 75827,30899 75846,30893 75866,30888 75885,30883 75904,30878 75924,30874 75943,30870 75963,30867 75983,30864 76003,30862 76023,30860 76042,30858 76062,30857 76082,30857 76102,30857 76122,30857 76142,30858 76162,30859 76182,30860 76202,30863 76222,30865 76241,30868 76261,30871 76281,30875 76300,30880 76320,30884 76339,30889 76358,30895 76377,30901 76396,30907 76415,30914 76433,30921 76453,30929 76471,30937 76489,30946 76507,30954 76525,30964 76542,30973 76559,30983 76576,30994 76593,31005 76610,31016 76626,31027 76642,31039 76658,31052 76673,31064 76688,31077 76703,31091 76718,31104 76732,31118 76746,31132 76760,31147 76773,31162 76786,31177 76799,31192 76811,31208 76823,31224 76834,31241 76846,31257 76856,31274 76867,31291 76877,31308 76886,31325 76896,31343 76905,31361 76913,31379 76921,31397 76929,31416 76936,31434 76943,31453 76949,31472 76955,31491 76961,31510 76966,31529 76971,31549 76975,31568 76979,31588 76982,31608 76985,31627 76988,31647 76990,31667 76991,31687 76993,31707 76993,31727 76994,31747 76993,31767 76993,31787 76992,31807 76990,31826 76988,31846 76986,31866 76983,31886 76980,31905 76976,31925 76972,31945 76967,31964 76962,31983 76957,32003 76951,32022 76945,32041 76938,32059 76931,32078 76923,32096 76915,32115 76907,32133 76898,32151 76889,32170 76880,32187 76870,32204 76859,32221 76849,32238 76837,32255 76826,32271 76814,32287 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="75546" y="31527" width="296" height="447"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 75625,31834 L 75625,31826 75625,31820 75626,31812 75628,31806 75630,31799 75633,31793 75636,31787 75641,31782 75645,31777 75650,31773 75655,31769 75661,31765 75667,31762 75674,31760 75680,31758 75687,31757 75693,31757 75700,31757 75707,31758 75713,31760 75720,31762 75726,31765 75732,31769 75737,31773 75743,31777 75747,31782 75751,31787 75755,31793 75758,31799 75760,31806 75762,31812 75762,31820 75763,31826 75763,31834 75762,31840 75762,31847 75760,31853 75758,31860 75755,31866 75751,31871 75747,31877 75743,31882 75737,31886 75732,31890 75726,31894 75720,31897 75713,31899 75707,31901 75700,31902 75693,31902 75687,31902 75680,31901 75674,31899 75667,31897 75661,31894 75655,31890 75650,31886 75645,31882 75641,31877 75636,31871 75633,31866 75630,31860 75628,31853 75626,31847 75625,31840 75625,31834 Z M 75801,31627 L 75750,31627 75747,31622 75743,31618 75738,31615 75734,31611 75730,31608 75725,31606 75720,31603 75715,31601 75710,31600 75705,31599 75699,31598 75694,31598 75688,31598 75683,31599 75678,31600 75673,31601 75668,31603 75663,31605 75658,31608 75653,31611 75649,31614 75645,31618 75642,31622 75638,31626 75635,31631 75633,31635 75630,31640 75628,31645 75627,31650 75626,31656 75625,31661 75625,31666 75625,31713 75635,31706 75645,31700 75655,31694 75666,31690 75678,31687 75689,31685 75701,31684 75713,31684 75725,31685 75736,31687 75749,31691 75760,31695 75770,31700 75780,31706 75790,31714 75798,31722 75805,31728 75810,31735 75816,31742 75821,31750 75825,31758 75829,31766 75832,31774 75835,31783 75837,31791 75839,31800 75840,31809 75841,31819 75841,31828 75841,31837 75840,31846 75839,31855 75836,31864 75834,31873 75831,31881 75827,31889 75823,31897 75819,31905 75814,31913 75808,31920 75802,31926 75796,31933 75789,31939 75782,31944 75775,31950 75767,31954 75759,31959 75751,31962 75742,31965 75733,31968 75724,31970 75715,31972 75706,31973 75697,31973 75688,31973 75679,31973 75670,31971 75661,31970 75653,31968 75644,31965 75636,31961 75627,31958 75619,31953 75612,31949 75604,31943 75597,31938 75591,31932 75585,31925 75579,31918 75573,31911 75568,31904 75564,31896 75560,31888 75556,31879 75553,31871 75551,31862 75549,31853 75548,31844 75547,31835 75546,31826 75546,31674 75547,31666 75547,31659 75548,31651 75549,31644 75551,31637 75553,31630 75556,31623 75558,31616 75561,31609 75565,31603 75569,31596 75573,31590 75577,31584 75582,31578 75587,31573 75592,31567 75597,31562 75603,31558 75609,31553 75615,31549 75622,31545 75628,31542 75635,31539 75642,31536 75649,31534 75656,31532 75663,31530 75670,31529 75678,31527 75685,31527 75692,31527 75700,31527 75801,31627 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="75314" y="31535" width="123" height="431"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 75314,31658 L 75357,31658 75357,31965 75436,31965 75436,31535 75357,31535 75314,31615 75314,31658 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="76764" y="31535" width="123" height="431"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 76764,31658 L 76808,31658 76808,31965 76886,31965 76886,31535 76808,31535 76764,31615 76764,31658 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="76384" y="31527" width="296" height="451"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 76385,31859 L 76384,31852 76465,31851 76467,31857 76469,31863 76472,31868 76475,31874 76479,31879 76483,31883 76488,31887 76492,31891 76498,31894 76503,31897 76509,31899 76515,31901 76521,31902 76527,31903 76533,31903 76540,31902 76546,31902 76552,31900 76557,31898 76563,31895 76568,31892 76573,31888 76578,31884 76582,31880 76586,31875 76591,31870 76594,31865 76596,31859 76598,31853 76599,31847 76600,31841 76601,31835 76600,31830 76600,31824 76598,31819 76597,31814 76594,31809 76592,31805 76587,31801 76584,31797 76580,31793 76576,31790 76571,31787 76567,31785 76562,31783 76556,31782 76551,31781 76546,31781 76499,31781 76499,31710 76538,31710 76543,31709 76548,31709 76554,31707 76558,31706 76563,31703 76568,31701 76572,31698 76576,31694 76579,31690 76583,31686 76585,31681 76587,31677 76590,31672 76592,31667 76592,31661 76593,31656 76592,31650 76592,31645 76590,31639 76587,31634 76585,31629 76582,31624 76579,31619 76575,31615 76571,31611 76567,31607 76562,31604 76557,31602 76552,31599 76546,31598 76541,31597 76535,31596 76530,31596 76524,31596 76518,31597 76513,31599 76507,31601 76502,31603 76498,31606 76493,31609 76489,31613 76485,31617 76482,31622 76479,31627 76476,31632 76474,31637 76472,31642 76471,31648 76393,31648 76393,31639 76394,31630 76396,31620 76399,31611 76402,31603 76406,31594 76411,31586 76416,31577 76422,31570 76428,31563 76435,31557 76443,31551 76451,31546 76459,31542 76467,31538 76476,31535 76490,31532 76503,31529 76517,31528 76531,31527 76545,31528 76559,31529 76573,31532 76586,31535 76595,31538 76603,31541 76610,31545 76617,31549 76624,31554 76631,31559 76637,31565 76642,31571 76648,31577 76652,31584 76656,31592 76660,31600 76663,31608 76666,31615 76668,31624 76669,31632 76670,31640 76671,31648 76670,31657 76669,31665 76668,31673 76666,31681 76663,31689 76660,31697 76656,31704 76652,31711 76647,31718 76642,31724 76637,31731 76631,31736 76624,31742 76617,31746 76625,31751 76632,31756 76638,31761 76645,31767 76650,31773 76656,31780 76660,31787 76665,31795 76669,31802 76672,31810 76674,31818 76677,31827 76678,31835 76679,31844 76679,31852 76679,31861 76678,31869 76676,31878 76674,31886 76671,31894 76668,31902 76664,31910 76660,31917 76655,31924 76650,31931 76644,31937 76637,31943 76631,31948 76624,31953 76616,31958 76608,31962 76601,31965 76589,31969 76576,31972 76563,31975 76551,31976 76538,31977 76526,31977 76513,31976 76501,31975 76385,31859 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 16 KiB |
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.7mm" height="25.02mm" viewBox="77915 30500 1670 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="77915" y="30500" width="1670" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 77916,30687 L 77916,32813 77916,32822 77917,32831 77918,32841 77920,32850 77922,32859 77924,32867 77927,32876 77930,32885 77934,32893 77938,32901 77943,32909 77948,32917 77953,32925 77959,32932 77965,32939 77971,32946 77978,32952 77985,32958 77992,32964 78000,32969 78007,32974 78015,32978 78024,32983 78032,32986 78040,32990 78049,32992 78058,32995 78067,32997 78076,32999 78085,33000 78095,33000 78104,33001 79397,33001 79406,33000 79415,33000 79424,32999 79433,32997 79442,32995 79451,32992 79460,32990 79469,32986 79477,32983 79485,32978 79493,32974 79501,32969 79508,32964 79516,32958 79523,32952 79529,32946 79536,32939 79542,32932 79547,32925 79553,32917 79558,32909 79562,32901 79566,32893 79570,32885 79573,32876 79576,32867 79579,32859 79581,32850 79582,32841 79583,32831 79584,32822 79584,32813 79584,30687 79584,30678 79583,30669 79582,30660 79581,30650 79579,30641 79576,30633 79573,30624 79570,30615 79566,30607 79562,30599 79558,30591 79553,30583 79547,30575 79542,30568 79536,30561 79529,30554 79523,30548 79516,30542 79508,30536 79501,30531 79493,30526 79485,30522 79477,30518 79469,30514 79460,30511 79451,30508 79442,30505 79433,30503 79424,30502 79415,30500 79406,30500 79397,30500 78104,30500 78095,30500 78085,30500 78076,30502 78067,30503 78058,30505 78049,30508 78040,30511 78032,30514 78024,30518 78015,30522 78007,30526 78000,30531 77992,30536 77985,30542 77978,30548 77971,30554 77965,30561 77959,30568 77953,30575 77948,30583 77943,30591 77938,30599 77934,30607 77930,30615 77927,30624 77924,30633 77922,30641 77920,30650 77918,30660 77917,30669 77916,30678 77916,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="78178" y="30915" width="1145" height="1670"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 78485,31583 L 78850,31583 78858,31583 78866,31582 78874,31581 78882,31580 78890,31578 78898,31576 78906,31573 78914,31570 78921,31567 78929,31563 78936,31559 78943,31555 78949,31550 78956,31545 78962,31540 78968,31534 78974,31528 78979,31522 78984,31515 78989,31509 78993,31502 78997,31495 79001,31487 79004,31480 79007,31472 79010,31465 79012,31457 79014,31449 79015,31441 79016,31432 79016,31424 79017,31416 79017,31361 79016,31352 79016,31344 79015,31336 79014,31328 79012,31320 79010,31312 79007,31305 79004,31297 79001,31289 78997,31282 78993,31275 78989,31268 78984,31261 78979,31255 78974,31249 78968,31243 78962,31237 78956,31232 78949,31227 78943,31222 78936,31218 78929,31214 78921,31210 78914,31207 78906,31204 78898,31201 78890,31199 78882,31197 78874,31196 78866,31195 78858,31194 78850,31194 78485,31194 78485,31583 Z M 78178,32584 L 78485,32584 78485,31861 78878,31861 78900,31860 78921,31858 78943,31856 78965,31852 78986,31847 79007,31841 79028,31835 79048,31827 79068,31818 79087,31808 79106,31797 79125,31786 79143,31773 79160,31760 79176,31745 79192,31730 79207,31715 79221,31698 79235,31681 79247,31663 79259,31645 79270,31626 79280,31606 79289,31586 79296,31566 79303,31545 79309,31524 79314,31503 79318,31481 79320,31460 79322,31438 79322,31416 79322,31361 79322,31339 79320,31317 79318,31295 79314,31274 79309,31253 79303,31232 79296,31211 79289,31191 79280,31171 79270,31151 79259,31132 79247,31114 79235,31096 79221,31079 79207,31062 79192,31046 79176,31031 79160,31017 79143,31004 79125,30991 79106,30979 79087,30969 79068,30959 79048,30950 79028,30942 79007,30935 78986,30929 78965,30925 78943,30921 78921,30918 78900,30917 78878,30916 78178,30916 78178,32584 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 7.1 KiB |
|
@ -0,0 +1,110 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.7mm" height="25.02mm" viewBox="82365 30500 1670 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="82365" y="30500" width="1670" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 82366,30687 L 82366,32813 82366,32822 82367,32831 82368,32841 82370,32850 82372,32859 82374,32867 82377,32876 82380,32885 82384,32893 82388,32901 82393,32909 82397,32917 82403,32925 82408,32932 82414,32939 82421,32946 82427,32952 82434,32958 82442,32964 82449,32969 82457,32974 82465,32978 82473,32983 82482,32986 82490,32990 82499,32992 82508,32995 82518,32997 82527,32999 82536,33000 82545,33000 82554,33001 83847,33001 83856,33000 83865,33000 83874,32999 83883,32997 83892,32995 83901,32992 83910,32990 83918,32986 83927,32983 83935,32978 83943,32974 83951,32969 83958,32964 83966,32958 83972,32952 83979,32946 83986,32939 83992,32932 83997,32925 84002,32917 84007,32909 84012,32901 84016,32893 84020,32885 84023,32876 84026,32867 84028,32859 84030,32850 84032,32841 84033,32831 84034,32822 84034,32813 84034,30687 84034,30678 84033,30669 84032,30660 84030,30650 84028,30641 84026,30633 84023,30624 84020,30615 84016,30607 84012,30599 84007,30591 84002,30583 83997,30575 83992,30568 83986,30561 83979,30554 83972,30548 83966,30542 83958,30536 83951,30531 83943,30526 83935,30522 83927,30518 83918,30514 83910,30511 83901,30508 83892,30505 83883,30503 83874,30502 83865,30500 83856,30500 83847,30500 82554,30500 82545,30500 82536,30500 82527,30502 82518,30503 82508,30505 82499,30508 82490,30511 82482,30514 82473,30518 82465,30522 82457,30526 82449,30531 82442,30536 82434,30542 82427,30548 82421,30554 82414,30561 82408,30568 82403,30575 82397,30583 82393,30591 82388,30599 82384,30607 82380,30615 82377,30624 82374,30633 82372,30641 82370,30650 82368,30660 82367,30669 82366,30678 82366,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83376" y="32236" width="427" height="564"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83658,32236 L 83802,32236 83802,32799 83377,32799 83377,32236 83519,32236 83525,32243 83533,32250 83541,32257 83550,32262 83559,32266 83569,32269 83579,32271 83589,32271 83599,32271 83609,32269 83619,32266 83628,32262 83637,32257 83645,32250 83652,32243 83658,32236 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="82628" y="30915" width="1145" height="1670"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 82935,31583 L 83300,31583 83308,31583 83316,31582 83324,31581 83332,31580 83340,31578 83348,31576 83356,31573 83364,31570 83371,31567 83378,31563 83385,31559 83392,31555 83399,31550 83406,31545 83412,31540 83418,31534 83423,31528 83429,31522 83434,31515 83438,31509 83443,31502 83447,31495 83450,31487 83454,31480 83457,31472 83459,31465 83461,31457 83463,31449 83465,31441 83466,31432 83466,31424 83466,31416 83466,31361 83466,31352 83466,31344 83465,31336 83463,31328 83461,31320 83459,31312 83457,31305 83454,31297 83450,31289 83447,31282 83443,31275 83438,31268 83434,31261 83429,31255 83423,31249 83418,31243 83412,31237 83406,31232 83399,31227 83392,31222 83385,31218 83378,31214 83371,31210 83364,31207 83356,31204 83348,31201 83340,31199 83332,31197 83324,31196 83316,31195 83308,31194 83300,31194 82935,31194 82935,31583 Z M 82628,32584 L 82935,32584 82935,31861 83327,31861 83349,31860 83371,31858 83393,31856 83414,31852 83435,31847 83456,31841 83477,31835 83498,31827 83518,31818 83537,31808 83556,31797 83574,31786 83592,31773 83610,31760 83626,31745 83642,31730 83657,31715 83671,31698 83684,31681 83697,31663 83709,31645 83719,31626 83729,31606 83738,31586 83746,31566 83753,31545 83759,31524 83763,31503 83767,31481 83770,31460 83772,31438 83772,31416 83772,31361 83772,31339 83770,31317 83767,31295 83763,31274 83759,31253 83753,31232 83746,31211 83738,31191 83729,31171 83719,31151 83709,31132 83697,31114 83684,31096 83671,31079 83657,31062 83642,31046 83626,31031 83610,31017 83592,31004 83574,30991 83556,30979 83537,30969 83518,30959 83498,30950 83477,30942 83456,30935 83435,30929 83414,30925 83393,30921 83371,30918 83349,30917 83327,30916 82628,30916 82628,32584 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83397" y="32255" width="385" height="524"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 83670,32256 L 83781,32256 83781,32778 83397,32778 83397,32256 83510,32256 83518,32264 83527,32271 83536,32278 83546,32283 83557,32287 83567,32290 83579,32292 83590,32292 83601,32292 83612,32290 83623,32287 83634,32283 83643,32278 83653,32271 83662,32264 83670,32256 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83466" y="32488" width="248" height="118"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83466,32533 L 83543,32488 83547,32494 83551,32499 83556,32504 83562,32508 83568,32511 83575,32513 83582,32514 83589,32515 83596,32514 83603,32513 83609,32511 83615,32508 83621,32504 83626,32499 83631,32494 83635,32488 83713,32533 83708,32541 83702,32548 83696,32555 83690,32562 83683,32568 83676,32574 83669,32580 83660,32585 83651,32589 83643,32593 83634,32596 83625,32599 83616,32601 83607,32602 83598,32604 83589,32605 83580,32604 83570,32602 83561,32601 83552,32599 83543,32596 83534,32593 83526,32589 83518,32585 83510,32580 83502,32574 83495,32568 83489,32562 83482,32555 83476,32548 83471,32541 83466,32533 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83541" y="32620" width="97" height="142"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83541,32761 L 83637,32761 83637,32621 83541,32621 83541,32761 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83498" y="32361" width="184" height="21"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83681,32362 L 83498,32362 83498,32381 83681,32381 83681,32362 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id10">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83498" y="32334" width="184" height="21"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83498,32354 L 83681,32354 83681,32335 83498,32335 83498,32354 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id11">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83498" y="32309" width="184" height="20"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83681,32328 L 83498,32328 83498,32309 83681,32309 83681,32328 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id12">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83552" y="32632" width="76" height="119"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 83552,32750 L 83627,32750 83627,32632 83552,32632 83552,32750 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id13">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83553" y="32396" width="73" height="103"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83553,32396 L 83625,32396 83589,32498 83553,32396 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id14">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="83566" y="32646" width="48" height="91"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 83579,32658 L 83591,32658 83593,32658 83594,32658 83596,32659 83597,32660 83598,32661 83599,32663 83600,32665 83600,32666 83600,32675 83600,32677 83599,32679 83598,32680 83597,32682 83596,32683 83594,32683 83593,32684 83591,32684 83579,32684 83579,32658 Z M 83566,32736 L 83566,32646 83592,32646 83596,32647 83600,32648 83604,32649 83607,32652 83609,32655 83611,32659 83612,32662 83613,32666 83613,32675 83612,32679 83611,32683 83609,32686 83607,32689 83604,32693 83600,32695 83596,32696 83592,32696 83579,32696 83579,32736 83566,32736 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 12 KiB |
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.7mm" height="25.02mm" viewBox="84565 30500 1670 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="84565" y="30500" width="1670" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 84566,30687 L 84566,32813 84566,32822 84567,32831 84568,32840 84570,32849 84572,32859 84574,32867 84577,32876 84580,32885 84584,32893 84588,32901 84593,32909 84597,32917 84603,32925 84609,32932 84614,32939 84621,32946 84627,32952 84634,32958 84642,32964 84649,32969 84657,32974 84665,32978 84673,32982 84682,32986 84690,32990 84699,32992 84708,32995 84717,32997 84726,32999 84735,33000 84744,33000 84753,33001 86047,33001 86056,33000 86065,33000 86074,32999 86083,32997 86092,32995 86101,32992 86110,32990 86118,32986 86127,32982 86135,32978 86143,32974 86151,32969 86158,32964 86166,32958 86172,32952 86179,32946 86186,32939 86192,32932 86197,32925 86202,32917 86207,32909 86212,32901 86216,32893 86220,32885 86223,32876 86226,32867 86228,32859 86230,32849 86232,32840 86233,32831 86234,32822 86234,32813 86234,30687 86234,30678 86233,30669 86232,30660 86230,30650 86228,30641 86226,30633 86223,30624 86220,30615 86216,30607 86212,30599 86207,30591 86202,30583 86197,30575 86192,30568 86186,30561 86179,30554 86172,30548 86166,30542 86158,30536 86151,30531 86143,30526 86135,30522 86127,30518 86118,30514 86110,30510 86101,30508 86092,30505 86083,30503 86074,30501 86065,30500 86056,30500 86047,30500 84753,30500 84744,30500 84735,30500 84726,30501 84717,30503 84708,30505 84699,30508 84690,30510 84682,30514 84673,30518 84665,30522 84657,30526 84649,30531 84642,30536 84634,30542 84627,30548 84621,30554 84614,30561 84609,30568 84603,30575 84597,30583 84593,30591 84588,30599 84584,30607 84580,30615 84577,30624 84574,30633 84572,30641 84570,30650 84568,30660 84567,30669 84566,30678 84566,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="84981" y="32124" width="838" height="669"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 85643,32155 L 85744,32371 85701,32366 85659,32362 85616,32359 85573,32356 85530,32354 85487,32352 85443,32351 85399,32351 85356,32351 85313,32352 85270,32354 85227,32356 85184,32359 85141,32362 85099,32366 85056,32371 85157,32155 85643,32155 Z M 85781,32660 L 85788,32642 85793,32623 85799,32604 85803,32584 85808,32565 85811,32546 85815,32526 85817,32506 85818,32433 85817,32424 85815,32414 85812,32404 85808,32395 85806,32391 85803,32388 85800,32385 85797,32383 85793,32380 85789,32379 85785,32377 85781,32377 85663,32124 85137,32124 85019,32377 85015,32377 85011,32379 85007,32380 85003,32383 85000,32385 84997,32388 84994,32391 84992,32395 84988,32404 84985,32414 84983,32424 84982,32433 84983,32506 84985,32526 84989,32546 84992,32565 84997,32584 85001,32604 85007,32623 85012,32642 85019,32660 85047,32660 85047,32792 85127,32792 85127,32660 85673,32660 85673,32792 85753,32792 85753,32660 85781,32660 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="84971" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 85200,31208 L 85475,31208 85487,31207 85499,31205 85511,31202 85523,31198 85534,31193 85544,31187 85554,31179 85563,31171 85572,31162 85579,31152 85585,31142 85590,31131 85595,31119 85598,31107 85599,31095 85600,31083 85600,31041 85599,31029 85598,31017 85595,31005 85590,30993 85585,30982 85579,30972 85572,30962 85563,30953 85554,30945 85544,30937 85534,30931 85523,30926 85511,30921 85499,30919 85487,30917 85475,30916 85200,30916 85200,31208 Z M 84971,31959 L 85200,31959 85200,31416 85496,31416 85512,31416 85528,31415 85545,31413 85561,31410 85577,31406 85593,31402 85608,31397 85623,31391 85638,31384 85653,31377 85667,31369 85681,31360 85694,31351 85707,31341 85720,31330 85732,31319 85743,31307 85754,31294 85764,31281 85773,31268 85782,31254 85790,31240 85797,31225 85804,31210 85810,31195 85815,31180 85819,31164 85823,31148 85826,31132 85828,31116 85829,31099 85829,31083 85829,31041 85829,31025 85828,31008 85826,30992 85823,30976 85819,30960 85815,30944 85810,30929 85804,30914 85797,30899 85790,30884 85782,30870 85773,30856 85764,30843 85754,30830 85743,30817 85732,30805 85720,30794 85707,30783 85694,30773 85681,30764 85667,30755 85653,30747 85638,30740 85623,30733 85608,30727 85593,30722 85577,30718 85561,30714 85545,30711 85528,30709 85512,30708 85496,30708 84971,30708 84971,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 7.9 KiB |
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.69mm" height="25.02mm" viewBox="86766 30500 1669 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="86766" y="30500" width="1669" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 86766,30687 L 86766,32813 86766,32822 86767,32831 86768,32841 86770,32850 86772,32859 86774,32867 86777,32876 86780,32885 86784,32893 86788,32901 86793,32909 86797,32917 86803,32925 86809,32932 86814,32939 86821,32946 86827,32952 86834,32958 86842,32964 86849,32969 86857,32974 86865,32978 86873,32983 86882,32986 86890,32990 86899,32992 86908,32995 86917,32997 86926,32999 86935,33000 86944,33000 86953,33001 88247,33001 88256,33000 88265,33000 88274,32999 88283,32997 88292,32995 88301,32992 88310,32990 88318,32986 88327,32983 88335,32978 88343,32974 88351,32969 88358,32964 88366,32958 88372,32952 88379,32946 88386,32939 88392,32932 88397,32925 88402,32917 88407,32909 88412,32901 88416,32893 88420,32885 88423,32876 88426,32867 88428,32859 88430,32850 88432,32841 88433,32831 88434,32822 88434,32813 88434,30687 88434,30678 88433,30669 88432,30660 88430,30650 88428,30641 88426,30633 88423,30624 88420,30615 88416,30607 88412,30599 88407,30591 88402,30583 88397,30575 88392,30568 88386,30561 88379,30554 88372,30548 88366,30542 88358,30536 88351,30531 88343,30526 88335,30522 88327,30518 88318,30514 88310,30511 88301,30508 88292,30505 88283,30503 88274,30502 88265,30500 88256,30500 88247,30500 86953,30500 86944,30500 86935,30500 86926,30502 86917,30503 86908,30505 86899,30508 86890,30511 86882,30514 86873,30518 86865,30522 86857,30526 86849,30531 86842,30536 86834,30542 86827,30548 86821,30554 86814,30561 86809,30568 86803,30575 86797,30583 86793,30591 86788,30599 86784,30607 86780,30615 86777,30624 86774,30633 86772,30641 86770,30650 86768,30660 86767,30669 86766,30678 86766,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="87171" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 87400,31208 L 87674,31208 87686,31207 87698,31205 87710,31202 87722,31198 87733,31193 87743,31187 87753,31179 87762,31171 87771,31162 87778,31152 87784,31142 87789,31131 87794,31119 87797,31107 87798,31095 87799,31083 87799,31041 87798,31029 87797,31017 87794,31005 87789,30993 87784,30982 87778,30972 87771,30962 87762,30953 87753,30945 87743,30937 87733,30931 87722,30926 87710,30921 87698,30919 87686,30917 87674,30916 87400,30916 87400,31208 Z M 87171,31959 L 87400,31959 87400,31416 87695,31416 87711,31416 87727,31415 87744,31413 87760,31410 87776,31406 87792,31402 87807,31397 87822,31391 87837,31384 87853,31377 87867,31369 87881,31360 87894,31351 87907,31341 87920,31330 87932,31319 87943,31307 87954,31294 87964,31281 87973,31268 87982,31254 87990,31240 87997,31225 88004,31210 88010,31195 88015,31180 88019,31164 88023,31148 88026,31132 88028,31116 88029,31099 88029,31083 88029,31041 88029,31025 88028,31009 88026,30992 88023,30976 88019,30960 88015,30944 88010,30929 88004,30914 87997,30899 87990,30884 87982,30870 87973,30856 87964,30843 87954,30830 87943,30817 87932,30805 87920,30794 87907,30783 87894,30773 87881,30764 87867,30755 87853,30747 87837,30740 87822,30733 87807,30727 87792,30722 87776,30718 87760,30714 87744,30711 87727,30709 87711,30708 87695,30708 87171,30708 87171,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="86849" y="32108" width="1504" height="547"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 87019,32300 L 87020,32298 87022,32296 87024,32295 87027,32294 87049,32294 87011,32422 86983,32422 87019,32300 Z M 87185,32294 L 87185,32422 87038,32422 87076,32294 87185,32294 Z M 88184,32543 L 88184,32564 88345,32564 88345,32622 88243,32622 88243,32653 88189,32653 88189,32646 88188,32638 88187,32631 88186,32623 88184,32616 88182,32608 88180,32601 88177,32594 88174,32587 88170,32580 88167,32574 88163,32568 88158,32561 88154,32555 88149,32550 88143,32544 88138,32539 88132,32534 88126,32529 88120,32525 88114,32521 88107,32517 88100,32514 88093,32511 88086,32508 88079,32506 88072,32504 88064,32502 88057,32501 88049,32500 88042,32499 88034,32499 88027,32499 88019,32500 88011,32501 88004,32502 87997,32504 87989,32506 87982,32508 87975,32511 87968,32514 87961,32517 87955,32521 87948,32525 87942,32529 87936,32534 87930,32539 87925,32544 87920,32550 87915,32555 87910,32561 87906,32568 87902,32574 87898,32580 87894,32587 87891,32594 87889,32601 87886,32608 87884,32616 87882,32623 87881,32631 87880,32638 87880,32646 87880,32653 87259,32653 87259,32646 87258,32638 87257,32631 87256,32623 87254,32616 87252,32608 87250,32601 87247,32594 87244,32587 87241,32580 87237,32574 87233,32568 87228,32561 87224,32555 87219,32550 87214,32544 87208,32539 87202,32534 87196,32529 87190,32525 87184,32521 87177,32517 87170,32514 87163,32511 87156,32508 87149,32506 87142,32504 87135,32502 87127,32501 87119,32500 87112,32499 87104,32499 87097,32499 87089,32500 87082,32501 87074,32502 87067,32504 87059,32506 87052,32508 87045,32511 87038,32514 87031,32517 87025,32521 87018,32525 87012,32529 87006,32534 87001,32539 86995,32544 86990,32550 86985,32555 86980,32561 86976,32568 86972,32574 86968,32580 86965,32587 86962,32594 86959,32601 86956,32608 86954,32616 86953,32623 86951,32631 86951,32638 86950,32646 86950,32653 86849,32653 86849,32610 86879,32610 86909,32460 86910,32457 86911,32454 86936,32422 86957,32422 87008,32250 87009,32248 87010,32246 87012,32245 87013,32243 87015,32242 87017,32241 87019,32241 87021,32241 87260,32241 87260,32564 87847,32564 87847,32543 87280,32543 87280,32108 88351,32108 88351,32543 88184,32543 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="86967" y="32514" width="278" height="278"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 87152,32653 L 87152,32648 87151,32644 87150,32640 87149,32635 87147,32631 87144,32627 87142,32624 87139,32620 87135,32617 87132,32615 87128,32612 87124,32610 87119,32609 87115,32608 87110,32607 87106,32607 87101,32607 87097,32608 87093,32609 87088,32610 87084,32612 87080,32615 87077,32617 87073,32620 87070,32624 87067,32627 87065,32631 87063,32635 87062,32640 87061,32644 87060,32648 87060,32653 87060,32657 87061,32662 87062,32666 87063,32671 87065,32675 87067,32679 87070,32682 87073,32686 87077,32689 87080,32691 87084,32694 87088,32696 87093,32697 87097,32698 87101,32699 87106,32699 87110,32699 87115,32698 87119,32697 87124,32696 87128,32694 87132,32691 87135,32689 87139,32686 87142,32682 87144,32679 87147,32675 87149,32671 87150,32666 87151,32662 87152,32657 87152,32653 Z M 87244,32653 L 87244,32646 87243,32640 87242,32633 87241,32626 87240,32620 87238,32613 87236,32607 87233,32601 87230,32594 87227,32587 87224,32581 87220,32576 87217,32570 87212,32565 87208,32560 87203,32555 87198,32550 87193,32546 87188,32541 87182,32538 87177,32534 87171,32531 87165,32528 87158,32525 87152,32522 87146,32520 87139,32518 87133,32517 87126,32516 87119,32515 87112,32514 87106,32514 87099,32514 87092,32515 87085,32516 87079,32517 87072,32518 87066,32520 87059,32522 87053,32525 87047,32528 87041,32531 87034,32534 87028,32538 87022,32541 87017,32546 87012,32550 87007,32555 87002,32560 86998,32565 86994,32570 86990,32576 86986,32581 86983,32587 86980,32594 86977,32601 86975,32607 86973,32613 86971,32620 86969,32626 86968,32633 86967,32640 86967,32646 86967,32653 86967,32660 86967,32667 86968,32673 86969,32680 86971,32687 86973,32693 86975,32700 86977,32706 86980,32712 86983,32718 86986,32724 86990,32730 86994,32735 86998,32741 87002,32746 87007,32751 87012,32755 87017,32760 87022,32764 87028,32768 87034,32772 87041,32775 87047,32778 87053,32781 87059,32783 87066,32785 87072,32787 87079,32789 87085,32790 87092,32791 87099,32791 87106,32791 87112,32791 87119,32791 87126,32790 87133,32789 87139,32787 87146,32785 87152,32783 87158,32781 87165,32778 87171,32775 87177,32772 87182,32768 87188,32764 87193,32760 87198,32755 87203,32751 87208,32746 87212,32741 87217,32735 87220,32730 87224,32724 87227,32718 87230,32712 87233,32706 87236,32700 87238,32693 87240,32687 87241,32680 87242,32673 87243,32667 87244,32660 87244,32653 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="87895" y="32514" width="279" height="278"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 88081,32652 L 88081,32648 88080,32643 88079,32639 88077,32634 88075,32631 88073,32627 88070,32623 88067,32619 88064,32616 88060,32614 88056,32611 88052,32609 88048,32608 88044,32607 88039,32606 88034,32606 88030,32606 88025,32607 88021,32608 88017,32609 88013,32611 88009,32614 88005,32616 88002,32619 87999,32623 87996,32627 87994,32631 87992,32634 87990,32639 87989,32643 87988,32648 87988,32652 87988,32657 87989,32661 87990,32666 87992,32670 87994,32674 87996,32678 87999,32682 88002,32685 88005,32688 88009,32691 88013,32693 88017,32695 88021,32697 88025,32698 88030,32698 88034,32699 88039,32698 88044,32698 88048,32697 88052,32695 88056,32693 88060,32691 88064,32688 88067,32685 88070,32682 88073,32678 88075,32674 88077,32670 88079,32666 88080,32661 88081,32657 88081,32652 Z M 88172,32652 L 88172,32645 88172,32639 88171,32632 88170,32625 88168,32619 88166,32612 88164,32606 88162,32599 88159,32593 88156,32587 88152,32581 88149,32576 88145,32570 88141,32565 88136,32560 88132,32555 88127,32550 88122,32545 88116,32541 88111,32537 88105,32534 88099,32530 88093,32527 88087,32525 88081,32522 88074,32520 88068,32518 88061,32517 88054,32516 88048,32515 88041,32514 88034,32514 88027,32514 88021,32515 88014,32516 88007,32517 88001,32518 87994,32520 87988,32522 87981,32525 87975,32527 87969,32530 87963,32534 87958,32537 87952,32541 87946,32545 87941,32550 87937,32555 87932,32560 87927,32565 87923,32570 87919,32576 87916,32581 87912,32587 87909,32593 87907,32599 87903,32606 87901,32612 87899,32619 87898,32625 87897,32632 87896,32639 87895,32645 87895,32652 87895,32659 87896,32666 87897,32672 87898,32679 87899,32686 87901,32692 87903,32699 87907,32705 87909,32712 87912,32718 87916,32724 87919,32730 87923,32735 87927,32741 87932,32746 87937,32751 87941,32755 87946,32760 87952,32764 87958,32768 87963,32772 87969,32775 87975,32778 87981,32781 87988,32783 87994,32785 88001,32787 88007,32789 88014,32790 88021,32791 88027,32791 88034,32791 88041,32791 88048,32791 88054,32790 88061,32789 88068,32787 88074,32785 88081,32783 88087,32781 88093,32778 88099,32775 88105,32772 88111,32768 88116,32764 88122,32760 88127,32755 88132,32751 88136,32746 88141,32741 88145,32735 88149,32730 88152,32724 88156,32718 88159,32712 88162,32705 88164,32699 88166,32692 88168,32686 88170,32679 88171,32672 88172,32666 88172,32659 88172,32652 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 14 KiB |
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.69mm" height="25.02mm" viewBox="88966 30500 1669 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="88966" y="30500" width="1669" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 88966,30687 L 88966,32813 88966,32822 88967,32831 88968,32841 88970,32850 88972,32859 88974,32867 88977,32876 88980,32885 88984,32893 88988,32901 88993,32909 88997,32917 89003,32925 89009,32932 89014,32939 89021,32946 89027,32952 89034,32958 89042,32964 89049,32969 89057,32974 89065,32978 89073,32983 89082,32986 89090,32990 89099,32992 89108,32995 89117,32997 89126,32999 89135,33000 89144,33000 89153,33001 90447,33001 90456,33000 90465,33000 90474,32999 90483,32997 90492,32995 90501,32992 90510,32990 90518,32986 90527,32983 90535,32978 90543,32974 90551,32969 90558,32964 90565,32958 90572,32952 90579,32946 90586,32939 90591,32932 90597,32925 90603,32917 90607,32909 90612,32901 90616,32893 90620,32885 90623,32876 90626,32867 90628,32859 90630,32850 90632,32841 90633,32831 90634,32822 90634,32813 90634,30687 90634,30678 90633,30669 90632,30660 90630,30650 90628,30641 90626,30633 90623,30624 90620,30615 90616,30607 90612,30599 90607,30591 90603,30583 90597,30575 90591,30568 90586,30561 90579,30554 90572,30548 90565,30542 90558,30536 90551,30531 90543,30526 90535,30522 90527,30518 90518,30514 90510,30511 90501,30508 90492,30505 90483,30503 90474,30502 90465,30500 90456,30500 90447,30500 89153,30500 89144,30500 89135,30500 89126,30502 89117,30503 89108,30505 89099,30508 89090,30511 89082,30514 89073,30518 89065,30522 89057,30526 89049,30531 89042,30536 89034,30542 89027,30548 89021,30554 89014,30561 89009,30568 89003,30575 88997,30583 88993,30591 88988,30599 88984,30607 88980,30615 88977,30624 88974,30633 88972,30641 88970,30650 88968,30660 88967,30669 88966,30678 88966,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="89371" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 89601,31208 L 89875,31208 89887,31207 89899,31205 89911,31202 89923,31198 89934,31193 89944,31187 89954,31179 89963,31171 89972,31162 89979,31152 89985,31142 89990,31131 89995,31119 89998,31107 89999,31095 90000,31083 90000,31041 89999,31029 89998,31017 89995,31005 89990,30993 89985,30982 89979,30972 89972,30962 89963,30953 89954,30945 89944,30937 89934,30931 89923,30926 89911,30921 89899,30919 89887,30917 89875,30916 89601,30916 89601,31208 Z M 89371,31959 L 89601,31959 89601,31416 89896,31416 89912,31416 89928,31415 89945,31413 89961,31410 89977,31406 89993,31402 90008,31397 90023,31391 90038,31384 90053,31377 90067,31369 90081,31360 90094,31351 90107,31341 90120,31330 90132,31319 90143,31307 90153,31294 90164,31281 90173,31268 90182,31254 90190,31240 90197,31225 90204,31210 90210,31195 90215,31180 90219,31164 90223,31148 90226,31132 90228,31116 90229,31099 90229,31083 90229,31041 90229,31025 90228,31009 90226,30992 90223,30976 90219,30960 90215,30944 90210,30929 90204,30914 90197,30899 90190,30884 90182,30870 90173,30856 90164,30843 90153,30830 90143,30817 90132,30805 90120,30794 90107,30783 90094,30773 90081,30764 90067,30755 90053,30747 90038,30740 90023,30733 90008,30727 89993,30722 89977,30718 89961,30714 89945,30711 89928,30709 89912,30708 89896,30708 89371,30708 89371,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="89062" y="32258" width="1477" height="420"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 89832,32295 L 89828,32295 89824,32296 89821,32298 89818,32301 89815,32304 89813,32307 89812,32311 89812,32315 89812,32447 89812,32451 89813,32455 89815,32458 89818,32461 89821,32464 89824,32466 89828,32467 89832,32467 90040,32467 90044,32467 90047,32466 90051,32464 90054,32461 90056,32458 90058,32455 90059,32451 90060,32447 90060,32315 90059,32311 90058,32307 90056,32304 90054,32301 90051,32298 90047,32296 90044,32295 90040,32295 89832,32295 Z M 90091,32295 L 90087,32295 90084,32296 90080,32298 90077,32301 90075,32304 90073,32307 90071,32311 90071,32315 90071,32447 90071,32451 90073,32455 90075,32458 90077,32461 90080,32464 90084,32466 90087,32467 90091,32467 90299,32467 90303,32467 90307,32466 90310,32464 90314,32461 90316,32458 90318,32455 90319,32451 90319,32447 90319,32315 90319,32311 90318,32307 90316,32304 90314,32301 90310,32298 90307,32296 90303,32295 90299,32295 90091,32295 Z M 90351,32295 L 90347,32295 90344,32296 90340,32298 90337,32301 90334,32304 90332,32307 90331,32311 90331,32315 90331,32447 90331,32451 90332,32455 90334,32458 90337,32461 90340,32464 90344,32466 90347,32467 90351,32467 90506,32467 90510,32467 90513,32466 90517,32464 90520,32461 90522,32458 90524,32455 90525,32451 90526,32447 90526,32315 90525,32311 90524,32307 90522,32304 90520,32301 90517,32298 90513,32296 90509,32295 90505,32295 90351,32295 Z M 89312,32295 L 89308,32295 89304,32296 89301,32298 89298,32301 89295,32304 89293,32307 89292,32311 89292,32315 89292,32447 89292,32451 89293,32455 89295,32458 89298,32461 89301,32464 89304,32466 89308,32467 89312,32467 89520,32467 89524,32467 89528,32466 89531,32464 89534,32461 89537,32458 89539,32455 89540,32451 89540,32447 89540,32315 89540,32311 89539,32307 89537,32304 89534,32301 89531,32298 89528,32296 89524,32295 89520,32295 89312,32295 Z M 89174,32295 L 89171,32295 89168,32296 89166,32297 89163,32298 89161,32300 89158,32303 89157,32305 89156,32308 89109,32440 89108,32445 89108,32450 89109,32454 89111,32459 89114,32462 89118,32465 89123,32467 89128,32467 89260,32467 89264,32467 89267,32466 89271,32464 89274,32461 89276,32458 89278,32455 89279,32451 89280,32447 89280,32315 89279,32311 89278,32307 89276,32304 89274,32301 89271,32298 89267,32296 89264,32295 89260,32295 89174,32295 Z M 89572,32295 L 89568,32295 89564,32296 89561,32298 89558,32301 89555,32304 89553,32307 89552,32311 89552,32315 89552,32447 89552,32451 89553,32455 89555,32458 89558,32461 89561,32464 89564,32466 89568,32467 89572,32467 89780,32467 89784,32467 89787,32466 89791,32464 89794,32461 89797,32458 89798,32455 89800,32451 89800,32447 89800,32315 89800,32311 89798,32307 89797,32304 89794,32301 89791,32298 89787,32296 89784,32295 89780,32295 89572,32295 Z M 89182,32258 L 89173,32259 89165,32262 89158,32266 89151,32270 89145,32276 89140,32282 89136,32289 89133,32296 89095,32405 89067,32486 89064,32496 89063,32505 89062,32513 89064,32565 89081,32653 89082,32658 89084,32663 89087,32667 89091,32671 89095,32673 89100,32676 89105,32677 89110,32677 89182,32677 89184,32667 89187,32657 89190,32648 89195,32639 89200,32630 89206,32621 89213,32614 89221,32607 89229,32600 89237,32595 89247,32590 89256,32586 89266,32583 89276,32580 89286,32579 89297,32579 89307,32579 89317,32580 89327,32583 89337,32586 89347,32590 89356,32595 89364,32600 89372,32607 89380,32614 89387,32621 89393,32630 89398,32639 89403,32648 89407,32657 89410,32667 89412,32677 90166,32677 90168,32667 90171,32657 90175,32648 90179,32639 90185,32630 90191,32621 90198,32614 90205,32607 90213,32600 90222,32595 90231,32590 90241,32586 90250,32583 90261,32580 90271,32579 90281,32579 90291,32579 90302,32580 90312,32583 90321,32586 90331,32590 90340,32595 90349,32600 90357,32607 90364,32614 90371,32621 90377,32630 90383,32639 90387,32648 90391,32657 90394,32667 90396,32677 90503,32677 90506,32677 90510,32677 90513,32676 90516,32675 90519,32673 90522,32672 90525,32670 90527,32667 90530,32665 90532,32662 90534,32659 90535,32656 90536,32653 90537,32649 90538,32646 90538,32643 90538,32293 90538,32289 90537,32286 90536,32283 90535,32279 90534,32276 90532,32273 90530,32270 90527,32268 90525,32266 90522,32264 90519,32262 90516,32260 90513,32259 90510,32258 90506,32258 90503,32258 89182,32258 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="89196" y="32596" width="199" height="197"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 89331,32695 L 89330,32691 89330,32688 89329,32685 89328,32682 89327,32679 89325,32676 89323,32673 89321,32671 89318,32668 89315,32666 89312,32665 89309,32662 89306,32661 89303,32660 89300,32660 89296,32660 89293,32660 89290,32660 89287,32661 89283,32662 89280,32665 89277,32666 89275,32668 89272,32671 89270,32673 89268,32676 89266,32679 89265,32682 89264,32685 89263,32688 89262,32691 89262,32695 89262,32698 89263,32701 89264,32705 89265,32708 89266,32711 89268,32714 89270,32716 89272,32719 89275,32721 89277,32723 89280,32725 89283,32726 89287,32728 89290,32728 89293,32729 89296,32729 89300,32729 89303,32728 89306,32728 89309,32726 89312,32725 89315,32723 89318,32721 89321,32719 89323,32716 89325,32714 89327,32711 89328,32708 89329,32705 89330,32701 89330,32698 89331,32695 Z M 89394,32694 L 89394,32685 89392,32675 89390,32666 89387,32656 89383,32647 89378,32639 89372,32631 89365,32624 89358,32618 89351,32612 89342,32607 89334,32603 89325,32600 89315,32597 89306,32596 89296,32596 89287,32596 89277,32597 89268,32600 89259,32603 89250,32607 89242,32612 89234,32618 89227,32624 89221,32631 89215,32639 89209,32647 89205,32656 89202,32666 89199,32675 89198,32685 89197,32694 89198,32704 89199,32714 89202,32723 89205,32732 89209,32741 89215,32749 89221,32756 89227,32764 89234,32770 89242,32776 89250,32781 89259,32785 89268,32788 89277,32790 89287,32792 89296,32792 89306,32792 89315,32790 89325,32788 89334,32785 89342,32781 89351,32776 89358,32770 89365,32764 89372,32756 89378,32749 89383,32741 89387,32732 89390,32723 89392,32714 89394,32704 89394,32694 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="90181" y="32596" width="199" height="197"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 90315,32695 L 90315,32691 90314,32688 90314,32685 90313,32682 90311,32679 90309,32676 90307,32673 90305,32671 90303,32668 90300,32666 90297,32665 90294,32662 90291,32661 90288,32660 90284,32660 90281,32660 90278,32660 90274,32660 90271,32661 90268,32662 90265,32665 90262,32666 90259,32668 90257,32671 90254,32673 90253,32676 90251,32679 90249,32682 90248,32685 90247,32688 90247,32691 90247,32695 90247,32698 90247,32701 90248,32705 90249,32708 90251,32711 90253,32714 90254,32716 90257,32719 90259,32721 90262,32723 90265,32725 90268,32726 90271,32728 90274,32728 90278,32729 90281,32729 90284,32729 90288,32728 90291,32728 90294,32726 90297,32725 90300,32723 90303,32721 90305,32719 90307,32716 90309,32714 90311,32711 90313,32708 90314,32705 90314,32701 90315,32698 90315,32695 Z M 90379,32694 L 90378,32685 90377,32675 90374,32666 90371,32656 90367,32647 90362,32639 90356,32631 90350,32624 90343,32618 90335,32612 90327,32607 90318,32603 90309,32600 90300,32597 90290,32596 90281,32596 90271,32596 90262,32597 90253,32600 90243,32603 90235,32607 90227,32612 90219,32618 90212,32624 90205,32631 90199,32639 90195,32647 90190,32656 90186,32666 90184,32675 90182,32685 90182,32694 90182,32704 90184,32714 90186,32723 90190,32732 90195,32741 90199,32749 90205,32756 90212,32764 90219,32770 90227,32776 90235,32781 90243,32785 90253,32788 90262,32790 90271,32792 90281,32792 90290,32792 90300,32790 90309,32788 90318,32785 90327,32781 90335,32776 90343,32770 90350,32764 90356,32756 90362,32749 90367,32741 90371,32732 90374,32723 90377,32714 90378,32704 90379,32694 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 15 KiB |
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.69mm" height="25.02mm" viewBox="91166 30500 1669 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="91166" y="30500" width="1669" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 91166,30687 L 91166,32813 91166,32822 91167,32831 91168,32841 91170,32850 91172,32859 91174,32867 91177,32876 91180,32885 91184,32893 91188,32901 91193,32909 91197,32917 91203,32925 91209,32932 91214,32939 91221,32946 91227,32952 91234,32958 91242,32964 91249,32969 91257,32974 91265,32978 91273,32983 91282,32986 91290,32990 91299,32992 91308,32995 91317,32997 91326,32999 91335,33000 91344,33000 91353,33001 92647,33001 92656,33000 92665,33000 92674,32999 92683,32997 92692,32995 92701,32992 92710,32990 92718,32986 92727,32983 92735,32978 92743,32974 92751,32969 92758,32964 92766,32958 92772,32952 92779,32946 92786,32939 92792,32932 92797,32925 92803,32917 92807,32909 92812,32901 92816,32893 92820,32885 92823,32876 92826,32867 92828,32859 92830,32850 92832,32841 92833,32831 92834,32822 92834,32813 92834,30687 92834,30678 92833,30669 92832,30660 92830,30650 92828,30641 92826,30633 92823,30624 92820,30615 92816,30607 92812,30599 92807,30591 92803,30583 92797,30575 92792,30568 92786,30561 92779,30554 92772,30548 92766,30542 92758,30536 92751,30531 92743,30526 92735,30522 92727,30518 92718,30514 92710,30511 92701,30508 92692,30505 92683,30503 92674,30502 92665,30500 92656,30500 92647,30500 91353,30500 91344,30500 91335,30500 91326,30502 91317,30503 91308,30505 91299,30508 91290,30511 91282,30514 91273,30518 91265,30522 91257,30526 91249,30531 91242,30536 91234,30542 91227,30548 91221,30554 91214,30561 91209,30568 91203,30575 91197,30583 91193,30591 91188,30599 91184,30607 91180,30615 91177,30624 91174,30633 91172,30641 91170,30650 91168,30660 91167,30669 91166,30678 91166,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="91571" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 91800,31208 L 92074,31208 92086,31207 92098,31205 92110,31202 92122,31198 92134,31193 92144,31187 92154,31179 92163,31171 92172,31162 92179,31152 92185,31142 92190,31131 92195,31119 92198,31107 92199,31095 92200,31083 92200,31041 92199,31029 92198,31017 92195,31005 92190,30993 92185,30982 92179,30972 92172,30962 92163,30953 92154,30945 92144,30937 92134,30931 92122,30926 92110,30921 92098,30919 92086,30917 92074,30916 91800,30916 91800,31208 Z M 91571,31959 L 91800,31959 91800,31416 92095,31416 92111,31416 92127,31415 92145,31413 92161,31410 92177,31406 92193,31402 92208,31397 92223,31391 92238,31384 92253,31377 92267,31369 92281,31360 92294,31351 92307,31341 92320,31330 92332,31319 92343,31307 92353,31294 92364,31281 92373,31268 92382,31254 92390,31240 92397,31225 92404,31210 92410,31195 92415,31180 92419,31164 92423,31148 92426,31132 92428,31116 92429,31099 92429,31083 92429,31041 92429,31025 92428,31009 92426,30992 92423,30976 92419,30960 92415,30944 92410,30929 92404,30914 92397,30899 92390,30884 92382,30870 92373,30856 92364,30843 92353,30830 92343,30817 92332,30805 92320,30794 92307,30783 92294,30773 92281,30764 92267,30755 92253,30747 92238,30740 92223,30733 92208,30727 92193,30722 92177,30718 92161,30714 92145,30711 92127,30709 92111,30708 92095,30708 91571,30708 91571,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="91249" y="32691" width="1503" height="102"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 91249,32754 L 91547,32754 91656,32691 92751,32691 92751,32792 91249,32792 91249,32754 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="91680" y="32355" width="1041" height="340"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 92706,32655 L 92704,32647 92704,32640 92703,32633 92703,32626 92704,32619 92705,32612 92707,32605 92709,32598 92711,32589 92713,32580 92715,32572 92717,32563 92718,32554 92719,32545 92719,32535 92720,32526 92719,32516 92719,32507 92718,32498 92717,32489 92715,32480 92713,32471 92711,32463 92709,32454 92707,32448 92706,32443 92705,32437 92704,32431 92704,32425 92704,32419 92704,32414 92705,32408 92706,32400 92705,32392 92704,32384 92701,32377 92696,32372 92691,32368 92686,32364 92680,32361 92673,32359 92667,32357 92660,32356 92653,32355 92646,32356 92640,32357 92633,32359 92627,32361 92621,32364 92615,32368 92610,32372 92605,32377 92603,32381 92602,32385 92601,32390 92601,32394 92600,32399 92601,32403 92601,32408 92602,32412 92602,32463 92586,32463 92586,32510 92295,32510 92290,32509 92284,32508 92279,32506 92274,32504 92269,32501 92264,32498 92260,32495 92256,32491 92251,32485 92244,32480 92238,32476 92231,32472 92223,32470 92216,32468 92208,32467 92200,32466 92192,32467 92184,32468 92177,32470 92169,32472 92162,32476 92156,32480 92150,32485 92144,32491 92140,32495 92136,32498 92131,32501 92126,32504 92121,32506 92116,32508 92111,32509 92105,32510 91813,32510 91813,32463 91798,32463 91798,32412 91798,32408 91799,32403 91799,32399 91798,32394 91798,32390 91797,32385 91796,32381 91794,32377 91789,32372 91784,32368 91778,32364 91772,32361 91766,32359 91760,32357 91753,32356 91746,32355 91739,32356 91733,32357 91726,32359 91720,32361 91714,32364 91708,32368 91703,32372 91698,32377 91695,32384 91694,32392 91693,32400 91694,32408 91695,32414 91695,32419 91695,32425 91695,32431 91694,32437 91693,32443 91692,32448 91691,32454 91688,32463 91686,32471 91684,32480 91682,32489 91681,32498 91680,32507 91680,32516 91680,32526 91680,32535 91680,32545 91681,32554 91682,32563 91684,32572 91686,32580 91688,32589 91691,32598 91692,32605 91694,32612 91695,32619 91696,32626 91696,32633 91696,32640 91695,32647 91694,32655 91694,32658 91694,32661 91695,32664 91696,32667 91697,32670 91699,32673 91701,32675 91703,32677 91708,32681 91712,32684 91717,32687 91723,32690 91729,32692 91734,32693 91740,32694 91746,32694 91752,32694 91758,32693 91764,32692 91769,32690 91775,32687 91780,32684 91785,32681 91789,32677 91792,32674 91795,32670 91797,32666 91798,32662 91799,32658 91799,32653 91799,32649 91798,32644 91798,32589 91813,32589 91813,32542 92105,32542 92111,32543 92116,32544 92121,32546 92126,32548 92131,32551 92136,32554 92140,32557 92144,32561 92150,32567 92156,32572 92162,32576 92169,32579 92177,32582 92184,32584 92192,32585 92200,32586 92208,32585 92216,32584 92223,32582 92231,32579 92238,32576 92244,32572 92251,32567 92256,32561 92260,32557 92264,32554 92269,32551 92274,32548 92279,32546 92284,32544 92290,32543 92295,32542 92586,32542 92586,32589 92602,32589 92601,32644 92600,32649 92600,32653 92600,32658 92601,32662 92602,32666 92604,32670 92607,32674 92610,32677 92615,32681 92620,32684 92625,32687 92630,32690 92636,32692 92641,32693 92647,32694 92653,32694 92659,32694 92665,32693 92671,32692 92676,32690 92682,32687 92687,32684 92692,32681 92696,32677 92698,32675 92700,32673 92702,32670 92703,32667 92704,32664 92705,32661 92706,32658 92706,32655 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.69mm" height="25.02mm" viewBox="93466 30500 1669 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="93466" y="30500" width="1669" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 93466,30687 L 93466,32813 93466,32822 93467,32831 93468,32841 93470,32850 93472,32859 93474,32867 93477,32876 93480,32885 93484,32893 93488,32901 93493,32909 93498,32917 93503,32925 93508,32932 93514,32939 93521,32946 93527,32952 93534,32958 93542,32964 93549,32969 93557,32974 93565,32978 93573,32983 93582,32986 93590,32990 93599,32992 93608,32995 93617,32997 93626,32999 93635,33000 93644,33000 93653,33001 94947,33001 94956,33000 94965,33000 94974,32999 94983,32997 94992,32995 95001,32992 95010,32990 95018,32986 95027,32983 95035,32978 95043,32974 95051,32969 95058,32964 95066,32958 95072,32952 95079,32946 95086,32939 95091,32932 95097,32925 95102,32917 95107,32909 95112,32901 95116,32893 95120,32885 95123,32876 95126,32867 95128,32859 95130,32850 95132,32841 95133,32831 95134,32822 95134,32813 95134,30687 95134,30678 95133,30669 95132,30660 95130,30650 95128,30641 95126,30633 95123,30624 95120,30615 95116,30607 95112,30599 95107,30591 95102,30583 95097,30575 95091,30568 95086,30561 95079,30554 95072,30548 95066,30542 95058,30536 95051,30531 95043,30526 95035,30522 95027,30518 95018,30514 95010,30511 95001,30508 94992,30505 94983,30503 94974,30502 94965,30500 94956,30500 94947,30500 93653,30500 93644,30500 93635,30500 93626,30502 93617,30503 93608,30505 93599,30508 93590,30511 93582,30514 93573,30518 93565,30522 93557,30526 93549,30531 93542,30536 93534,30542 93527,30548 93521,30554 93514,30561 93508,30568 93503,30575 93498,30583 93493,30591 93488,30599 93484,30607 93480,30615 93477,30624 93474,30633 93472,30641 93470,30650 93468,30660 93467,30669 93466,30678 93466,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="93871" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 94100,31208 L 94374,31208 94386,31207 94398,31205 94410,31202 94422,31198 94433,31193 94443,31187 94453,31179 94462,31171 94471,31162 94478,31152 94484,31142 94489,31131 94494,31119 94497,31107 94498,31095 94499,31083 94499,31041 94498,31029 94497,31017 94494,31005 94489,30993 94484,30982 94478,30972 94471,30962 94462,30953 94453,30945 94443,30937 94433,30931 94422,30926 94410,30921 94398,30919 94386,30917 94374,30916 94100,30916 94100,31208 Z M 93871,31959 L 94100,31959 94100,31416 94395,31416 94411,31416 94427,31415 94444,31413 94460,31410 94476,31406 94492,31402 94507,31397 94522,31391 94537,31384 94552,31377 94566,31369 94580,31360 94593,31351 94606,31341 94619,31330 94630,31319 94642,31307 94653,31294 94663,31281 94672,31268 94681,31254 94689,31240 94696,31225 94704,31210 94710,31195 94715,31180 94719,31164 94723,31148 94726,31132 94728,31116 94729,31099 94729,31083 94729,31041 94729,31025 94728,31009 94726,30992 94723,30976 94719,30960 94715,30944 94710,30929 94704,30914 94696,30899 94689,30884 94681,30870 94672,30856 94663,30843 94653,30830 94642,30817 94630,30805 94619,30794 94606,30783 94593,30773 94580,30764 94566,30755 94552,30747 94537,30740 94522,30733 94507,30727 94492,30722 94476,30718 94460,30714 94444,30711 94427,30709 94411,30708 94395,30708 93871,30708 93871,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="93549" y="32691" width="1504" height="102"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 95051,32792 L 93549,32792 93549,32754 94251,32754 94360,32691 95051,32691 95051,32792 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="93776" y="32356" width="1039" height="399"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 94809,32650 L 94807,32643 94806,32636 94805,32629 94805,32622 94805,32615 94805,32608 94806,32600 94808,32593 94810,32585 94811,32576 94813,32567 94814,32558 94814,32549 94814,32540 94814,32530 94814,32521 94813,32512 94812,32503 94811,32494 94809,32486 94807,32477 94804,32468 94801,32459 94798,32451 94796,32445 94795,32440 94794,32434 94793,32428 94792,32423 94792,32417 94792,32411 94792,32405 94792,32397 94791,32389 94789,32382 94786,32374 94781,32370 94775,32366 94770,32363 94763,32360 94757,32358 94750,32357 94743,32356 94737,32356 94730,32357 94723,32358 94717,32361 94711,32363 94705,32367 94699,32371 94694,32376 94690,32381 94689,32385 94688,32389 94687,32394 94687,32398 94687,32403 94687,32407 94688,32412 94689,32416 94692,32467 94677,32468 94680,32514 94389,32534 94384,32533 94378,32533 94373,32531 94368,32529 94363,32527 94358,32524 94354,32521 94349,32517 94343,32512 94337,32508 94330,32504 94323,32501 94315,32499 94308,32497 94300,32496 94292,32496 94284,32497 94276,32499 94269,32502 94262,32505 94255,32509 94249,32514 94243,32519 94237,32525 94234,32529 94230,32533 94225,32536 94221,32539 94216,32542 94211,32544 94205,32545 94200,32546 93910,32565 93907,32519 93891,32520 93887,32469 93888,32465 93888,32460 93888,32456 93887,32451 93887,32447 93885,32442 93884,32438 93882,32434 93877,32429 93871,32426 93865,32422 93859,32420 93853,32418 93845,32416 93838,32416 93831,32416 93825,32417 93818,32418 93812,32420 93806,32423 93800,32427 93794,32431 93789,32435 93785,32440 93783,32448 93782,32456 93782,32464 93783,32472 93784,32477 93785,32483 93785,32489 93786,32495 93785,32501 93785,32506 93784,32512 93783,32518 93781,32527 93779,32536 93778,32545 93777,32554 93776,32563 93776,32572 93776,32581 93776,32590 93777,32599 93778,32608 93780,32617 93782,32626 93784,32635 93786,32643 93789,32652 93792,32661 93794,32667 93796,32674 93798,32681 93799,32688 93800,32695 93800,32703 93799,32710 93799,32717 93799,32720 93800,32723 93800,32726 93802,32729 93803,32732 93805,32734 93807,32737 93810,32739 93814,32742 93819,32745 93825,32748 93830,32750 93836,32752 93842,32754 93848,32754 93855,32754 93861,32752 93866,32751 93872,32749 93878,32747 93883,32744 93888,32741 93892,32737 93897,32733 93899,32730 93902,32726 93904,32722 93905,32718 93905,32713 93905,32709 93904,32704 93903,32700 93899,32645 93915,32644 93912,32597 94202,32578 94208,32578 94213,32579 94218,32580 94224,32582 94229,32584 94233,32587 94238,32590 94242,32594 94248,32599 94254,32604 94261,32607 94269,32611 94276,32613 94284,32614 94292,32615 94300,32615 94307,32614 94315,32612 94323,32610 94330,32607 94337,32602 94343,32598 94349,32592 94354,32587 94358,32582 94362,32579 94366,32575 94371,32572 94376,32570 94381,32568 94386,32566 94391,32565 94682,32546 94685,32593 94701,32592 94704,32647 94703,32651 94703,32656 94704,32660 94705,32665 94706,32669 94709,32673 94712,32676 94715,32679 94720,32683 94725,32686 94730,32688 94736,32690 94741,32692 94747,32693 94753,32693 94759,32693 94765,32692 94770,32691 94776,32690 94782,32687 94787,32685 94792,32681 94796,32678 94801,32674 94803,32671 94805,32669 94806,32666 94807,32663 94808,32660 94809,32656 94809,32653 94809,32650 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.69mm" height="25.02mm" viewBox="95666 30500 1669 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="95666" y="30500" width="1669" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 95666,30687 L 95666,32813 95666,32822 95667,32831 95668,32841 95670,32850 95672,32859 95674,32867 95677,32876 95680,32885 95684,32893 95688,32901 95693,32909 95697,32917 95703,32925 95708,32932 95714,32939 95721,32946 95727,32952 95734,32958 95742,32964 95749,32969 95757,32974 95765,32978 95773,32983 95782,32986 95790,32990 95799,32992 95808,32995 95817,32997 95826,32999 95835,33000 95844,33000 95854,33000 97147,33000 97156,33000 97165,33000 97174,32999 97183,32997 97192,32995 97201,32992 97210,32990 97218,32986 97227,32983 97235,32978 97243,32974 97251,32969 97258,32964 97266,32958 97272,32952 97279,32946 97286,32939 97292,32932 97297,32925 97302,32917 97307,32909 97312,32901 97316,32893 97320,32885 97323,32876 97326,32867 97328,32859 97330,32850 97332,32841 97333,32831 97334,32822 97334,32813 97334,30687 97334,30678 97333,30669 97332,30660 97330,30650 97328,30641 97326,30633 97323,30624 97320,30615 97316,30607 97312,30599 97307,30591 97302,30583 97297,30575 97292,30568 97286,30561 97279,30554 97272,30548 97266,30542 97258,30536 97251,30531 97243,30526 97235,30522 97227,30518 97218,30514 97210,30511 97201,30508 97192,30505 97183,30503 97174,30502 97165,30500 97156,30500 97147,30500 95854,30500 95844,30500 95835,30500 95826,30502 95817,30503 95808,30505 95799,30508 95790,30511 95782,30514 95773,30518 95765,30522 95757,30526 95749,30531 95742,30536 95734,30542 95727,30548 95721,30554 95714,30561 95708,30568 95703,30575 95697,30583 95693,30591 95688,30599 95684,30607 95680,30615 95677,30624 95674,30633 95672,30641 95670,30650 95668,30660 95667,30669 95666,30678 95666,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="95749" y="32691" width="1503" height="102"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 97140,32691 L 97223,32792 97251,32760 97194,32691 97251,32691 97251,32792 95749,32792 95749,32754 96823,32754 96852,32738 96834,32760 96861,32792 96944,32691 97140,32691 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="95770" y="32418" width="1041" height="340"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 96796,32717 L 96795,32710 96794,32703 96794,32696 96794,32689 96795,32682 96796,32674 96797,32668 96799,32661 96802,32652 96804,32643 96806,32634 96807,32625 96809,32615 96809,32606 96810,32597 96810,32588 96810,32579 96809,32570 96809,32561 96808,32552 96806,32543 96804,32534 96802,32525 96799,32517 96798,32511 96797,32505 96796,32499 96795,32494 96795,32488 96795,32482 96795,32476 96796,32470 96797,32463 96796,32455 96795,32447 96792,32439 96787,32435 96782,32430 96776,32427 96770,32424 96764,32421 96757,32419 96751,32418 96744,32418 96737,32418 96730,32419 96724,32421 96718,32424 96711,32427 96706,32430 96700,32434 96696,32439 96694,32443 96693,32448 96692,32452 96691,32457 96691,32461 96691,32466 96692,32470 96693,32475 96693,32525 96677,32525 96677,32572 96386,32572 96380,32571 96375,32570 96370,32569 96365,32566 96360,32564 96355,32561 96351,32557 96347,32553 96341,32548 96335,32543 96329,32539 96321,32535 96314,32532 96306,32530 96299,32529 96291,32529 96283,32529 96275,32530 96267,32532 96260,32535 96253,32538 96246,32543 96240,32548 96235,32553 96231,32557 96226,32561 96222,32564 96217,32566 96212,32569 96207,32570 96201,32571 96196,32572 95904,32572 95904,32525 95888,32525 95888,32474 95889,32470 95889,32465 95889,32461 95889,32456 95889,32452 95888,32448 95887,32443 95885,32439 95880,32434 95875,32430 95869,32426 95863,32423 95857,32421 95850,32419 95844,32418 95837,32418 95830,32418 95823,32419 95817,32421 95810,32423 95804,32426 95799,32430 95793,32434 95789,32439 95786,32447 95785,32454 95784,32462 95785,32470 95786,32476 95786,32482 95786,32488 95786,32493 95785,32499 95784,32505 95783,32511 95781,32516 95779,32525 95777,32534 95775,32543 95773,32552 95772,32561 95771,32570 95770,32579 95770,32588 95770,32597 95771,32606 95772,32615 95773,32625 95775,32634 95776,32643 95779,32652 95781,32660 95783,32667 95785,32674 95786,32681 95786,32688 95786,32695 95786,32703 95785,32710 95784,32717 95784,32720 95785,32723 95785,32726 95786,32729 95788,32732 95789,32735 95791,32737 95794,32740 95798,32743 95803,32747 95808,32750 95814,32752 95819,32754 95825,32755 95831,32756 95837,32756 95843,32756 95848,32755 95854,32754 95860,32752 95865,32750 95870,32747 95875,32743 95880,32740 95883,32736 95885,32733 95887,32729 95889,32724 95890,32720 95890,32716 95889,32711 95889,32707 95888,32651 95904,32651 95904,32604 96196,32604 96201,32604 96207,32605 96212,32607 96217,32609 96222,32612 96226,32615 96231,32620 96235,32624 96240,32629 96246,32634 96253,32638 96260,32642 96267,32645 96275,32647 96283,32648 96291,32648 96299,32648 96306,32647 96314,32645 96321,32642 96328,32638 96335,32634 96341,32629 96347,32624 96351,32620 96355,32615 96360,32612 96365,32609 96370,32607 96375,32606 96380,32604 96386,32604 96677,32604 96677,32652 96692,32652 96692,32707 96691,32711 96691,32716 96691,32720 96692,32725 96693,32729 96695,32733 96698,32737 96701,32740 96705,32744 96710,32747 96715,32750 96721,32752 96726,32754 96732,32756 96738,32757 96744,32757 96750,32757 96756,32756 96761,32754 96767,32752 96772,32750 96777,32747 96782,32744 96787,32740 96789,32738 96791,32735 96793,32732 96794,32730 96795,32727 96796,32724 96796,32720 96796,32717 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="96071" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 96300,31208 L 96575,31208 96587,31207 96599,31205 96611,31202 96623,31198 96634,31193 96644,31187 96654,31179 96663,31171 96672,31162 96679,31152 96685,31142 96690,31131 96694,31119 96698,31107 96699,31095 96700,31083 96700,31041 96699,31029 96698,31017 96694,31005 96690,30993 96685,30982 96679,30972 96672,30962 96663,30953 96654,30945 96644,30937 96634,30931 96623,30926 96611,30921 96599,30919 96587,30917 96575,30916 96300,30916 96300,31208 Z M 96071,31959 L 96300,31959 96300,31416 96596,31416 96612,31416 96628,31415 96645,31413 96661,31410 96677,31406 96693,31402 96708,31397 96723,31391 96738,31384 96753,31377 96767,31369 96781,31360 96794,31351 96807,31341 96820,31330 96832,31319 96843,31307 96853,31294 96864,31281 96873,31268 96882,31254 96890,31240 96897,31225 96904,31210 96910,31195 96915,31180 96919,31164 96923,31148 96926,31132 96928,31116 96929,31099 96929,31083 96929,31041 96929,31025 96928,31009 96926,30992 96923,30976 96919,30960 96915,30944 96910,30929 96904,30914 96897,30899 96890,30884 96882,30870 96873,30856 96864,30843 96853,30830 96843,30817 96832,30805 96820,30794 96807,30783 96794,30773 96781,30764 96767,30755 96753,30747 96738,30740 96723,30733 96708,30727 96693,30722 96677,30718 96661,30714 96645,30711 96628,30709 96612,30708 96596,30708 96071,30708 96071,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="96833" y="32291" width="419" height="502"/>
|
||||
<path fill="rgb(255,0,0)" stroke="none" d="M 97014,32541 L 96833,32760 96860,32792 97041,32574 97223,32792 97251,32760 97068,32541 97251,32324 97223,32291 97041,32509 96860,32291 96833,32324 97014,32541 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 11 KiB |
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="16.69mm" height="25.02mm" viewBox="97866 30500 1669 2502" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
||||
</g>
|
||||
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
||||
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="97866" y="30500" width="1669" height="2502"/>
|
||||
<path fill="rgb(0,0,255)" stroke="none" d="M 97866,30687 L 97866,32813 97866,32822 97867,32831 97868,32841 97870,32850 97872,32859 97874,32867 97877,32876 97880,32885 97884,32893 97888,32901 97893,32909 97897,32917 97903,32925 97908,32932 97914,32939 97921,32946 97927,32952 97934,32958 97942,32964 97949,32969 97957,32974 97965,32978 97973,32983 97982,32986 97990,32990 97999,32992 98008,32995 98017,32997 98026,32999 98035,33000 98044,33000 98053,33001 99347,33001 99356,33000 99365,33000 99374,32999 99383,32997 99392,32995 99401,32992 99410,32990 99418,32986 99427,32983 99435,32978 99443,32974 99451,32969 99458,32964 99466,32958 99472,32952 99479,32946 99486,32939 99492,32932 99497,32925 99502,32917 99507,32909 99512,32901 99516,32893 99520,32885 99523,32876 99526,32867 99528,32859 99530,32850 99532,32841 99533,32831 99534,32822 99534,32813 99534,30687 99534,30678 99533,30669 99532,30660 99530,30651 99528,30642 99526,30633 99523,30624 99520,30615 99516,30607 99512,30599 99507,30591 99502,30583 99497,30575 99492,30568 99486,30561 99479,30554 99472,30548 99466,30542 99458,30536 99451,30531 99443,30526 99435,30522 99427,30518 99418,30514 99410,30511 99401,30508 99392,30505 99383,30503 99374,30502 99365,30500 99356,30500 99347,30500 98053,30500 98044,30500 98035,30500 98026,30502 98017,30503 98008,30505 97999,30508 97990,30511 97982,30514 97973,30518 97965,30522 97957,30526 97949,30531 97942,30536 97934,30542 97927,30548 97921,30554 97914,30561 97908,30568 97903,30575 97897,30583 97893,30591 97888,30599 97884,30607 97880,30615 97877,30624 97874,30633 97872,30642 97870,30651 97868,30660 97867,30669 97866,30678 97866,30687 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="98081" y="32154" width="1240" height="524"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 99101,32314 L 98898,32314 98898,32427 99101,32427 99101,32314 Z M 98286,32262 L 98454,32262 98454,32179 98286,32179 98286,32262 Z M 98348,32364 L 98259,32493 98454,32493 98454,32364 98348,32364 Z M 98610,32658 L 98797,32658 98797,32314 98610,32314 98610,32658 Z M 98093,32677 L 98210,32677 98213,32667 98216,32658 98220,32648 98225,32640 98230,32631 98237,32623 98244,32616 98251,32610 98259,32604 98268,32598 98277,32594 98286,32590 98295,32587 98305,32585 98315,32584 98325,32583 98335,32584 98345,32585 98355,32587 98365,32590 98374,32594 98383,32598 98391,32604 98399,32610 98407,32616 98414,32623 98420,32631 98427,32640 98431,32648 98435,32658 98439,32667 98441,32677 98893,32677 98895,32667 98898,32658 98902,32648 98907,32640 98913,32631 98919,32623 98926,32616 98933,32610 98942,32604 98950,32598 98959,32594 98968,32590 98978,32587 98988,32585 98998,32584 99008,32583 99018,32584 99028,32585 99037,32587 99047,32590 99056,32594 99065,32598 99074,32604 99082,32610 99089,32616 99096,32623 99102,32631 99108,32640 99113,32648 99117,32658 99120,32667 99123,32677 99203,32677 99320,32621 99320,32182 98984,32182 98923,32154 98175,32154 98099,32225 98093,32232 98088,32240 98085,32249 98082,32257 98081,32266 98081,32275 98082,32284 98084,32293 98086,32298 98089,32302 98093,32306 98097,32309 98102,32311 98106,32313 98111,32314 98117,32314 98454,32314 98454,32341 98336,32341 98232,32492 98093,32534 98093,32677 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="98271" y="30708" width="859" height="1252"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 98500,31208 L 98774,31208 98786,31207 98798,31205 98810,31202 98822,31198 98833,31193 98843,31187 98853,31180 98862,31171 98871,31162 98878,31152 98884,31142 98889,31131 98893,31119 98897,31107 98898,31095 98899,31083 98899,31041 98898,31029 98897,31017 98893,31005 98889,30993 98884,30982 98878,30972 98871,30962 98862,30953 98853,30945 98843,30937 98833,30931 98822,30926 98810,30921 98798,30919 98786,30917 98774,30916 98500,30916 98500,31208 Z M 98271,31959 L 98500,31959 98500,31416 98795,31416 98811,31416 98827,31415 98844,31413 98860,31410 98876,31406 98892,31402 98907,31397 98922,31391 98937,31384 98952,31377 98966,31369 98980,31360 98994,31351 99007,31341 99020,31330 99032,31319 99043,31307 99054,31294 99064,31281 99073,31268 99082,31254 99090,31240 99097,31225 99104,31210 99110,31195 99115,31180 99119,31164 99123,31148 99126,31132 99128,31116 99129,31099 99129,31083 99129,31041 99129,31025 99128,31009 99126,30992 99123,30976 99119,30960 99115,30944 99110,30929 99104,30914 99097,30899 99090,30884 99082,30870 99073,30856 99064,30843 99054,30830 99043,30817 99032,30805 99020,30794 99007,30783 98994,30773 98980,30764 98966,30755 98952,30747 98937,30740 98922,30733 98907,30727 98892,30722 98876,30718 98860,30714 98844,30711 98827,30709 98811,30708 98795,30708 98271,30708 98271,31959 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="98233" y="32608" width="186" height="185"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 98418,32701 L 98417,32692 98416,32683 98414,32674 98411,32665 98407,32656 98402,32649 98397,32641 98391,32635 98384,32629 98377,32623 98369,32619 98360,32615 98352,32612 98343,32610 98334,32608 98325,32608 98316,32608 98307,32610 98299,32612 98290,32615 98282,32619 98274,32623 98267,32629 98260,32635 98254,32641 98249,32649 98244,32656 98240,32665 98237,32674 98235,32683 98234,32692 98233,32701 98234,32710 98235,32718 98237,32727 98240,32736 98244,32744 98249,32752 98254,32759 98260,32765 98267,32771 98274,32777 98282,32781 98290,32785 98299,32788 98307,32790 98316,32792 98325,32792 98334,32792 98343,32790 98352,32788 98360,32785 98369,32781 98377,32777 98384,32771 98391,32765 98397,32759 98402,32752 98407,32744 98411,32736 98414,32727 98416,32718 98417,32710 98418,32701 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.PolyPolygonShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="98915" y="32608" width="185" height="185"/>
|
||||
<path fill="rgb(255,255,255)" stroke="none" d="M 99099,32701 L 99099,32692 99098,32683 99094,32674 99091,32664 99087,32656 99083,32649 99078,32641 99071,32635 99065,32629 99058,32623 99050,32619 99042,32615 99033,32612 99025,32610 99016,32608 99007,32608 98998,32608 98989,32610 98980,32612 98972,32615 98963,32619 98956,32623 98948,32629 98942,32635 98936,32641 98930,32649 98926,32656 98922,32664 98919,32674 98917,32683 98916,32692 98915,32701 98916,32710 98917,32718 98919,32727 98922,32736 98926,32744 98930,32752 98936,32759 98942,32765 98948,32771 98956,32777 98963,32781 98972,32785 98980,32788 98989,32790 98998,32792 99007,32792 99016,32792 99025,32790 99033,32788 99042,32785 99050,32781 99058,32777 99065,32771 99071,32765 99078,32759 99083,32752 99087,32744 99091,32736 99094,32727 99098,32718 99099,32710 99099,32701 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After (image error) Size: 10 KiB |
After (image error) Size: 19 KiB |
152
assets/layers/traffic_sign/images/be/E/license_info.json
Normal file
|
@ -0,0 +1,152 @@
|
|||
[
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E1.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E1.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E11.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E11.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E3.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E3.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E5.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E5.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E7.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E7.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9a.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9a.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9a_Parkeerschijf.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9a_Parkeerschijf.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9b.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9b.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9c.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9c.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9d.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9d.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9e.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9e.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9f.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9f.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9g.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9g.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9h.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9h.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "Belgian_traffic_sign_E9i.svg",
|
||||
"license": "Public domain",
|
||||
"authors": [
|
||||
"Userc11"
|
||||
],
|
||||
"sources": [
|
||||
"https://commons.wikimedia.org/wiki/File:Belgian_traffic_sign_E9i.svg"
|
||||
]
|
||||
}
|
||||
]
|
|
@ -0,0 +1,198 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="102.13px" height="102.25px" viewBox="0 0 102.13 102.25" enable-background="new 0 0 102.13 102.25" xml:space="preserve">
|
||||
<path fill="#0071B3" d="M7.576,0h87.059c4.129,0.04,7.495,3.407,7.495,7.575v87.22c0,4.089-3.366,7.455-7.454,7.455H7.536
|
||||
C3.367,102.25,0,98.924,0,94.835V7.575C0,3.407,3.367,0.04,7.536,0.04L7.576,0z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M7.576,0h87.059
|
||||
c4.129,0.04,7.495,3.407,7.495,7.575v87.22c0,4.089-3.366,7.455-7.454,7.455H7.536C3.367,102.25,0,98.924,0,94.835V7.575
|
||||
C0,3.407,3.367,0.04,7.536,0.04L7.576,0z"/>
|
||||
<path fill="#FFFFFF" d="M7.496,1.844l87.139,0.04c3.087,0,5.651,2.565,5.651,5.691v87.26c0,3.087-2.564,5.652-5.651,5.652
|
||||
l-87.54-0.12c-2.926,0-5.211-2.405-5.211-5.291L1.804,7.535C1.804,4.409,4.369,1.844,7.496,1.844z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M7.496,1.844l87.139,0.04
|
||||
c3.087,0,5.651,2.565,5.651,5.691v87.26c0,3.087-2.564,5.652-5.651,5.652l-87.54-0.12c-2.926,0-5.211-2.405-5.211-5.291L1.804,7.535
|
||||
C1.804,4.409,4.369,1.844,7.496,1.844z"/>
|
||||
<path fill="#0071B3" d="M7.496,3.567l87.139,0.04c2.165,0,3.969,1.804,3.969,3.968v87.26c0,2.165-1.804,3.969-3.969,3.969H7.496
|
||||
c-2.165,0-3.969-1.804-3.969-3.969v-87.3C3.527,5.371,5.331,3.567,7.496,3.567z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M7.496,3.567l87.139,0.04
|
||||
c2.165,0,3.969,1.804,3.969,3.968v87.26c0,2.165-1.804,3.969-3.969,3.969H7.496c-2.165,0-3.969-1.804-3.969-3.969v-87.3
|
||||
C3.527,5.371,5.331,3.567,7.496,3.567z"/>
|
||||
<path fill="#FFFFFF" d="M53.551,29.42l-5.973-9.339c-0.922-1.082-2.725-2.325-4.208-2.124v-1.644
|
||||
c1.042-0.481,1.763-1.523,1.763-2.767c0-1.643-1.282-3.006-2.966-3.006c-1.683,0-2.966,1.363-2.966,3.006
|
||||
c0,1.363,0.802,2.446,2.044,2.847v1.402c-1.643,0-5.772,1.123-5.772,5.291v8.818c0,0.722,0.562,1.283,1.283,1.283
|
||||
c0.722,0,1.323-0.562,1.323-1.283V23.77c0-0.321,0.2-0.522,0.521-0.522c0.321,0,0.561,0.201,0.561,0.522v23.448
|
||||
c0,0.721,0.561,1.322,1.323,1.322c0.721,0,1.322-0.602,1.322-1.322V34.512c0-0.441,0.361-0.803,0.802-0.803
|
||||
c0.481,0,0.802,0.361,0.802,0.803v15.632c0,0.721,0.601,1.362,1.363,1.362c0.721,0,1.362-0.642,1.362-1.362V22.928l4.931,7.855
|
||||
c0.439,0.722,0.962,0.601,1.523,0.441c0.44,1.603,0.721,2.564,1.803,2.604l3.447,0.241l-2.485,7.976h1.964v5.853
|
||||
c0,0.44,0.401,0.802,0.803,0.802c0.48,0,0.842-0.361,0.842-0.802v-5.933h1.121v4.811c0,0.441,0.401,0.842,0.922,0.842
|
||||
c0.441,0,0.843-0.4,0.843-0.842v-4.73h1.844l-1.724-6.612l2.285,2.484c0.199,0.2,0.521,0.2,0.721,0c0.201-0.2,0.32-0.4,0.08-0.842
|
||||
l-2.967-3.407c-0.68-0.641-1.041-1.082-1.803-1.242c-0.281-0.2-0.201-0.481-0.121-0.722c0.763-0.321,1.203-1.082,1.203-1.924
|
||||
c0-1.203-0.962-2.164-2.125-2.164c-1.201,0-2.203,0.961-2.203,2.164c0,0.962,0.681,1.764,1.563,2.044
|
||||
c0.04,0.281,0.08,0.722-0.24,0.882h-2.926c-0.521,0-0.682-0.04-1.043-0.44c-0.28-0.521-0.641-1.283-0.641-1.684
|
||||
c0-0.24-0.121-0.201-0.24-0.36C53.671,30.063,53.751,29.861,53.551,29.42z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M53.551,29.42l-5.973-9.339
|
||||
c-0.922-1.082-2.725-2.325-4.208-2.124v-1.644c1.042-0.481,1.763-1.523,1.763-2.767c0-1.643-1.282-3.006-2.966-3.006
|
||||
c-1.683,0-2.966,1.363-2.966,3.006c0,1.363,0.802,2.446,2.044,2.847v1.402c-1.643,0-5.772,1.123-5.772,5.291v8.818
|
||||
c0,0.722,0.562,1.283,1.283,1.283c0.722,0,1.323-0.562,1.323-1.283V23.77c0-0.321,0.2-0.522,0.521-0.522
|
||||
c0.321,0,0.561,0.201,0.561,0.522v23.448c0,0.721,0.561,1.322,1.323,1.322c0.721,0,1.322-0.602,1.322-1.322V34.512
|
||||
c0-0.441,0.361-0.803,0.802-0.803c0.481,0,0.802,0.361,0.802,0.803v15.632c0,0.721,0.601,1.362,1.363,1.362
|
||||
c0.721,0,1.362-0.642,1.362-1.362V22.928l4.931,7.855c0.439,0.722,0.962,0.601,1.523,0.441c0.44,1.603,0.721,2.564,1.803,2.604
|
||||
l3.447,0.241l-2.485,7.976h1.964v5.853c0,0.44,0.401,0.802,0.803,0.802c0.48,0,0.842-0.361,0.842-0.802v-5.933h1.121v4.811
|
||||
c0,0.441,0.401,0.842,0.922,0.842c0.441,0,0.843-0.4,0.843-0.842v-4.73h1.844l-1.724-6.612l2.285,2.484c0.199,0.2,0.521,0.2,0.721,0
|
||||
c0.201-0.2,0.32-0.4,0.08-0.842l-2.967-3.407c-0.68-0.641-1.041-1.082-1.803-1.242c-0.281-0.2-0.201-0.481-0.121-0.722
|
||||
c0.763-0.321,1.203-1.082,1.203-1.924c0-1.203-0.962-2.164-2.125-2.164c-1.201,0-2.203,0.961-2.203,2.164
|
||||
c0,0.962,0.681,1.764,1.563,2.044c0.04,0.281,0.08,0.722-0.24,0.882h-2.926c-0.521,0-0.682-0.04-1.043-0.44
|
||||
c-0.28-0.521-0.641-1.283-0.641-1.684c0-0.24-0.121-0.201-0.24-0.36C53.671,30.063,53.751,29.861,53.551,29.42z"/>
|
||||
<path fill="#FFFFFF" d="M58.24,69.344c0.121,0,1.123,0.721,1.243,0.761c5.331,3.607,1.804,5.972,5.571,9.42l-4.088,4.369
|
||||
c0,0-0.08,0.04-0.04,0.12c-0.321,0.48-0.401,1.042-0.321,1.643c0.08,0.04,0.842,2.566,1.323,3.207c0,0.12,0.04,0.321,0.12,0.441
|
||||
c0,0,0.039,0.079,0.08,0.119c-0.2,0.321-0.32,0.723-0.28,1.082c0.159,0.201,0.401,0.361,0.562,0.643l0.961-0.521l-0.119-0.722
|
||||
c-0.08-0.441-0.281-0.481-0.521-0.802c0-0.08-0.361-0.682-0.361-0.761c-0.16-0.161-0.24-1.123-0.361-1.363
|
||||
c-0.4-0.962,0.041-0.361-0.4-1.283c0.121-0.12,0.121-0.641,0.321-0.561c1.884-1.323,3.768-2.646,5.692-3.969
|
||||
c0.601,0.962,1.762,2.285,2.164,3.809c0.32,1.322,3.006,4.369,3.406,5.451c0.201,0.4-0.32,1.082-0.32,1.563h1.362l-0.12-0.962
|
||||
l0.321-0.12l-0.722-1.042c-0.602-0.922-0.642-0.762-1.202-1.764c-0.321-0.642-0.562-1.322-0.683-1.924
|
||||
c-0.039-0.12-0.721-3.607-0.399-5.25l0.881-0.643c1.323,0,2.444,0.12,3.808-0.08c1.002-0.16,2.727-0.321,3.447-0.802
|
||||
c1.645-0.521,2.205-1.242,2.646-1.362c0.08,0,0,0.04,0,0c0,0,0.039,0.802,1.281,2.806c0.522,1.123,1.764,2.284,0.803,3.406
|
||||
c-0.401,0.521-2.205,2.526-2.405,2.927c0,0.16-0.08,0.32-0.2,0.44c0,0.08-0.08,0.121-0.04,0.241c-0.161,0.08-0.28,0.28-0.401,0.441
|
||||
c0.041,0.4-0.281,0.601-0.039,1.002c0.279,0.119,0.199,0.601,0.279,0.801l0.922-0.801l-0.32-0.361l0.32-0.16l-0.199-0.44
|
||||
c-0.041-0.12,0.08-0.321,0.119-0.481c0.481-0.722,1.082-1.243,1.685-1.804c0.962-0.883,1.843-1.644,2.646-2.565
|
||||
c0.36-0.682,0.199-1.443,0.28-2.205c0.04,0.08,0.04,0.161,0.04,0.321c0.12,0.08,0.24,0.28,0.24,0.44
|
||||
c0.642,0.722,1.523,1.523,2.445,2.045c0.521,0.28,0.722,0.32,1.123,0.601c0.48,0.08,1.041,0.962,0.881,1.483l0.24,4.049
|
||||
c0.08,0.12,0.08,0.239,0.08,0.4c-0.521,0.28-0.641,0.842-0.561,1.442h1.242l-0.08-1.122l0.201-0.08
|
||||
c0.16-0.04-0.321-2.245-0.121-3.167c0.201-2.725,0.682-1.643,0.24-3.206c-0.281-0.962-0.922-0.762-1.363-1.644
|
||||
c-0.32,0-1.764-2.525-2.123-3.647c-0.321-0.842-0.361-3.487-0.121-4.169c0.361-1.002,0.121-2.405-0.32-3.126
|
||||
c0.12-0.08,0.401,0,0.521,0c0.119,0.04,0.199,0.12,0.32,0.12c1.803,1.243,1.322,3.127,2.084,4.89c0.041,0.04,0.08,0.08,0.08,0.08
|
||||
c0,0.081,0.04,0.121,0.04,0.201c0.16,0.562,0.722,0.922,1.283,0.842c0.481-0.32,1.002-0.682,1.483-0.602l-2.687-5.13
|
||||
c-0.481-0.683-0.962-0.882-1.282-1.163c-0.802-0.32-1.203-0.24-2.004-0.28c-1.764-0.08-1.884-1.403-3.647-1.482
|
||||
c-3.007-0.08-3.046-0.08-4.69,0c-0.24,0-1.201,0.319-1.122,0.159l0.04-0.239l-1.121,0.04l0.44-1.044l-0.321-0.239l-1.322,1.323
|
||||
c0-0.763-0.16-1.003-0.32-1.483c-0.361-0.441-0.441-0.802-0.723-1.123c-0.199-1.162-0.561-4.93-3.447-5.651l-0.039-0.44l-0.321,0.12
|
||||
v-0.521h0.321l-0.201-0.882l0.441-1.002c-0.842-0.08-2.525-1.042-3.006,0c-0.361,0-0.562,0.08-0.843,0.12l0.763,0.32h0.08
|
||||
l0.039,0.642l-0.32,0.802h0.32v0.641c0,0.161-0.039,0.401,0.161,0.401c0.28-0.16,0.642,0,0.962-0.04l0.4,0.2
|
||||
c0.24,1.083-0.682,0.602,0.24,2.726c0,0.401-0.4,1.042-0.762,1.483c-0.561,0.762-0.601,0.722-1.924,1.844
|
||||
c-0.641,0.04-0.922,0.361-1.002,1.002c0.161,0.16,0.281,0.361,0.521,0.441c0.16,0.04,0.281,0,0.4,0
|
||||
c0.361-0.16,0.241-0.722,0.321-0.802c0.04-0.04,0.08-0.08,0.12-0.08c0.16,0.16,0.281,0.32,0.441,0.48
|
||||
c0.561-0.04,0.881-0.641,2.004-1.283c0-0.399,0.722-0.359,0.682-0.761c0-0.12,0.04,0.24,0.16,0.28
|
||||
c-0.08,0.762,0.279,1.443-0.201,2.165l-0.961,1.323h-1.163c-0.681,0-1.563-0.121-1.804-0.441c-1.443-0.882-2.164-1.163-3.407-2.004
|
||||
c-2.886-2.085-5.933-2.687-6.854-2.687c-0.4,0-0.801-0.32-1.041-0.521c0-0.08,0-0.12,0-0.2c-0.16-0.36-0.602-0.602-0.562-1.043
|
||||
l-0.241,0.842l-0.641-0.802c-0.04,0.041-0.08,0.081-0.08,0.161c0.199,0.441,0,1.002,0.08,1.443c-0.08,0.04-0.08,0.119-0.12,0.159
|
||||
c0,0.281-0.16,0.562-0.281,0.803c0.121,0.721-0.721,1.082-0.481,1.844c-0.119,0.881-0.359,1.322-0.681,2.164
|
||||
c-0.241,0.601-0.28,1.122-0.2,1.964c0.041,0.361,0.44,0.641,0.842,0.681c0.119,0,0.16-0.12,0.281-0.16
|
||||
c0.039,0.12,0.079,0.201,0.199,0.321c0.281,0,0.321,0.12,0.521-0.12c0-0.24,0.281-0.44,0.281-0.682
|
||||
C57.479,70.425,57.479,70.545,58.24,69.344z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M58.24,69.344c0.121,0,1.123,0.721,1.243,0.761
|
||||
c5.331,3.607,1.804,5.972,5.571,9.42l-4.088,4.369c0,0-0.08,0.04-0.04,0.12c-0.321,0.48-0.401,1.042-0.321,1.643
|
||||
c0.08,0.04,0.842,2.566,1.323,3.207c0,0.12,0.04,0.321,0.12,0.441c0,0,0.039,0.079,0.08,0.119c-0.2,0.321-0.32,0.723-0.28,1.082
|
||||
c0.159,0.201,0.401,0.361,0.562,0.643l0.961-0.521l-0.119-0.722c-0.08-0.441-0.281-0.481-0.521-0.802
|
||||
c0-0.08-0.361-0.682-0.361-0.761c-0.16-0.161-0.24-1.123-0.361-1.363c-0.4-0.962,0.041-0.361-0.4-1.283
|
||||
c0.121-0.12,0.121-0.641,0.321-0.561c1.884-1.323,3.768-2.646,5.692-3.969c0.601,0.962,1.762,2.285,2.164,3.809
|
||||
c0.32,1.322,3.006,4.369,3.406,5.451c0.201,0.4-0.32,1.082-0.32,1.563h1.362l-0.12-0.962l0.321-0.12l-0.722-1.042
|
||||
c-0.602-0.922-0.642-0.762-1.202-1.764c-0.321-0.642-0.562-1.322-0.683-1.924c-0.039-0.12-0.721-3.607-0.399-5.25l0.881-0.643
|
||||
c1.323,0,2.444,0.12,3.808-0.08c1.002-0.16,2.727-0.321,3.447-0.802c1.645-0.521,2.205-1.242,2.646-1.362c0.08,0,0,0.04,0,0
|
||||
c0,0,0.039,0.802,1.281,2.806c0.522,1.123,1.764,2.284,0.803,3.406c-0.401,0.521-2.205,2.526-2.405,2.927c0,0.16-0.08,0.32-0.2,0.44
|
||||
c0,0.08-0.08,0.121-0.04,0.241c-0.161,0.08-0.28,0.28-0.401,0.441c0.041,0.4-0.281,0.601-0.039,1.002
|
||||
c0.279,0.119,0.199,0.601,0.279,0.801l0.922-0.801l-0.32-0.361l0.32-0.16l-0.199-0.44c-0.041-0.12,0.08-0.321,0.119-0.481
|
||||
c0.481-0.722,1.082-1.243,1.685-1.804c0.962-0.883,1.843-1.644,2.646-2.565c0.36-0.682,0.199-1.443,0.28-2.205
|
||||
c0.04,0.08,0.04,0.161,0.04,0.321c0.12,0.08,0.24,0.28,0.24,0.44c0.642,0.722,1.523,1.523,2.445,2.045
|
||||
c0.521,0.28,0.722,0.32,1.123,0.601c0.48,0.08,1.041,0.962,0.881,1.483l0.24,4.049c0.08,0.12,0.08,0.239,0.08,0.4
|
||||
c-0.521,0.28-0.641,0.842-0.561,1.442h1.242l-0.08-1.122l0.201-0.08c0.16-0.04-0.321-2.245-0.121-3.167
|
||||
c0.201-2.725,0.682-1.643,0.24-3.206c-0.281-0.962-0.922-0.762-1.363-1.644c-0.32,0-1.764-2.525-2.123-3.647
|
||||
c-0.321-0.842-0.361-3.487-0.121-4.169c0.361-1.002,0.121-2.405-0.32-3.126c0.12-0.08,0.401,0,0.521,0
|
||||
c0.119,0.04,0.199,0.12,0.32,0.12c1.803,1.243,1.322,3.127,2.084,4.89c0.041,0.04,0.08,0.08,0.08,0.08
|
||||
c0,0.081,0.04,0.121,0.04,0.201c0.16,0.562,0.722,0.922,1.283,0.842c0.481-0.32,1.002-0.682,1.483-0.602l-2.687-5.13
|
||||
c-0.481-0.683-0.962-0.882-1.282-1.163c-0.802-0.32-1.203-0.24-2.004-0.28c-1.764-0.08-1.884-1.403-3.647-1.482
|
||||
c-3.007-0.08-3.046-0.08-4.69,0c-0.24,0-1.201,0.319-1.122,0.159l0.04-0.239l-1.121,0.04l0.44-1.044l-0.321-0.239l-1.322,1.323
|
||||
c0-0.763-0.16-1.003-0.32-1.483c-0.361-0.441-0.441-0.802-0.723-1.123c-0.199-1.162-0.561-4.93-3.447-5.651l-0.039-0.44l-0.321,0.12
|
||||
v-0.521h0.321l-0.201-0.882l0.441-1.002c-0.842-0.08-2.525-1.042-3.006,0c-0.361,0-0.562,0.08-0.843,0.12l0.763,0.32h0.08
|
||||
l0.039,0.642l-0.32,0.802h0.32v0.641c0,0.161-0.039,0.401,0.161,0.401c0.28-0.16,0.642,0,0.962-0.04l0.4,0.2
|
||||
c0.24,1.083-0.682,0.602,0.24,2.726c0,0.401-0.4,1.042-0.762,1.483c-0.561,0.762-0.601,0.722-1.924,1.844
|
||||
c-0.641,0.04-0.922,0.361-1.002,1.002c0.161,0.16,0.281,0.361,0.521,0.441c0.16,0.04,0.281,0,0.4,0
|
||||
c0.361-0.16,0.241-0.722,0.321-0.802c0.04-0.04,0.08-0.08,0.12-0.08c0.16,0.16,0.281,0.32,0.441,0.48
|
||||
c0.561-0.04,0.881-0.641,2.004-1.283c0-0.399,0.722-0.359,0.682-0.761c0-0.12,0.04,0.24,0.16,0.28
|
||||
c-0.08,0.762,0.279,1.443-0.201,2.165l-0.961,1.323h-1.163c-0.681,0-1.563-0.121-1.804-0.441c-1.443-0.882-2.164-1.163-3.407-2.004
|
||||
c-2.886-2.085-5.933-2.687-6.854-2.687c-0.4,0-0.801-0.32-1.041-0.521c0-0.08,0-0.12,0-0.2c-0.16-0.36-0.602-0.602-0.562-1.043
|
||||
l-0.241,0.842l-0.641-0.802c-0.04,0.041-0.08,0.081-0.08,0.161c0.199,0.441,0,1.002,0.08,1.443c-0.08,0.04-0.08,0.119-0.12,0.159
|
||||
c0,0.281-0.16,0.562-0.281,0.803c0.121,0.721-0.721,1.082-0.481,1.844c-0.119,0.881-0.359,1.322-0.681,2.164
|
||||
c-0.241,0.601-0.28,1.122-0.2,1.964c0.041,0.361,0.44,0.641,0.842,0.681c0.119,0,0.16-0.12,0.281-0.16
|
||||
c0.039,0.12,0.079,0.201,0.199,0.321c0.281,0,0.321,0.12,0.521-0.12c0-0.24,0.281-0.44,0.281-0.682
|
||||
C57.479,70.425,57.479,70.545,58.24,69.344z"/>
|
||||
<path fill="#FFFFFF" d="M69.063,68.661c0.481,0.441,1.162,1.645-0.241,1.403c-0.039,0-0.361-0.441-0.4-0.401
|
||||
c-0.24-0.24,0-0.44,0-0.681c0-0.08,0.16,0.12,0.201,0.24c-0.121,0.4,0.279,0.722,0.681,0.642c0.04-0.08-0.08,0.04,0,0
|
||||
c0-0.121,0.241,0.04,0.079-0.441c-0.079-0.16-0.521-0.28-0.561-0.44L69.063,68.661z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M69.063,68.661
|
||||
c0.481,0.441,1.162,1.645-0.241,1.403c-0.039,0-0.361-0.441-0.4-0.401c-0.24-0.24,0-0.44,0-0.681c0-0.08,0.16,0.12,0.201,0.24
|
||||
c-0.121,0.4,0.279,0.722,0.681,0.642c0.04-0.08-0.08,0.04,0,0c0-0.121,0.241,0.04,0.079-0.441c-0.079-0.16-0.521-0.28-0.561-0.44
|
||||
L69.063,68.661z"/>
|
||||
<path fill="#FFFFFF" d="M56.037,72.028l-0.041,0.441c1.123-0.361,3.127-0.682,4.569-1.403l-0.28-0.28
|
||||
C58.841,71.507,57.158,71.667,56.037,72.028z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M56.037,72.028l-0.041,0.441
|
||||
c1.123-0.361,3.127-0.682,4.569-1.403l-0.28-0.28C58.841,71.507,57.158,71.667,56.037,72.028z"/>
|
||||
<polygon fill="#FFFFFF" points="67.9,68.541 68.101,68.822 66.858,68.982 66.498,68.741 "/>
|
||||
<polygon fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" points="67.9,68.541 68.101,68.822
|
||||
66.858,68.982 66.498,68.741 "/>
|
||||
<path fill="#FFFFFF" d="M16.995,73.872l9.059,8.058c-0.361,0.399-0.561,0.921-0.561,1.482c0,1.162,0.962,2.164,2.084,2.284v2.686
|
||||
h-0.361v0.481h1.163v-0.481h-0.321v-2.646c1.082-0.04,1.924-0.921,2.084-1.924h1.283c0.16,4.41,3.768,7.896,8.177,7.896
|
||||
c4.569,0,8.257-3.688,8.257-8.217c0-4.53-3.688-8.217-8.257-8.217c-1.363,0-2.646,0.32-3.768,0.962l-2.325-4.249l0.562-1.122
|
||||
c0.16-0.361,0.641-0.241,0.921-0.521c0.041-0.201,0.041-0.321,0.041-0.521c-0.161-0.081-0.201-0.241-0.401-0.241h-3.047
|
||||
c-0.04,0.08-0.16,0.04-0.24,0.04c-0.04,0.04-0.08,0.08-0.12,0.08c-0.04,0.161-0.04,0.361,0,0.521c0.04,0.04,0.12,0.081,0.16,0.081
|
||||
h1.563c0.161-0.041,0.321,0.04,0.481,0.08c0.04,0.039,0.04,0.039,0.12,0.079c-0.04,0.12,0.081,0.28,0.041,0.361l-0.321,0.721H17.516
|
||||
l0.441-1.844c0.361-0.12,0.642,0.121,1.363-0.2c0.281,0,0.962-0.36,1.764-0.08c0.16-0.079-0.04-0.119,0.04-0.24
|
||||
c-0.08-0.04,0.12-0.2,0.08-0.28c-0.481-0.161-1.523-0.241-2.004,0.08c-0.521,0.28-1.203,0.08-1.644,0.12l-1.563,6.693
|
||||
c-0.882-0.36-1.884-0.561-2.926-0.561c-4.529,0-8.217,3.687-8.217,8.217c0,4.529,3.688,8.217,8.217,8.217
|
||||
c4.53,0,8.217-3.688,8.217-8.217c0-3.327-2.004-6.133-4.81-7.456L16.995,73.872z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M16.995,73.872l9.059,8.058
|
||||
c-0.361,0.399-0.561,0.921-0.561,1.482c0,1.162,0.962,2.164,2.084,2.284v2.686h-0.361v0.481h1.163v-0.481h-0.321v-2.646
|
||||
c1.082-0.04,1.924-0.921,2.084-1.924h1.283c0.16,4.41,3.768,7.896,8.177,7.896c4.569,0,8.257-3.688,8.257-8.217
|
||||
c0-4.53-3.688-8.217-8.257-8.217c-1.363,0-2.646,0.32-3.768,0.962l-2.325-4.249l0.562-1.122c0.16-0.361,0.641-0.241,0.921-0.521
|
||||
c0.041-0.201,0.041-0.321,0.041-0.521c-0.161-0.081-0.201-0.241-0.401-0.241h-3.047c-0.04,0.08-0.16,0.04-0.24,0.04
|
||||
c-0.04,0.04-0.08,0.08-0.12,0.08c-0.04,0.161-0.04,0.361,0,0.521c0.04,0.04,0.12,0.081,0.16,0.081h1.563
|
||||
c0.161-0.041,0.321,0.04,0.481,0.08c0.04,0.039,0.04,0.039,0.12,0.079c-0.04,0.12,0.081,0.28,0.041,0.361l-0.321,0.721H17.516
|
||||
l0.441-1.844c0.361-0.12,0.642,0.121,1.363-0.2c0.281,0,0.962-0.36,1.764-0.08c0.16-0.079-0.04-0.119,0.04-0.24
|
||||
c-0.08-0.04,0.12-0.2,0.08-0.28c-0.481-0.161-1.523-0.241-2.004,0.08c-0.521,0.28-1.203,0.08-1.644,0.12l-1.563,6.693
|
||||
c-0.882-0.36-1.884-0.561-2.926-0.561c-4.529,0-8.217,3.687-8.217,8.217c0,4.529,3.688,8.217,8.217,8.217
|
||||
c4.53,0,8.217-3.688,8.217-8.217c0-3.327-2.004-6.133-4.81-7.456L16.995,73.872z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M11.744,74.714
|
||||
c0.481-0.08,0.922-0.16,1.323-0.16c4.89,0,8.858,4.009,8.858,8.938c0,0.28,0,0.521-0.04,0.801"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M5.892,92.11 M46.777,92.11H5.893v-0.602h40.884V92.11z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M5.892,92.11 M46.777,92.11H5.893v-0.602
|
||||
h40.884V92.11z"/>
|
||||
<path fill="#0071B3" d="M13.749,82.45c-0.201-0.121-0.441-0.081-0.682-0.081c-0.681,0-1.242,0.522-1.242,1.163
|
||||
c0,0.681,0.561,1.202,1.242,1.202c0.521,0,1.042-0.36,1.163-0.841h6.212c-0.24,3.888-3.447,6.934-7.375,6.934
|
||||
c-4.168,0-7.495-3.327-7.495-7.415c0-4.129,3.327-7.456,7.495-7.456c0.962,0,1.884,0.201,2.766,0.562l-0.481,2.005
|
||||
C15.071,79.685,14.67,81.047,13.749,82.45z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M13.749,82.45
|
||||
c-0.201-0.121-0.441-0.081-0.682-0.081c-0.681,0-1.242,0.522-1.242,1.163c0,0.681,0.561,1.202,1.242,1.202
|
||||
c0.521,0,1.042-0.36,1.163-0.841h6.212c-0.24,3.888-3.447,6.934-7.375,6.934c-4.168,0-7.495-3.327-7.495-7.415
|
||||
c0-4.129,3.327-7.456,7.495-7.456c0.962,0,1.884,0.201,2.766,0.562l-0.481,2.005C15.071,79.685,14.67,81.047,13.749,82.45z"/>
|
||||
<path fill="#0071B3" d="M16.354,76.719l-0.561,2.124c-0.241,1.041-1.042,3.127-1.724,3.928c0.08,0.161,0.161,0.36,0.201,0.521h6.212
|
||||
C20.402,80.365,18.759,77.92,16.354,76.719z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M16.354,76.719l-0.561,2.124
|
||||
c-0.241,1.041-1.042,3.127-1.724,3.928c0.08,0.161,0.161,0.36,0.201,0.521h6.212C20.402,80.365,18.759,77.92,16.354,76.719z"/>
|
||||
<path fill="#0071B3" d="M17.116,73.352l0.24-1.283h15.632l-4.329,9.139c-0.2-0.08-0.36-0.239-0.641-0.16v-2.605h0.361V78h-1.163
|
||||
v0.441h0.361v2.646c-0.441,0.08-0.802,0.24-1.122,0.521L17.116,73.352z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M17.116,73.352l0.24-1.283h15.632l-4.329,9.139
|
||||
c-0.2-0.08-0.36-0.239-0.641-0.16v-2.605h0.361V78h-1.163v0.441h0.361v2.646c-0.441,0.08-0.802,0.24-1.122,0.521L17.116,73.352z"/>
|
||||
<path fill="#0071B3" d="M41.245,82.65l4.93-2.727c0.602,1.044,0.922,2.285,0.922,3.568c0,4.088-3.326,7.415-7.455,7.415
|
||||
c-4.008,0-7.255-3.126-7.415-7.095h5.812c0.12,0.762,0.801,1.323,1.603,1.323c0.922,0,1.724-0.762,1.724-1.644
|
||||
c0-0.321-0.081-0.561-0.201-0.762L41.245,82.65z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M41.245,82.65l4.93-2.727
|
||||
c0.602,1.044,0.922,2.285,0.922,3.568c0,4.088-3.326,7.415-7.455,7.415c-4.008,0-7.255-3.126-7.415-7.095h5.812
|
||||
c0.12,0.762,0.801,1.323,1.603,1.323c0.922,0,1.724-0.762,1.724-1.644c0-0.321-0.081-0.561-0.201-0.762L41.245,82.65z"/>
|
||||
<path fill="#0071B3" d="M40.965,82.369l5.01-2.765c-1.323-2.125-3.647-3.568-6.373-3.568c-1.162,0-2.325,0.281-3.327,0.802
|
||||
l2.806,5.092c0.16-0.081,0.401-0.121,0.601-0.121C40.163,81.809,40.604,82.049,40.965,82.369z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M40.965,82.369l5.01-2.765
|
||||
c-1.323-2.125-3.647-3.568-6.373-3.568c-1.162,0-2.325,0.281-3.327,0.802l2.806,5.092c0.16-0.081,0.401-0.121,0.601-0.121
|
||||
C40.163,81.809,40.604,82.049,40.965,82.369z"/>
|
||||
<path fill="#0071B3" d="M35.874,77.159l2.806,5.09c-0.281,0.241-0.521,0.602-0.601,1.002h-5.892c0.08-2.604,1.483-4.85,3.567-6.132
|
||||
L35.874,77.159z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M35.874,77.159l2.806,5.09
|
||||
c-0.281,0.241-0.521,0.602-0.601,1.002h-5.892c0.08-2.604,1.483-4.85,3.567-6.132L35.874,77.159z"/>
|
||||
<path fill="#0071B3" d="M33.269,72.509l-4.089,8.939c0.602,0.4,1.043,1.082,1.083,1.843h1.242c0.08-2.886,1.604-5.411,3.968-6.813
|
||||
L33.269,72.509z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M33.269,72.509l-4.089,8.939
|
||||
c0.602,0.4,1.043,1.082,1.083,1.843h1.242c0.08-2.886,1.604-5.411,3.968-6.813L33.269,72.509z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M30.944,84.815
|
||||
c-0.08-0.441-0.12-0.882-0.12-1.323c0-4.93,4.008-8.938,8.898-8.938c3.648,0,6.734,2.205,8.137,5.33"/>
|
||||
<path fill="#ED1C24" d="M4.61,97.762c-0.882-0.722-1.203-1.563-1.203-2.605v-3.968l86.9-87.781l4.89,0.12
|
||||
c0.762,0,2.525,0.962,2.605,1.363c0.08,0.359,0.922,1.082,0.922,2.765l0.04,4.209l-85.657,87.02H7.215
|
||||
C6.454,98.884,5.732,98.684,4.61,97.762"/>
|
||||
</svg>
|
After (image error) Size: 20 KiB |
|
@ -0,0 +1,114 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!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="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="101.863px" height="101.983px" viewBox="0 0 101.863 101.983" enable-background="new 0 0 101.863 101.983"
|
||||
xml:space="preserve">
|
||||
<path fill="#0071B3" d="M7.556,0h86.831c4.118,0.04,7.477,3.398,7.477,7.556v86.99c0,4.078-3.358,7.437-7.437,7.437H7.516
|
||||
C3.358,101.983,0,98.666,0,94.587V7.556C0,3.398,3.358,0.04,7.516,0.04L7.556,0z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0" stroke-miterlimit="3.863" d="M7.556,0h86.831
|
||||
c4.118,0.04,7.477,3.398,7.477,7.556v86.99c0,4.078-3.358,7.437-7.437,7.437H7.516C3.358,101.983,0,98.666,0,94.587V7.556
|
||||
C0,3.398,3.358,0.04,7.516,0.04L7.556,0z"/>
|
||||
<path fill="#FFFFFF" d="M7.476,1.839l86.911,0.04c3.079,0,5.637,2.559,5.637,5.677v87.031c0,3.078-2.558,5.637-5.637,5.637
|
||||
l-87.311-0.12c-2.918,0-5.197-2.397-5.197-5.276L1.799,7.516C1.799,4.397,4.357,1.839,7.476,1.839z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M7.476,1.839l86.911,0.04
|
||||
c3.079,0,5.637,2.559,5.637,5.677v87.031c0,3.078-2.558,5.637-5.637,5.637l-87.311-0.12c-2.918,0-5.197-2.397-5.197-5.276
|
||||
L1.799,7.516C1.799,4.397,4.357,1.839,7.476,1.839z"/>
|
||||
<path fill="#0071B3" d="M7.476,3.558l86.911,0.04c2.159,0,3.958,1.799,3.958,3.958v87.031c0,2.158-1.799,3.957-3.958,3.957H7.476
|
||||
c-2.159,0-3.958-1.799-3.958-3.957V7.516C3.518,5.357,5.317,3.558,7.476,3.558z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M7.476,3.558l86.911,0.04
|
||||
c2.159,0,3.958,1.799,3.958,3.958v87.031c0,2.158-1.799,3.957-3.958,3.957H7.476c-2.159,0-3.958-1.799-3.958-3.957V7.516
|
||||
C3.518,5.357,5.317,3.558,7.476,3.558z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M50.212,98.544 M51.771,98.544h-1.56V3.478h1.56V98.544z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M50.212,98.544 M51.771,98.544h-1.56V3.478
|
||||
h1.56V98.544z"/>
|
||||
<path fill="#FFFFFF" d="M17.91,44.815l8.355,7.517c-0.32,0.359-0.519,0.879-0.519,1.358c0,1.079,0.919,1.999,1.918,2.119v2.479
|
||||
h-0.319v0.438h1.039v-0.438h-0.28v-2.439c1-0.04,1.799-0.84,1.919-1.799h1.199c0.16,4.117,3.479,7.275,7.516,7.275
|
||||
c4.238,0,7.636-3.397,7.636-7.596c0-4.158-3.398-7.556-7.636-7.556c-1.239,0-2.398,0.28-3.438,0.88l-2.159-3.918l0.52-1.079
|
||||
c0.16-0.28,0.56-0.16,0.84-0.44c0.04-0.2,0.04-0.32,0.04-0.479c-0.12-0.12-0.16-0.24-0.36-0.24h-2.799c-0.04,0.04-0.16,0-0.239,0
|
||||
c0,0.04-0.08,0.08-0.12,0.08c-0.04,0.2-0.04,0.36,0,0.52c0.04,0.04,0.12,0.08,0.16,0.08h1.439c0.16-0.04,0.28,0.04,0.479,0.04
|
||||
c0,0.04,0,0.04,0.08,0.08c-0.04,0.16,0.08,0.28,0,0.32l-0.279,0.679H18.39l0.399-1.719c0.36-0.08,0.6,0.16,1.28-0.12
|
||||
c0.24,0,0.879-0.32,1.599-0.08c0.16-0.12-0.04-0.16,0.04-0.2c-0.08-0.04,0.12-0.279,0.08-0.319c-0.4-0.12-1.399-0.2-1.839,0.04
|
||||
c-0.48,0.279-1.08,0.119-1.519,0.159l-1.44,6.197c-0.799-0.32-1.759-0.52-2.678-0.52c-4.198,0-7.596,3.398-7.596,7.596
|
||||
s3.398,7.596,7.596,7.596c4.118,0,7.556-3.397,7.556-7.596c0-3.078-1.879-5.677-4.478-6.876L17.91,44.815z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M17.91,44.815l8.355,7.517
|
||||
c-0.32,0.359-0.519,0.879-0.519,1.358c0,1.079,0.919,1.999,1.918,2.119v2.479h-0.319v0.438h1.039v-0.438h-0.28v-2.439
|
||||
c1-0.04,1.799-0.84,1.919-1.799h1.199c0.16,4.117,3.479,7.275,7.516,7.275c4.238,0,7.636-3.397,7.636-7.596
|
||||
c0-4.158-3.398-7.556-7.636-7.556c-1.239,0-2.398,0.28-3.438,0.88l-2.159-3.918l0.52-1.079c0.16-0.28,0.56-0.16,0.84-0.44
|
||||
c0.04-0.2,0.04-0.32,0.04-0.479c-0.12-0.12-0.16-0.24-0.36-0.24h-2.799c-0.04,0.04-0.16,0-0.239,0c0,0.04-0.08,0.08-0.12,0.08
|
||||
c-0.04,0.2-0.04,0.36,0,0.52c0.04,0.04,0.12,0.08,0.16,0.08h1.439c0.16-0.04,0.28,0.04,0.479,0.04c0,0.04,0,0.04,0.08,0.08
|
||||
c-0.04,0.16,0.08,0.28,0,0.32l-0.279,0.679H18.39l0.399-1.719c0.36-0.08,0.6,0.16,1.28-0.12c0.24,0,0.879-0.32,1.599-0.08
|
||||
c0.16-0.12-0.04-0.16,0.04-0.2c-0.08-0.04,0.12-0.279,0.08-0.319c-0.4-0.12-1.399-0.2-1.839,0.04
|
||||
c-0.48,0.279-1.08,0.119-1.519,0.159l-1.44,6.197c-0.799-0.32-1.759-0.52-2.678-0.52c-4.198,0-7.596,3.398-7.596,7.596
|
||||
s3.398,7.596,7.596,7.596c4.118,0,7.556-3.397,7.556-7.596c0-3.078-1.879-5.677-4.478-6.876L17.91,44.815z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M13.073,45.655
|
||||
c0.439-0.04,0.799-0.16,1.239-0.16c4.477,0,8.155,3.718,8.155,8.235c0,0.279,0,0.561-0.04,0.8"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M7.676,61.726 M45.375,61.726H7.676v-0.52h37.699V61.726z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M7.676,61.726 M45.375,61.726H7.676v-0.52
|
||||
h37.699V61.726z"/>
|
||||
<path fill="#0071B3" d="M14.912,52.811c-0.2-0.12-0.4-0.08-0.6-0.08c-0.64,0-1.159,0.519-1.159,1.079
|
||||
c0,0.64,0.519,1.079,1.159,1.079c0.44,0,0.919-0.279,1.039-0.759h5.757c-0.24,3.638-3.198,6.436-6.796,6.436
|
||||
c-3.838,0-6.916-3.078-6.916-6.876c0-3.838,3.078-6.916,6.916-6.916c0.879,0,1.679,0.24,2.558,0.52l-0.479,1.879
|
||||
C16.111,50.252,15.791,51.492,14.912,52.811z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M14.912,52.811c-0.2-0.12-0.4-0.08-0.6-0.08
|
||||
c-0.64,0-1.159,0.519-1.159,1.079c0,0.64,0.519,1.079,1.159,1.079c0.44,0,0.919-0.279,1.039-0.759h5.757
|
||||
c-0.24,3.638-3.198,6.436-6.796,6.436c-3.838,0-6.916-3.078-6.916-6.876c0-3.838,3.078-6.916,6.916-6.916
|
||||
c0.879,0,1.679,0.24,2.558,0.52l-0.479,1.879C16.111,50.252,15.791,51.492,14.912,52.811z"/>
|
||||
<path fill="#0071B3" d="M17.31,47.534l-0.48,1.958c-0.239,0.88-0.999,2.84-1.599,3.598c0,0.16,0.12,0.36,0.16,0.521h5.717
|
||||
C21.068,50.892,19.549,48.613,17.31,47.534z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M17.31,47.534l-0.48,1.958
|
||||
c-0.239,0.88-0.999,2.84-1.599,3.598c0,0.16,0.12,0.36,0.16,0.521h5.717C21.068,50.892,19.549,48.613,17.31,47.534z"/>
|
||||
<path fill="#0071B3" d="M18.03,44.415l0.24-1.199h14.392l-3.998,8.435c-0.2-0.08-0.32-0.159-0.6-0.159v-2.399h0.32v-0.44h-1.039
|
||||
v0.44h0.319v2.438c-0.399,0.08-0.719,0.24-0.999,0.521L18.03,44.415z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M18.03,44.415l0.24-1.199h14.392l-3.998,8.435
|
||||
c-0.2-0.08-0.32-0.159-0.6-0.159v-2.399h0.32v-0.44h-1.039v0.44h0.319v2.438c-0.399,0.08-0.719,0.24-0.999,0.521L18.03,44.415z"/>
|
||||
<path fill="#0071B3" d="M40.297,52.97l4.558-2.518c0.52,1.04,0.839,2.159,0.839,3.278c0,3.798-3.078,6.916-6.916,6.916
|
||||
c-3.678,0-6.676-2.878-6.796-6.596h5.317c0.08,0.719,0.76,1.279,1.479,1.279c0.88,0,1.599-0.72,1.599-1.6
|
||||
c0-0.28-0.04-0.48-0.12-0.68L40.297,52.97z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M40.297,52.97l4.558-2.518
|
||||
c0.52,1.04,0.839,2.159,0.839,3.278c0,3.798-3.078,6.916-6.916,6.916c-3.678,0-6.676-2.878-6.796-6.596h5.317
|
||||
c0.08,0.719,0.76,1.279,1.479,1.279c0.88,0,1.599-0.72,1.599-1.6c0-0.28-0.04-0.48-0.12-0.68L40.297,52.97z"/>
|
||||
<path fill="#0071B3" d="M40.018,52.731l4.597-2.559c-1.239-1.959-3.318-3.278-5.877-3.278c-1.039,0-2.118,0.24-3.038,0.679
|
||||
l2.599,4.759c0.12-0.08,0.359-0.121,0.479-0.121C39.258,52.21,39.698,52.412,40.018,52.731z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M40.018,52.731l4.597-2.559
|
||||
c-1.239-1.959-3.318-3.278-5.877-3.278c-1.039,0-2.118,0.24-3.038,0.679l2.599,4.759c0.12-0.08,0.359-0.121,0.479-0.121
|
||||
C39.258,52.21,39.698,52.412,40.018,52.731z"/>
|
||||
<path fill="#0071B3" d="M35.3,47.893l2.599,4.718c-0.24,0.28-0.52,0.6-0.56,0.959h-5.397c0.04-2.398,1.359-4.517,3.278-5.717
|
||||
L35.3,47.893z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M35.3,47.893l2.599,4.718
|
||||
c-0.24,0.28-0.52,0.6-0.56,0.959h-5.397c0.04-2.398,1.359-4.517,3.278-5.717L35.3,47.893z"/>
|
||||
<path fill="#0071B3" d="M32.902,43.616l-3.718,8.235c0.479,0.4,0.919,1.04,0.959,1.759h1.159c0.08-2.678,1.48-5.037,3.638-6.356
|
||||
L32.902,43.616z"/>
|
||||
<path fill="none" stroke="#0071B3" stroke-width="0.2" stroke-miterlimit="3.863" d="M32.902,43.616l-3.718,8.235
|
||||
c0.479,0.4,0.919,1.04,0.959,1.759h1.159c0.08-2.678,1.48-5.037,3.638-6.356L32.902,43.616z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0.2" stroke-miterlimit="3.863" d="M30.783,55.009
|
||||
c-0.08-0.399-0.12-0.84-0.12-1.279c0-4.517,3.718-8.235,8.195-8.235c3.398,0,6.237,2.078,7.516,4.877"/>
|
||||
<path fill="#FFFFFF" d="M80.154,49.412l-5.836-9.074c-0.84-1.04-2.599-2.239-3.998-2.079V36.7c1-0.479,1.68-1.44,1.68-2.679
|
||||
c0-1.559-1.239-2.918-2.919-2.918c-1.56,0-2.878,1.359-2.878,2.918c0,1.319,0.84,2.359,2.039,2.758v1.36
|
||||
c-1.639,0-5.598,1.079-5.598,5.117v8.515c0,0.68,0.561,1.24,1.239,1.24c0.72,0,1.24-0.561,1.24-1.24v-7.875
|
||||
c0-0.32,0.239-0.48,0.56-0.48c0.319,0,0.479,0.16,0.479,0.48v22.667c0,0.72,0.6,1.319,1.358,1.319c0.681,0,1.201-0.6,1.201-1.319
|
||||
V54.33c0-0.479,0.358-0.8,0.838-0.8c0.48,0,0.76,0.32,0.76,0.8v15.071c0,0.681,0.6,1.36,1.359,1.36c0.68,0,1.239-0.68,1.239-1.36
|
||||
V43.096l4.838,7.596c0.399,0.679,0.959,0.599,1.438,0.44c0.4,1.559,0.68,2.478,1.76,2.518l3.357,0.2l-2.398,7.756h1.839v5.677
|
||||
c0,0.359,0.399,0.719,0.84,0.719c0.479,0,0.839-0.359,0.839-0.719v-5.757h1.08v4.638c0,0.399,0.36,0.799,0.84,0.799
|
||||
s0.879-0.399,0.879-0.799v-4.558h1.76l-1.68-6.397l2.159,2.399c0.279,0.16,0.56,0.16,0.72,0c0.239-0.2,0.319-0.399,0.119-0.8
|
||||
l-2.918-3.318c-0.6-0.639-0.959-1.039-1.759-1.199c-0.2-0.199-0.12-0.439-0.08-0.68c0.72-0.32,1.119-1.079,1.119-1.879
|
||||
c0-1.159-0.839-2.079-1.959-2.079c-1.239,0-2.159,0.92-2.159,2.079c0,0.92,0.6,1.68,1.52,1.959c0.041,0.28,0.08,0.721-0.279,0.88
|
||||
h-2.799c-0.479,0-0.719-0.079-1.039-0.44c-0.28-0.52-0.641-1.238-0.641-1.599c0-0.28-0.08-0.24-0.199-0.36
|
||||
C80.234,49.972,80.314,49.812,80.154,49.412z"/>
|
||||
<path fill="none" stroke="#FFFFFF" stroke-width="0" stroke-miterlimit="3.863" d="M80.154,49.412l-5.836-9.074
|
||||
c-0.84-1.04-2.599-2.239-3.998-2.079V36.7c1-0.479,1.68-1.44,1.68-2.679c0-1.559-1.239-2.918-2.919-2.918
|
||||
c-1.56,0-2.878,1.359-2.878,2.918c0,1.319,0.84,2.359,2.039,2.758v1.36c-1.639,0-5.598,1.079-5.598,5.117v8.515
|
||||
c0,0.68,0.561,1.24,1.239,1.24c0.72,0,1.24-0.561,1.24-1.24v-7.875c0-0.32,0.239-0.48,0.56-0.48c0.319,0,0.479,0.16,0.479,0.48
|
||||
v22.667c0,0.72,0.6,1.319,1.358,1.319c0.681,0,1.201-0.6,1.201-1.319V54.33c0-0.479,0.358-0.8,0.838-0.8c0.48,0,0.76,0.32,0.76,0.8
|
||||
v15.071c0,0.681,0.6,1.36,1.359,1.36c0.68,0,1.239-0.68,1.239-1.36V43.096l4.838,7.596c0.399,0.679,0.959,0.599,1.438,0.44
|
||||
c0.4,1.559,0.68,2.478,1.76,2.518l3.357,0.2l-2.398,7.756h1.839v5.677c0,0.359,0.399,0.719,0.84,0.719
|
||||
c0.479,0,0.839-0.359,0.839-0.719v-5.757h1.08v4.638c0,0.399,0.36,0.799,0.84,0.799s0.879-0.399,0.879-0.799v-4.558h1.76
|
||||
l-1.68-6.397l2.159,2.399c0.279,0.16,0.56,0.16,0.72,0c0.239-0.2,0.319-0.399,0.119-0.8l-2.918-3.318
|
||||
c-0.6-0.639-0.959-1.039-1.759-1.199c-0.2-0.199-0.12-0.439-0.08-0.68c0.72-0.32,1.119-1.079,1.119-1.879
|
||||
c0-1.159-0.839-2.079-1.959-2.079c-1.239,0-2.159,0.92-2.159,2.079c0,0.92,0.6,1.68,1.52,1.959c0.041,0.28,0.08,0.721-0.279,0.88
|
||||
h-2.799c-0.479,0-0.719-0.079-1.039-0.44c-0.28-0.52-0.641-1.238-0.641-1.599c0-0.28-0.08-0.24-0.199-0.36
|
||||
C80.234,49.972,80.314,49.812,80.154,49.412z"/>
|
||||
<path fill="#ED1C24" d="M4.597,97.505c-0.879-0.719-1.199-1.559-1.199-2.599v-3.958L90.07,3.398l4.877,0.12
|
||||
c0.76,0,2.519,0.959,2.599,1.359c0.08,0.36,0.919,1.08,0.919,2.759l0.04,4.197L13.073,98.625H7.196
|
||||
C6.436,98.625,5.717,98.425,4.597,97.505"/>
|
||||
</svg>
|
After (image error) Size: 11 KiB |