This commit is contained in:
rlx 2011-03-05 02:08:30 +00:00
parent 5d644badd4
commit 3605ae1afb
306 changed files with 114880 additions and 84 deletions

View file

@ -122,6 +122,7 @@ Forms
.OxThemeClassic .OxButton.OxTab.OxSelected {
border-bottom: 1px solid rgb(192, 192, 192);
}
.OxThemeClassic .OxFormMessage {
color: rgb(192, 64, 64);
}

View file

@ -957,6 +957,21 @@ Lists
border-right-width: 0
}
/*
================================================================================
Maps
================================================================================
*/
.OxMapButton {
position: absolute;
width: 12px;
height: 12px;
border: 2px solid rgb(255, 255, 255);
background: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
/*
================================================================================
Menus

View file

@ -59,6 +59,7 @@ Ox.KEYS = {
';': 186, '=': 187, ',': 188, '-': 189, '.': 190, '/': 191, '`': 192,
'(': 219, '\\': 220, ')': 221, '\'': 222
};
Ox.MAP_TILE_SIZE = 256;
Ox.MONTHS = [
'January', 'February', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November', 'December'
@ -2230,14 +2231,14 @@ Ox.limit = function(num, min, max) {
return Math.min(Math.max(num, min), max);
};
Ox.log = function(x, base) {
Ox.log = function(num, base) {
/*
>>> Ox.log(100, 10)
2
>>> Ox.log(Math.E)
1
*/
return Math.log(x) / Math.log(base || Math.E);
return Math.log(num) / Math.log(base || Math.E);
};
Ox.rad = function(deg) {

View file

@ -9331,7 +9331,9 @@ requires
var self = self || {}
that = new Ox.Element('div', self)
.defaults({
// fixme: isClickable? hasZoombar?
clickable: false,
editable: false,
height: 256,
labels: false,
places: [],
@ -9347,20 +9349,21 @@ requires
height: self.options.height + 'px'
})
.bindEvent({
key_up: function() {
pan(0, -1);
key_0: function() {
that.panToPlace()
},
key_down: function() {
pan(0, 1);
},
key_enter: pressEnter,
key_escape: pressEscape,
key_equal: function() {
zoom(1);
},
key_l: toggleLabels,
key_left: function() {
pan(-1, 0);
},
key_right: function() {
pan(1, 0);
},
key_0: reset,
key_meta: function() {
self.metaKey = true;
$(document).one({
@ -9372,11 +9375,8 @@ requires
key_minus: function() {
zoom(-1);
},
key_equal: function() {
zoom(1);
},
key_enter: function() {
that.panToPlace();
key_right: function() {
pan(1, 0);
},
key_shift: function() {
self.shiftKey = true;
@ -9386,14 +9386,36 @@ requires
}
});
},
key_shift_enter: function() {
key_shift_down: function() {
pan(0, 2);
},
key_shift_0: function() {
that.zoomToPlace();
},
key_escape: function() {
pressEscape();
}
key_shift_equal: function() {
zoom(2)
},
key_shift_left: function() {
pan(-2, 0);
},
key_shift_minus: function() {
zoom(-2);
},
key_shift_right: function() {
pan(2, 0);
},
key_shift_up: function() {
pan(0, -2);
},
key_up: function() {
pan(0, -1);
},
key_z: undo
});
self.mapHeight = getMapHeight();
self.minZoom = getMinZoom();
Ox.extend(self, {
metaKey: false,
resultPlace: null,
@ -9438,17 +9460,6 @@ requires
size: 16
})
.appendTo(that);
self.$zoomInput = new Ox.Range({
arrows: true,
max: 22,
size: self.options.width,
thumbSize: 32,
thumbValue: true
})
.bindEvent({
change: changeZoom
})
.appendTo(self.$zoombar)
}
if (self.options.statusbar) {
@ -9480,6 +9491,54 @@ requires
.appendTo(self.$statusbar);
}
self.$navigationButtons = {
'center': new Ox.Button({
title: 'close',
type: 'image'
})
.addClass('OxMapButton')
.css({
left: '24px',
top: '24px'
}),
'east': new Ox.Button({
title: 'next',
type: 'image'
})
.addClass('OxMapButton')
.css({
left: '44px',
top: '24px',
}),
'north': new Ox.Button({
title: 'above',
type: 'image'
})
.addClass('OxMapButton')
.css({
left: '24px',
top: '4px',
}),
'south': new Ox.Button({
title: 'below',
type: 'image'
})
.addClass('OxMapButton')
.css({
left: '24px',
top: '44px',
}),
'west': new Ox.Button({
title: 'previous',
type: 'image'
})
.addClass('OxMapButton')
.css({
left: '4px',
top: '24px',
})
};
if (Ox.isUndefined(window.google)) {
googleCallback = function() {
Ox.print('googleCallback')
@ -9524,6 +9583,11 @@ requires
place.add();
}
function boundsChanged() {
Ox.print('boundsChanged');
self.boundsChanged = true;
}
function canContain(outerBounds, innerBounds) {
var outerSpan = outerBounds.toSpan(),
innerSpan = innerBounds.toSpan();
@ -9531,6 +9595,11 @@ requires
outerSpan.lng() > innerSpan.lng();
}
function centerChanged() {
Ox.print('centerChanged')
self.centerChanged = true;
}
function changeZoom(event, data) {
self.map.setZoom(data.value);
}
@ -9538,7 +9607,7 @@ requires
function clickMap(event) {
Ox.print('Ox.Map clickMap')
that.gainFocus();
if (self.options.clickable) {
if (self.options.clickable/* && !editing()*/) {
getPlaceByLatLng(event.latLng, self.map.getBounds(), function(place) {
if (place) {
addPlace(place);
@ -9552,7 +9621,7 @@ requires
if (self.$placeButton.options('title') == 'New Place') {
addNewPlace();
} else {
var place = getPlaceById(self.selected),
var place = getSelectedPlace(),
data = {
place: {}
};
@ -9568,6 +9637,57 @@ requires
}
}
function constructZoomInput() {
Ox.print('constructZoomInput', self.minZoom, self.maxZoom)
if (self.options.zoombar) {
self.$zoomInput && self.$zoomInput.remove();
self.$zoomInput = new Ox.Range({
arrows: true,
max: self.maxZoom,
min: self.minZoom,
size: self.options.width,
thumbSize: 32,
thumbValue: true,
value: self.map.getZoom()
})
.bindEvent({
change: changeZoom
})
.appendTo(self.$zoombar);
}
}
function editing() {
return self.selected && getSelectedPlace().editing;
}
function getMapHeight() {
return self.options.height -
self.options.statusbar * 24 -
self.options.toolbar * 24 -
self.options.zoombar * 16;
}
function getMapType() {
return self.options.labels ? 'HYBRID' : 'SATELLITE'
}
function getMaxZoom(point, callback) {
if (arguments.length == 1) {
callback = point;
point = self.map.getCenter();
}
self.maxZoomService.getMaxZoomAtLatLng(point, function(data) {
callback(data.status == 'OK' ? data.zoom : -1);
});
}
function getMinZoom() {
return Math.ceil(
Ox.log(self.mapHeight / Ox.MAP_TILE_SIZE, 2)
)
}
function getPlaceById(id) {
var place = Ox.getObjectById(self.places, id);
if (!place && self.resultPlace && self.resultPlace.id == id) {
@ -9629,17 +9749,6 @@ requires
});
}
function getMapHeight() {
return self.options.height -
self.options.statusbar * 24 -
self.options.toolbar * 24 -
self.options.zoombar * 16;
}
function getMapType() {
return self.options.labels ? 'HYBRID' : 'SATELLITE'
}
function getPositionByName(name) {
var position = -1;
$.each(self.options.places, function(i, place) {
@ -9651,9 +9760,14 @@ requires
return position;
}
function getSelectedPlace() {
return self.selected ? getPlaceById(self.selected) : null;
}
function initMap() {
var mapBounds;
self.geocoder = new google.maps.Geocoder();
self.maxZoomService = new google.maps.MaxZoomService();
self.places = [];
self.options.places.forEach(function(place, i) {
var placeBounds = new google.maps.LatLngBounds(
@ -9674,24 +9788,51 @@ requires
mapTypeId: google.maps.MapTypeId[getMapType()],
zoom: self.zoom
});
google.maps.event.addListener(self.map, 'bounds_changed', boundsChanged);
google.maps.event.addListener(self.map, 'center_changed', centerChanged);
google.maps.event.addListener(self.map, 'click', clickMap);
google.maps.event.addListener(self.map, 'idle', mapChanged);
google.maps.event.addListener(self.map, 'zoom_changed', zoomChanged);
if (mapBounds) {
self.map.fitBounds(mapBounds);
self.zoom = self.map.getZoom();
}
// fixme: use tilesloaded event!
/*
setTimeout(function() {
Ox.forEach(self.$navigationButtons, function(button) {
button.appendTo(self.$map);
});
}, 1000);
*/
self.options.places.forEach(function(place, i) {
self.places[i] = new Ox.MapPlace(Ox.extend({
map: that
}, place)).add();
});
google.maps.event.addListener(self.map, 'click', clickMap);
google.maps.event.addListener(self.map, 'zoom_changed', zoomChanged);
google.maps.event.trigger(self.map, 'resize');
that.gainFocus();
that.triggerEvent('load');
}
function mapChanged() {
// gets called after panning or zooming
Ox.print('mapChanged');
if (self.centerChanged) {
getMaxZoom(function(zoom) {
if (zoom != self.maxZoom) {
self.maxZoom = zoom;
constructZoomInput();
}
});
}
self.boundsChanged = false;
self.centerChanged = false;
self.zoomChanged = false;
}
function pan(x, y) {
self.map.panBy(x * self.options.width / 2, y * getMapHeight() / 2);
self.map.panBy(x * self.options.width / 2, y * self.mapHeight / 2);
};
function parseGeodata(data) {
@ -9737,13 +9878,25 @@ requires
return place;
}
function pressEscape() {
var place;
if (self.selected) {
place = getPlaceById(self.selected);
function pressEnter() {
var place = getSelectedPlace();
if (place) {
if (place.editing) {
place.submit();
} else if (place.selected) {
} else {
place.edit();
}
} else if (self.resultPlace) {
self.resultPlace.select();
}
}
function pressEscape() {
var place = getSelectedPlace();
if (place) {
if (place.editing) {
place.cancel();
} else {
place.deselect();
}
} else if (self.resultPlace) {
@ -9763,11 +9916,28 @@ requires
self.map.fitBounds(self.bounds);
}
function resizeMap() {
Ox.print('resizeMap', self.options.width, self.options.height);
var center = self.map.getCenter();
self.mapHeight = getMapHeight();
self.minZoom = getMinZoom();
that.css({
height: self.options.height + 'px',
width: self.options.width + 'px'
});
self.$map.css({
height: self.mapHeight + 'px',
width: self.options.width + 'px'
});
google.maps.event.trigger(self.map, 'resize');
self.map.setCenter(center);
}
function selectPlace(id) {
Ox.print('Ox.Map selectPlace()', id, self.selected)
var place;
if (id != self.selected) {
place = getPlaceById(self.selected);
place = getSelectedPlace();
place && place.deselect();
place = getPlaceById(id);
place && place.select();
@ -9829,19 +9999,10 @@ requires
});
}
function resizeMap() {
Ox.print('w', self.options.width, 'h', self.options.height);
var center = self.map.getCenter();
that.css({
height: self.options.height + 'px',
width: self.options.width + 'px'
});
self.$map.css({
height: getMapHeight() + 'px',
width: self.options.width + 'px'
});
google.maps.event.trigger(self.map, 'resize');
self.map.setCenter(center);
function undo() {
Ox.print('Map undo')
var place = getSelectedPlace();
place.editing && place.undo();
}
function zoom(z) {
@ -9850,10 +10011,17 @@ requires
function zoomChanged() {
var zoom = self.map.getZoom();
self.options.zoombar && self.$zoomInput.options({value: zoom});
if (zoom < self.minZoom) {
self.map.setZoom(self.minZoom);
} else if (self.maxZoom && zoom > self.maxZoom) {
self.map.setZoom(self.maxZoom);
} else {
self.zoomChanged = true;
self.$zoomInput && self.$zoomInput.options({value: zoom});
that.triggerEvent('zoom', {
value: zoom
});
}
}
function zoomToPlace() {
@ -9987,7 +10155,6 @@ requires
n: new google.maps.LatLng(place.north, place.lng),
ne: new google.maps.LatLng(place.north, place.east),
};
Ox.print('PLACE', place)
marker = Marker(place);
polygon = Polygon(place);
selected = false;
@ -10246,7 +10413,7 @@ requires
self.options.width = that.$element.width();
Ox.print(self.options.width, self.options.height)
self.$map.css({
height: getMapHeight() + 'px',
height: self.mapHeight + 'px',
width: self.options.width + 'px'
});
google.maps.event.trigger(self.map, 'resize');
@ -10294,6 +10461,7 @@ requires
update();
function update() {
Ox.print('PLACE UPDATE', that.marker);
that.points = {
ne: new google.maps.LatLng(that.north, that.east),
sw: new google.maps.LatLng(that.south, that.west)
@ -10327,7 +10495,7 @@ requires
place: that
});
}
Ox.print('PLACE', that)
//Ox.print('PLACE', that)
}
that.add = function() {
@ -10336,6 +10504,14 @@ requires
return that;
};
that.cancel = function() {
that.undo();
that.editing = false;
that.marker.update();
that.polygon.deselect();
return that;
};
that.deselect = function() {
that.editing && that.submit();
that.selected = false;
@ -10346,6 +10522,12 @@ requires
that.edit = function() {
that.editing = true;
that.original = {
east: that.east,
north: that.north,
south: that.south,
west: that.west
};
that.marker.edit();
that.polygon.select();
return that;
@ -10374,9 +10556,18 @@ requires
return that;
};
that.update = function(str) {
that.update = function() {
update();
}
};
that.undo = function() {
Ox.forEach(that.original, function(v, k) {
that[k] = v;
});
that.update();
that.marker.update();
that.polygon.update();
};
return that;
@ -10394,15 +10585,14 @@ requires
that[key] = val;
});
that.marker = new google.maps.Marker({
position: that.place.center,
raiseOnDrag: false,
shape: {coords: [8, 8, 8], type: 'circle'},
title: that.place.name
});
setOptions();
function click() {
var selected = null;
if (!that.place.selected) {
that.map.options({selected: that.place.id});
} else if (that.map.getKey() == 'meta') {
@ -10415,6 +10605,8 @@ requires
}
function setOptions() {
// fixme: setting draggable on cancel seems to make additional marker appear
Ox.print('Marker setOptions')
that.marker.setOptions({
cursor: that.place.editing ? 'move' : 'pointer',
draggable: that.place.editing,
@ -10428,8 +10620,16 @@ requires
new google.maps.Point(0, 0),
new google.maps.Point(8, 8)
),
position: that.place.center
position: that.place.center,
visible: false
});
// workaround to prevent marker from appearing twice
// after setting draggable from true to false
setTimeout(function() {
that.marker.setOptions({
visible: true
});
}, 0);
}
function dragstart(e) {
@ -10564,6 +10764,7 @@ requires
that.deselect = function() {
setOptions();
Ox.print('MARKERS', that.markers)
Ox.forEach(that.markers, function(marker) {
marker.remove();
});
@ -10577,6 +10778,7 @@ requires
that.select = function() {
setOptions();
Ox.print('MARKERS', that.markers)
Ox.forEach(that.markers, function(marker) {
marker.add();
});
@ -10638,8 +10840,7 @@ requires
function drag(e) {
var lat = Ox.limit(e.latLng.lat(), Ox.MIN_LATITUDE, Ox.MAX_LATITUDE),
lng = e.latLng.lng(),
crossesDateline = Math.abs(lng - that.drag.lng) > 180,
degreesPerMeter = Ox.getDegreesPerMeter(that.place.lat);
crossesDateline = Math.abs(lng - that.drag.lng) > 180;
that.drag = {
lat: lat,
lng: lng
@ -10647,20 +10848,31 @@ requires
Ox.print('e', e)
if (that.position.indexOf('s') > -1) {
that.place.south = lat;
//Math.min(lat, that.place.north - degreesPerMeter);
}
if (that.position.indexOf('n') > -1) {
that.place.north = lat;
//Math.max(lat, that.place.south + degreesPerMeter);
}
if (that.position.indexOf('w') > -1) {
if (lng < that.place.east)
that.place.west = lng;
// Math.min(lng, that.place.east - degreesPerMeter);
else
that.place.east = lng;
}
if (that.position.indexOf('e') > -1) {
if (lng > that.place.west)
that.place.east = lng;
// Math.max(lng, that.place.west + degreesPerMeter)
else
that.place.west = lng;
}
Ox.print('west', that.place.west, 'east', that.place.east);
/*
if (that.place.west > that.place.east) {
var west = that.place.west;
that.place.west = that.place.east;
that.place.east = west;
}
*/
that.place.update();
that.place.marker.update();
that.place.polygon.update();

10
build/svg/AC.svg Normal file
View file

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="1200" height="600">
<clipPath id="t">
<path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/>
</clipPath>
<path d="M0,0 v30 h60 v-30 z" fill="#00247d"/>
<path d="M0,0 L60,30 M60,0 L0,30" stroke="#fff" stroke-width="6"/>
<path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(#t)" stroke="#cf142b" stroke-width="4"/>
<path d="M30,0 v30 M0,15 h60" stroke="#fff" stroke-width="10"/>
<path d="M30,0 v30 M0,15 h60" stroke="#cf142b" stroke-width="6"/>
</svg>

After

Width:  |  Height:  |  Size: 522 B

1170
build/svg/AD.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 154 KiB

12
build/svg/AE.svg Normal file
View file

@ -0,0 +1,12 @@
<?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"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="1200"
height="600"
viewBox="0 0 12 6">
<rect width="3" height="6" fill="#ce1126" id="red" />
<rect width="9" height="2" x="3" fill="#009a00" id="green" />
<rect width="9" height="2" x="3" y="2" fill="#ffffff" id="white" />
<rect width="9" height="2" x="3" y="4" fill="#000000" id="black" />
</svg>

After

Width:  |  Height:  |  Size: 537 B

2480
build/svg/AF.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 282 KiB

25
build/svg/AG.svg Normal file
View file

@ -0,0 +1,25 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" width="750px" height="500px" viewBox="-69 -46 138 92">
<title>Flag of Antigua and Barbuda</title>
<rect id="field" x="-50%" y="-50%" width="100%" height="100%" fill="white"/>
<rect id="blueband" x="-50%" y="-10" width="100%" height="20" fill="#0072c6"/>
<rect id="blackband" x="-50%" y="-50%" width="100%" height="36" fill="black"/>
<path id="redtriangles" d="M-69,-46 v92 h138 v-92 l-69,92 z" fill="#ce1126"/>
<clipPath id="clipsun">
<rect x="-50%" y="-50%" width="100%" height="50%"/>
</clipPath>
<g id="sun" fill="#fcd116" transform="translate(0,-10) scale(30)" clip-path="url(#clipsun)">
<g id="three_cones">
<g id="cone">
<polygon id="triangle" points="0,0 0,1 .25,1" transform="translate(0,-1) rotate(11.25)"/>
<use xlink:href="#triangle" transform="scale(-1,1)" />
</g>
<use xlink:href="#cone" transform="rotate(22.5)"/>
<use xlink:href="#cone" transform="rotate(-22.5)"/>
</g>
<use xlink:href="#three_cones" transform="rotate(67.5)"/>
<use xlink:href="#three_cones" transform="rotate(-67.5)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

48
build/svg/AI.svg Normal file
View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
]>
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
x="0px" y="0px" width="1000px" height="500px" viewBox="0 0 1000 500" enable-background="new 0 0 1000 500" xml:space="preserve"
>
<defs>
</defs>
<rect fill="#08296B" width="1000" height="500"/>
<polygon fill="#FFFFFF" points="499.999,0 444.098,0 291.667,76.215 291.667,0 208.333,0 208.333,76.215 55.902,0 0,0 0,27.949
110.765,83.332 0,83.332 0,166.666 110.765,166.666 0,222.049 0,250 55.902,250 208.333,173.783 208.333,250 291.667,250
291.667,173.783 444.098,250 499.999,250 499.999,222.049 389.234,166.666 499.999,166.666 499.999,83.332 389.234,83.332
499.999,27.949 "/>
<polygon fill="#CF142B" points="499.999,0 462.731,0 296.065,83.332 333.333,83.332 "/>
<polygon fill="#CF142B" points="166.667,83.332 0,0 0,18.633 129.399,83.332 "/>
<polygon fill="#CF142B" points="0,250 37.268,250 203.934,166.666 166.667,166.666 "/>
<polygon fill="#CF142B" points="333.333,166.666 499.999,250 499.999,231.365 370.601,166.666 "/>
<path id="path2938_1_" fill="#CF142B" d="M225,0h50v100h225v50H275v100h-50V150H0v-50h225V0z"/>
<path fill="#FFFFFF" d="M750,114.377c-38.643,22.217-80.302,21.495-106.385,3.619c0,67.634,0,112.074,0,138.161
c0,47.827,29.102,101.446,106.385,129.466c77.281-28.02,106.385-81.639,106.385-129.466c0-26.087,0-70.527,0-138.161
C830.302,135.872,788.646,136.594,750,114.377z"/>
<path fill="#0073BD" d="M652.882,302.114c13.86,33.12,44.19,64.318,97.118,83.509c52.933-19.19,83.258-50.389,97.121-83.509H652.882
z"/>
<path fill="#E77329" d="M819.918,178.021c-12.438-11.473-27.048-6.279-38.644-16.303c-9.984-8.638-24.631-12.079-35.744-11.113
c0.728-1.448,1.692-3.138,2.417-4.586c-52.65,12.559-58.443,82.121-10.385,90.093c0.603-7.368-5.314-11.837-5.557-19.083
c2.295,0.481,4.952,1.451,6.764,2.66c-0.724-8.215-7.966-9.896-7.729-20.05c0.482-20.531,10.906-33.256,29.706-34.782
c8.938-0.724,21.095,2.828,24.878,10.388c1.447,2.9,4.344,6.883,6.517,9.055c2.056,2.056,2.114,1.331,2.419-1.569
c0.637-6.124,11.557-8.859,24.392-2.896C822.331,181.402,822.439,180.348,819.918,178.021z"/>
<path fill="#E77329" d="M773.789,216.545c-3.861,2.295-8.815,10.989-16.664,11.836c0.121-2.896,0-7.609-0.481-9.417
c-4.469,6.883-5.559,15.697-16.908,23.427c-12.74,8.676-35.351,11.454-46.852-0.966c-6.04-6.521-9.904-15.216-6.525-27.539
c2.261-8.209,9.302-8.64,13.165-12.075c1.087-0.963,0.111-1.129-1.568-1.328c-7.127-0.845-9.201-10.727-3.141-25.601
c1.328-3.263-0.482-3.142-4.345,3.744c-5.504,9.799-5.438,19.038-8.456,27.292c-7.246,19.806-3.441,47.522,14.913,57.425
c-0.905,1.33-1.991,3.08-3.141,4.408C735.389,277.653,776.928,260.265,773.789,216.545z"/>
<path fill="#E77329" d="M762.198,185.147c2.414,4.83,9.419,8.212,11.591,14.732c-1.931,0-5.557,0.968-7.487,2.175
c5.193,2.416,7.971,2.78,12.798,6.644l1.207,0.604c15.456,16.421,22.185,32.696,16.426,47.338
c-2.896,7.368-8.927,15.604-18.718,18.719c-13.283,4.228-16.906-6.643-28.86-4.709c-0.842,0.136-0.188,0.825,0.966,1.33
c7.489,3.259,4.887,11.57-9.297,17.872c-1.088,0.481-1.163,0.574,1.236,0.847c8.542,0.966,19.351-1.828,24.966-4.832
c7.005-3.745,15.604-6.267,23.067-9.783c14.61-6.882,22.578-19.08,24.875-35.989c2.777,2.055,3.621,3.865,4.95,6.161
C825.956,218.963,806.875,183.937,762.198,185.147z"/>
<circle fill="#FFFFFF" cx="719.933" cy="215.819" r="2.468"/>
<path fill="#FFFFFF" d="M766.059,231.226c-1.357,0-2.463,1.105-2.463,2.466c0,1.365,1.105,2.472,2.463,2.472
c1.364,0,2.468-1.106,2.468-2.472C768.526,232.331,767.423,231.226,766.059,231.226z"/>
<path fill="#FFFFFF" d="M785.383,190.788c-1.363,0-2.471,1.101-2.471,2.466c0,1.364,1.107,2.468,2.471,2.468
c1.361,0,2.465-1.104,2.465-2.468C787.848,191.889,786.744,190.788,785.383,190.788z"/>
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

1
build/svg/AIDJ.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><!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" version="1.1" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>

After

Width:  |  Height:  |  Size: 377 B

83
build/svg/AL.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

6
build/svg/AM.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600">
<rect fill="#ff0000" width="1200" height="200"/>
<rect fill="#0000d6" y="200" width="1200" height="200"/>
<rect fill="#ffb100" y="400" width="1200" height="200"/>
</svg>

After

Width:  |  Height:  |  Size: 277 B

129
build/svg/ANHH.svg Normal file
View file

@ -0,0 +1,129 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="900"
height="600"
viewBox="-27 -14 54 36"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="Flag_of_the_Netherlands_Antilles.svg">
<metadata
id="metadata34">
<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="defs32">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 300 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="900 : 300 : 1"
inkscape:persp3d-origin="450 : 200 : 1"
id="perspective36" />
</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="1004"
id="namedview30"
showgrid="false"
inkscape:zoom="1.1125147"
inkscape:cx="468.641"
inkscape:cy="260.37544"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<rect
fill="white"
x="-27"
y="-14"
width="54"
height="36"
id="rect4" />
<rect
fill="#dc171d"
x="-6"
y="-14"
width="12"
height="36"
id="rect6" />
<rect
fill="#00007b"
x="-27"
y="-2"
width="54"
height="12"
id="rect8"
style="fill:#012a87;fill-opacity:1" />
<g
id="star"
fill="white"
transform="scale(1.5)">
<g
id="cone">
<polygon
id="triangle"
points="0,0 0,1 .5,1"
transform="translate(0,-1) rotate(18)" />
<use
xlink:href="#triangle"
transform="scale(-1,1)"
id="use13" />
</g>
<use
xlink:href="#cone"
transform="rotate(72)"
id="use15" />
<use
xlink:href="#cone"
transform="rotate(-72)"
id="use17" />
<use
xlink:href="#cone"
transform="rotate(144)"
id="use19" />
<use
xlink:href="#cone"
transform="rotate(-144)"
id="use21" />
</g>
<g
id="2stars">
<!-- 8/cos(Pi/8) -->
<use
xlink:href="#star"
transform="rotate(22.5) translate(8.65913760233915175039557128586223072097712) rotate(-22.5)"
id="use24" />
<use
xlink:href="#star"
transform="rotate(67.5) translate(8.65913760233915175039557128586223072097712) rotate(-67.5)"
id="use26" />
</g>
<use
xlink:href="#2stars"
transform="scale(-1,1)"
id="use28" />
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

20
build/svg/AO.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300">
<rect width="450" height="300" style="fill:#ce1126"/><rect width="450" height="150" y="150" style="fill:#000"/><path
d="M 199.32444,114.65618 L 218.94055,114.65618 L 224.99998,96.000328 L 231.0594,114.65618 L 250.67551,114.65618 L 234.80803,126.18448 L 240.86746,144.84033 L 224.99998,133.31202 L 209.1325,144.84033 L 215.19192,126.18448 L 199.32444,114.65618 z"
style="fill:#f9d616"/>
<path
d="M 302.62435,142.35494 C 303.12516,147.43953 303.12516,152.56101 302.62435,157.6456 L 287.69659,156.17534 C 288.10106,152.06855 288.10106,147.93196 287.69659,143.82518 L 302.62435,142.35494 M 299.6413,172.64248 C 298.15817,177.53166 296.19828,182.26331 293.78981,186.76922 L 280.56098,179.69826 C 282.50628,176.05888 284.0893,172.23717 285.28718,168.28821 L 299.6413,172.64248 M 285.29477,199.48295 C 282.05352,203.43239 278.43209,207.05385 274.48262,210.29507 L 264.96672,198.69993 C 268.15668,196.08201 271.08168,193.15698 273.6996,189.96705 L 285.29477,199.48295 M 261.76889,218.79011 C 257.26298,221.19858 252.53136,223.1585 247.64215,224.6416 L 243.28788,210.28751 C 247.23686,209.0896 251.05855,207.50658 254.69794,205.56131 L 261.76889,218.79011 M 232.6453,227.62468 C 227.5607,228.12546 222.4392,228.12546 217.35461,227.62468 L 218.82487,212.6969 C 222.93166,213.10139 227.06825,213.10139 231.17503,212.6969 L 232.6453,227.62468 M 202.35775,224.6416 C 197.46857,223.1585 192.73692,221.19858 188.23102,218.79011 L 195.30197,205.56131 C 198.94135,207.50658 202.76306,209.0896 206.71202,210.28751 L 202.35775,224.6416 M 247.64215,75.358912 C 252.53136,76.84204 257.26298,78.801952 261.76889,81.2104 L 254.69794,94.439224 C 251.05855,92.493928 247.23686,90.910936 243.28788,89.713024 L 247.64215,75.358912 M 274.48262,89.70544 C 278.43209,92.946688 282.05352,96.56812 285.29477,100.51758 L 273.6996,110.03349 C 271.08168,106.84353 268.15668,103.91853 264.96672,101.30061 L 274.48262,89.70544 M 293.78981,113.23132 C 296.19828,117.73722 298.15817,122.46887 299.6413,127.35806 L 285.28718,131.71233 C 284.0893,127.76337 282.50628,123.94166 280.56098,120.30227 L 293.78981,113.23132 z"
style="fill:#f9d616"/>
<path
d="M 280.58665,224.86618 L 287.87869,216.3146 C 291.71694,220.02891 296.88529,223.69038 300.6338,227.01716 C 304.38231,230.34392 307.25434,233.10958 309.57908,236.88884 C 312.98624,242.42773 309.16023,248.7008 303.85486,245.01872 C 300.98581,243.02751 299.18307,237.65214 294.78788,233.20395 C 291.53252,230.43267 288.96764,227.52745 280.78551,226.1257 C 280.39268,226.05841 280.27777,225.22842 280.58665,224.86618 z"
style="fill:#f9d616"/>
<path
d="M 291.40608,222.29687 C 291.40662,222.65696 291.21482,222.98995 290.90305,223.17016 C 290.59129,223.35037 290.20701,223.35037 289.89524,223.17016 C 289.58348,222.98995 289.39168,222.65696 289.39222,222.29687 C 289.39168,221.93677 289.58348,221.60378 289.89524,221.42357 C 290.20701,221.24337 290.59129,221.24337 290.90305,221.42357 C 291.21482,221.60378 291.40662,221.93677 291.40608,222.29687 L 291.40608,222.29687 z"
id="path13009"
style="fill:#000"/>
<path
d="M 232.5,78.781 L 231.075,92.131 C 260.47298,95.214208 283.5,119.82086 283.5,150.031 C 283.50002,182.32295 257.292,208.531 225,208.531 C 210.92054,208.53098 198.19836,203.3273 188.1,195.031 L 179.55,205.456 C 191.97622,215.65838 207.67944,222.03102 225,222.031 C 264.744,222.031 297,189.77505 297,150.031 C 297,112.86014 268.66694,82.590208 232.5,78.781 z"
style="fill:#f9d616"/>
<path
d="M 231.36058,197.84505 L 251.60791,209.8174 L 256.00949,226.89558 L 279.24991,225.13494 L 289.46162,213.16262 L 251.60791,186.9291 L 231.36058,197.84505 z"
style="fill:#000"/><path d="M 279.66324,223.6894 C 253.62799,206.37539 237.07238,197.02622 212.12131,182.83938 C 202.31974,177.26634 187.0985,163.25747 199.1052,139.81914 C 199.86106,155.20638 260.67394,197.4423 286.3703,215.80679 L 279.66324,223.6894 z" style="fill:#f9d616"/><path d="M 216.08561,167.51949 C 236.13137,186.41034 261.37565,201.82127 283.89761,218.85496" id="path11763" style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"/><use transform="translate(7.41957,6.4655991)" xlink:href="#path13009"/><use transform="translate(13.93812,13.090317)" xlink:href="#path13009"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

167
build/svg/AQ.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

114
build/svg/AR.svg Normal file
View file

@ -0,0 +1,114 @@
<?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">
<!-- Creator: CorelDRAW -->
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="2.4in" height="1.5in" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 2.4 1.5"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
<![CDATA[
.str1 {stroke:#85340A;stroke-width:0.00333465}
.str0 {stroke:#85340A;stroke-width:0.00333465}
.str2 {stroke:#85340A;stroke-width:0.00448819}
.fil5 {fill:#843511}
.fil4 {fill:#F6B40E}
.fil1 {fill:white}
.fil0 {fill:#74ACDF}
.fil3 {fill:#85340A}
.fil2 {fill:#F6B40E}
]]>
</style>
</defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"/>
<rect id="blue" class="fil0" width="2.4" height="1.5"/>
<rect id="white" class="fil1" y="0.5" width="2.4" height="0.5"/>
<path class="fil2 str0" d="M1.18974 0.75l0.00769291 0.204488c0,0 0,0.00384646 0.00256299,0.00384646 0.00256299,0 0.00256299,-0.00384646 0.00256299,-0.00384646l0.00769291 -0.204488m-0.0205118 0l0 0 0 0z"/>
<path class="fil3" d="M1.19487 0.75l0.00512992 0.140386 0.00512992 -0.140386m-0.0102598 0l0 0 0 0z"/>
<path class="fil2 str0" d="M1.18067 0.816063c-0.0117795,0.0257323 -0.00166535,0.0467598 -0.0134331,0.0692244 -0.0117638,0.0224646 -0.00440945,0.0409685 -0.00519685,0.0512756 -0.000787402,0.0103071 -0.00922047,0.0131693 -0.00709055,0.0155669 0.00212992,0.0023937 0.0109449,-0.00235433 0.0143819,-0.0160472 0.00344094,-0.013689 -0.00476772,-0.0215748 0.00934252,-0.049122 0.0141102,-0.0275472 0.00289764,-0.0399685 0.0170591,-0.064563m-0.015063 -0.00633465l0 0 0 0z"/>
<path class="fil3" d="M1.18392 0.82261c-0.00913386,0.0256142 0.000488189,0.0426181 -0.0117795,0.0643268 0.0136299,-0.0155433 0.00464567,-0.035689 0.0165512,-0.0620472m-0.00477165 -0.00227953l0 0 0 0z"/>
<path class="fil2 str0" d="M1.21026 0.75l-0.00769291 -0.204488c0,0 0,-0.00384646 -0.00256299,-0.00384646 -0.00256299,0 -0.00256299,0.00384646 -0.00256299,0.00384646l-0.00769291 0.204488m0.0205118 0l0 0 0 0z"/>
<path class="fil3" d="M1.20513 0.75l-0.00512992 -0.140386 -0.00512992 0.140386m0.0102598 0l0 0 0 0z"/>
<path class="fil2 str0" d="M1.21933 0.683937c0.0117795,-0.0257323 0.00166535,-0.0467598 0.0134331,-0.0692244 0.0117638,-0.0224646 0.00440945,-0.0409685 0.00519685,-0.0512756 0.000787402,-0.0103071 0.00922047,-0.0131693 0.00709055,-0.0155669 -0.00212992,-0.0023937 -0.0109449,0.00235433 -0.0143819,0.0160472 -0.00344094,0.013689 0.00476772,0.0215748 -0.00934252,0.049122 -0.0141102,0.0275472 -0.00289764,0.0399685 -0.0170591,0.064563m0.015063 0.00633465l0 0 0 0z"/>
<path class="fil3" d="M1.21608 0.67739c0.00913386,-0.0256142 -0.000488189,-0.0426181 0.0117795,-0.0643268 -0.0136299,0.0155433 -0.00464567,0.035689 -0.0165512,0.0620472m0.00477165 0.00227953l0 0 0 0z"/>
<path class="fil2 str0" d="M1.2 0.739744l-0.204488 0.00769291c0,0 -0.00384646,0 -0.00384646,0.00256299 0,0.00256299 0.00384646,0.00256299 0.00384646,0.00256299l0.204488 0.00769291m0 -0.0205118l0 0 0 0z"/>
<path class="fil3" d="M1.2 0.74487l-0.140386 0.00512992 0.140386 0.00512992m0 -0.0102598l0 0 0 0z"/>
<path class="fil2 str0" d="M1.13394 0.730673c-0.0257323,-0.0117795 -0.0467598,-0.00166535 -0.0692244,-0.0134331 -0.0224646,-0.0117638 -0.0409685,-0.00440945 -0.0512756,-0.00519685 -0.0103071,-0.000787402 -0.0131693,-0.00922047 -0.0155669,-0.00709055 -0.0023937,0.00212992 0.00235433,0.0109449 0.0160472,0.0143819 0.013689,0.00344094 0.0215748,-0.00476772 0.049122,0.00934252 0.0275472,0.0141102 0.0399685,0.00289764 0.064563,0.0170591m0.00633465 -0.015063l0 0 0 0z"/>
<path class="fil3" d="M1.12739 0.733917c-0.0256142,-0.00913386 -0.0426181,0.000488189 -0.0643268,-0.0117795 0.0155433,0.0136299 0.035689,0.00464567 0.0620472,0.0165512m0.00227953 -0.00477165l0 0 0 0z"/>
<path class="fil2 str0" d="M1.2 0.760256l0.204488 -0.00769291c0,0 0.00384646,0 0.00384646,-0.00256299 0,-0.00256299 -0.00384646,-0.00256299 -0.00384646,-0.00256299l-0.204488 -0.00769291m0 0.0205118l0 0 0 0z"/>
<path class="fil3" d="M1.2 0.75513l0.140386 -0.00512992 -0.140386 -0.00512992m0 0.0102598l0 0 0 0z"/>
<path class="fil2 str0" d="M1.26606 0.769327c0.0257323,0.0117795 0.0467598,0.00166535 0.0692244,0.0134331 0.0224646,0.0117638 0.0409685,0.00440945 0.0512756,0.00519685 0.0103071,0.000787402 0.0131693,0.00922047 0.0155669,0.00709055 0.0023937,-0.00212992 -0.00235433,-0.0109449 -0.0160472,-0.0143819 -0.013689,-0.00344094 -0.0215748,0.00476772 -0.049122,-0.00934252 -0.0275472,-0.0141102 -0.0399685,-0.00289764 -0.064563,-0.0170591m-0.00633465 0.015063l0 0 0 0z"/>
<path class="fil3" d="M1.27261 0.766083c0.0256142,0.00913386 0.0426181,-0.000488189 0.0643268,0.0117795 -0.0155433,-0.0136299 -0.035689,-0.00464567 -0.0620472,-0.0165512m-0.00227953 0.00477165l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19275 0.742748l-0.139154 0.150031c0,0 -0.00272047,0.00272047 -0.000909449,0.00453543 0.00181496,0.00181102 0.00453543,-0.000909449 0.00453543,-0.000909449l0.150031 -0.139154m-0.0145039 -0.0145039l0 0 0 0z"/>
<path class="fil3" d="M1.19637 0.746374l-0.0956417 0.102894 0.102894 -0.0956417m-0.00725197 -0.00725197l0 0 0 0z"/>
<path class="fil2 str0" d="M1.13962 0.783047c-0.0265197,0.00986614 -0.0342402,0.0318858 -0.0584449,0.0394528 -0.0242008,0.00756299 -0.0320866,0.0258504 -0.0399331,0.0325787 -0.00784252,0.00673228 -0.0158307,0.00279528 -0.0160197,0.00599213 -0.000188976,0.00320079 0.00940157,0.00607874 0.0215157,-0.00117323 0.0121142,-0.00724803 0.0118858,-0.018626 0.0413386,-0.0281299 0.0294567,-0.00950394 0.030315,-0.0262126 0.0577165,-0.0335906m-0.00617323 -0.0151299l0 0 0 0z"/>
<path class="fil3" d="M1.13729 0.789972c-0.0245748,0.0116535 -0.0297953,0.0304803 -0.0538189,0.0371575 0.0206299,-0.00135433 0.0285197,-0.0219528 0.0555787,-0.0321732m-0.00175984 -0.00498425l0 0 0 0z"/>
<path class="fil2 str0" d="M1.20725 0.757252l0.139154 -0.150031c0,0 0.00272047,-0.00272047 0.000909449,-0.00453543 -0.00181496,-0.00181102 -0.00453543,0.000909449 -0.00453543,0.000909449l-0.150031 0.139154m0.0145079 0.0145039l0 0 0 0z"/>
<path class="fil3" d="M1.20363 0.753626l0.0956417 -0.102894 -0.102894 0.0956417m0.00725197 0.00725197l0 0 0 0z"/>
<path class="fil2 str0" d="M1.26038 0.716953c0.0265197,-0.00986614 0.0342402,-0.0318858 0.0584449,-0.0394528 0.0242008,-0.00756299 0.0320866,-0.0258504 0.0399331,-0.0325787 0.00784252,-0.00673228 0.0158307,-0.00279528 0.0160197,-0.00599213 0.000188976,-0.00320079 -0.00940157,-0.00607874 -0.0215157,0.00117323 -0.0121142,0.00724803 -0.0118858,0.018626 -0.0413386,0.0281299 -0.0294567,0.00950394 -0.030315,0.0262126 -0.0577165,0.0335906m0.00617323 0.0151299l0 0 0 0z"/>
<path class="fil3" d="M1.26271 0.710028c0.0245748,-0.0116535 0.0297953,-0.0304803 0.0538189,-0.0371575 -0.0206299,0.00135433 -0.0285197,0.0219528 -0.0555787,0.0321732m0.00175984 0.00498425l0 0 0 0z"/>
<path class="fil2 str0" d="M1.20725 0.742748l-0.150031 -0.139154c0,0 -0.00272047,-0.00272047 -0.00453543,-0.000909449 -0.00181102,0.00181496 0.000909449,0.00453543 0.000909449,0.00453543l0.139154 0.150031m0.0145079 -0.0145039l0 0 0 0z"/>
<path class="fil3" d="M1.20363 0.746374l-0.102894 -0.0956417 0.0956417 0.102894m0.00725197 -0.00725197l0 0 0 0z"/>
<path class="fil2 str0" d="M1.16695 0.689618c-0.00986614,-0.0265197 -0.0318858,-0.0342402 -0.0394528,-0.0584449 -0.00756299,-0.0242008 -0.0258504,-0.0320866 -0.0325787,-0.0399331 -0.00673228,-0.00784252 -0.00279528,-0.0158307 -0.00599213,-0.0160197 -0.00320079,-0.000188976 -0.00607874,0.00940157 0.00117323,0.0215157 0.00724803,0.0121142 0.018626,0.0118858 0.0281299,0.0413386 0.00950394,0.0294567 0.0262126,0.030315 0.0335906,0.0577165m0.0151299 -0.00617323l0 0 0 0z"/>
<path class="fil3" d="M1.16003 0.687287c-0.0116535,-0.0245748 -0.0304803,-0.0297953 -0.0371575,-0.0538189 0.00135433,0.0206299 0.0219528,0.0285197 0.0321732,0.0555787m0.00498425 -0.00175984l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19275 0.757252l0.150031 0.139154c0,0 0.00272047,0.00272047 0.00453543,0.000909449 0.00181102,-0.00181496 -0.000909449,-0.00453543 -0.000909449,-0.00453543l-0.139154 -0.150031m-0.0145039 0.0145039l0 0 0 0z"/>
<path class="fil3" d="M1.19637 0.753626l0.102894 0.0956417 -0.0956417 -0.102894m-0.00725197 0.00725197l0 0 0 0z"/>
<path class="fil2 str0" d="M1.23305 0.810382c0.00986614,0.0265197 0.0318858,0.0342402 0.0394528,0.0584449 0.00756299,0.0242008 0.0258504,0.0320866 0.0325787,0.0399331 0.00673228,0.00784252 0.00279528,0.0158307 0.00599213,0.0160197 0.00320079,0.000188976 0.00607874,-0.00940157 -0.00117323,-0.0215157 -0.00724803,-0.0121142 -0.018626,-0.0118858 -0.0281299,-0.0413386 -0.00950394,-0.0294567 -0.0262126,-0.030315 -0.0335906,-0.0577165m-0.0151299 0.00617323l0 0 0 0z"/>
<path class="fil3" d="M1.23997 0.812713c0.0116535,0.0245748 0.0304803,0.0297953 0.0371575,0.0538189 -0.00135433,-0.0206299 -0.0219528,-0.0285197 -0.0321732,-0.0555787m-0.00498425 0.00175984l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19052 0.746075l-0.0711457 0.191866c0,0 -0.00147244,0.00355118 0.000893701,0.00453543 0.00237008,0.000980315 0.00384252,-0.0025748 0.00384252,-0.0025748l0.0853622 -0.185976m-0.0189528 -0.00785039l0 0 0 0z"/>
<path class="fil3" d="M1.19526 0.748035l-0.0489882 0.131661 0.0584606 -0.127732m-0.00947244 -0.00392913l0 0 0 0z"/>
<path class="fil2 str0" d="M1.15686 0.803638c-0.0207283,0.0192677 -0.0194331,0.042563 -0.0388976,0.058815 -0.0194685,0.016252 -0.0197559,0.0361654 -0.0244252,0.0453819 -0.00467323,0.00922047 -0.0135591,0.00864173 -0.0125118,0.0116693 0.00105118,0.00302756 0.0110157,0.00201181 0.0194331,-0.0093189 0.00841732,-0.0113346 0.00385039,-0.0217598 0.0274252,-0.041811 0.0235787,-0.0200512 0.0179764,-0.035815 0.0404685,-0.0531181m-0.0114921 -0.0116181l0 0 0 0z"/>
<path class="fil3" d="M1.15736 0.810929c-0.0182441,0.0201693 -0.0158622,0.039563 -0.0355039,0.0549252 0.0185433,-0.00914567 0.0179488,-0.0311969 0.0390354,-0.0509921m-0.0035315 -0.00393307l0 0 0 0z"/>
<path class="fil2 str0" d="M1.20948 0.753925l0.0711457 -0.191866c0,0 0.00147244,-0.00355118 -0.000893701,-0.00453543 -0.00237008,-0.000980315 -0.00384252,0.0025748 -0.00384252,0.0025748l-0.0853622 0.185976m0.0189528 0.00785039l0 0 0 0z"/>
<path class="fil3" d="M1.20474 0.751965l0.0489882 -0.131661 -0.0584606 0.127732m0.00947244 0.00392913l0 0 0 0z"/>
<path class="fil2 str0" d="M1.24314 0.696362c0.0207283,-0.0192677 0.0194331,-0.042563 0.0388976,-0.058815 0.0194685,-0.016252 0.0197559,-0.0361654 0.0244252,-0.0453819 0.00467323,-0.00922047 0.0135591,-0.00864173 0.0125118,-0.0116693 -0.00105118,-0.00302756 -0.0110157,-0.00201181 -0.0194331,0.0093189 -0.00841732,0.0113346 -0.00385039,0.0217598 -0.0274252,0.041811 -0.0235787,0.0200512 -0.0179764,0.035815 -0.0404685,0.0531181m0.0114921 0.0116181l0 0 0 0z"/>
<path class="fil3" d="M1.24264 0.689071c0.0182441,-0.0201693 0.0158622,-0.039563 0.0355039,-0.0549252 -0.0185433,0.00914567 -0.0179488,0.0311969 -0.0390354,0.0509921m0.0035315 0.00393307l0 0 0 0z"/>
<path class="fil2 str0" d="M1.20393 0.740524l-0.191866 -0.0711457c0,0 -0.00355118,-0.00147244 -0.00453543,0.000893701 -0.000980315,0.00237008 0.0025748,0.00384252 0.0025748,0.00384252l0.185976 0.0853622m0.00785039 -0.0189528l0 0 0 0z"/>
<path class="fil3" d="M1.20196 0.745264l-0.131661 -0.0489882 0.127732 0.0584606m0.00392913 -0.00947244l0 0 0 0z"/>
<path class="fil2 str0" d="M1.14636 0.706862c-0.0192677,-0.0207283 -0.042563,-0.0194331 -0.058815,-0.0388976 -0.016252,-0.0194685 -0.0361654,-0.0197559 -0.0453819,-0.0244252 -0.00922047,-0.00467323 -0.00864173,-0.0135591 -0.0116693,-0.0125118 -0.00302756,0.00105118 -0.00201181,0.0110157 0.0093189,0.0194331 0.0113346,0.00841732 0.0217598,0.00385039 0.041811,0.0274252 0.0200512,0.0235787 0.035815,0.0179764 0.0531181,0.0404685m0.0116181 -0.0114921l0 0 0 0z"/>
<path class="fil3" d="M1.13907 0.707358c-0.0201693,-0.0182441 -0.039563,-0.0158622 -0.0549252,-0.0355039 0.00914567,0.0185433 0.0311969,0.0179488 0.0509921,0.0390354m0.00393307 -0.0035315l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19607 0.759476l0.191866 0.0711457c0,0 0.00355118,0.00147244 0.00453543,-0.000893701 0.000980315,-0.00237008 -0.0025748,-0.00384252 -0.0025748,-0.00384252l-0.185976 -0.0853622m-0.00785039 0.0189528l0 0 0 0z"/>
<path class="fil3" d="M1.19804 0.754736l0.131661 0.0489882 -0.127732 -0.0584606m-0.00392913 0.00947244l0 0 0 0z"/>
<path class="fil2 str0" d="M1.25364 0.793138c0.0192677,0.0207283 0.042563,0.0194331 0.058815,0.0388976 0.016252,0.0194685 0.0361654,0.0197559 0.0453819,0.0244252 0.00922047,0.00467323 0.00864173,0.0135591 0.0116693,0.0125118 0.00302756,-0.00105118 0.00201181,-0.0110157 -0.0093189,-0.0194331 -0.0113346,-0.00841732 -0.0217598,-0.00385039 -0.041811,-0.0274252 -0.0200512,-0.0235787 -0.035815,-0.0179764 -0.0531181,-0.0404685m-0.0116181 0.0114921l0 0 0 0z"/>
<path class="fil3" d="M1.26093 0.792642c0.0201693,0.0182441 0.039563,0.0158622 0.0549252,0.0355039 -0.00914567,-0.0185433 -0.0311969,-0.0179488 -0.0509921,-0.0390354m-0.00393307 0.0035315l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19607 0.740524l-0.185976 0.0853622c0,0 -0.00355512,0.00147244 -0.0025748,0.00383858 0.000980315,0.00237008 0.00453543,0.000897638 0.00453543,0.000897638l0.191866 -0.0711457m-0.00785039 -0.0189528l0 0 0 0z"/>
<path class="fil3" d="M1.19804 0.745264l-0.127732 0.0584606 0.131661 -0.0489882m-0.00392913 -0.00947244l0 0 0 0z"/>
<path class="fil2 str0" d="M1.13157 0.757425c-0.0282835,-0.00103543 -0.0438386,0.0163583 -0.0690945,0.0140827 -0.0252598,-0.00227165 -0.0395394,0.0116024 -0.0493622,0.0148189 -0.00982283,0.00321654 -0.0156969,-0.00348031 -0.0170945,-0.000594488 -0.00139764,0.00288583 0.0063622,0.0092126 0.0203268,0.00714961 0.0139646,-0.00206299 0.0181102,-0.0126614 0.0489606,-0.0101693 0.0308504,0.00249213 0.0380354,-0.0126181 0.0661732,-0.00894488m9.05512e-005 -0.0163425l0 0 0 0z"/>
<path class="fil3" d="M1.12676 0.762929c-0.0271614,0.0013622 -0.039189,0.0167598 -0.0639409,0.0137362 0.0195748,0.00664173 0.034748,-0.00936614 0.0636614,-0.00845669m0.000279528 -0.00527953l0 0 0 0z"/>
<path class="fil2 str0" d="M1.20393 0.759476l0.185976 -0.0853622c0,0 0.00355512,-0.00147244 0.0025748,-0.00383858 -0.000980315,-0.00237008 -0.00453543,-0.000897638 -0.00453543,-0.000897638l-0.191866 0.0711457m0.00785039 0.0189528l0 0 0 0z"/>
<path class="fil3" d="M1.20196 0.754736l0.127732 -0.0584606 -0.131661 0.0489882m0.00392913 0.00947244l0 0 0 0z"/>
<path class="fil2 str0" d="M1.26843 0.742575c0.0282835,0.00103543 0.0438386,-0.0163583 0.0690945,-0.0140827 0.0252598,0.00227165 0.0395394,-0.0116024 0.0493622,-0.0148189 0.00982283,-0.00321654 0.0156969,0.00348031 0.0170945,0.000594488 0.00139764,-0.00288583 -0.0063622,-0.0092126 -0.0203268,-0.00714961 -0.0139646,0.00206299 -0.0181102,0.0126614 -0.0489606,0.0101693 -0.0308504,-0.00249213 -0.0380354,0.0126181 -0.0661732,0.00894488m-9.05512e-005 0.0163425l0 0 0 0z"/>
<path class="fil3" d="M1.27324 0.737071c0.0271614,-0.0013622 0.039189,-0.0167598 0.0639409,-0.0137362 -0.0195748,-0.00664173 -0.034748,0.00936614 -0.0636614,0.00845669m-0.000279528 0.00527953l0 0 0 0z"/>
<path class="fil4 str1" d="M1.20948 0.746075l-0.0853622 -0.185976c0,0 -0.00147244,-0.00355512 -0.00383858,-0.0025748 -0.00237008,0.000980315 -0.000897638,0.00453543 -0.000897638,0.00453543l0.0711457 0.191866m0.0189528 -0.00785039l0 0 0 0z"/>
<path class="fil3" d="M1.20474 0.748035l-0.0584606 -0.127732 0.0489882 0.131661m0.00947244 -0.00392913l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19257 0.681571c0.00103543,-0.0282835 -0.0163583,-0.0438386 -0.0140827,-0.0690945 0.00227165,-0.0252598 -0.0116024,-0.0395394 -0.0148189,-0.0493622 -0.00321654,-0.00982283 0.00348031,-0.0156969 0.000594488,-0.0170945 -0.00288583,-0.00139764 -0.0092126,0.0063622 -0.00714961,0.0203268 0.00206299,0.0139646 0.0126614,0.0181102 0.0101693,0.0489606 -0.00249213,0.0308504 0.0126181,0.0380354 0.00894488,0.0661732m0.0163425 9.05512e-005l0 0 0 0z"/>
<path class="fil3" d="M1.18707 0.676764c-0.0013622,-0.0271614 -0.0167598,-0.039189 -0.0137362,-0.0639409 -0.00664173,0.0195748 0.00936614,0.034748 0.00845669,0.0636614m0.00527953 0.000279528l0 0 0 0z"/>
<path class="fil2 str0" d="M1.19052 0.753925l0.0853622 0.185976c0,0 0.00147244,0.00355512 0.00383858,0.0025748 0.00237008,-0.000980315 0.000897638,-0.00453543 0.000897638,-0.00453543l-0.0711457 -0.191866m-0.0189528 0.00785039l0 0 0 0z"/>
<path class="fil3" d="M1.19526 0.751965l0.0584606 0.127732 -0.0489882 -0.131661m-0.00947244 0.00392913l0 0 0 0z"/>
<path class="fil2 str0" d="M1.20743 0.818429c-0.00103543,0.0282835 0.0163583,0.0438386 0.0140827,0.0690945 -0.00227165,0.0252598 0.0116024,0.0395394 0.0148189,0.0493622 0.00321654,0.00982283 -0.00348031,0.0156969 -0.000594488,0.0170945 0.00288583,0.00139764 0.0092126,-0.0063622 0.00714961,-0.0203268 -0.00206299,-0.0139646 -0.0126614,-0.0181102 -0.0101693,-0.0489606 0.00249213,-0.0308504 -0.0126181,-0.0380354 -0.00894488,-0.0661732m-0.0163425 -9.05512e-005l0 0 0 0z"/>
<path class="fil3" d="M1.21293 0.823236c0.0013622,0.0271614 0.0167598,0.039189 0.0137362,0.0639409 0.00664173,-0.0195748 -0.00936614,-0.034748 -0.00845669,-0.0636614m-0.00527953 -0.000279528l0 0 0 0z"/>
<circle class="fil2 str2" cx="1.2" cy="0.75" r="0.0833307"/>
<path id="loweyecontour" class="fil5" d="M1.2141 0.739744c0.00640945,0.00576772 0.0205118,0.00640945 0.0301299,-0.000641732l-0.00448819 -0.000641732c-0.00640945,0.00705118 -0.0166693,0.00640945 -0.0230787,0.00128346l0 -0.00128346m-0.00256299 0.00128346l0 0 0 0z"/>
<path id="eyebrow_nose" class="fil3" d="M1.25256 0.732051c-0.0147441,-0.0128189 -0.0333307,-0.0147441 -0.0435906,-0.00512598 -0.00250787,0.0033622 -0.00411811,0.00695669 -0.00477953,0.0107087 -0.0012874,0.00729921 0.000992126,0.015185 0.00670866,0.0232677 -0.000645669,-3.93701e-006 -0.00192913,0.000637795 -0.00256693,0.00127953 -0.00509449,-0.00973228 -0.0068937,-0.0197283 -0.00521654,-0.0292362 0.000437008,-0.00248425 0.00112205,-0.00492913 0.00201181,-0.00730709 0.0141024,-0.0115354 0.0333307,-0.0128189 0.0474331,0.00641339z"/>
<path id="uppalpebra" class="fil3" d="M1.22949 0.728205c-0.00833465,0 -0.0102559,0.0019252 -0.0141024,0.00512992 -0.00384646,0.00320472 -0.00577165,0.00256299 -0.00641339,0.00320472 -0.000637795,0.000641732 0,0.00256299 0.00128346,0.00192126 0.00128346,-0.000641732 0.00384646,-0.00192126 0.00769291,-0.00512598 0.00384646,-0.00320866 0.00769291,-0.00320472 0.0115394,-0.00320472 0.0115394,0 0.0179488,0.00961417 0.0192283,0.00897244 0.00128346,-0.000641732 -0.00640945,-0.0108976 -0.0192283,-0.0108976z"/>
<path id="upeyecontour" class="fil3" d="M1.24423 0.739102c-0.00833465,-0.00897244 -0.0237205,-0.00961417 -0.0301299,0.000641732l0.00256299 0c0.00640945,-0.0102559 0.0217953,-0.00577165 0.0230787,-0.00128346l0 0.00128346m0.00448819 -0.000641732l0 0 0 0z"/>
<circle id="pupil" class="fil3" cx="1.2282" cy="0.738461" r="0.00576772"/>
<path id="lowpalpebra" class="fil3" d="M1.24487 0.742307c-0.0108976,0.00833465 -0.0217953,0.00769291 -0.0282047,0.00384646 -0.00640945,-0.00384646 -0.00640945,-0.00512598 -0.00512598,-0.00512598 0.00128346,0 0.00256299,0.00127953 0.00769291,0.00384252 0.00512598,0.00256693 0.0128189,0.00256693 0.0256378,-0.00256299z"/>
<path id="nose" class="fil3" d="M1.21346 0.761555c0.00153543,0.000543307 0.00255906,0.00199606 0.00255906,0.00362205 0,0.00212205 -0.00172441,0.00384646 -0.00384646,0.00384646 -0.00203543,0 -0.00372047,-0.00159055 -0.00383858,-0.00362598 -0.000641732,0.00128346 -0.00320472,0.00512992 -0.00833465,0.00512992l-0.00128346 0 0.00128346 0.0019252c0.00128346,0 0.00512992,0 0.00769291,-0.0019252 0.00107874,0.00154724 0.00284646,0.0024685 0.00473228,0.0024685 0.00318504,0 0.00576772,-0.00258268 0.00576772,-0.00576772 0,-0.0027874 -0.00199213,-0.00517717 -0.00473228,-0.00567717m0 3.93701e-006l0 0 0 0z"/>
<path id="uplip" class="fil3" d="M1.22115 0.788244c-0.00576772,-0.00384646 -0.00833465,-0.00961417 -0.0147441,-0.00961417 -0.00127953,0 -0.00384646,0.000641732 -0.00640945,0.00192126l-0.00128346 0 0.00128346 0.0019252c0.00256299,0 0.00640945,-0.00320472 0.0108976,-0.000641732 0.00448819,0.00256693 0.00705118,0.00512992 0.0102559,0.00640945z"/>
<path id="midlip" class="fil3" d="M1.21923 0.788244c-0.0128228,-0.00384646 -0.0153858,-0.00127953 -0.0192323,-0.00127953l-0.00128346 0 0.00128346 0.00256299c0.00512992,0 0.00769291,-0.00384646 0.0192323,-0.00128346z"/>
<path id="uplip_0" class="fil3" d="M1.22115 0.788244c-0.0141024,-0.00127953 -0.00961417,0.00705118 -0.0211535,0.00705118l-0.00128346 0 0.00128346 0.0019252c0.0141024,0 0.00769291,-0.00769291 0.0211535,-0.00897638z"/>
<path id="chin" class="fil3" d="M1.21154 0.808972c0,-0.00637008 -0.00516929,-0.0115394 -0.0115394,-0.0115394 -0.00637008,0 -0.0115394,0.00516929 -0.0115394,0.0115394 0.00126772,-0.00534252 0.00604724,-0.00911811 0.0115394,-0.00911811 0.00549606,0 0.0102717,0.00377559 0.0115394,0.00911811m0 0l0 0 0 0z"/>
<path id="nose_1" class="fil3" d="M1.18729 0.761555c-0.00153543,0.000543307 -0.00255906,0.00199606 -0.00255906,0.00362205 0,0.00212205 0.00172441,0.00384646 0.00384646,0.00384646 0.00203543,0 0.00372047,-0.00159055 0.00383858,-0.00362598 0.000641732,0.00128346 0.00320472,0.00512992 0.00833465,0.00512992l0.00128346 0 -0.00128346 0.0019252c-0.00128346,0 -0.00512992,0 -0.00769291,-0.0019252 -0.00107874,0.00154724 -0.00284646,0.0024685 -0.00473228,0.0024685 -0.00318504,0 -0.00576772,-0.00258268 -0.00576772,-0.00576772 0,-0.0027874 0.00199213,-0.00517717 0.00473228,-0.00567717m0 3.93701e-006l0 0 0 0z"/>
<path id="eyebrow_nose_2" class="fil3" d="M1.14819 0.732051c0.0147441,-0.0128189 0.0333307,-0.0147441 0.0435906,-0.00512598 0.00250787,0.0033622 0.00411811,0.00695669 0.00477953,0.0107087 0.0012874,0.00729921 -0.000992126,0.015185 -0.00670866,0.0232677 0.000645669,-3.93701e-006 0.00192913,0.000637795 0.00256693,0.00127953 0.00509449,-0.00973228 0.0068937,-0.0197283 0.00521654,-0.0292362 -0.000437008,-0.00248425 -0.00112205,-0.00492913 -0.00201181,-0.00730709 -0.0141024,-0.0115354 -0.0333307,-0.0128189 -0.0474331,0.00641339z"/>
<path id="uppalpebra_3" class="fil3" d="M1.17126 0.728205c0.00833465,0 0.0102559,0.0019252 0.0141024,0.00512992 0.00384646,0.00320472 0.00577165,0.00256299 0.00641339,0.00320472 0.000637795,0.000641732 0,0.00256299 -0.00128346,0.00192126 -0.00128346,-0.000641732 -0.00384646,-0.00192126 -0.00769291,-0.00512598 -0.00384646,-0.00320866 -0.00769291,-0.00320472 -0.0115394,-0.00320472 -0.0115394,0 -0.0179488,0.00961417 -0.0192283,0.00897244 -0.00128346,-0.000641732 0.00640945,-0.0108976 0.0192283,-0.0108976z"/>
<path id="upeyecontour_4" class="fil3" d="M1.15652 0.739102c0.00833465,-0.00897244 0.0237205,-0.00961417 0.0301299,0.000641732l-0.00256299 0c-0.00640945,-0.0102559 -0.0217953,-0.00577165 -0.0230787,-0.00128346l0 0.00128346m-0.00448819 -0.000641732l0 0 0 0z"/>
<circle id="pupil_5" class="fil3" cx="1.17254" cy="0.738461" r="0.00576772"/>
<path id="lowpalpebra_6" class="fil3" d="M1.15588 0.742307c0.0108976,0.00833465 0.0217953,0.00769291 0.0282047,0.00384646 0.00640945,-0.00384646 0.00640945,-0.00512598 0.00512598,-0.00512598 -0.00128346,0 -0.00256299,0.00127953 -0.00769291,0.00384252 -0.00512598,0.00256693 -0.0128189,0.00256693 -0.0256378,-0.00256299z"/>
<g id="_274573424">
<path id="uplip_7" class="fil3" d="M1.17878 0.788244c0.00576772,-0.00384646 0.00833465,-0.00961417 0.0147441,-0.00961417 0.00127953,0 0.00384646,0.000641732 0.00640945,0.00192126l0.00128346 0 -0.00128346 0.0019252c-0.00256299,0 -0.00640945,-0.00320472 -0.0108976,-0.000641732 -0.00448819,0.00256693 -0.00705118,0.00512992 -0.0102559,0.00640945z"/>
<path id="midlip_8" class="fil3" d="M1.1807 0.788244c0.0128228,-0.00384646 0.0153858,-0.00127953 0.0192323,-0.00127953l0.00128346 0 -0.00128346 0.00256299c-0.00512992,0 -0.00769291,-0.00384646 -0.0192323,-0.00128346z"/>
<path id="uplip_9" class="fil3" d="M1.17878 0.788244c0.0141024,-0.00127953 0.00961417,0.00705118 0.0211535,0.00705118l0.00128346 0 -0.00128346 0.0019252c-0.0141024,0 -0.00769291,-0.00769291 -0.0211535,-0.00897638z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

154
build/svg/AS.svg Normal file
View file

@ -0,0 +1,154 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!-- Created with Sodipodi ("http://www.sodipodi.com/") --><svg height="140mm" id="svg548" sodipodi:docbase="/home/tobias/Desktop/Flags" sodipodi:docname="/home/tobias/Desktop/Flags/American_Samoa.svg" sodipodi:version="0.33pre" width="280mm" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs id="defs550"/>
<sodipodi:namedview id="base"/>
<rect height="496.062958" id="rect877" style="font-size:12;fill:#000066;stroke-width:1pt;" width="992.125977" x="0.000000" y="0.000024"/>
<path d="M -2.34375e-05 248.031 L 992.126 496.063 L 992.126 -0.000373841 L -2.34375e-05 248.031 z " id="path1241" sodipodi:nodetypes="cccc" style="font-size:12;fill:#bd1021;fill-rule:evenodd;stroke-width:1pt;fill-opacity:1;"/>
<path d="M 992.126 26.5747 L 992.126 469.488 L 106.299 248.031 L 992.126 26.5747 z " id="path1244" sodipodi:nodetypes="cccc" style="font-size:12;fill:#ffffff;fill-rule:evenodd;stroke-width:1pt;fill-opacity:1;"/>
<g id="g1279" transform="matrix(1.364870,0.000000,0.000000,1.364870,645.5845,66.06387)">
<path d="M 131.809 174.069 C 131.809 174.069 127.271 170.356 132.634 164.374 C 129.746 161.899 132.428 157.155 132.428 157.155 C 132.428 157.155 127.477 155.298 132.634 147.666 C 128.921 145.191 130.571 139.621 130.571 139.621 C 130.571 139.621 118.401 135.083 129.953 130.752 C 120.464 134.877 111.594 125.182 111.594 125.182 L 97.7739 125.595 C 95.4361 114.112 77.2152 124.082 90.7606 91.147 C 87.2539 90.5281 83.3347 89.4969 79.4155 92.3847 C 75.4963 95.2725 64.3575 101.461 57.7567 95.2725 C 51.156 89.0843 62.0885 80.2144 62.2948 80.0082 C 62.501 79.8019 76.9402 72.376 79.003 67.4255 C 78.7967 63.7125 74.2586 60.8248 78.3841 52.78 C 83.1284 45.1479 112.213 37.9283 125.415 35.453 C 131.809 32.5652 134.697 26.9958 134.697 26.9958 L 136.141 32.3589 C 136.141 32.3589 165.432 23.6954 166.876 19.5699 C 168.32 15.4444 167.495 23.2828 167.495 23.2828 C 179.046 22.2514 193.691 12.3503 195.754 16.8883 C 205.449 15.0319 224.014 6.78089 224.014 6.78089 C 224.014 6.78089 230.408 6.57471 225.87 13.588 C 228.758 18.126 225.045 22.0452 224.839 22.0452 C 224.632 22.0452 226.076 26.5832 222.363 29.0585 C 223.602 32.9777 220.094 36.0718 220.094 36.0718 C 220.094 36.0718 221.745 40.8161 215.144 43.2914 C 215.763 47.4169 211.431 48.242 211.431 48.242 C 211.431 48.242 212.05 52.5738 209.162 54.4302 C 209.162 57.7306 205.862 59.3808 205.862 59.3808 C 205.862 59.3808 207.924 60.6184 205.036 62.6812 C 202.149 64.7439 172.239 83.1023 172.239 82.896 C 172.239 82.6898 194.104 86.8152 195.548 87.6403 C 196.992 88.4654 213.494 99.3979 213.494 99.3979 L 196.785 120.025 C 196.785 120.025 178.221 117.963 177.396 118.994 C 176.571 120.025 181.315 120.438 182.346 122.088 C 183.378 123.738 185.028 127.658 188.328 127.245 C 191.629 126.832 182.14 133.227 175.952 133.846 C 175.952 136.115 183.79 136.321 185.853 134.465 C 187.916 132.608 180.902 139.828 180.077 140.859 C 179.252 141.89 189.36 139.415 189.36 139.415 C 189.36 139.415 187.709 146.222 178.84 148.285 C 182.346 154.061 180.902 157.774 180.696 157.774 C 180.49 157.774 174.92 151.998 169.557 153.029 C 171.001 158.599 175.333 163.755 176.571 164.581 C 177.808 165.406 166.876 165.199 165.432 162.105 C 163.988 159.011 162.75 169.531 166.669 172.832 C 162.132 173.038 158.212 170.356 158.212 170.356 C 158.212 170.356 155.531 176.544 157.387 179.639 C 159.244 182.733 150.993 173.45 150.993 173.45 L 135.316 180.051 L 131.809 174.069 z " id="path1211" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc" style="fill:#9c3900;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1.25;stroke-linejoin:round;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"/>
<path d="M 10.6525 161.794 C 11.0199 161.794 33.427 161.426 43.7122 155.549 C 48.8548 163.63 55.834 169.14 55.834 169.14 L 59.14 157.386 C 59.14 157.386 67.2212 157.753 67.9559 159.59 C 66.8539 161.793 66.4866 164.732 66.4866 164.732 C 66.4866 164.732 71.9965 165.1 72.3638 165.834 C 72.7311 166.569 70.8945 172.813 70.8945 172.813 L 94.4036 178.323 C 94.4036 178.323 96.2402 169.14 98.0768 170.242 C 99.9135 171.344 107.995 182.731 119.382 183.466 C 130.769 184.201 131.504 173.915 131.504 173.915 L 134.075 175.385 C 134.075 175.385 138.85 165.1 139.585 165.1 C 140.32 165.1 141.422 166.569 147.666 166.569 C 149.503 168.773 150.238 173.915 150.238 173.915 C 150.238 173.915 143.258 180.895 145.462 186.405 C 147.666 191.915 148.034 190.445 148.034 190.445 L 198.725 202.567 C 198.725 202.567 201.297 206.608 196.889 208.812 C 196.889 209.179 145.83 197.057 145.83 197.057 C 145.83 197.057 141.054 202.567 137.381 201.465 C 133.708 200.363 136.279 203.669 136.279 203.669 L 191.378 208.077 C 191.378 208.077 195.419 213.22 192.48 214.689 C 188.807 215.056 132.973 211.016 132.973 211.016 C 132.973 211.016 129.667 217.995 125.994 212.118 C 123.423 216.158 120.484 211.016 120.484 211.016 C 120.484 211.016 115.709 214.689 114.974 210.648 C 110.933 213.587 108.362 208.812 108.362 208.812 L 84.853 207.342 L 83.3837 209.546 C 83.3837 209.546 87.4243 210.648 81.1797 213.22 C 74.9351 215.791 118.647 214.689 119.749 215.056 C 120.851 215.424 116.811 218.73 116.811 218.73 C 116.811 218.73 139.218 220.199 143.258 215.424 C 147.299 210.648 141.789 221.668 141.789 221.668 C 141.789 221.668 159.421 220.934 159.421 220.199 C 159.421 219.464 159.053 225.709 146.932 224.974 C 154.278 229.75 163.461 232.688 163.461 232.688 C 163.461 232.688 154.278 234.892 143.626 232.321 C 145.462 237.096 153.544 241.504 153.544 241.504 C 153.544 241.504 147.666 246.647 134.442 234.157 C 138.116 240.769 135.177 243.341 134.81 242.606 C 134.442 241.871 128.198 232.688 113.505 229.382 C 122.688 235.259 118.647 237.831 118.647 237.831 C 118.647 237.831 113.872 229.382 106.158 237.831 C 103.219 230.117 91.8323 225.709 77.8738 224.974 C 73.4659 219.832 70.8945 221.301 60.6093 218.362 C 54.7321 211.751 46.2835 204.404 46.2835 204.404 C 46.2835 204.404 46.6508 194.486 56.5687 195.588 C 57.6707 198.894 57.6707 197.792 57.6707 197.792 C 57.6707 197.792 68.6905 193.751 71.9965 199.261 C 76.7717 190.812 83.3837 197.998 84.4857 200.936 C 87.6504 201.4 103.587 201.832 103.587 201.832 C 103.587 201.832 101.75 198.526 102.852 198.894 C 103.954 199.261 112.77 195.588 112.403 194.486 C 112.035 193.384 111.668 189.711 113.137 190.078 C 114.607 190.445 100.648 188.241 92.9342 194.119 C 90.3629 191.547 92.1996 184.568 92.1996 184.568 L 69.4252 179.793 L 68.3232 185.67 C 68.3232 185.67 61.7113 186.772 62.0786 185.303 C 62.4459 183.833 60.6093 190.445 60.6093 190.445 C 60.6093 190.445 51.7934 188.241 51.7934 187.874 C 51.7934 187.507 54.3647 174.65 54.3647 175.017 C 54.3647 175.385 47.0181 175.752 36.7329 183.466 C 33.7943 174.283 10.6525 162.161 10.6525 161.794 z " id="path1173" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="fill:#ffc221;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 66.4866 165.1 L 61.7113 186.405 " id="path1174" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 70.8945 173.181 L 69.4252 180.16 " id="path1175" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 94.4036 178.691 L 92.1996 185.303 " id="path1176" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 135.177 223.505 C 134.81 223.505 123.423 224.974 121.953 224.607 C 120.484 224.24 139.952 230.484 139.952 233.055 " id="path1177" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 114.607 226.076 C 114.607 226.076 103.219 218.73 101.383 219.464 C 99.5462 220.199 112.77 219.097 113.872 217.995 " id="path1179" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 91.0976 217.628 C 91.0976 217.628 79.3431 217.995 78.2411 216.893 C 77.1391 215.791 89.6283 224.974 91.8323 224.24 " id="path1180" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 68.3232 212.485 C 67.9559 212.485 60.2419 209.547 56.936 208.811 C 59.8746 211.75 62.0786 215.791 69.4252 217.26 " id="path1181" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 71.2618 207.71 C 70.8945 206.975 56.5687 202.567 56.5687 200.363 C 59.8747 201.465 64.6499 202.934 69.0579 201.832 " id="path1182" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 147.299 190.813 L 145.83 197.424 " id="path1183" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 39.3042 131.673 C 39.3042 131.673 23.8764 144.896 39.3042 152.61 C 40.0388 147.467 41.1409 146.733 41.1409 146.733 C 41.1409 146.733 53.9974 151.508 61.7113 140.121 C 58.4053 135.346 52.5281 137.183 52.5281 137.183 C 52.5281 137.183 40.4062 137.182 39.3042 131.673 z " id="path1184" sodipodi:nodetypes="cccccc" style="fill:#ffc221;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 52.1607 137.55 L 41.5082 146.733 " id="path1185" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 84.9689 201.329 C 84.9689 201.329 87.4243 204.036 85.2203 207.342 " id="path1186" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 136.646 204.036 L 132.606 204.404 " id="path1187" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 103.587 201.832 L 110.933 202.934 " id="path1188" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 123.352 182.939 C 123.352 182.939 123.558 190.365 117.37 190.159 C 111.182 189.952 113.244 190.365 113.244 190.365 " id="path1189" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 128.096 181.701 C 128.096 181.701 130.571 182.526 129.953 184.383 C 129.334 186.239 130.571 191.602 123.352 196.759 C 115.719 198.409 116.545 190.365 116.545 190.365 " id="path1190" sodipodi:nodetypes="cccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 130.778 183.97 C 130.778 183.97 135.316 181.289 135.935 185.621 C 136.553 189.952 132.222 197.997 129.128 199.235 C 126.033 200.472 122.527 199.028 122.939 196.966 " id="path1191" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 136.347 185.827 C 136.347 185.827 140.473 182.526 141.71 186.858 C 142.948 191.19 138.41 200.885 136.553 201.091 " id="path1192" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 142.123 186.858 C 142.123 186.858 144.186 185.827 145.629 187.064 " id="path1193" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 135.522 201.71 C 134.697 201.916 131.19 202.122 129.953 199.441 " id="path1194" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 116.957 194.49 C 116.751 194.49 112.626 194.697 112.626 194.697 " id="path1195" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 132.84 210.786 L 132.428 203.979 L 130.778 201.71 L 127.89 204.598 C 127.89 204.598 127.477 211.405 126.24 212.024 " id="path1196" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 127.89 204.391 C 127.684 203.979 125.621 200.06 125.621 200.06 L 122.114 204.391 C 122.114 204.391 121.702 210.58 120.464 211.199 " id="path1197" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 122.114 204.185 C 122.114 203.979 120.67 200.06 120.67 200.06 C 120.67 200.06 116.545 202.329 116.132 203.979 C 115.72 205.629 115.513 210.167 114.482 210.58 " id="path1198" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 116.132 203.154 C 116.132 203.154 116.545 199.441 115.307 199.441 C 114.07 199.441 108.5 204.598 108.294 209.136 " id="path1199" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 39.8109 131.783 L 39.8109 131.783 C 39.8109 131.783 41.8736 129.72 42.4925 127.245 C 43.1113 124.77 41.6674 122.088 44.1427 119.819 C 46.6179 117.55 79.2092 103.73 81.8908 101.048 C 84.5724 98.3666 89.5229 92.5909 90.1418 91.3533 C 90.7606 90.1156 92.6171 97.5415 87.0477 100.842 C 93.0296 99.1914 96.9488 97.3352 99.4241 98.1603 C 96.9484 101.667 90.3481 107.443 87.2539 107.443 C 94.4735 104.761 101.074 102.492 102.931 103.936 C 104.787 105.38 94.061 112.6 89.7292 113.012 C 96.9488 111.156 106.644 108.268 107.881 111.362 C 103.962 112.6 105.199 113.63 97.1551 118.169 C 96.1238 118.995 90.9669 119.2 90.9669 119.2 C 97.1551 118.581 105.612 116.106 106.437 120.644 C 101.487 122.5 99.6304 124.976 95.5049 126.007 C 91.3794 127.039 81.8908 128.895 76.1151 131.164 C 70.3395 133.433 61.8822 140.034 61.8822 140.034 C 61.8822 140.034 43.5238 140.653 43.5238 140.446 C 43.5238 140.24 40.0172 131.989 39.8109 131.783 z " id="path1200" sodipodi:nodetypes="cccccccccccccccccccc" style="fill:#ffffff;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:round;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 48.4744 130.339 C 48.4744 130.339 48.6807 126.214 50.5371 124.77 C 52.3936 123.326 61.6759 119.819 63.7387 116.725 C 65.8014 113.631 60.6446 122.088 61.4697 124.357 " id="path1201" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 52.1873 124.151 C 52.1873 124.151 56.7254 125.802 55.694 129.308 " id="path1202" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 57.344166 126.007332 A 3.919182 3.919182 0 1 0 49.505802,126.007332 A 3.91918 3.91918 0 1 0 57.3442 126.007 L 53.424984 126.007332 z" id="path1203" sodipodi:cx="53.424984" sodipodi:cy="126.007332" sodipodi:rx="3.919182" sodipodi:ry="3.919182" sodipodi:type="arc" style="fill-rule:evenodd;stroke:#000000;fill:none;fill-opacity:1;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;" transform="matrix(0.868424,0.000000,0.000000,0.868424,7.751426,17.09525)"/>
<path d="M 197.198 119.2 L 232.883 126.007 C 232.883 126.007 236.803 121.469 234.74 118.994 C 240.103 117.757 238.659 110.743 238.659 110.743 C 238.659 110.743 244.847 108.062 239.69 101.873 C 243.198 98.3665 238.865 95.685 238.865 95.685 C 238.865 95.685 240.309 89.4968 235.771 88.878 C 237.009 83.9275 227.933 82.2772 227.933 82.2772 C 227.933 82.2772 209.162 87.4341 195.96 87.8466 C 200.292 92.1784 194.31 94.8599 194.31 94.8599 C 194.31 94.8599 197.817 97.3352 196.785 99.3979 C 195.754 101.461 197.404 103.73 192.866 105.174 C 198.848 107.856 192.247 112.393 192.247 112.393 C 192.247 112.393 198.848 116.931 197.198 119.2 z " id="path1205" sodipodi:nodetypes="cccccccccccccc" style="fill:#ffffff;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 193.691 111.568 L 193.691 111.568 C 193.691 111.568 225.251 115.281 226.695 115.281 C 228.139 115.281 233.708 117.138 234.74 118.994 " id="path1206" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 195.342 109.712 L 239.278 110.743 " id="path1207" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 195.548 108.68 C 195.548 108.68 237.215 106.205 240.103 101.873 " id="path1208" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 196.785 99.6042 C 196.785 99.6042 238.659 95.0662 239.072 95.685 " id="path1209" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 195.342 94.4474 C 195.342 94.4474 235.978 88.0529 236.39 89.0843 " id="path1210" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 79.4155 68.2506 C 79.4155 68.2506 92.2045 82.2772 90.9669 91.7658 " id="path1212" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 90.1418 84.34 C 90.1418 84.34 94.2672 90.3219 95.9174 90.9407 C 97.5676 91.5595 112.007 92.3846 112.832 98.5728 C 113.657 102.492 109.738 101.254 110.357 104.142 C 111.388 107.855 121.083 112.599 131.603 107.03 " id="path1213" sodipodi:nodetypes="ccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 121.908 109.918 C 121.908 109.918 130.571 122.707 143.36 108.887 " id="path1214" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 136.76 114.456 C 136.76 114.456 147.28 120.025 155.943 105.586 " id="path1215" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 144.804 115.693 C 144.804 115.693 149.961 120.025 160.688 114.25 " id="path1216" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 175.539 108.474 C 175.539 108.474 191.422 111.774 192.454 112.806 " id="path1217" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 181.521 104.967 C 181.727 104.967 192.66 105.38 192.66 105.38 " id="path1218" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 174.714 98.7791 C 174.714 98.7791 193.691 97.5415 196.167 101.461 " id="path1219" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 166.463 92.7972 C 166.463 92.7972 193.073 93.8285 194.31 95.2725 " id="path1220" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 172.445 120.025 C 172.445 120.025 176.983 118.788 177.602 119.407 " id="path1221" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 162.131 131.164 C 162.131 131.164 168.113 136.321 175.746 134.052 " id="path1222" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 165.432 139.828 C 165.432 139.828 172.239 142.922 180.284 141.065 " id="path1223" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 167.701 144.985 C 167.701 144.985 174.508 149.523 179.046 148.697 " id="path1224" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 164.607 147.666 C 164.607 147.666 169.351 151.173 169.557 153.029 " id="path1225" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 158.006 151.792 C 158.006 151.792 159.45 159.217 164.607 161.899 " id="path1226" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 154.499 155.092 C 154.499 155.092 152.23 164.787 158.006 170.769 " id="path1227" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 148.517 162.724 C 148.517 162.93 148.105 167.262 148.311 167.675 " id="path1228" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 111.388 125.182 L 122.527 124.563 C 122.527 124.563 126.652 122.913 123.764 120.232 " id="path1229" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 125.208 122.707 C 125.415 122.707 135.728 123.532 138.41 126.626 C 141.091 129.72 144.392 135.908 146.248 136.94 C 148.105 137.971 148.517 136.527 148.517 136.527 " id="path1230" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 143.979 134.877 C 143.979 134.877 138.41 144.366 142.742 147.254 " id="path1231" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 140.885 145.397 C 140.885 145.397 135.935 151.998 139.854 155.298 " id="path1232" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 138.822 154.473 C 138.822 154.473 134.903 160.868 139.648 165.199 " id="path1233" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 137.086 137.51 C 136.82 137.776 132.295 140.97 130.698 140.172 " id="path1235" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 132.295 147.625 C 132.295 147.625 134.158 149.488 135.755 149.222 " id="path1236" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 132.516 157.298 L 135.489 159.337 " id="path1237" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 132.917 164.706 L 135.489 166.258 " id="path1238" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 86.3303 63.5436 C 86.3303 63.5436 91.7531 66.3635 96.0913 63.5436 C 100.43 60.7238 121.253 50.0952 126.676 48.3599 C 132.098 46.6246 135.135 36.6468 136.22 32.3086 " id="path1246" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 132.098 44.0217 L 162.466 35.1284 C 162.466 35.1284 167.455 31.0071 167.672 23.4152 " id="path1247" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 165.503 31.6578 C 165.503 31.6578 195.87 28.6211 195.87 17.3418 " id="path1248" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 191.098 25.1505 C 191.098 25.1505 222.984 16.4741 226.021 13.2204 " id="path1249" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 102.165 70.4848 C 102.165 70.4848 121.47 60.5069 124.507 59.4224 C 127.543 58.3378 134.484 49.6614 124.073 49.6614 " id="path1250" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 111.492 74.3892 C 111.709 74.3892 127.326 64.1944 132.532 62.8929 C 135.352 58.9886 133.834 54.8673 129.062 55.7349 " id="path1251" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 133.833 60.29 C 134.267 60.0731 142.293 59.8562 139.473 66.1466 C 135.353 69.1833 117.565 78.0767 117.565 78.0767 " id="path1252" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 129.712 53.5658 L 163.55 42.2864 C 163.55 42.2864 166.37 36.4298 162.249 35.5622 " id="path1253" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 190.447 25.3674 C 190.447 25.5843 194.786 27.9703 192.183 31.8747 C 187.411 34.6946 164.852 40.1173 164.852 40.1173 " id="path1254" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 224.719 21.8968 L 192.833 30.7902 " id="path1255" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 222.333 29.0549 L 194.569 37.5144 " id="path1256" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 219.947 35.996 L 195.436 43.371 " id="path1257" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 215.392 42.9371 C 214.741 42.9371 197.172 48.3599 197.172 48.3599 " id="path1258" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 211.488 48.3599 L 200.208 52.915 " id="path1259" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 208.668 54.4334 C 208.234 54.4334 198.907 58.5547 198.907 58.5547 " id="path1260" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 205.848 59.4224 L 197.172 63.5436 " id="path1261" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 190.881 68.7495 C 190.881 68.7495 191.966 69.1833 191.749 70.4848 " id="path1262" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 168.973 80.6796 C 168.973 80.6796 172.661 81.981 169.19 85.4516 C 167.455 87.8376 162.466 87.187 159.429 91.5251 " id="path1263" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 192.616 32.0917 C 192.616 32.0917 197.172 33.1762 193.701 39.0328 C 184.59 42.5034 166.153 48.143 166.153 48.143 C 166.153 48.143 165.286 49.6614 162.9 50.9629 C 160.514 52.2643 134.268 59.6393 134.268 59.6393 " id="path1264" sodipodi:nodetypes="ccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 194.135 38.8159 C 194.135 38.8159 199.124 40.985 194.135 44.6725 C 188.495 47.9261 168.756 53.9996 168.756 53.9996 C 168.756 53.9996 168.539 55.7348 167.672 56.3856 C 166.804 57.0363 140.775 65.7128 140.775 65.7128 " id="path1265" sodipodi:nodetypes="ccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 195.436 44.6725 C 195.436 44.6725 200.642 46.1909 196.087 50.529 C 190.664 53.7827 173.311 59.6393 173.311 59.6393 C 173.311 59.6393 171.576 61.8083 168.756 62.676 C 165.936 63.5436 147.933 70.9186 147.933 70.9186 " id="path1266" sodipodi:nodetypes="ccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 196.737 50.529 C 198.256 51.1797 202.377 51.8305 197.388 55.7349 C 191.532 58.3378 177.216 63.9775 177.216 63.9775 L 175.914 66.3635 L 153.139 76.1244 " id="path1267" sodipodi:nodetypes="ccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 198.039 56.3856 C 198.039 56.3856 200.208 58.9886 195.436 62.0253 C 190.23 64.8451 178.951 69.1833 178.951 69.1833 " id="path1268" sodipodi:nodetypes="ccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 195.436 62.4591 C 195.436 62.4591 197.822 63.9775 194.786 66.1466 C 191.315 67.8819 177.65 75.0399 177.65 75.0399 L 168.756 80.8965 " id="path1269" sodipodi:nodetypes="cccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 164.201 42.5033 C 164.201 42.7202 167.889 45.757 166.587 49.2275 C 169.841 51.6135 169.19 54.2165 169.19 54.2165 C 169.19 54.2165 173.745 56.8194 173.095 60.5069 C 177.65 61.5915 177.433 64.1944 177.433 64.1944 L 175.914 66.5804 C 175.914 66.5804 180.469 66.3635 176.565 72.2201 C 178.951 73.5216 177.867 75.0399 177.867 75.0399 " id="path1270" sodipodi:nodetypes="cccccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 176.565 72.437 C 175.914 72.437 160.731 78.0767 156.826 81.5472 " id="path1271" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 139.907 65.7128 C 139.907 65.7128 144.462 65.4959 143.812 70.4848 C 149.018 68.7495 147.933 73.7384 147.933 73.7384 C 147.933 73.7384 154.006 71.3524 152.922 78.9443 C 156.826 78.0767 156.175 81.981 156.175 81.981 C 156.175 81.981 159.646 81.7641 159.646 83.7163 C 162.032 81.5472 164.635 82.6318 164.635 82.6318 C 164.635 82.6318 166.37 80.2457 168.756 80.8965 " id="path1272" sodipodi:nodetypes="cccccccc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 144.029 70.2678 C 144.029 70.7018 123.639 81.981 123.639 81.981 " id="path1273" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 147.933 73.9554 L 132.532 83.4994 " id="path1274" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 153.139 78.7274 C 153.139 78.9443 139.69 86.7531 139.69 86.7531 " id="path1275" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 156.175 81.7641 C 156.175 81.7641 146.631 89.5729 144.462 89.1391 " id="path1276" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 159.429 84.1501 C 159.429 84.1501 154.006 88.2715 149.451 90.2236 " id="path1277" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 165.069 82.4149 C 165.069 82.4149 166.804 84.584 155.959 90.2236 " id="path1278" sodipodi:nodetypes="cc" style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
</g>
<metadata>
<rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<dc:title>American Samoa</dc:title>
<dc:description></dc:description>
<dc:subject>
<rdf:Bag>
<rdf:li>oceania</rdf:li>
<rdf:li>territory_of_united_states</rdf:li>
<rdf:li>flags</rdf:li>
<rdf:li>sign</rdf:li>
<rdf:li>signs_and_symbols</rdf:li>
<rdf:li></rdf:li>
<rdf:li>polynesia</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<Agent rdf:about="http://www.openclipart.org">
<dc:title>Tobias Jakobs</dc:title>
</Agent>
</dc:publisher>
<dc:creator>
<Agent rdf:about="">
<dc:title>Tobias Jakobs</dc:title>
</Agent>
</dc:creator>
<dc:rights>
<Agent rdf:about="">
<dc:title>Tobias Jakobs</dc:title>
</Agent>
</dc:rights>
<dc:date></dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<license rdf:resource="http://web.resource.org/cc/PublicDomain">
<dc:date></dc:date>
</license>
<dc:language>en</dc:language>
</Work>
<License rdf:about="http://web.resource.org/cc/PublicDomain">
<permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
</License>
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

5
build/svg/AT.svg Normal file
View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600">
<rect fill="#ed2939" width="900" height="600"/>
<rect fill="#fff" y="200" width="900" height="200"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

1
build/svg/AU.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1280" height="640" viewBox="0 0 30240 15120"><defs id="defs6"><polygon points="0,-9 1.735535,-3.6038755 7.0364833,-5.6114082 3.8997116,-0.89008374 8.7743512,2.0026884 3.1273259,2.4939592 3.9049537,8.1087198 0,4 -3.9049537,8.1087198 -3.1273259,2.4939592 -8.7743512,2.0026884 -3.8997116,-0.89008374 -7.0364833,-5.6114082 -1.735535,-3.6038755 0,-9 " id="Star7"/><polygon points="0,-9 2.351141,-3.236068 8.5595086,-2.7811529 3.8042261,1.236068 5.2900673,7.2811529 0,4 -5.2900673,7.2811529 -3.8042261,1.236068 -8.5595086,-2.7811529 -2.351141,-3.236068 0,-9 " id="Star5"/></defs><path d="M 0,0 L 30240,0 L 30240,15120 L 0,15120 L 0,0 z" style="fill:#00008b"/><use transform="matrix(252,0,0,252,7560,11340)" id="Commonwealth_Star" style="fill:#fff" xlink:href="#Star7"/><use transform="matrix(120,0,0,120,22680,12600)" id="Star_Alpha_Crucis" style="fill:#fff" xlink:href="#Star7"/><use transform="matrix(120,0,0,120,18900,6615)" id="Star_Beta_Crucis" style="fill:#fff" xlink:href="#Star7"/><use transform="matrix(120,0,0,120,22680,2520)" id="Star_Gamma_Crucis" style="fill:#fff" xlink:href="#Star7"/><use transform="matrix(120,0,0,120,26040,5607)" id="Star_Delta_Crucis" style="fill:#fff" xlink:href="#Star7"/><use transform="matrix(70,0,0,70,24192,8190)" id="Star_Epsilon_Crucis" style="fill:#fff" xlink:href="#Star5"/><path d="M 6300,0 L 8820,0 L 8820,2520 L 15120,2520 L 15120,5040 L 8820,5040 L 8820,7560 L 6300,7560 L 6300,5040 L 0,5040 L 0,2520 L 6300,2520 L 6300,0 z" id="White_Cross" style="fill:#fff"/><path d="M 0,0 L 1690.4674,0 L 15120,6714.7663 L 15120,7560 L 13429.533,7560 L 0,845.2337 L 0,0 z" id="White_Diagonal" style="fill:#fff"/><use transform="matrix(-1,0,0,1,15120,0)" id="White_Diagonal_Flipped" style="fill:#fff" xlink:href="#White_Diagonal"/><path d="M 6804,0 L 8316,0 L 8316,3024 L 15120,3024 L 15120,4536 L 8316,4536 L 8316,7560 L 6804,7560 L 6804,4536 L 0,4536 L 0,3024 L 6804,3024 L 6804,0 z" id="Red_Cross" style="fill:red"/><path d="M 0,0 L 5040,2520 L 3913.0217,2520 L 0,563.48913 L 0,0 z M 15120,0 L 13993.022,0 L 8953.0217,2520 L 10080,2520 L 15120,0 z" id="Red_Diagonals" style="fill:red"/><use transform="matrix(-1,0,0,-1,15120,7560)" id="Red_Diagonals_Rotated" style="fill:red" xlink:href="#Red_Diagonals"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

46
build/svg/AW.svg Normal file
View file

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.0"
width="450"
height="300"
id="svg2">
<defs
id="defs4" />
<g
id="g1887">
<rect
width="450.00009"
height="300.00006"
x="0"
y="-5.9999998e-005"
style="fill:#5881bb;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
id="rect1306" />
<rect
width="450.00009"
height="16.66667"
x="0"
y="233.33333"
style="fill:#f9d616;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
id="rect2035" />
<use
transform="translate(0,-33.33334)"
id="use2763"
x="0"
y="0"
width="27"
height="18"
xlink:href="#rect2035" />
<path
d="M 66.735601,116.66664 L 53.956304,79.41209 L 16.666667,66.735534 L 53.921221,53.956237 L 66.597778,16.666601 L 79.377075,53.921154 L 116.66671,66.59771 L 79.412158,79.377007 L 66.735601,116.66664 z "
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
id="path2765" />
<path
d="M 66.724118,108.33333 L 56.074699,77.287855 L 24.999987,66.724053 L 56.045463,56.074634 L 66.609265,24.999923 L 77.258684,56.045398 L 108.33339,66.6092 L 77.28792,77.258619 L 66.724118,108.33333 z "
style="fill:#ef2b2d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
id="path3496" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

13
build/svg/AX.svg Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg height="850" width="1300" version="1.1" xmlns="http://www.w3.org/2000/svg" id="Flag of Åland">
<rect fill="#0053a5" height="850" width="1300" />
<g fill="#ffce00">
<rect height="850" width="250" x="400" />
<rect height="250" width="1300" y="300" />
</g>
<g fill="#d21034">
<rect height="850" width="100" x="475" />
<rect height="100" width="1300" y="375" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 547 B

8
build/svg/AZ-NK.svg Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" standalone="yes"?>
<!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" version="1.1" width="1350" height="675" id="Flag_of_Nagorno-Karabakh">
<rect width="1350" height="225" fill="red" />
<rect width="1350" height="225" y="225" fill="#0000d6" />
<rect width="1350" height="225" y="450" fill="#ffb100" />
<path fill="white" d="M 1350,0 h -200 v 75 h -100 v 75 h -100 v 75 h -100 v 75 h -100 v 75 h 100 v 75 h 100 v 75 h 100 v 75 h 100 v 75 h 200 v -75 h -100 v -75 h -100 v -75 h -100 v -75 h -100 v -75 h 100 v -75 h 100 v -75 h 100 v -75 h 100 z" />
</svg>

After

Width:  |  Height:  |  Size: 665 B

82
build/svg/AZ.svg Normal file
View file

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 15.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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="Layer_1"
x="0px"
y="0px"
width="1200"
height="600"
viewBox="0 0 1200 600"
xml:space="preserve"
inkscape:version="0.48.0 r9654"
sodipodi:docname="azerbaijan_flag.svg"><metadata
id="metadata209"><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="defs207" /><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="962"
id="namedview205"
showgrid="false"
inkscape:zoom="0.5"
inkscape:cx="766.29139"
inkscape:cy="251.20404"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1"
inkscape:snap-global="false" />
<g
id="g193"
transform="matrix(2.5000118,0,0,2.5002373,-150.0065,-575.11087)">
<rect
x="60"
y="230"
style="fill:#0097c3"
width="480"
height="79.990997"
id="rect195" />
<rect
x="60"
y="309.991"
style="fill:#e00034"
width="480"
height="80.001999"
id="rect197" />
<rect
x="60"
y="389.99301"
style="fill:#00ae65"
width="480"
height="80.007004"
id="rect199" />
<path
style="fill:#ffffff"
d="m 299.896,378.608 c -15.8,0 -28.61,-12.811 -28.61,-28.605 0,-15.812 12.811,-28.616 28.61,-28.616 8.882,0 16.821,4.059 22.069,10.404 -6.169,-10.203 -17.367,-17.024 -30.161,-17.024 -19.453,0 -35.226,15.772 -35.226,35.236 0,19.449 15.772,35.215 35.226,35.215 12.794,0 23.992,-6.82 30.161,-17.021 -5.247,6.355 -13.187,10.411 -22.069,10.411 z"
id="path201"
inkscape:connector-curvature="0" />
<polygon
style="fill:#ffffff"
points="318.832,338.78 326.645,341.789 330.043,334.138 333.439,341.79 341.254,338.783 338.245,346.596 345.896,349.995 338.243,353.391 341.25,361.205 333.438,358.195 330.039,365.847 326.643,358.194 318.828,361.201 321.838,353.388 314.187,349.989 321.839,346.594 "
id="polygon203" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

12
build/svg/BA.svg Normal file
View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="500" viewBox="0 0 200 100">
<rect width="200" height="100" style="fill:#002395"/>
<path d="M 116.91604,94.060661 L 122.5,76.875 L 128.08396,94.060662 L 113.46496,83.439338 L 131.53504,83.439339 L 116.91604,94.060661 z" id="star" style="fill:#fff"/>
<path d="M 53,0 L 153,0 L 153,100 L 53,0 z" style="fill:#FECB00"/>
<path d="M 31.53125,0 L 35,0 L 38.46875,0 L 40.58396,6.560662 L 35,2.5 L 29.41604,6.560661 L 31.53125,0 z" id="path11682" style="fill:#fff"/>
<path d="M 131.53125,100 L 125.96496,95.939338 L 132.875,95.9375 L 135,89.375 L 137.125,95.9375 L 144.03504,95.939339 L 138.46875,100 L 135,100 L 131.53125,100 z" id="path11689" style="fill:#fff"/>
<use transform="translate(-75,-75)" xlink:href="#star"/>
<use transform="translate(-62.5,-62.5)" xlink:href="#star"/>
<use transform="translate(-50,-50)" xlink:href="#star"/>
<use transform="translate(-37.5,-37.5)" xlink:href="#star"/>
<use transform="translate(-25,-25)" xlink:href="#star"/>
<use transform="translate(-12.5,-12.5)" xlink:href="#star"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

6
build/svg/BB.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1000">
<rect width="1500" height="1000" fill="#00267f" />
<rect width="500" height="1000" fill="#ffc726" x="500" />
<path fill="#000000" d="M 750,257.75 C 733.74664,302.0756 717.20569,348.1667 681.75,383.5312 C 692.75197,379.8946 712.02093,376.6428 724.34375,376.9687 L 724.34375,563.3125 L 671.78125,571.125 C 669.87424,570.93148 669.2248,567.99042 669.21875,563.96875 C 664.17907,506.14344 650.47986,457.47244 634.75,407.2187 C 633.63724,400.3224 613.71566,374.0873 629.0625,378.6875 C 630.91105,378.9254 651.51975,387.3261 648.25,383.3125 C 620.22533,354.3323 579.32763,333.4609 539.5625,327.25 C 536.04884,326.3489 533.98932,328.1134 537.15625,332.1875 C 589.84513,413.40098 633.98988,509.19791 633.625,622.875 C 654.15465,622.875 703.8141,610.78124 724.34375,610.78125 C 724.34375,610.78125 724.34375,742.25 724.34375,742.25 L 775.65625,742.25 C 775.65625,742.25 775.65625,610.78125 775.65625,610.78125 C 796.1859,610.78124 845.84535,622.875 866.375,622.875 C 866.01012,509.19791 910.15487,413.40098 962.84375,332.1875 C 966.01069,328.1134 963.95116,326.3489 960.4375,327.25 C 920.67238,333.4609 879.77467,354.3323 851.75,383.3125 C 848.48025,387.3261 869.08895,378.9254 870.9375,378.6875 C 886.28434,374.0873 866.36276,400.3224 865.25,407.2187 C 849.52015,457.47244 835.78968,506.14344 830.75,563.96875 C 830.74394,567.99042 830.12576,570.93148 828.21875,571.125 L 775.65625,563.3125 L 775.65625,376.9687 C 787.97907,376.6428 807.24803,379.8946 818.25,383.5312 C 782.79431,348.1667 766.25336,302.0756 750,257.75 z"/>
</svg>

5
build/svg/BD.svg Normal file
View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600">
<rect fill="#006a4e" height="600" width="1000"/>
<circle fill="#f42a41" cx="450" cy="300" r="200"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

1
build/svg/BE.svg Normal file
View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="450" height="300"><rect width="150" height="300"/><rect x="150" width="150" height="300" fill="#FECB00"/><rect x="300" width="150" height="300" fill="#ed2939"/></svg>

After

Width:  |  Height:  |  Size: 215 B

26
build/svg/BF.svg Normal file
View file

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg>
<svg width="900" height="600" viewBox="0 0 12 8" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="12" height="8" fill="#009e49"/>
<rect width="12" height="4" fill="#ef2b2d"/>
<g id="star"
transform="translate(6,4) scale(1.35)"
fill="#fcd116">
<g id="cone">
<polygon
id="triangle"
points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/><use
xlink:href="#triangle"
transform="scale(-1,1)" id="use12"/>
</g>
<use
xlink:href="#cone" transform="rotate(72)" id="use14"/>
<use xlink:href="#cone" transform="rotate(-72)"
id="use16"/>
<use xlink:href="#cone" transform="rotate(144)" id="use18"/>
<use
xlink:href="#cone"
transform="rotate(-144)"
id="use20"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 802 B

6
build/svg/BG.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
<rect width="5" height="3" fill="#fff"/>
<rect width="5" height="2" y="1" fill="#00966E"/>
<rect width="5" height="1" y="2" fill="#D62612"/>
</svg>

After

Width:  |  Height:  |  Size: 288 B

5
build/svg/BH.svg Normal file
View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="900">
<rect fill="#fff" width="1500" height="900"/>
<path fill="#ce1126" d="M 375,0 L 600,90 L 375,180 L 600,270 L 375,360 L 600,450 L 375,540 L 600,630 L 375,720 L 600,810 L 375,900 L 1500,900 L 1500,0 L 375,0 z"/>
</svg>

After

Width:  |  Height:  |  Size: 325 B

38
build/svg/BI.svg Normal file
View file

@ -0,0 +1,38 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg>
<svg width="800" height="480" viewBox="-125 -75 250 150" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="frame">
<rect width="100%" height="100%" x="-50%" y="-50%"/>
</clipPath>
<g id="star">
<g id="triangle">
<g id="cone">
<path id="helper" d="M 0,0 v 10 h 10" transform="translate(0,-10) rotate(30)"/>
<use xlink:href="#helper" transform="scale(-1,1)"/>
</g>
<use xlink:href="#cone" transform="rotate(120)"/>
<use xlink:href="#cone" transform="rotate(-120)"/>
</g>
<use xlink:href="#triangle" transform="rotate(180)"/>
</g>
</defs>
<path fill="#ce1126" d="M 0,0 L -125,-75 h 250 z l 125,75 h -250 z"/>
<path fill="#1eb53a" d="M 0,0 L -125,-75 v 150 z l 125,75 v -150 z"/>
<g stroke="white" stroke-width="20" clip-path="url(#frame)">
<line x1="-150" y1="-90" x2="150" y2="90"/>
<line x1="-150" y1="90" x2="150" y2="-90"/>
</g>
<circle r="42.5" fill="white"/>
<g fill="#1eb53a">
<use xlink:href="#star" transform="translate(0,-22)"/>
<use xlink:href="#star" transform="rotate(120) translate(0,-22)"/>
<use xlink:href="#star" transform="rotate(-120) translate(0,-22)"/>
</g>
<comment>The size of the red stars needs to be precisely 82% of the size of the green stars</comment>
<g fill="#ce1126">
<use xlink:href="#star" transform="translate(0,-22) scale(.82)"/>
<use xlink:href="#star" transform="rotate(120) translate(0,-22) scale(.82)"/>
<use xlink:href="#star" transform="rotate(-120) translate(0,-22) scale(.82)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

6
build/svg/BJ.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1000" viewBox="0 0 15 10">
<rect width="15" height="10" fill="#fcd116" id="Yellow"/>
<rect width="15" height="5" y="5" fill="#e8112d" id="Red"/>
<rect width="6" height="10" fill="#008751" id="Green"/>
</svg>

After

Width:  |  Height:  |  Size: 328 B

4055
build/svg/BL.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 274 KiB

362
build/svg/BM.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 140 KiB

375
build/svg/BN.svg Normal file
View file

@ -0,0 +1,375 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="1440"
height="720"
id="svg2"
xml:space="preserve"
style="fill-rule:evenodd"><defs
id="defs4">
<style
type="text/css"
id="style6" />
</defs><rect
width="1440"
height="720"
x="0"
y="0"
id="rect2533"
style="fill:#f7e017;fill-rule:nonzero" /><polygon
points="0,125.001 3600,875 3600,1300 0,550 0,125.001 "
transform="scale(0.4,0.4)"
id="path2535"
style="fill:#ffffff" /><polygon
points="0,550 3600,1300 3600,1675 0,925 0,550 "
transform="scale(0.4,0.4)"
id="path3422"
style="fill:#000000" /><rect
width="12.95759"
height="34.604187"
x="712.87207"
y="299.78506"
id="rect694"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 738.80275,391.12311 C 738.65343,367.36785 739.49977,344.52346 741.13392,338.04339 C 742.7685,331.56267 745.19228,330.21585 748.20062,326.99769 C 741.07438,326.25908 733.20951,333.11692 729.59393,342.14805 C 727.29918,331.95866 723.00831,325.05307 719.23249,321.58493 C 715.4572,325.05307 711.00517,332.06448 708.97692,342.23783 C 705.25688,334.65699 698.72939,326.25198 691.00864,327.19615 C 693.75375,330.46581 696.25835,331.67746 697.92791,338.01358 C 699.59698,344.35018 700.43107,367.04077 699.8314,390.80843 M 738.80271,391.12315 L 738.80271,391.12315 L 738.80271,391.12315 z"
id="path611"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 739.95905,450.56928 C 739.79649,422.06051 740.88337,397.72202 742.44097,389.98682 C 743.99946,382.25286 746.4861,380.80869 750.03978,377.46246 C 742.26941,376.5764 734.86529,378.9534 730.53141,392.20311 C 728.10667,379.88717 723.35036,373.8374 719.23289,369.67557 C 715.11639,373.83744 710.26077,380.10078 708.04968,392.30994 C 703.28905,379.16702 696.64013,376.22294 688.2214,377.35615 C 691.72166,381.02182 694.47293,382.39037 696.18597,389.97313 C 697.89946,397.55682 698.11591,421.66701 697.46186,450.1923 M 739.95885,450.5694 L 739.95885,450.5694 L 739.95885,450.5694 z"
id="path610"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 747.83309,466.36136 C 747.56846,459.72609 748.47813,450.81546 749.98512,447.37237 C 751.49307,443.92784 753.59646,441.41287 755.71873,438.49384 C 746.61669,437.18058 737.36106,437.85067 732.44687,451.20721 C 729.26321,438.99761 724.48845,432.62696 719.31007,428.46509 C 714.13221,432.62696 709.63577,438.99757 706.45259,451.20721 C 701.5384,437.85067 692.23743,437.04118 682.85657,438.49384 C 684.9784,441.41287 687.16396,443.92784 688.75225,447.37237 C 690.34006,450.81546 691.33152,459.72613 691.06593,466.36136 M 747.83301,466.36136 L 747.83301,466.36136 L 747.83301,466.36136 z"
id="path609"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><polygon
points="1786.28,581.594 1786.28,649.972 1810.4,649.972 1810.4,581.594 1786.28,581.594 "
transform="matrix(0.4001034,0,0,0.4001034,-0.1842999,-0.1512451)"
id="path689"
style="fill:#cf1126;stroke:#000000;stroke-width:5" /><path
d="M 781.5258,569.97615 C 783.91414,571.57292 793.44052,573.24628 810.70798,570.23938 C 840.85466,564.95613 840.60279,535.20308 887.55825,549.00569 C 885.43598,544.75875 878.00822,531.75479 859.70301,531.22833 C 861.56017,525.1214 862.88667,516.10066 859.43838,510.52062 C 855.90079,518.39446 850.42473,522.05492 846.4533,524.62851 C 845.23031,523.96646 838.13431,518.16528 837.36543,509.42474 C 836.29884,492.09822 827.84849,489.04027 826.95062,489.49911 C 821.52654,489.34599 788.86061,541.01282 718.91189,541.35251 C 649.99047,541.68376 615.49675,489.95802 611.60575,489.49911 C 610.70836,489.04023 602.25797,492.09818 601.19142,509.42474 C 600.4221,518.16528 593.24336,523.71127 592.03693,524.48439 C 588.08251,522.02091 582.65514,518.39446 579.11847,510.52062 C 575.6697,516.10066 576.99572,525.1214 578.85336,531.22833 C 560.54863,531.75475 553.12043,544.75875 550.99812,549.00569 C 597.95386,535.20308 598.04788,564.95609 628.19448,570.23938 C 645.46242,573.24628 654.4137,571.83615 656.80203,570.24786 M 781.52628,569.97615 L 781.52628,569.97615 L 781.52628,569.97615 z"
id="path660"
style="fill:#cf1126;fill-opacity:1;stroke:#000000;stroke-width:2.00051713" /><path
d="M 635.84413,555.13231 C 619.48967,554.47782 587.58566,529.59123 592.11363,524.46959 C 593.55068,523.01789 600.57958,524.51212 612.74856,533.03148 C 630.80947,545.34742 646.3048,584.1803 718.75717,583.88263 C 792.59466,583.58539 807.74498,545.34746 825.80565,533.03148 C 837.97463,524.51212 845.56727,523.15349 846.42358,524.81832 C 850.77022,529.72731 818.83488,554.55436 802.48102,555.20837 M 635.84433,555.13227 L 635.84433,555.13227 L 635.84433,555.13227 z"
id="path661"
style="fill:#cf1126;fill-opacity:1;stroke:#000000;stroke-width:2.00051713" /><path
d="M 613.45034,303.89176 C 548.84124,371.99817 583.59663,528.42821 717.87934,530.68719 C 852.88545,532.20035 892.27203,374.17993 825.18949,303.59008 M 626.53253,306.22556 C 592.16064,364.13333 627.894,465.60397 719.81064,465.60397 C 812.4834,465.60397 846.45018,363.40115 812.41258,305.88508 M 626.53213,306.22532 L 626.53213,306.22532 L 626.53213,306.22532 z"
id="path590"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 743.33993,550.65916 C 748.03722,551.70307 752.32337,556.5558 750.59708,561.54369 C 748.68083,567.48995 741.60516,568.93504 738.93139,568.50077 C 736.0544,566.77404 737.77929,564.28124 746.60061,563.32099 C 752.35218,561.21101 747.11382,557.31944 742.76578,555.45564 C 740.40249,554.44198 741.134,550.16859 743.33993,550.65912 L 743.33993,550.65916 z"
id="path596"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 728.76816,549.12276 C 730.95236,546.6366 732.72682,554.25669 733.21263,559.54041 C 733.84871,564.69843 733.91533,571.06151 731.83651,571.37671 C 730.5691,571.58889 731.63286,565.45314 730.32336,559.82349 C 728.61364,553.30588 727.87597,550.21628 728.76816,549.12276 L 728.76816,549.12276 z"
id="path597"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 723.75486,558.52519 C 729.23896,563.84201 719.94884,579.24471 699.62486,572.53005 C 698.47417,570.42055 707.69623,572.50737 714.19635,571.37935 C 726.56615,569.42533 721.25882,556.16614 723.7549,558.52515 L 723.75486,558.52519 z"
id="path598"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 713.81229,547.97046 C 715.9979,545.48478 714.72433,553.35437 715.17989,558.64094 C 715.62504,563.60851 715.06978,569.65451 712.71357,568.87239 C 711.43768,568.25615 713.52922,562.67706 712.21928,557.43211 C 710.81624,550.8408 712.15454,549.63953 713.81229,547.97046 L 713.81229,547.97046 z"
id="path599"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 699.85668,545.86192 C 703.73405,545.83687 702.6949,546.92611 702.41891,557.28991 C 702.11603,568.90503 692.31125,570.20505 689.98105,567.01811 C 688.02278,564.51778 688.74105,563.76595 679.97878,564.60332 C 678.0186,563.61519 678.09374,561.51416 671.6924,562.05194 C 670.03701,562.35722 670.09187,559.21657 667.1057,557.33952 C 661.89947,554.22724 660.16658,559.63384 650.23898,553.91204 C 649.61898,553.56515 645.59037,551.01141 646.32664,545.96306 C 647.09408,539.58393 641.27874,546.74231 634.88873,543.95891 C 633.65249,543.406 629.90744,541.84748 626.60327,538.94641 C 621.93858,534.93389 626.823,534.12248 633.12511,538.21298 C 637.0162,540.68214 642.73136,535.00191 642.88592,529.31744 C 643.23421,523.30124 640.24239,521.71912 644.87967,521.86843 C 647.46554,521.94501 646.8507,532.38011 642.45684,536.99851 C 636.57672,543.35731 640.54435,542.13055 642.64489,541.81107 C 644.83478,541.26293 654.79683,528.91342 656.45698,529.97385 C 659.04473,531.73226 648.6909,539.62739 651.0093,547.10096 C 652.1165,550.43254 658.28818,553.6242 663.36917,554.14026 C 669.34332,555.13547 669.3608,547.01966 671.78175,548.55693 C 675.13221,550.75674 665.37853,554.89825 675.6199,557.91887 C 677.8816,558.59749 679.18822,552.83456 680.52701,553.08502 C 683.73996,553.6096 678.42646,559.8148 684.17191,560.80102 C 688.17734,561.46783 687.08006,555.00644 689.56386,555.4001 C 692.43705,555.2163 689.73963,565.73506 697.70565,564.66186 C 701.06368,564.22238 695.81068,545.88456 699.85676,545.86188 L 699.85668,545.86192 z"
id="path600"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 627.65802,532.20239 C 629.96505,531.7095 633.91808,529.56594 634.083,526.10445 C 634.41236,522.31403 629.14092,520.99509 622.8809,521.98418 C 619.58665,522.47847 613.98728,520.33588 610.69159,517.53359 C 607.39734,513.41333 607.39734,508.80014 603.44388,510.77689 C 600.47947,512.09439 607.56226,519.67619 611.02096,521.4899 C 614.48153,523.30361 620.08234,523.13868 620.4103,525.77464 C 620.74015,528.41201 619.09232,532.53183 627.65802,532.20247 L 627.65802,532.20239 z"
id="path601"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 767.84226,549.89896 C 766.57013,550.5152 765.5385,562.03202 772.7262,562.28012 C 781.75594,562.60289 786.29631,558.02186 788.55802,556.39388 C 792.31491,553.53722 799.08482,547.82819 795.95125,542.90599 C 794.3828,541.11877 793.51754,546.19456 791.70903,549.16461 C 789.24887,553.51974 780.82638,558.68819 774.37543,557.98453 C 766.47323,557.49825 769.45084,549.48689 767.84226,549.89896 L 767.84226,549.89896 z"
id="path604"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 786.39906,544.56558 C 784.56222,543.17578 790.48435,540.90131 791.09727,538.75068 C 791.71115,536.60052 788.48068,534.57416 790.27738,532.21843 C 792.16103,529.11651 792.26309,538.06546 794.65711,538.32253 C 801.28623,539.01391 796.55352,543.29721 794.05272,542.4702 C 791.22299,541.62574 787.50818,545.61085 786.3991,544.56554 L 786.39906,544.56558 z"
id="path605"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 781.26973,531.00608 C 780.8435,533.99361 782.65625,534.7398 783.19071,533.03384 C 783.83007,529.83221 782.01544,528.33847 781.26973,531.00608 z"
id="path606"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 786.07097,527.91328 C 785.00442,527.99694 784.85506,531.70322 786.24442,531.80576 C 787.74337,531.92439 787.05107,534.45357 788.30999,534.42048 C 789.80754,534.38123 789.92189,530.17734 788.22777,530.13857 C 786.65224,530.09932 787.02366,527.93028 786.07097,527.91328 L 786.07097,527.91328 z"
id="path607"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 798.06207,527.20109 C 796.79419,528.80591 794.38788,521.01665 802.48526,519.90141 C 806.33429,520.24117 809.6167,526.58345 809.27741,532.69887 C 809.14886,534.96102 809.05199,540.06094 807.80727,542.55274 C 806.78653,544.93164 803.0514,552.74734 801.24102,552.0678 C 799.42967,551.38683 801.7145,548.11386 804.75028,543.57205 C 807.20476,539.85296 808.14704,529.52793 806.90092,527.71567 C 805.65476,525.90388 804.40151,532.2466 801.80716,533.60615 C 799.648,534.73792 797.39294,531.46259 797.05365,529.87811 C 796.78426,527.99778 798.49543,526.84092 799.65509,529.07522 C 800.57992,530.75377 803.4233,527.42219 803.35716,525.04237 C 803.4323,521.19286 800.88044,524.24517 798.06207,527.20105 L 798.06207,527.20109 z"
id="path608"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 815.50258,509.8206 C 814.4842,511.29454 810.97589,514.57883 810.29684,515.93842 C 809.6173,517.29753 809.50295,519.67499 810.63472,521.94045 C 811.76794,524.20544 814.14443,527.82954 813.69219,531.11478 C 813.23808,534.39863 810.97449,541.19363 812.22065,540.62844 C 813.4649,540.06138 816.52193,533.37933 815.84235,528.28177 C 815.16281,523.18565 812.78584,520.35452 813.23808,518.6552 C 813.69031,516.95728 816.52049,513.78638 817.08663,511.63435 C 817.6537,509.48135 816.7473,503.7057 815.95482,503.25298 C 815.16281,502.80026 812.33312,503.82005 813.23808,505.74435 C 814.14443,507.67048 816.06825,506.53731 815.50258,509.82068 L 815.50258,509.8206 z"
id="path614"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 820.16779,512.46128 C 818.89566,513.62002 819.5289,519.92921 821.27643,517.67603 C 822.86473,515.48098 821.18521,511.43018 820.16779,512.46128 z"
id="path615"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 786.89119,559.30939 C 786.29575,562.07151 789.01441,562.94529 789.76201,561.36741 C 790.65516,558.40868 787.9351,556.84404 786.89119,559.30939 z"
id="path616"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 791.05626,556.96879 C 790.17303,559.23521 794.11281,559.43323 795.22002,558.13837 C 796.54412,555.71034 792.60298,554.94575 791.05626,556.96879 z"
id="path620"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 627.16589,524.29234 C 625.05827,523.35006 625.18962,527.58799 626.17824,528.74201 C 627.16589,529.89603 632.91322,526.9373 627.16589,524.29234 z"
id="path603"
style="fill:#cf1126;stroke:#f7e017;stroke-width:0.28007242" /><path
d="M 720.19794,291.58378 C 699.02239,295.82455 684.48255,308.24401 691.29883,312.46778 C 695.47347,315.25212 715.07962,307.60276 719.21597,301.10924 C 726.73823,312.59537 747.14491,316.92781 752.07374,314.35282 M 720.19794,291.58378 L 720.19794,291.58378 L 720.19794,291.58378 z"
id="path676"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 610.36955,284.78922 C 613.88402,290.22323 632.0928,303.32785 645.19035,304.28718 C 658.28934,305.24554 687.99862,311.31892 693.7485,308.76142 C 699.49911,306.20486 715.7912,295.01691 719.94408,296.93504 C 724.09791,298.85223 748.37631,312.27777 757.32098,311.95737 C 766.26613,311.63791 824.08784,295.33731 826.00514,292.14092 C 827.92187,288.94404 814.50388,280.63355 805.87913,280.63355 C 797.25342,280.63355 610.36939,285.10918 610.36939,284.78926 L 610.36955,284.78922 z"
id="path696"
style="fill:#cf1126" /><path
d="M 661.2427,311.16164 C 661.34761,314.42799 663.85786,316.79033 669.87833,316.85223 C 679.98883,317.063 697.09137,312.27877 707.30769,300.7936 M 661.24258,311.16164 L 661.24258,311.16164 L 661.24258,311.16164 z"
id="path675"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 630.91086,306.31439 C 630.3844,309.0543 634.91301,312.63682 643.76034,312.74173 C 652.60671,312.84759 683.46509,309.05431 693.36477,298.72738 M 630.91102,306.31439 L 630.91102,306.31439 L 630.91102,306.31439 z"
id="path674"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 610.01746,298.01344 C 605.27763,304.12462 620.37794,306.31495 629.43412,306.20864 C 638.49222,306.10373 661.86754,305.98275 672.33721,298.18592 M 610.0175,298.01344 L 610.0175,298.01344 L 610.0175,298.01344 z"
id="path673"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 593.47318,287.76159 C 588.94413,293.76834 604.16162,299.04403 622.69698,298.62252 C 639.75839,298.20099 657.13644,292.30008 657.13644,292.30008 M 593.47318,287.76159 L 593.47318,287.76159 L 593.47318,287.76159 z"
id="path672"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 776.92861,311.16164 C 776.8237,314.42799 774.31345,316.79033 768.29298,316.85223 C 758.18248,317.063 741.0795,312.27877 730.86362,300.7936 M 776.92873,311.16164 L 776.92873,311.16164 L 776.92873,311.16164 z"
id="path680"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 807.26045,306.31439 C 807.78687,309.0543 803.2583,312.63682 794.41193,312.74173 C 785.56556,312.84759 754.70718,309.05431 744.8067,298.72738 M 807.26045,306.31439 L 807.26045,306.31439 L 807.26045,306.31439 z"
id="path679"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 828.01782,298.14587 C 832.75764,304.25849 817.79061,306.31507 808.73347,306.20876 C 799.67585,306.10385 776.30005,305.98287 765.83078,298.18604 M 828.01766,298.14587 L 828.01766,298.14587 L 828.01766,298.14587 z"
id="path678"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 844.75014,287.65916 C 849.27919,293.66544 834.01069,299.04415 815.47486,298.62264 C 798.41344,298.20111 781.03587,292.3002 781.03587,292.3002 M 844.74994,287.65916 L 844.74994,287.65916 L 844.74994,287.65916 z"
id="path677"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 629.84658,287.20745 C 606.30206,290.60849 595.45769,288.8756 590.759,286.62809 C 584.8888,284.04317 574.836,276.1731 589.68488,275.88671 C 599.52366,275.69485 604.48179,276.44622 615.66736,276.3881 C 644.2796,276.02942 685.58263,253.42436 698.10467,253.33174 C 709.73536,253.24668 712.82124,258.62635 719.45175,258.7355 C 726.24155,258.81441 728.43895,253.24668 740.07016,253.33174 C 752.5912,253.42436 793.89448,276.02941 822.50703,276.3881 C 833.69212,276.44622 838.65025,275.69485 848.48903,275.88671 C 863.33839,276.17308 853.28603,284.04314 847.41587,286.62809 C 842.71718,288.8756 831.87233,290.60849 808.32781,287.20745 M 629.84686,287.20745 L 629.84686,287.20745 L 629.84686,287.20745 z"
id="path681"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 719.01364,202.60157 C 707.93769,203.15778 692.69187,201.26469 687.79613,213.62318 C 680.34004,227.76276 682.44294,243.79162 685.79245,244.12951 C 691.79024,244.7911 692.36059,228.12145 694.91765,228.0964 C 697.59094,228.06616 697.5881,242.57103 702.81845,242.45948 C 706.71334,242.34843 709.16121,227.87431 710.38561,227.98534 C 711.60956,228.09638 714.16894,241.90233 719.09542,241.90233 C 724.35598,241.90233 726.58083,228.0964 727.80523,227.98534 C 729.02871,227.87429 731.47754,242.34841 735.37239,242.45948 C 740.60226,242.57101 740.59942,228.06616 743.27319,228.0964 C 745.82977,228.12145 746.95634,244.68005 752.95413,244.018 C 756.30368,243.67964 757.96143,227.76276 750.50578,213.62322 C 745.61003,201.26475 730.03056,203.15784 719.01372,202.60161 L 719.01364,202.60157 z"
id="path618"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 692.42276,207.66608 C 695.39753,212.66626 718.59849,212.54766 719.90751,212.54766 C 721.21649,212.54766 741.44316,212.78584 746.20235,207.90522 M 692.42284,207.6661 L 692.42284,207.6661 L 692.42284,207.6661 z"
id="path619"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 714.82855,155.5262 L 714.82855,204.81695 C 714.82855,204.81695 715.09506,207.56868 719.17848,207.658 C 723.26141,207.74684 723.8819,205.34905 723.8819,204.99321 L 723.70469,155.4368 M 714.82855,155.52611 L 714.82855,155.52611 L 714.82855,155.52611 z"
id="path628"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 719.60979,161.23848 C 738.16971,160.28626 743.7039,171.23838 748.93893,173.61964 C 754.17445,176.00042 756.55382,176.95262 763.69331,176.47628 C 770.83183,176.00042 751.31831,188.38156 751.31831,188.85744 L 758.45779,201.71352 C 751.79467,202.66574 739.17673,196.51154 734.186,193.14263 C 728.54122,189.80729 722.2878,191.71408 719.90799,191.23774 L 719.60979,161.2385 L 719.60979,161.23848 z"
id="path625"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 729.90045,146.2386 C 729.90045,151.89046 725.10297,156.47621 719.19312,156.47621 C 713.28183,156.47621 708.48435,151.89046 708.48435,146.2386 C 708.48435,140.5877 713.28183,136.00196 719.19312,136.00196 C 725.10301,136.00196 729.90045,140.5877 729.90045,146.2386 z"
id="path690"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051713" /><path
d="M 604.46796,391.05346 C 603.0536,393.03255 601.8334,387.82632 596.97455,391.47687 C 594.23464,393.82031 593.13639,397.41133 593.15624,404.91564 C 593.17276,411.27824 596.83279,415.5261 598.95458,415.10127 C 602.20534,414.67688 600.50882,406.89615 604.04313,405.48178 C 609.13357,403.07688 616.34395,406.75487 617.61656,411.42236 C 618.88869,416.09033 615.21214,421.18316 611.25396,420.6175 C 608.99133,419.76876 612.52656,416.51612 612.80916,415.10127 C 613.09175,413.68686 613.51518,409.0175 610.12262,407.74537 C 606.72915,406.47276 607.29529,411.14025 607.15354,412.41382 C 607.01318,413.6869 604.60828,417.64745 601.92274,417.50569 C 599.23669,417.36485 594.96755,417.37902 590.75326,412.83821 C 588.51848,410.50892 585.80458,404.20922 588.20848,396.28716 C 590.61194,388.36559 594.71188,387.65865 596.97451,387.51637 C 599.23573,387.37554 605.03311,388.78993 604.46792,391.0535 L 604.46796,391.05346 z"
id="path621"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 598.67046,424.01437 C 596.31141,422.75309 599.55745,418.15742 593.43967,419.77076 C 590.97764,420.45737 597.11526,427.55153 599.80132,427.83504 C 602.77044,427.55149 601.94299,425.62299 598.67046,424.01437 L 598.67046,424.01437 z"
id="path622"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 605.17615,427.83136 C 606.44827,433.63066 607.65239,433.13917 607.86172,436.03552 C 607.96759,439.73524 601.64043,438.15687 600.79217,439.85431 C 599.94439,441.55175 598.81354,445.93712 602.91256,446.21971 C 607.01298,446.50279 612.89782,444.9263 614.08205,447.77631 C 617.27515,455.79667 624.08383,454.63369 627.25853,453.38612 C 630.84954,451.94767 639.3004,444.3285 641.22702,443.67353 C 644.09644,442.6221 638.54145,440.56125 635.28973,443.3905 C 634.44195,444.24016 627.3724,451.45478 623.69633,451.59562 C 621.01172,451.89474 616.85172,445.08418 617.05113,442.68404 C 617.33421,440.98612 623.52005,442.38676 624.40375,438.86429 C 625.06204,436.34788 625.10978,433.63018 623.13163,433.48934 C 621.15159,433.34711 611.82082,434.62019 611.53775,433.20627 C 609.84075,429.10349 613.23519,427.40649 611.9621,426.27424 C 610.54773,425.70861 605.3169,424.85987 605.17611,427.83136 L 605.17615,427.83136 z"
id="path623"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 636.60827,450.32517 C 633.61694,453.46062 625.7417,458.47924 625.7417,462.02444 C 625.7417,464.0338 627.93911,467.18389 629.75706,467.93336 C 632.47004,469.00276 636.63143,468.73529 639.79665,466.27894 C 643.37678,463.36886 644.98679,460.41914 643.45948,459.89745 C 638.04484,458.34933 637.90828,465.8163 635.30869,466.04267 C 632.82585,466.24869 629.04863,462.26074 634.00964,457.29693 C 638.97012,452.33409 645.82137,447.37029 645.58459,445.95164 C 645.34877,444.53396 638.7551,448.16037 636.60827,450.32521 L 636.60827,450.32517 z"
id="path638"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 623.73294,471.12655 C 623.51132,473.12358 628.81157,473.13543 629.7567,471.36285 C 630.4646,470.06375 623.96876,469.11863 623.73294,471.12655 z"
id="path639"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 641.58555,472.43489 C 638.59422,475.56942 641.93949,479.13346 644.22484,482.05485 C 645.49036,483.61526 648.39712,485.13501 650.21458,485.88404 C 652.92801,486.95392 658.33556,486.58246 661.50126,484.12611 C 665.08043,481.21652 665.3635,476.10576 663.18926,476.08167 C 657.57049,476.01929 661.48186,483.55952 658.88327,483.78634 C 656.39946,483.99283 649.43766,482.42251 646.05175,475.24761 C 644.11705,471.01912 649.61863,470.21055 648.79542,468.37324 C 647.95664,466.39933 643.73287,470.26961 641.58551,472.43493 L 641.58555,472.43489 z"
id="path640"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 656.17332,472.15481 C 657.33679,473.79224 661.29969,470.26977 660.82429,468.31762 C 660.48784,466.87629 655.01222,470.49895 656.17332,472.15481 z"
id="path641"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 664.09137,487.07867 C 663.92977,489.37863 664.61071,492.48383 661.90953,492.5883 C 659.20839,492.6918 655.77994,489.05354 653.07872,489.15749 C 650.37711,489.26144 649.23397,491.34073 649.54537,492.48479 C 649.85681,493.62792 654.53282,494.97947 662.53281,494.45918 C 670.53284,493.93936 668.76638,498.82519 674.37667,498.40884 C 679.9874,497.99345 680.81817,496.12261 680.40327,494.87597 C 679.98744,493.62792 675.20836,494.45918 673.44195,494.14774 C 671.67553,493.83538 668.55945,491.02929 668.14358,488.63811 C 667.72823,486.24698 667.72823,482.12619 669.80561,482.08886 C 673.64992,482.02224 671.87402,485.58441 672.02146,486.83433 C 672.15093,487.94109 673.40842,489.08895 675.10398,487.07867 C 677.3562,484.41102 676.14313,480.21754 673.96132,478.76252 C 671.77996,477.30751 664.49824,481.4807 664.09137,487.07867 L 664.09137,487.07867 z"
id="path642"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 683.9365,487.49478 C 683.52771,491.61648 680.57939,491.91608 680.92392,493.41979 C 681.35015,495.147 682.41719,495.68902 683.10572,499.96856 C 683.49511,502.07807 686.1183,502.97218 689.44372,502.77513 C 692.1605,502.70047 694.01815,499.01776 695.78032,499.13639 C 698.27216,499.2701 696.19667,504.913 702.01485,504.85487 C 706.6899,504.80997 707.83304,500.79982 709.49506,500.69631 C 711.15753,500.59188 710.9496,505.37376 714.79439,505.37376 C 718.63823,505.37376 720.30022,501.00775 722.06667,500.90424 C 723.93708,501.00771 723.93708,505.58169 729.65083,505.26977 C 735.36603,504.95741 739.62569,504.12664 740.97628,502.98302 C 742.32687,501.83945 742.94971,498.0972 744.81963,497.88878 C 746.69004,497.68181 749.59963,501.4231 752.19682,501.4231 C 754.79449,501.4231 760.19589,494.87573 761.85792,494.77082 C 763.52135,494.66779 764.87194,498.82495 768.61226,498.82495 C 774.43045,498.72096 775.11046,491.1524 777.82016,490.79515 C 782.70458,490.31975 782.89739,488.32599 783.1573,487.80618 C 783.67668,486.3502 783.11997,479.52592 782.01041,476.40939 C 781.47167,474.76537 775.26174,460.8819 772.45706,460.5705 C 769.65097,460.25862 770.48223,464.31275 772.1447,466.70389 C 773.80765,469.09458 782.32609,480.2173 781.18339,483.43969 C 780.04074,486.66304 774.01462,482.08818 769.2351,482.08818 C 762.58615,482.08818 758.54618,495.53874 753.85837,496.01794 C 751.7994,496.2386 749.59963,494.251 750.3269,492.79551 C 751.67749,490.71717 753.23505,485.72692 748.04111,486.45511 C 742.8462,487.18146 737.54735,489.57264 738.37861,492.38012 C 739.20986,495.18621 742.32687,497.99321 738.89794,499.13635 C 735.46906,500.27996 729.54733,500.59232 726.63826,499.65664 C 723.7287,498.72096 725.49516,492.17219 723.7287,492.17219 C 721.75527,492.17219 721.65133,499.86458 718.8462,500.07299 C 716.04156,500.27996 713.54735,499.13639 712.92451,496.95406 C 712.30071,494.77082 713.96322,492.06824 712.09326,491.7568 C 710.22285,491.44444 708.35197,500.38439 705.54732,500.17646 C 702.74268,499.96856 702.63825,499.34524 700.97622,497.57738 C 699.31327,495.81093 702.43032,489.78105 699.62519,489.26124 C 696.81959,488.74142 694.01398,498.20119 692.14498,498.09768 C 690.27362,497.99325 687.46897,497.88975 686.63772,496.01886 C 686.22185,495.08226 686.33856,489.22955 686.43166,486.85681 C 686.37969,485.73352 683.73001,486.22737 683.93654,487.49478 L 683.9365,487.49478 z"
id="path643"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 778.37691,462.0242 C 783.49667,469.77992 788.10794,480.26751 790.94852,480.8393 C 792.83972,481.11669 785.02586,466.80699 782.42915,463.58364 C 780.24687,460.25726 773.97313,455.26417 778.37691,462.0242 L 778.37691,462.0242 z"
id="path644"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 683.46038,480.90908 C 682.69578,482.7908 682.96937,484.60595 684.27887,484.33704 C 685.58881,484.06817 687.28104,480.90908 686.84489,480.3042 C 686.40822,479.69932 684.49764,479.16251 683.46038,480.90908 L 683.46038,480.90908 z"
id="path645"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 793.41679,465.46509 C 793.39883,469.66993 796.37504,474.42628 801.91347,474.12668 C 807.45238,473.82757 813.52575,467.69886 813.97471,461.40812 C 814.42362,455.11781 806.66414,450.50042 804.71859,451.84817 C 802.77165,453.19591 805.44822,457.88705 810.41911,458.17672 C 812.54846,458.30572 811.85332,462.47091 807.77418,465.76656 C 803.49984,469.1468 797.17268,469.08254 795.62504,466.74998 C 794.42757,463.45477 793.33781,463.43164 793.41675,465.46505 L 793.41679,465.46509 z"
id="path646"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 796.75366,452.71779 C 795.94417,454.3831 797.63216,458.22221 799.4638,458.05209 C 801.32004,457.87108 797.34813,451.61531 796.75366,452.71779 z"
id="path647"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 813.01386,449.74502 C 814.09178,452.23923 815.37383,456.04193 817.64593,456.04193 C 819.91944,456.04193 821.75488,456.65437 821.75488,458.57819 C 821.75488,460.50152 815.82943,466.9071 815.63614,469.07334 C 815.30581,472.76689 817.99611,472.57172 819.30748,470.55956 C 820.61838,468.5488 824.16402,459.08764 824.90169,456.4786 C 825.22253,454.41631 827.77107,450.53991 827.87362,446.50515 C 827.71062,441.95957 831.8937,445.63372 833.90542,445.80905 C 835.74701,445.88939 837.75161,442.48503 838.01388,440.03623 C 838.27615,437.58692 836.0901,437.15029 836.0901,434.9642 C 836.0901,433.73933 838.42835,429.80335 838.53749,427.17967 C 838.79836,424.85891 833.9924,418.17118 831.98256,418.25909 C 830.32101,418.34651 831.72029,420.79534 832.68194,421.84489 C 833.64315,422.89444 836.09006,425.08053 835.2168,427.00435 C 833.64315,430.76596 825.95032,431.72809 825.60107,435.75149 C 825.25182,438.63743 825.95028,447.73334 823.59031,447.73334 C 821.2303,447.73334 819.298,442.05123 815.63614,442.04795 C 811.52863,441.93833 812.16232,447.84441 813.01386,449.74506 L 813.01386,449.74502 z"
id="path648"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 819.04342,415.19609 C 819.15588,416.81555 822.53992,423.85441 824.5502,423.85441 C 827.4347,423.85441 823.23838,420.53183 823.50065,419.30696 C 823.7634,418.08208 827.8955,416.23764 826.21079,415.80857 C 823.19725,414.88517 818.8941,413.05494 819.04342,415.19613 L 819.04342,415.19609 z"
id="path651"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 818.78335,406.10174 C 819.39531,408.37525 828.74828,411.78621 832.7698,412.92367 C 836.79036,414.06064 841.68567,418.87136 843.52154,417.29628 C 845.35698,415.72215 831.19616,410.12466 829.09893,409.33786 C 827.00123,408.55058 818.34624,403.82776 818.78335,406.10174 L 818.78335,406.10174 z"
id="path652"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 847.01865,420.79354 C 850.51515,420.88 848.59181,413.97066 847.71759,412.30915 C 846.8438,410.64716 845.53242,415.45784 845.70727,416.85756 C 845.88167,418.25681 845.96957,420.70564 847.01865,420.79354 L 847.01865,420.79354 z"
id="path718"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 826.64938,386.42346 C 826.61961,387.98859 836.30904,386.87806 840.81068,388.08499 C 842.7529,388.62938 849.37681,392.19485 850.59981,391.32063 C 851.99905,389.48331 841.597,385.54874 835.65263,385.54874 C 833.72789,385.57757 826.68291,384.5781 826.64934,386.42345 L 826.64938,386.42346 z"
id="path655"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 824.11273,390.88341 C 822.37844,392.74106 829.95644,394.81844 836.70038,395.08074 C 843.41739,395.34301 847.77064,399.38105 847.19033,402.34025 C 846.2282,407.32626 837.83687,404.08922 838.88598,406.80124 C 839.49746,408.90039 843.18726,408.12915 843.60596,410.38753 C 843.89564,412.66196 846.26365,413.06222 846.1375,410.25806 C 846.12377,408.02708 851.34184,404.35197 851.21093,403.30286 C 850.9491,401.2042 847.80233,393.85677 839.75977,393.06996 C 831.71817,392.28314 826.32622,388.40576 824.11273,390.88342 L 824.11273,390.88341 z"
id="path720"
style="fill:#f7e017;stroke:#f7e017;stroke-width:0.28007236" /><path
d="M 609.17324,439.93053 C 608.09484,439.30721 604.25149,442.76354 605.63044,443.5343 C 608.24656,445.01625 610.81258,440.84729 609.17324,439.93053 z"
id="path629"
style="fill:#cf1126;stroke:#f7e017;stroke-width:0.08002069" /><path
d="M 617.43137,435.82547 C 615.56521,435.59297 614.66358,439.55683 616.22446,439.79217 C 620.19113,440.3408 620.97277,436.25362 617.43137,435.82547 z"
id="path634"
style="fill:#cf1126;stroke:#f7e017;stroke-width:0.08002069" /><path
d="M 818.60738,446.94434 C 817.72416,446.9401 814.93604,448.16922 815.89816,450.09396 C 816.85985,452.0173 819.61913,452.06363 820.88041,450.96918 C 822.00514,449.90307 821.75136,446.96327 818.60738,446.94434 L 818.60738,446.94434 z"
id="path649"
style="fill:#cf1126;stroke:#f7e017;stroke-width:0.08002069" /><path
d="M 829.53421,438.55017 C 829.81632,440.66584 831.36256,440.32275 832.59264,439.86155 C 833.9914,439.24955 834.39923,437.39856 833.03071,436.71334 C 831.60214,435.99927 829.24502,437.03986 829.53421,438.55017 L 829.53421,438.55017 z"
id="path650"
style="fill:#cf1126;stroke:#f7e017;stroke-width:0.08002069" /><path
d="M 766.36188,488.01896 C 764.47919,492.17988 766.10053,496.25101 769.10415,495.46705 C 772.10776,494.68353 775.11278,488.93244 772.89269,487.10317 C 770.67259,485.27385 767.61228,485.25401 766.36188,488.019 L 766.36188,488.01896 z"
id="path657"
style="fill:#cf1126;stroke:#f7e017;stroke-width:0.08002069" /><path
d="M 512.9123,315.34869 C 505.90325,314.7112 489.97645,311.52377 489.33897,314.7112 C 488.70196,317.89817 497.93963,355.18966 502.71867,359.9701 C 507.49626,364.75101 529.7951,374.94989 532.02468,373.67488 C 534.25422,372.40038 527.56509,349.13374 525.01611,344.99031 C 522.46805,340.8464 514.82292,325.86708 515.4604,325.22912 C 516.09692,324.5921 512.5929,315.34877 512.91234,315.34877 L 512.9123,315.34869 z"
id="path697"
style="fill:#cf1126" /><path
d="M 498.88868,314.07796 C 500.59652,305.10588 511.02269,315.84487 509.99059,327.53276 C 509.48209,331.49804 511.69891,335.86639 513.83394,338.00239 M 498.88868,314.07792 L 498.88868,314.07792 L 498.88868,314.07792 z"
id="path632"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 507.85499,314.50527 L 507.46369,315.02651 C 512.6926,306.17302 517.74855,318.77772 518.52923,333.30335 M 507.85499,314.50526 L 507.85499,314.50526 L 507.85499,314.50526 z"
id="path633"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 489.86635,313.12492 C 489.56439,305.87484 501.33403,303.79274 500.6058,330.00156 C 505.73737,333.32462 511.77721,346.01246 512.07869,350.54435 C 515.93056,351.45072 522.34466,356.18913 523.90646,360.11706 M 489.86635,313.12492 L 489.86635,313.12492 L 489.86635,313.12492 z"
id="path631"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 518.73781,458.35125 C 519.28835,438.39537 519.60259,395.66305 517.51433,391.02705 C 513.84158,382.44579 495.36625,372.49598 489.73659,359.00429 C 484.10034,344.73192 479.29577,312.17579 481.583,308.25158 C 484.57906,302.59595 494.5676,315.20013 491.8499,329.09728 C 503.92814,343.29543 501.38904,351.75338 503.62522,353.56709 C 511.07331,359.30589 522.44645,363.23431 524.45769,368.36967 C 528.59779,377.55725 523.55321,355.37892 520.23107,350.84702 C 516.91037,346.31561 511.17345,336.34692 515.09903,333.93069 C 519.0232,331.51306 525.96844,337.85816 526.87387,339.67046 C 527.77978,341.48321 537.13984,351.75438 539.85706,354.17056 C 544.68807,357.79607 556.88967,365.89959 556.64676,372.84671 C 556.634,384.07669 557.63066,457.96271 557.63066,457.96271 M 518.73777,458.35117 L 518.73777,458.35117 L 518.73777,458.35117 z"
id="path630"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 516.48522,484.66205 C 516.48522,484.66205 516.40868,492.69468 516.40961,492.84588 C 519.89335,497.08902 534.4355,497.56158 537.68958,497.54362 C 540.87513,497.45051 554.5577,497.69485 557.73853,492.46686 C 557.81415,492.31562 557.93558,485.64398 557.93558,483.80999 M 516.48526,484.66201 L 516.48526,484.66201 L 516.48526,484.66201 z"
id="path581"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 515.83306,472.79498 C 511.80542,473.69097 510.75254,478.61508 513.59452,482.19993 C 515.89923,485.10808 525.45634,488.46895 536.42214,488.69389 C 547.38797,488.91647 561.93489,485.11044 562.6059,479.06448 C 562.82992,473.019 557.15538,473.38757 557.82639,473.61203 M 515.83314,472.79498 L 515.83314,472.79498 L 515.83314,472.79498 z"
id="path637"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 515.83306,461.67211 C 511.80542,462.5681 511.05166,467.64293 513.89412,471.22781 C 516.19883,474.13645 525.90338,478.16881 536.86965,478.39331 C 547.83453,478.61684 561.71135,474.13881 562.38193,468.09332 C 562.60594,462.04736 558.43275,462.56814 558.12979,462.71886 M 515.83286,461.67215 L 515.83286,461.67215 L 515.83286,461.67215 z"
id="path636"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 538.65896,467.86971 C 553.20491,468.09417 562.60466,460.92871 562.60466,457.12317 C 562.60466,453.31619 557.90501,453.09173 554.99498,454.21126 C 552.08587,455.33075 547.61023,458.17368 538.21144,458.24126 C 528.58959,458.53469 520.08391,451.52424 517.1748,451.74826 C 514.26569,451.97272 511.98606,455.12849 512.92266,458.46528 C 514.07476,461.77557 524.33601,468.31722 538.65892,467.86975 L 538.65896,467.86971 z"
id="path635"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 927.09134,315.34869 C 934.09991,314.7112 950.02719,311.52377 950.66467,314.7112 C 951.3012,317.89817 942.06309,355.18966 937.28497,359.9701 C 932.50738,364.75101 910.20806,374.94989 907.97804,373.67488 C 905.74894,372.40038 912.43855,349.13374 914.98661,344.99031 C 917.53515,340.8464 925.18029,325.86708 924.5428,325.22912 C 923.90628,324.5921 927.4103,315.34877 927.09134,315.34877 L 927.09134,315.34869 z"
id="path869"
style="fill:#cf1126" /><path
d="M 941.11496,314.07796 C 939.40664,305.10588 928.98051,315.84487 930.01257,327.53276 C 930.52107,331.49804 928.30473,335.86639 926.1697,338.00239 M 941.11496,314.07792 L 941.11496,314.07792 L 941.11496,314.07792 z"
id="path870"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 932.14865,314.50527 L 932.53995,315.02651 C 927.31056,306.17302 922.25461,318.77772 921.47345,333.30335 M 932.14865,314.50526 L 932.14865,314.50526 L 932.14865,314.50526 z"
id="path871"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 950.13329,313.12492 C 950.43573,305.87484 938.66513,303.79274 939.39384,330.00156 C 934.26227,333.32462 928.22243,346.01246 927.92143,350.54435 C 924.06956,351.45072 917.65502,356.18913 916.09318,360.11706 M 950.13329,313.12492 L 950.13329,313.12492 L 950.13329,313.12492 z"
id="path872"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 921.26183,458.35125 C 920.71225,438.39537 920.39797,395.66305 922.48623,391.02705 C 926.15806,382.44579 944.63383,372.49598 950.26397,359.00429 C 955.90022,344.73192 960.70431,312.17579 958.41663,308.25158 C 955.42106,302.59595 945.43296,315.20013 948.15022,329.09728 C 936.07198,343.29543 938.61108,351.75338 936.3749,353.56709 C 928.92637,359.30589 917.55411,363.23431 915.54195,368.36967 C 911.40184,377.55725 916.44691,355.37892 919.76857,350.84702 C 923.08974,346.31561 928.82619,336.34692 924.90109,333.93069 C 920.97696,331.51306 914.03212,337.85816 913.12625,339.67046 C 912.22038,341.48321 902.86028,351.75438 900.14305,354.17056 C 895.31205,357.79607 883.11045,365.89959 883.35336,372.84671 C 883.36612,384.07669 882.3695,457.96271 882.3695,457.96271 M 921.26191,458.35117 L 921.26191,458.35117 L 921.26191,458.35117 z"
id="path873"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 923.51842,484.66205 C 923.51842,484.66205 923.59496,492.69468 923.59404,492.84588 C 920.10981,497.08902 905.56858,497.56158 902.31358,497.54362 C 899.12847,497.45051 885.44638,497.69485 882.26555,492.46686 C 882.18993,492.31562 882.0685,485.64398 882.0685,483.80999 M 923.51842,484.66201 L 923.51842,484.66201 L 923.51842,484.66201 z"
id="path874"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 924.17058,472.79498 C 928.19822,473.69097 929.25066,478.61508 926.40912,482.19993 C 924.10397,485.10808 914.5473,488.46895 903.58102,488.69389 C 892.61567,488.91647 878.06783,485.11044 877.39726,479.06448 C 877.17372,473.019 882.84827,473.38757 882.17677,473.61203 M 924.17042,472.79498 L 924.17042,472.79498 L 924.17042,472.79498 z"
id="path876"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 924.17058,461.67211 C 928.19822,462.5681 928.9515,467.64293 926.10905,471.22781 C 923.80481,474.13645 914.09978,478.16881 903.13351,478.39331 C 892.16815,478.61684 878.29229,474.13881 877.62171,468.09332 C 877.39726,462.04736 881.57045,462.56814 881.87385,462.71886 M 924.17078,461.67215 L 924.17078,461.67215 L 924.17078,461.67215 z"
id="path877"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /><path
d="M 901.34469,467.86971 C 886.79873,468.09417 877.3985,460.92871 877.3985,457.12317 C 877.3985,453.31619 882.09815,453.09173 885.00818,454.21126 C 887.9173,455.33075 892.39293,458.17368 901.79172,458.24126 C 911.41309,458.53469 919.91925,451.52424 922.8288,451.74826 C 925.73791,451.97272 928.01706,455.12849 927.08094,458.46528 C 925.92884,461.77557 915.66711,468.31722 901.34469,467.86975 L 901.34469,467.86971 z"
id="path878"
style="fill:#cf1126;stroke:#000000;stroke-width:2.00051689" /></svg>

After

Width:  |  Height:  |  Size: 42 KiB

6
build/svg/BO.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1100" height="750">
<rect fill="#ce1126" width="1100" height="250"/>
<rect fill="#f9d616" y="250" width="1100" height="250"/>
<rect fill="#007a3d" y="500" width="1100" height="250"/>
</svg>

After

Width:  |  Height:  |  Size: 277 B

5
build/svg/BQ.svg Normal file
View file

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600" viewBox="0 0 9 6">
<rect fill="#21468B" width="9" height="6"/>
<rect fill="#FFF" width="9" height="4"/>
<rect fill="#AE1C28" width="9" height="2"/>
</svg>

After

Width:  |  Height:  |  Size: 223 B

2380
build/svg/BQAQ.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 217 KiB

112
build/svg/BR.svg Normal file
View file

@ -0,0 +1,112 @@
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" width="720px" height="504px" viewBox="-2100 -1470 4200 2940">
<title>Flag of Brazil</title>
<defs>
<path id="O" d="M 0,0 a 31.5,35 0 0,0 0,-70 a 31.5,35 0 0,0 0,70 M 0,-13 a 18.5,22 0 0,0 0,-44 a 18.5,22 0 0,0 0,44" fill-rule="evenodd"/>
<g id="R">
<use xlink:href="#P"/>
<path d="M 28,0 c 0,-10 0,-32 -15,-32 h -19 c 22,0 22,22 22,32"/>
</g>
<path id="D" d="M -31.5,0 h 33 a 30,30 0 0,0 30,-30 v -10 a 30,30 0 0,0 -30,-30 H -31.5 z M -18.5,-13 h 19 a 19,19 0 0,0 19,-19 v -6 a 19,19 0 0,0 -19,-19 H -18.5 z" fill-rule="evenodd"/>
<path id="E" d="M 0,0 h 63 v -13 H 12 v -18 h 40 v -12 h -40 v -14 H 60 v -13 H 0 z" transform="translate(-31.5)"/>
<path id="M" d="M -31.5,0 h 12 v -48 l 14,48 h 11 l 14,-48 V 0 h 12 V -70 h -17.5 l -14,48 l -14,-48 H -31.5 z"/>
<path id="E_" d="M -26.25,0 h 52.5 v -12 h -40.5 v -16 h 33 v -12 h -33 v -11 H 25 v -12 H -26.25 z"/>
<path id="P" d="M -31.5,0 h 13 v -26 h 28 a 22,22 0 0,0 0,-44 h -40 z M -18.5,-39 h 27 a 9,9 0 0,0 0,-18 h -27 z" fill-rule="evenodd"/>
<g id="G">
<clipPath id="gcut">
<path d="M -31.5,0 v -70 h 63 v 70 z M 0,-47 v 12 h 31.5 v -12 z"/>
</clipPath>
<use xlink:href="#O" clip-path="url(#gcut)"/>
<rect x="5" y="-35" width="26.5" height="10"/>
<rect x="21.5" y="-35" width="10" height="35"/>
</g>
<path id="S" d="M -15.75,-22 C -15.75,-15 -9,-11.5 1,-11.5 C 11,-11.5 15.74,-14.75 15.75,-19.25 C 15.75,-33.5 -31,-24.5 -30.75,-49.5 C -30.5,-71 -6,-70 3,-70 C 12,-70 29,-66 28.75,-48.75 L 13.5,-48.75 C 13.5,-56.25 6.5,-59 -1.5,-59 C -9.25,-59 -14.75,-57.75 -14.75,-50.5 C -15,-38.75 31.5,-46.5 31.5,-21.75 C 31.5,-3.5 13.5,0 0,0 C -11.5,0 -31.55,-4.5 -31.5,-22 z"/>
<g id="star">
<g id="cone">
<polygon id="triangle" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/>
<use xlink:href="#triangle" transform="scale(-1,1)"/>
</g>
<use xlink:href="#cone" transform="rotate(72)"/>
<use xlink:href="#cone" transform="rotate(-72)"/>
<use xlink:href="#cone" transform="rotate(144)"/>
<use xlink:href="#cone" transform="rotate(-144)"/>
</g>
<use id="star1" xlink:href="#star" transform="scale(31.5)"/>
<use id="star2" xlink:href="#star" transform="scale(26.25)"/>
<use id="star3" xlink:href="#star" transform="scale(21)"/>
<use id="star4" xlink:href="#star" transform="scale(15)"/>
<use id="star5" xlink:href="#star" transform="scale(10.5)"/>
</defs>
<rect id="field" fill="#009B3A" x="-50%" y="-50%" width="100%" height="100%"/>
<path id="rhombus" fill="#FEDF00" d="M -1743,0 L 0,1113 L 1743,0 L 0,-1113 z"/>
<circle id="circle" fill="#002776" r="735"/>
<clipPath id="clipcircle">
<use xlink:href="#circle"/>
</clipPath>
<path id="band" d="M-2205,1470 a1785,1785 0 0,1 3570,0 h-105 a1680,1680 0 1,0 -3360,0 z" clip-path="url(#clipcircle)" fill="white"/>
<g fill="#009B3A" transform="translate(-420,1470)">
<g id="ORDEM" transform="rotate(-7)">
<use xlink:href="#O" transform="translate(0,-1697.5)"/>
<use xlink:href="#R" transform="rotate(3) translate(0,-1697.5)"/>
<use xlink:href="#D" transform="rotate(6) translate(0,-1697.5)"/>
<use xlink:href="#E" transform="rotate(9) translate(0,-1697.5)"/>
<use xlink:href="#M" transform="rotate(12) translate(0,-1697.5)"/>
</g>
<use xlink:href="#E_" transform="rotate(9.75) translate(0,-1697.5)"/>
<g id="PROGRESSO" transform="rotate(14.5)">
<use xlink:href="#P" transform="translate(0,-1697.5)"/>
<use xlink:href="#R" transform="rotate(3) translate(0,-1697.5)"/>
<use xlink:href="#O" transform="rotate(6) translate(0,-1697.5)"/>
<use xlink:href="#G" transform="rotate(9) translate(0,-1697.5)"/>
<use xlink:href="#R" transform="rotate(12) translate(0,-1697.5)"/>
<use xlink:href="#E" transform="rotate(15) translate(0,-1697.5)"/>
<use xlink:href="#S" transform="rotate(18) translate(0,-1697.5)"/>
<use xlink:href="#S" transform="rotate(21) translate(0,-1697.5)"/>
<use xlink:href="#O" transform="rotate(24) translate(0,-1697.5)"/>
</g>
</g>
<g id="stars" fill="white">
<use id="Alpha_Canis_Minoris" xlink:href="#star1" transform="translate(-600,-132)"/>
<g id="Canis_Majoris">
<use id="Alpha_Canis_Majoris" xlink:href="#star1" transform="translate(-535,177)"/>
<use id="Beta_Canis_Majoris" xlink:href="#star2" transform="translate(-625,243)"/>
<use id="Gamma_Canis_Majoris" xlink:href="#star4" transform="translate(-463,132)"/>
<use id="Delta_Canis_Majoris" xlink:href="#star2" transform="translate(-382,250)"/>
<use id="Epsilon_Canis_Majoris" xlink:href="#star3" transform="translate(-404,323)"/>
</g>
<use id="Alpha_Virginis" xlink:href="#star1" transform="translate(228,-228)"/>
<g id="Scorpio">
<use id="Alpha_Scorpii" xlink:href="#star1" transform="translate(515,258)"/>
<use id="Beta_Scorpii" xlink:href="#star3" transform="translate(617,265)"/>
<use id="Epsilon_Scorpii" xlink:href="#star2" transform="translate(545,323)"/>
<use id="Theta_Scorpii" xlink:href="#star2" transform="translate(368,477)"/>
<use id="Iota_Scorpii" xlink:href="#star3" transform="translate(367,551)"/>
<use id="Kappa_Scorpii" xlink:href="#star3" transform="translate(441,419)"/>
<use id="Lambda_Scorpii" xlink:href="#star2" transform="translate(500,382)"/>
<use id="Mu_Scorpii" xlink:href="#star3" transform="translate(365,405)"/>
</g>
<g id="Hydra">
<use id="Alpha_Hydrae" xlink:href="#star2" transform="translate(-280,30)"/>
<use id="Gamma_Hydrae" xlink:href="#star3" transform="translate(200,-37)"/>
</g>
<g id="Crux">
<use id="Alpha_Crucis" xlink:href="#star1" transform="translate(0,330)"/>
<use id="Beta_Crucis" xlink:href="#star2" transform="translate(85,184)"/>
<use id="Gamma_Crucis" xlink:href="#star2" transform="translate(0,118)"/>
<use id="Delta_Crucis" xlink:href="#star3" transform="translate(-74,184)"/>
<use id="Epsilon_Crucis" xlink:href="#star4" transform="translate(-37,235)"/>
</g>
<g id="Triangulum_Australe">
<use id="Alpha_Trianguli_Australe" xlink:href="#star2" transform="translate(220,495)"/>
<use id="Beta_Trianguli_Australe" xlink:href="#star3" transform="translate(283,430)"/>
<use id="Gamma_Trianguli_Australe" xlink:href="#star3" transform="translate(162,412)"/>
</g>
<use id="Alpha_Carinae" xlink:href="#star1" transform="translate(-295,390)"/>
<use id="Sigma_Octantis" xlink:href="#star5" transform="translate(0,575)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

9
build/svg/BS.svg Normal file
View file

@ -0,0 +1,9 @@
<?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" version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="300">
<rect width="600" height="300" x="0" y="0" style="fill:#00ABC9" />
<rect width="600" height="100" x="0" y="100" style="fill:#FAE042" />
<path d="M 0,0 L 0,300 L 250,150 L 0,0 z " />
</svg>

After

Width:  |  Height:  |  Size: 472 B

1867
build/svg/BT.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 107 KiB

77
build/svg/BUMM.svg Normal file
View file

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="900" height="500" id="svg548">
<defs id="defs550">
<linearGradient x1="0" y1="0" x2="1" y2="0" id="linearGradient604" gradientUnits="objectBoundingBox" spreadMethod="pad">
<stop id="stop605" style="stop-color: rgb(0, 0, 0); stop-opacity: 1;" offset="0"/>
<stop id="stop606" style="stop-color: rgb(255, 255, 255); stop-opacity: 1;" offset="1"/>
</linearGradient>
<radialGradient cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5" id="radialGradient607" xlink:href="#linearGradient604" gradientUnits="objectBoundingBox" spreadMethod="pad"/>
<linearGradient x1="1.04e-06" y1="-2e-07" x2="1.0000011" y2="-2e-07" id="linearGradient608" xlink:href="#linearGradient604" gradientUnits="objectBoundingBox" gradientTransform="translate(1.03914e-06, -2.00218e-07)" spreadMethod="pad"/>
</defs>
<rect width="900" height="500" x="0" y="-1.6431301e-14" id="rect781" style="font-size: 12px; fill: rgb(218, 45, 28); fill-rule: evenodd; stroke-width: 1pt;"/>
<rect width="389.76379" height="248.03151" x="0" y="1.4749145e-07" id="rect578" style="font-size: 12px; fill: rgb(32, 66, 161); fill-rule: evenodd; stroke-width: 1pt;"/>
<path d="M 227.0559,125.31765 C 227.0559,143.13058 212.41808,157.58758 194.38257,157.58758 C 176.34748,157.58758 161.70965,143.13058 161.70965,125.31765 C 161.70965,107.50473 176.34748,93.048137 194.38257,93.048137 C 212.41808,93.048137 227.0559,107.50473 227.0559,125.31765 z M 125.19302,118.09324 L 129.03672,103.16255 L 139.60763,107.49736 L 145.37339,95.456273 L 136.24382,89.676664 L 145.37339,77.15411 L 154.02224,85.823319 L 163.6317,77.15411 L 157.86594,67.521156 L 171.79983,60.296748 L 175.16323,72.337429 L 188.1365,68.484493 L 186.69516,57.406739 L 201.59008,56.925275 L 200.62905,68.484493 L 214.08263,72.819301 L 217.44603,60.778211 L 230.89961,67.521156 L 224.65313,77.635574 L 235.22403,85.823319 L 243.39216,77.15411 L 252.52132,88.713328 L 242.91185,95.456273 L 249.15793,107.49736 L 259.72883,103.64402 L 263.09223,118.57471 L 252.04101,119.53804 L 251.56029,133.02393 L 262.61151,133.98727 L 259.24811,149.39983 L 248.19731,144.58315 L 243.39216,157.10611 L 252.52132,162.88572 L 243.39216,174.9264 L 235.70434,166.2572 L 225.13385,174.9264 L 231.37992,185.04082 L 217.44603,191.78377 L 213.60232,180.22455 L 200.62905,183.59602 L 202.07039,195.15524 L 186.69516,195.63711 L 188.1365,184.07749 L 175.64395,180.70601 L 171.31952,191.78377 L 158.34625,185.04082 L 164.59273,175.40828 L 153.54152,167.22012 L 145.37339,175.40828 L 135.76351,163.84906 L 145.8537,156.62424 L 139.60763,145.06502 L 129.51744,148.91796 L 125.19302,133.98727 L 137.20526,133.02393 L 137.20526,119.53804 L 125.19302,118.09324 z" id="path577" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke-width: 1pt;"/>
<polygon points="390.906,29.178 360.233,7.70501 329.44,29.0038 340.384,-6.80287 310.612,-29.5076 348.047,-30.1644 360.441,-65.4955 372.634,-30.0947 410.065,-29.2258 380.165,-6.69013 390.906,29.178" transform="matrix(0.340443, 0, 0, 0.332749, 72.2073, 39.51)" id="polygon579" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke-width: 1pt;"/>
<path d="M 240.44344,93.196788 C 247.0174,116.32861 242.4487,128.83783 240.70612,129.06711 C 238.47487,128.09023 238.30651,104.50398 228.80824,98.497056 C 219.85388,92.978321 225.19959,87.619639 227.63572,85.53783 C 230.11847,84.434004 237.64626,83.489975 240.44344,93.196788 z" id="path596" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.24378;"/>
<path d="M 215.47416,123.31636 C 198.6608,161.50668 205.14999,187.38824 198.73923,187.20636 C 192.15238,187.26028 190.41034,163.43379 202.58328,123.57077 C 217.93444,73.462352 237.47489,77.649573 239.84309,91.671191 C 226.92003,97.785251 225.17211,99.30518 215.47416,123.31636 z" id="path594" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.47132;"/>
<path d="M 237.05256,136.01894 C 239.78391,160.74364 231.59634,171.51273 229.47279,171.1789 C 227.03327,169.50912 236.3822,154.27872 222.04432,137.47581 C 213.82373,127.99369 222.76147,131.47997 226.11771,130.22441 C 229.31424,129.9401 235.86056,125.63137 237.05256,136.01894 z" id="path597" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.38153;"/>
<path d="M 209.61951,160.45184 C 203.13072,175.36258 200.30398,193.52671 192.71729,191.29591 C 184.86923,189.23928 192.36645,163.73244 202.41473,145.94452 C 214.81863,124.18897 237.04891,118.66644 236.67393,134.33515 C 221.34712,136.78407 214.61555,148.40072 209.61951,160.45184 z" id="path598" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.63428;"/>
<path d="M 153.40125,120.68924 C 146.92381,148.79879 148.28263,166.14151 150.04721,165.6672 C 152.4632,165.96059 151.74265,138.83355 163.04202,127.77988 C 173.50148,117.10231 167.63425,119.25823 165.24627,115.28514 C 160.37906,113.30641 156.65746,107.53432 153.40125,120.68924 z" id="path599" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.60535;"/>
<path d="M 179.24024,151.00085 C 187.00667,169.97148 191.98656,193.24094 198.37642,190.13373 C 205.02077,187.24229 194.34929,154.95279 183.61331,132.11855 C 174.4469,114.06787 167.65671,111.84112 157.51632,112.41817 C 169.33874,117.12903 173.18241,135.66066 179.24024,151.00085 z" id="path600" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.74427;"/>
<path d="M 180.57559,140.47159 C 186.34563,164.56651 188.83201,193.507 195.62426,190.59597 C 202.64994,187.98145 195.40154,147.31432 187.05487,118.12461 C 179.77055,94.958037 168.55356,95.328153 158.25031,94.658694 C 174.75081,102.90499 176.13428,121.01781 180.57559,140.47159 z" id="path602" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.94352;"/>
<path d="M 156.5098,95.750378 C 141.39552,108.15625 141.4776,133.29242 144.35127,133.69012 C 147.34742,134.1963 148.97026,113.82051 158.21212,106.18806 C 167.99853,98.411467 169.42315,102.64093 180.47683,103.4681 C 177.52449,96.953105 168.90644,85.092223 156.5098,95.750378 z" id="path601" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1.78873;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.370821, -0.169127, 0.146834, 0.288646, -11.6428, 21.7975)" id="path672" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.384462, -0.135099, 0.12041, 0.300686, -6.41801, 15.1013)" id="path670" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.405971, -0.0341881, 0.0413781, 0.321341, 24.358, -33.6588)" id="path671" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.40247, -0.0633413, 0.0643061, 0.31753, 11.2087, -8.3407)" id="path668" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.40247, -0.0633413, 0.0643061, 0.31753, 11.2087, 1.77373)" id="path666" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.405461, 0.039804, -0.0171465, 0.32355, 50.2569, -50.7337)" id="path669" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.405461, 0.039804, -0.0171465, 0.32355, 50.2569, -40.6193)" id="path667" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406914, 0.0199484, -0.00139467, 0.324003, 30.1188, -21.0913)" id="path638" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406914, 0.0199484, -0.00139467, 0.324003, 37.3261, -21.0686)" id="path639" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.388936, 0.121551, -0.0823689, 0.31331, 84.1524, -54.6247)" id="path640" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406914, 0.0199484, -0.00139467, 0.324003, 29.6383, -10.0136)" id="path635" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406914, 0.0199484, -0.00139467, 0.324003, 36.8456, -12.8808)" id="path636" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.388936, 0.121551, -0.0823689, 0.31331, 83.6719, -44.5103)" id="path637" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.526221, -0.0384912, 0.0497364, 0.407245, -20.08, 36.4272)" id="path603" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406914, 0.0199484, -0.00139467, 0.324003, 26.2749, 1.06405)" id="path632" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406914, 0.0199484, -0.00139467, 0.324003, 34.9236, -1.32146)" id="path633" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.388936, 0.121551, -0.0823689, 0.31331, 80.3086, -33.4326)" id="path634" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.399154, 0.0817523, -0.0505379, 0.320022, 52.3991, -10.4979)" id="path629" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.399154, 0.0817523, -0.0505379, 0.320022, 59.5191, -9.37674)" id="path630" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.365969, 0.179432, -0.128948, 0.297108, 111.038, -36.3556)" id="path631" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406269, -0.0304069, 0.038399, 0.321712, 22.7794, 55.8666)" id="path609" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.381121, 0.144297, -0.10063, 0.307904, 100.474, -3.68415)" id="path610" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406974, 0.0186681, -0.000380242, 0.324006, 44.5528, 35.2567)" id="path611" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406974, 0.0186681, -0.000380242, 0.324006, 34.9431, 23.6974)" id="path612" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406974, 0.0186681, -0.000380242, 0.324006, 42.1504, 23.6974)" id="path613" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 86.9464, -21.0834)" id="path616" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 88.8684, -10.969)" id="path614" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 94.6342, -9.04246)" id="path615" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 91.2708, -32.6427)" id="path617" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406368, 0.029051, -0.00861161, 0.323892, 63.8838, -47.5498)" id="path628" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 93.6732, -22.0467)" id="path618" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 99.439, -20.6018)" id="path619" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406368, 0.029051, -0.00861161, 0.323892, 59.0789, -37.4354)" id="path626" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.404496, 0.0486769, -0.0241962, 0.323098, 74.0961, -44.4241)" id="path627" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406368, 0.029051, -0.00861161, 0.323892, 58.118, -28.2843)" id="path624" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.404496, 0.0486769, -0.0241962, 0.323098, 73.1351, -34.3097)" id="path625" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.406368, 0.029051, -0.00861161, 0.323892, 59.0789, -16.2433)" id="path620" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 97.9976, -34.5693)" id="path621" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.389314, 0.120328, -0.0813875, 0.313567, 104.244, -32.6428)" id="path622" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<ellipse cx="372.06726" cy="394.76855" rx="11.774277" ry="25.314713" transform="matrix(0.404496, 0.0486769, -0.0241962, 0.323098, 75.057, -23.232)" id="path623" style="font-size: 12px; fill: rgb(255, 255, 255); fill-rule: evenodd; stroke: rgb(32, 66, 161); stroke-width: 1pt;"/>
<use transform="translate(-40.3607, 8.66952)" id="use2752" x="0" y="0" width="900" height="500" xlink:href="#polygon579"/>
<use transform="translate(-32.673, 23.1187)" id="use2754" x="0" y="0" width="900" height="500" xlink:href="#use2752"/>
<use transform="translate(-16.3364, 34.678)" id="use2756" x="0" y="0" width="900" height="500" xlink:href="#use2754"/>
<use transform="translate(-4.1e-05, 38.5311)" id="use2758" x="0" y="0" width="900" height="500" xlink:href="#use2756"/>
<use transform="translate(16.3365, 38.531)" id="use2760" x="0" y="0" width="900" height="500" xlink:href="#use2758"/>
<use transform="translate(31.2315, 27.935)" id="use2762" x="0" y="0" width="900" height="500" xlink:href="#use2760"/>
<use transform="translate(40.3607, 9.63279)" id="use2764" x="0" y="0" width="900" height="500" xlink:href="#use2762"/>
<use transform="translate(42.2827, -7.70616)" id="use2766" x="0" y="0" width="900" height="500" xlink:href="#use2764"/>
<use transform="translate(31.2313, -27.935)" id="use2768" x="0" y="0" width="900" height="500" xlink:href="#use2766"/>
<use transform="translate(17.2975, -38.531)" id="use2770" x="0" y="0" width="900" height="500" xlink:href="#use2768"/>
<use transform="translate(-2.883, -37.5678)" id="use2772" x="0" y="0" width="900" height="500" xlink:href="#use2770"/>
<use transform="translate(-17.2974, -35.6413)" id="use2774" x="0" y="0" width="900" height="500" xlink:href="#use2772"/>
<use transform="translate(-26.9071, -25.0452)" id="use2776" x="0" y="0" width="900" height="500" xlink:href="#use2774"/>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

9
build/svg/BV.svg Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!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" version="1.1" width="1100" height="800">
<rect width="1100" height="800" fill="#ef2b2d"/>
<rect width="200" height="800" x="300" fill="#fff"/>
<rect width="1100" height="200" y="300" fill="#fff"/>
<rect width="100" height="800" x="350" fill="#002868"/>
<rect width="1100" height="100" y="350" fill="#002868"/>
</svg>

After

Width:  |  Height:  |  Size: 517 B

6
build/svg/BW.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 36 24">
<rect id="bl" width="36" height="24" fill="#75aadb"/>
<rect id="w" y="9" width="36" height="6" fill="#fff"/>
<rect id="bk" y="10" width="36" height="4" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 303 B

7
build/svg/BY.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.6 KiB

105
build/svg/BYAA.svg Normal file
View file

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
<!ENTITY st0 "fill:none;stroke:#000000;stroke-width:0.288;">
<!ENTITY st1 "fill:#FFD700;">
<!ENTITY st2 "fill:#FFFFFF;">
<!ENTITY st3 "fill:#CC0000;">
<!ENTITY st4 "fill:#009900;">
]>
<svg version="1.1"
id="Flag_of_BSSR" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="600" height="300" viewBox="0 0 600 300"
style="overflow:visible;enable-background:new 0 0 600 300;" xml:space="preserve">
<g id="Layer_x0020_1">
<g id="_151559344">
<rect id="rect1583" x="0" style="&st3;" width="600" height="200"/>
<rect id="rect1585" x="0" y="200" style="&st4;" width="600" height="100"/>
</g>
<g id="_151602064">
<rect id="rect1581" x="-0.015" style="&st2;" width="66" height="300"/>
<rect id="rect4981" x="2.485" style="&st3;" width="61" height="300"/>
<g>
<rect id="_153181592" x="7.985" style="&st2;" width="50" height="300"/>
</g>
<g>
<rect id="_153185088" x="10.485" style="&st3;" width="45" height="300"/>
</g>
<path id="path9036" style="&st2;" d="M22.872,226.729v-6.913h-2.247v-6.912h-2.248v-6.913h-2.247v-5.529v-1.383h-2.247v-6.912
h2.247v-6.912h2.247v-6.913h2.248v-6.912h2.247v6.912h2.248v6.913h2.247v6.912H25.12v8.295h2.247v-1.383v-4.147h2.247v-11.06
h1.124l0.018-6.848l-3.389-0.064v-5.53H25.12v-4.147h-2.248v-6.912h-2.247v6.912h-2.248v4.147h-2.247v4.147h-2.247v-12.442h2.247
v-5.53h2.247v-4.838h2.248v-2.722v-0.086v-2.722h-2.248v-4.839h-2.247v-5.53h-2.247v-12.442h2.247v4.147h2.247v4.148h2.248v6.912
h2.247v-6.912h2.248v-4.148h2.247v-5.53l3.389-0.065l-0.018-6.847h-1.124v-11.06h-2.247v-4.148V99.54H25.12v8.295h2.247v6.912
H25.12v6.913h-2.248v6.912h-2.247v-6.912h-2.248v-6.913h-2.247v-6.912h-2.247v-6.913h2.247V99.54v-5.53h2.247v-6.913h2.248v-6.912
h2.247v-6.913h2.248v6.913h2.247v6.912h2.247v6.913h2.248v6.913h2.247V99.54v-5.53h2.247v-6.913h2.248v-6.912h2.247v-6.913h2.247
v6.913h2.248v6.912h2.247v6.913h2.248v6.913h2.247v6.913h-2.247v6.912h-2.248v6.913h-2.247v6.912h-2.248v-6.912H40.85v-6.913
h-2.247v-6.912h2.247v-6.913V99.54h-2.247v1.382v4.147h-2.248v11.06h-0.298h-0.825v6.912h0.825h0.597h0.826h1.124v5.53h2.247
v4.148h2.247v6.912h2.248v-6.912h2.247v-4.148h2.248v-4.147h2.247v12.442h-2.247v5.53h-2.248v4.839h-2.247v2.722v0.086v2.722
h2.247v4.838h2.248v5.53h2.247v12.442h-2.247v-4.147h-2.248v-4.147h-2.247v-6.912h-2.248v6.912H40.85v4.147h-2.247v5.53h-1.124
h-0.826h-0.597h-0.825v6.912h0.825h0.298v11.06h2.248v4.147v1.383h2.247v-1.383v-6.912h-2.247v-6.912h2.247v-6.913h2.247v-6.912
h2.248v6.912h2.247v6.913h2.248v6.912h2.247v6.912h-2.247v6.912h-2.248v6.913h-2.247v6.912h-2.248v6.913H40.85v-6.913h-2.247
v-6.912h-2.248v-6.913h-2.247v-5.529v-1.383h-2.247v6.912h-2.248v6.913h-2.247v6.912H25.12v6.913H22.872L22.872,226.729z
M22.872,149.935v0.13v2.7h2.248v4.839h2.247v5.53h3.371v6.502h1.124v3.175h1.124h1.124v-3.109h1.124v-6.567h3.371v-2.765v-2.766
h2.247v-4.839h2.247v-2.808l0,0v-2.721H40.85v-4.839h-2.247v-2.765v-2.765h-3.371v-6.567h-1.124v-3.11h-1.124h-1.124v3.175h-1.124
v6.502h-3.371v5.53H25.12v4.839h-2.248V149.935z M16.131,149.974v-4.121h-2.247v4.121v0.053v4.12h2.247v-4.12V149.974z
M13.884,13.825h2.247V5.53h-2.247V13.825z M49.839,13.825h2.247V5.53h-2.247V13.825z M31.861,13.825h2.248V5.53h-2.248V13.825z
M22.873,34.563h2.248V27.65h-2.248V34.563z M40.85,34.563h2.247V27.65H40.85V34.563z M13.884,53.917h2.247v-8.295h-2.247V53.917z
M49.839,53.917h2.248v-8.295h-2.248V53.917z M31.861,53.917h2.248v-8.295h-2.248V53.917z M22.872,0v6.913h-2.247v6.912h-2.247
v6.912H16.13v6.913h-2.247v6.913h2.247v6.912h2.248v6.913h2.247V55.3h2.247v6.912h2.248V55.3h2.247v-6.912h2.247v-6.913h2.248
v-6.912h2.247v6.912h2.247v6.913h2.248V55.3h2.247v6.912h2.248V55.3h2.247v-6.912h2.248v-6.913h2.247v-6.912h2.248V27.65h-2.248
v-6.913h-2.247v-6.912h-2.248V6.913h-2.247V0H40.85v6.913h-2.247v6.912h-2.248v6.912h-2.247v6.913h-2.247v-6.913h-2.248v-6.912
h-2.247V6.913H25.12V0H22.872z M22.872,13.825h2.248v6.912h2.247v6.913h2.247v6.913h-2.247v6.912H25.12v6.913h-2.248v-6.913
h-2.247v-6.912h-2.247V27.65h2.247v-6.913h2.247V13.825z M40.85,13.825h2.248v6.912h2.247v6.913h2.248v6.913h-2.248v6.912h-2.247
v6.913H40.85v-6.913h-2.247v-6.912h-2.248V27.65h2.248v-6.913h2.247V13.825z M16.131,56.683v4.147h-1.124v4.148h-1.123v5.529
h1.123v4.148h1.124v4.147h3.371v-4.147h1.124v-4.148h1.124v-5.529h-1.124V60.83h-1.124v-4.147H16.131z M17.255,63.595h1.123v2.765
h1.124v2.765h-1.124v2.765h-1.123v-2.765h-1.124v-2.765h1.124V63.595z M28.49,56.683v4.147h-1.124v4.148h-1.124v5.529h1.124v4.148
h1.124v4.147h3.371v-4.147h2.247v4.147h3.371v-4.147h1.124v-4.148h1.124v-5.529h-1.124V60.83h-1.124v-4.147h-3.371v4.147h-2.247
v-4.147H28.49z M29.614,63.595h1.124v2.765h1.124v2.765h-1.124v2.765h-1.124v-2.765H28.49v-2.765h1.124V63.595z M35.232,63.595
h1.124v2.765h1.124v2.765h-1.124v2.765h-1.124v-2.765h-1.124v-2.765h1.124V63.595z M49.839,89.862h2.248v-8.295h-2.248V89.862z
M31.861,89.862h2.248v-8.295h-2.248V89.862z M13.884,89.862h2.247v-8.295h-2.247V89.862z M13.884,121.659h2.247v-5.53h-2.247
V121.659z M49.839,121.659h2.248v-5.53h-2.248V121.659z M52.086,149.965v-4.112h-2.248v4.112v0.071v4.112h2.248v-4.112V149.965z
M39.727,149.965v-4.112h-2.247v4.112v0.071v4.112h2.247v-4.112V149.965z M28.49,149.965v-4.112h-2.247v4.112v0.071v4.112h2.247
v-4.112V149.965z M28.49,141.014v4.147h1.124v2.074h1.124v2.722v0.086v2.722h-1.124v2.073H28.49v4.147h2.248v-2.765h1.124v-2.073
h2.247v2.073h1.124v2.765h2.248v-4.147h-1.124v-2.073h-1.124v-2.722v-0.086v-2.722h1.124v-2.074h1.124v-4.147h-2.248v2.765h-1.124
v2.074h-2.247v-2.074h-1.124v-2.765H28.49z M31.861,142.396h2.248v-6.912h-2.248V142.396z M13.884,286.176h2.247v8.295h-2.247
V286.176z M49.839,286.176h2.248v8.295h-2.248V286.176z M31.861,286.176h2.248v8.295h-2.248V286.176z M22.873,265.438h2.247v6.912
h-2.247V265.438z M40.85,265.438h2.247v6.912H40.85V265.438z M13.884,246.084h2.247v8.295h-2.247V246.084z M49.839,246.084h2.248
v8.295h-2.248V246.084z M31.861,246.084h2.247v8.295h-2.247V246.084z M22.872,300.001v-6.913h-2.247v-6.912h-2.247v-6.912H16.13
v-6.912h-2.247v-6.913h2.247v-6.912h2.248v-6.913h2.247v-6.912h2.247v-6.912h2.248v6.912h2.247v6.912h2.247v6.913h2.248v6.912
h2.247v-6.912h2.247v-6.913h2.248v-6.912h2.247v-6.912h2.248v6.912h2.247v6.912h2.248v6.913h2.247v6.912h2.248v6.913h-2.248v6.912
h-2.247v6.912h-2.248v6.912h-2.247v6.913H40.85v-6.913h-2.247v-6.912h-2.248v-6.912h-2.247v-6.912h-2.247v6.912h-2.248v6.912
h-2.247v6.912H25.12v6.913H22.872z M16.13,243.318v-4.146h-1.124v-4.148h-1.123v-5.529h1.123v-4.148h1.124v-4.146h3.371v4.146
h1.124v4.148h1.124v5.529h-1.124v4.148h-1.124v4.146H16.13z M28.49,243.318v-4.146h-1.124v-4.148h-1.124v-5.529h1.124v-4.148
h1.124v-4.146h3.371v4.146h2.247v-4.146h3.371v4.146h1.124v4.148h1.123v5.529h-1.123v4.148h-1.124v4.146h-3.371v-4.146h-2.247
v4.146H28.49z M49.839,210.139h2.248v8.295h-2.248V210.139z M31.861,210.139h2.248v8.295h-2.248V210.139z M13.884,210.139h2.247
v8.295h-2.247V210.139z M13.884,178.342h2.247v5.53h-2.247V178.342z M49.839,178.342h2.248v5.53h-2.248V178.342z M31.861,157.604
h2.248v6.913h-2.248V157.604z M46.44,243.35v-4.147h-1.124v-4.147h-1.124v-5.529h1.124v-4.148h1.124v-4.146h3.371v4.146h1.124
v4.148h1.124v5.529h-1.124v4.147h-1.124v4.147H46.44z M46.44,56.652v4.147h-1.124v4.147h-1.124v5.53h1.124v4.147h1.124v4.148
h3.371v-4.148h1.124v-4.147h1.124v-5.53h-1.124v-4.147h-1.124v-4.147H46.44z M47.563,63.564h1.124v2.765h1.124v2.765h-1.124v2.765
h-1.124v-2.765H46.44v-2.765h1.124V63.564z M47.563,236.438h1.124v-2.766h1.124v-2.765h-1.124v-2.765h-1.124v2.765H46.44v2.765
h1.124V236.438z M29.614,236.406h1.124v-2.765h1.124v-2.765h-1.124v-2.766h-1.124v2.766H28.49v2.765h1.124V236.406z
M35.232,236.406h1.124v-2.765h1.124v-2.765h-1.124v-2.766h-1.124v2.766h-1.124v2.765h1.124V236.406z M17.255,236.406h1.123
v-2.765h1.124v-2.765h-1.124v-2.766h-1.123v2.766h-1.124v2.765h1.124V236.406z M22.872,286.176h2.248v-6.912h2.247v-6.912h2.247
v-6.913h-2.247v-6.912H25.12v-6.913h-2.248v6.913h-2.247v6.912h-2.248v6.913h2.248v6.912h2.247V286.176z M40.85,286.176h2.247
v-6.912h2.248v-6.912h2.247v-6.913h-2.247v-6.912h-2.248v-6.913H40.85v6.913h-2.247v6.912h-2.248v6.913h2.248v6.912h2.247V286.176
z"/>
</g>
<g id="_23402904">
<path id="path1376" style="&st1;" d="M150.038,49.364c14.009,5.063,22.804,16.868,22.871,25.508
c0.149,19.126-20.729,28.374-34.189,12.959l-0.943,0.694l0.237,1.649c-2.954-0.28-5.979,6.185-8.292,8
c-2.592,2.825-6.455-0.188-3.671-3.633c2.149-3.091,7.196-4.488,8.029-8.302l1.558,0.118l1.368-1.406l1.229,0.23l1.643-1.696
c13.09,13.868,30.23,2.688,26.938-10.678C165.851,62.228,158.891,56.188,150.038,49.364L150.038,49.364L150.038,49.364z"/>
<path id="path9658" style="&st1;" d="M149.99,24.367l-0.781,2.41L147.2,32.96h-6.496h-2.545l2.053,1.496l5.268,3.817l-2.009,6.161
l-0.781,2.411l2.054-1.495l5.246-3.794l5.246,3.794l2.053,1.495l-0.781-2.411l-2.009-6.183l5.246-3.795l2.053-1.496h-2.522h-6.496
l-2.009-6.183L149.99,24.367z M149.99,29.701l1.406,4.33l0.179,0.581h0.603h4.531l-3.661,2.656l-0.491,0.357l0.201,0.58
l1.406,4.331l-3.683-2.679L149.99,39.5l-0.491,0.357l-3.683,2.679l1.406-4.331l0.179-0.58l-0.469-0.357l-3.661-2.656h4.531h0.603
l0.179-0.581L149.99,29.701L149.99,29.701z"/>
<path id="_23402592" style="&st0;" d="M128.528,65.738L128.528,65.738L128.528,65.738L128.528,65.738"/>
<path id="_23402304" style="&st0;" d="M124.979,49.364L124.979,49.364L124.979,49.364L124.979,49.364"/>
<path id="_23402016" style="&st0;" d="M124.979,49.364L124.979,49.364L124.979,49.364L124.979,49.364"/>
<path id="polygon1374" style="&st1;" d="M128.528,65.738l5.821,5.859l4.689-4.883c10.532,10.883,21.064,21.766,31.596,32.649
c2.338-0.531,3.597-1.439,4.344-4.147l-32.466-31.919l6.552-5.859l-9.54-2.604L128.528,65.738L128.528,65.738z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.9 KiB

2379
build/svg/BZ.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 268 KiB

1
build/svg/CA.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="1000" height="500"><rect width="1000" height="500" fill="#f00"/><rect width="500" height="500" fill="#fff" x="250"/><path fill="#ff0000" d="m 499.99228,46.875 -34.11312,63.62529 c -3.87086,6.91501 -10.80627,6.27363 -17.74169,2.41138 l -24.69699,-12.78858 18.40705,97.72711 c 3.87086,17.85419 -8.54859,17.85419 -14.67765,10.13435 l -43.10105,-48.25099 -6.99738,24.503 c -0.80692,3.21777 -4.35481,6.59744 -9.67748,5.79261 l -54.50177,-11.45912 14.31524,52.04475 c 3.06451,11.58054 5.4549,16.37528 -3.09375,19.42959 l -19.42619,9.13025 93.82127,76.20838 c 3.7135,2.88151 5.58971,8.067 4.26768,12.7621 l -8.21136,26.94707 c 32.30405,-3.72371 61.24898,-9.32594 93.56939,-12.77619 2.85323,-0.30459 7.62988,4.40408 7.61029,7.71058 l -4.28024,98.72342 15.70639,0 -2.47237,-98.5117 c -0.0197,-3.3065 4.31372,-8.22689 7.16695,-7.9223 32.32041,3.45026 61.26538,9.05248 93.56942,12.77619 l -8.21134,-26.94707 c -1.32203,-4.6951 0.55417,-9.88059 4.26767,-12.7621 l 93.82125,-76.20838 -19.42617,-9.13025 c -8.54867,-3.05431 -6.15828,-7.84905 -3.09377,-19.42959 l 14.31527,-52.04475 -54.5018,11.45912 c -5.32267,0.80483 -8.87056,-2.57484 -9.6775,-5.79261 l -6.99737,-24.503 -43.10103,48.25099 c -6.12908,7.71984 -18.54854,7.71984 -14.67768,-10.13435 l 18.40702,-97.72711 -24.69694,12.78858 c -6.93559,3.86225 -13.87083,4.50363 -17.7417,-2.41138"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

109
build/svg/CC.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

7
build/svg/CD.svg Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600">
<rect fill="#007fff" width="800" height="600"/>
<path fill="#f7d618" d="M 750.00004,0 L 0,449.99998 L 0,599.99997 L 0.033333336,599.99997 L 50.000005,599.99997 L 800.00004,149.99999 L 800.00004,0 L 750.00004,0 z"/>
<path fill="#ce1021" d="M 800.00004,0 L 0,479.99998 L 0,599.99937 L 0.033595542,599.99937 L 0.067191085,599.99997 L 800.00004,119.99999 L 800.00004,0 z"/>
<path fill="#f7d618" d="M 335.12064,25 L 351.96068,76.821663 L 406.44988,76.823727 L 362.3684,108.85334 L 379.20453,160.67628 L 335.12064,128.65 L 291.03674,160.67627 L 307.87287,108.85334 L 263.7914,76.823724 L 318.28059,76.821663 L 335.12064,25 z" transform="matrix(1.5141055,0,0,1.5124235,-363.40801,3.3894082)"/>
</svg>

After

Width:  |  Height:  |  Size: 798 B

19
build/svg/CF.svg Normal file
View file

@ -0,0 +1,19 @@
<?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" width="1200" height="800">
<rect style="fill:#003082" id="blue stripe" width="1200" height="200" x="0" y="0" />
<rect style="fill:#ffffff" id="white stripe" width="1200" height="200" x="0" y="200" />
<rect style="fill:#289728" id="green stripe" width="1200" height="200" x="0" y="400" />
<rect style="fill:#FFCE00" id="yellow stripe" width="1200" height="200" x="0" y="600" />
<rect style="fill:#D21034" id="red stripe" width="200" height="800" x="500" y="0" />
<polygon id="star" transform="translate(200,108.59425) scale(90)" fill="#FFCE00" points="0,-1
0.224513988289792686220972575898763393789606,-0.309016994374947424102293417182819058860155
0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
0.363271264002680442947733378740309374808046,0.118033988749894848204586834365638117720309
0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155
0,0.381966011250105151795413165634361882279691
-0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155
-0.363271264002680442947733378740309374808046,0.118033988749894848204586834365638117720309
-0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
-0.224513988289792686220972575898763393789606,-0.309016994374947424102293417182819058860155" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

10
build/svg/CG.svg Normal file
View file

@ -0,0 +1,10 @@
<?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"
width="600"
height="400"
viewBox="0 0 3 2">
<rect id="green_area" width="3" height="2" fill="#009543"/>
<path id="yellow_area" d="M 0 2 L 2 0 h 1 v 2 z" fill="#FBDE4A"/>
<path id="red_area" d="M 3 0 v 2 h -2 z" fill="#DC241F"/>
</svg>

After

Width:  |  Height:  |  Size: 424 B

1
build/svg/CH.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000" viewBox="0 0 32 32"><rect fill="#f00" height="32" width="32"/><rect fill="#fff" height="6" width="20" x="6" y="13"/><rect fill="#fff" height="20" width="6" x="13" y="6"/></svg>

After

Width:  |  Height:  |  Size: 281 B

7
build/svg/CI.svg Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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" version="1.1" width="450" height="300" id="Flag_of_Cote_dIvoire">
<rect width="450" height="300" fill="#ffffff"/>
<rect width="150" height="300" fill="#f77f00"/>
<rect width="150" height="300" x="300" fill="#009e60"/>
</svg>

After

Width:  |  Height:  |  Size: 427 B

52
build/svg/CK.svg Normal file
View file

@ -0,0 +1,52 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg>
<svg version="1.1" baseProfile="full" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" zoomAndPan="magnify"
id="Flag_of_the_Cook_Islands"
viewBox="-15 -7.5 30 15"
width="600" height="300">
<defs>
<clipPath id="border">
<rect x="-15" y="-7.5" width="30" height="15"/>
</clipPath>
</defs>
<rect fill="#00247D" x="-15" y="-7.5" width="30" height="15"/>
<comment>The above line is the ensign field color: #CF142B red and #00247D blue</comment>
<g id="canton" transform="matrix(0.5,0,0,0.5,-7.5,-3.75)">
<g clip-path="url(#border)">
<circle r="20" fill="#00247D"/>
<path d="M -20,-10 L 20,10 M -20,10 L 20,-10" stroke-width="3" stroke="white" id="diags_white"/>
<path d="M -20,-10 L 20,10 M -20,10 L 20,-10" stroke-width="2" stroke="#CF142B" id="diags_red"/>
<path stroke="none" fill="white" d="M 0,0 l 20,10 h -3 l -20,-10 M 0,0 l 20,-10 h 3 l -20,10 M 0,0 l -20,10 h -3 l 20,-10 M 0,0 l -20,-10 h 3 l 20,10" id="eraser_white"/>
<comment>I think the above two lines give the simplest way to make the diagonals</comment>
<path d="M -20,0 H 20 M 0,-10 V 10" stroke-width="5" stroke="white" id="cross_white"/>
<path d="M -20,0 H 20 M 0,-10 V 10" stroke-width="3" stroke="#CF142B" id="cross_red"/>
</g>
</g>
<g id="star" fill="white" transform="translate(7.5,-5.1) scale(1.125)">
<g id="cone">
<polygon id="triangle" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/>
<use xlink:href="#triangle" transform="scale(-1,1)"/>
</g>
<use xlink:href="#cone" transform="rotate(72)"/>
<use xlink:href="#cone" transform="rotate(-72)"/>
<use xlink:href="#cone" transform="rotate(144)"/>
<use xlink:href="#cone" transform="rotate(-144)"/>
</g>
<use xlink:href="#star" transform="rotate(24 7.5 0)"/>
<use xlink:href="#star" transform="rotate(48 7.5 0)"/>
<use xlink:href="#star" transform="rotate(72 7.5 0)"/>
<use xlink:href="#star" transform="rotate(96 7.5 0)"/>
<use xlink:href="#star" transform="rotate(120 7.5 0)"/>
<use xlink:href="#star" transform="rotate(144 7.5 0)"/>
<use xlink:href="#star" transform="rotate(168 7.5 0)"/>
<use xlink:href="#star" transform="rotate(192 7.5 0)"/>
<use xlink:href="#star" transform="rotate(216 7.5 0)"/>
<use xlink:href="#star" transform="rotate(240 7.5 0)"/>
<use xlink:href="#star" transform="rotate(264 7.5 0)"/>
<use xlink:href="#star" transform="rotate(288 7.5 0)"/>
<use xlink:href="#star" transform="rotate(312 7.5 0)"/>
<use xlink:href="#star" transform="rotate(336 7.5 0)"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

35
build/svg/CL.svg Normal file
View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="1500"
height="1000"
version="1.1">
<rect width="1500" height="1000" fill="#fff"/>
<rect
width="500"
height="1000"
fill="#0039A6"/>
<rect width="1500" height="500"
y="500" fill="#D52B1E"/><g id="star"
transform="translate(250,250) scale(125)"
fill="#fff">
<g id="cone">
<polygon
id="triangle"
points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/><use
xlink:href="#triangle"
transform="scale(-1,1)" id="use12"/>
</g>
<use
xlink:href="#cone" transform="rotate(72)" id="use14"/>
<use xlink:href="#cone" transform="rotate(-72)"
id="use16"/>
<use xlink:href="#cone" transform="rotate(144)" id="use18"/>
<use
xlink:href="#cone"
transform="rotate(-144)"
id="use20"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 884 B

19
build/svg/CM.svg Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="600" height="400" viewBox="0 0 90 60">
<desc>Flag of Cameroon</desc>
<rect width="30" height="60" fill="#007a5e" />
<rect x="30" width="30" height="60" fill="#ce1126" />
<rect x="60" width="30" height="60" fill="#fcd116" />
<g id="star" fill="#fcd116" transform="translate(45,30) scale(8)">
<g id="c">
<path id="triangle" d="M0,0 v1 h0.5 z" transform="translate(0,-1) rotate(18)"/>
<use xlink:href="#triangle" transform="scale(-1,1)" />
</g>
<use xlink:href="#c" transform="rotate(72)" />
<use xlink:href="#c" transform="rotate(144)" />
<use xlink:href="#c" transform="rotate(216)" />
<use xlink:href="#c" transform="rotate(288)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 946 B

13
build/svg/CN.svg Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="3000" height="2000" viewBox="0 0 30 20">
<rect fill="#de2910" width="30" height="20"/>
<g id="bstar" transform="translate(5,5) scale(3)" fill="#ffde00"><g id="cone">
<polygon id="triangle" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/><use xlink:href="#triangle" transform="scale(-1,1)" id="use5"/></g>
<use xlink:href="#cone" transform="rotate(72)" id="use1"/>
<use xlink:href="#cone" transform="rotate(-72)" id="use2"/>
<use xlink:href="#cone" transform="rotate(144)" id="use3"/>
<use xlink:href="#cone" transform="rotate(-144)" id="use4"/></g>
<use xlink:href="#bstar" transform="matrix(0,0.33,-0.33,0,11.641927,7.359454)"/>
<use xlink:href="#bstar" transform="matrix(0,0.33,-0.33,0,11.641927,0.359454)"/>
<use xlink:href="#bstar" transform="matrix(0.33328261,-0.00581747,0.00581747,0.33328261,10.3045,5.3626743)"/>
<use xlink:href="#bstar" transform="matrix(-0.00581747,-0.33328261,0.33328261,-0.00581747,10.362674,5.6955004)"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

7
build/svg/CO.svg Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600">
<rect fill="#fcd116" width="900" height="300"/>
<rect fill="#003893" width="900" height="150" y="300"/>
<rect fill="#ce1126" width="900" height="150" y="450"/>
</svg>

After

Width:  |  Height:  |  Size: 379 B

1
build/svg/CP.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><!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" version="1.1" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>

After

Width:  |  Height:  |  Size: 377 B

8
build/svg/CR.svg Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" standalone="no"?>
<!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" version="1.1" width="1000" height="600" id="Flag of Costa Rica">
<rect width="1000" height="600" fill="#002b7f" id="blue fields" />
<rect width="1000" height="400" y="100" fill="white" id="white fields" />
<rect width="1000" height="200" y="200" fill="#ce1126" id="red field" />
</svg>

After

Width:  |  Height:  |  Size: 475 B

8
build/svg/CSHH.svg Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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" version="1.1" width="900" height="600" viewBox="0 0 6 4">
<desc>Flag of Czechoslovakia</desc>
<path id="white" d="M0,0 h6 v2 l-1,1 h-3 z" fill="white"/>
<path id="red" d="M1,2 h5 v2 h-6 z" fill="#d7141a"/>
<path id="blue" d="M3,2 L0,0 v4 z" fill="#11457e"/>
</svg>

After

Width:  |  Height:  |  Size: 462 B

10
build/svg/CSXX.svg Normal file
View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1" width="600" height="300">
<defs><rect width="600" height="100" id="a" /></defs>
<use xlink:href="#a" fill="#00319c" />
<use xlink:href="#a" fill="#ffffff" y="100" />
<use xlink:href="#a" fill="#de2110" y="200" />
</svg>

After

Width:  |  Height:  |  Size: 470 B

200
build/svg/CTKI.svg Normal file
View file

@ -0,0 +1,200 @@
<?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"
version="1.1"
baseProfile="full"
preserveAspectRatio="xMidYMid meet"
zoomAndPan="magnify"
id="Government_Ensign_of_the_United_Kingdom"
viewBox="-15 -7.5 30 15"
width="1200"
height="600"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="Flag_of_Gilbert_and_Ellice_Islands.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docbase="C:\Brendan\svg">
<metadata
id="metadata21">
<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>
<sodipodi:namedview
inkscape:window-height="669"
inkscape:window-width="809"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:zoom="0.53588673"
inkscape:cx="600"
inkscape:cy="300"
inkscape:window-x="22"
inkscape:window-y="22"
inkscape:current-layer="Government_Ensign_of_the_United_Kingdom"
showgrid="false" />
<defs
id="defs3">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 300 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1200 : 300 : 1"
inkscape:persp3d-origin="600 : 200 : 1"
id="perspective45" />
<clipPath
id="border">
<rect
x="-15"
y="-7.5"
width="30"
height="15"
id="rect6" />
</clipPath>
<marker
id="TriangleInL"
style="overflow:visible"
orient="auto"
refY="0"
refX="0">
<path
id="path5721"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="scale(-0.8,-0.8)"
d="M 5.77,0 L -2.88,5 L -2.88,-5 L 5.77,0 z " />
</marker>
</defs>
<rect
fill="#00247D"
x="-15"
y="-7.5"
width="30"
height="15"
id="rect8" />
<!--The above line is the ensign field color: #CF142B red and #00247D blue--> <g
id="canton"
transform="matrix(0.5,0,0,0.5,-7.5,-3.75)">
<g
clip-path="url(#border)"
id="g11">
<circle
r="20"
id="circle13"
fill="#00247D" />
<path
d="M -20,-10 L 20,10 M -20,10 L 20,-10"
id="diags_white"
stroke-width="3"
stroke="white" />
<path
d="M -20,-10 L 20,10 M -20,10 L 20,-10"
id="diags_red"
stroke-width="2"
stroke="#CF142B" />
<path
d="M 0,0 l 20,10 h -3 l -20,-10 M 0,0 l 20,-10 h 3 l -20,10 M 0,0 l -20,10 h -3 l 20,-10 M 0,0 l -20,-10 h 3 l 20,10"
id="eraser_white"
stroke="none"
fill="white" />
<!--I think the above two lines give the simplest way to make the diagonals--> <path
d="M -20,0 H 20 M 0,-10 V 10"
id="cross_white"
stroke-width="5"
stroke="white" />
<path
d="M -20,0 H 20 M 0,-10 V 10"
id="cross_red"
stroke-width="3"
stroke="#CF142B" />
</g>
</g>
<g
id="g2443"
transform="translate(0,0.7108436)">
<path
id="path4241"
style="fill:#de2921;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.411239,0.41948162 C 5.7941009,0.41948162 9.1456756,0.39471052 5.3000436,0.39471052 L 5.2453347,0.14488078 L 5.2272369,-4.0565857 L 10.49159,-4.0565857 L 10.488493,0.18531124 L 10.411239,0.41948162 z" />
<path
id="path5591"
style="fill:#efde00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6.1473546,0.0041248919 L 5.6480562,-0.24749024 L 6.3950376,-0.46372135 L 5.8760823,-0.96695112 L 6.7134874,-0.92763645 L 6.4068323,-1.5645363 L 7.0358689,-1.2893326 L 7.0280059,-1.9891365 L 7.5744817,-1.5448786 L 7.7553298,-2.1542585 L 8.1248892,-1.529153 L 8.5259003,-2.0599031 L 8.6635023,-1.3168528 L 9.1942515,-1.6982067 L 9.1077594,-0.94336227 L 9.7289334,-1.1045531 L 9.3475798,-0.43226971 L 10.055246,-0.36150313 L 9.5874001,-0.011601178 L 6.1473546,0.0041248919 z" />
<path
id="path5587"
style="fill:#efde00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6.6200261,0.23312311 L 5.6081148,0.032964783 L 6.6200261,-0.055994527 L 6.6457547,-0.18820685 L 5.7915933,-0.7009494 L 6.7635495,-0.45819106 L 6.8314955,-0.56298606 L 6.1474303,-1.3848236 L 7.0537028,-0.81770822 L 7.1213221,-0.86774767 L 6.7451251,-1.8657594 L 7.3977109,-1.0209731 L 7.4700461,-1.0482552 L 7.4289996,-2.1576569 L 7.781021,-1.1012097 L 7.8614489,-1.1057341 L 8.2129532,-2.177117 L 8.2129532,-1.0770904 L 8.9413068,-1.9352586 L 8.561812,-0.90628485 L 8.6337651,-0.85398308 L 9.5807014,-1.4404229 L 8.8542274,-0.64393179 L 8.9310312,-0.53706619 L 9.9921379,-0.72596876 L 9.0753991,-0.25111064 L 9.1023546,-0.14372695 L 10.158937,0.016284633 L 9.1637051,0.1664035 L 6.6200261,0.23312311 z" />
<path
id="path5585"
style="fill:#f7de00;fill-opacity:1;stroke:#000000;stroke-width:0.02480062;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.1439121,0.16583054 C 9.1440384,0.86868564 8.5742972,1.4385292 7.8714421,1.4385292 C 7.1685872,1.4385292 6.5988459,0.86868564 6.5989721,0.16583054 C 6.5988459,-0.53702456 7.1685872,-1.1068682 7.8714421,-1.1068682 C 8.5742972,-1.1068682 9.1440384,-0.53702456 9.1439121,0.16583054 L 9.1439121,0.16583054 z" />
<path
id="path4239"
style="fill:#21297b;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.406756,0.51913868 C 10.163396,1.0947061 10.147702,1.1803357 9.7855818,1.6396959 C 9.3649408,2.189127 8.7308116,2.6178932 8.021676,2.6368488 C 7.3302753,2.6715744 6.6702808,2.3586938 6.1508942,1.922107 C 5.6155588,1.4351777 5.5080677,1.0920763 5.2949572,0.40188559 L 10.406756,0.51913868 z" />
<path
id="path4218"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.4975,0.030633277 C 10.453214,0.62429874 10.157006,1.1623719 9.7948855,1.6217321 C 9.3742445,2.1711632 8.7401153,2.5999289 8.0309794,2.6188847 C 7.3395792,2.6536106 6.6795845,2.3407297 6.1601981,1.9041432 C 5.6248625,1.4172136 5.2821003,0.70310865 5.2363943,0.0083933258 L 5.2363943,-4.0487661 L 10.500747,-4.0487661 L 10.4975,0.030633277 z" />
<path
id="path5597"
style="fill:#efde00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.008224,-3.5916766 C 9.6635069,-3.2636394 8.8461938,-3.3164587 8.8461938,-3.3164587 C 8.6404756,-2.9300423 8.3708175,-2.952282 8.3708175,-2.952282 C 8.5320563,-2.9467217 8.7488945,-3.1385406 8.7488945,-3.1385406 L 9.32157,-3.0912808 L 9.9804246,-3.0912808 C 10.061043,-2.9717418 9.7024268,-2.9217024 9.7024268,-2.9217024 L 9.4105293,-2.9217024 C 9.4021893,-2.7854835 9.2270503,-2.7411427 9.2270503,-2.7411427 L 8.7823733,-2.7411427 C 8.3028611,-2.3190129 7.7592227,-2.3907267 7.7592227,-2.3907267 C 7.250487,-2.4018465 6.8640706,-2.8633227 6.8640706,-2.8633227 C 6.7385924,-3.0134212 6.6923506,-2.9446467 6.4218949,-3.0004148 C 6.0459248,-3.0779403 6.3922128,-3.1758821 6.3922128,-3.1758821 C 6.6361068,-3.2149143 6.7005482,-3.1611808 6.789011,-3.2080399 C 6.9050635,-3.3466418 7.1098871,-3.338404 7.2630792,-3.2744063 C 7.4568298,-3.1678408 7.7084705,-3.1161332 7.9091734,-3.2345363 C 8.1725475,-3.4426522 8.5454335,-3.8018268 8.712755,-3.8446545 C 8.9342444,-3.901347 9.61148,-3.8853786 10.397421,-3.8446545 C 10.397421,-3.8446545 10.386793,-3.5724452 10.008224,-3.5916766 z" />
<path
id="path5606"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 8.0475621,-3.1792969 C 8.0475621,-3.1792969 8.5736082,-3.5842711 8.8377896,-3.6746639 C 9.1733607,-3.7894836 9.7228315,-3.7456311 10.095864,-3.7375675" />
<path
id="path5608"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 8.810054,-2.7465636 C 8.810054,-2.7465636 8.7655746,-2.9578418 9.396629,-2.8855624" />
<path
id="path5610"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.04310068px;stroke-linecap:butt;stroke-linejoin:miter;marker-mid:url(#TriangleInL);marker-end:none;stroke-opacity:1"
d="M 6.5971926,-3.7028754 C 6.5971926,-3.7028754 7.6230041,-3.658396 7.6980634,-3.1774599" />
<path
id="path5612"
style="fill:#efde00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6.3386547,-3.516617 C 6.0628785,-3.5524485 5.7718837,-3.5930367 5.5305966,-3.7437793 C 5.4872858,-3.7710158 5.4185637,-3.8305665 5.4923255,-3.8355162 C 6.1779365,-3.8159235 6.5753153,-3.8221738 7.1155059,-3.7854626 C 7.3988646,-3.7646763 7.702591,-3.6687125 7.8772198,-3.4307362 C 7.9158188,-3.3668369 8.0013221,-3.2769149 7.8836928,-3.2252049 C 7.8197985,-3.1951964 7.7029164,-3.1352716 7.670155,-3.2373001 C 7.605234,-3.3891441 7.496079,-3.4718708 7.350177,-3.4507662 C 7.1891087,-3.4344692 7.0355041,-3.4393716 6.8641767,-3.4505083 C 6.6626685,-3.4670054 6.689747,-3.4693761 6.3386547,-3.516617 z" />
<path
id="path5827"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.01736043;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 6.2390807,-3.0888729 C 6.2390807,-3.0888729 6.7462421,-3.0888729 6.7658996,-3.0967359" />
<path
id="path5829"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.04310068;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 7.0671088,-3.1336958 C 7.0561289,-3.1239305 7.0310038,-3.1186309 7.0062252,-3.1208537 C 6.9814462,-3.1230765 6.9634051,-3.1322482 6.9625078,-3.143079 C 6.96161,-3.1539097 6.9780874,-3.1636057 7.0024358,-3.1665745 C 7.0267847,-3.1695433 7.0527235,-3.1650192 7.0652925,-3.1556116 L 7.0175137,-3.1439143 L 7.0671088,-3.1336958 z" />
<path
id="path5846"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10.356198,0.6567816 C 10.051754,0.50397856 9.7087849,0.62452269 9.4040293,0.7101049 C 9.1331547,0.76349046 8.8876433,0.59926599 8.6270674,0.56948021 C 8.3351629,0.56925229 8.0667253,0.80086499 7.7710139,0.69830006 C 7.5227729,0.67293498 7.2814798,0.50668207 7.0282504,0.60397141 C 6.7517397,0.67717068 6.4418257,0.76494477 6.1707029,0.62616673 C 5.9137269,0.54308417 5.6376648,0.58930011 5.3828189,0.65678085 C 5.3329228,0.56613808 5.313986,0.40570364 5.2815366,0.32113553 C 5.2677777,0.28527682 5.3795784,0.28406382 5.4533362,0.29124781 C 5.756236,0.23742552 6.086233,0.21330915 6.370449,0.35408339 C 6.6001779,0.41383651 6.8289524,0.32805664 7.045927,0.2614397 C 7.240093,0.21471758 7.450803,0.23415605 7.6266882,0.3303626 C 7.8250319,0.37638932 8.0455014,0.40653421 8.2339457,0.30932151 C 8.4931377,0.23079978 8.7912862,0.19488899 9.0384221,0.3294673 C 9.2759135,0.40597273 9.5198385,0.33726585 9.7564329,0.29990546 C 9.978637,0.27474325 10.229855,0.27244721 10.447937,0.32874337 C 10.447937,0.32874337 10.411797,0.52195206 10.356198,0.6567816 z" />
<path
id="path5873"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.9788393,1.3614819 C 9.7690856,1.3616706 9.5543327,1.4322614 9.3557978,1.4880144 C 9.0849235,1.5414002 8.839412,1.3771752 8.5788362,1.3473897 C 8.2869315,1.3471618 8.0184941,1.5787745 7.7227824,1.4762095 C 7.4745417,1.4508442 7.2332483,1.2845916 6.9800189,1.3818811 C 6.7035084,1.4550802 6.393594,1.5428542 6.1224714,1.4040762 C 5.9863458,1.3600655 5.8448647,1.3523369 5.7040186,1.3648315 C 5.5330369,1.0628304 5.7089355,1.3662213 5.5278412,1.0494904 C 5.7954026,1.0118341 6.0759906,1.0100346 6.3222178,1.1319926 C 6.5519464,1.1917457 6.7807212,1.1059659 6.9976953,1.0393492 C 7.1918613,0.99262731 7.4025715,1.0120658 7.578457,1.1082718 C 7.7768007,1.1542985 7.9972699,1.1844437 8.1857144,1.087231 C 8.4449064,1.0087095 8.7430549,0.97279822 8.9901906,1.1073768 C 9.2276823,1.1838822 9.4716072,1.1151756 9.7082014,1.0778147 C 9.8596982,1.0606596 10.014343,1.052841 10.166538,1.0674438 C 9.9813953,1.3629533 10.164733,1.0700873 9.9788393,1.3614819 z" />
<path
id="path5875"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.02480062;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.1277524,2.2433511 C 8.9426729,2.2130098 8.7645819,2.1234657 8.5788362,2.1022339 C 8.2869315,2.1020059 8.0184941,2.3336186 7.7227824,2.2310537 C 7.4745417,2.2056886 7.2332483,2.039436 6.9800189,2.1367251 C 6.8606831,2.1683163 6.720729,2.2090208 6.594753,2.226658 C 6.5769846,2.2233201 6.2084125,1.9937026 6.0579615,1.801354 C 6.1488248,1.8175989 6.2375525,1.8449017 6.3222178,1.886837 C 6.5519464,1.9465902 6.7807212,1.8608103 6.9976953,1.7941934 C 7.1918613,1.7474712 7.4025715,1.7669097 7.578457,1.8631162 C 7.7768007,1.909143 7.9972699,1.9392879 8.1857144,1.8420752 C 8.4449064,1.7635534 8.7430549,1.7276426 8.9901906,1.8622209 C 9.1943564,1.9279907 9.3728078,1.8903741 9.5777385,1.8536821 C 9.5005575,1.9387006 9.4355382,2.0584898 9.1277524,2.2433511 z" />
<path
id="path2186"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.01984049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:7.80000019;stroke-dasharray:none;stroke-opacity:1"
d="M 7.5603674,-3.391238 C 7.4303941,-3.5111447 7.2384267,-3.6765104 6.6037889,-3.7335588" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

8
build/svg/CU.svg Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="800" height="400">
<rect width="800" height="400" id="blue_stripes" style="fill:#002a8f"/>
<rect width="800" height="80" y="80" id="white_stripe_1" style="fill:#fff"/>
<rect width="800" height="80" y="240" id="white_stripe_2" style="fill:#fff"/>
<path d="M 0,0 0,400 346.406246,200 z" id="triangle" style="fill:#cf142b"/>
<path d="M 115.46875,140 102,181.46875 l -43.59375,0 35.25,25.625 -13.46875,41.4375 35.28125,-25.625 35.28125,25.625 -13.46875,-41.4375 35.25,-25.625 -43.59375,0 L 115.46875,140 z" id="star" style="fill:#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 703 B

14
build/svg/CV.svg Normal file
View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="510" height="300">
<rect width="510" height="300" style="fill:#003893"/>
<rect width="510" height="75" y="150" style="fill:#fff"/>
<rect width="510" height="25" y="175" style="fill:#ce1126"/>
<path d="M 191.24994,97.499688 L 187.88289,107.86242 L 176.98686,107.86242 L 185.80193,114.26695 L 182.43487,124.62969 L 191.24994,118.22516 L 200.06502,124.62969 L 196.69796,114.26695 L 205.51303,107.86242 L 194.617,107.86242 L 191.24994,97.499688 z" id="path2937" style="fill:#ffcc00"/>
<use transform="translate(-44.08,14.320001)" id="use2409" xlink:href="#path2937"/>
<use transform="translate(44.08,14.320001)" id="use2393" xlink:href="#path2937"/>
<use transform="translate(71.33,51.820021)" id="use2395" xlink:href="#path2937"/>
<use transform="translate(71.33,98.180021)" id="use2397" xlink:href="#path2937"/>
<use transform="translate(44.08,135.68002)" id="use2399" xlink:href="#path2937"/>
<use transform="translate(0,149.99994)" id="use2401" xlink:href="#path2937"/>
<use transform="translate(-44.08,135.68002)" id="use2403" xlink:href="#path2937"/>
<use transform="translate(-71.32996,98.180021)" id="use2405" xlink:href="#path2937"/>
<use transform="translate(-71.32996,51.820021)" id="use2407" xlink:href="#path2937"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

29
build/svg/CW.svg Normal file
View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="13500" height="9000" id="Flag_of_Curacao" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<!-- the following is a regular 5-pointed star, radius 1, vertically aligned, centered at the
origin. It was produced with the following bc script:
scale=100
x=(cosd(72)-1)*sind(144)/(cosd(144)-1)
r=sqrt(x^2+cosd(72)^2) (the inner radius)
for(i=0; i<5; ++i) {phi=72*i; sind(phi); -cosd(phi); r*sind(phi+36); -r*cosd(phi+36)}
-->
<polygon id="pentagram" points="0,-1
0.224513988289792686220972575898763393789606,-0.309016994374947424102293417182819058860155
0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
0.363271264002680442947733378740309374808046,0.118033988749894848204586834365638117720309
0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155
0,0.381966011250105151795413165634361882279691
-0.587785252292473129168705954639072768597652,0.809016994374947424102293417182819058860155
-0.363271264002680442947733378740309374808046,0.118033988749894848204586834365638117720309
-0.951056516295153572116439333379382143405699,-0.309016994374947424102293417182819058860155
-0.224513988289792686220972575898763393789606,-0.309016994374947424102293417182819058860155" />
</defs>
<rect width="13500" height="9000" fill="rgb(0, 43, 127)" id="blue_background_Pantone_280" />
<rect width="13500" height="1125" y="5625" fill="rgb(249, 232, 20)" id="yellow_stripe_Pantone_102" />
<use id="small_star" xlink:href="#pentagram" transform="scale(750)" x="2" y="2" fill="white" />
<use id="large_star" xlink:href="#pentagram" transform="scale(1000)" x="3" y="3" fill="white" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

70
build/svg/CX.svg Normal file
View file

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="1000"
height="500"
id="svg697">
<defs
id="defs699" />
<g
transform="matrix(1.007936,0,0,1.007936,0,3.844975e-5)"
id="g4031">
<rect
width="992.12598"
height="496.06299"
x="0"
y="0"
id="rect3447"
style="font-size:12px;fill:#0021ad;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 1.23596e-06,-3.8147e-05 L 992.126,496.063 L 991.558,0.36747 L 1.23596e-06,-3.8147e-05 z"
id="path3446"
style="font-size:12px;fill:#1c8a42;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.23796005pt;stroke-opacity:1" />
<path
d="M 227.50007,97.283752 A 34.921883,34.921875 0 1 1 157.6563,97.283752 A 34.921883,34.921875 0 1 1 227.50007,97.283752 z"
transform="matrix(2.566054,0,0,2.566053,2.886167,-1.874863)"
id="path733"
style="fill:#ffc639;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 441.342,207.775 C 447.472,216.193 456.757,230.287 464.231,226.611 C 470.056,226.63 473.069,227.043 473.859,230.917 C 487.611,233.261 510.725,227.458 525.097,208.734 C 525.097,208.734 526.312,208.891 525.889,201.772 C 525.969,198.667 530.13,199.294 530.23,200.295 C 530.812,201.837 530.707,202.994 531.487,203.032 C 533.265,202.437 535.683,198.47 537.71,195.952 C 538.265,194.841 537.963,193.666 538.092,192.273 C 539.16,189.639 541.828,190.214 542.393,191.59 C 542.898,192.478 542.906,193.163 543.411,194.051 C 546.119,195.855 551.012,194.171 551.394,194.171 C 551.874,191.965 553.294,192.172 553.294,192.172 C 555.098,191.773 554.394,191.934 555.575,192.552 C 554.53,204.462 557.918,204.987 557.638,211.102 C 557.759,217.917 555.575,219.855 555.575,222.465 C 556.268,225.636 566.327,225.746 562.786,228.436 C 559.675,230.099 562.803,233.211 558.115,234.416 C 544.502,241.33 541.892,247.26 541.892,247.26 C 541.892,247.26 538.472,253.722 538.092,253.722 C 535.806,258.033 532.916,255.677 531.313,257.781 C 530.51,260.422 529.608,266.269 531.213,269.31 C 532.014,273.488 531.113,275.767 530.109,279.948 C 529.207,288.666 525.752,289.987 525.353,293.053 C 523.748,296.321 525.69,311.676 524.171,311.676 C 514.03,311.876 506.258,309.736 502.248,308.936 C 506.158,292.094 504.644,277.286 504.644,275.767 C 503.64,263.719 486.589,266.652 483.985,265.049 C 481.819,264.589 480.459,262.827 479.697,262.066 C 477.289,261.813 476.387,261.258 473.979,261.007 C 472.775,261.607 473.501,262.231 470.818,263.055 C 464.022,263.875 461.015,257.13 461.015,257.13 C 461.347,254.856 445.732,257.593 437.243,255.623 C 433.762,257.563 432.243,263.3 429.389,263.984 C 429.308,265.762 424.703,262.523 423.774,260.773 C 423.575,255.682 428.211,253.426 428.211,253.426 C 431.886,250.842 434.072,250.417 435.843,248.634 C 436.731,244.2 436.282,240.922 438.172,237.589 C 439.771,235.046 442.129,236.239 443.728,235.097 C 445.452,233.958 446.176,226.501 444.593,224.457 C 444.593,224.457 437.711,218.248 437.332,217.869 C 435.091,211.446 439.948,207.31 441.342,207.775 z"
id="path732"
style="fill:#1c8a42;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 871.019,96.7873 C 866.958,80.721 830.619,46.1182 803.31,24.099 C 796.786,19.6572 792.537,22.3028 793.386,28.6357 C 796.789,34.3068 799.337,40.5422 802.742,46.2132 C 803.687,49.993 805.482,52.6386 806.427,56.4184 C 806.427,56.4184 806.709,62.9386 807.28,63.5056 C 815.783,72.8646 816.917,80.8006 816.917,80.8006 C 821.831,90.2516 826.177,97.1493 834.779,104.898 C 844.418,110.946 837.327,129.753 837.612,139.772 C 837.612,146.104 833.078,145.348 829.108,144.59 C 797.828,115.861 766.83,115.768 739.516,107.452 C 728.84,106.317 728.65,111.421 732.147,114.254 C 751.236,134.668 769.194,148.56 792.82,160.184 C 796.789,162.642 800.756,165.099 804.726,167.557 C 809.263,171.336 813.797,175.116 818.334,178.896 C 828.824,185.701 829.676,191.939 829.676,192.503 C 829.957,205.262 823.153,215.184 821.168,219.154 C 817.586,232.685 810.397,235.031 810.397,235.031 C 751.994,274.44 721.372,284.645 626.68,272.454 C 625.263,271.698 616.189,273.21 626.68,276.991 C 650.781,285.023 709.979,297.901 767.251,270.779 C 781.002,261.138 790.202,264.301 800.163,258.53 C 816.517,248.444 839.881,235.883 844.133,234.466 C 856.891,227.661 892.612,220.006 900.835,213.201 C 910.285,212.444 920.075,211.205 920.737,203.078 C 923.845,201.074 928.378,202.536 931.753,195.921 C 939.236,194.618 937.976,191.936 937.976,191.936 C 936.087,186.646 929.092,184.471 924.086,180.598 C 916.713,178.139 911.612,177.384 906.223,180.029 C 904.522,180.787 902.821,181.542 901.12,182.298 C 901.12,182.298 893.182,181.165 893.182,180.598 C 875.541,179.63 877.258,121.17 871.019,96.7873 z"
id="path3443"
style="fill:#ffc639;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.49685501" />
<path
d="M 354.375,73.88562 A 2.070312,1.367188 0 1 1 350.23438,73.88562 A 2.070312,1.367188 0 1 1 354.375,73.88562 z"
transform="matrix(2.007221,0.63038,-0.674064,1.877137,250.8724,-169.601)"
id="path3445"
style="fill:#1c8a42;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 73.826341,356.02127 L 60.023805,343.10041 L 46.056385,355.84285 L 47.552578,336.99557 L 28.881593,334.02019 L 44.54985,323.43887 L 35.234933,306.98618 L 53.276738,312.63878 L 60.33221,295.098 L 67.161716,312.72799 L 85.274664,307.30768 L 75.749113,323.63932 L 91.280117,334.42109 L 72.572443,337.15632 L 73.826341,356.02127 z"
transform="matrix(0.916571,0,0,0.91657,119.0079,-136.8826)"
id="polygon3451"
style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 159.75957,320.13498 L 146.82941,311.27788 L 134.24003,320.61301 L 138.66799,305.5787 L 125.89942,296.4902 L 141.56621,296.05559 L 146.26419,281.10346 L 151.51883,295.86916 L 167.19091,295.71673 L 154.77167,305.27705 L 159.75957,320.13498 z"
transform="matrix(1.05522,0,0,1.02765,62.97,3.91022)"
id="polygon3461"
style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 73.826341,356.02127 L 60.023805,343.10041 L 46.056385,355.84285 L 47.552578,336.99557 L 28.881593,334.02019 L 44.54985,323.43887 L 35.234933,306.98618 L 53.276738,312.63878 L 60.33221,295.098 L 67.161716,312.72799 L 85.274664,307.30768 L 75.749113,323.63932 L 91.280117,334.42109 L 72.572443,337.15632 L 73.826341,356.02127 z"
transform="matrix(0.916571,0,0,0.91657,226.5818,-52.52496)"
id="polygon1880"
style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 73.826341,356.02127 L 60.023805,343.10041 L 46.056385,355.84285 L 47.552578,336.99557 L 28.881593,334.02019 L 44.54985,323.43887 L 35.234933,306.98618 L 53.276738,312.63878 L 60.33221,295.098 L 67.161716,312.72799 L 85.274664,307.30768 L 75.749113,323.63932 L 91.280117,334.42109 L 72.572443,337.15632 L 73.826341,356.02127 z"
transform="matrix(0.916571,0,0,0.91657,7.824602,-14.63)"
id="polygon1881"
style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 73.826341,356.02127 L 60.023805,343.10041 L 46.056385,355.84285 L 47.552578,336.99557 L 28.881593,334.02019 L 44.54985,323.43887 L 35.234933,306.98618 L 53.276738,312.63878 L 60.33221,295.098 L 67.161716,312.72799 L 85.274664,307.30768 L 75.749113,323.63932 L 91.280117,334.42109 L 72.572443,337.15632 L 73.826341,356.02127 z"
transform="matrix(0.916571,0,0,0.91657,121.5094,130.0597)"
id="polygon1883"
style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8 KiB

22
build/svg/CY-NC.svg Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="1026" height="684" id="Flag_of_the_Turkish_Republic_of_Northern_Cyprus" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0 360,240">
<rect width="360" height="240" fill="white" />
<g fill="rgb(227,10,23)">
<rect width="360" height="24" y="24" />
<rect width="360" height="24" y="192" />
<circle cx="120" cy="120" r="60" />
<circle cx="135" cy="120" r="48" fill="white" />
<g id="star" transform="translate(200.7,120) scale(30) rotate(-90)">
<g id="cone">
<polygon id="triangle" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/>
<use xlink:href="#triangle" transform="scale(-1,1)"/>
</g>
<use xlink:href="#cone" transform="rotate(72)"/>
<use xlink:href="#cone" transform="rotate(-72)"/>
<use xlink:href="#cone" transform="rotate(144)"/>
<use xlink:href="#cone" transform="rotate(-144)"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

63
build/svg/CY.svg Normal file
View file

@ -0,0 +1,63 @@
<?xml version="1.0" standalone="yes"?>
<!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" xmlns:xlink="http://www.w3.org/1999/xlink" width="1030" height="618" viewBox="0 0 1000 600">
<rect fill="white" width="1000" height="600" />
<path id="Cyprus" fill="#ed8000" d="M427.656,185.589c0,7.68,0.96,8.64,1.44,10.08c0.48,1.44,1.08,27.839-2.88,35.04
c-3.96,7.201-11.76,11.28-14.88,12c-3.12,0.72-12.96-6.24-22.081-9.12c-9.12-2.88-8.64-2.4-12.479-2.4s-12.48,3.239-14.88,5.28
c-1.56-0.24-1.92-0.96-2.88,0c-0.959,0.96-4.8,4.8-5.76,7.2c-0.96,2.4-3.359,11.521-6.24,12.48
c-2.88,0.96-10.68,8.759-15.84,9.121c-5.159,0.36-3.72-0.24-7.2-0.48c-3.479-0.24-3.84-3.84-7.2-5.76
c-3.359-1.92-4.32-3.36-4.32-3.36s-0.96-3.84-2.4-3.84c-1.439,0-2.879,6.721-2.879,8.641s3.839,9.12,5.76,10.559
c1.92,1.44,1.92,10.081,0.96,12.48c-0.96,2.4,1.92,4.801,2.399,7.2c0.48,2.4-2.879,4.319-1.439,4.8
c1.439,0.479,3.36,3.359,3.36,6.24c0,2.88,7.2,3.84,8.64,6.72c1.44,2.88,1.92,7.68,2.4,10.561c0.48,2.88,2.16,1.56,2.399,8.64
c2.28,1.08,5.76,3.359,8.64,4.8c2.88,1.44,2.401,4.8,6.24,6.24c3.84,1.439,3.84,0,5.76,0.479c1.92,0.48-0.96,0.961,2.4,1.92
c3.361,0.96,4.8-0.479,7.681,0.96c2.88,1.44,4.32,4.801,6.24,5.761s10.08,3.359,10.56,3.84c0.48,0.479,5.76,2.4,6.72,2.4
c0.96,0,3.84-1.921,3.84-1.921s3.36,0.96,6.24,0c2.88-0.959,4.8-3.84,6.72-3.84s2.4,0.96,4.32,0.96
c1.92,0,4.799-0.96,4.799-0.96s4.32-0.96,7.68,0.96c3.36,1.921,11.04,11.041,11.04,14.881c0,3.839-0.479,5.76-0.479,5.76
s3.839-0.481,5.279,0.479c1.44,0.961,1.32-0.839,12,0.961c-0.72-2.641-11.04-10.08-1.44-20.641
c9.6-10.561,10.2-6.24,12.48-8.159c2.28-1.921,11.04-7.562,25.92-2.401c14.4-2.399,3.84-4.319,12-4.799
c1.44-0.601,4.201,0.119,7.201,0.96c0.96-1.801,3-3.48,6.24-2.881c0.6-1.68,4.559-3.96,8.639-4.319
c0.601-3.241,10.921-7.319,16.801-7.681c2.399-2.16,5.16-11.76,18.24-7.2c0.479-3.119,2.64-8.16,6.24-9.12
c0.72-6.479-1.682-19.561,4.8-24c6.479-5.88,12.6-4.561,23.52-4.319c7.44,1.56,11.04,7.199,13.439,7.68
c2.4,0.48,3.36,0.48,6.24-1.439c2.88-1.921-0.479-5.761,1.92-5.761c2.4,0,1.439,0.48,5.28,0c3.84-0.479,3.36-1.8,5.76-2.399
c3.841,1.921,8.16,0.479,10.08,1.92c1.921,1.439,2.16,1.319,6.24,1.92c1.439,2.399,5.279,2.399,5.279,2.399
s-2.879-0.96-1.919-2.399c0.96-1.44,0-5.761-1.921-7.681c-1.919-1.92-2.879-2.4-4.319-4.319
c-1.439-1.92,0.479-1.921-1.921-4.32c-2.399-2.4-7.679-4.8-9.119-7.68c-1.439-2.88-0.96-4.8-3.36-7.2
c-2.399-2.4-12-10.56-12.479-19.2s0.479-16.919,6.239-19.68c-0.24-5.04,0.961-5.76,6.24-8.64s5.762-0.96,9.12-0.96
c3.359,0,5.281,0.48,8.64-1.919c3.36-2.4,0.48-7.68,9.12-15.36c8.641-7.68,12-11.52,14.881-12c2.88-0.48,13.319-7.8,17.76-7.2
c3.12-3.719,6.24-8.16,10.08-11.04c3.84-2.88,8.161-2.88,10.08-5.28c1.92-2.4,1.439-6.721,7.2-10.561
c5.76-3.839,10.561-6.239,12.96-8.16c2.399-1.92,7.68-0.48,9.6-2.4c1.92-1.92,1.92-9.12,3.839-10.56
c1.921-1.44-6.239,3.36-10.559,5.28c-4.32,1.92-10.56,5.28-15.84,4.8s-2.401,2.879-5.28,3.84c-2.88,0.96-7.68,0.48-9.601,2.4
c-1.92,1.92-5.279,6.72-8.159,8.64c-2.881,1.919-4.32,1.44-7.2,2.88c-2.881,1.44-5.28,2.88-7.68,3.84
c-2.4,0.96-9.601,0.48-9.601,0.48s-6.24,8.16-9.12,11.04c-2.88,2.88-6.24,2.4-9.12,3.84c-2.88,1.439-27.36,17.28-44.159,19.68
c-16.801,2.399-9.121-1.44-14.4,0c-5.279,1.44-12.961,11.519-19.2,12c-6.24,0.48-8.16,0-9.6,0c-1.44,0-9.12,4.8-13.92,3.84
c-7.08,2.16-12.359,1.68-14.4,1.439c-2.04-0.239-5.76,2.4-11.04,0c-4.08-1.319-4.08,1.56-11.999-0.959
c-7.921-2.52-13.441,0.96-17.281-0.96c-3.84-1.92-3.36-3.36-6.24-3.36c-2.88,0-2.88,1.92-6.24,1.92
c-3.36,0-3.84-1.92-6.72-1.92c-2.88,0-6.24,1.92-10.56,1.44c-4.32-0.48-5.76-2.4-8.64-2.4
C443.496,192.309,427.656,185.589,427.656,185.589z" />
<g fill="#006651">
<path d="M476.765,478.801c8.334-6,15.666-8,27-10c11.334-2,23.334-5.332,29.666-7 s-21.332,8-28.332,10C498.099,473.801,476.765,478.801,476.765,478.801z" />
<path d="M522.432,461.133c-2.332-14.332,3.332-29.332,16.332-35.332 C541.764,436.133,532.432,453.801,522.432,461.133z" />
<path d="M544.383,453.674c-6.951-11.873,4.814-27.188,13.432-34.697 C561.766,426.133,554.766,447.467,544.383,453.674z"/>
<path d="M564.766,444.467c-7.432-10.182,1.332-28,10.666-35 C579.098,419.467,575.432,437.467,564.766,444.467z"/>
<path d="M585.154,431.734c-6.723-9.602-2.055-24.602,7.611-34.268 C599.766,405.467,593.766,422.801,585.154,431.734z"/>
<path d="M601.432,418.801c-5.666-9,1.334-30.668,10.334-36.668 C615.766,390.133,612.766,412.801,601.432,418.801z"/>
<path d="M614.432,415.467c-1.666-13,21.002-27.334,30.334-27 C643.766,399.133,634.098,410.801,614.432,415.467z"/>
<path d="M601.766,430.133c10.666-11,31.332-11,38.666-8.666 C638.432,427.801,614.1,441.799,601.766,430.133z"/>
<path d="M587.098,441.133c15-4,24.668-7.334,33.668,2 C614.432,451.133,590.098,448.799,587.098,441.133z"/>
<path d="M565.766,450.801c14.332-7.668,31.666,3.666,34.332,10.332 C584.098,467.801,565.434,452.469,565.766,450.801z"/>
<path d="M546.098,461.801c13-5,28,1.668,34,9 C573.098,474.133,554.764,477.801,546.098,461.801z"/>
<path d="M528.1,467.467c15-1.666,29.393,9.686,32.529,16.176 C541.432,485.467,534.1,479.801,528.1,467.467z"/>
<path d="M523.268,478.801c-8.334-6-15.666-8-27-10c-11.334-2-23.334-5.332-29.667-7 s21.333,8,28.333,10C501.934,473.801,523.268,478.801,523.268,478.801z"/>
<path d="M477.6,461.133c2.333-14.332-3.332-29.332-16.333-35.332 C458.267,436.133,467.6,453.801,477.6,461.133z"/>
<path d="M455.649,453.674c6.951-11.873-4.814-27.188-13.432-34.697 C438.266,426.133,445.266,447.467,455.649,453.674z"/>
<path d="M435.266,444.467c7.432-10.182-1.332-28-10.666-35 C420.934,419.467,424.6,437.467,435.266,444.467z"/>
<path d="M414.877,431.734c6.723-9.602,2.055-24.602-7.611-34.268 C400.266,405.467,406.266,422.801,414.877,431.734z"/>
<path d="M398.6,418.801c5.666-9-1.334-30.668-10.334-36.668 C384.266,390.133,387.266,412.801,398.6,418.801z"/>
<path d="M385.6,415.467c1.666-13-21.002-27.334-30.334-27 C356.266,399.133,365.934,410.801,385.6,415.467z"/>
<path d="M398.266,430.133c-10.666-11-31.332-11-38.666-8.666 C361.6,427.801,385.932,441.799,398.266,430.133z"/>
<path d="M412.934,441.133c-15-4-24.668-7.334-33.668,2 C385.6,451.133,409.934,448.799,412.934,441.133z"/>
<path d="M434.266,450.801c-14.332-7.668-31.666,3.666-34.332,10.332 C415.934,467.801,434.598,452.469,434.266,450.801z"/>
<path d="M453.934,461.801c-13-5-28,1.668-34,9 C426.934,474.133,445.268,477.801,453.934,461.801z"/>
<path d="M471.933,467.467c-15-1.666-29.394,9.686-32.53,16.176 C458.6,485.467,465.933,479.801,471.933,467.467z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

11
build/svg/CZ.svg Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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" version="1.1" width="900" height="600" viewBox="0 0 6 4">
<!--
According to the Czech Copyright Act, this image is in the public domain. (Law No. 121/2000, Article 3, Section a)
-->
<desc>Flag of the Czech Republic</desc>
<rect id="red" width="6" height="4" fill="#d7141a"/>
<rect id="white" width="6" height="2" fill="#fff"/>
<path id="blue" d="M3,2 L0,0 v4 z" fill="#11457e"/>
</svg>

After

Width:  |  Height:  |  Size: 581 B

1268
build/svg/DDDE.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 67 KiB

9
build/svg/DE.svg Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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" width="1000" height="600" viewBox="0 0 5 3">
<desc>Flag of Germany</desc>
<rect id="black_stripe" width="5" height="3" y="0" x="0" fill="#000"/>
<rect id="red_stripe" width="5" height="2" y="1" x="0" fill="#D00"/>
<rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="#FFCE00"/>
</svg>

After

Width:  |  Height:  |  Size: 502 B

9
build/svg/DEDE.svg Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!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" width="1000" height="600" viewBox="0 0 5 3">
<desc>Flag of Germany</desc>
<rect id="black_stripe" width="5" height="3" y="0" x="0" fill="#000"/>
<rect id="red_stripe" width="5" height="2" y="1" x="0" fill="#D00"/>
<rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="#FFCE00"/>
</svg>

After

Width:  |  Height:  |  Size: 502 B

999
build/svg/DG.svg Normal file
View file

@ -0,0 +1,999 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.0"
width="600"
height="300"
id="svg548">
<defs
id="defs550" />
<g
id="g42903">
<rect
width="600.00006"
height="300.00003"
x="2.270937e-05"
y="-0.0001209102"
id="rect576"
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.991189pt" />
<path
d="M 600.00013,260.88144 C 593.27699,264.92597 587.50091,274.37874 569.64047,274.37874 C 533.92927,274.37874 524.99875,254.47737 498.21263,254.47737 C 480.35704,254.47737 471.42833,274.37874 453.57152,274.37874 C 417.8573,274.37874 408.9286,254.47737 382.14308,254.47737 C 364.28567,254.47737 355.35696,274.37874 337.50016,274.37874 C 301.78594,274.37874 292.85723,254.47737 266.07172,254.47737 C 248.2143,254.47737 239.2856,274.37874 221.42879,274.37874 C 185.71457,274.37874 176.78586,254.47737 150.00035,254.47737 C 132.14233,254.47737 123.21423,274.37874 105.35743,274.37874 C 69.643205,274.37874 60.713894,254.47737 33.928562,254.47737 C 16.071452,254.47737 10.714289,268.65877 2.270937e-05,268.65877 L 2.270937e-05,294.28011 C 10.714289,294.28011 16.071391,280.0987 33.928562,280.0987 C 60.713894,280.0987 69.643205,300.00007 105.35743,300.00007 C 123.21423,300.00007 132.14233,280.0987 150.00035,280.0987 C 176.78526,280.0987 185.71457,300.00007 221.42879,300.00007 C 239.2856,300.00007 248.2143,280.0987 266.07172,280.0987 C 292.85723,280.0987 301.78594,300.00007 337.50016,300.00007 C 355.35696,300.00007 364.28567,280.0987 382.14308,280.0987 C 408.9286,280.0987 417.8573,300.00007 453.57152,300.00007 C 471.42833,300.00007 480.35704,280.0987 498.21263,280.0987 C 524.99875,280.0987 533.92927,300.00007 569.64047,300.00007 C 587.50091,300.00007 593.27699,294.36043 600.00013,290.3159 L 600.00013,260.88144 z"
id="path570"
style="font-size:12px;fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1" />
<use
transform="translate(0,49.75348)"
id="use3398"
x="0"
y="0"
width="600"
height="300"
xlink:href="#use3396" />
<use
transform="translate(0,-99.50701)"
id="use3396"
x="0"
y="0"
width="600"
height="300"
xlink:href="#path570" />
<path
d="M 266.07172,130.83824 C 292.85723,130.83824 301.78594,150.73961 337.50016,150.73961 C 355.35696,150.73961 364.28567,130.83824 382.14308,130.83824 C 408.9286,130.83824 417.8573,150.73961 453.57152,150.73961 C 471.42833,150.73961 480.35704,130.83824 498.21263,130.83824 C 524.99875,130.83824 533.92927,150.73961 569.64047,150.73961 C 587.50091,150.73961 593.27699,145.09997 600.00013,141.05544 L 600.00013,111.62098 C 593.27699,115.66551 587.50091,125.11828 569.64047,125.11828 C 533.92927,125.11828 524.99875,105.21691 498.21263,105.21691 C 480.35704,105.21691 471.42833,125.11828 453.57152,125.11828 C 417.8573,125.11828 408.9286,105.21691 382.14308,105.21691 C 364.28567,105.21691 355.35696,125.11828 337.50016,125.11828 C 301.78594,125.11828 292.85723,105.21691 266.07172,105.21691"
id="path573"
style="font-size:12px;fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1" />
<use
transform="translate(0,-49.75352)"
id="use2595"
x="0"
y="0"
width="600"
height="300"
xlink:href="#path573" />
<use
transform="translate(0,-99.507016)"
id="use2597"
x="0"
y="0"
width="600"
height="300"
xlink:href="#path573" />
<g
transform="matrix(0.5,0,0,0.5,0,154.7222)"
id="g6773">
<rect
width="600"
height="300"
x="0"
y="-309.4444"
id="rect3179"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1" />
<path
d="M -238.28967,473.03977 L -238.50396,378.74081 L -156.73152,425.70471 L -238.28967,473.03977 z"
transform="matrix(2.849371,0,0,2.449656,679.5863,-1202.729)"
id="path4054"
style="fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1" />
<use
transform="matrix(-1,0,0,1,600,-2.006206e-6)"
id="use6675"
x="0"
y="0"
width="600"
height="600"
xlink:href="#path4054" />
<use
transform="matrix(0,-0.502146,2.017316,0,621.6497,-9.4444)"
id="use6677"
x="0"
y="0"
width="600"
height="600"
xlink:href="#path4054" />
<use
transform="matrix(1,0,0,-1,-4.715239e-8,-318.8888)"
id="use6679"
x="0"
y="0"
width="600"
height="600"
xlink:href="#use6677" />
</g>
<path
d="M 177.64,50 L 200,50 L 300,0 L 277.64,0 L 177.64,50 z"
id="path3141"
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 0,0 L 0,11.18 L 77.64,50 L 100,50 L 0,0 z"
id="path3143"
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 300,150.00001 L 300,138.82001 L 222.36,100.00001 L 200,100.00001 L 300,150.00001 z"
id="path3145"
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 0,150 L 22.36,150 L 122.36,100 L 100,100 L 0,150 z"
id="path3147"
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
transform="matrix(0.5,0,0,0.5,0,5e-6)"
id="g6767">
<use
transform="matrix(1,0,0,0.333333,0,203.1481)"
id="use6763"
x="0"
y="0"
width="600"
height="300"
xlink:href="#rect3179" />
<use
transform="matrix(0,0.5,-1,0,450,0)"
id="use6765"
x="0"
y="0"
width="600"
height="300"
xlink:href="#use6763" />
</g>
<rect
width="300"
height="30"
rx="5.5511257e-15"
ry="7.5502982e-16"
x="0"
y="60.000004"
id="use3168"
style="fill:#ce1124;fill-opacity:1;fill-rule:evenodd;stroke-opacity:1" />
<use
transform="matrix(0,0.5,-1,0,225,5e-6)"
id="use6771"
x="0"
y="0"
width="600"
height="300"
xlink:href="#use3168" />
<g
id="g2838">
<g
transform="matrix(0.604762,0,0,0.604762,0,-1.160721e-4)"
id="Palm">
<path
d="M 814.961,-301.181 L 797.244,407.48 C 797.244,444.778 877.341,444.778 885.827,407.48 L 868.11,-301.181 L 814.961,-301.181 z"
transform="matrix(0.200004,0,0,0.475,575.1662,274.5648)"
id="path861"
style="fill:#a24300;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:6.93489981;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="matrix(0.725195,0,0,0.6231,202.0636,41.43416)"
id="g862">
<g
transform="matrix(-0.314512,0.10485,-0.138292,-0.303235,1046.472,373.319)"
id="g852">
<path
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
transform="translate(177.1655,-224.0517)"
id="path853"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
<path
d="M 496.063,549.213 L 496.063,1045.28"
transform="translate(177.1655,-224.0517)"
id="path854"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
transform="translate(177.1655,-224.0517)"
id="path855"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
transform="translate(177.1655,-224.0517)"
id="path856"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
transform="translate(177.1655,-224.0517)"
id="path857"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
transform="translate(177.1655,-224.0517)"
id="path858"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
transform="translate(177.1655,-224.0517)"
id="path859"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
transform="translate(177.1655,-224.0517)"
id="path860"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(0.236516,-0.281856,0.294964,0.227618,354.5673,204.654)"
id="g738">
<path
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
transform="translate(177.1655,-224.0517)"
id="path739"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
<path
d="M 496.063,549.213 L 496.063,1045.28"
transform="translate(177.1655,-224.0517)"
id="path740"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
transform="translate(177.1655,-224.0517)"
id="path741"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
transform="translate(177.1655,-224.0517)"
id="path742"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
transform="translate(177.1655,-224.0517)"
id="path743"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
transform="translate(177.1655,-224.0517)"
id="path744"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
transform="translate(177.1655,-224.0517)"
id="path745"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
transform="translate(177.1655,-224.0517)"
id="path746"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(0.15164,0.335243,-0.332899,0.167308,907.5388,-153.4696)"
id="g747">
<path
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
transform="translate(177.1655,-224.0517)"
id="path748"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
<path
d="M 496.063,549.213 L 496.063,1045.28"
transform="translate(177.1655,-224.0517)"
id="path749"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
transform="translate(177.1655,-224.0517)"
id="path750"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
transform="translate(177.1655,-224.0517)"
id="path751"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
transform="translate(177.1655,-224.0517)"
id="path752"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
transform="translate(177.1655,-224.0517)"
id="path753"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
transform="translate(177.1655,-224.0517)"
id="path754"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
transform="translate(177.1655,-224.0517)"
id="path755"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(-0.209517,0.302465,-0.314697,-0.199448,1141.363,167.5798)"
id="g756">
<path
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
transform="translate(177.1655,-224.0517)"
id="path757"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
<path
d="M 496.063,549.213 L 496.063,1045.28"
transform="translate(177.1655,-224.0517)"
id="path758"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
transform="translate(177.1655,-224.0517)"
id="path759"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
transform="translate(177.1655,-224.0517)"
id="path760"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
transform="translate(177.1655,-224.0517)"
id="path761"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
transform="translate(177.1655,-224.0517)"
id="path762"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
transform="translate(177.1655,-224.0517)"
id="path763"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
transform="translate(177.1655,-224.0517)"
id="path764"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(-0.207724,-0.258384,0.236176,-0.235153,689.9856,567.2772)"
id="g765">
<path
d="M 496.063,549.213 L 513.78,620.079 L 549.213,566.929 L 531.496,655.512 L 566.929,620.079 L 531.496,708.661 L 566.929,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 425.197,673.228 L 460.63,708.661 L 425.197,620.079 L 460.63,655.512 L 442.913,566.929 L 478.346,620.079 L 496.063,549.213 z"
transform="translate(177.1655,-224.0517)"
id="path766"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25;stroke-dasharray:none" />
<path
d="M 496.063,549.213 L 496.063,1045.28"
transform="translate(177.1655,-224.0517)"
id="path767"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,868.11 L 496.063,974.409 L 566.929,868.11"
transform="translate(177.1655,-224.0517)"
id="path768"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,797.244 L 496.063,903.543 L 566.929,797.244"
transform="translate(177.1655,-224.0517)"
id="path769"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,726.378 L 496.063,832.677 L 566.929,726.378"
transform="translate(177.1655,-224.0517)"
id="path770"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,673.228 L 496.063,761.811 L 566.929,673.228"
transform="translate(177.1655,-224.0517)"
id="path771"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,620.079 L 496.063,708.661 L 566.929,620.079"
transform="translate(177.1655,-224.0517)"
id="path772"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 442.913,566.929 L 496.063,673.228 L 549.213,566.929"
transform="translate(177.1655,-224.0517)"
id="path773"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(-0.362184,-9.947167e-2,-0.209809,0.317733,1222.415,-24.22945)"
id="g791">
<path
d="M 460.63,549.213 L 489.273,620.079 L 531.496,566.929 L 521.312,655.512 L 549.212,620.079 L 531.496,708.661 L 556.745,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 415.013,673.228 L 460.63,708.661 L 407.48,620.079 L 450.446,655.512 L 425.196,566.929 L 460.629,620.079 L 460.63,549.213 z"
transform="translate(283.4647,-124.0162)"
id="path775"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25" />
<path
d="M 467.208,584.646 L 496.063,708.662 L 496.063,1045.28"
transform="translate(283.4647,-124.0162)"
id="path776"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 436.23,885.827 L 496.063,974.409 L 556.745,885.827"
transform="translate(283.4647,-124.0162)"
id="path777"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 434.533,814.961 L 496.063,903.543 L 556.745,814.961"
transform="translate(283.4647,-124.0162)"
id="path778"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 435.381,744.095 L 496.063,832.677 L 555.896,744.095"
transform="translate(283.4647,-124.0162)"
id="path779"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 432.835,690.945 L 496.063,761.811 L 549.212,690.945"
transform="translate(283.4647,-124.0162)"
id="path780"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,637.796 L 496.063,708.661 L 541.469,637.796"
transform="translate(283.4647,-124.0162)"
id="path781"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 436.124,593.238 L 489.274,680.124 L 524.601,584.646"
transform="translate(283.4647,-124.0162)"
id="path782"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(0.360878,0.10411,1.321056e-2,0.380525,452.7614,-239.2657)"
id="g800">
<path
d="M 460.63,549.213 L 489.273,620.079 L 531.496,566.929 L 521.312,655.512 L 549.212,620.079 L 531.496,708.661 L 556.745,673.228 L 531.496,761.811 L 566.929,726.378 L 531.496,832.677 L 566.929,797.244 L 531.496,903.543 L 566.929,868.11 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 425.197,868.11 L 460.63,903.543 L 425.197,797.244 L 460.63,832.677 L 425.197,726.378 L 460.63,761.811 L 415.013,673.228 L 460.63,708.661 L 407.48,620.079 L 450.446,655.512 L 425.196,566.929 L 460.629,620.079 L 460.63,549.213 z"
transform="translate(283.4647,-124.0162)"
id="path801"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25" />
<path
d="M 467.208,584.646 L 496.063,708.662 L 496.063,1045.28"
transform="translate(283.4647,-124.0162)"
id="path802"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 436.23,885.827 L 496.063,974.409 L 556.745,885.827"
transform="translate(283.4647,-124.0162)"
id="path803"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 434.533,814.961 L 496.063,903.543 L 556.745,814.961"
transform="translate(283.4647,-124.0162)"
id="path804"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 435.381,744.095 L 496.063,832.677 L 555.896,744.095"
transform="translate(283.4647,-124.0162)"
id="path805"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 432.835,690.945 L 496.063,761.811 L 549.212,690.945"
transform="translate(283.4647,-124.0162)"
id="path806"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,637.796 L 496.063,708.661 L 541.469,637.796"
transform="translate(283.4647,-124.0162)"
id="path807"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 436.124,593.238 L 489.274,680.124 L 524.601,584.646"
transform="translate(283.4647,-124.0162)"
id="path808"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
<g
transform="matrix(4.613187e-2,-0.364743,0.326017,6.479648e-2,379.5799,479.5432)"
id="g843">
<path
d="M 354.331,531.496 L 442.914,620.079 L 460.63,566.93 L 460.63,655.512 L 496.063,620.079 L 478.347,708.662 L 513.779,673.228 L 496.063,761.812 L 531.496,726.379 L 513.78,832.678 L 549.213,797.245 L 513.78,903.544 L 549.213,868.111 L 531.496,974.409 L 513.78,1027.56 L 496.063,1045.28 L 478.346,1027.56 L 460.63,974.409 L 407.48,892.115 L 442.914,903.544 L 407.481,797.245 L 442.914,832.678 L 389.764,726.379 L 425.197,761.812 L 372.047,673.228 L 425.197,708.662 L 354.331,620.079 L 407.48,655.512 L 336.614,584.646 L 407.48,620.079 L 354.331,531.496 z"
transform="translate(442.9136,-42.96583)"
id="path810"
style="font-size:12px;fill:#006d00;fill-rule:evenodd;stroke:#ffffff;stroke-width:8.25" />
<path
d="M 378.962,560.015 L 442.914,655.512 L 460.63,708.662 L 469.489,753.867 L 478.347,832.678 L 487.662,903.544 L 496.063,1045.28"
transform="translate(442.9136,-42.96583)"
id="path811"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 425.197,903.544 L 488.862,974.41 L 539.611,885.827"
transform="translate(442.9136,-42.96583)"
id="path812"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 417.082,814.961 L 487.661,903.544 L 538.411,814.961"
transform="translate(442.9136,-42.96583)"
id="path813"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 407.48,752.443 L 478.347,832.678 L 524.295,744.095"
transform="translate(442.9136,-42.96583)"
id="path814"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 372.047,637.796 L 460.63,708.662 L 486.461,637.796"
transform="translate(442.9136,-42.96583)"
id="path815"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 360.618,602.363 L 442.914,655.512 L 453.429,602.363"
transform="translate(442.9136,-42.96583)"
id="path816"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
<path
d="M 389.764,690.945 L 470.859,761.811 L 504.805,690.945"
transform="translate(442.9136,-42.96583)"
id="path817"
style="font-size:12px;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1pt" />
</g>
</g>
</g>
<g
transform="matrix(0.253333,0,0,0.253333,412,157.1807)"
id="g3550">
<path
d="M 52.503965,257.67359 L 151.04022,239.9936 L 253.68217,257.67359 L 206.05631,277.47519 L 118.19481,278.88959 L 52.503965,257.67359 z"
id="path2533"
style="fill:#9d9d9d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00763929px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 151.78901,98.44529 C 134.5655,104.43198 115.487,90.019808 84.429526,113.53855 C 84.429526,113.53855 30.285723,90.375857 26.173134,143.90965 C 26.007856,146.0772 34.743302,159.13312 35.959006,158.19981 C 42.763268,152.97609 32.729269,163.27247 32.729269,164.75987 C 32.729269,166.25998 33.727209,167.09271 34.064093,167.75377 C 34.394626,168.42118 35.227321,169.41915 35.392587,172.24775 C 35.557854,175.07637 29.255743,182.79178 31.919093,185.62039 C 34.576081,188.44899 34.741348,196.60428 34.741348,198.93073 C 34.741348,201.25719 36.406727,207.7471 37.569954,209.08192 C 38.733193,210.41042 40.729115,213.73484 40.729115,216.56345 C 40.729115,219.39206 41.892332,227.21045 41.39017,229.2 C 40.894371,231.19592 44.384053,233.69399 47.549544,234.69194 C 50.708684,235.68992 91.484837,236.39788 148.71173,235.39993 C 205.94498,234.40198 225.03999,243.45747 248.68588,234.85721 C 252.34084,233.52874 253.00827,230.53485 252.67773,228.86947 C 252.34084,227.21045 252.67773,221.89013 253.67569,220.55529 C 254.67364,219.22678 261.32882,208.57978 259.99396,206.58386 C 261.2504,205.4496 270.5831,211.97352 264.639,206.14839 C 263.11463,204.65453 265.49227,188.93207 266.31224,185.62039 C 267.13861,182.30235 268.40792,176.07061 269.93345,174.91375 C 271.46535,173.75688 267.33516,169.42594 267.62757,168.64411 C 267.92633,167.85591 269.03869,165.41504 270.58967,164.30267 C 270.58967,164.30267 273.47549,150.77621 271.69568,144.12741 C 269.9286,137.47222 263.42643,107.54445 222.8343,113.53855 C 222.8343,113.53855 168.49352,92.638978 151.78901,98.44529 z"
id="path560"
style="font-size:12px;fill:#cc0000;fill-opacity:1;stroke:#000000;stroke-width:1.62866855;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="translate(0,-2.600445e-4)"
id="g2053">
<g
transform="matrix(1.085779,0,0,1.085779,6.91471,26.11235)"
id="g34262">
<g
id="g33323">
<g
id="g33297">
<g
id="g33273">
<g
id="g33265">
<g
transform="matrix(0.496967,-4.459677e-2,8.946727e-2,0.726775,44.70009,100.5425)"
id="g14434"
style="stroke-width:1.2411145;stroke-miterlimit:4;stroke-dasharray:none">
<path
d="M 49.75,0.125 C 44.657173,1.0150867 34.593967,29.370307 37.140742,38.875 C 38.903806,45.454846 41.638805,49.994728 43.1875,52.78125 C 39.783355,48.095644 31.805069,39.03125 20.9375,39.03125 C 7.2744195,39.031249 5.5071701,68.979132 5.84375,70.90625 C 5.8451686,70.913083 5.8422657,70.931582 5.84375,70.9375 C 5.8452986,70.942497 5.8733883,70.964683 5.875,70.96875 C 5.8766791,70.967805 5.9044132,70.970089 5.90625,70.96875 C 6.5192136,70.254323 12.047657,57.875 25.5625,57.875 C 34.458953,57.875001 41.391733,64.910483 43.9375,67.90625 C 43.936774,68.850585 43.960299,69.7644 43.96875,70.6875 C 41.964844,73.515974 40.687337,80.21875 34.499837,88.65625 C 27.023275,98.851565 4.1284837,99.896789 0.28125,100 C 1.2518101,100 37.80639,100 49.8125,100 C 49.859919,100 49.921967,100.00293 49.96875,100 C 49.990625,100.00202 50.009234,99.998621 50.03125,100 C 50.078033,100.00293 50.140081,100 50.1875,100 C 62.19361,100 98.74819,100 99.71875,100 C 95.871517,99.896788 72.539244,98.851561 65.062684,88.65625 C 58.875184,80.21875 58.035156,73.515973 56.03125,70.6875 C 56.039701,69.7644 56.063226,68.850585 56.0625,67.90625 C 58.608266,64.910482 65.541045,57.874999 74.4375,57.875 C 87.952343,57.875 93.480788,70.254327 94.09375,70.96875 C 94.095587,70.970089 94.123321,70.967805 94.125,70.96875 C 94.126612,70.964683 94.154701,70.942497 94.15625,70.9375 C 94.157734,70.931582 94.154831,70.913083 94.15625,70.90625 C 94.49283,68.979133 92.725584,39.03125 79.0625,39.03125 C 68.194931,39.03125 60.216645,48.095644 56.8125,52.78125 C 58.361195,49.994728 61.102733,44.205918 62.531148,38.875 C 65.118348,29.219439 55.091155,0.1322067 50,0.125 C 49.920451,0.12511261 49.830839,0.11087164 49.75,0.125 z M 43.3125,52.96875 C 43.664807,53.459137 43.974714,53.881164 44.21875,54.25 C 44.223907,54.257795 44.760491,57.226504 44.765599,57.234237 C 44.763218,57.29794 47.39283,67.420084 47.390477,67.483768 C 47.126088,67.092089 43.653445,53.568624 43.3125,52.96875 z M 56.6875,52.96875 C 56.346555,53.568624 52.655172,67.092089 52.390783,67.483768 C 52.38843,67.420084 55.783631,54.344953 55.78125,54.28125 C 55.780853,54.270633 55.344168,57.244855 55.34377,57.234237 C 55.587806,56.865401 56.335193,53.459137 56.6875,52.96875 z"
id="path13497"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.2411145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 42,67.578191 C 42,67.578191 46,65.718903 50,65.718903 C 54,65.718903 58,67.578191 58,67.578191 L 58,72.531179 C 58,72.531179 54,70.67189 50,70.67189 C 46,70.67189 42,72.531179 42,72.531179 L 42,67.578191 z"
id="path13500"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.2411145;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(0.495379,5.970303e-2,-6.359282e-2,0.729495,168.9189,96.59048)"
id="g27449"
style="stroke-width:1.24111438;stroke-miterlimit:4;stroke-dasharray:none">
<path
d="M 49.75,0.125 C 44.657173,1.0150867 34.593967,29.370307 37.140742,38.875 C 38.903806,45.454846 41.638805,49.994728 43.1875,52.78125 C 39.783355,48.095644 31.805069,39.03125 20.9375,39.03125 C 7.2744195,39.031249 5.5071701,68.979132 5.84375,70.90625 C 5.8451686,70.913083 5.8422657,70.931582 5.84375,70.9375 C 5.8452986,70.942497 5.8733883,70.964683 5.875,70.96875 C 5.8766791,70.967805 5.9044132,70.970089 5.90625,70.96875 C 6.5192136,70.254323 12.047657,57.875 25.5625,57.875 C 34.458953,57.875001 41.391733,64.910483 43.9375,67.90625 C 43.936774,68.850585 43.960299,69.7644 43.96875,70.6875 C 41.964844,73.515974 40.687337,80.21875 34.499837,88.65625 C 27.023275,98.851565 4.1284837,99.896789 0.28125,100 C 1.2518101,100 37.80639,100 49.8125,100 C 49.859919,100 49.921967,100.00293 49.96875,100 C 49.990625,100.00202 50.009234,99.998621 50.03125,100 C 50.078033,100.00293 50.140081,100 50.1875,100 C 62.19361,100 98.74819,100 99.71875,100 C 95.871517,99.896788 72.539244,98.851561 65.062684,88.65625 C 58.875184,80.21875 58.035156,73.515973 56.03125,70.6875 C 56.039701,69.7644 56.063226,68.850585 56.0625,67.90625 C 58.608266,64.910482 65.541045,57.874999 74.4375,57.875 C 87.952343,57.875 93.480788,70.254327 94.09375,70.96875 C 94.095587,70.970089 94.123321,70.967805 94.125,70.96875 C 94.126612,70.964683 94.154701,70.942497 94.15625,70.9375 C 94.157734,70.931582 94.154831,70.913083 94.15625,70.90625 C 94.49283,68.979133 92.725584,39.03125 79.0625,39.03125 C 68.194931,39.03125 60.216645,48.095644 56.8125,52.78125 C 58.361195,49.994728 61.102733,44.205918 62.531148,38.875 C 65.118348,29.219439 55.091155,0.1322067 50,0.125 C 49.920451,0.12511261 49.830839,0.11087164 49.75,0.125 z M 43.3125,52.96875 C 43.664807,53.459137 43.974714,53.881164 44.21875,54.25 C 44.223907,54.257795 44.760491,57.226504 44.765599,57.234237 C 44.763218,57.29794 47.39283,67.420084 47.390477,67.483768 C 47.126088,67.092089 43.653445,53.568624 43.3125,52.96875 z M 56.6875,52.96875 C 56.346555,53.568624 52.655172,67.092089 52.390783,67.483768 C 52.38843,67.420084 55.783631,54.344953 55.78125,54.28125 C 55.780853,54.270633 55.344168,57.244855 55.34377,57.234237 C 55.587806,56.865401 56.335193,53.459137 56.6875,52.96875 z"
id="path27451"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.24111438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 42,67.578191 C 42,67.578191 46,65.718903 50,65.718903 C 54,65.718903 58,67.578191 58,67.578191 L 58,72.531179 C 58,72.531179 54,70.67189 50,70.67189 C 46,70.67189 42,72.531179 42,72.531179 L 42,67.578191 z"
id="path27453"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.24111438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
id="g33161">
<g
id="g33067">
<g
id="g33040">
<path
d="M 24.307772,134.55964 L 33.997629,122.74604 C 33.997629,122.74604 34.901298,123.91425 33.997629,122.74604 C 14.132028,97.064775 13.127166,82.331049 15.363287,74.869821 C 17.599408,67.408593 22.07165,59.325595 33.997629,49.377291 C 45.923607,39.428986 54.153807,44.958238 65.334412,44.958238 C 76.515016,44.958238 79.496511,47.445314 89.18637,48.688852 C 98.876225,49.93239 124.9643,51.175929 124.9643,51.175929 L 124.9643,44.336469 C 124.9643,44.336469 125.99304,44.528254 124.9643,44.336469 C 113.44564,42.18906 98.876225,44.336469 89.18637,41.849393 C 79.496511,39.362316 71.297401,38.740548 60.86217,38.740548 C 50.426939,38.740548 42.942114,35.698372 36.233751,40.050755 C 29.525388,44.403138 21.326277,51.864367 15.363287,58.082058 C 9.4002971,64.299748 6.4188033,76.735128 7.1641763,84.818126 C 7.9095502,92.901124 10.891045,99.740583 15.363287,105.95827 C 19.83553,112.17596 19.090156,117.15011 20.580903,121.50249 C 22.07165,125.85488 24.307772,135.18141 24.307772,134.55964 z"
id="path28377"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.71481037;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 239.25473,134.55964 L 229.56487,122.74604 C 229.56487,122.74604 228.6612,123.91425 229.56487,122.74604 C 249.43047,97.064775 250.43533,82.331049 248.19921,74.869821 C 245.96309,67.408593 241.49085,59.325595 229.56487,49.377291 C 217.63889,39.428986 209.40869,44.958238 198.22809,44.958238 C 187.04748,44.958238 184.06599,47.445314 174.37613,48.688852 C 164.68627,49.93239 138.5982,51.175929 138.5982,51.175929 L 138.5982,44.336469 C 138.5982,44.336469 137.56946,44.528254 138.5982,44.336469 C 150.11686,42.18906 164.68627,44.336469 174.37613,41.849393 C 184.06599,39.362316 192.2651,38.740548 202.70033,38.740548 C 213.13556,38.740548 220.62039,35.698372 227.32875,40.050755 C 234.03711,44.403138 242.23622,51.864367 248.19921,58.082058 C 254.1622,64.299748 257.1437,76.735128 256.39832,84.818126 C 255.65295,92.901124 252.67146,99.740583 248.19921,105.95827 C 243.72697,112.17596 244.47234,117.15011 242.9816,121.50249 C 241.49085,125.85488 239.25473,135.18141 239.25473,134.55964 z"
id="path29282"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.71481037;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
width="34.563435"
height="70.893784"
x="115.55334"
y="38.701004"
id="rect29364"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83496058;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="translate(0,-8)"
id="g33061">
<path
d="M 119.68386,-15.799146 C 119.68386,-15.799146 123.40428,-12.770914 126.25946,-8.8774715 C 129.11465,-4.9840306 131.10463,-0.2253797 131.10463,-0.2253797 C 131.10463,-0.2253797 126.34597,-2.2153611 122.45254,-5.070551 C 118.55909,-7.9257425 115.53086,-11.646141 115.53086,-11.646141 L 115.53086,14.656221 C 115.53086,14.656221 118.55909,10.93582 122.45254,8.080629 C 126.34597,5.2254391 131.10463,3.2354577 131.10463,3.2354577 C 131.10463,3.2354577 129.57132,7.1620817 128.58089,11.88755 C 127.68999,16.138135 120.39815,25.952081 120.39815,25.952081 L 141.70053,27.380652 C 141.70053,27.380652 138.1587,16.138135 136.73207,11.88755 C 135.19582,7.3103318 134.56547,3.2354577 134.56547,3.2354577 C 134.56547,3.2354577 139.32413,5.2254391 143.21756,8.080629 C 147.11101,10.93582 150.13924,14.656221 150.13924,14.656221 L 150.13924,-11.646141 C 150.13924,-11.646141 147.11101,-7.9257425 143.21756,-5.070551 C 139.32413,-2.2153611 134.56547,-0.2253797 134.56547,-0.2253797 C 134.56547,-0.2253797 136.55545,-4.9840306 139.41064,-8.8774715 C 142.26584,-12.770914 145.98624,-15.799146 145.98624,-15.799146 L 119.68386,-15.799146 z"
id="path29388"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g33057">
<path
d="M 150,23.076468 A 17.142857,17.142857 0 1 1 115.71429,23.076468 A 17.142857,17.142857 0 1 1 150,23.076468 z"
transform="translate(-2.209282e-2,8)"
id="path29366"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 116.07419,33.53461 L 150.17581,33.53461 C 150.17581,33.53461 150.66962,26.938729 148.2015,24.470608 C 145.8229,24.470608 137.6075,24.470608 137.6075,24.470608 L 137.42893,14.582607 L 133.48397,14.582607 L 127.38704,14.582607 L 127.20847,24.470608 C 127.20847,24.470608 120.0813,24.827751 116.79758,24.827751 C 115.30865,28.869394 115.53848,29.20861 115.53848,29.20861 L 116.07419,33.53461 z"
id="path31255"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</g>
<g
id="g33156">
<path
d="M 110.87688,107.22088 C 110.87688,107.22088 117.08873,112.27704 121.85596,118.77781 C 126.6232,125.27859 129.94582,133.22398 129.94582,133.22398 C 129.94582,133.22398 122.00043,129.90136 115.49965,125.13412 C 108.99888,120.36689 103.94272,114.15504 103.94272,114.15504 L 103.94272,158.07138 C 103.94272,158.07138 108.99888,151.85954 115.49965,147.0923 C 122.00043,142.32506 129.94582,139.00244 129.94582,139.00244 C 129.94582,139.00244 126.6232,146.94783 121.85596,153.44861 C 117.08873,159.94939 110.87688,165.00555 110.87688,165.00555 L 154.79322,165.00555 C 154.79322,165.00555 148.58137,159.94939 143.81414,153.44861 C 139.0469,146.94783 135.72428,139.00244 135.72428,139.00244 C 135.72428,139.00244 143.66967,142.32506 150.17045,147.0923 C 156.67122,151.85954 161.72739,158.07138 161.72739,158.07138 L 161.72739,114.15504 C 161.72739,114.15504 156.67122,120.36689 150.17045,125.13412 C 143.66967,129.90136 135.72428,133.22398 135.72428,133.22398 C 135.72428,133.22398 139.0469,125.27859 143.81414,118.77781 C 148.58137,112.27704 154.79322,107.22088 154.79322,107.22088 L 110.87688,107.22088 z"
id="path11917"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 27.240452,181.77981 L 48.865028,177.96682 C 48.865028,177.96682 41.869557,174.06615 36.045904,168.49195 C 30.22224,162.91775 25.570396,155.67004 25.570396,155.67004 C 25.570396,155.67004 33.972044,157.56248 41.201886,161.12844 C 48.431717,164.69441 54.489747,169.93388 54.489747,169.93388 L 46.863754,126.68473 C 46.863754,126.68473 42.963075,133.68021 37.388888,139.50386 C 31.814692,145.32752 24.566977,149.97937 24.566977,149.97937 C 24.566977,149.97937 26.459416,141.57772 30.025383,134.34788 C 33.591341,127.11805 38.830826,121.06002 38.830826,121.06002 L 17.20625,124.87302 L 27.240452,181.77981 z"
id="path27435"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 226.83929,121.06002 C 226.83929,121.06002 232.07877,127.11803 235.64473,134.34786 C 239.21069,141.5777 241.10313,149.97935 241.10313,149.97935 C 241.10313,149.97935 233.85542,145.32751 228.28122,139.50385 C 222.70704,133.68019 218.80637,126.68472 218.80637,126.68472 L 211.18037,169.93387 C 211.18037,169.93387 217.23839,164.6944 224.46823,161.12843 C 231.69807,157.56247 240.09972,155.67003 240.09972,155.67003 C 240.09972,155.67003 235.44787,162.91774 229.62421,168.49194 C 223.80055,174.06613 216.80508,177.9668 216.80508,177.9668 L 238.42966,181.7798 L 248.46386,124.87301 L 226.83929,121.06002 z"
id="path27433"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</g>
<path
d="M 27.463842,179.53267 L 27.613728,211.0392 C 27.613728,211.0392 80.261863,193.11098 132.91001,193.11098 C 185.55813,193.11098 238.20627,211.0392 238.20627,211.0392 L 238.20627,179.53267 C 238.20627,179.53267 185.52066,161.60445 132.83506,161.60445 C 80.149449,161.60445 27.463842,179.53267 27.463842,179.53267 z"
id="path14537"
style="fill:#f7d917;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g31151">
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,21.24618,-360.3206)"
id="path23567"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,10.96519,-378.6019)"
id="path29252"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,8.822333,-400.0304)"
id="path29254"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,15.25091,-420.0304)"
id="path29256"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,28.82233,-436.459)"
id="path29258"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,47.39376,-447.8875)"
id="path29260"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,68.10805,-446.459)"
id="path29262"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,88.82233,-443.0304)"
id="path29264"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,109.5366,-440.8875)"
id="path29266"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,242.3163,-360.3206)"
id="path29284"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,252.5973,-378.6019)"
id="path29286"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,254.7402,-400.0304)"
id="path29288"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,248.3116,-420.0304)"
id="path29290"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,234.7402,-436.459)"
id="path29292"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,216.1687,-447.8875)"
id="path29294"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,195.4544,-446.459)"
id="path29296"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,174.7402,-443.0304)"
id="path29298"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(-0.661234,0,0,0.661234,154.0259,-440.8875)"
id="path29300"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="translate(1.040326,0)"
id="g29354">
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-378.3206)"
id="path29306"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-392.6019)"
id="path29308"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-404.0304)"
id="path29312"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-414.459)"
id="path29314"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-447.8875)"
id="path29316"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-446.459)"
id="path29318"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-439.0304)"
id="path29320"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.0203056,723.05243 A 12.121831,12.121831 0 1 1 -22.223356,723.05243 A 12.121831,12.121831 0 1 1 2.0203056,723.05243 z"
transform="matrix(0.661234,0,0,0.661234,138.4742,-428.8875)"
id="path29322"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</g>
<g
id="g34257">
<path
d="M 143.57142,136.29076 A 10.357142,10.357142 0 1 1 122.85714,136.29076 A 10.357142,10.357142 0 1 1 143.57142,136.29076 z"
transform="translate(-0.457137,-2)"
id="path33378"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 143.57142,136.29076 A 10.357142,10.357142 0 1 1 122.85714,136.29076 A 10.357142,10.357142 0 1 1 143.57142,136.29076 z"
transform="translate(-108.7143,16.78571)"
id="path34253"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 143.57142,136.29076 A 10.357142,10.357142 0 1 1 122.85714,136.29076 A 10.357142,10.357142 0 1 1 143.57142,136.29076 z"
transform="translate(107.2857,16.78571)"
id="path34255"
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
id="g2038">
<rect
width="34.761723"
height="15.152546"
x="134.79076"
y="210.09613"
id="rect36472"
style="fill:#002b7f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.84141195;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 16.04278,233.11084 A 22.994652,8.5561495 0 1 1 -29.946524,233.11084 A 22.994652,8.5561495 0 1 1 16.04278,233.11084 z"
transform="matrix(-0.678154,-6.882792e-2,2.382547e-2,0.957698,195.4766,-0.830297)"
id="path37350"
style="fill:#3e8225;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 36.937037,229.28499 L 28.22758,237.99445 L 38.328875,243.82644 L 61.821799,237.53153 L 57.63484,224.22812 L 36.937037,229.28499 z"
id="path37352"
style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.08577895px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 267.40617,229.28499 L 276.11563,237.99445 L 266.01433,243.82644 L 242.52141,237.53153 L 246.70837,224.22812 L 267.40617,229.28499 z"
id="path37354"
style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.08577895px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 16.04278,233.11084 A 22.994652,8.5561495 0 1 1 -29.946524,233.11084 A 22.994652,8.5561495 0 1 1 16.04278,233.11084 z"
transform="matrix(0.678154,-6.882792e-2,-2.382547e-2,0.957698,108.8665,-0.830297)"
id="path37356"
style="fill:#3e8225;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="translate(1.069518,-3.475935)"
id="path1994"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="translate(2.406416,10.16042)"
id="path1996"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="translate(-52.40642,6.149728)"
id="path1998"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="translate(-47.05882,18.98396)"
id="path2000"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="matrix(-1,0,0,1,303.0748,-3.475943)"
id="path2020"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="matrix(-1,0,0,1,301.7379,10.16041)"
id="path2022"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="matrix(-1,0,0,1,356.5507,6.14972)"
id="path2024"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 126.20321,214.70358 A 4.2780747,4.2780747 0 1 1 117.64706,214.70358 A 4.2780747,4.2780747 0 1 1 126.20321,214.70358 z"
transform="matrix(-1,0,0,1,351.2031,18.98395)"
id="path2026"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
transform="translate(0,-2.600445e-4)"
id="g2237">
<path
d="M 238.53778,280.60328 C 241.80523,280.03582 261.51534,275.35043 265.66459,272.84312 C 262.98715,268.01464 258.18104,264.23756 261.92128,265.82521 C 263.93532,266.68013 265.52768,260.02631 259.68186,254.94045 C 242.70861,260.50708 202.00223,270.67899 150.853,270.67899 C 98.508505,270.67899 57.291321,259.97232 40.318076,254.40569 C 34.472264,259.49155 36.292899,265.27022 35.939619,267.42949 C 35.936535,267.44612 35.943256,270.15368 37.009138,272.30836 C 42.762677,278.55899 61.403257,281.6401 64.670703,282.20756 C 80.023096,284.87378 95.376119,288.90538 150.81907,288.90538 C 202.10789,288.90538 223.1854,283.2695 238.53778,280.60328 z"
id="path2159"
style="font-size:12px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.71374691;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="matrix(1.085779,0,0,1.085779,-81.34112,-69.11104)"
id="g35393">
<path
d="M 132.90625,289.65528 C 129.89694,290.17791 110.75895,296.95571 106.9375,299.26493 C 106.94085,299.27934 106.93466,299.31043 106.9375,299.32575 C 107.26287,301.31443 103.61601,310.57667 109,315.26074 C 124.63232,310.13389 168.52546,294.85544 215.63379,294.85544 C 263.84295,294.85544 303.77393,310.13389 319.40625,315.26074 C 324.79023,310.57667 321.14338,301.31443 321.46875,299.32575 C 321.47159,299.31043 321.4654,299.27934 321.46875,299.26493 C 317.64729,296.95571 298.50931,290.17791 295.5,289.65528 C 281.36048,287.1997 266.72787,278.06897 215.66504,278.06897 C 168.42815,278.06897 147.04576,287.1997 132.90625,289.65528 z"
id="path34451"
style="font-size:12px;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.57835698;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="matrix(1.384389,-0.143242,0.15642,1.267764,-86.62648,-64.7552)"
id="g35337">
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
id="path35329"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
id="path35331"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
id="path35333"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
id="path35335"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.384389,-0.143242,0.15642,1.267764,-45.03159,-76.65847)"
id="g35343">
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
id="path35345"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
id="path35347"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
id="path35349"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
id="path35351"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.378425,0.192343,-0.151629,1.268346,100.1696,-120.8592)"
id="g35353">
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
id="path35355"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
id="path35357"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
id="path35359"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
id="path35361"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.384389,0.143242,0.15642,-1.267764,54.4337,659.4577)"
id="g35373">
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
id="path35375"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
id="path35377"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
id="path35379"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
id="path35381"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
transform="matrix(1.384389,0.143242,0.15642,-1.267764,96.41226,670.4203)"
id="g35383">
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,56.86367,150.9007)"
id="path35385"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,55.52674,153.307)"
id="path35387"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 115.50802,301.56003 A 1.8716577,1.8716577 0 1 1 111.7647,301.56003 A 1.8716577,1.8716577 0 1 1 115.50802,301.56003 z"
transform="matrix(0.4996,0,0,0.4996,57.3984,154.9114)"
id="path35389"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 113.51808,303.66868 L 122.04404,300.50258 L 117.85943,302.89505 L 120.54527,302.81166 L 118.05284,303.98039 L 122.05409,304.25543 L 113.51808,303.66868 z"
id="path35391"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 80 KiB

7
build/svg/DJ.svg Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400" viewBox="0 0 15 10">
<rect width="15" height="10" id="blue_stripe" style="fill:#6ab2e7"/>
<rect width="15" height="5" y="5" id="green_stripe" style="fill:#12ad2b"/>
<path d="M 0,0 0,5 0,10 4.330127,7.5 8.660254,5 4.330127,2.5 0,0 z" id="path6904" style="fill:#fff"/>
<path d="m 2.8867514,4 0.224514,0.690983 0.7265425,0 L 3.2500227,5.118034 3.4745366,5.809017 2.8867514,5.381966 2.2989661,5.809017 2.5234801,5.118034 1.9356949,4.690983 l 0.7265425,0 L 2.8867514,4 z" id="path6929" style="fill:#f00"/>
</svg>

After

Width:  |  Height:  |  Size: 621 B

76
build/svg/DK.svg Normal file
View file

@ -0,0 +1,76 @@
<?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="370"
height="280"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="Flag_of_Denmark.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" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 140 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="370 : 140 : 1"
inkscape:persp3d-origin="185 : 93.33333333333333 : 1"
id="perspective16" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1680"
inkscape:window-height="1024"
id="namedview10"
showgrid="false"
inkscape:zoom="0.8857142857142857"
inkscape:cx="-19.35483870967738"
inkscape:cy="195.9360184193549"
inkscape:window-x="0"
inkscape:window-y="1"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<rect
width="370"
height="280"
fill="#d00c33"
id="rect4" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none"
id="rect2822"
width="40"
height="280"
x="120"
y="0" />
<rect
y="120"
x="0"
height="40"
width="370"
id="rect3596"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

934
build/svg/DM.svg Normal file
View file

@ -0,0 +1,934 @@
<?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://web.resource.org/cc/"
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="1200"
height="600"
id="svg9226"
sodipodi:version="0.32"
inkscape:version="0.45.1"
version="1.0"
sodipodi:docbase="C:\Documents and Settings\Zoran\Desktop"
sodipodi:docname="Flag_of_Dominica.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs9228" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.99083333"
inkscape:cx="618.30679"
inkscape:cy="286.12053"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1280"
inkscape:window-height="968"
inkscape:window-x="0"
inkscape:window-y="22" />
<metadata
id="metadata9231">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:#006b3f;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect10982"
width="1200"
height="600"
x="0"
y="0" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect10984"
width="1200"
height="50"
x="0"
y="325" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect11859"
width="1200"
height="50"
x="0"
y="275" />
<rect
style="fill:#fcd116;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect12734"
width="1200"
height="50"
x="0"
y="225" />
<rect
style="fill:#fcd116;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect13609"
width="50"
height="600"
x="525"
y="1.2934208e-005" />
<rect
style="fill:#000000;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect13611"
width="50"
height="600"
x="575"
y="1.2934208e-005" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-opacity:1"
id="rect14486"
width="50"
height="600"
x="625"
y="1.2934208e-005" />
<path
sodipodi:type="arc"
style="fill:#d41c30;fill-opacity:1;stroke:none;stroke-opacity:1"
id="path15361"
sodipodi:cx="600.50464"
sodipodi:cy="300.25232"
sodipodi:rx="150.37846"
sodipodi:ry="150.37846"
d="M 750.8831 300.25232 A 150.37846 150.37846 0 1 1 450.12617,300.25232 A 150.37846 150.37846 0 1 1 750.8831 300.25232 z"
transform="matrix(0.997483,0,0,0.997483,1.006676,0.503455)" />
<path
d="M 595.18996,181.59265 C 595.18996,181.37136 599.99995,167.87384 599.99995,167.87384 L 604.37264,181.37136 C 604.37264,181.37136 619.021,181.81394 619.021,181.59265 C 619.021,181.37136 607.43345,190.44366 607.43345,190.44366 C 607.43345,190.44366 612.89912,205.9328 612.68074,205.49022 C 612.46208,205.04764 599.99995,196.19663 599.99995,196.19663 C 599.99995,196.19663 587.31943,205.04764 587.53807,205.04764 C 587.75671,205.04764 592.3478,190.44366 592.3478,190.44366 L 580.979,181.81394 L 595.18996,181.59265 z "
id="path601"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 604.81004,418.74918 C 604.81004,418.97047 600.00005,432.46799 600.00005,432.46799 L 595.62736,418.97047 C 595.62736,418.97047 580.979,418.52789 580.979,418.74918 C 580.979,418.97047 592.56655,409.89817 592.56655,409.89817 C 592.56655,409.89817 587.10088,394.40903 587.31926,394.85161 C 587.53792,395.29419 600.00005,404.1452 600.00005,404.1452 C 600.00005,404.1452 612.68057,395.29419 612.46193,395.29419 C 612.24329,395.29419 607.6522,409.89817 607.6522,409.89817 L 619.021,418.52789 L 604.81004,418.74918 z "
id="path16237"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 669.71606,215.45816 C 669.71606,215.67945 664.90607,229.17697 664.90607,229.17697 L 660.53338,215.67945 C 660.53338,215.67945 645.88502,215.23687 645.88502,215.45816 C 645.88502,215.67945 657.47257,206.60715 657.47257,206.60715 C 657.47257,206.60715 652.0069,191.11801 652.22528,191.56059 C 652.44394,192.00317 664.90607,200.85418 664.90607,200.85418 C 664.90607,200.85418 677.58659,192.00317 677.36795,192.00317 C 677.14931,192.00317 672.55822,206.60715 672.55822,206.60715 L 683.92702,215.23687 L 669.71606,215.45816 z "
id="path16244"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 711.81231,338.50867 C 711.81231,338.72996 707.00232,352.22748 707.00232,352.22748 L 702.62963,338.72996 C 702.62963,338.72996 687.98127,338.28738 687.98127,338.50867 C 687.98127,338.72996 699.56882,329.65766 699.56882,329.65766 C 699.56882,329.65766 694.10315,314.16852 694.32153,314.6111 C 694.54019,315.05368 707.00232,323.90469 707.00232,323.90469 C 707.00232,323.90469 719.68284,315.05368 719.4642,315.05368 C 719.24556,315.05368 714.65447,329.65766 714.65447,329.65766 L 726.02327,338.28738 L 711.81231,338.50867 z "
id="path16246"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 497.78904,342.02509 C 497.78904,342.24638 492.97905,355.7439 492.97905,355.7439 L 488.60636,342.24638 C 488.60636,342.24638 473.958,341.8038 473.958,342.02509 C 473.958,342.24638 485.54555,333.17408 485.54555,333.17408 C 485.54555,333.17408 480.07988,317.68494 480.29826,318.12752 C 480.51692,318.5701 492.97905,327.42111 492.97905,327.42111 C 492.97905,327.42111 505.65957,318.5701 505.44093,318.5701 C 505.22229,318.5701 500.6312,333.17408 500.6312,333.17408 L 512,341.8038 L 497.78904,342.02509 z "
id="path16248"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 536.64606,216.89725 C 536.64606,217.11854 531.83607,230.61606 531.83607,230.61606 L 527.46338,217.11854 C 527.46338,217.11854 512.81502,216.67596 512.81502,216.89725 C 512.81502,217.11854 524.40257,208.04624 524.40257,208.04624 C 524.40257,208.04624 518.9369,192.5571 519.15528,192.99968 C 519.37394,193.44226 531.83607,202.29327 531.83607,202.29327 C 531.83607,202.29327 544.51659,193.44226 544.29795,193.44226 C 544.07931,193.44226 539.48822,208.04624 539.48822,208.04624 L 550.85702,216.67596 L 536.64606,216.89725 z "
id="path16252"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 487.3174,261.86347 C 487.3174,261.64218 492.12739,248.14466 492.12739,248.14466 L 496.50008,261.64218 C 496.50008,261.64218 511.14844,262.08476 511.14844,261.86347 C 511.14844,261.64218 499.56089,270.71448 499.56089,270.71448 C 499.56089,270.71448 505.02656,286.20362 504.80818,285.76104 C 504.58952,285.31846 492.12739,276.46745 492.12739,276.46745 C 492.12739,276.46745 479.44687,285.31846 479.66551,285.31846 C 479.88415,285.31846 484.47524,270.71448 484.47524,270.71448 L 473.10644,262.08476 L 487.3174,261.86347 z "
id="path16254"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 529.14168,384.68572 C 529.14168,384.46443 533.95167,370.96691 533.95167,370.96691 L 538.32436,384.46443 C 538.32436,384.46443 552.97272,384.90701 552.97272,384.68572 C 552.97272,384.46443 541.38517,393.53673 541.38517,393.53673 C 541.38517,393.53673 546.85084,409.02587 546.63246,408.58329 C 546.4138,408.14071 533.95167,399.2897 533.95167,399.2897 C 533.95167,399.2897 521.27115,408.14071 521.48979,408.14071 C 521.70843,408.14071 526.29952,393.53673 526.29952,393.53673 L 514.93072,384.90701 L 529.14168,384.68572 z "
id="path16256"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 701.43052,258.58508 C 701.43052,258.36379 706.24051,244.86627 706.24051,244.86627 L 710.6132,258.36379 C 710.6132,258.36379 725.26156,258.80637 725.26156,258.58508 C 725.26156,258.36379 713.67401,267.43609 713.67401,267.43609 C 713.67401,267.43609 719.13968,282.92523 718.9213,282.48265 C 718.70264,282.04007 706.24051,273.18906 706.24051,273.18906 C 706.24051,273.18906 693.55999,282.04007 693.77863,282.04007 C 693.99727,282.04007 698.58836,267.43609 698.58836,267.43609 L 687.21956,258.80637 L 701.43052,258.58508 z "
id="path16258"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="M 662.45045,383.52994 C 662.45045,383.30865 667.26044,369.81113 667.26044,369.81113 L 671.63313,383.30865 C 671.63313,383.30865 686.28149,383.75123 686.28149,383.52994 C 686.28149,383.30865 674.69394,392.38095 674.69394,392.38095 C 674.69394,392.38095 680.15961,407.87009 679.94123,407.42751 C 679.72257,406.98493 667.26044,398.13392 667.26044,398.13392 C 667.26044,398.13392 654.57992,406.98493 654.79856,406.98493 C 655.0172,406.98493 659.60829,392.38095 659.60829,392.38095 L 648.23949,383.75123 L 662.45045,383.52994 z "
id="path16260"
style="font-size:12px;fill:#006b3f;fill-opacity:1;fill-rule:evenodd;stroke-width:1;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" />
<rect
y="267.31921"
x="499.07614"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect600"
height="0" />
<rect
y="358.22455"
x="628.20496"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect628"
height="0" />
<rect
y="502.50558"
x="590.57172"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect634"
height="0" />
<rect
y="502.50558"
x="410.0369"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect640"
height="0" />
<rect
y="354.50027"
x="377.06885"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect646"
height="0" />
<rect
y="-86.095032"
x="-772.57104"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect652"
height="0"
transform="scale(-1,-1)" />
<rect
y="-227.08905"
x="-824.4071"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect599"
height="0"
transform="scale(-1,-1)" />
<rect
y="-330.24283"
x="-695.85376"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect607"
height="0"
transform="scale(-1,-1)" />
<rect
y="-227.08905"
x="-575.07568"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect613"
height="0"
transform="scale(-1,-1)" />
<rect
y="-88.168472"
x="-619.65466"
width="0.71601367"
style="font-size:12px;fill:#009543;fill-rule:evenodd;stroke-width:1pt"
id="rect619"
height="0"
transform="scale(-1,-1)" />
<g
id="g13518"
transform="matrix(1.260717,0,0,1.260717,-31.14955,-15.98474)">
<g
id="g1112"
transform="translate(7.403947,348.7255)"
style="font-size:12px">
<g
id="g1014"
transform="matrix(0.163503,-1.627543e-2,1.182242e-2,0.184363,429.835,-215.6278)">
<ellipse
cx="680.20569"
cy="586.12573"
id="path1011"
rx="30.804932"
ry="189.82486"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(1.405124,-5.812161e-3,8.166948e-3,0.999983,-534.2869,263.7234)"
sodipodi:cx="680.20569"
sodipodi:cy="586.12573"
sodipodi:rx="30.804932"
sodipodi:ry="189.82486" />
<ellipse
cx="680.20569"
cy="586.12573"
id="path1012"
rx="30.804932"
ry="189.82486"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(1.486152,-5.812161e-3,8.637901e-3,0.999983,-547.2176,267.0538)"
sodipodi:cx="680.20569"
sodipodi:cy="586.12573"
sodipodi:rx="30.804932"
sodipodi:ry="189.82486" />
<ellipse
cx="680.20569"
cy="586.12573"
id="path1013"
rx="30.804932"
ry="189.82486"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(1.18905,-6.423977e-3,6.911065e-3,1.105246,-364.9289,214.0982)"
sodipodi:cx="680.20569"
sodipodi:cy="586.12573"
sodipodi:rx="30.804932"
sodipodi:ry="189.82486" />
</g>
<g
id="g1105"
transform="translate(72.86526,-9.797035)">
<path
d="M 238.342,971.79 C 268.314,970.125 254.993,955.138 269.979,946.813 C 284.965,938.487 306.612,943.483 313.272,953.473 C 319.933,963.464 314.938,973.455 323.263,973.455 C 331.589,973.455 557.819,960.78 566.144,969.106 C 574.47,977.431 576.135,994.083 567.809,1000.74 C 559.484,1007.4 273.309,1015.08 263.319,1008.42 C 253.328,1001.76 238.342,973.455 238.342,971.79 z "
id="path1010"
style="fill:#9c4a00;fill-rule:evenodd;stroke:#000000;stroke-width:2.50539994;fill-opacity:1"
transform="matrix(0.202443,3.486294e-3,-3.936657e-3,0.21385,340.8638,-247.3115)" />
<path
d="M 529.59,405.459 C 529.59,445.442 575.152,433.338 576.4,466.708 C 575.676,502.116 499.694,470.175 497.765,405.459 C 499.694,340.743 572.872,307.53 574.47,344.448 C 575.716,375.134 529.59,365.476 529.59,405.459 z "
id="path1506"
style="fill:#fcd116;fill-rule:evenodd;stroke:#000000;stroke-width:3.85272002;fill-opacity:1"
transform="matrix(0.147992,1.951432e-3,-2.754835e-3,0.114586,340.4216,-81.69088)" />
<path
d="M 529.59,405.459 C 529.59,445.442 575.152,433.338 576.4,466.708 C 575.676,502.116 499.694,470.175 497.765,405.459 C 499.694,340.743 572.872,307.53 574.47,344.448 C 575.716,375.134 529.59,365.476 529.59,405.459 z "
id="path1507"
style="fill:#fcd116;fill-rule:evenodd;stroke:#000000;stroke-width:3.85272002;fill-opacity:1"
transform="matrix(0.147992,1.951432e-3,-2.754835e-3,0.114586,344.4198,-81.63816)" />
<path
d="M 529.59,405.459 C 529.59,445.442 575.152,433.338 576.4,466.708 C 575.676,502.116 499.694,470.175 497.765,405.459 C 499.694,340.743 572.872,307.53 574.47,344.448 C 575.716,375.134 529.59,365.476 529.59,405.459 z "
id="path1508"
style="fill:#fcd116;fill-rule:evenodd;stroke:#000000;stroke-width:3.85272002;fill-opacity:1"
transform="matrix(0.147992,1.951432e-3,-2.754835e-3,0.114586,348.7088,-81.79968)" />
<path
d="M 529.59,405.459 C 529.59,445.442 575.152,433.338 576.4,466.708 C 575.676,502.116 499.694,470.175 497.765,405.459 C 499.694,340.743 572.872,307.53 574.47,344.448 C 575.716,375.134 529.59,365.476 529.59,405.459 z "
id="path1509"
style="fill:#fcd116;fill-rule:evenodd;stroke:#000000;stroke-width:3.85272002;fill-opacity:1"
transform="matrix(0.147992,1.951432e-3,-2.754835e-3,0.114586,352.7069,-81.74693)" />
<ellipse
cx="478.38174"
cy="-41.085754"
id="path1091"
rx="3.533875"
ry="3.402977"
style="fill:#9c4a00;fill-rule:evenodd;stroke:#000000;stroke-width:0.39908299;fill-opacity:1"
transform="matrix(1.094549,1.648336e-2,-2.428555e-2,1.153662,-75.5714,4.677567)"
sodipodi:cx="478.38174"
sodipodi:cy="-41.085754"
sodipodi:rx="3.533875"
sodipodi:ry="3.402977" />
</g>
<g
id="g1048"
transform="matrix(0.994885,-0.101022,0.101022,0.994885,66.68384,66.33841)">
<ellipse
cx="427.1059"
cy="904.99817"
id="path1049"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.166193,-8.072795e-3,1.687537e-3,0.315205,369.7997,-361.6541)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1050"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.166193,-8.072795e-3,1.687537e-3,0.315205,364.0408,-362.7012)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1052"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.166193,-8.072776e-3,1.687537e-3,0.315204,360.6378,-370.5537)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1053"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.905569e-3,1.623691e-3,0.347721,369.2988,-399.3517)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1054"
rx="20.814133"
ry="24.144409"
style="fill:#009543;fill-rule:evenodd;stroke:#000000;stroke-width:2.5"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,377.4103,-379.0724)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1055"
rx="20.814133"
ry="24.144409"
style="fill:#009543;fill-rule:evenodd;stroke:#000000;stroke-width:2.5"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,373.222,-382.2137)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1056"
rx="20.814133"
ry="24.144409"
style="fill:#009543;fill-rule:evenodd;stroke:#000000;stroke-width:2.5"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,367.9866,-386.6638)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1057"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,363.0129,-389.5432)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
</g>
<path
d="M 173.174,346.347 C 173.174,346.347 118.976,411.24 151.922,555.162 C 185.88,699.752 330.887,744.945 330.887,744.945 C 330.887,744.945 357.383,697.522 332.613,580.904 C 292.65,411.061 216.467,346.347 216.467,346.347 L 173.174,346.347 z "
id="path851"
style="fill:#9461c9;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.176889,3.219125e-2,-3.142231e-2,0.182359,461.7877,-208.6117)" />
<g
id="g1026"
transform="matrix(0.996961,7.791016e-2,-7.791016e-2,0.996961,60.53158,-11.75977)">
<ellipse
cx="427.1059"
cy="904.99817"
id="path1025"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.166193,-8.072795e-3,1.687537e-3,0.315205,369.7997,-361.6541)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1017"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.166193,-8.072795e-3,1.687537e-3,0.315205,364.0408,-362.7012)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1016"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.166193,-8.072776e-3,1.687537e-3,0.315204,360.6378,-370.5537)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1018"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.905569e-3,1.623691e-3,0.347721,369.2988,-399.3517)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1020"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,377.4103,-379.0724)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1019"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,373.222,-382.2137)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path1005"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,367.9866,-386.6638)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
<ellipse
cx="427.1059"
cy="904.99817"
id="path988"
rx="20.814133"
ry="24.144409"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.159905,-8.350374e-3,1.623691e-3,0.326043,363.0129,-389.5432)"
sodipodi:cx="427.1059"
sodipodi:cy="904.99817"
sodipodi:rx="20.814133"
sodipodi:ry="24.144409" />
</g>
<ellipse
cx="624.42383"
cy="606.1073"
id="path985"
rx="58.279541"
ry="186.49458"
style="fill:#d41c30;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
transform="matrix(0.156948,-6.062813e-2,6.364226e-2,0.148405,369.6128,-145.0546)"
sodipodi:cx="624.42383"
sodipodi:cy="606.1073"
sodipodi:rx="58.279541"
sodipodi:ry="186.49458" />
<g
id="g1072"
transform="matrix(0.999842,1.780211e-2,-1.780211e-2,0.999842,-34.81445,-4.628464)">
<ellipse
cx="218.13208"
cy="356.75403"
id="path872"
rx="10.823341"
ry="12.90477"
style="fill:#009543;fill-rule:evenodd;stroke:#000000;stroke-width:1.46349001"
transform="matrix(0.395296,0,0,0.292704,445.0725,-230.5263)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path888"
rx="10.823341"
ry="12.90477"
style="fill:#009543;fill-rule:evenodd;stroke:#000000;stroke-width:1.54622996"
transform="matrix(0.35412,0,0,0.292704,457.1741,-235.9224)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path887"
rx="10.823341"
ry="12.90477"
style="fill:#009543;fill-rule:evenodd;stroke:#000000;stroke-width:1.54622996"
transform="matrix(0.35412,0,0,0.292704,452.0043,-235.9224)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path879"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.55999005;fill-opacity:1"
transform="matrix(0.370591,0,0,0.274783,449.4811,-233.4606)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path878"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.55999005;fill-opacity:1"
transform="matrix(0.370591,0,0,0.274783,448.9463,-237.9316)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path867"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.54622996;fill-opacity:1"
transform="matrix(0.35412,0,0,0.292704,447.0128,-238.8517)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path877"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.56226003;fill-opacity:1"
transform="matrix(0.35412,0,0,0.28673,448.0824,-241.577)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path876"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.46349001;fill-opacity:1"
transform="matrix(0.395296,0,0,0.292704,432.772,-243.4769)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path874"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.55999005;fill-opacity:1"
transform="matrix(0.370591,0,0,0.274783,445.9157,-243.4819)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path873"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.56226003;fill-opacity:1"
transform="matrix(0.35412,0,0,0.28673,444.1605,-246.9731)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path871"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.54622996;fill-opacity:1"
transform="matrix(0.35412,0,0,0.292704,436.1385,-243.1686)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path1070"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.56226003;fill-opacity:1"
transform="matrix(0.35412,0,0,0.28673,437.4203,-243.8784)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
<ellipse
cx="218.13208"
cy="356.75403"
id="path869"
rx="10.823341"
ry="12.90477"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.56226003;fill-opacity:1"
transform="matrix(0.35412,0,0,0.28673,438.9908,-247.0197)"
sodipodi:cx="218.13208"
sodipodi:cy="356.75403"
sodipodi:rx="10.823341"
sodipodi:ry="12.90477" />
</g>
<g
id="g946"
transform="matrix(0.179609,-4.521057e-3,4.192619e-3,0.185123,420.9863,-216.8024)">
<ellipse
cx="528.67889"
cy="564.479"
id="path889"
rx="67.437759"
ry="205.6436"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.54485989;fill-opacity:1"
transform="matrix(0.97574,-0.307929,0.363045,0.874481,-245.8061,324.3975)"
sodipodi:cx="528.67889"
sodipodi:cy="564.479"
sodipodi:rx="67.437759"
sodipodi:ry="205.6436" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path894"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.917882,-0.396852,0.396852,0.917882,-210.4826,304.4884)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<path
d="M 139.87,643.988 C 139.87,701.665 121.115,730.159 105.319,754.303 C 112.836,721.833 118.224,701.666 118.224,643.989 C 118.224,586.312 147.803,558.652 158.603,542 C 154.417,558.652 139.87,586.312 139.87,643.988 z "
id="path893"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.53268003;fill-opacity:1"
transform="matrix(1.882818,-0.455977,0.953423,1.182187,-352.2551,-10.01956)" />
<path
d="M 139.87,643.988 C 139.87,701.665 121.115,730.159 105.319,754.303 C 112.836,721.833 118.224,701.666 118.224,643.989 C 118.224,586.312 147.803,558.652 158.603,542 C 154.417,558.652 139.87,586.312 139.87,643.988 z "
id="path892"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.53268003;fill-opacity:1"
transform="matrix(1.882818,-0.455977,0.953423,1.182187,-348.4234,44.05751)" />
<path
d="M 139.87,643.988 C 139.87,701.665 121.115,730.159 105.319,754.303 C 112.836,721.833 118.224,701.666 118.224,643.989 C 118.224,586.312 147.803,558.652 158.603,542 C 154.417,558.652 139.87,586.312 139.87,643.988 z "
id="path891"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.53268003;fill-opacity:1"
transform="matrix(1.87302,-0.494682,0.977582,1.162287,-361.9242,105.7834)" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path895"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.38874996;fill-opacity:1"
transform="matrix(1.810478,-0.400515,0.699068,1.635286,-915.63,-221.0144)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path896"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.63984001;fill-opacity:1"
transform="matrix(1.625675,-0.230684,0.541575,1.352842,-739.4891,-91.77486)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path897"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:1.63984001;fill-opacity:1"
transform="matrix(1.630439,-0.197194,0.512514,1.363529,-750.6206,-91.82552)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path898"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.09662008;fill-opacity:1"
transform="matrix(1.31445,-0.200604,0.468889,1.010117,-531.0563,47.56802)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path899"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.09662008;fill-opacity:1"
transform="matrix(1.325781,-0.130444,0.403422,1.032739,-517.8685,12.21143)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<path
d="M 145.698,569.474 C 145.698,603.48 138.986,631.084 130.713,631.084 C 122.441,631.084 115.727,603.48 115.727,569.474"
id="path945"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.08615994;fill-opacity:1"
transform="matrix(1.025425,-0.492771,0.464381,1.177331,12.76656,-14.519)" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path902"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.09662008;fill-opacity:1"
transform="matrix(1.325781,-0.130444,0.403422,1.032739,-519.5336,-34.41226)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<ellipse
cx="528.67883"
cy="646.07043"
id="path903"
rx="13.321075"
ry="40.795685"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.09662008;fill-opacity:1"
transform="matrix(1.328753,-0.105107,0.379547,1.040012,-533.9751,-40.12073)"
sodipodi:cx="528.67883"
sodipodi:cy="646.07043"
sodipodi:rx="13.321075"
sodipodi:ry="40.795685" />
<path
d="M 145.698,569.474 C 145.698,603.48 138.986,631.084 130.713,631.084 C 122.441,631.084 115.727,603.48 115.727,569.474"
id="path909"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.8796699;fill-opacity:1"
transform="matrix(0.672197,-0.471822,0.458936,0.799103,39.48589,143.278)" />
<path
d="M 145.698,569.474 C 145.698,603.48 138.986,631.084 130.713,631.084 C 122.441,631.084 115.727,603.48 115.727,569.474"
id="path906"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.8796699;fill-opacity:1"
transform="matrix(0.672197,-0.471822,0.458936,0.799103,51.14178,125.7941)" />
<path
d="M 145.698,569.474 C 145.698,603.48 138.986,631.084 130.713,631.084 C 122.441,631.084 115.727,603.48 115.727,569.474"
id="path907"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.08615994;fill-opacity:1"
transform="matrix(0.937396,-0.644677,0.639998,1.091861,-40.19822,-10.74352)" />
<path
d="M 145.698,569.474 C 145.698,603.48 138.986,631.084 130.713,631.084 C 122.441,631.084 115.727,603.48 115.727,569.474"
id="path908"
style="fill:#006b3f;fill-rule:evenodd;stroke:#000000;stroke-width:2.74245;fill-opacity:1"
transform="matrix(0.672197,-0.520221,0.458936,0.881076,68.62559,71.17856)" />
</g>
<g
id="g919"
transform="matrix(1.101444,0.275869,-0.265588,0.974374,-85.41525,-157.9016)">
<path
d="M 276.266,345.409 C 263.988,354.583 276.675,370.553 288.288,376.088 C 301.348,383.76 374.891,434.273 424.605,388.087 C 383.81,388.92 305.942,324.904 276.266,345.409 z "
id="path875"
style="fill:#9461c9;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.134413,-3.04485e-2,4.851113e-2,0.216811,448.7474,-184.9145)" />
<path
d="M 276.266,345.409 C 263.988,354.583 276.675,370.553 288.288,376.088 C 301.348,383.76 374.891,434.273 424.605,388.087 C 383.81,388.92 305.942,324.904 276.266,345.409 z "
id="path870"
style="fill:#9461c9;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.134413,-3.04485e-2,4.851113e-2,0.216811,446.2043,-190.218)" />
<path
d="M 276.266,345.409 C 263.988,354.583 276.675,370.553 288.288,376.088 C 301.348,383.76 374.891,434.273 424.605,388.087 C 383.81,388.92 305.942,324.904 276.266,345.409 z "
id="path868"
style="fill:#9461c9;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.134413,-3.04485e-2,4.851113e-2,0.216811,443.3872,-195.1923)" />
<path
d="M 276.266,345.409 C 263.988,354.583 276.675,370.553 288.288,376.088 C 301.348,383.76 374.891,434.273 424.605,388.087 C 383.81,388.92 305.942,324.904 276.266,345.409 z "
id="path866"
style="fill:#9461c9;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.134413,-3.04485e-2,4.851113e-2,0.216811,438.6063,-200.4414)" />
</g>
<g
id="g907"
transform="matrix(0.999842,1.780211e-2,-1.780211e-2,0.999842,12.04015,10.60534)">
<path
d="M 211.167,247.301 C 232.94,235.236 267.785,237.552 290.901,258.466 C 310.261,275.409 336.208,333.66 361.223,351.3 C 340.996,351.319 329.925,345.531 318.982,336.12 C 290.215,351.562 280.855,352.844 255.092,351.752 C 219.211,350.418 192.633,334.098 186.914,311.148 C 180.748,289.344 191.839,258.65 211.167,247.301 z "
id="path852"
style="fill:#9461c9;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.208828,-4.091126e-2,4.730467e-2,0.180604,407.8048,-213.6359)" />
<ellipse
cx="287.23499"
cy="323.03516"
id="path1051"
rx="14.15361"
ry="14.98616"
style="fill:#d41c30;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.5"
transform="matrix(0.24521,0,0,0.134333,401.8211,-215.1804)"
sodipodi:cx="287.23499"
sodipodi:cy="323.03516"
sodipodi:rx="14.15361"
sodipodi:ry="14.98616" />
<ellipse
cx="204.57761"
cy="348.26199"
id="path1062"
rx="23.254143"
ry="15.895233"
style="fill:#fcd116;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;fill-opacity:1"
transform="matrix(0.19364,-7.598685e-2,6.759024e-2,0.17273,398.6623,-208.0622)"
sodipodi:cx="204.57761"
sodipodi:cy="348.26199"
sodipodi:rx="23.254143"
sodipodi:ry="15.895233" />
<ellipse
cx="283.90472"
cy="333.85846"
id="path1059"
rx="5.8279572"
ry="5.8279419"
style="fill-rule:evenodd;stroke-width:1pt"
transform="matrix(0.214119,0,0,0.18518,411.2866,-233.7407)"
sodipodi:cx="283.90472"
sodipodi:cy="333.85846"
sodipodi:rx="5.8279572"
sodipodi:ry="5.8279419" />
<path
d="M 516.796,260.294 C 521.221,278.401 510.122,303.377 483.663,312.903 C 456.888,326.076 437.584,354.734 428.022,400.92 C 380.778,297.65 404.915,252.645 448.622,240.574 C 485.999,226.211 509.042,227.203 516.796,260.294 z "
id="path1061"
style="fill:#fcd116;fill-rule:evenodd;stroke:#000000;stroke-width:6.55976009;fill-opacity:1"
transform="matrix(9.228922e-2,8.874689e-4,-3.397048e-3,8.481727e-2,417.8523,-191.4926)" />
<ellipse
cx="198.98488"
cy="362.39093"
id="path1113"
rx="4.709702"
ry="4.709702"
style="fill-rule:evenodd;stroke-width:1pt"
transform="matrix(0.186968,-1.313064e-2,1.398806e-2,0.19143,418.6864,-234.9767)"
sodipodi:cx="198.98488"
sodipodi:cy="362.39093"
sodipodi:rx="4.709702"
sodipodi:ry="4.709702" />
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 45 KiB

1274
build/svg/DO.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 115 KiB

6
build/svg/DYBJ.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1000" viewBox="0 0 15 10">
<rect width="15" height="10" fill="#fcd116" id="Yellow"/>
<rect width="15" height="5" y="5" fill="#e8112d" id="Red"/>
<rect width="6" height="10" fill="#008751" id="Green"/>
</svg>

After

Width:  |  Height:  |  Size: 328 B

19
build/svg/DZ.svg Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="-30 -20 60 40">
<desc>Flag of Algeria</desc>
<rect fill="#fff" x="-30" y="-20" width="60" height="40"/>
<rect fill="#006233" x="-30" y="-20" width="30" height="40"/>
<g fill="#d21034">
<!-- sqrt(75) --><path d="M 8.66025403784438646763723170752936183471405,5 a 10,10 0 1,1 0,-10 a 8,8 0 1,0 0,10"/>
<!-- cos(Pi/5) --><g transform="scale(5, 5) translate(0.809017)">
<g id="cone">
<polygon id="triangle" points="0,0 -1,0 -1,0.5" transform="translate(1) rotate(18)"/>
<use xlink:href="#triangle" transform="scale(1, -1)"/>
</g>
<use xlink:href="#cone" transform="rotate(72)"/>
<use xlink:href="#cone" transform="rotate(-72)"/>
<use xlink:href="#cone" transform="rotate(144)"/>
<use xlink:href="#cone" transform="rotate(-144)"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 915 B

3036
build/svg/EA.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 167 KiB

18208
build/svg/EC.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 764 KiB

6
build/svg/EE.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="990" height="630">
<rect id="blue" width="990" height="630" fill="#4891d9"/>
<rect id="black" width="990" height="420" y="210" fill="#000"/>
<rect id="white" width="990" height="210" y="420" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 302 B

276
build/svg/EG.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 50 KiB

51
build/svg/EH.svg Normal file
View file

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="799.99988"
height="400"
id="svg607">
<defs
id="defs609"/>
<rect
width="800"
height="133.33328"
id="rect611"
style="fill:#000"/>
<rect
width="800"
height="133.33328"
y="266.66663"
id="rect612"
style="fill:#008000"/>
<rect
width="800"
height="133.33328"
y="133.3333"
id="rect643"
style="fill:#fff"/>
<path
d="M 0,0 L 266.66659,200.48259 L 0,400 L 0,0 L 0,0 L 0,0 L 0,0 z"
id="path615"
style="fill:#cc0000"/>
<circle
cx="120"
cy="120"
r="60"
transform="matrix(0.8862433,0,0,0.8862433,293.65073,93.650803)"
id="circle1456"
style="fill:#cc0000"/>
<circle
cx="120"
cy="120"
r="60"
transform="matrix(0.8862433,0,0,0.8862433,313.96816,93.650803)"
id="circle3256"
style="fill:#fff"/>
<path
d="M 385.68392,232.29387 L 408.42569,216.03689 L 430.98964,232.53968 L 422.55595,205.8873 L 445.22369,189.52732 L 417.26961,189.31224 L 408.71507,162.69843 L 399.8722,189.21786 L 371.91746,189.12962 L 394.40638,205.73459 L 385.68392,232.29387 z"
id="path3258"
style="fill:#cc0000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

44
build/svg/ER.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.3 KiB

631
build/svg/ES.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 230 KiB

15
build/svg/ET.svg Normal file
View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600">
<rect fill="#da121a" height="600" width="1200"/>
<rect fill="#fcdd09" height="400" width="1200"/>
<rect fill="#078930" height="200" width="1200"/>
<circle fill="#0f47af" cx="600" cy="300" r="200"/>
<path
d="m 447.83102,249.93534 116.24678,0 26.28382,-80.89331 7.00974,21.57379 -38.19586,117.5548 -11.342,-8.24046 11.91202,-36.66148 -93.56274,0 -18.35176,-13.33334 m 58.1234,178.8854 35.9222,-110.55724 -68.81196,-49.99482 22.68402,0 99.9981,72.65286 -11.342,8.24044 -31.18614,-22.65804 -28.9125,88.98348 -18.35172,13.33332 m 188.0912,0 -94.0456,-68.32814 -68.81196,49.99482 7.00976,-21.57378 99.99806,-72.65286 4.33226,13.33332 -31.18612,22.65804 75.69388,54.99482 7.00972,21.57378 m 58.1234,-178.8854 -94.0456,68.32816 26.2838,80.8933 -18.35174,-13.33332 -38.19586,-117.5548 14.01948,0 11.91206,36.66148 75.69384,-54.99482 22.68402,0 m -152.169,-110.55724 35.92224,110.55724 85.05624,0 -18.35176,13.33334 -123.6044,0 4.33224,-13.33334 38.54818,0 -28.9125,-88.98346 7.00976,-21.57378 z"
id="path12"
style="fill:#fcdd09" />
<path
d="m 600.00028,373.33298 0,86.66664 m -69.7441,-137.33872 -82.4249,26.78146 M 556.89606,240.67174 505.95468,170.55697 m 137.14984,70.11477 50.94138,-70.11477 m -24.3015,152.10393 82.4249,26.78146 -82.4249,-26.78146 z"
id="path14"
style="stroke:#fcdd09;stroke-width:6.66666508" />
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

4
build/svg/EU.svg Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" standalone="no"?><!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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="810" height="540"><desc>European flag</desc>
<defs><g id="s"><g id="c"><path id="t" d="M0,0v1h0.5z" transform="translate(0,-1)rotate(18)"/><use xlink:href="#t" transform="scale(-1,1)"/></g><g id="a"><use xlink:href="#c" transform="rotate(72)"/><use xlink:href="#c" transform="rotate(144)"/></g><use xlink:href="#a" transform="scale(-1,1)"/></g></defs>
<rect fill="#039" width="810" height="540"/><g fill="#fc0" transform="scale(30)translate(13.5,9)"><use xlink:href="#s" y="-6"/><use xlink:href="#s" y="6"/><g id="l"><use xlink:href="#s" x="-6"/><use xlink:href="#s" transform="rotate(150)translate(0,6)rotate(66)"/><use xlink:href="#s" transform="rotate(120)translate(0,6)rotate(24)"/><use xlink:href="#s" transform="rotate(60)translate(0,6)rotate(12)"/><use xlink:href="#s" transform="rotate(30)translate(0,6)rotate(42)"/></g><use xlink:href="#l" transform="scale(-1,1)"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

6
build/svg/FI.svg Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1800" height="1100">
<rect width="1800" height="1100" fill="#fff"/>
<rect width="1800" height="300" y="400" fill="#003580"/>
<rect width="300" height="1100" x="500" fill="#003580"/>
</svg>

After

Width:  |  Height:  |  Size: 275 B

721
build/svg/FJ.svg Normal file
View file

@ -0,0 +1,721 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="1000"
height="500"
id="svg556">
<defs
id="defs558" />
<path
d="M -7.022551e-16,0.0002244 L -7.022551e-16,500 L 1000,500 L 1000,0.0002244 L -7.022551e-16,0.0002244 z"
id="path688"
style="font-size:12px;fill:#51b5e0;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 656.51333,124.93372 L 656.51333,248.82817 C 659.02622,325.23498 697.39546,352.59278 750.94598,375.06628 C 812.31013,347.94373 843.48667,314.66808 843.48667,248.82817 L 843.48667,124.93372 L 656.51333,124.93372 z"
id="path5001"
style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 656.48311,246.72965 C 656.48311,246.72965 656.67517,262.67947 660.89151,282.72965 L 839.57323,282.62921 C 843.55734,264.77141 844.01711,246.72965 844.01711,246.72965 L 656.48311,246.72965 z"
id="path693"
style="font-size:12px;fill:#d21034;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 732,184.53592 L 732.05746,365.64563 C 740.90061,370.04595 752.18166,375.08967 752.18166,375.08967 C 752.18166,375.08967 759.71204,370.21029 768,366.06693 L 767.94254,184.53592 L 732,184.53592 z"
id="path694"
style="font-size:12px;fill:#d21034;fill-rule:evenodd;stroke-width:1pt" />
<rect
width="499.99988"
height="249.99988"
x="5.5734421e-18"
y="0.00017231323"
id="rect962"
style="font-size:12px;fill:#002868;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 0,0.000351 L 0,27.951173 L 444.09821,250.00025 L 499.99986,250.00025 L 499.99986,222.04943 L 55.901651,0.000351 L 0,0.000351 z"
id="path5259"
style="font-size:12px;fill:#ffffff;stroke-width:1pt" />
<path
d="M 499.99986,0.000351 L 499.99986,27.950756 L 55.901651,250.00025 L 0,250.00025 L 0,222.0486 L 444.09821,0.000351 L 499.99986,0.000351 z"
id="path146"
style="font-size:12px;fill:#ffffff;stroke-width:1pt" />
<path
d="M 208.33327,0.000351 L 208.33327,250.00025 L 291.66658,250.00025 L 291.66658,0.000351 L 208.33327,0.000351 z"
id="path5255"
style="font-size:12px;fill:#ffffff;stroke-width:1pt" />
<path
d="M 0,83.333651 L 0,166.66695 L 499.99986,166.66695 L 499.99986,83.333651 L 0,83.333651 z"
id="path136"
style="font-size:12px;fill:#ffffff;stroke-width:1pt" />
<path
d="M 0,100.00031 L 0,150.00029 L 499.99986,150.00029 L 499.99986,100.00031 L 0,100.00031 z"
id="path5243"
style="font-size:12px;fill:#ce1126;fill-opacity:1;stroke-width:1pt" />
<path
d="M 224.99994,0.000351 L 224.99994,250.00025 L 274.99992,250.00025 L 274.99992,0.000351 L 224.99994,0.000351 z"
id="path141"
style="font-size:12px;fill:#ce1126;fill-opacity:1;stroke-width:1pt" />
<path
d="M 0,250.00025 L 166.66662,166.66695 L 203.93411,166.66695 L 37.267823,250.00025 L 0,250.00025 z"
id="path5251"
style="font-size:12px;fill:#d21034;stroke-width:1pt" />
<path
d="M 0,0.000351 L 166.66662,83.333651 L 129.39913,83.333651 L 0,18.63426 L 0,0.000351 z"
id="path5249"
style="font-size:12px;fill:#d21034;stroke-width:1pt" />
<path
d="M 296.06575,83.333651 L 462.73237,0.000351 L 499.99986,0.000351 L 333.33324,83.333651 L 296.06575,83.333651 z"
id="path5247"
style="font-size:12px;fill:#d21034;stroke-width:1pt" />
<path
d="M 499.99986,250.00025 L 333.33324,166.66695 L 370.60073,166.66695 L 499.99986,231.36609 L 499.99986,250.00025 z"
id="path150"
style="font-size:12px;fill:#d21034;stroke-width:1pt" />
<rect
width="187.49997"
height="66.812706"
x="656.24994"
y="124.4"
id="rect566"
style="font-size:12px;fill:#d21034;fill-rule:evenodd;stroke-width:1pt" />
<rect
width="11.965175"
height="15.58386"
rx="5.9354806"
ry="7.730577"
x="660.50812"
y="155.74721"
id="rect909"
style="font-size:12px;fill:#f6efec;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.20999642;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 803.68486,151.60249 C 803.68486,151.60249 814.48136,150.90843 818.26006,147.20652 C 822.03899,143.50481 815.69606,136.79527 819.74466,136.1012 C 821.36411,135.98543 823.65843,136.44834 825.41271,138.299 C 825.14281,136.91104 824.06318,136.1012 823.65843,135.29174 C 822.17383,134.13457 820.68923,134.25034 818.52997,134.25034 C 817.04537,134.4819 816.77546,134.01879 814.34652,131.58965 C 813.13183,130.43286 813.13183,127.541 814.07639,125.57436 C 811.24248,127.42523 811.78229,129.96995 812.0522,130.54844 C 812.72685,133.09357 813.40174,133.78763 813.40174,134.94461 C 812.59201,134.59747 811.10741,131.58965 803.41495,131.12693 C 795.72226,130.66422 776.2885,135.75426 767.51641,135.75426 C 758.74409,135.75426 746.05823,132.63085 746.05823,132.63085 C 746.05823,132.63085 749.29711,130.43286 745.38335,129.50744 C 741.46981,128.582 732.83256,132.74662 730.40317,130.43286 C 728.64889,128.23488 729.32354,128.69758 729.05363,127.65657 C 728.37898,128.00352 727.974,129.39185 728.91879,131.2427 C 729.86335,133.09357 730.40317,132.51507 730.26833,132.51507 C 730.13326,132.51507 727.16428,132.51507 726.89438,133.44069 C 726.62447,134.13457 726.2195,134.94442 727.7041,137.48935 C 728.24391,134.94442 726.21972,134.59747 730.67308,134.36612 C 735.12688,134.13477 738.2307,135.87003 742.0094,136.44834 C 745.78832,137.02682 745.78832,135.06019 745.92316,135.17578 C 746.05823,135.29155 757.52939,137.95225 768.05599,137.37376 C 778.58259,136.79546 795.58742,131.82101 803.41472,132.86221 C 811.24225,133.90322 816.37071,138.76191 816.50555,143.27346 C 816.37071,146.04974 812.99676,147.43788 810.29769,147.90059 C 807.05881,148.36331 799.50118,149.05758 799.50118,149.05758 L 803.68486,151.60249 z"
id="path908"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.19195601;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 791.6026,154.25528 C 791.47139,154.25528 784.39189,154.4212 782.29433,158.23404 C 780.19677,162.04715 779.27897,165.69463 779.41018,165.69463 C 779.54117,165.69463 784.1297,162.54464 784.1297,162.54464 C 784.1297,162.54464 780.72116,168.84434 782.55653,174.4812 C 784.39189,180.11777 777.71108,179.78621 773.85916,179.95185 C 772.15478,178.29403 766.71032,175.4756 764.76884,174.9784 C 763.55648,174.39823 761.17581,174.32335 758.68925,177.85891 C 757.2246,180.03899 760.86606,175.80717 764.47802,176.13901 C 764.86856,176.63622 765.11997,177.13398 765.18954,178.29403 C 763.26501,178.1284 761.26211,175.30997 758.90235,181.11246 C 761.26211,179.12308 761.55711,179.16457 762.75339,179.04012 C 764.34703,178.8909 764.1423,179.95213 764.07669,179.95213 C 763.8145,179.95213 763.16418,180.11777 762.17968,181.27838 C 761.65529,182.10715 760.34431,183.93089 760.60651,183.93089 C 760.8687,183.93089 761.65265,182.9362 762.87997,182.10715 C 763.64696,181.44403 764.37543,181.44403 766.69336,182.27307 C 779.41018,186.08591 786.22726,183.26776 787.01385,181.77559 C 787.40725,181.11274 779.67215,162.37872 800.25506,157.40527 C 799.99286,157.23935 791.6026,154.4212 791.6026,154.25528 z"
id="path900"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.12942298;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 703.45993,174.97839 C 711.89684,182.60462 768.80818,166.85496 776.01793,161.38402 C 780.15975,158.23403 787.36949,155.91309 787.36949,166.68904 C 789.21024,159.39436 789.2105,157.57091 789.2105,157.73655 C 789.36377,157.90247 792.1249,160.55525 794.57949,169.50774 C 795.19307,161.54967 793.50559,156.90778 794.42596,157.57091 C 795.03955,156.90778 795.03955,161.54967 799.94822,168.01528 C 798.87458,162.8762 798.56779,160.55497 798.56779,160.55497 C 798.56779,160.55497 807.77181,170.17059 812.98727,171.49684 C 818.20299,172.8231 825.71953,168.84433 828.0206,171.16528 C 830.32141,173.4865 834.31048,177.6309 834.15592,180.94681 C 834.00395,184.26244 825.566,181.44402 824.64563,184.09652 C 823.72525,186.74931 825.25921,186.74931 825.25921,186.74931 C 825.25921,186.74931 826.02606,188.73869 826.63991,190.3965 C 827.09996,189.23589 826.17959,186.74903 827.86707,186.58339 C 829.09424,186.74903 829.09424,188.90433 829.40103,190.06494 C 829.75883,188.73869 829.34977,186.08618 830.47494,186.08618 C 831.7021,185.80974 831.85537,188.18608 832.77575,189.7331 L 832.77575,186.08618 C 836.30424,184.92557 839.37113,184.75993 839.83222,182.27307 C 840.29074,179.7862 834.46246,174.14962 833.08177,170.50215 C 831.7021,166.85496 834.15592,165.36278 831.54858,163.3734 C 828.94097,161.38402 818.96985,166.52339 814.36796,164.53402 C 809.76583,162.54463 811.60658,148.28686 794.27244,145.13715 C 776.9383,141.98715 729.99808,161.71559 721.71444,162.54463 C 713.4308,163.3734 703.30666,159.7262 703.30666,159.7262 L 703.45993,174.97839 z"
id="path899"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.17499699;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 692.60064,169.49253 C 692.60064,169.49253 683.62592,180.70516 677.57524,180.47829 C 671.55204,180.04461 666.61348,172.62338 665.29628,173.14903 C 663.97903,173.67502 663.66381,172.52861 663.15627,170.48113 C 662.64878,168.43332 663.71929,167.41962 663.69159,167.62601 C 663.99342,167.70122 664.33612,170.98877 664.61076,171.27049 C 664.88511,171.55249 663.59578,167.17484 665.46192,167.21326 C 666.09308,167.15688 665.9829,170.3316 666.57276,171.75972 C 666.75104,171.5905 665.94204,167.11925 666.72419,167.10085 C 667.50614,167.08205 667.83508,171.64697 669.05585,173.01866 C 670.77073,175.36697 673.55555,176.70182 677.17786,177.60403 C 680.99216,177.06002 689.98027,166.91859 690.70749,167.31344 L 692.60064,169.49253 z"
id="path892"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1575719;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 692.87541,163.20245 C 692.87541,163.20245 685.51214,151.41171 679.52957,150.28883 C 673.54699,149.35325 667.71768,154.78067 666.49052,154.03208 C 665.26335,153.28318 664.80329,154.21938 664.03618,155.90356 C 663.26907,157.58803 664.1897,158.7106 664.18945,158.52361 C 664.49624,158.52361 665.26335,155.71625 665.5704,155.52925 C 665.87719,155.34196 664.03618,158.89822 665.87719,159.2722 C 666.49077,159.4595 666.79757,156.65214 667.56468,155.52894 C 667.71794,155.71625 666.33725,159.4595 667.10436,159.6465 C 667.87121,159.8338 668.79184,155.90356 670.17228,154.96766 C 672.16656,153.28349 675.08095,152.72158 678.76271,152.7219 C 682.44422,154.03208 689.96075,164.88661 690.72786,164.69931 L 692.87541,163.20245 z"
id="path891"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.14874555;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 689.19371,159.56028 L 681.06359,163.87061 L 687.04616,165.5287 L 682.75082,170.83399 L 688.88692,168.67869 L 688.42686,175.80744 L 691.95509,171.16556 L 694.25591,177.63117 L 696.71024,172.82337 L 699.6249,178.12839 L 700.85206,172.98902 L 704.3803,178.12839 L 705.60747,171.16556 L 709.90282,175.47588 L 709.28923,168.18121 L 714.5047,170.00494 L 711.28325,164.36809 C 711.28325,164.36809 716.95903,164.03653 716.65224,164.03653 C 716.34545,164.03653 712.35715,160.38933 708.82892,159.39465 L 689.19371,159.56028 z"
id="path887"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13999762;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 693.49212,157.6648 L 689.04035,160.10604 L 692.3162,161.04514 L 689.96422,164.0499 L 693.32413,162.8292 L 693.07222,166.86672 L 695.00416,164.23769 L 696.264,167.89963 L 697.60791,165.17663 L 699.20387,168.18123 L 699.87583,165.27044 L 701.80777,168.18123 L 702.47972,164.23769 L 704.83171,166.67893 L 704.49573,162.54744 L 707.35154,163.58035 L 705.58758,160.38781 C 705.58758,160.38781 708.69544,160.20002 708.52746,160.20002 C 708.35947,160.20002 706.17562,158.13435 704.24368,157.57099 L 693.49212,157.6648 z"
id="path888"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.12599786;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 695.78987,145.96591 C 695.78987,145.96591 693.48906,143.97654 692.56869,145.96591 C 691.64805,147.95557 694.56271,147.12652 694.56271,147.45809 C 694.56271,147.78965 692.56869,150.1106 692.56869,152.76338 C 692.56869,155.41589 694.10265,159.89212 694.10265,160.55525 C 694.10265,161.21838 694.71623,163.04184 696.86378,163.70496 C 699.01132,164.36809 699.77843,161.54994 700.23849,161.21838 C 700.69881,160.88682 703.61346,161.71559 704.6871,158.89744 C 705.761,156.07901 705.761,150.93964 705.761,150.93964 C 705.761,150.93964 707.60176,152.43154 707.60176,149.44746 C 707.60176,146.4634 705.60748,149.44746 705.60748,149.44746 C 705.60748,149.44746 705.91427,146.29775 701.15886,144.80558 C 696.40346,143.31341 695.9434,146.29775 695.78987,145.96591 z"
id="path901"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13999762;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 695.17689,145.442 C 694.55819,143.5495 692.75986,136.28819 692.75986,136.28819 L 696.75027,138.95348 C 695.39706,138.43636 694.24522,138.13995 694.38979,138.13731 C 694.53412,138.13467 696.1998,141.62743 696.1998,141.62743 C 697.76143,141.45131 699.34492,142.2695 701.28577,142.91588 C 701.28577,142.91588 702.81216,140.01422 702.66783,140.01687 C 702.52326,140.01952 701.7909,139.56279 701.7909,139.56279 L 705.34378,136.80387 L 704.26714,140.45731 L 703.54476,140.47055 L 702.15758,143.13458 C 703.79339,143.60196 704.59647,143.97417 706.22135,145.60211 C 707.62277,145.24514 708.78872,144.0362 709.52747,143.12419 C 708.25135,142.5808 707.66393,142.14942 707.80826,142.14678 C 707.95283,142.14414 713.12658,142.49148 713.12658,142.49148 C 713.12658,142.49148 708.17019,147.67652 705.25042,149.59716 C 702.48419,148.36758 695.48112,146.14125 695.17689,145.442 z"
id="path893"
style="font-size:12px;fill:#ffd100;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1746916;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<rect
width="3.5906432"
height="1.5866169"
rx="1.7811849"
ry="0.78706211"
x="195.40033"
y="-525.56256"
transform="matrix(0.890737,0.454519,-0.9932072,-0.1163592,0,0)"
id="rect903"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<rect
width="3.5906436"
height="1.5866175"
rx="1.781185"
ry="0.78706229"
x="199.54195"
y="-526.48175"
transform="matrix(0.890737,0.454519,-0.9932072,-0.1163592,0,0)"
id="rect904"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<rect
width="6.631361"
height="3.0771048"
rx="3.2895718"
ry="1.5264381"
x="369.32651"
y="-350.85416"
transform="matrix(0.9384339,0.3454589,-0.9964473,-8.4218064e-2,0,0)"
id="rect905"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<rect
width="3.0092804"
height="1.3786341"
rx="1.4927922"
ry="0.68388945"
x="307.76736"
y="-414.49872"
transform="matrix(0.925753,0.3781288,-0.9956316,-9.3368873e-2,0,0)"
id="rect906"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<rect
width="2.7238874"
height="1.1378591"
rx="1.3512197"
ry="0.56444991"
x="1581.9824"
y="1676.7021"
transform="matrix(0.3068891,-0.9517453,0.1264225,0.9919765,0,0)"
id="rect907"
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 670.44447,292.32785 L 666.74996,285.83958 L 672.01421,292.18619 L 672.25233,294.75289 L 670.44447,292.32785 z"
id="path4960"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242225;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 671.48595,293.02102 L 672.0763,288.31556 L 673.68829,294.0201 L 672.2453,294.90843 L 671.48595,293.02102 z"
id="path4962"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242222;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 670.13787,294.61205 L 663.93404,291.37033 L 669.07597,292.97273 L 672.43176,294.86664 L 670.13787,294.61205 z"
id="path4964"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242228;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 671.98808,296.62292 L 662.55526,293.91318 L 669.94582,294.19446 L 672.44323,294.60656 L 671.98808,296.62292 z"
id="path4966"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242245;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 672.52428,293.51803 L 678.29423,292.59989 L 676.26862,296.25086 L 671.89406,294.69752 L 672.52428,293.51803 z"
id="path4968"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242252;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 675.77372,295.42346 L 683.11905,298.45453 L 676.96699,297.55032 L 671.76071,294.5175 L 675.77372,295.42346 z"
id="path4970"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242207;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 676.80064,297.0563 L 684.6296,301.48741 L 677.6569,298.93878 L 671.87808,294.47109 L 676.80064,297.0563 z"
id="path4972"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242233;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 676.84757,298.58301 L 681.37769,305.28851 L 674.31586,297.72162 L 672.11091,294.55427 L 676.84757,298.58301 z"
id="path4974"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242239;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 675.68921,298.73043 L 675.80682,303.05803 L 672.37869,296.71687 L 672.08208,294.51197 L 675.68921,298.73043 z"
id="path4976"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242234;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 673.93716,297.39123 L 670.53311,300.0083 L 670.70413,295.29905 L 672.2343,294.86328 L 673.93716,297.39123 z"
id="path4978"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242245;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 669.6025,292.23056 L 667.11031,288.55861 L 670.52037,292.18942 L 672.1588,294.70488 L 669.6025,292.23056 z"
id="path4980"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242234;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 671.40837,293.7805 L 668.92813,289.15654 L 672.5344,294.16744 L 673.03437,295.56959 L 671.40837,293.7805 z"
id="path4982"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.08808739;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 671.59889,295.20609 L 665.06108,292.34608 L 670.57733,294.01548 L 672.99046,295.27526 L 671.59889,295.20609 z"
id="path4984"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.09425368;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 673.32516,294.83762 L 679.31681,296.62596 L 674.79981,295.88839 L 672.44047,295.01658 L 673.32516,294.83762 z"
id="path4986"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.08175996;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 673.58834,296.34663 L 671.78174,297.52201 L 672.72376,295.76056 L 672.61845,294.9098 L 673.58834,296.34663 z"
id="path4988"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.08114959;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 676.14292,297.49551 L 679.98085,302.30908 L 676.73678,298.85503 L 672.78199,295.07348 L 676.14292,297.49551 z"
id="path4990"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242233;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 675.12737,295.81324 L 676.21249,294.54106 L 676.57135,296.97919 L 672.91604,295.35276 L 675.12737,295.81324 z"
id="path4992"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13242228;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 670.99563,293.05501 L 669.36863,288.22678 L 672.02772,293.2298 L 672.27514,294.75683 L 670.99563,293.05501 z"
id="path4994"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.09265482;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 689.30041,303.90779 C 690.18914,303.25104 696.7676,288.37222 728.06109,290.55957 C 710.2807,297.99968 699.25629,313.75371 696.59008,314.40909 C 694.63396,315.06586 690.36666,306.31363 689.30041,303.90779 z"
id="path4997"
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.33065945" />
<path
d="M 731.21573,296.56815 C 726.36017,298.68848 723.97962,299.69695 721.5241,300.11267 C 722.77584,300.82277 725.55666,300.39112 728.73023,301.5269 C 725.90295,301.60845 720.67413,304.47072 718.49894,304.54032 C 720.00252,305.73774 725.36478,304.58408 726.35118,304.89638 C 723.48341,305.13308 718.86921,308.08086 715.99546,308.08086 C 714.67925,309.41554 722.6814,307.1679 725.89246,309.68604 C 722.57197,309.45928 716.12139,311.99336 712.6255,311.3827 C 715.29088,313.45532 720.0505,311.15993 724.02009,313.40559 C 722.87029,313.57267 713.65987,314.94114 710.39935,314.29074 C 712.34817,315.58562 718.2216,315.37079 719.66523,316.52046 C 717.23371,316.09879 710.77862,317.89094 708.53298,317.17884 C 710.55525,319.11221 716.64906,318.02222 717.76888,319.18582 C 713.7858,321.02769 707.75046,319.55777 704.97415,320.05703 C 706.83601,321.21268 708.37258,322.38025 710.02008,323.46231 C 712.42462,325.70199 719.92908,332.00137 724.41135,333.89298 C 719.44937,333.03171 717.71791,332.91833 714.51136,332.57025 L 721.80743,342.83184 C 718.76277,340.6558 713.39604,336.54439 709.8327,334.42207 C 701.94148,329.29426 696.25393,330.18139 690.78824,325.84123 C 683.1099,315.96352 678.84649,304.19026 678.46272,301.04951 C 678.07745,297.91077 677.74166,292.28368 670.7379,295.21558 C 677.5003,294.05993 672.67434,286.75365 679.73605,286.75365 C 683.98377,286.75365 683.43432,290.84976 685.02336,293.57477 C 686.08172,295.53003 693.38468,302.41203 694.87626,302.76806 C 708.28413,292.19817 719.15853,290.89932 731.21573,296.56815 z"
id="path4999"
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.45231301" />
<path
d="M 772.74752,351.6123 C 772.49007,349.99332 772.32217,349.17622 773.04789,347.05342 C 774.10714,345.55866 774.6625,344.23361 776.5946,342.68639 C 778.68979,341.90931 779.39718,342.61046 782.14577,339.74097 C 783.02972,337.8501 784.37583,336.42152 785.14326,334.38294 C 786.93439,331.37819 787.53513,329.8944 788.96707,327.58254 C 790.86974,325.17958 792.40098,323.02498 793.51417,321.18376 C 794.70208,318.8236 795.76867,317.36464 797.49245,315.42403 C 798.18998,313.21015 799.68566,311.56773 801.47068,309.66574 C 802.83513,306.85973 805.45138,303.64661 806.58664,301.34711 C 808.59843,298.75227 809.38543,297.62468 811.13249,294.94837 C 812.671,293.80552 815.26645,291.29904 817.38487,290.46952 C 820.27696,289.10446 821.82404,287.75181 823.72685,289.82907 C 824.9858,291.24659 827.249,293.52809 825.67609,295.21198 C 824.84858,296.24446 823.49381,296.37276 821.93197,295.58875 C 820.32722,294.41836 819.54631,291.01332 817.38487,293.66889 C 815.82301,295.67714 815.0224,297.27962 812.83778,299.42722 C 811.75165,301.22701 810.96819,302.57278 809.99608,305.18691 C 808.71123,306.85558 807.64952,308.73134 806.58664,311.58565 C 805.20855,312.86656 804.02072,315.40887 803.176,317.34398 C 801.81273,318.95328 800.82824,320.6068 799.76533,323.10367 C 797.61872,325.41829 796.81688,327.37546 795.21822,328.86198 C 794.16272,331.374 792.50028,333.77286 791.23998,335.26073 C 790.24449,337.08264 789.25638,338.98044 788.39826,341.02045 C 786.58992,343.09773 786.51023,343.54626 783.85112,346.77873 C 781.63698,350.02922 782.38241,349.63719 778.91536,353.40527 C 777.01758,354.10915 775.11123,354.34934 772.74752,351.6123 z"
id="path5003"
style="font-size:12px;fill:#006000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24999993" />
<rect
width="4.4218616"
height="17.68771"
rx="2.1935201"
ry="8.7742147"
x="796.59735"
y="-330.42291"
transform="matrix(0.7109652,0.7032272,-0.7032272,0.7109652,0,0)"
id="rect5006"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25" />
<rect
width="4.4218631"
height="17.687675"
rx="2.1935229"
ry="8.7742023"
x="840.22693"
y="-3.9522493"
transform="matrix(0.9260784,0.3773312,-0.3773312,0.9260784,0,0)"
id="rect5008"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.24999999" />
<rect
width="4.4218564"
height="17.687731"
rx="2.1935208"
ry="8.77423"
x="843.27496"
y="-30.651859"
transform="matrix(0.9133073,0.4072711,-0.4072711,0.9133073,0,0)"
id="rect5010"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.24999999" />
<rect
width="4.4218659"
height="17.687708"
rx="2.1935251"
ry="8.7742205"
x="827.50635"
y="-203.09459"
transform="matrix(0.8105749,0.585635,-0.5856343,0.8105754,0,0)"
id="rect5012"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25" />
<rect
width="4.4218745"
height="17.687721"
rx="2.1935296"
ry="8.7742224"
x="771.98822"
y="-398.46246"
transform="matrix(0.6491,0.7607031,-0.7607031,0.6491,0,0)"
id="rect5014"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000003" />
<rect
width="4.4218612"
height="17.687714"
rx="2.1935222"
ry="8.7742243"
x="795.47992"
y="-341.8439"
transform="matrix(0.7014241,0.7127441,-0.7127441,0.7014241,0,0)"
id="rect5016"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.24999997" />
<rect
width="4.4218659"
height="17.687691"
rx="2.1935253"
ry="8.7742109"
x="833.34906"
y="-202.64011"
transform="matrix(0.8105749,0.585635,-0.5856343,0.8105754,0,0)"
id="rect5018"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25" />
<rect
width="4.4218659"
height="17.687708"
rx="2.1935248"
ry="8.7742205"
x="830.3783"
y="-203.25444"
transform="matrix(0.8105749,0.585635,-0.5856343,0.8105754,0,0)"
id="rect5020"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935272"
ry="8.774229"
x="815.64948"
y="-230.53302"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5022"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="818.92188"
y="-230.70587"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5024"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="822.33466"
y="-230.6839"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5026"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="826.00012"
y="-230.7336"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5028"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="828.93958"
y="-230.48242"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5030"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="845.92902"
y="-232.41508"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5032"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="843.59399"
y="-231.72388"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5034"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687735"
rx="2.1935279"
ry="8.774231"
x="841.31488"
y="-231.37962"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5036"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="837.9588"
y="-231.2531"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5038"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="834.6698"
y="-230.71547"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5040"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="831.81165"
y="-230.64224"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5042"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218831"
height="17.687773"
rx="2.1935315"
ry="8.774251"
x="842.14966"
y="-95.32811"
transform="matrix(0.8790357,0.4767559,-0.4767571,0.8790351,0,0)"
id="rect5044"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000009" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935272"
ry="8.774229"
x="814.789"
y="-216.41743"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5046"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="818.06146"
y="-216.59029"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5048"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="821.47424"
y="-216.56831"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5050"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="825.13971"
y="-216.61801"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5052"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="828.0791"
y="-216.36685"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5054"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="845.0686"
y="-218.2995"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5056"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="842.73358"
y="-217.60829"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5058"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687735"
rx="2.1935279"
ry="8.774231"
x="840.45441"
y="-217.26404"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5060"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687733"
rx="2.1935277"
ry="8.77423"
x="837.09839"
y="-217.13753"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5062"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="833.80939"
y="-216.5999"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5064"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="4.4218721"
height="17.687731"
rx="2.1935275"
ry="8.77423"
x="830.95117"
y="-216.52667"
transform="matrix(0.8105749,0.585635,-0.585635,0.8105749,0,0)"
id="rect5066"
style="font-size:12px;fill:#ffd100;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000006" />
<rect
width="6.0294547"
height="37.457203"
rx="2.9909897"
ry="1.0419263"
x="800.99078"
y="208.80812"
id="rect5068"
style="font-size:12px;fill:#b2802e;fill-rule:evenodd;stroke:#000000;stroke-width:0.17229797" />
<path
d="M 797.71892,222.97901 L 780.41341,234.65999 L 791.54186,220.49859 L 802.68655,217.90544 L 797.71892,222.97901 z"
id="path5071"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040563;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 797.29752,220.65882 L 773.25772,223.71077 L 794.22255,216.15278 L 803.43967,217.78357 L 797.29752,220.65882 z"
id="path5073"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.3504056;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 809.46068,221.53156 L 816.12758,234.59076 L 805.53967,224.69575 L 802.58876,217.51147 L 809.46068,221.53156 z"
id="path5075"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040551;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 812.35016,216.74055 L 832.84653,234.69599 L 808.19021,222.20557 L 801.33833,217.71327 L 812.35016,216.74055 z"
id="path5077"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040623;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 795.97093,218.51253 L 771.41025,209.73556 L 795.57084,209.96568 L 803.69133,218.54679 L 795.97093,218.51253 z"
id="path5079"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040647;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 793.44758,211.4949 L 781.78634,196.72413 L 799.1829,207.69536 L 803.3197,218.92223 L 793.44758,211.4949 z"
id="path5081"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040489;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 797.46066,208.39378 L 790.63553,191.62222 L 803.23938,205.36212 L 802.68996,218.767 L 797.46066,208.39378 z"
id="path5083"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040575;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 804.42077,207.0086 L 819.80415,193.7566 L 809.29573,211.94259 L 802.25837,218.31017 L 804.42077,207.0086 z"
id="path5085"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.3504059;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 809.1793,208.80136 L 828.96737,204.89964 L 811.41256,216.01309 L 802.16224,218.39329 L 809.1793,208.80136 z"
id="path5087"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.3504059;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 809.08571,212.85206 L 833.26367,216.25248 L 810.67985,220.00268 L 803.26883,217.83976 L 809.08571,212.85206 z"
id="path5089"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040614;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 800.22591,224.45781 L 791.84233,231.73366 L 796.80862,222.9717 L 802.79372,218.10149 L 800.22591,224.45781 z"
id="path5091"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040584;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 801.11611,220.13689 L 788.24656,228.20841 L 798.96573,217.93912 L 803.75419,215.90943 L 801.11611,220.13689 z"
id="path5093"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.23309024;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 807.10349,218.59907 L 816.72577,231.88488 L 805.13524,221.31205 L 802.53667,216.23336 L 807.10349,218.59907 z"
id="path5095"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.24940719;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 799.31559,216.05485 L 786.60985,204.59219 L 799.03898,212.71067 L 803.25964,217.3679 L 799.31559,216.05485 z"
id="path5097"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21634708;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 805.4335,214.32546 L 817.26838,216.31305 L 805.73575,216.26047 L 802.13438,217.16371 L 805.4335,214.32546 z"
id="path5099"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.21473199;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 801.82268,209.10807 L 810.8067,198.62385 L 806.08223,206.95927 L 802.32632,216.7532 L 801.82268,209.10807 z"
id="path5101"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040572;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 797.53528,212.23146 L 787.78369,211.52261 L 797.90406,208.83944 L 803.15604,216.29103 L 797.53528,212.23146 z"
id="path5103"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.35040581;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 799.17919,221.44142 L 782.35777,228.2737 L 796.36849,219.58108 L 802.62736,217.86302 L 799.17919,221.44142 z"
id="path5105"
style="font-size:12px;fill:#007500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.24517594;stroke-dasharray:none;stroke-opacity:1" />
<rect
width="3.1705306"
height="28.916292"
rx="1.5727831"
ry="0.80434871"
x="743.97522"
y="-46.455952"
transform="matrix(0.9362097,0.351442,-0.2954386,0.9553617,0,0)"
id="rect5107"
style="font-size:12px;fill:#b2802e;fill-rule:evenodd;stroke:#000000;stroke-width:0.16117762" />
<rect
width="3.1358273"
height="29.185007"
rx="1.5555681"
ry="0.81182313"
x="693.69891"
y="215.18042"
id="rect5109"
style="font-size:12px;fill:#b2802e;fill-rule:evenodd;stroke:#000000;stroke-width:0.16103639" />
<path
d="M 685.66522,200.27773 C 689.50128,199.13713 692.41752,201.49636 693.6617,206.62065 C 693.6788,207.08549 694.57033,207.1615 694.55783,207.03136 C 693.90112,198.3294 702.54304,191.1694 708.0354,203.47461 C 708.5826,205.42495 705.4132,202.50018 703.40338,200.26057 C 700.88089,197.15362 697.45976,200.92302 697.22976,209.00917 C 696.9979,210.8422 696.68824,214.85501 696.68824,214.85501 C 696.68824,214.85501 693.85171,214.48479 693.78183,214.3757 C 693.71243,214.26737 691.43291,204.34631 687.26343,203.32156 C 684.15126,202.85 684.97905,204.77406 681.28661,205.59156 C 677.84095,205.91516 677.93829,205.40922 680.50617,204.26398 C 682.7304,204.14698 684.18525,200.82014 685.66522,200.27773 z"
id="path5111"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682872;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 686.44116,205.30741 C 690.33362,204.42885 693.11268,206.98116 694.06855,212.18003 C 694.05969,212.64515 694.94529,212.7814 694.94008,212.65064 C 694.77021,203.92067 707.0697,203.66563 711.86499,216.31964 C 712.30231,218.30334 711.44695,218.14598 709.56591,215.77445 C 707.22158,212.5025 698.17738,206.75046 697.49657,214.80574 C 697.16286,216.6196 696.62985,220.60385 696.62985,220.60385 C 696.62985,220.60385 693.81933,220.04218 693.75569,219.92856 C 693.69246,219.81572 691.9709,209.75902 687.86649,208.45377 C 684.78652,207.77226 683.85588,210.58983 680.12479,211.15566 C 676.66759,211.24523 676.79298,210.74684 679.41992,209.77772 C 679.91517,209.69819 684.93373,205.74855 686.44116,205.30741 z"
id="path5113"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682884;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 687.44894,211.33922 C 691.39293,210.80845 693.97666,213.59878 694.54989,218.86553 C 694.5071,219.32833 695.37988,219.54263 695.38422,219.41184 C 695.85224,210.69511 703.7559,215.46693 706.88779,227.42545 C 707.31085,228.70618 704.42853,226.11496 702.72672,223.58442 C 700.62883,220.11532 699.04179,213.81765 697.77511,221.78648 C 697.31007,223.5649 696.48791,227.48902 696.48791,227.48902 C 696.48791,227.48902 693.72752,226.68009 693.67237,226.56121 C 693.61758,226.44313 692.63578,216.26645 688.63995,214.60169 C 685.61972,213.64946 683.83318,221.64657 680.07288,221.87993 C 676.62033,221.66284 676.78171,221.17718 679.47088,220.444 C 679.97033,220.40863 685.91419,211.64535 687.44894,211.33922 z"
id="path5115"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.1668288;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<rect
width="3.135828"
height="29.185013"
rx="1.5555685"
ry="0.81182325"
x="564.50183"
y="422.61227"
transform="matrix(0.9455186,-0.3255682,0.3255682,0.9455186,0,0)"
id="rect5117"
style="font-size:12px;fill:#b2802e;fill-rule:evenodd;stroke:#000000;stroke-width:0.16103642" />
<path
d="M 675.45546,198.60143 C 671.4732,199.0159 669.68478,202.30992 670.50302,207.51727 C 670.66573,207.95302 669.87119,208.36427 669.83277,208.23932 C 667.09788,199.95338 658.17919,200.17542 657.83,213.63837 C 658.07337,215.64851 659.88399,211.79889 660.88088,208.96209 C 662.01839,205.12834 664.80592,203.70959 668.12361,211.08772 C 669.04173,212.69148 670.86882,216.27814 670.86882,216.27814 C 670.86882,216.27814 673.34741,214.8511 673.37007,214.72365 C 673.39259,214.59705 671.6889,204.56465 675.1477,202.02331 C 677.84203,200.39725 677.952,200.45642 681.67749,199.7986 C 684.98533,198.77915 684.70109,198.34923 681.88876,198.27422 C 681.39279,198.3574 677.03112,198.53603 675.45546,198.60143 z"
id="path5120"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682874;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 676.67046,203.54249 C 672.73673,204.22048 671.14919,207.64031 672.26247,212.80623 C 672.44927,213.2323 671.68336,213.69691 671.63798,213.5742 C 668.44249,205.44863 659.59176,206.25912 660.02056,219.77742 C 660.37827,221.77635 661.95585,217.79813 662.78311,214.88881 C 663.69262,210.97084 666.38117,209.36494 670.10352,216.54209 C 671.10841,218.0892 673.13088,221.56403 673.13088,221.56403 C 673.13088,221.56403 675.5119,219.97018 675.52708,219.84094 C 675.54215,219.71253 673.27085,209.76835 676.56181,206.99292 C 679.14578,205.18533 679.25848,205.2374 682.92303,204.33241 C 686.15164,203.09245 685.84439,202.68026 683.04512,202.79045 C 682.55701,202.9065 678.23264,203.3731 676.67046,203.54249 z"
id="path5122"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682892;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 678.05527,209.49744 C 674.20748,210.51625 672.89182,214.08111 674.38469,219.16331 C 674.60196,219.57426 673.87785,220.10603 673.82361,219.98694 C 670.04386,212.11765 661.33261,213.69329 662.77672,227.20672 C 663.28198,229.17956 664.54567,225.05585 665.14626,222.06826 C 665.75238,218.06258 668.29605,216.22102 672.52649,223.09421 C 673.63911,224.55834 675.90562,227.86702 675.90562,227.86702 C 675.90562,227.86702 678.14541,226.06405 678.15072,225.93319 C 678.15597,225.80319 675.15512,216.03124 678.20769,212.96541 C 680.63252,210.93073 680.74814,210.97319 684.312,209.75002 C 687.41855,208.22873 687.08295,207.84202 684.31678,208.19388 C 683.84174,208.35231 679.59083,209.19292 678.05527,209.49744 z"
id="path5124"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682889;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 708.64805,196.707 C 712.60813,197.06379 714.6278,200.37104 714.22487,205.65691 C 714.09821,206.10068 714.9138,206.50457 714.94201,206.37746 C 716.9965,197.94397 727.32761,194.42804 728.71691,208.05502 C 728.63287,210.09429 726.54865,206.16048 725.34519,203.3037 C 723.92567,199.43963 719.5487,201.71127 716.84891,209.23472 C 716.06779,210.8732 714.544,214.53385 714.544,214.53385 C 714.544,214.53385 711.98848,213.12802 711.95624,212.9993 C 711.92421,212.87147 712.82603,202.68583 709.21719,200.16712 C 706.43342,198.56314 706.62149,200.68231 702.89577,200.07504 C 699.55398,199.09501 699.80096,198.65519 702.56909,198.53482 C 704.69805,199.25392 707.0888,196.66568 708.64805,196.707 z"
id="path5126"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682878;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 707.83365,201.72923 C 711.76632,202.35361 713.5976,205.79144 712.90045,211.04 C 712.74927,211.47435 713.5408,211.93273 713.57604,211.80777 C 716.09727,203.5294 727.7496,207.8747 728.37583,221.56999 C 728.17814,223.59974 727.42157,223.13275 726.37981,220.19984 C 725.17861,216.24691 718.43442,207.46247 715.31989,214.78877 C 714.4488,216.37124 712.72362,219.92178 712.72362,219.92178 C 712.72362,219.92178 710.25139,218.34548 710.22638,218.21483 C 710.20154,218.08506 711.67006,207.97976 708.20861,205.22138 C 705.51961,203.43185 703.77855,205.73627 700.09378,204.87775 C 696.81298,203.67321 697.08405,203.25096 699.85366,203.31832 C 700.34413,203.42812 706.27964,201.58237 707.83365,201.72923 z"
id="path5128"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682886;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 706.92953,207.78098 C 710.80388,208.75185 712.37826,212.34079 711.30021,217.51058 C 711.1178,217.93014 711.87329,218.45718 711.91754,218.33573 C 715.03496,210.30762 721.00693,217.74449 720.28149,230.1652 C 720.28627,231.52811 718.36976,228.01518 717.54548,224.99947 C 716.63675,220.95291 717.07741,214.43506 713.43812,221.46164 C 712.45433,222.96176 710.47554,226.34789 710.47554,226.34789 C 710.47554,226.34789 708.12639,224.55762 708.111,224.42518 C 708.09571,224.29365 710.2972,214.35124 707.04834,211.29502 C 704.4987,209.273 700.36153,216.13237 696.75137,214.9501 C 693.56914,213.45871 693.87016,213.06184 696.62588,213.37445 C 697.10673,213.52736 705.39129,207.49688 706.92953,207.78098 z"
id="path5130"
style="font-size:12px;fill:#004500;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.16682884;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 656.51333,124.93372 L 656.51333,248.82817 C 659.02622,325.23498 697.39546,352.59278 750.94598,375.06628 C 812.31013,347.94373 843.48667,314.66808 843.48667,248.82817 L 843.48667,124.93372 L 656.51333,124.93372 z"
id="path5239"
style="font-size:12px;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 50 KiB

1634
build/svg/FK.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 128 KiB

20
build/svg/FM.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg>
<svg width="760" height="400" viewBox="-19 -10 38 20" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" zoomAndPan="magnify">
<rect x="-19" y="-10" width="38" height="20" fill="#75b2dd" />
<g id="star" fill="white" transform="translate(0,-6) scale(2)">
<g id="cone">
<polygon id="triangle" points="0,0 0,1 .5,1" transform="translate(0,-1) rotate(18)"/>
<use xlink:href="#triangle" transform="scale(-1,1)"/>
</g>
<use xlink:href="#cone" transform="rotate(72)"/>
<use xlink:href="#cone" transform="rotate(-72)"/>
<use xlink:href="#cone" transform="rotate(144)"/>
<use xlink:href="#cone" transform="rotate(-144)"/>
</g>
<use xlink:href="#star" transform="rotate(90)"/>
<use xlink:href="#star" transform="rotate(-90)"/>
<use xlink:href="#star" transform="rotate(180)"/>
</svg>

After

Width:  |  Height:  |  Size: 954 B

8
build/svg/FO.svg Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg id="Flag_of_the_Faroe Islands" xmlns="http://www.w3.org/2000/svg" height="800" width="1100" version="1.0" viewBox="0 0 22 16">
<rect id="white background" width="22" fill="#fff" height="16"/>
<rect id="vertical blue stripe" height="16" width="4" y="0" x="6" fill="#0072c6"/>
<rect id="horizontal blue stripe" height="4" width="22" y="6" x="0" fill="#0072c6"/>
<rect id="horizontal red stripe" height="2" width="22" y="7" x="0" fill="#ef2b2d"/>
<rect id="vertical red stripe" height="16" width="2" y="0" x="7" fill="#ef2b2d"/>
</svg>

After

Width:  |  Height:  |  Size: 598 B

181
build/svg/FQHH.svg Normal file
View file

@ -0,0 +1,181 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
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="600"
height="400"
version="1.0"
id="svg1375"
sodipodi:version="0.32"
inkscape:version="0.45.1"
sodipodi:docname="Flag_of_the_French_Southern_and_Antarctic_Lands.svg"
sodipodi:docbase="C:\Documents and Settings\Joshua.JOSHPC\Desktop"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata1399">
<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>
<sodipodi:namedview
inkscape:window-height="573"
inkscape:window-width="800"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="true"
gridspacingx="10px"
gridspacingy="10px"
gridtolerance="10px"
inkscape:zoom="2.8208573"
inkscape:cx="393.30184"
inkscape:cy="170.67278"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:current-layer="g3291"
gridcolor="#00ff00"
gridopacity="0.14509804"
gridempcolor="#00ff00"
gridempopacity="0.37647059"
gridempspacing="5"
inkscape:grid-bbox="false"
inkscape:grid-points="false" />
<desc
id="desc1377">Flag of Wallis and Futuna</desc>
<defs
id="defs1387">
<polygon
id="triangle"
points="0,-40 120,-160 -120,-160 0,-40 "
style="fill:#ffffff" />
</defs>
<g
id="g3291">
<rect
y="2.7533531e-014"
x="0"
style="fill:#002654;fill-opacity:1"
id="rect1379"
height="400"
width="600" />
<rect
style="fill:#ffffff;fill-opacity:1"
y="2.7533531e-014"
id="rect1383"
height="159.99998"
width="160"
x="80" />
<rect
y="2.7533531e-014"
x="160"
height="159.99998"
width="80"
id="rect2278"
style="fill:#ce1126;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="-10"
x="-10"
height="169.87405"
width="249.91736"
id="rect3170"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:4.20587254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
id="path3219"
d="M 354.99732,182.97585 L 367.87232,203.47585 L 404.49732,203.47585 L 404.49732,274.97585 L 376.99732,231.97585 L 339.99732,290.97585 L 362.99732,290.97585 L 366.43482,284.47585 L 389.46607,284.47585 L 415.99732,326.97585 L 442.52857,284.47585 L 465.55982,284.47585 L 468.99732,290.97585 L 491.99732,290.97585 L 454.99732,231.97585 L 427.49732,274.97585 L 427.49732,235.47585 L 443.99732,235.47585 L 456.24732,215.97585 L 427.49732,215.97585 L 427.49732,203.47585 L 464.12232,203.47585 L 476.99732,182.97585 L 354.99732,182.97585 z M 377.17457,256.6768 L 386.14885,270.62799 L 370.17567,270.71661 L 377.17457,256.6768 z M 454.46557,258.09481 L 461.64172,270.62798 L 447.08654,270.53936 L 454.46557,258.09481 z "
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 456,298.63999 L 460.73445,313.48359 L 476.31458,313.39939 L 463.6605,322.48905 L 468.5551,337.28061 L 456,328.05473 L 443.4449,337.28061 L 448.3395,322.48905 L 435.68543,313.39939 L 451.26555,313.48359 L 456,298.63999 z "
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="-0.9424778"
sodipodi:arg1="-1.5707963"
sodipodi:r2="8.0547266"
sodipodi:r1="21.360008"
sodipodi:cy="320"
sodipodi:cx="456"
sodipodi:sides="5"
id="path3255"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="translate(4.6085281,8.1431142)" />
<path
transform="translate(-40.505367,42.592725)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3257"
sodipodi:sides="5"
sodipodi:cx="456"
sodipodi:cy="320"
sodipodi:r1="21.360008"
sodipodi:r2="8.0547266"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 456,298.63999 L 460.73445,313.48359 L 476.31458,313.39939 L 463.6605,322.48905 L 468.5551,337.28061 L 456,328.05473 L 443.4449,337.28061 L 448.3395,322.48905 L 435.68543,313.39939 L 451.26555,313.48359 L 456,298.63999 z " />
<path
transform="matrix(-1,0,0,1,827.61896,8.2039372)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3263"
sodipodi:sides="5"
sodipodi:cx="456"
sodipodi:cy="320"
sodipodi:r1="21.360008"
sodipodi:r2="8.0547266"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 456,298.63999 L 460.73445,313.48359 L 476.31458,313.39939 L 463.6605,322.48905 L 468.5551,337.28061 L 456,328.05473 L 443.4449,337.28061 L 448.3395,322.48905 L 435.68543,313.39939 L 451.26555,313.48359 L 456,298.63999 z " />
<path
d="M 456,298.63999 L 460.73445,313.48359 L 476.31458,313.39939 L 463.6605,322.48905 L 468.5551,337.28061 L 456,328.05473 L 443.4449,337.28061 L 448.3395,322.48905 L 435.68543,313.39939 L 451.26555,313.48359 L 456,298.63999 z "
inkscape:randomized="0"
inkscape:rounded="0"
inkscape:flatsided="false"
sodipodi:arg2="-0.9424778"
sodipodi:arg1="-1.5707963"
sodipodi:r2="8.0547266"
sodipodi:r1="21.360008"
sodipodi:cy="320"
sodipodi:cx="456"
sodipodi:sides="5"
id="path2191"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
sodipodi:type="star"
transform="translate(42.517453,-92.952019)" />
<path
transform="translate(-121.80101,-93.2457)"
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2193"
sodipodi:sides="5"
sodipodi:cx="456"
sodipodi:cy="320"
sodipodi:r1="21.360008"
sodipodi:r2="8.0547266"
sodipodi:arg1="-1.5707963"
sodipodi:arg2="-0.9424778"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 456,298.63999 L 460.73445,313.48359 L 476.31458,313.39939 L 463.6605,322.48905 L 468.5551,337.28061 L 456,328.05473 L 443.4449,337.28061 L 448.3395,322.48905 L 435.68543,313.39939 L 451.26555,313.48359 L 456,298.63999 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8 KiB

1
build/svg/FR.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><!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" version="1.1" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>

After

Width:  |  Height:  |  Size: 377 B

1
build/svg/FXFR.svg Normal file
View file

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><!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" version="1.1" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>

After

Width:  |  Height:  |  Size: 377 B

30
build/svg/GA.svg Normal file
View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.0"
width="400"
height="300"
id="Flag of Gabon">
<rect
style="fill:#009e60"
x="0"
y="0"
width="400"
height="100"
id="Green Stripe" />
<rect
style="fill:#fcd116"
x="0"
y="100"
width="400"
height="100"
id="Yellow Stripe" />
<rect
style="fill:#3a75c4"
x="0"
y="200"
width="400"
height="100"
id="Blue Stripe" />
</svg>

After

Width:  |  Height:  |  Size: 605 B

Some files were not shown because too many files have changed in this diff Show more