Added boob and country aggregation to actors page.

This commit is contained in:
DebaucheryLibrarian 2023-12-31 03:02:03 +01:00
parent b5a730764c
commit 6408365933
276 changed files with 37792 additions and 166 deletions

View File

@ -65,3 +65,162 @@
.radio {
margin: 0 .5rem 0 0;
}
.filter-section {
width: 15rem;
max-width: 100%;
border-bottom: solid 1px var(--shadow-hint);
}
.label-values {
font-weight: normal;
}
.filter-split {
display: flex;
align-items: center;
}
.toggle-container,
.range-container {
display: flex;
flex-grow: 1;
align-items: center;
padding: .5rem 0;
&.on {
.toggle-label.on {
color: var(--enabled);
.icon {
fill: var(--enabled);
}
}
.toggle {
background-color: var(--enabled-background);
&::-webkit-slider-thumb {
background: var(--enabled);
}
&::-moz-range-thumb {
background: var(--enabled);
}
}
}
&.off {
.toggle-label.off {
color: var(--disabled);
.icon {
fill: var(--disabled);
}
}
.toggle {
background-color: var(--disabled-background);
&::-webkit-slider-thumb {
background: var(--disabled);
}
&::-moz-range-thumb {
background: var(--disabled);
}
}
}
}
.toggle-label {
display: inline-flex;
justify-content: center;
min-width: 1.5rem;
flex-shrink: 0;
padding: 0 .5rem;
color: var(--shadow);
font-weight: bold;
font-size: .9rem;
&.on {
text-align: right;
}
.icon {
fill: var(--shadow);
}
&:hover {
cursor: pointer;
&.on {
color: var(--enabled);
.icon {
fill: var(--enabled);
}
}
&.off {
color: var(--disabled);
.icon {
fill: var(--disabled);
}
}
}
}
.filter-label {
display: flex;
justify-content: space-between;
padding: .75rem .5rem .5rem .5rem;
color: var(--shadow);
font-weight: bold;
font-size: .9rem;
.label {
display: inline-flex;
align-items: center;
text-transform: capitalize;
}
.checkbox {
margin: 0 .75rem 0 0;
}
.icon {
margin: 0 .5rem 0 0;
}
}
.toggle {
width: 0;
flex-grow: 1;
height: 1.25rem;
appearance: none;
border-radius: 1rem;
background-color: var(--shadow-weak-30);
background-image: radial-gradient(circle, var(--shadow-weak-10) .3rem, transparent calc(.3rem + 1px));
cursor: pointer;
&::-webkit-slider-thumb {
appearance: none;
background: var(--disabled-handle);
width: 1.25rem;
height: 1.25rem;
border-radius: .625rem;
box-shadow: 0 0 3px var(--shadow-weak-10);
}
&::-moz-range-thumb {
appearance: none;
background: var(--disabled-handle);
width: 1.25rem;
height: 1.25rem;
border: none;
border-radius: .625rem;
box-shadow: 0 0 3px var(--shadow-weak-10);
}
}

View File

@ -52,4 +52,10 @@
--male: #0af;
--female: #f0a;
--enabled: #5c2;
--enabled-background: rgba(0, 255, 0, .1);
--disabled: #c20;
--disabled-background: rgba(255, 0, 0, .1);
--disabled-handle: #aaa;
}

View File

@ -37,7 +37,7 @@
>
{{ actor.birthCountry.alpha2 }}
<img
:src="`/flags/${actor.birthCountry.alpha2.toLowerCase()}.svg`"
:src="`/img/flags/${actor.birthCountry.alpha2.toLowerCase()}.svg`"
class="flag"
>
</span>

View File

@ -0,0 +1,86 @@
<template>
<ul class="countries nolist">
<li
v-for="country in countries"
:key="country.alpha2"
:title="country.name"
:class="{ selected: selectedCountry === country.alpha2 }"
class="country"
@click="updateValue('country', country.alpha2, true)"
>
<img
:src="`/img/flags/${country.alpha2.toLowerCase()}.svg`"
class="flag"
>
<span class="country-name">{{ country.alias || country.name }}</span>
<Icon
v-if="selectedCountry === country.alpha2"
icon="cross2"
@click.native.stop="updateValue('country', null, true)"
/>
</li>
</ul>
</template>
<script setup>
defineProps({
countries: {
type: Array,
default: () => [],
},
selectedCountry: {
type: String,
default: null,
},
updateValue: {
type: Function,
default: null,
},
});
</script>
<style scoped>
.countries:not(:last-child) {
border-bottom: solid 1px var(--shadow-hint);
}
.country {
width: 100%;
display: flex;
align-items: center;
overflow: hidden;
.flag {
width: 2rem;
padding: .25rem .5rem;
}
.icon {
padding: .25rem .5rem;;
fill: var(--shadow);
&:hover {
fill: var(--shadow-strong-10);
}
}
&:hover {
background: var(--shadow-weak-30);
cursor: pointer;
}
&.selected {
font-weight: bold;
}
}
.country-name {
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: .25rem .5rem;
}
</style>

View File

@ -77,132 +77,4 @@ const emit = defineEmits(['change', 'input', 'enable']);
</script>
<style scoped>
.filter-section {
width: 15rem;
max-width: 100%;
border-bottom: solid 1px var(--shadow-hint);
}
.filter-label {
display: flex;
justify-content: space-between;
padding: .75rem .5rem .5rem .5rem;
color: var(--shadow);
font-weight: bold;
font-size: .9rem;
.label {
display: inline-flex;
align-items: center;
text-transform: capitalize;
}
.checkbox {
margin: 0 .75rem 0 0;
}
.icon {
margin: 0 .5rem 0 0;
}
}
.label-values {
font-weight: normal;
}
.filter-split {
display: flex;
align-items: center;
}
.toggle-container,
.range-container {
display: flex;
flex-grow: 1;
align-items: center;
padding: .5rem 0;
&.on {
.toggle-label.on {
color: var(--enabled);
.icon {
fill: var(--enabled);
}
}
.toggle {
background-color: var(--enabled-background);
&::-webkit-slider-thumb {
background: var(--enabled);
}
&::-moz-range-thumb {
background: var(--enabled);
}
}
}
&.off {
.toggle-label.off {
color: var(--disabled);
.icon {
fill: var(--disabled);
}
}
.toggle {
background-color: var(--disabled-background);
&::-webkit-slider-thumb {
background: var(--disabled);
}
&::-moz-range-thumb {
background: var(--disabled);
}
}
}
}
.toggle-label {
display: inline-flex;
justify-content: center;
min-width: 1.5rem;
flex-shrink: 0;
padding: 0 .5rem;
color: var(--shadow);
font-weight: bold;
font-size: .9rem;
&.on {
text-align: right;
}
.icon {
fill: var(--shadow);
}
&:hover {
cursor: pointer;
&.on {
color: var(--enabled);
.icon {
fill: var(--enabled);
}
}
&.off {
color: var(--disabled);
.icon {
fill: var(--disabled);
}
}
}
}
</style>

View File

@ -119,7 +119,7 @@ async function setNearest(event) {
range.value[closestSlider] = closestValue;
emit('change', [minValue.value, maxValue.value]);
set('change');
}
}
@ -133,7 +133,7 @@ async function setRange(prop, value) {
if (!props.disabled) {
range.value[prop] = value;
emit('change', [minValue.value, maxValue.value]);
set('change');
}
}
</script>
@ -161,7 +161,7 @@ async function setRange(prop, value) {
border-radius: .625rem;
&.disabled {
--slider-range: var(--shadow-weak-10);
--slider-range: var(--shadow-weak-30);
--slider-thumb: var(--grey-dark-10);
}
}

View File

@ -0,0 +1,5 @@
<template>
<div class="tooltip">
<slot name="tooltip" />
</div>
</template>

95
package-lock.json generated
View File

@ -16,6 +16,8 @@
"date-fns": "^3.0.0",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"express-query-boolean": "^2.0.0",
"floating-vue": "^2.0.0-beta.24",
"knex": "^3.1.0",
"manticoresearch": "^4.0.0",
"nanoid": "^5.0.4",
@ -2436,6 +2438,27 @@
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@floating-ui/core": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.2.tgz",
"integrity": "sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==",
"dependencies": {
"@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.1.1.tgz",
"integrity": "sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==",
"dependencies": {
"@floating-ui/core": "^1.1.0"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz",
"integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A=="
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.13",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
@ -4316,6 +4339,11 @@
}
}
},
"node_modules/express-query-boolean": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/express-query-boolean/-/express-query-boolean-2.0.0.tgz",
"integrity": "sha512-4dU/1HPm8lkTPR12+HFUXqCarcsC19OKOkb4otLOuADfPYrQMaugPJkSmxNsqwmWYjozvT6vdTiqkgeBHkzOow=="
},
"node_modules/express/node_modules/safe-buffer": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
@ -4457,6 +4485,24 @@
"integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
"dev": true
},
"node_modules/floating-vue": {
"version": "2.0.0-beta.24",
"resolved": "https://registry.npmjs.org/floating-vue/-/floating-vue-2.0.0-beta.24.tgz",
"integrity": "sha512-URSzP6YXaF4u1oZ9XGL8Sn8puuM7ivp5jkOUrpy5Q1mfo9BfGppJOn+ierTmsSUfJEeHBae8KT7r5DeI3vQIEw==",
"dependencies": {
"@floating-ui/dom": "~1.1.1",
"vue-resize": "^2.0.0-alpha.1"
},
"peerDependencies": {
"@nuxt/kit": "^3.2.0",
"vue": "^3.2.0"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
"optional": true
}
}
},
"node_modules/for-each": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
@ -7633,6 +7679,14 @@
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"dev": true
},
"node_modules/vue-resize": {
"version": "2.0.0-alpha.1",
"resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz",
"integrity": "sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==",
"peerDependencies": {
"vue": "^3.0.0"
}
},
"node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@ -9239,6 +9293,27 @@
"integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
"dev": true
},
"@floating-ui/core": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.2.tgz",
"integrity": "sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==",
"requires": {
"@floating-ui/utils": "^0.1.3"
}
},
"@floating-ui/dom": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.1.1.tgz",
"integrity": "sha512-TpIO93+DIujg3g7SykEAGZMDtbJRrmnYRCNYSjJlvIbGhBjRSNTLVbNeDQBrzy9qDgUbiWdc7KA0uZHZ2tJmiw==",
"requires": {
"@floating-ui/core": "^1.1.0"
}
},
"@floating-ui/utils": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz",
"integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A=="
},
"@humanwhocodes/config-array": {
"version": "0.11.13",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
@ -10666,6 +10741,11 @@
"methods": "^1.0.0"
}
},
"express-query-boolean": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/express-query-boolean/-/express-query-boolean-2.0.0.tgz",
"integrity": "sha512-4dU/1HPm8lkTPR12+HFUXqCarcsC19OKOkb4otLOuADfPYrQMaugPJkSmxNsqwmWYjozvT6vdTiqkgeBHkzOow=="
},
"fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
@ -10767,6 +10847,15 @@
"integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
"dev": true
},
"floating-vue": {
"version": "2.0.0-beta.24",
"resolved": "https://registry.npmjs.org/floating-vue/-/floating-vue-2.0.0-beta.24.tgz",
"integrity": "sha512-URSzP6YXaF4u1oZ9XGL8Sn8puuM7ivp5jkOUrpy5Q1mfo9BfGppJOn+ierTmsSUfJEeHBae8KT7r5DeI3vQIEw==",
"requires": {
"@floating-ui/dom": "~1.1.1",
"vue-resize": "^2.0.0-alpha.1"
}
},
"for-each": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
@ -12834,6 +12923,12 @@
}
}
},
"vue-resize": {
"version": "2.0.0-alpha.1",
"resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz",
"integrity": "sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==",
"requires": {}
},
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",

View File

@ -16,6 +16,8 @@
"date-fns": "^3.0.0",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"express-query-boolean": "^2.0.0",
"floating-vue": "^2.0.0-beta.24",
"knex": "^3.1.0",
"manticoresearch": "^4.0.0",
"nanoid": "^5.0.4",

View File

@ -14,6 +14,48 @@
>
</div>
<ul class="filter genders nolist">
<li>
<button
:class="{ selected: filters.gender === undefined }"
class="gender-button all"
@click="updateFilter('gender', undefined, true)"
>all</button>
</li>
<li>
<button
:class="{ selected: filters.gender === 'female' }"
class="gender-button female"
@click="updateFilter('gender', 'female', true)"
><Gender gender="female" /></button>
</li>
<li>
<button
:class="{ selected: filters.gender === 'male' }"
class="gender-button male"
@click="updateFilter('gender', 'male', true)"
><Gender gender="male" /></button>
</li>
<li>
<button
:class="{ selected: filters.gender === 'transsexual' }"
class="gender-button transsexual"
@click="updateFilter('gender', 'transsexual', true)"
><Gender gender="transsexual" /></button>
</li>
<li>
<button
:class="{ selected: filters.gender === 'other' }"
class="gender-button other"
@click="updateFilter('gender', 'other', true)"
><Icon icon="question5" /></button>
</li>
</ul>
<div class="filter">
<RangeFilter
label="age"
@ -30,6 +72,49 @@
</RangeFilter>
</div>
<div class="filter">
<RangeFilter
label="bra size"
:min="0"
:max="braSizes.length - 1"
:value="filters.braSize"
:values="braSizes"
:disabled="!filters.braSizeRequired"
@enable="(checked) => updateFilter('braSizeRequired', checked, true)"
@input="(range) => updateFilter('braSize', range, false)"
@change="(range) => updateFilter('braSize', range, true)"
>
<template #start><Icon icon="boobs-small" /></template>
<template #end><Icon icon="boobs-big" /></template>
</RangeFilter>
<span class="filter-label">Enhanced Boobs</span>
<span
:class="{ [['off', 'default', 'on'][naturalBoobsValues.indexOf(filters.naturalBoobs)]]: true }"
class="toggle-container noclick"
>
<span
class="toggle-label off"
@click="updateFilter('naturalBoobs', true, true)"
><Icon icon="leaf" /></span>
<input
:value="naturalBoobsValues.indexOf(filters.naturalBoobs)"
class="toggle"
type="range"
min="0"
max="2"
@change="updateFilter('naturalBoobs', naturalBoobsValues[$event.target.value], true)"
>
<span
class="toggle-label on"
@click="updateFilter('naturalBoobs', false, true)"
><Icon icon="magic-wand2" /></span>
</span>
</div>
<div class="filter">
<RangeFilter
label="height"
@ -45,9 +130,7 @@
<template #start><Icon icon="height-short" /></template>
<template #end><Icon icon="height" /></template>
</RangeFilter>
</div>
<div class="filter">
<RangeFilter
label="weight"
:min="30"
@ -64,11 +147,50 @@
</RangeFilter>
</div>
<Tooltip class="filter">
<span
:class="{ enabled: filters.country }"
class="filter-trigger"
>
<img
v-if="filters.country"
:src="`/img/flags/${filters.country.toLowerCase()}.svg`"
class="flag"
>
<Icon
v-else
icon="earth2"
/>Country
</span>
<template #tooltip>
<input
v-model="countryQuery"
placeholder="Search"
class="input"
>
<Countries
v-if="!countryQuery"
:countries="topCountries"
:selected-country="country"
:update-value="updateFilter"
/>
<Countries
:countries="filteredCountries"
:selected-country="country"
:update-value="updateFilter"
/>
</template>
</Tooltip>
<div class="filter">
<Checkbox
:checked="avatarRequired"
:checked="filters.avatarRequired"
label="Require photo"
@change="(checked) => { avatarRequired = checked; search(); }"
@change="(checked) => updateFilter('avatarRequired', checked, true)"
/>
</div>
</form>
@ -87,41 +209,61 @@
</template>
<script setup>
import { ref, inject } from 'vue';
import { ref, computed, inject } from 'vue';
import navigate from '#/src/navigate.js';
import { get } from '#/src/api.js';
import ActorTile from '#/components/actors/tile.vue';
import Gender from '#/components/actors/gender.vue';
import Checkbox from '#/components/form/checkbox.vue';
import RangeFilter from '#/components/filters/range.vue';
const actors = ref([]);
import Tooltip from '#/components/tooltip/tooltip.vue';
import Countries from '#/components/filters/countries.vue';
const { pageProps, urlParsed } = inject('pageContext');
const q = ref(urlParsed.search.q);
const actors = ref([]);
const countries = ref(pageProps.countries);
const countryQuery = ref('');
const topCountryAlpha2s = ['AU', 'BR', 'CZ', 'DE', 'JP', 'RU', 'GB', 'US'];
const topCountries = computed(() => countries.value.filter((country) => topCountryAlpha2s.includes(country.alpha2)));
const filteredCountries = computed(() => countries.value.filter((country) => new RegExp(countryQuery.value, 'i').test(country.name)));
actors.value = pageProps.actors;
const q = ref(urlParsed.search.q);
console.log(countries.value);
const braSizes = 'ABCDEFGHIJKZ'.split('');
const naturalBoobsValues = [true, undefined, false];
const filters = ref({
gender: urlParsed.search.gender,
ageRequired: !!urlParsed.search.age,
age: urlParsed.search.age?.split(',').map((age) => Number(age)) || [18, 100],
braSizeRequired: !!urlParsed.search.cup,
braSize: urlParsed.search.cup?.split(',') || ['A', 'Z'],
naturalBoobs: urlParsed.search.nb ? urlParsed.search.nb === 'true' : undefined,
heightRequired: !!urlParsed.search.height,
height: urlParsed.search.height?.split(',').map((height) => Number(height)) || [50, 220],
weightRequired: !!urlParsed.search.weight,
weight: urlParsed.search.weight?.split(',').map((weight) => Number(weight)) || [30, 200],
avatarRequired: !!urlParsed.search.avatar,
});
const avatarRequired = ref(Object.hasOwn(urlParsed.search, 'avatar'));
async function search() {
const query = {
q: q.value || undefined,
avatar: avatarRequired.value || undefined,
gender: filters.value.gender || undefined,
age: filters.value.ageRequired ? filters.value.age.join(',') : undefined,
cup: filters.value.braSizeRequired ? filters.value.braSize.join(',') : undefined,
nb: filters.value.naturalBoobs,
height: filters.value.heightRequired ? filters.value.height.join(',') : undefined,
weight: filters.value.weightRequired ? filters.value.weight.join(',') : undefined,
avatar: filters.value.avatarRequired || undefined,
};
navigate('/actors', query, { redirect: false });
@ -129,6 +271,7 @@ async function search() {
const res = await get('/actors', query);
actors.value = res.actors;
countries.value = res.countries;
}
function updateFilter(prop, value, reload = true) {
@ -140,6 +283,34 @@ function updateFilter(prop, value, reload = true) {
}
</script>
<style>
.gender-button {
&.selected .gender .icon {
fill: var(--text-light);
filter: none;
}
&:hover:not(.selected) {
.gender .icon {
fill: var(--text-light);
}
.male .icon {
filter: drop-shadow(0 0 1px var(--male));
}
.female .icon {
filter: drop-shadow(0 0 1px var(--female));
}
}
&:hover:not(.selected) .transsexual .icon {
fill: var(--female);
filter: drop-shadow(1px 0 0 var(--text-light)) drop-shadow(-1px 0 0 var(--text-light)) drop-shadow(0 1px 0 var(--text-light)) drop-shadow(0 -1px 0 var(--text-light)) drop-shadow(1px 0 0 var(--male)) drop-shadow(-1px 0 0 var(--male)) drop-shadow(0 1px 0 var(--male)) drop-shadow(0 -1px 0 var(--male)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
}
}
</style>
<style scoped>
.page {
height: 100%;
@ -148,6 +319,7 @@ function updateFilter(prop, value, reload = true) {
}
.filters {
width: 17rem;
flex-shrink: 0;
padding: .5rem 0;
border-right: solid 1px var(--shadow-weak-30);
@ -160,6 +332,7 @@ function updateFilter(prop, value, reload = true) {
.filter {
padding: .5rem;
border-bottom: solid 1px var(--shadow-weak-30);
}
.actors {
@ -170,4 +343,58 @@ function updateFilter(prop, value, reload = true) {
padding: 1rem;
overflow-y: auto;
}
.genders {
display: flex;
justify-content: center;
gap: .5rem;
}
.gender-button {
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
border: none;
color: var(--shadow);
background: var(--background);
font-weight: bold;
text-decoration: none;
font-size: .9rem;
box-shadow: 0 0 3px var(--shadow-weak-20);
.male,
.female,
.transsexual {
padding: .2rem 0 0 0;
}
.icon {
fill: var(--shadow);
}
&:hover {
color: var(--text);
cursor: pointer;
.icon {
fill: var(--text);
}
}
&.selected {
background: var(--primary);
color: var(--text-light);
&.other .icon {
fill: var(--text-light);
}
}
}
.countries {
overflow: hidden;
}
</style>

View File

@ -1,15 +1,15 @@
import { fetchActors } from '#/src/actors.js';
import { curateActorsQuery } from '#/src/web/actors.js';
export async function onBeforeRender(pageContext) {
const query = pageContext.urlParsed.search;
console.log(pageContext);
const { actors, limit, total } = await fetchActors({
query: query.q,
requireAvatar: Object.hasOwn(query, 'avatar'),
age: query.age?.split(',').map((age) => Number(age)),
height: query.height?.split(',').map((height) => Number(height)),
weight: query.weight?.split(',').map((weight) => Number(weight)),
}, {
const {
actors,
countries,
limit,
total,
} = await fetchActors(curateActorsQuery(pageContext.urlQuery), {
page: Number(pageContext.routeParams.page) || 1,
limit: Number(pageContext.urlParsed.search.limit) || 50,
});
@ -19,6 +19,7 @@ export async function onBeforeRender(pageContext) {
title: 'actors',
pageProps: {
actors,
countries,
limit,
total,
},

120
public/img/flags/ad.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
height="341.33701"
width="512"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata51"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs49" />
<rect
x="0"
id="rect2"
height="341.33701"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect4"
height="341.33701"
width="170.66299"
style="fill:#0052b4"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g12">
<rect
id="rect6"
height="341.33701"
width="170.66299"
style="fill:#d80027"
y="85.331001"
x="341.33701" />
<path
id="path8"
d="m 256,315.356 c 0,-27.234 0,-59.362 0,-59.362 h 44.522 v 22.261 c 0,3.868 -7.421,18.038 -25.735,29.682 -6.938,4.411 -14.118,5.829 -18.787,7.419 z"
style="fill:#d80027" />
<rect
id="rect10"
height="44.521999"
width="44.521999"
style="fill:#d80027"
y="211.47301"
x="211.478" />
</g>
<path
id="path14"
d="m 278.261,111.301 c 0,-8.196 -6.645,-14.840001 -14.84,-14.840001 -2.707,0 -5.236,0.736 -7.421,2.001 -2.185,-1.266 -4.714,-2.001 -7.421,-2.001 -8.195,0 -14.84,6.644001 -14.84,14.840001 h -37.101 v 74.202 c 0,27.624 21.938,43.599 39.14,51.88 -1.288,2.198 -2.039,4.75 -2.039,7.483 0,8.196 6.645,14.84 14.84,14.84 2.707,0 5.236,-0.736 7.421,-2.001 2.185,1.266 4.714,2.001 7.421,2.001 8.195,0 14.84,-6.644 14.84,-14.84 0,-2.733 -0.751,-5.284 -2.04,-7.483 17.203,-8.281 39.141,-24.257 39.141,-51.88 v -74.202 z m 14.84,74.203 c 0,3.868 0,15.635 -18.314,27.279 -6.936,4.411 -14.118,7.27 -18.787,8.861 -4.669,-1.591 -11.849,-4.45 -18.787,-8.861 -18.314,-11.644 -18.314,-23.411 -18.314,-27.278 v -51.941 h 74.203 v 51.941 h -10e-4 z"
style="fill:#ff9811" />
<g
transform="translate(0,-85.331001)"
id="g16">
</g>
<g
transform="translate(0,-85.331001)"
id="g18">
</g>
<g
transform="translate(0,-85.331001)"
id="g20">
</g>
<g
transform="translate(0,-85.331001)"
id="g22">
</g>
<g
transform="translate(0,-85.331001)"
id="g24">
</g>
<g
transform="translate(0,-85.331001)"
id="g26">
</g>
<g
transform="translate(0,-85.331001)"
id="g28">
</g>
<g
transform="translate(0,-85.331001)"
id="g30">
</g>
<g
transform="translate(0,-85.331001)"
id="g32">
</g>
<g
transform="translate(0,-85.331001)"
id="g34">
</g>
<g
transform="translate(0,-85.331001)"
id="g36">
</g>
<g
transform="translate(0,-85.331001)"
id="g38">
</g>
<g
transform="translate(0,-85.331001)"
id="g40">
</g>
<g
transform="translate(0,-85.331001)"
id="g42">
</g>
<g
transform="translate(0,-85.331001)"
id="g44">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

130
public/img/flags/ae.svg Executable file
View File

@ -0,0 +1,130 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="ae.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata80"><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="defs78" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview76"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect37"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect39"
height="113.775"
width="512"
style="fill:#6da544"
y="0" />
<rect
x="0"
id="rect41"
height="113.775"
width="512"
y="227.55099" />
<rect
x="0"
id="rect43"
height="341.33701"
width="170.66299"
style="fill:#a2001d"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g45">
</g>
<g
transform="translate(0,-85.331001)"
id="g47">
</g>
<g
transform="translate(0,-85.331001)"
id="g49">
</g>
<g
transform="translate(0,-85.331001)"
id="g51">
</g>
<g
transform="translate(0,-85.331001)"
id="g53">
</g>
<g
transform="translate(0,-85.331001)"
id="g55">
</g>
<g
transform="translate(0,-85.331001)"
id="g57">
</g>
<g
transform="translate(0,-85.331001)"
id="g59">
</g>
<g
transform="translate(0,-85.331001)"
id="g61">
</g>
<g
transform="translate(0,-85.331001)"
id="g63">
</g>
<g
transform="translate(0,-85.331001)"
id="g65">
</g>
<g
transform="translate(0,-85.331001)"
id="g67">
</g>
<g
transform="translate(0,-85.331001)"
id="g69">
</g>
<g
transform="translate(0,-85.331001)"
id="g71">
</g>
<g
transform="translate(0,-85.331001)"
id="g73">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

135
public/img/flags/af.svg Executable file
View File

@ -0,0 +1,135 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="af.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata137"><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="defs135" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview133"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect90"
height="341.32599"
width="512"
style="fill:#d80027"
y="0" />
<rect
id="rect92"
height="341.33701"
width="181.793"
style="fill:#496e2d"
y="0"
x="330.207" />
<rect
x="0"
id="rect94"
height="341.33701"
width="181.793"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g100">
<path
id="path96"
d="m 256,196.632 c -32.785,0 -59.362,26.577 -59.362,59.362 0,32.785 26.577,59.362 59.362,59.362 32.785,0 59.362,-26.577 59.362,-59.362 0,-32.785 -26.577,-59.362 -59.362,-59.362 z m 0,96.463 c -20.491,0 -37.101,-16.611 -37.101,-37.101 0,-20.49 16.61,-37.101 37.101,-37.101 20.491,0 37.101,16.61 37.101,37.101 0,20.491 -16.61,37.101 -37.101,37.101 z"
style="fill:#ffda44" />
<path
id="path98"
d="m 256,233.734 c -8.196,0 -14.84,6.644 -14.84,14.84 v 22.261 h 29.682 v -22.261 c -0.002,-8.197 -6.646,-14.84 -14.842,-14.84 z"
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.331001)"
id="g102">
</g>
<g
transform="translate(0,-85.331001)"
id="g104">
</g>
<g
transform="translate(0,-85.331001)"
id="g106">
</g>
<g
transform="translate(0,-85.331001)"
id="g108">
</g>
<g
transform="translate(0,-85.331001)"
id="g110">
</g>
<g
transform="translate(0,-85.331001)"
id="g112">
</g>
<g
transform="translate(0,-85.331001)"
id="g114">
</g>
<g
transform="translate(0,-85.331001)"
id="g116">
</g>
<g
transform="translate(0,-85.331001)"
id="g118">
</g>
<g
transform="translate(0,-85.331001)"
id="g120">
</g>
<g
transform="translate(0,-85.331001)"
id="g122">
</g>
<g
transform="translate(0,-85.331001)"
id="g124">
</g>
<g
transform="translate(0,-85.331001)"
id="g126">
</g>
<g
transform="translate(0,-85.331001)"
id="g128">
</g>
<g
transform="translate(0,-85.331001)"
id="g130">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

134
public/img/flags/ag.svg Executable file
View File

@ -0,0 +1,134 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32999"
width="512"
sodipodi:docname="ag.svg"
xml:space="preserve"
viewBox="0 0 512 341.32999"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata196"><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="defs194" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.665"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview192"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect147"
height="341.32599"
width="512"
y="0.0019979859" />
<path
id="path149"
d="m 88.751,136.53 c -2.239,11.029 -3.417,22.443 -3.417,34.134 0,11.69 1.179,23.105 3.417,34.134 L 256,215.184 423.249,204.796 c 2.239,-11.029 3.417,-22.443 3.417,-34.134 0,-11.691 -1.179,-23.105 -3.417,-34.134"
style="fill:#0052b4" />
<path
id="path151"
d="M 423.249,204.796 H 88.751 c 15.813,77.9 84.683,136.534 167.249,136.534 82.566,0 151.436,-58.634 167.249,-136.534 z"
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-85.335)"
id="polygon153"
points="212.117,207.603 195.971,178.238 228.894,184.536 233.068,151.276 256,175.738 278.933,151.276 283.105,184.536 316.029,178.238 299.884,207.604 330.203,221.865 181.797,221.865 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.335)"
id="g159">
<polygon
id="polygon155"
points="0,426.661 255.997,426.661 0,85.335 "
style="fill:#a2001d" />
<polygon
id="polygon157"
points="256.003,426.661 512,426.661 512,85.335 "
style="fill:#a2001d" />
</g>
<g
transform="translate(0,-85.335)"
id="g161">
</g>
<g
transform="translate(0,-85.335)"
id="g163">
</g>
<g
transform="translate(0,-85.335)"
id="g165">
</g>
<g
transform="translate(0,-85.335)"
id="g167">
</g>
<g
transform="translate(0,-85.335)"
id="g169">
</g>
<g
transform="translate(0,-85.335)"
id="g171">
</g>
<g
transform="translate(0,-85.335)"
id="g173">
</g>
<g
transform="translate(0,-85.335)"
id="g175">
</g>
<g
transform="translate(0,-85.335)"
id="g177">
</g>
<g
transform="translate(0,-85.335)"
id="g179">
</g>
<g
transform="translate(0,-85.335)"
id="g181">
</g>
<g
transform="translate(0,-85.335)"
id="g183">
</g>
<g
transform="translate(0,-85.335)"
id="g185">
</g>
<g
transform="translate(0,-85.335)"
id="g187">
</g>
<g
transform="translate(0,-85.335)"
id="g189">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

178
public/img/flags/ai.svg Executable file
View File

@ -0,0 +1,178 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="ai.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata277"><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="defs275" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview273"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect206"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.0049996339" />
<path
id="path208"
d="m 427.757,210.49 c 4.907,-6.752 8.185,-14.997 8.185,-24.982 v -74.203 c -6.202,4.659 -13.907,7.421 -22.261,7.421 -12.138,0 -22.912,-5.829 -29.682,-14.839 -6.77,9.01 -17.544,14.839 -29.682,14.839 -8.353,0 -16.059,-2.761 -22.261,-7.418 v 74.201 c 0,9.985 3.278,18.232 8.185,24.982 h 87.516 z"
style="fill:#f3f3f3" />
<g
transform="translate(0,-85.329)"
id="g216">
<path
id="path210"
d="m 412.32,257.071 c 2.362,-5.763 4.2,-14.188 4.2,-18.382 0,-6.737 -8.783,-12.198 -8.783,-12.198 0,0 -8.783,5.461 -8.783,12.198 0,4.194 1.838,12.619 4.2,18.382 l -5.07,11.448 c 2.98,1.212 6.237,1.885 9.653,1.885 3.416,0 6.673,-0.673 9.653,-1.885 z"
style="fill:#ff9811" />
<path
id="path212"
d="m 377.994,220.004 c -6.171,0.836 -14.385,3.459 -18.017,5.556 -5.835,3.369 -6.173,13.704 -6.173,13.704 0,0 9.121,4.875 14.955,1.507 3.632,-2.097 10.008,-7.9 13.816,-12.828 l 12.451,-1.333 c -0.441,-3.186 -1.488,-6.343 -3.194,-9.302 -1.71,-2.958 -3.919,-5.444 -6.459,-7.418 z"
style="fill:#ff9811" />
<path
id="path214"
d="m 363.059,268.267 c 3.809,4.925 10.187,10.728 13.818,12.824 5.835,3.368 14.955,-1.507 14.955,-1.507 0,0 -0.339,-10.336 -6.173,-13.705 -3.633,-2.097 -11.846,-4.717 -18.019,-5.552 l -7.378,-10.115 c -2.539,1.975 -4.75,4.461 -6.459,7.416 -1.707,2.96 -2.753,6.116 -3.194,9.304 z"
style="fill:#ff9811" />
</g>
<path
id="path218"
d="m 338.408,207.77 c 13.859,22.236 45.592,29.679 45.592,29.679 0,0 31.733,-7.443 45.592,-29.679 z"
style="fill:#338af3" />
<g
transform="translate(0,-85.329)"
id="g228">
<path
id="path220"
d="M 256,186.665 H 144.006 v 69.331 H 160 v -48.918 l 73.372,48.918 H 256 l -80.006,-53.337 h 22.628 L 256,240.915 V 233.38 L 209.931,202.66 H 256 Z"
style="fill:#f0f0f0" />
<path
id="path222"
d="M 175.994,138.66 256,85.334 H 233.372 L 160,134.241 V 85.334 h -15.994 v 69.331 H 256 V 138.66 H 209.931 L 256,107.951 v -7.535 l -57.377,38.244 z"
style="fill:#f0f0f0" />
<path
id="path224"
d="m 96,85.334 v 48.907 L 22.628,85.334 H 0 L 80.006,138.66 H 57.377 L 0,100.415 v 7.536 L 46.069,138.66 H 0 v 16.006 H 111.994 V 85.334 Z"
style="fill:#f0f0f0" />
<path
id="path226"
d="m 0,186.665 v 15.994 H 46.069 L 0,233.38 v 7.535 L 57.377,202.66 H 80.005 L 0,255.997 H 22.628 L 96,207.078 v 48.918 h 15.994 v -69.331 z"
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.329)"
id="g240">
<polygon
id="polygon230"
points="112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 144,85.329 112,85.329 "
style="fill:#d80027" />
<polygon
id="polygon232"
points="0,100.412 57.377,138.663 80,138.663 0,85.329 "
style="fill:#d80027" />
<polygon
id="polygon234"
points="256,100.412 256,85.329 176,138.663 198.623,138.663 "
style="fill:#d80027" />
<polygon
id="polygon236"
points="0,255.997 80,202.663 57.377,202.663 0,240.915 "
style="fill:#d80027" />
<polygon
id="polygon238"
points="256,240.915 198.623,202.663 176,202.663 256,255.997 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.329)"
id="g242">
</g>
<g
transform="translate(0,-85.329)"
id="g244">
</g>
<g
transform="translate(0,-85.329)"
id="g246">
</g>
<g
transform="translate(0,-85.329)"
id="g248">
</g>
<g
transform="translate(0,-85.329)"
id="g250">
</g>
<g
transform="translate(0,-85.329)"
id="g252">
</g>
<g
transform="translate(0,-85.329)"
id="g254">
</g>
<g
transform="translate(0,-85.329)"
id="g256">
</g>
<g
transform="translate(0,-85.329)"
id="g258">
</g>
<g
transform="translate(0,-85.329)"
id="g260">
</g>
<g
transform="translate(0,-85.329)"
id="g262">
</g>
<g
transform="translate(0,-85.329)"
id="g264">
</g>
<g
transform="translate(0,-85.329)"
id="g266">
</g>
<g
transform="translate(0,-85.329)"
id="g268">
</g>
<g
transform="translate(0,-85.329)"
id="g270">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

113
public/img/flags/al.svg Executable file
View File

@ -0,0 +1,113 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="al.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata326"><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="defs324" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview322"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect287"
height="341.33701"
width="512"
style="fill:#d80027"
y="0" />
<path
id="path289"
d="m 352.464,126.669 h -61.817 c 3.817,-3.996 6.165,-9.405 6.165,-15.368 0,-12.295001 -9.966,-22.261001 -22.261,-22.261001 -7.745,0 -14.563,3.957 -18.551,9.958 -3.988,-6 -10.805,-9.958 -18.551,-9.958 -12.295,0 -22.261,9.966 -22.261,22.261001 0,5.963 2.349,11.372 6.165,15.368 h -61.817 c 0,16.393 14.278,29.68 30.67,29.68 h -0.988 c 0,16.393 13.289,29.682 29.682,29.682 0,5.309 1.399,10.287 3.842,14.595 l -24.619,24.621 18.888,18.888 26.794,-26.794 c 1.05,0.385 2.136,0.692 3.257,0.903 l -16.191,36.557 25.129,27.167 25.13,-27.167 -16.191,-36.557 c 1.122,-0.21 2.207,-0.518 3.257,-0.903 l 26.794,26.794 18.888,-18.888 -24.621,-24.621 c 2.443,-4.309 3.842,-9.286 3.842,-14.595 16.393,0 29.682,-13.289 29.682,-29.682 h -0.988 c 16.393,0.001 30.671,-13.287 30.671,-29.68 z" />
<g
transform="translate(0,-85.331001)"
id="g291">
</g>
<g
transform="translate(0,-85.331001)"
id="g293">
</g>
<g
transform="translate(0,-85.331001)"
id="g295">
</g>
<g
transform="translate(0,-85.331001)"
id="g297">
</g>
<g
transform="translate(0,-85.331001)"
id="g299">
</g>
<g
transform="translate(0,-85.331001)"
id="g301">
</g>
<g
transform="translate(0,-85.331001)"
id="g303">
</g>
<g
transform="translate(0,-85.331001)"
id="g305">
</g>
<g
transform="translate(0,-85.331001)"
id="g307">
</g>
<g
transform="translate(0,-85.331001)"
id="g309">
</g>
<g
transform="translate(0,-85.331001)"
id="g311">
</g>
<g
transform="translate(0,-85.331001)"
id="g313">
</g>
<g
transform="translate(0,-85.331001)"
id="g315">
</g>
<g
transform="translate(0,-85.331001)"
id="g317">
</g>
<g
transform="translate(0,-85.331001)"
id="g319">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

124
public/img/flags/am.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="am.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata377"><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="defs375" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview373"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect336"
height="341.32599"
width="512"
style="fill:#0052b4"
y="0" />
<rect
x="0"
id="rect338"
height="113.775"
width="512"
style="fill:#d80027"
y="0" />
<rect
x="0"
id="rect340"
height="113.775"
width="512"
style="fill:#ff9811"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g342">
</g>
<g
transform="translate(0,-85.336998)"
id="g344">
</g>
<g
transform="translate(0,-85.336998)"
id="g346">
</g>
<g
transform="translate(0,-85.336998)"
id="g348">
</g>
<g
transform="translate(0,-85.336998)"
id="g350">
</g>
<g
transform="translate(0,-85.336998)"
id="g352">
</g>
<g
transform="translate(0,-85.336998)"
id="g354">
</g>
<g
transform="translate(0,-85.336998)"
id="g356">
</g>
<g
transform="translate(0,-85.336998)"
id="g358">
</g>
<g
transform="translate(0,-85.336998)"
id="g360">
</g>
<g
transform="translate(0,-85.336998)"
id="g362">
</g>
<g
transform="translate(0,-85.336998)"
id="g364">
</g>
<g
transform="translate(0,-85.336998)"
id="g366">
</g>
<g
transform="translate(0,-85.336998)"
id="g368">
</g>
<g
transform="translate(0,-85.336998)"
id="g370">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

132
public/img/flags/ao.svg Executable file
View File

@ -0,0 +1,132 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="ao.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata434"><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="defs432" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview430"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect387"
height="341.33701"
width="512"
y="0" />
<rect
x="0"
id="rect389"
height="170.66299"
width="512"
style="fill:#d80027"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g397">
<polygon
id="polygon391"
points="241.554,248.574 256.01,238.058 270.48,248.557 264.944,231.558 279.402,221.04 261.525,221.052 255.99,204.052 250.475,221.058 232.598,221.069 247.067,231.569 "
style="fill:#ffda44" />
<path
id="path393"
d="M 298.666,182.094 C 285.217,174.329 270.513,170.664 256,170.69 v 22.255 c 10.728,-0.019 21.595,2.688 31.536,8.427 30.119,17.389 40.476,56.039 23.086,86.158 -17.388,30.119 -56.04,40.476 -86.158,23.087 -8.774,-5.065 -15.858,-11.944 -21.08,-19.882 l -18.584,12.27 c 7.066,10.739 16.662,20.037 28.533,26.891 40.75,23.526 93.04,9.515 116.567,-31.234 23.527,-40.75 9.516,-93.042 -31.234,-116.568 z"
style="fill:#ffda44" />
<path
id="path395"
d="m 206.792,241.154 c -5.9,10.786 -1.939,24.313 8.846,30.214 l 72.299,39.506 c -4.916,8.988 -2.306,19.927 6.682,24.843 L 314.15,346.4 c 8.988,4.917 20.261,1.616 25.178,-7.372 l 10.683,-19.529 z"
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.331001)"
id="g399">
</g>
<g
transform="translate(0,-85.331001)"
id="g401">
</g>
<g
transform="translate(0,-85.331001)"
id="g403">
</g>
<g
transform="translate(0,-85.331001)"
id="g405">
</g>
<g
transform="translate(0,-85.331001)"
id="g407">
</g>
<g
transform="translate(0,-85.331001)"
id="g409">
</g>
<g
transform="translate(0,-85.331001)"
id="g411">
</g>
<g
transform="translate(0,-85.331001)"
id="g413">
</g>
<g
transform="translate(0,-85.331001)"
id="g415">
</g>
<g
transform="translate(0,-85.331001)"
id="g417">
</g>
<g
transform="translate(0,-85.331001)"
id="g419">
</g>
<g
transform="translate(0,-85.331001)"
id="g421">
</g>
<g
transform="translate(0,-85.331001)"
id="g423">
</g>
<g
transform="translate(0,-85.331001)"
id="g425">
</g>
<g
transform="translate(0,-85.331001)"
id="g427">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

133
public/img/flags/ar.svg Executable file
View File

@ -0,0 +1,133 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="ar.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata489"><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="defs487" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview485"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect444"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<g
transform="translate(0,-85.336998)"
id="g450">
<rect
x="0"
id="rect446"
height="113.775"
width="512"
style="fill:#338af3"
y="85.336998" />
<rect
x="0"
id="rect448"
height="113.775"
width="512"
style="fill:#338af3"
y="312.888" />
</g>
<polygon
transform="translate(0,-85.336998)"
id="polygon452"
points="289.013,279.993 270.906,276.529 268.612,294.82 256,281.367 243.388,294.82 241.094,276.529 222.987,279.992 231.866,263.842 215.191,256 231.867,248.156 222.987,232.008 241.093,235.471 243.388,217.18 256,230.633 268.612,217.18 270.906,235.471 289.013,232.008 280.134,248.157 296.809,256 280.133,263.844 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.336998)"
id="g454">
</g>
<g
transform="translate(0,-85.336998)"
id="g456">
</g>
<g
transform="translate(0,-85.336998)"
id="g458">
</g>
<g
transform="translate(0,-85.336998)"
id="g460">
</g>
<g
transform="translate(0,-85.336998)"
id="g462">
</g>
<g
transform="translate(0,-85.336998)"
id="g464">
</g>
<g
transform="translate(0,-85.336998)"
id="g466">
</g>
<g
transform="translate(0,-85.336998)"
id="g468">
</g>
<g
transform="translate(0,-85.336998)"
id="g470">
</g>
<g
transform="translate(0,-85.336998)"
id="g472">
</g>
<g
transform="translate(0,-85.336998)"
id="g474">
</g>
<g
transform="translate(0,-85.336998)"
id="g476">
</g>
<g
transform="translate(0,-85.336998)"
id="g478">
</g>
<g
transform="translate(0,-85.336998)"
id="g480">
</g>
<g
transform="translate(0,-85.336998)"
id="g482">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

129
public/img/flags/as.svg Executable 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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="344.15399"
width="512"
sodipodi:docname="as.svg"
xml:space="preserve"
viewBox="0 0 512 344.15399"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata544"><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="defs542" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="172.077"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview540"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect499"
height="341.32599"
width="512"
style="fill:#0052b4"
y="0" />
<polygon
transform="translate(0,-83.922997)"
id="polygon501"
points="512,408.038 512,428.077 0,258.293 512,88.508 512,108.546 59.699,258.293 "
style="fill:#d80027" />
<polyline
transform="translate(0,-83.922997)"
id="polyline503"
points="512,374.201 512,408.038 59.699,258.293 512,108.546 512,142.384 "
style="fill:#f0f0f0" />
<path
id="path505"
d="m 493.301,169.57 h -29.275 c 7.612,-9.139 7.141,-22.736 -1.432,-31.31 9.084,-9.082 9.084,-23.81 0,-32.895 l -0.546,0.549 c 9.082,-9.081997 9.63,-24.358997 0.546,-33.440997 L 331.019,204.048 c 9.084,9.085 23.552,8.976 32.634,-0.108 l 2.532,-2.314 63.003,-5.728 v 27.097 h 21.37 v -29.04 l 32.056,-2.913 z"
style="fill:#a2001d" />
<polygon
transform="translate(0,-83.922997)"
id="polygon507"
points="333.03,294.714 471.938,294.714 471.938,316.084 333.03,316.084 311.652,305.399 "
style="fill:#ffda44" />
<g
transform="translate(0,-83.922997)"
id="g509">
</g>
<g
transform="translate(0,-83.922997)"
id="g511">
</g>
<g
transform="translate(0,-83.922997)"
id="g513">
</g>
<g
transform="translate(0,-83.922997)"
id="g515">
</g>
<g
transform="translate(0,-83.922997)"
id="g517">
</g>
<g
transform="translate(0,-83.922997)"
id="g519">
</g>
<g
transform="translate(0,-83.922997)"
id="g521">
</g>
<g
transform="translate(0,-83.922997)"
id="g523">
</g>
<g
transform="translate(0,-83.922997)"
id="g525">
</g>
<g
transform="translate(0,-83.922997)"
id="g527">
</g>
<g
transform="translate(0,-83.922997)"
id="g529">
</g>
<g
transform="translate(0,-83.922997)"
id="g531">
</g>
<g
transform="translate(0,-83.922997)"
id="g533">
</g>
<g
transform="translate(0,-83.922997)"
id="g535">
</g>
<g
transform="translate(0,-83.922997)"
id="g537">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

128
public/img/flags/at.svg Executable file
View File

@ -0,0 +1,128 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="at.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata597"><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="defs595" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview593"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect554"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<g
transform="translate(0,-85.336998)"
id="g560">
<rect
x="0"
id="rect556"
height="113.775"
width="512"
style="fill:#d80027"
y="85.336998" />
<rect
x="0"
id="rect558"
height="113.775"
width="512"
style="fill:#d80027"
y="312.888" />
</g>
<g
transform="translate(0,-85.336998)"
id="g562">
</g>
<g
transform="translate(0,-85.336998)"
id="g564">
</g>
<g
transform="translate(0,-85.336998)"
id="g566">
</g>
<g
transform="translate(0,-85.336998)"
id="g568">
</g>
<g
transform="translate(0,-85.336998)"
id="g570">
</g>
<g
transform="translate(0,-85.336998)"
id="g572">
</g>
<g
transform="translate(0,-85.336998)"
id="g574">
</g>
<g
transform="translate(0,-85.336998)"
id="g576">
</g>
<g
transform="translate(0,-85.336998)"
id="g578">
</g>
<g
transform="translate(0,-85.336998)"
id="g580">
</g>
<g
transform="translate(0,-85.336998)"
id="g582">
</g>
<g
transform="translate(0,-85.336998)"
id="g584">
</g>
<g
transform="translate(0,-85.336998)"
id="g586">
</g>
<g
transform="translate(0,-85.336998)"
id="g588">
</g>
<g
transform="translate(0,-85.336998)"
id="g590">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

195
public/img/flags/au.svg Executable file
View File

@ -0,0 +1,195 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="au.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata684"><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="defs682" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview680"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect607"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.003000183" />
<g
transform="translate(0,-85.33)"
id="g625">
<path
id="path609"
d="m 223.397,255.996 c 0.273,-0.304 0.543,-0.609 0.813,-0.916 -0.27,0.308 -0.546,0.61 -0.82,0.916 z"
style="fill:#f0f0f0" />
<polygon
id="polygon611"
points="224.922,315.118 213.839,337.971 233.739,353.752 208.963,359.337 209.032,384.735 189.217,368.845 169.403,384.735 169.472,359.337 144.696,353.752 164.596,337.971 153.513,315.118 178.259,320.836 189.217,297.923 200.175,320.836 "
style="fill:#f0f0f0" />
<polygon
id="polygon613"
points="404.106,334.588 398.82,345.488 408.312,353.016 396.494,355.679 396.526,367.793 387.076,360.215 377.626,367.793 377.658,355.679 365.841,353.016 375.332,345.488 370.047,334.588 381.85,337.316 387.076,326.387 392.303,337.316 "
style="fill:#f0f0f0" />
<polygon
id="polygon615"
points="355.483,218.649 350.197,229.55 359.688,237.078 347.871,239.741 347.903,251.856 338.453,244.276 329.002,251.856 329.035,239.741 317.217,237.078 326.708,229.55 321.424,218.649 333.226,221.378 338.453,210.448 343.68,221.378 "
style="fill:#f0f0f0" />
<polygon
id="polygon617"
points="404.106,152.398 398.82,163.3 408.311,170.827 396.494,173.491 396.526,185.605 387.076,178.025 377.626,185.605 377.658,173.491 365.841,170.827 375.332,163.3 370.047,152.398 381.85,155.128 387.076,144.198 392.303,155.128 "
style="fill:#f0f0f0" />
<polygon
id="polygon619"
points="446.576,202.087 441.292,212.987 450.783,220.514 438.965,223.178 438.998,235.292 429.547,227.714 420.097,235.292 420.129,223.178 408.312,220.514 417.803,212.987 412.517,202.087 424.32,204.815 429.547,193.886 434.774,204.815 "
style="fill:#f0f0f0" />
<polygon
id="polygon621"
points="416.593,264.508 405.83,272.328 409.942,284.98 399.179,277.161 388.414,284.98 392.526,272.328 381.763,264.508 395.067,264.508 399.179,251.856 403.289,264.508 "
style="fill:#f0f0f0" />
<polygon
id="polygon623"
points="210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.443 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.16 100.174,85.333 155.826,85.333 155.826,133.906 243.256,85.333 256,85.333 256,115.886 "
style="fill:#f0f0f0" />
</g>
<polygon
transform="translate(0,-85.33)"
id="polygon627"
points="112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 144,85.33 112,85.33 "
style="fill:#d80027" />
<polygon
transform="translate(0,-85.33)"
id="polygon629"
points="256,240.259 184.153,200.344 155.826,200.344 256,255.996 "
style="fill:#0052b4" />
<polygon
transform="translate(0,-85.33)"
id="polygon631"
points="256,240.259 184.153,200.344 155.826,200.344 256,255.996 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g637">
<polygon
id="polygon633"
points="256,240.259 184.153,200.344 155.826,200.344 256,255.996 "
style="fill:#d80027" />
<polygon
id="polygon635"
points="0,255.996 0,255.996 100.174,200.344 71.846,200.344 0,240.259 "
style="fill:#d80027" />
</g>
<polygon
transform="translate(0,-85.33)"
id="polygon639"
points="0,101.067 71.847,140.982 100.174,140.982 0,85.33 "
style="fill:#0052b4" />
<polygon
transform="translate(0,-85.33)"
id="polygon641"
points="0,101.067 71.847,140.982 100.174,140.982 0,85.33 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g647">
<polygon
id="polygon643"
points="0,101.067 71.847,140.982 100.174,140.982 0,85.33 "
style="fill:#d80027" />
<polygon
id="polygon645"
points="256,85.33 256,85.33 155.826,140.982 184.154,140.982 256,101.067 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.33)"
id="g649">
</g>
<g
transform="translate(0,-85.33)"
id="g651">
</g>
<g
transform="translate(0,-85.33)"
id="g653">
</g>
<g
transform="translate(0,-85.33)"
id="g655">
</g>
<g
transform="translate(0,-85.33)"
id="g657">
</g>
<g
transform="translate(0,-85.33)"
id="g659">
</g>
<g
transform="translate(0,-85.33)"
id="g661">
</g>
<g
transform="translate(0,-85.33)"
id="g663">
</g>
<g
transform="translate(0,-85.33)"
id="g665">
</g>
<g
transform="translate(0,-85.33)"
id="g667">
</g>
<g
transform="translate(0,-85.33)"
id="g669">
</g>
<g
transform="translate(0,-85.33)"
id="g671">
</g>
<g
transform="translate(0,-85.33)"
id="g673">
</g>
<g
transform="translate(0,-85.33)"
id="g675">
</g>
<g
transform="translate(0,-85.33)"
id="g677">
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

138
public/img/flags/aw.svg Executable file
View File

@ -0,0 +1,138 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="241.34"
width="362.02301"
sodipodi:docname="aw.svg"
xml:space="preserve"
viewBox="0 0 362.023 241.33999"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata741"><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="defs739" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="120.6705"
inkscape:cx="181.0115"
inkscape:zoom="2.3175323"
showgrid="false"
id="namedview737"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect694"
height="241.34"
width="362.02301"
style="fill:#338af3"
y="0" />
<polygon
transform="translate(0,-60.341)"
id="polygon696"
points="34.315,97.278 44.718,73.701 55.123,97.278 78.701,107.683 55.123,118.089 44.718,141.664 34.315,118.089 10.736,107.683 "
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-60.341)"
id="polygon698"
points="65.706,107.683 51.144,114.109 44.718,128.67 38.294,114.109 23.732,107.683 38.294,101.257 44.718,86.696 51.144,101.257 "
style="fill:#d80027" />
<g
transform="translate(0,-60.341)"
id="g704">
<rect
x="0"
id="rect700"
height="15.743"
width="362.02301"
style="fill:#ffda44"
y="212.496" />
<rect
x="0"
id="rect702"
height="15.743"
width="362.02301"
style="fill:#ffda44"
y="243.974" />
</g>
<g
transform="translate(0,-60.341)"
id="g706">
</g>
<g
transform="translate(0,-60.341)"
id="g708">
</g>
<g
transform="translate(0,-60.341)"
id="g710">
</g>
<g
transform="translate(0,-60.341)"
id="g712">
</g>
<g
transform="translate(0,-60.341)"
id="g714">
</g>
<g
transform="translate(0,-60.341)"
id="g716">
</g>
<g
transform="translate(0,-60.341)"
id="g718">
</g>
<g
transform="translate(0,-60.341)"
id="g720">
</g>
<g
transform="translate(0,-60.341)"
id="g722">
</g>
<g
transform="translate(0,-60.341)"
id="g724">
</g>
<g
transform="translate(0,-60.341)"
id="g726">
</g>
<g
transform="translate(0,-60.341)"
id="g728">
</g>
<g
transform="translate(0,-60.341)"
id="g730">
</g>
<g
transform="translate(0,-60.341)"
id="g732">
</g>
<g
transform="translate(0,-60.341)"
id="g734">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

120
public/img/flags/ax.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="ax.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata792"><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="defs790" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview788"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect751"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.0049996339" />
<polygon
transform="translate(0,-85.329)"
id="polygon753"
points="202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 512,295.883 202.195,295.883 "
style="fill:#ffda44" />
<polygon
transform="translate(0,-85.329)"
id="polygon755"
points="183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 512,234.666 512,277.329 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g757">
</g>
<g
transform="translate(0,-85.329)"
id="g759">
</g>
<g
transform="translate(0,-85.329)"
id="g761">
</g>
<g
transform="translate(0,-85.329)"
id="g763">
</g>
<g
transform="translate(0,-85.329)"
id="g765">
</g>
<g
transform="translate(0,-85.329)"
id="g767">
</g>
<g
transform="translate(0,-85.329)"
id="g769">
</g>
<g
transform="translate(0,-85.329)"
id="g771">
</g>
<g
transform="translate(0,-85.329)"
id="g773">
</g>
<g
transform="translate(0,-85.329)"
id="g775">
</g>
<g
transform="translate(0,-85.329)"
id="g777">
</g>
<g
transform="translate(0,-85.329)"
id="g779">
</g>
<g
transform="translate(0,-85.329)"
id="g781">
</g>
<g
transform="translate(0,-85.329)"
id="g783">
</g>
<g
transform="translate(0,-85.329)"
id="g785">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

136
public/img/flags/az.svg Executable file
View File

@ -0,0 +1,136 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="az.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata849"><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="defs847" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview845"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect802"
height="341.32599"
width="512"
style="fill:#d80027"
y="0" />
<rect
x="0"
id="rect804"
height="113.775"
width="512"
style="fill:#338af3"
y="0" />
<rect
x="0"
id="rect806"
height="113.775"
width="512"
style="fill:#6da544"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g812">
<path
id="path808"
d="m 259.2,297.6 c -22.975,0 -41.6,-18.625 -41.6,-41.6 0,-22.975 18.625,-41.6 41.6,-41.6 7.164,0 13.904,1.811 19.789,5 -9.232,-9.027 -21.857,-14.6 -35.789,-14.6 -28.277,0 -51.2,22.923 -51.2,51.2 0,28.277 22.923,51.2 51.2,51.2 13.932,0 26.557,-5.573 35.789,-14.6 -5.885,3.189 -12.625,5 -19.789,5 z"
style="fill:#f0f0f0" />
<polygon
id="polygon810"
points="311.565,235.635 304.503,250.489 320,256 304.503,261.511 311.565,276.365 296.71,269.303 291.2,284.8 285.69,269.303 270.835,276.365 277.897,261.511 262.4,256 277.897,250.489 270.835,235.635 285.69,242.697 291.2,227.2 296.71,242.697 "
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.336998)"
id="g814">
</g>
<g
transform="translate(0,-85.336998)"
id="g816">
</g>
<g
transform="translate(0,-85.336998)"
id="g818">
</g>
<g
transform="translate(0,-85.336998)"
id="g820">
</g>
<g
transform="translate(0,-85.336998)"
id="g822">
</g>
<g
transform="translate(0,-85.336998)"
id="g824">
</g>
<g
transform="translate(0,-85.336998)"
id="g826">
</g>
<g
transform="translate(0,-85.336998)"
id="g828">
</g>
<g
transform="translate(0,-85.336998)"
id="g830">
</g>
<g
transform="translate(0,-85.336998)"
id="g832">
</g>
<g
transform="translate(0,-85.336998)"
id="g834">
</g>
<g
transform="translate(0,-85.336998)"
id="g836">
</g>
<g
transform="translate(0,-85.336998)"
id="g838">
</g>
<g
transform="translate(0,-85.336998)"
id="g840">
</g>
<g
transform="translate(0,-85.336998)"
id="g842">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

167
public/img/flags/ba.svg Executable file
View File

@ -0,0 +1,167 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="ba.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata924"><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="defs922" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview920"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect859"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.0049996339" />
<polyline
transform="translate(0,-85.329)"
id="polyline861"
points="99.905,85.329 441.238,85.329 441.238,426.663 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.329)"
id="g887">
<polygon
id="polygon863"
points="66.271,100.632 61.292,85.33 41.525,85.33 36.561,100.645 51.404,89.838 "
style="fill:#f0f0f0" />
<polygon
id="polygon865"
points="76.977,103.632 58.612,103.644 73.479,114.44 67.818,131.901 82.661,121.095 97.527,131.89 91.843,114.416 106.697,103.621 88.332,103.632 82.649,86.16 "
style="fill:#f0f0f0" />
<polygon
id="polygon867"
points="108.233,134.89 89.868,134.901 104.735,145.696 99.074,163.158 113.918,152.351 128.784,163.147 123.099,145.673 137.955,134.879 119.59,134.89 113.906,117.416 "
style="fill:#f0f0f0" />
<polygon
id="polygon869"
points="139.49,166.146 121.126,166.157 135.992,176.953 130.331,194.414 145.174,183.608 160.04,194.403 154.357,176.929 169.212,166.135 150.846,166.146 145.163,148.673 "
style="fill:#f0f0f0" />
<polygon
id="polygon871"
points="170.748,197.403 152.382,197.414 167.248,208.209 161.588,225.671 176.431,214.864 191.297,225.66 185.613,208.187 200.468,197.392 182.103,197.403 176.42,179.929 "
style="fill:#f0f0f0" />
<polygon
id="polygon873"
points="202.004,228.659 183.639,228.671 198.505,239.466 192.845,256.928 207.687,246.122 222.553,256.916 216.87,239.443 231.725,228.648 213.359,228.659 207.676,211.187 "
style="fill:#f0f0f0" />
<polygon
id="polygon875"
points="233.261,259.916 214.895,259.928 229.762,270.723 224.101,288.185 238.945,277.378 253.811,288.172 248.126,270.7 262.981,259.906 244.616,259.916 238.933,242.443 "
style="fill:#f0f0f0" />
<polygon
id="polygon877"
points="264.517,291.173 246.152,291.184 261.019,301.98 255.358,319.441 270.201,308.635 285.067,319.43 279.384,301.956 294.237,291.162 275.872,291.173 270.19,273.7 "
style="fill:#f0f0f0" />
<polygon
id="polygon879"
points="295.773,322.43 277.409,322.441 292.275,333.236 286.614,350.698 301.458,339.891 316.324,350.687 310.64,333.213 325.495,322.419 307.13,322.43 301.447,304.956 "
style="fill:#f0f0f0" />
<polygon
id="polygon881"
points="327.031,353.686 308.666,353.698 323.532,364.493 317.871,381.955 332.714,371.148 347.58,381.943 341.897,364.471 356.752,353.675 338.386,353.686 332.703,336.214 "
style="fill:#f0f0f0" />
<polygon
id="polygon883"
points="358.288,384.943 339.922,384.955 354.788,395.749 349.128,413.212 363.971,402.405 378.837,413.2 373.153,395.727 388.008,384.932 369.643,384.943 363.96,367.47 "
style="fill:#f0f0f0" />
<polygon
id="polygon885"
points="371.179,416.211 385.573,426.664 404.851,426.664 419.265,416.188 400.899,416.199 395.216,398.727 389.544,416.199 "
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.329)"
id="g889">
</g>
<g
transform="translate(0,-85.329)"
id="g891">
</g>
<g
transform="translate(0,-85.329)"
id="g893">
</g>
<g
transform="translate(0,-85.329)"
id="g895">
</g>
<g
transform="translate(0,-85.329)"
id="g897">
</g>
<g
transform="translate(0,-85.329)"
id="g899">
</g>
<g
transform="translate(0,-85.329)"
id="g901">
</g>
<g
transform="translate(0,-85.329)"
id="g903">
</g>
<g
transform="translate(0,-85.329)"
id="g905">
</g>
<g
transform="translate(0,-85.329)"
id="g907">
</g>
<g
transform="translate(0,-85.329)"
id="g909">
</g>
<g
transform="translate(0,-85.329)"
id="g911">
</g>
<g
transform="translate(0,-85.329)"
id="g913">
</g>
<g
transform="translate(0,-85.329)"
id="g915">
</g>
<g
transform="translate(0,-85.329)"
id="g917">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

131
public/img/flags/bb.svg Executable file
View File

@ -0,0 +1,131 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bb.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata979"><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="defs977" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview975"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect934"
height="341.33701"
width="512"
style="fill:#ffda44"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g940">
<rect
x="0"
id="rect936"
height="341.33701"
width="170.66299"
style="fill:#0052b4"
y="85.331001" />
<rect
id="rect938"
height="341.33701"
width="170.66299"
style="fill:#0052b4"
y="85.331001"
x="341.33701" />
</g>
<path
id="path942"
d="m 307.942,103.881 9.955,4.978 -9.955,-4.978 -9.955,-4.978001 C 297.387,100.104 284.388,126.552 282.264,166.953 H 267.13 V 103.88 L 256,89.040999 244.87,103.881 v 63.073 H 229.737 C 227.613,126.553 214.614,100.105 214.014,98.903999 L 194.103,108.859 c 0.137,0.273 13.666,27.811 13.666,69.226 v 11.13 h 37.101 v 63.073 h 22.261 v -63.073 h 37.101 v -11.13 c 0,-21.413 3.705,-39.068 6.813,-50.109 3.389,-12.04 6.831,-19.072 6.865,-19.141 z" />
<g
transform="translate(0,-85.331001)"
id="g944">
</g>
<g
transform="translate(0,-85.331001)"
id="g946">
</g>
<g
transform="translate(0,-85.331001)"
id="g948">
</g>
<g
transform="translate(0,-85.331001)"
id="g950">
</g>
<g
transform="translate(0,-85.331001)"
id="g952">
</g>
<g
transform="translate(0,-85.331001)"
id="g954">
</g>
<g
transform="translate(0,-85.331001)"
id="g956">
</g>
<g
transform="translate(0,-85.331001)"
id="g958">
</g>
<g
transform="translate(0,-85.331001)"
id="g960">
</g>
<g
transform="translate(0,-85.331001)"
id="g962">
</g>
<g
transform="translate(0,-85.331001)"
id="g964">
</g>
<g
transform="translate(0,-85.331001)"
id="g966">
</g>
<g
transform="translate(0,-85.331001)"
id="g968">
</g>
<g
transform="translate(0,-85.331001)"
id="g970">
</g>
<g
transform="translate(0,-85.331001)"
id="g972">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

116
public/img/flags/bd.svg Executable file
View File

@ -0,0 +1,116 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bd.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1028"><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="defs1026" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1024"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect989"
height="341.33701"
width="512"
style="fill:#496e2d"
y="0" />
<circle
id="circle991"
r="74.207001"
cy="170.66299"
cx="218.90199"
style="fill:#d80027" />
<g
transform="translate(0,-85.331001)"
id="g993">
</g>
<g
transform="translate(0,-85.331001)"
id="g995">
</g>
<g
transform="translate(0,-85.331001)"
id="g997">
</g>
<g
transform="translate(0,-85.331001)"
id="g999">
</g>
<g
transform="translate(0,-85.331001)"
id="g1001">
</g>
<g
transform="translate(0,-85.331001)"
id="g1003">
</g>
<g
transform="translate(0,-85.331001)"
id="g1005">
</g>
<g
transform="translate(0,-85.331001)"
id="g1007">
</g>
<g
transform="translate(0,-85.331001)"
id="g1009">
</g>
<g
transform="translate(0,-85.331001)"
id="g1011">
</g>
<g
transform="translate(0,-85.331001)"
id="g1013">
</g>
<g
transform="translate(0,-85.331001)"
id="g1015">
</g>
<g
transform="translate(0,-85.331001)"
id="g1017">
</g>
<g
transform="translate(0,-85.331001)"
id="g1019">
</g>
<g
transform="translate(0,-85.331001)"
id="g1021">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

123
public/img/flags/be.svg Executable file
View File

@ -0,0 +1,123 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="be.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1079"><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="defs1077" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1075"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1038"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect1040"
height="341.33701"
width="170.66299"
y="0" />
<rect
id="rect1042"
height="341.33701"
width="170.66299"
style="fill:#d80027"
y="0"
x="341.33701" />
<g
transform="translate(0,-85.331001)"
id="g1044">
</g>
<g
transform="translate(0,-85.331001)"
id="g1046">
</g>
<g
transform="translate(0,-85.331001)"
id="g1048">
</g>
<g
transform="translate(0,-85.331001)"
id="g1050">
</g>
<g
transform="translate(0,-85.331001)"
id="g1052">
</g>
<g
transform="translate(0,-85.331001)"
id="g1054">
</g>
<g
transform="translate(0,-85.331001)"
id="g1056">
</g>
<g
transform="translate(0,-85.331001)"
id="g1058">
</g>
<g
transform="translate(0,-85.331001)"
id="g1060">
</g>
<g
transform="translate(0,-85.331001)"
id="g1062">
</g>
<g
transform="translate(0,-85.331001)"
id="g1064">
</g>
<g
transform="translate(0,-85.331001)"
id="g1066">
</g>
<g
transform="translate(0,-85.331001)"
id="g1068">
</g>
<g
transform="translate(0,-85.331001)"
id="g1070">
</g>
<g
transform="translate(0,-85.331001)"
id="g1072">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

122
public/img/flags/bf.svg Executable file
View File

@ -0,0 +1,122 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bf.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1130"><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="defs1128" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1126"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1089"
height="341.33701"
width="512"
style="fill:#6da544"
y="0" />
<rect
x="0"
id="rect1091"
height="170.66299"
width="512"
style="fill:#d80027"
y="0" />
<polygon
transform="translate(0,-85.331001)"
id="polygon1093"
points="310.616,236.311 276.861,260.836 289.753,300.516 255.999,275.992 222.245,300.516 235.139,260.836 201.384,236.311 243.106,236.311 255.999,196.632 268.89,236.311 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.331001)"
id="g1095">
</g>
<g
transform="translate(0,-85.331001)"
id="g1097">
</g>
<g
transform="translate(0,-85.331001)"
id="g1099">
</g>
<g
transform="translate(0,-85.331001)"
id="g1101">
</g>
<g
transform="translate(0,-85.331001)"
id="g1103">
</g>
<g
transform="translate(0,-85.331001)"
id="g1105">
</g>
<g
transform="translate(0,-85.331001)"
id="g1107">
</g>
<g
transform="translate(0,-85.331001)"
id="g1109">
</g>
<g
transform="translate(0,-85.331001)"
id="g1111">
</g>
<g
transform="translate(0,-85.331001)"
id="g1113">
</g>
<g
transform="translate(0,-85.331001)"
id="g1115">
</g>
<g
transform="translate(0,-85.331001)"
id="g1117">
</g>
<g
transform="translate(0,-85.331001)"
id="g1119">
</g>
<g
transform="translate(0,-85.331001)"
id="g1121">
</g>
<g
transform="translate(0,-85.331001)"
id="g1123">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

124
public/img/flags/bg.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="bg.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1181"><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="defs1179" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1177"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1140"
height="341.32599"
width="512"
style="fill:#496e2d"
y="0" />
<rect
x="0"
id="rect1142"
height="113.775"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect1144"
height="113.775"
width="512"
style="fill:#d80027"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g1146">
</g>
<g
transform="translate(0,-85.336998)"
id="g1148">
</g>
<g
transform="translate(0,-85.336998)"
id="g1150">
</g>
<g
transform="translate(0,-85.336998)"
id="g1152">
</g>
<g
transform="translate(0,-85.336998)"
id="g1154">
</g>
<g
transform="translate(0,-85.336998)"
id="g1156">
</g>
<g
transform="translate(0,-85.336998)"
id="g1158">
</g>
<g
transform="translate(0,-85.336998)"
id="g1160">
</g>
<g
transform="translate(0,-85.336998)"
id="g1162">
</g>
<g
transform="translate(0,-85.336998)"
id="g1164">
</g>
<g
transform="translate(0,-85.336998)"
id="g1166">
</g>
<g
transform="translate(0,-85.336998)"
id="g1168">
</g>
<g
transform="translate(0,-85.336998)"
id="g1170">
</g>
<g
transform="translate(0,-85.336998)"
id="g1172">
</g>
<g
transform="translate(0,-85.336998)"
id="g1174">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

115
public/img/flags/bh.svg Executable file
View File

@ -0,0 +1,115 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="339.85999"
width="512"
sodipodi:docname="bh.svg"
xml:space="preserve"
viewBox="0 0 512 339.85999"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1230"><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="defs1228" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="169.93"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1226"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
id="rect1191"
height="339.84799"
width="509.784"
style="fill:#d80027"
y="0.0059963991"
x="2.2160001" />
<polygon
transform="translate(0,-86.07)"
id="polygon1193"
points="209.455,205.493 159.219,230.76 209.455,256.017 159.219,281.283 209.455,306.54 159.219,331.808 209.455,357.065 159.219,382.332 209.455,407.6 173.005,425.93 0,425.93 0,86.07 172.939,86.07 209.455,104.434 159.219,129.701 209.455,154.969 159.219,180.236 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-86.07)"
id="g1195">
</g>
<g
transform="translate(0,-86.07)"
id="g1197">
</g>
<g
transform="translate(0,-86.07)"
id="g1199">
</g>
<g
transform="translate(0,-86.07)"
id="g1201">
</g>
<g
transform="translate(0,-86.07)"
id="g1203">
</g>
<g
transform="translate(0,-86.07)"
id="g1205">
</g>
<g
transform="translate(0,-86.07)"
id="g1207">
</g>
<g
transform="translate(0,-86.07)"
id="g1209">
</g>
<g
transform="translate(0,-86.07)"
id="g1211">
</g>
<g
transform="translate(0,-86.07)"
id="g1213">
</g>
<g
transform="translate(0,-86.07)"
id="g1215">
</g>
<g
transform="translate(0,-86.07)"
id="g1217">
</g>
<g
transform="translate(0,-86.07)"
id="g1219">
</g>
<g
transform="translate(0,-86.07)"
id="g1221">
</g>
<g
transform="translate(0,-86.07)"
id="g1223">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

157
public/img/flags/bi.svg Executable file
View File

@ -0,0 +1,157 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bi.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1299"><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="defs1297" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1295"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1240"
height="341.32599"
width="512"
style="fill:#d80027"
y="0.0059979861" />
<g
transform="translate(0,-85.331)"
id="g1246">
<polygon
id="polygon1242"
points="0,112.089 215.864,256.006 0,399.911 "
style="fill:#6da544" />
<polygon
id="polygon1244"
points="296.136,256.006 512,112.089 512,399.911 "
style="fill:#6da544" />
</g>
<polygon
transform="translate(0,-85.331)"
id="polygon1248"
points="512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 512,112.089 296.136,256.006 "
style="fill:#0052b4" />
<g
transform="translate(0,-85.331)"
id="g1254">
<polygon
id="polygon1250"
points="512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 512,112.089 296.136,256.006 "
style="fill:#f0f0f0" />
<circle
id="circle1252"
r="74.207001"
cy="256"
cx="256"
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.331)"
id="g1262">
<polygon
id="polygon1256"
points="275.278,215.188 268.852,226.318 275.278,237.449 262.426,237.449 256,248.579 249.574,237.449 236.722,237.449 243.148,226.318 236.722,215.188 249.574,215.188 256,204.058 262.426,215.188 "
style="fill:#d80027" />
<polygon
id="polygon1258"
points="242.615,267.13 236.189,278.261 242.615,289.391 229.762,289.391 223.337,300.522 216.91,289.391 204.058,289.391 210.484,278.261 204.058,267.13 216.91,267.13 223.337,256 229.762,267.13 "
style="fill:#d80027" />
<polygon
id="polygon1260"
points="307.942,267.13 301.516,278.261 307.942,289.391 295.09,289.391 288.663,300.522 282.238,289.391 269.385,289.391 275.811,278.261 269.385,267.13 282.238,267.13 288.663,256 295.09,267.13 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.331)"
id="g1264">
</g>
<g
transform="translate(0,-85.331)"
id="g1266">
</g>
<g
transform="translate(0,-85.331)"
id="g1268">
</g>
<g
transform="translate(0,-85.331)"
id="g1270">
</g>
<g
transform="translate(0,-85.331)"
id="g1272">
</g>
<g
transform="translate(0,-85.331)"
id="g1274">
</g>
<g
transform="translate(0,-85.331)"
id="g1276">
</g>
<g
transform="translate(0,-85.331)"
id="g1278">
</g>
<g
transform="translate(0,-85.331)"
id="g1280">
</g>
<g
transform="translate(0,-85.331)"
id="g1282">
</g>
<g
transform="translate(0,-85.331)"
id="g1284">
</g>
<g
transform="translate(0,-85.331)"
id="g1286">
</g>
<g
transform="translate(0,-85.331)"
id="g1288">
</g>
<g
transform="translate(0,-85.331)"
id="g1290">
</g>
<g
transform="translate(0,-85.331)"
id="g1292">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

124
public/img/flags/bj.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="bj.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1350"><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="defs1348" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1346"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1309"
height="341.32599"
width="512"
style="fill:#6da544"
y="0" />
<rect
id="rect1311"
height="170.66299"
width="315.35901"
style="fill:#ffda44"
y="0"
x="196.64101" />
<rect
id="rect1313"
height="170.66299"
width="315.35901"
style="fill:#d80027"
y="170.66299"
x="196.64101" />
<g
transform="translate(0,-85.336998)"
id="g1315">
</g>
<g
transform="translate(0,-85.336998)"
id="g1317">
</g>
<g
transform="translate(0,-85.336998)"
id="g1319">
</g>
<g
transform="translate(0,-85.336998)"
id="g1321">
</g>
<g
transform="translate(0,-85.336998)"
id="g1323">
</g>
<g
transform="translate(0,-85.336998)"
id="g1325">
</g>
<g
transform="translate(0,-85.336998)"
id="g1327">
</g>
<g
transform="translate(0,-85.336998)"
id="g1329">
</g>
<g
transform="translate(0,-85.336998)"
id="g1331">
</g>
<g
transform="translate(0,-85.336998)"
id="g1333">
</g>
<g
transform="translate(0,-85.336998)"
id="g1335">
</g>
<g
transform="translate(0,-85.336998)"
id="g1337">
</g>
<g
transform="translate(0,-85.336998)"
id="g1339">
</g>
<g
transform="translate(0,-85.336998)"
id="g1341">
</g>
<g
transform="translate(0,-85.336998)"
id="g1343">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

143
public/img/flags/bl.svg Executable file
View File

@ -0,0 +1,143 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bl.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1411"><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="defs1409" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1407"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1360"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g1366">
<path
id="path1362"
d="m 390.061,222.603 h -56.147 c 0,-10.244 -8.306,-18.551 -18.551,-18.551 l -14.84,29.682 c 0,0 15.831,44.522 15.336,44.522 h 18.551 c 10.246,0 18.551,-8.306 18.551,-18.551 10.246,0 18.551,-8.306 18.551,-18.551 h -0.618 c 10.242,0 19.167,-8.305 19.167,-18.551 z"
style="fill:#acabb1" />
<path
id="path1364"
d="m 121.939,222.603 h 56.147 c 0,-10.244 8.306,-18.551 18.551,-18.551 l 14.84,29.682 c 0,0 -15.831,44.522 -15.336,44.522 H 177.59 c -10.246,0 -18.551,-8.306 -18.551,-18.551 -10.246,0 -18.551,-8.306 -18.551,-18.551 h 0.618 c -10.242,0 -19.167,-8.305 -19.167,-18.551 z"
style="fill:#acabb1" />
</g>
<polygon
transform="translate(0,-85.331001)"
id="polygon1368"
points="196.638,330.198 196.638,322.777 166.957,322.777 166.957,352.459 196.638,352.459 196.638,359.878 315.362,359.878 315.362,352.459 345.043,352.459 345.043,322.777 315.362,322.777 315.362,330.198 "
style="fill:#ffda44" />
<path
id="path1370"
d="m 196.638,118.721 v 74.202 c 0,45.44 59.362,59.363 59.362,59.363 0,0 59.362,-13.923 59.362,-59.363 V 118.721 L 256,111.301 Z"
style="fill:#0052b4" />
<rect
id="rect1372"
height="44.521999"
width="118.728"
style="fill:#d80027"
y="148.40298"
x="196.64101" />
<polygon
transform="translate(0,-85.331001)"
id="polygon1374"
points="278.261,181.791 270.84,174.372 270.84,152.111 241.16,152.111 241.16,174.372 233.739,181.791 226.318,178.081 226.318,166.951 196.638,166.951 196.638,204.052 315.362,204.052 315.362,166.951 285.682,166.951 285.682,178.081 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.331001)"
id="g1376">
</g>
<g
transform="translate(0,-85.331001)"
id="g1378">
</g>
<g
transform="translate(0,-85.331001)"
id="g1380">
</g>
<g
transform="translate(0,-85.331001)"
id="g1382">
</g>
<g
transform="translate(0,-85.331001)"
id="g1384">
</g>
<g
transform="translate(0,-85.331001)"
id="g1386">
</g>
<g
transform="translate(0,-85.331001)"
id="g1388">
</g>
<g
transform="translate(0,-85.331001)"
id="g1390">
</g>
<g
transform="translate(0,-85.331001)"
id="g1392">
</g>
<g
transform="translate(0,-85.331001)"
id="g1394">
</g>
<g
transform="translate(0,-85.331001)"
id="g1396">
</g>
<g
transform="translate(0,-85.331001)"
id="g1398">
</g>
<g
transform="translate(0,-85.331001)"
id="g1400">
</g>
<g
transform="translate(0,-85.331001)"
id="g1402">
</g>
<g
transform="translate(0,-85.331001)"
id="g1404">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

246
public/img/flags/bm.svg Executable file
View File

@ -0,0 +1,246 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="bm.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1520"><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="defs1518" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1516"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1421"
height="341.33701"
width="512"
style="fill:#d80027"
y="0.0049996339" />
<rect
x="0"
id="rect1423"
height="170.66299"
width="256"
style="fill:#f0f0f0"
y="0.0049996339" />
<g
transform="translate(0,-85.329)"
id="g1429">
<polygon
id="polygon1425"
points="112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 144,85.33 112,85.33 "
style="fill:#d80027" />
<polygon
id="polygon1427"
points="57.377,138.663 80,138.663 0,85.329 0,100.412 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.329)"
id="g1435">
<polygon
id="polygon1431"
points="46.069,138.663 0,107.951 0,138.663 "
style="fill:#2e52b2" />
<polygon
id="polygon1433"
points="22.628,85.331 96,85.331 96,134.244 "
style="fill:#2e52b2" />
</g>
<polygon
transform="translate(0,-85.329)"
id="polygon1437"
points="198.623,138.663 176,138.663 256,85.329 256,100.412 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g1443">
<polygon
id="polygon1439"
points="209.931,138.663 256,107.951 256,138.663 "
style="fill:#2e52b2" />
<polygon
id="polygon1441"
points="233.372,85.331 160,85.331 160,134.244 "
style="fill:#2e52b2" />
</g>
<polygon
transform="translate(0,-85.329)"
id="polygon1445"
points="57.377,138.663 80,138.663 0,85.329 0,100.412 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g1451">
<polygon
id="polygon1447"
points="46.069,138.663 0,107.951 0,138.663 "
style="fill:#2e52b2" />
<polygon
id="polygon1449"
points="22.628,85.331 96,85.331 96,134.244 "
style="fill:#2e52b2" />
</g>
<polygon
transform="translate(0,-85.329)"
id="polygon1453"
points="198.623,138.663 176,138.663 256,85.329 256,100.412 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g1459">
<polygon
id="polygon1455"
points="209.931,138.663 256,107.951 256,138.663 "
style="fill:#2e52b2" />
<polygon
id="polygon1457"
points="233.372,85.331 160,85.331 160,134.244 "
style="fill:#2e52b2" />
</g>
<polygon
transform="translate(0,-85.329)"
id="polygon1461"
points="57.377,202.663 80,202.663 0,255.997 0,240.915 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g1467">
<polygon
id="polygon1463"
points="46.069,202.663 0,233.376 0,202.663 "
style="fill:#2e52b2" />
<polygon
id="polygon1465"
points="22.628,255.994 96,255.994 96,207.082 "
style="fill:#2e52b2" />
</g>
<polygon
transform="translate(0,-85.329)"
id="polygon1469"
points="198.623,202.663 176,202.663 256,255.997 256,240.915 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g1475">
<polygon
id="polygon1471"
points="209.931,202.663 256,233.376 256,202.663 "
style="fill:#2e52b2" />
<polygon
id="polygon1473"
points="233.372,255.994 160,255.994 160,207.082 "
style="fill:#2e52b2" />
</g>
<path
id="path1477"
d="m 332.058,103.885 v 81.623 c 0,39.76 103.884,39.76 103.884,0 v -81.623 z"
style="fill:#f3f3f3" />
<path
id="path1479"
d="m 332.058,185.508 v 0 c 0,39.76 51.942,51.942 51.942,51.942 0,0 51.942,-12.182 51.942,-51.942 v 10e-4 H 332.058 Z"
style="fill:#6da544" />
<polygon
transform="translate(0,-85.329)"
id="polygon1481"
points="359.884,270.837 384,285.678 408.116,270.837 408.116,248.576 384,238.188 359.884,248.576 "
style="fill:#a2001d" />
<rect
id="rect1483"
height="22.261"
width="48.228001"
style="fill:#338af3"
y="140.983"
x="359.88" />
<g
transform="translate(0,-85.329)"
id="g1485">
</g>
<g
transform="translate(0,-85.329)"
id="g1487">
</g>
<g
transform="translate(0,-85.329)"
id="g1489">
</g>
<g
transform="translate(0,-85.329)"
id="g1491">
</g>
<g
transform="translate(0,-85.329)"
id="g1493">
</g>
<g
transform="translate(0,-85.329)"
id="g1495">
</g>
<g
transform="translate(0,-85.329)"
id="g1497">
</g>
<g
transform="translate(0,-85.329)"
id="g1499">
</g>
<g
transform="translate(0,-85.329)"
id="g1501">
</g>
<g
transform="translate(0,-85.329)"
id="g1503">
</g>
<g
transform="translate(0,-85.329)"
id="g1505">
</g>
<g
transform="translate(0,-85.329)"
id="g1507">
</g>
<g
transform="translate(0,-85.329)"
id="g1509">
</g>
<g
transform="translate(0,-85.329)"
id="g1511">
</g>
<g
transform="translate(0,-85.329)"
id="g1513">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

159
public/img/flags/bn.svg Executable file
View File

@ -0,0 +1,159 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="bn.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1585"><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="defs1583" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1581"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1530"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon1532"
points="512,359.591 273.232,265.198 0,152.412 0,199.078 512,406.261 " />
<polyline
transform="translate(0,-85.336998)"
id="polyline1534"
points="512,359.588 512,312.923 0,105.739 0,152.412 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.336998)"
id="g1548">
<path
id="path1536"
d="m 304.224,237.452 c 0,26.633 -21.591,48.224 -48.224,48.224 -26.633,0 -48.224,-21.591 -48.224,-48.224 0,-8.304 2.099,-16.118 5.796,-22.94 -10.465,10.702 -16.925,25.337 -16.925,41.488 0,32.779 26.573,59.353 59.353,59.353 32.78,0 59.353,-26.574 59.353,-59.353 0,-16.15 -6.46,-30.786 -16.925,-41.488 3.697,6.822 5.796,14.636 5.796,22.94 z"
style="fill:#d80027" />
<rect
id="rect1538"
height="111.282"
width="22.257999"
style="fill:#d80027"
y="181.80499"
x="244.87" />
<path
id="path1540"
d="m 293.095,204.066 h -74.191 c 0,5.122 4.461,9.274 9.583,9.274 h -0.309 c 0,5.122 4.153,9.274 9.274,9.274 0,5.122 4.153,9.274 9.274,9.274 h 18.548 c 5.122,0 9.274,-4.152 9.274,-9.274 5.122,0 9.274,-4.152 9.274,-9.274 h -0.308 c 5.119,0 9.581,-4.151 9.581,-9.274 z"
style="fill:#d80027" />
<rect
id="rect1542"
height="22.257999"
width="103.869"
style="fill:#d80027"
y="300.51099"
x="204.065" />
<rect
id="rect1544"
height="22.257999"
width="44.514"
style="fill:#d80027"
y="307.935"
x="278.26099" />
<rect
id="rect1546"
height="22.257999"
width="44.514"
style="fill:#d80027"
y="307.935"
x="189.229" />
</g>
<g
transform="translate(0,-85.336998)"
id="g1550">
</g>
<g
transform="translate(0,-85.336998)"
id="g1552">
</g>
<g
transform="translate(0,-85.336998)"
id="g1554">
</g>
<g
transform="translate(0,-85.336998)"
id="g1556">
</g>
<g
transform="translate(0,-85.336998)"
id="g1558">
</g>
<g
transform="translate(0,-85.336998)"
id="g1560">
</g>
<g
transform="translate(0,-85.336998)"
id="g1562">
</g>
<g
transform="translate(0,-85.336998)"
id="g1564">
</g>
<g
transform="translate(0,-85.336998)"
id="g1566">
</g>
<g
transform="translate(0,-85.336998)"
id="g1568">
</g>
<g
transform="translate(0,-85.336998)"
id="g1570">
</g>
<g
transform="translate(0,-85.336998)"
id="g1572">
</g>
<g
transform="translate(0,-85.336998)"
id="g1574">
</g>
<g
transform="translate(0,-85.336998)"
id="g1576">
</g>
<g
transform="translate(0,-85.336998)"
id="g1578">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

124
public/img/flags/bo.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="bo.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1636"><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="defs1634" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1632"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1595"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect1597"
height="113.775"
width="512"
style="fill:#d80027"
y="0" />
<rect
x="0"
id="rect1599"
height="113.775"
width="512"
style="fill:#6da544"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g1601">
</g>
<g
transform="translate(0,-85.336998)"
id="g1603">
</g>
<g
transform="translate(0,-85.336998)"
id="g1605">
</g>
<g
transform="translate(0,-85.336998)"
id="g1607">
</g>
<g
transform="translate(0,-85.336998)"
id="g1609">
</g>
<g
transform="translate(0,-85.336998)"
id="g1611">
</g>
<g
transform="translate(0,-85.336998)"
id="g1613">
</g>
<g
transform="translate(0,-85.336998)"
id="g1615">
</g>
<g
transform="translate(0,-85.336998)"
id="g1617">
</g>
<g
transform="translate(0,-85.336998)"
id="g1619">
</g>
<g
transform="translate(0,-85.336998)"
id="g1621">
</g>
<g
transform="translate(0,-85.336998)"
id="g1623">
</g>
<g
transform="translate(0,-85.336998)"
id="g1625">
</g>
<g
transform="translate(0,-85.336998)"
id="g1627">
</g>
<g
transform="translate(0,-85.336998)"
id="g1629">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

124
public/img/flags/bq-saba.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33206"
width="512"
sodipodi:docname="bq-saba.svg"
xml:space="preserve"
viewBox="0 0 512 341.33206"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1689"><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="defs1687" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.666"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1685"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1646"
height="341.32599"
width="512"
style="fill:#0052b4"
y="0.0059963381" />
<polygon
transform="translate(0,-85.334)"
id="polygon1648"
points="0,256.175 0,85.334 512,85.334 512,252.024 "
style="fill:#d80027" />
<path
id="path1650"
d="M 426.663,170.669 C 426.708,170.714 256.156,341.454 256,341.332 255.844,341.454 85.293,170.714 85.337,170.669 85.293,170.624 255.844,-0.117 256,0.006 c 0.156,-0.123 170.707,170.618 170.663,170.663 z"
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-85.334)"
id="polygon1652"
points="334.022,231.065 285.802,266.099 304.22,322.785 256,287.751 207.78,322.785 226.198,266.099 177.978,231.065 237.581,231.065 256,174.38 274.419,231.065 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.334)"
id="g1654">
</g>
<g
transform="translate(0,-85.334)"
id="g1656">
</g>
<g
transform="translate(0,-85.334)"
id="g1658">
</g>
<g
transform="translate(0,-85.334)"
id="g1660">
</g>
<g
transform="translate(0,-85.334)"
id="g1662">
</g>
<g
transform="translate(0,-85.334)"
id="g1664">
</g>
<g
transform="translate(0,-85.334)"
id="g1666">
</g>
<g
transform="translate(0,-85.334)"
id="g1668">
</g>
<g
transform="translate(0,-85.334)"
id="g1670">
</g>
<g
transform="translate(0,-85.334)"
id="g1672">
</g>
<g
transform="translate(0,-85.334)"
id="g1674">
</g>
<g
transform="translate(0,-85.334)"
id="g1676">
</g>
<g
transform="translate(0,-85.334)"
id="g1678">
</g>
<g
transform="translate(0,-85.334)"
id="g1680">
</g>
<g
transform="translate(0,-85.334)"
id="g1682">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

144
public/img/flags/bq-se.svg Executable file
View File

@ -0,0 +1,144 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="bq-se.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1750"><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="defs1748" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1746"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1699"
height="341.33701"
width="512"
style="fill:#d80027"
y="0.003000183" />
<rect
id="rect1701"
height="319.07599"
width="489.73901"
style="fill:#0052b4"
y="11.133997"
x="11.13" />
<g
transform="translate(0,-85.33)"
id="g1707">
<polygon
id="polygon1703"
points="380.8,255.996 256,334.439 131.2,255.996 256,177.554 "
style="fill:#d80027" />
<polygon
id="polygon1705"
points="0,250.431 0,261.561 250.435,261.561 250.435,426.662 261.565,426.662 261.565,261.561 512,261.561 512,250.431 261.565,250.431 261.565,85.33 250.435,85.33 250.435,250.431 "
style="fill:#d80027" />
</g>
<polygon
transform="translate(0,-85.33)"
id="polygon1709"
points="359.884,255.996 256,321.292 152.116,255.996 256,190.702 "
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-85.33)"
id="polygon1711"
points="196.641,285.681 197.287,284.39 211.478,255.996 226.315,270.833 256,270.833 270.837,248.572 285.685,255.996 300.522,241.159 325.02,277.901 312.654,285.681 "
style="fill:#6da544" />
<polygon
transform="translate(0,-85.33)"
id="polygon1713"
points="271.604,222.812 261.96,229.817 265.645,241.156 256,234.148 246.355,241.156 250.04,229.817 240.396,222.812 252.316,222.812 256,211.474 259.684,222.812 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.33)"
id="g1715">
</g>
<g
transform="translate(0,-85.33)"
id="g1717">
</g>
<g
transform="translate(0,-85.33)"
id="g1719">
</g>
<g
transform="translate(0,-85.33)"
id="g1721">
</g>
<g
transform="translate(0,-85.33)"
id="g1723">
</g>
<g
transform="translate(0,-85.33)"
id="g1725">
</g>
<g
transform="translate(0,-85.33)"
id="g1727">
</g>
<g
transform="translate(0,-85.33)"
id="g1729">
</g>
<g
transform="translate(0,-85.33)"
id="g1731">
</g>
<g
transform="translate(0,-85.33)"
id="g1733">
</g>
<g
transform="translate(0,-85.33)"
id="g1735">
</g>
<g
transform="translate(0,-85.33)"
id="g1737">
</g>
<g
transform="translate(0,-85.33)"
id="g1739">
</g>
<g
transform="translate(0,-85.33)"
id="g1741">
</g>
<g
transform="translate(0,-85.33)"
id="g1743">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

128
public/img/flags/bq.svg Executable file
View File

@ -0,0 +1,128 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="bq.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1805"><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="defs1803" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1801"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1760"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon1762"
points="512,85.337 512,85.337 0,426.663 512,426.663 "
style="fill:#0052b4" />
<polygon
transform="translate(0,-85.336998)"
id="polygon1764"
points="0,85.337 0,252.282 250.435,85.337 0,85.337 "
style="fill:#ffda44" />
<path
id="path1766"
d="m 188.052,164.902 14.708,-7.967 -14.708,-7.967 c -3.434,-22.308 -21.06,-39.934 -43.366,-43.366 L 136.719,90.894002 128.752,105.602 c -22.308,3.434 -39.933,21.06 -43.366,43.366 l -14.707,7.968 14.708,7.967 c 3.434,22.308 21.06,39.934 43.366,43.366 l 7.966,14.707 7.967,-14.708 c 22.307,-3.432 39.932,-21.059 43.366,-43.366 z m -51.334,21.714 c -16.393,0 -29.682,-13.289 -29.682,-29.682 0,-16.393 13.289,-29.68 29.682,-29.68 16.393,0 29.682,13.289 29.682,29.682 0,16.393 -13.289,29.68 -29.682,29.68 z" />
<polygon
transform="translate(0,-85.336998)"
id="polygon1768"
points="155.997,231.142 149.571,242.273 155.997,253.403 143.145,253.403 136.718,264.534 130.293,253.403 117.441,253.403 123.866,242.273 117.441,231.142 130.293,231.142 136.718,220.012 143.145,231.142 "
style="fill:#d80027" />
<g
transform="translate(0,-85.336998)"
id="g1770">
</g>
<g
transform="translate(0,-85.336998)"
id="g1772">
</g>
<g
transform="translate(0,-85.336998)"
id="g1774">
</g>
<g
transform="translate(0,-85.336998)"
id="g1776">
</g>
<g
transform="translate(0,-85.336998)"
id="g1778">
</g>
<g
transform="translate(0,-85.336998)"
id="g1780">
</g>
<g
transform="translate(0,-85.336998)"
id="g1782">
</g>
<g
transform="translate(0,-85.336998)"
id="g1784">
</g>
<g
transform="translate(0,-85.336998)"
id="g1786">
</g>
<g
transform="translate(0,-85.336998)"
id="g1788">
</g>
<g
transform="translate(0,-85.336998)"
id="g1790">
</g>
<g
transform="translate(0,-85.336998)"
id="g1792">
</g>
<g
transform="translate(0,-85.336998)"
id="g1794">
</g>
<g
transform="translate(0,-85.336998)"
id="g1796">
</g>
<g
transform="translate(0,-85.336998)"
id="g1798">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

133
public/img/flags/br.svg Executable file
View File

@ -0,0 +1,133 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="br.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1862"><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="defs1860" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1858"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1815"
height="341.33701"
width="512"
style="fill:#6da544"
y="0" />
<polygon
transform="translate(0,-85.331001)"
id="polygon1817"
points="256,350.31 128,255.994 256,161.678 384,255.994 "
style="fill:#ffda44" />
<circle
id="circle1819"
r="53.894001"
cy="170.66299"
cx="256"
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.331001)"
id="g1825">
<path
id="path1821"
d="m 229.052,252.626 c -9.372,0 -18.416,1.426 -26.93,4.07 0.377,29.44 24.348,53.193 53.877,53.193 18.259,0 34.386,-9.089 44.134,-22.981 -16.676,-20.879 -42.341,-34.282 -71.081,-34.282 z"
style="fill:#0052b4" />
<path
id="path1823"
d="m 308.895,266.32 c 0.649,-3.344 1,-6.793 1,-10.326 0,-29.765 -24.13,-53.895 -53.895,-53.895 -22.21,0 -41.275,13.438 -49.527,32.623 7.293,-1.51 14.845,-2.307 22.579,-2.307 31.304,0.001 59.622,13.012 79.843,33.905 z"
style="fill:#0052b4" />
</g>
<g
transform="translate(0,-85.331001)"
id="g1827">
</g>
<g
transform="translate(0,-85.331001)"
id="g1829">
</g>
<g
transform="translate(0,-85.331001)"
id="g1831">
</g>
<g
transform="translate(0,-85.331001)"
id="g1833">
</g>
<g
transform="translate(0,-85.331001)"
id="g1835">
</g>
<g
transform="translate(0,-85.331001)"
id="g1837">
</g>
<g
transform="translate(0,-85.331001)"
id="g1839">
</g>
<g
transform="translate(0,-85.331001)"
id="g1841">
</g>
<g
transform="translate(0,-85.331001)"
id="g1843">
</g>
<g
transform="translate(0,-85.331001)"
id="g1845">
</g>
<g
transform="translate(0,-85.331001)"
id="g1847">
</g>
<g
transform="translate(0,-85.331001)"
id="g1849">
</g>
<g
transform="translate(0,-85.331001)"
id="g1851">
</g>
<g
transform="translate(0,-85.331001)"
id="g1853">
</g>
<g
transform="translate(0,-85.331001)"
id="g1855">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

132
public/img/flags/bs.svg Executable file
View File

@ -0,0 +1,132 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bs.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1917"><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="defs1915" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1913"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1872"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0.0059979861" />
<g
transform="translate(0,-85.331)"
id="g1878">
<rect
x="0"
id="rect1874"
height="113.775"
width="512"
style="fill:#338af3"
y="85.336998" />
<rect
x="0"
id="rect1876"
height="113.775"
width="512"
style="fill:#338af3"
y="312.888" />
</g>
<polygon
transform="translate(0,-85.331)"
id="polygon1880"
points="0,85.331 256,256.006 0,426.668 " />
<g
transform="translate(0,-85.331)"
id="g1882">
</g>
<g
transform="translate(0,-85.331)"
id="g1884">
</g>
<g
transform="translate(0,-85.331)"
id="g1886">
</g>
<g
transform="translate(0,-85.331)"
id="g1888">
</g>
<g
transform="translate(0,-85.331)"
id="g1890">
</g>
<g
transform="translate(0,-85.331)"
id="g1892">
</g>
<g
transform="translate(0,-85.331)"
id="g1894">
</g>
<g
transform="translate(0,-85.331)"
id="g1896">
</g>
<g
transform="translate(0,-85.331)"
id="g1898">
</g>
<g
transform="translate(0,-85.331)"
id="g1900">
</g>
<g
transform="translate(0,-85.331)"
id="g1902">
</g>
<g
transform="translate(0,-85.331)"
id="g1904">
</g>
<g
transform="translate(0,-85.331)"
id="g1906">
</g>
<g
transform="translate(0,-85.331)"
id="g1908">
</g>
<g
transform="translate(0,-85.331)"
id="g1910">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

119
public/img/flags/bt.svg Executable file
View File

@ -0,0 +1,119 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="bt.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata1968"><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="defs1966" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview1964"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1927"
height="341.33701"
width="512"
style="fill:#ff9811"
y="0.003000183" />
<polyline
transform="translate(0,-85.33)"
id="polyline1929"
points="512,85.33 0,85.33 0,426.662 "
style="fill:#ffda44" />
<path
id="path1931"
d="M 352.546,96.463 V 66.781 h -56.891 l -4.346,4.346 c -15.459,15.459 -12.859,33.494 -10.96,46.662 1.761,12.216 1.972,16.894 -2.57,21.437 -4.542,4.542 -9.223,4.331 -21.437,2.57 -13.167,-1.898 -31.202,-4.499 -46.661,10.959 -15.458,15.459 -12.857,33.493 -10.957,46.66 1.762,12.213 1.973,16.893 -2.568,21.434 -4.542,4.54 -9.223,4.329 -21.434,2.568 -4.762,-0.687 -9.686,-1.397 -14.94,-1.455 l -0.326,29.679 c 3.289,0.037 7.049,0.579 11.029,1.152 4.712,0.68 10.045,1.45 15.663,1.45 5.821,0 11.945,-0.83 17.993,-3.442 v 23.747 h 44.522 v -22.261 h -22.261 v -14.84 h 14.84 V 215.186 H 229.38 c 0.563,-7.201 -0.426,-14.097 -1.28,-20.009 -1.762,-12.213 -1.973,-16.893 2.568,-21.434 4.542,-4.542 9.222,-4.332 21.437,-2.57 9.594,1.384 21.774,3.131 33.658,-1.999 v 23.751 h 44.522 v -22.261 h -22.261 v -14.84 h 14.84 v -22.261 h -11.861 c 0.563,-7.202 -0.425,-14.097 -1.278,-20.011 -1.23,-8.534 -1.704,-13.39 -0.329,-17.091 h 43.15 z"
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g1933">
</g>
<g
transform="translate(0,-85.33)"
id="g1935">
</g>
<g
transform="translate(0,-85.33)"
id="g1937">
</g>
<g
transform="translate(0,-85.33)"
id="g1939">
</g>
<g
transform="translate(0,-85.33)"
id="g1941">
</g>
<g
transform="translate(0,-85.33)"
id="g1943">
</g>
<g
transform="translate(0,-85.33)"
id="g1945">
</g>
<g
transform="translate(0,-85.33)"
id="g1947">
</g>
<g
transform="translate(0,-85.33)"
id="g1949">
</g>
<g
transform="translate(0,-85.33)"
id="g1951">
</g>
<g
transform="translate(0,-85.33)"
id="g1953">
</g>
<g
transform="translate(0,-85.33)"
id="g1955">
</g>
<g
transform="translate(0,-85.33)"
id="g1957">
</g>
<g
transform="translate(0,-85.33)"
id="g1959">
</g>
<g
transform="translate(0,-85.33)"
id="g1961">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

134
public/img/flags/bw.svg Executable file
View File

@ -0,0 +1,134 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="bw.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2023"><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="defs2021" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2019"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect1978"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<g
transform="translate(0,-85.336998)"
id="g1984">
<rect
x="0"
id="rect1980"
height="103.88"
width="512"
style="fill:#338af3"
y="322.78299" />
<rect
x="0"
id="rect1982"
height="104.515"
width="512"
style="fill:#338af3"
y="85.336998" />
</g>
<rect
x="0"
id="rect1986"
height="89.655998"
width="512"
y="125.54" />
<g
transform="translate(0,-85.336998)"
id="g1988">
</g>
<g
transform="translate(0,-85.336998)"
id="g1990">
</g>
<g
transform="translate(0,-85.336998)"
id="g1992">
</g>
<g
transform="translate(0,-85.336998)"
id="g1994">
</g>
<g
transform="translate(0,-85.336998)"
id="g1996">
</g>
<g
transform="translate(0,-85.336998)"
id="g1998">
</g>
<g
transform="translate(0,-85.336998)"
id="g2000">
</g>
<g
transform="translate(0,-85.336998)"
id="g2002">
</g>
<g
transform="translate(0,-85.336998)"
id="g2004">
</g>
<g
transform="translate(0,-85.336998)"
id="g2006">
</g>
<g
transform="translate(0,-85.336998)"
id="g2008">
</g>
<g
transform="translate(0,-85.336998)"
id="g2010">
</g>
<g
transform="translate(0,-85.336998)"
id="g2012">
</g>
<g
transform="translate(0,-85.336998)"
id="g2014">
</g>
<g
transform="translate(0,-85.336998)"
id="g2016">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

156
public/img/flags/by.svg Executable file
View File

@ -0,0 +1,156 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="340.96399"
width="512"
sodipodi:docname="by.svg"
xml:space="preserve"
viewBox="0 0 512 340.96399"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2092"><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="defs2090" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.482"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2088"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
id="rect2033"
height="340.95499"
width="511.444"
style="fill:#6da544"
y="0.0050026244"
x="0.55599999" />
<polyline
transform="translate(0,-85.518)"
id="polyline2035"
points="0,315.298 511.444,315.298 511.444,85.52 511.444,85.52 0,85.52 0,85.52 "
style="fill:#a2001d" />
<polygon
transform="translate(0,-85.518)"
id="polygon2037"
points="100.065,85.52 0,85.52 0,426.482 511.444,426.482 511.444,426.482 100.065,426.482 100.065,315.298 100.065,300.474 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.518)"
id="g2055">
<polygon
id="polygon2039"
points="68.564,176.937 87.093,210.028 68.564,243.647 50.033,210.028 "
style="fill:#a2001d" />
<polygon
id="polygon2041"
points="31.502,176.937 50.033,210.028 31.502,243.647 12.972,210.028 "
style="fill:#a2001d" />
<polygon
id="polygon2043"
points="68.564,268.354 87.093,301.446 68.564,335.064 50.033,301.446 "
style="fill:#a2001d" />
<polygon
id="polygon2045"
points="31.502,268.354 50.033,301.446 31.502,335.064 12.972,301.446 "
style="fill:#a2001d" />
<polygon
id="polygon2047"
points="68.564,359.771 87.093,392.863 68.564,426.482 50.033,392.863 "
style="fill:#a2001d" />
<polygon
id="polygon2049"
points="31.502,359.771 50.033,392.863 31.502,426.482 12.972,392.863 "
style="fill:#a2001d" />
<polygon
id="polygon2051"
points="68.564,85.518 87.093,118.611 68.564,152.23 50.033,118.611 "
style="fill:#a2001d" />
<polygon
id="polygon2053"
points="31.502,85.518 50.033,118.611 31.502,152.23 12.972,118.611 "
style="fill:#a2001d" />
</g>
<g
transform="translate(0,-85.518)"
id="g2057">
</g>
<g
transform="translate(0,-85.518)"
id="g2059">
</g>
<g
transform="translate(0,-85.518)"
id="g2061">
</g>
<g
transform="translate(0,-85.518)"
id="g2063">
</g>
<g
transform="translate(0,-85.518)"
id="g2065">
</g>
<g
transform="translate(0,-85.518)"
id="g2067">
</g>
<g
transform="translate(0,-85.518)"
id="g2069">
</g>
<g
transform="translate(0,-85.518)"
id="g2071">
</g>
<g
transform="translate(0,-85.518)"
id="g2073">
</g>
<g
transform="translate(0,-85.518)"
id="g2075">
</g>
<g
transform="translate(0,-85.518)"
id="g2077">
</g>
<g
transform="translate(0,-85.518)"
id="g2079">
</g>
<g
transform="translate(0,-85.518)"
id="g2081">
</g>
<g
transform="translate(0,-85.518)"
id="g2083">
</g>
<g
transform="translate(0,-85.518)"
id="g2085">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

158
public/img/flags/bz.svg Executable file
View File

@ -0,0 +1,158 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="bz.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2155"><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="defs2153" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2151"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2102"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0" />
<circle
id="circle2104"
r="81.619003"
cy="170.66299"
cx="256"
style="fill:#f0f0f0" />
<circle
id="circle2106"
r="66.782997"
cy="170.66299"
cx="256"
style="fill:#6da544" />
<circle
id="circle2108"
r="44.521999"
cy="170.66299"
cx="256"
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-85.331001)"
id="polygon2110"
points="231.884,274.544 256,289.386 280.116,274.544 280.116,255.994 256,244.864 231.884,255.994 "
style="fill:#0052b4" />
<rect
id="rect2112"
height="22.261"
width="48.228001"
style="fill:#ffda44"
y="148.40298"
x="231.88" />
<g
transform="translate(0,-85.331001)"
id="g2118">
<rect
x="0"
id="rect2114"
height="29.68"
width="512"
style="fill:#a2001d"
y="85.331001" />
<rect
x="0"
id="rect2116"
height="29.681999"
width="512"
style="fill:#a2001d"
y="396.98401" />
</g>
<g
transform="translate(0,-85.331001)"
id="g2120">
</g>
<g
transform="translate(0,-85.331001)"
id="g2122">
</g>
<g
transform="translate(0,-85.331001)"
id="g2124">
</g>
<g
transform="translate(0,-85.331001)"
id="g2126">
</g>
<g
transform="translate(0,-85.331001)"
id="g2128">
</g>
<g
transform="translate(0,-85.331001)"
id="g2130">
</g>
<g
transform="translate(0,-85.331001)"
id="g2132">
</g>
<g
transform="translate(0,-85.331001)"
id="g2134">
</g>
<g
transform="translate(0,-85.331001)"
id="g2136">
</g>
<g
transform="translate(0,-85.331001)"
id="g2138">
</g>
<g
transform="translate(0,-85.331001)"
id="g2140">
</g>
<g
transform="translate(0,-85.331001)"
id="g2142">
</g>
<g
transform="translate(0,-85.331001)"
id="g2144">
</g>
<g
transform="translate(0,-85.331001)"
id="g2146">
</g>
<g
transform="translate(0,-85.331001)"
id="g2148">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

245
public/img/flags/ca-bc.svg Executable file
View File

@ -0,0 +1,245 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="339.90799"
width="509.854"
sodipodi:docname="ca-bc.svg"
xml:space="preserve"
viewBox="0 0 509.854 339.90799"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2262"><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="defs2260" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="169.954"
inkscape:cx="254.929"
inkscape:zoom="1.645582"
showgrid="false"
id="namedview2258"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<g
transform="translate(0.004,-84.971)"
id="g2169">
<rect
id="rect2165"
height="339.90399"
width="509.85001"
style="fill:#f0f0f0"
y="84.974998"
x="0" />
<rect
id="rect2167"
height="169.946"
width="509.85001"
style="fill:#f0f0f0"
y="84.974998"
x="0" />
</g>
<rect
id="rect2171"
height="31.865999"
width="509.85001"
style="fill:#d80027"
y="69.043999"
x="0.0040000002" />
<g
transform="translate(0.004,-84.971)"
id="g2179">
<polygon
id="polygon2173"
points="509.85,199.5 379.051,199.5 509.85,232.199 "
style="fill:#0052b4" />
<polygon
id="polygon2175"
points="509.85,239.246 350.861,199.5 288.176,199.5 509.85,254.918 "
style="fill:#0052b4" />
<polygon
id="polygon2177"
points="288.176,254.918 450.804,254.918 288.176,214.257 "
style="fill:#0052b4" />
</g>
<polygon
transform="translate(0.004,-84.971)"
id="polygon2181"
points="509.85,239.246 350.861,199.5 288.176,199.5 509.85,254.918 "
style="fill:#f0f0f0" />
<polygon
transform="translate(0.004,-84.971)"
id="polygon2183"
points="509.85,239.246 350.861,199.5 288.176,199.5 509.85,254.918 "
style="fill:#d80027" />
<g
transform="translate(0.004,-84.971)"
id="g2189">
<polygon
id="polygon2185"
points="0,199.499 99.957,199.499 0,224.487 "
style="fill:#0052b4" />
<polygon
id="polygon2187"
points="28.205,254.917 221.674,206.546 221.674,254.917 "
style="fill:#0052b4" />
</g>
<polygon
transform="translate(0.004,-84.971)"
id="polygon2191"
points="0,254.918 0,254.918 221.674,199.5 158.988,199.5 0,239.246 "
style="fill:#d80027" />
<g
transform="translate(0.004,-84.971)"
id="g2199">
<polygon
id="polygon2193"
points="0,140.389 130.799,140.389 0,107.69 "
style="fill:#0052b4" />
<polygon
id="polygon2195"
points="0,100.642 158.989,140.389 221.674,140.389 0,84.971 "
style="fill:#0052b4" />
<polygon
id="polygon2197"
points="221.674,84.971 59.046,84.971 221.674,125.631 "
style="fill:#0052b4" />
</g>
<polygon
transform="translate(0.004,-84.971)"
id="polygon2201"
points="0,100.642 158.989,140.389 221.674,140.389 0,84.971 "
style="fill:#f0f0f0" />
<polygon
transform="translate(0.004,-84.971)"
id="polygon2203"
points="0,100.642 158.989,140.389 221.674,140.389 0,84.971 "
style="fill:#d80027" />
<g
transform="translate(0.004,-84.971)"
id="g2209">
<polygon
id="polygon2205"
points="509.85,140.39 409.893,140.39 509.85,115.401 "
style="fill:#0052b4" />
<polygon
id="polygon2207"
points="481.645,84.973 288.176,133.342 288.176,84.973 "
style="fill:#0052b4" />
</g>
<g
transform="translate(0.004,-84.971)"
id="g2215">
<polygon
id="polygon2211"
points="509.85,84.971 509.85,84.971 288.176,140.389 350.862,140.389 509.85,100.643 "
style="fill:#d80027" />
<rect
id="rect2213"
height="169.946"
width="31.855"
style="fill:#d80027"
y="84.974998"
x="238.998" />
</g>
<g
transform="translate(0.004,-84.971)"
id="g2223">
<path
id="path2217"
d="m 509.85,270.693 v 22.234 c -4.411,0.743 -12.802,5.497 -19.053,9.055 -10.906,6.196 -21.214,12.048 -31.068,12.048 -9.864,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.906,6.196 -21.214,12.048 -31.068,12.048 -9.854,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -3.99,0 -13.312,5.287 -20.117,9.155 -10.917,6.196 -21.225,12.048 -31.079,12.048 -9.854,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.117,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.917,6.196 -21.225,12.048 -31.079,12.048 -9.853,0 -20.161,-5.852 -31.068,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.917,6.196 -21.214,12.048 -31.079,12.048 -9.853,0 -20.161,-5.852 -31.068,-12.048 C 12.802,298.425 4.411,293.67 0,292.927 v -22.234 c 9.521,0.388 19.485,6.041 30.004,12.015 6.805,3.857 16.127,9.155 20.117,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.917,-6.196 21.225,-12.048 31.079,-12.048 9.854,0 20.161,5.852 31.068,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.917,-6.196 21.214,-12.048 31.079,-12.048 9.853,0 20.161,5.852 31.068,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.906,-6.196 21.214,-12.048 31.068,-12.048 9.864,0 20.161,5.852 31.079,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.906,-6.196 21.214,-12.048 31.068,-12.048 9.853,0 20.161,5.852 31.079,12.048 6.805,3.857 16.127,9.155 20.128,9.155 3.99,0 13.312,-5.298 20.117,-9.155 10.515,-5.974 20.479,-11.627 30,-12.015 z"
style="fill:#0052b4" />
<path
id="path2219"
d="m 509.85,326.112 v 22.234 c -4.411,0.743 -12.802,5.497 -19.053,9.055 -10.906,6.196 -21.214,12.048 -31.068,12.048 -9.864,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.906,6.196 -21.214,12.048 -31.068,12.048 -9.854,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -3.99,0 -13.312,5.287 -20.117,9.155 -10.917,6.196 -21.225,12.048 -31.079,12.048 -9.854,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.117,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.917,6.196 -21.225,12.048 -31.079,12.048 -9.853,0 -20.161,-5.852 -31.068,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.917,6.196 -21.214,12.048 -31.079,12.048 -9.853,0 -20.161,-5.852 -31.068,-12.048 -6.251,-3.558 -14.642,-8.313 -19.053,-9.055 v -22.234 c 9.521,0.388 19.485,6.041 30.004,12.015 6.805,3.857 16.127,9.155 20.117,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.917,-6.196 21.225,-12.048 31.079,-12.048 9.854,0 20.161,5.852 31.068,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.917,-6.196 21.214,-12.048 31.079,-12.048 9.853,0 20.161,5.852 31.068,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.906,-6.196 21.214,-12.048 31.068,-12.048 9.864,0 20.161,5.852 31.079,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.906,-6.196 21.214,-12.048 31.068,-12.048 9.853,0 20.161,5.852 31.079,12.048 6.805,3.857 16.127,9.155 20.128,9.155 3.99,0 13.312,-5.298 20.117,-9.155 10.519,-5.975 20.483,-11.628 30.004,-12.015 z"
style="fill:#0052b4" />
<path
id="path2221"
d="m 509.85,381.53 v 22.234 c -4.411,0.743 -12.802,5.497 -19.053,9.055 -10.906,6.196 -21.214,12.048 -31.068,12.048 -9.864,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.906,6.196 -21.214,12.048 -31.068,12.048 -9.854,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -3.99,0 -13.312,5.287 -20.117,9.155 -10.917,6.196 -21.225,12.048 -31.079,12.048 -9.854,0 -20.161,-5.852 -31.079,-12.048 -6.805,-3.868 -16.127,-9.155 -20.117,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.917,6.196 -21.225,12.048 -31.079,12.048 -9.853,0 -20.161,-5.852 -31.068,-12.048 -6.805,-3.868 -16.127,-9.155 -20.128,-9.155 -4.001,0 -13.323,5.287 -20.128,9.155 -10.917,6.196 -21.214,12.048 -31.079,12.048 -9.853,0 -20.161,-5.852 -31.068,-12.048 -6.251,-3.558 -14.642,-8.313 -19.053,-9.055 V 381.53 c 9.521,0.388 19.485,6.041 30.004,12.015 6.805,3.857 16.127,9.155 20.117,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.917,-6.196 21.225,-12.048 31.079,-12.048 9.854,0 20.161,5.852 31.068,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.917,-6.196 21.214,-12.048 31.079,-12.048 9.853,0 20.161,5.852 31.068,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.906,-6.196 21.214,-12.048 31.068,-12.048 9.864,0 20.161,5.852 31.079,12.048 6.805,3.857 16.127,9.155 20.128,9.155 4.001,0 13.323,-5.298 20.128,-9.155 10.906,-6.196 21.214,-12.048 31.068,-12.048 9.853,0 20.161,5.852 31.079,12.048 6.805,3.857 16.127,9.155 20.128,9.155 3.99,0 13.312,-5.298 20.117,-9.155 10.519,-5.974 20.483,-11.627 30.004,-12.015 z"
style="fill:#0052b4" />
</g>
<polygon
transform="translate(0.004,-84.971)"
id="polygon2225"
points="286.756,360.965 281.857,321.905 254.925,350.633 227.994,321.905 223.093,360.965 184.428,353.57 203.389,388.054 167.781,404.804 203.388,421.551 201.564,424.871 308.285,424.871 306.461,421.552 342.069,404.804 306.463,388.055 325.423,353.57 "
style="fill:#ffda44" />
<g
transform="translate(0.004,-84.971)"
id="g2227">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2229">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2231">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2233">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2235">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2237">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2239">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2241">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2243">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2245">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2247">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2249">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2251">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2253">
</g>
<g
transform="translate(0.004,-84.971)"
id="g2255">
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

132
public/img/flags/ca.svg Executable file
View File

@ -0,0 +1,132 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="ca.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2317"><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="defs2315" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2313"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2272"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g2280">
<rect
x="0"
id="rect2274"
height="341.33701"
width="170.66299"
style="fill:#d80027"
y="85.331001" />
<rect
id="rect2276"
height="341.33701"
width="170.66299"
style="fill:#d80027"
y="85.331001"
x="341.33701" />
<polygon
id="polygon2278"
points="304,255.705 304,239.705 272,255.705 288,223.705 272,223.705 256,199.704 240,223.705 224,223.705 240,255.705 208,239.705 208,255.705 192,263.704 224,279.704 216.001,295.704 248.001,295.704 248.001,319.705 264.001,319.705 264.001,295.704 296.001,295.704 288,279.704 320,263.704 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.331001)"
id="g2282">
</g>
<g
transform="translate(0,-85.331001)"
id="g2284">
</g>
<g
transform="translate(0,-85.331001)"
id="g2286">
</g>
<g
transform="translate(0,-85.331001)"
id="g2288">
</g>
<g
transform="translate(0,-85.331001)"
id="g2290">
</g>
<g
transform="translate(0,-85.331001)"
id="g2292">
</g>
<g
transform="translate(0,-85.331001)"
id="g2294">
</g>
<g
transform="translate(0,-85.331001)"
id="g2296">
</g>
<g
transform="translate(0,-85.331001)"
id="g2298">
</g>
<g
transform="translate(0,-85.331001)"
id="g2300">
</g>
<g
transform="translate(0,-85.331001)"
id="g2302">
</g>
<g
transform="translate(0,-85.331001)"
id="g2304">
</g>
<g
transform="translate(0,-85.331001)"
id="g2306">
</g>
<g
transform="translate(0,-85.331001)"
id="g2308">
</g>
<g
transform="translate(0,-85.331001)"
id="g2310">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

150
public/img/flags/cc.svg Executable file
View File

@ -0,0 +1,150 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cc.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2384"><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="defs2382" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2380"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2327"
height="341.33701"
width="512"
style="fill:#6da544"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g2345">
<polygon
id="polygon2329"
points="362.582,337.546 357.846,347.313 366.35,354.058 355.762,356.443 355.791,367.299 347.323,360.508 338.855,367.299 338.884,356.443 328.296,354.058 336.8,347.313 332.064,337.546 342.639,339.99 347.323,330.198 352.006,339.99 "
style="fill:#ffda44" />
<polygon
id="polygon2331"
points="319.015,233.661 314.278,243.429 322.783,250.173 312.194,252.56 312.223,263.415 303.755,256.623 295.287,263.415 295.316,252.56 284.728,250.173 293.232,243.429 288.495,233.661 299.071,236.107 303.755,226.313 308.439,236.107 "
style="fill:#ffda44" />
<polygon
id="polygon2333"
points="362.582,174.298 357.847,184.067 366.35,190.811 355.762,193.198 355.791,204.052 347.323,197.261 338.855,204.052 338.884,193.198 328.296,190.811 336.8,184.067 332.064,174.298 342.639,176.743 347.323,166.951 352.006,176.743 "
style="fill:#ffda44" />
<polygon
id="polygon2335"
points="400.638,218.821 395.902,228.589 404.405,235.333 393.817,237.719 393.846,248.574 385.378,241.783 376.91,248.574 376.939,237.719 366.35,235.333 374.855,228.589 370.119,218.821 380.695,221.265 385.378,211.473 390.062,221.265 "
style="fill:#ffda44" />
<polygon
id="polygon2337"
points="373.771,274.753 364.127,281.759 367.811,293.095 358.166,286.089 348.523,293.095 352.207,281.759 342.562,274.753 354.483,274.753 358.166,263.415 361.85,274.753 "
style="fill:#ffda44" />
<path
id="path2339"
d="m 274.551,304.226 c -26.638,0 -48.233,-21.594 -48.233,-48.232 0,-26.638 21.594,-48.232 48.233,-48.232 8.306,0 16.12,2.1 22.943,5.797 -10.703,-10.467 -25.341,-16.927 -41.495,-16.927 -32.784,0 -59.362,26.577 -59.362,59.362 0,32.785 26.577,59.362 59.362,59.362 16.155,0 30.792,-6.46 41.495,-16.927 -6.823,3.697 -14.637,5.797 -22.943,5.797 z"
style="fill:#ffda44" />
<path
id="path2341"
d="m 192.657,152.111 c -5.133,-8.87 -14.717,-14.84 -25.7,-14.84 -10.983,0 -20.568,5.971 -25.7,14.84 z"
style="fill:#ffda44" />
<path
id="path2343"
d="m 192.756,152.282 -25.799,25.799 -25.799,-25.799 c -2.465,4.328 -3.882,9.331 -3.882,14.669 0,16.393 13.289,29.682 29.682,29.682 16.393,0 29.682,-13.289 29.682,-29.682 -0.002,-5.338 -1.419,-10.341 -3.884,-14.669 z"
style="fill:#ffda44" />
</g>
<path
id="path2347"
d="M 159.536,85.329999 V 110.366 c 2.372,0.61 4.858,0.935 7.421,0.935 2.563,0 5.049,-0.325 7.421,-0.935 V 85.329999 Z"
style="fill:#a2001d" />
<g
transform="translate(0,-85.331001)"
id="g2349">
</g>
<g
transform="translate(0,-85.331001)"
id="g2351">
</g>
<g
transform="translate(0,-85.331001)"
id="g2353">
</g>
<g
transform="translate(0,-85.331001)"
id="g2355">
</g>
<g
transform="translate(0,-85.331001)"
id="g2357">
</g>
<g
transform="translate(0,-85.331001)"
id="g2359">
</g>
<g
transform="translate(0,-85.331001)"
id="g2361">
</g>
<g
transform="translate(0,-85.331001)"
id="g2363">
</g>
<g
transform="translate(0,-85.331001)"
id="g2365">
</g>
<g
transform="translate(0,-85.331001)"
id="g2367">
</g>
<g
transform="translate(0,-85.331001)"
id="g2369">
</g>
<g
transform="translate(0,-85.331001)"
id="g2371">
</g>
<g
transform="translate(0,-85.331001)"
id="g2373">
</g>
<g
transform="translate(0,-85.331001)"
id="g2375">
</g>
<g
transform="translate(0,-85.331001)"
id="g2377">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

125
public/img/flags/cd.svg Executable file
View File

@ -0,0 +1,125 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="cd.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2437"><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="defs2435" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2433"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2394"
height="341.32599"
width="512"
style="fill:#338af3"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon2396"
points="411.67,85.337 0,359.778 0,426.663 100.33,426.663 512,152.222 512,85.337 "
style="fill:#ffda44" />
<polygon
transform="translate(0,-85.336998)"
id="polygon2398"
points="60.193,426.663 0,426.663 0,386.538 451.807,85.337 512,85.337 512,125.462 "
style="fill:#d80027" />
<polygon
transform="translate(0,-85.336998)"
id="polygon2400"
points="215.297,165.62 191.187,183.137 200.397,211.479 176.287,193.962 152.178,211.479 161.387,183.137 137.277,165.62 167.078,165.62 176.287,137.278 185.496,165.62 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.336998)"
id="g2402">
</g>
<g
transform="translate(0,-85.336998)"
id="g2404">
</g>
<g
transform="translate(0,-85.336998)"
id="g2406">
</g>
<g
transform="translate(0,-85.336998)"
id="g2408">
</g>
<g
transform="translate(0,-85.336998)"
id="g2410">
</g>
<g
transform="translate(0,-85.336998)"
id="g2412">
</g>
<g
transform="translate(0,-85.336998)"
id="g2414">
</g>
<g
transform="translate(0,-85.336998)"
id="g2416">
</g>
<g
transform="translate(0,-85.336998)"
id="g2418">
</g>
<g
transform="translate(0,-85.336998)"
id="g2420">
</g>
<g
transform="translate(0,-85.336998)"
id="g2422">
</g>
<g
transform="translate(0,-85.336998)"
id="g2424">
</g>
<g
transform="translate(0,-85.336998)"
id="g2426">
</g>
<g
transform="translate(0,-85.336998)"
id="g2428">
</g>
<g
transform="translate(0,-85.336998)"
id="g2430">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

163
public/img/flags/cf.svg Executable file
View File

@ -0,0 +1,163 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="cf.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2504"><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="defs2502" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2500"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2447"
height="341.33701"
width="512"
style="fill:#d80027"
y="0.003000183" />
<g
transform="translate(0,-85.33)"
id="g2453">
<rect
x="0"
id="rect2449"
height="85.336998"
width="211.478"
style="fill:#6da544"
y="255.996" />
<rect
id="rect2451"
height="85.336998"
width="211.478"
style="fill:#6da544"
y="255.996"
x="300.522" />
</g>
<polygon
transform="translate(0,-85.33)"
id="polygon2455"
points="0,170.662 211.478,170.662 211.478,85.333 300.522,85.333 300.522,170.662 512,170.662 512,85.333 512,85.33 0,85.33 0,85.333 "
style="fill:#0052b4" />
<g
transform="translate(0,-85.33)"
id="g2461">
<rect
id="rect2457"
height="85.336998"
width="211.478"
style="fill:#f0f0f0"
y="170.659"
x="300.522" />
<rect
x="0"
id="rect2459"
height="85.336998"
width="211.478"
style="fill:#f0f0f0"
y="170.659" />
</g>
<g
transform="translate(0,-85.33)"
id="g2467">
<polygon
id="polygon2463"
points="211.478,341.33 0,341.33 0,426.659 0,426.662 512,426.662 512,426.659 512,341.33 300.522,341.33 300.522,426.659 211.478,426.659 "
style="fill:#ffda44" />
<polygon
id="polygon2465"
points="139.184,125.472 127.13,134.231 131.734,148.402 119.678,139.644 107.624,148.402 112.229,134.231 100.174,125.472 115.074,125.472 119.678,111.3 124.282,125.472 "
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.33)"
id="g2469">
</g>
<g
transform="translate(0,-85.33)"
id="g2471">
</g>
<g
transform="translate(0,-85.33)"
id="g2473">
</g>
<g
transform="translate(0,-85.33)"
id="g2475">
</g>
<g
transform="translate(0,-85.33)"
id="g2477">
</g>
<g
transform="translate(0,-85.33)"
id="g2479">
</g>
<g
transform="translate(0,-85.33)"
id="g2481">
</g>
<g
transform="translate(0,-85.33)"
id="g2483">
</g>
<g
transform="translate(0,-85.33)"
id="g2485">
</g>
<g
transform="translate(0,-85.33)"
id="g2487">
</g>
<g
transform="translate(0,-85.33)"
id="g2489">
</g>
<g
transform="translate(0,-85.33)"
id="g2491">
</g>
<g
transform="translate(0,-85.33)"
id="g2493">
</g>
<g
transform="translate(0,-85.33)"
id="g2495">
</g>
<g
transform="translate(0,-85.33)"
id="g2497">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

120
public/img/flags/cg.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cg.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2555"><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="defs2553" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2551"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2514"
height="341.33701"
width="512"
style="fill:#d80027"
y="1.2817383e-06" />
<polygon
transform="translate(0,-85.331)"
id="polygon2516"
points="0,426.657 0,85.331 443.726,85.331 102.4,426.657 "
style="fill:#6da544" />
<polygon
transform="translate(0,-85.331)"
id="polygon2518"
points="11.876,426.657 353.202,85.331 500.124,85.331 158.798,426.657 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.331)"
id="g2520">
</g>
<g
transform="translate(0,-85.331)"
id="g2522">
</g>
<g
transform="translate(0,-85.331)"
id="g2524">
</g>
<g
transform="translate(0,-85.331)"
id="g2526">
</g>
<g
transform="translate(0,-85.331)"
id="g2528">
</g>
<g
transform="translate(0,-85.331)"
id="g2530">
</g>
<g
transform="translate(0,-85.331)"
id="g2532">
</g>
<g
transform="translate(0,-85.331)"
id="g2534">
</g>
<g
transform="translate(0,-85.331)"
id="g2536">
</g>
<g
transform="translate(0,-85.331)"
id="g2538">
</g>
<g
transform="translate(0,-85.331)"
id="g2540">
</g>
<g
transform="translate(0,-85.331)"
id="g2542">
</g>
<g
transform="translate(0,-85.331)"
id="g2544">
</g>
<g
transform="translate(0,-85.331)"
id="g2546">
</g>
<g
transform="translate(0,-85.331)"
id="g2548">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

115
public/img/flags/ch.svg Executable file
View File

@ -0,0 +1,115 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="ch.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2604"><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="defs2602" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2600"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2565"
height="341.32599"
width="512"
style="fill:#d80027"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon2567"
points="289.391,155.826 222.609,155.826 222.609,222.609 155.826,222.609 155.826,289.391 222.609,289.391 222.609,356.174 289.391,356.174 289.391,289.391 356.174,289.391 356.174,222.609 289.391,222.609 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.336998)"
id="g2569">
</g>
<g
transform="translate(0,-85.336998)"
id="g2571">
</g>
<g
transform="translate(0,-85.336998)"
id="g2573">
</g>
<g
transform="translate(0,-85.336998)"
id="g2575">
</g>
<g
transform="translate(0,-85.336998)"
id="g2577">
</g>
<g
transform="translate(0,-85.336998)"
id="g2579">
</g>
<g
transform="translate(0,-85.336998)"
id="g2581">
</g>
<g
transform="translate(0,-85.336998)"
id="g2583">
</g>
<g
transform="translate(0,-85.336998)"
id="g2585">
</g>
<g
transform="translate(0,-85.336998)"
id="g2587">
</g>
<g
transform="translate(0,-85.336998)"
id="g2589">
</g>
<g
transform="translate(0,-85.336998)"
id="g2591">
</g>
<g
transform="translate(0,-85.336998)"
id="g2593">
</g>
<g
transform="translate(0,-85.336998)"
id="g2595">
</g>
<g
transform="translate(0,-85.336998)"
id="g2597">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

124
public/img/flags/ci.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="ci.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2655"><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="defs2653" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2651"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2614"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
id="rect2616"
height="341.33701"
width="181.793"
style="fill:#6da544"
y="0"
x="330.207" />
<rect
x="0"
id="rect2618"
height="341.33701"
width="181.793"
style="fill:#ff9811"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g2620">
</g>
<g
transform="translate(0,-85.331001)"
id="g2622">
</g>
<g
transform="translate(0,-85.331001)"
id="g2624">
</g>
<g
transform="translate(0,-85.331001)"
id="g2626">
</g>
<g
transform="translate(0,-85.331001)"
id="g2628">
</g>
<g
transform="translate(0,-85.331001)"
id="g2630">
</g>
<g
transform="translate(0,-85.331001)"
id="g2632">
</g>
<g
transform="translate(0,-85.331001)"
id="g2634">
</g>
<g
transform="translate(0,-85.331001)"
id="g2636">
</g>
<g
transform="translate(0,-85.331001)"
id="g2638">
</g>
<g
transform="translate(0,-85.331001)"
id="g2640">
</g>
<g
transform="translate(0,-85.331001)"
id="g2642">
</g>
<g
transform="translate(0,-85.331001)"
id="g2644">
</g>
<g
transform="translate(0,-85.331001)"
id="g2646">
</g>
<g
transform="translate(0,-85.331001)"
id="g2648">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

186
public/img/flags/ck.svg Executable file
View File

@ -0,0 +1,186 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33801"
width="512"
sodipodi:docname="ck.svg"
xml:space="preserve"
viewBox="0 0 512 341.33801"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2740"><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="defs2738" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2736"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2665"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.0010007324" />
<g
transform="translate(0,-85.331)"
id="g2691">
<polygon
id="polygon2667"
points="406.372,172.959 392.546,183.004 397.827,199.258 384,189.211 370.175,199.258 375.455,183.004 361.63,172.959 378.719,172.959 384,156.705 389.283,172.959 "
style="fill:#f0f0f0" />
<polygon
id="polygon2669"
points="341.103,181.461 338.43,198.34 353.657,206.099 336.778,208.772 334.104,225.652 326.344,210.425 309.466,213.098 321.552,201.014 313.791,185.786 329.019,193.544 "
style="fill:#f0f0f0" />
<polygon
id="polygon2671"
points="300.965,233.625 311.009,247.45 327.263,242.168 317.217,255.995 327.263,269.821 311.009,264.541 300.965,278.366 300.965,261.276 284.71,255.995 300.964,250.714 "
style="fill:#f0f0f0" />
<polygon
id="polygon2673"
points="309.466,298.891 326.347,301.565 334.104,286.338 336.778,303.217 353.657,305.889 338.43,313.648 341.103,330.53 329.019,318.443 313.791,326.204 321.55,310.975 "
style="fill:#f0f0f0" />
<polygon
id="polygon2675"
points="361.628,339.031 375.455,328.986 370.175,312.732 384,322.776 397.827,312.732 392.546,328.986 406.372,339.031 389.283,339.031 384,355.284 378.719,339.031 "
style="fill:#f0f0f0" />
<polygon
id="polygon2677"
points="426.897,330.53 429.57,313.648 414.343,305.892 431.222,303.217 433.897,286.338 441.653,301.565 458.534,298.891 446.448,310.976 454.209,326.204 438.98,318.446 "
style="fill:#f0f0f0" />
<polygon
id="polygon2679"
points="467.036,278.366 456.991,264.54 440.737,269.821 450.783,255.995 440.737,242.168 456.991,247.45 467.036,233.625 467.036,250.714 483.29,255.995 467.036,261.276 "
style="fill:#f0f0f0" />
<polygon
id="polygon2681"
points="458.534,213.098 441.653,210.425 433.897,225.652 431.222,208.772 414.343,206.097 429.57,198.34 426.897,181.462 438.981,193.544 454.209,185.788 446.452,201.014 "
style="fill:#f0f0f0" />
<path
id="path2683"
d="m 0,186.665 v 16 H 46.069 L 0,233.377 v 7.539 L 57.377,202.664 H 80 L 0,255.998 H 112 V 186.664 H 0 Z m 96,69.331 H 22.628 L 96,207.083 Z"
style="fill:#f0f0f0" />
<path
id="path2685"
d="M 176,138.665 256,85.331 H 144 v 69.334 h 112 v -16 H 209.931 L 256,107.951 v -7.539 l -57.377,38.251 H 176 Z M 160,85.333 h 73.372 L 160,134.246 Z"
style="fill:#f0f0f0" />
<path
id="path2687"
d="m 144,255.998 h 112 l -80,-53.334 h 22.623 L 256,240.917 v -7.539 L 209.931,202.665 H 256 v -16 H 144 Z m 16,-48.915 73.372,48.913 H 160 Z"
style="fill:#f0f0f0" />
<path
id="path2689"
d="M 112,85.331 H 0 l 80,53.334 H 57.377 L 0,100.413 v 7.539 l 46.069,30.712 H 0 v 16 H 112 Z M 96,134.246 22.628,85.333 H 96 Z"
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.331)"
id="g2703">
<polygon
id="polygon2693"
points="112,154.665 0,154.665 0,186.665 112,186.665 112,255.998 144,255.998 144,186.665 256,186.665 256,154.665 144,154.665 144,85.331 112,85.331 "
style="fill:#d80027" />
<polygon
id="polygon2695"
points="0,100.413 57.377,138.665 80,138.665 0,85.331 "
style="fill:#d80027" />
<polygon
id="polygon2697"
points="256,100.413 256,85.331 176,138.665 198.623,138.665 "
style="fill:#d80027" />
<polygon
id="polygon2699"
points="0,255.998 80,202.665 57.377,202.665 0,240.917 "
style="fill:#d80027" />
<polygon
id="polygon2701"
points="256,240.917 198.623,202.665 176,202.665 256,255.998 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.331)"
id="g2705">
</g>
<g
transform="translate(0,-85.331)"
id="g2707">
</g>
<g
transform="translate(0,-85.331)"
id="g2709">
</g>
<g
transform="translate(0,-85.331)"
id="g2711">
</g>
<g
transform="translate(0,-85.331)"
id="g2713">
</g>
<g
transform="translate(0,-85.331)"
id="g2715">
</g>
<g
transform="translate(0,-85.331)"
id="g2717">
</g>
<g
transform="translate(0,-85.331)"
id="g2719">
</g>
<g
transform="translate(0,-85.331)"
id="g2721">
</g>
<g
transform="translate(0,-85.331)"
id="g2723">
</g>
<g
transform="translate(0,-85.331)"
id="g2725">
</g>
<g
transform="translate(0,-85.331)"
id="g2727">
</g>
<g
transform="translate(0,-85.331)"
id="g2729">
</g>
<g
transform="translate(0,-85.331)"
id="g2731">
</g>
<g
transform="translate(0,-85.331)"
id="g2733">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.7 KiB

114
public/img/flags/cl-ei.svg Executable file
View File

@ -0,0 +1,114 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cl-ei.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2789"><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="defs2787" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2785"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2750"
height="341.33701"
width="512"
style="fill:#fcfcfc"
y="0" />
<path
id="path2752"
d="m 307.942,140.982 v 14.84 h 20.368 c -8.5,11.814 -19.822,21.457 -32.977,27.952 -3.375,-3.506 -8.112,-5.691 -13.362,-5.691 -8.85,0 -16.248,6.2 -18.1,14.492 -2.593,0.227 -5.218,0.348 -7.871,0.348 -2.654,0 -5.278,-0.121 -7.871,-0.348 -1.852,-8.292 -9.251,-14.492 -18.1,-14.492 -5.25,0 -9.987,2.185 -13.362,5.69 -13.154,-6.493 -24.476,-16.138 -32.976,-27.951 h 20.368 v -14.84 h -51.942 c 0,57.373 46.511,103.884 103.884,103.884 57.374,0 103.884,-46.511 103.884,-103.884 z"
style="fill:#d80027" />
<g
transform="translate(0,-85.331001)"
id="g2754">
</g>
<g
transform="translate(0,-85.331001)"
id="g2756">
</g>
<g
transform="translate(0,-85.331001)"
id="g2758">
</g>
<g
transform="translate(0,-85.331001)"
id="g2760">
</g>
<g
transform="translate(0,-85.331001)"
id="g2762">
</g>
<g
transform="translate(0,-85.331001)"
id="g2764">
</g>
<g
transform="translate(0,-85.331001)"
id="g2766">
</g>
<g
transform="translate(0,-85.331001)"
id="g2768">
</g>
<g
transform="translate(0,-85.331001)"
id="g2770">
</g>
<g
transform="translate(0,-85.331001)"
id="g2772">
</g>
<g
transform="translate(0,-85.331001)"
id="g2774">
</g>
<g
transform="translate(0,-85.331001)"
id="g2776">
</g>
<g
transform="translate(0,-85.331001)"
id="g2778">
</g>
<g
transform="translate(0,-85.331001)"
id="g2780">
</g>
<g
transform="translate(0,-85.331001)"
id="g2782">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

129
public/img/flags/cl.svg Executable 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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="cl.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2842"><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="defs2840" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2838"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2799"
height="341.32599"
width="512"
style="fill:#d80027"
y="0" />
<rect
id="rect2801"
height="170.66299"
width="256"
style="fill:#f0f0f0"
y="0"
x="256" />
<rect
x="0"
id="rect2803"
height="170.66299"
width="256"
style="fill:#0052b4"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon2805"
points="192,156.299 152.446,185.038 167.554,231.536 128,202.799 88.446,231.536 103.554,185.038 64,156.299 112.892,156.299 128,109.801 143.108,156.299 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.336998)"
id="g2807">
</g>
<g
transform="translate(0,-85.336998)"
id="g2809">
</g>
<g
transform="translate(0,-85.336998)"
id="g2811">
</g>
<g
transform="translate(0,-85.336998)"
id="g2813">
</g>
<g
transform="translate(0,-85.336998)"
id="g2815">
</g>
<g
transform="translate(0,-85.336998)"
id="g2817">
</g>
<g
transform="translate(0,-85.336998)"
id="g2819">
</g>
<g
transform="translate(0,-85.336998)"
id="g2821">
</g>
<g
transform="translate(0,-85.336998)"
id="g2823">
</g>
<g
transform="translate(0,-85.336998)"
id="g2825">
</g>
<g
transform="translate(0,-85.336998)"
id="g2827">
</g>
<g
transform="translate(0,-85.336998)"
id="g2829">
</g>
<g
transform="translate(0,-85.336998)"
id="g2831">
</g>
<g
transform="translate(0,-85.336998)"
id="g2833">
</g>
<g
transform="translate(0,-85.336998)"
id="g2835">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

132
public/img/flags/cm.svg Executable file
View File

@ -0,0 +1,132 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cm.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2897"><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="defs2895" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2893"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2852"
height="341.33701"
width="512"
style="fill:#d80027"
y="0" />
<rect
x="0"
id="rect2854"
height="341.33701"
width="170.66299"
style="fill:#496e2d"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g2860">
<rect
id="rect2856"
height="341.33701"
width="170.66299"
style="fill:#ffda44"
y="85.331001"
x="341.33701" />
<polygon
id="polygon2858"
points="305.933,244.782 275.073,267.205 286.86,303.485 255.999,281.062 225.138,303.485 236.927,267.205 206.066,244.782 244.212,244.782 255.999,208.504 267.786,244.782 "
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.331001)"
id="g2862">
</g>
<g
transform="translate(0,-85.331001)"
id="g2864">
</g>
<g
transform="translate(0,-85.331001)"
id="g2866">
</g>
<g
transform="translate(0,-85.331001)"
id="g2868">
</g>
<g
transform="translate(0,-85.331001)"
id="g2870">
</g>
<g
transform="translate(0,-85.331001)"
id="g2872">
</g>
<g
transform="translate(0,-85.331001)"
id="g2874">
</g>
<g
transform="translate(0,-85.331001)"
id="g2876">
</g>
<g
transform="translate(0,-85.331001)"
id="g2878">
</g>
<g
transform="translate(0,-85.331001)"
id="g2880">
</g>
<g
transform="translate(0,-85.331001)"
id="g2882">
</g>
<g
transform="translate(0,-85.331001)"
id="g2884">
</g>
<g
transform="translate(0,-85.331001)"
id="g2886">
</g>
<g
transform="translate(0,-85.331001)"
id="g2888">
</g>
<g
transform="translate(0,-85.331001)"
id="g2890">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

134
public/img/flags/cn.svg Executable file
View File

@ -0,0 +1,134 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cn.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata2956"><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="defs2954" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview2952"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2907"
height="341.33701"
width="512"
style="fill:#d80027"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g2919">
<polygon
id="polygon2909"
points="241.008,234.674 202.637,262.552 217.294,307.661 178.923,279.782 140.552,307.661 155.208,262.552 116.837,234.674 164.266,234.674 178.923,189.567 193.579,234.674 "
style="fill:#ffda44" />
<polygon
id="polygon2911"
points="242.522,339.592 248.017,322.678 233.628,312.223 251.414,312.223 256.91,295.307 262.408,312.223 280.193,312.223 265.804,322.677 271.3,339.593 256.91,329.138 "
style="fill:#ffda44" />
<polygon
id="polygon2913"
points="285.556,304.841 280.06,287.928 262.273,287.927 276.664,277.472 271.166,260.557 285.556,271.01 299.945,260.557 294.449,277.472 308.837,287.927 291.052,287.927 "
style="fill:#ffda44" />
<polygon
id="polygon2915"
points="299.944,251.432 285.556,240.979 271.166,251.434 276.664,234.517 262.273,224.065 280.061,224.063 285.556,207.147 291.052,224.063 308.837,224.063 294.449,234.518 "
style="fill:#ffda44" />
<polygon
id="polygon2917"
points="280.193,199.766 262.408,199.767 256.91,216.684 251.414,199.766 233.629,199.768 248.018,189.312 242.522,172.396 256.91,182.851 271.3,172.397 265.805,189.313 "
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.331001)"
id="g2921">
</g>
<g
transform="translate(0,-85.331001)"
id="g2923">
</g>
<g
transform="translate(0,-85.331001)"
id="g2925">
</g>
<g
transform="translate(0,-85.331001)"
id="g2927">
</g>
<g
transform="translate(0,-85.331001)"
id="g2929">
</g>
<g
transform="translate(0,-85.331001)"
id="g2931">
</g>
<g
transform="translate(0,-85.331001)"
id="g2933">
</g>
<g
transform="translate(0,-85.331001)"
id="g2935">
</g>
<g
transform="translate(0,-85.331001)"
id="g2937">
</g>
<g
transform="translate(0,-85.331001)"
id="g2939">
</g>
<g
transform="translate(0,-85.331001)"
id="g2941">
</g>
<g
transform="translate(0,-85.331001)"
id="g2943">
</g>
<g
transform="translate(0,-85.331001)"
id="g2945">
</g>
<g
transform="translate(0,-85.331001)"
id="g2947">
</g>
<g
transform="translate(0,-85.331001)"
id="g2949">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

124
public/img/flags/co.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32602"
width="512"
sodipodi:docname="co.svg"
xml:space="preserve"
viewBox="0 0 512 341.32602"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3007"><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="defs3005" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3003"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect2966"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect2968"
height="83.567001"
width="512"
style="fill:#d80027"
y="257.759" />
<rect
x="0"
id="rect2970"
height="87.096001"
width="512"
style="fill:#0052b4"
y="170.66299" />
<g
transform="translate(0,-85.336998)"
id="g2972">
</g>
<g
transform="translate(0,-85.336998)"
id="g2974">
</g>
<g
transform="translate(0,-85.336998)"
id="g2976">
</g>
<g
transform="translate(0,-85.336998)"
id="g2978">
</g>
<g
transform="translate(0,-85.336998)"
id="g2980">
</g>
<g
transform="translate(0,-85.336998)"
id="g2982">
</g>
<g
transform="translate(0,-85.336998)"
id="g2984">
</g>
<g
transform="translate(0,-85.336998)"
id="g2986">
</g>
<g
transform="translate(0,-85.336998)"
id="g2988">
</g>
<g
transform="translate(0,-85.336998)"
id="g2990">
</g>
<g
transform="translate(0,-85.336998)"
id="g2992">
</g>
<g
transform="translate(0,-85.336998)"
id="g2994">
</g>
<g
transform="translate(0,-85.336998)"
id="g2996">
</g>
<g
transform="translate(0,-85.336998)"
id="g2998">
</g>
<g
transform="translate(0,-85.336998)"
id="g3000">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

135
public/img/flags/cr.svg Executable file
View File

@ -0,0 +1,135 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33801"
width="512"
sodipodi:docname="cr.svg"
xml:space="preserve"
viewBox="0 0 512 341.33801"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3062"><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="defs3060" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3058"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3017"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect3019"
height="89.042999"
width="512"
style="fill:#d80027"
y="126.14201" />
<g
transform="translate(0,-85.331001)"
id="g3025">
<rect
x="0"
id="rect3021"
height="74.207001"
width="512"
style="fill:#0052b4"
y="352.46201" />
<rect
x="0"
id="rect3023"
height="74.207001"
width="512"
style="fill:#0052b4"
y="85.331001" />
</g>
<g
transform="translate(0,-85.331001)"
id="g3027">
</g>
<g
transform="translate(0,-85.331001)"
id="g3029">
</g>
<g
transform="translate(0,-85.331001)"
id="g3031">
</g>
<g
transform="translate(0,-85.331001)"
id="g3033">
</g>
<g
transform="translate(0,-85.331001)"
id="g3035">
</g>
<g
transform="translate(0,-85.331001)"
id="g3037">
</g>
<g
transform="translate(0,-85.331001)"
id="g3039">
</g>
<g
transform="translate(0,-85.331001)"
id="g3041">
</g>
<g
transform="translate(0,-85.331001)"
id="g3043">
</g>
<g
transform="translate(0,-85.331001)"
id="g3045">
</g>
<g
transform="translate(0,-85.331001)"
id="g3047">
</g>
<g
transform="translate(0,-85.331001)"
id="g3049">
</g>
<g
transform="translate(0,-85.331001)"
id="g3051">
</g>
<g
transform="translate(0,-85.331001)"
id="g3053">
</g>
<g
transform="translate(0,-85.331001)"
id="g3055">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

150
public/img/flags/cu.svg Executable file
View File

@ -0,0 +1,150 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="422.95499"
width="511.99899"
sodipodi:docname="cu.svg"
xml:space="preserve"
viewBox="0 0 511.999 422.95499"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3123"><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="defs3121" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="211.4775"
inkscape:cx="255.9995"
inkscape:zoom="1.6386751"
showgrid="false"
id="namedview3119"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<polygon
transform="translate(0,-44.522)"
id="polygon3072"
points="0,467.477 0.001,467.477 0.001,256.001 0.001,44.522 0,44.522 "
style="fill:#ff9811" />
<rect
id="rect3074"
height="341.32501"
width="511.99899"
style="fill:#f0f0f0"
y="40.814999"
x="0" />
<g
transform="translate(0,-44.522)"
id="g3082">
<rect
id="rect3076"
height="68.263"
width="511.99899"
style="fill:#0052b4"
y="85.336998"
x="0" />
<rect
id="rect3078"
height="68.263"
width="511.99899"
style="fill:#0052b4"
y="221.87399"
x="0" />
<rect
id="rect3080"
height="68.263"
width="511.99899"
style="fill:#0052b4"
y="358.39899"
x="0" />
</g>
<polygon
transform="translate(0,-44.522)"
id="polygon3084"
points="0.001,85.332 256.001,256.005 0.001,426.668 "
style="fill:#d80027" />
<polygon
transform="translate(0,-44.522)"
id="polygon3086"
points="130.291,245.489 101.36,266.51 112.409,300.521 83.478,279.501 54.547,300.521 65.598,266.51 36.667,245.489 72.428,245.489 83.478,211.479 94.528,245.489 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-44.522)"
id="g3088">
</g>
<g
transform="translate(0,-44.522)"
id="g3090">
</g>
<g
transform="translate(0,-44.522)"
id="g3092">
</g>
<g
transform="translate(0,-44.522)"
id="g3094">
</g>
<g
transform="translate(0,-44.522)"
id="g3096">
</g>
<g
transform="translate(0,-44.522)"
id="g3098">
</g>
<g
transform="translate(0,-44.522)"
id="g3100">
</g>
<g
transform="translate(0,-44.522)"
id="g3102">
</g>
<g
transform="translate(0,-44.522)"
id="g3104">
</g>
<g
transform="translate(0,-44.522)"
id="g3106">
</g>
<g
transform="translate(0,-44.522)"
id="g3108">
</g>
<g
transform="translate(0,-44.522)"
id="g3110">
</g>
<g
transform="translate(0,-44.522)"
id="g3112">
</g>
<g
transform="translate(0,-44.522)"
id="g3114">
</g>
<g
transform="translate(0,-44.522)"
id="g3116">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

179
public/img/flags/cv.svg Executable file
View File

@ -0,0 +1,179 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cv.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3200"><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="defs3198" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3196"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3133"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0" />
<rect
x="0"
id="rect3135"
height="22.261"
width="512"
style="fill:#d80027"
y="237.44601" />
<g
transform="translate(0,-85.331001)"
id="g3141">
<rect
x="0"
id="rect3137"
height="22.261"
width="512"
style="fill:#f0f0f0"
y="300.51599" />
<rect
x="0"
id="rect3139"
height="22.261"
width="512"
style="fill:#f0f0f0"
y="345.03799" />
</g>
<g
transform="translate(0,-85.331001)"
id="g3163">
<polygon
id="polygon3143"
points="193.113,270.521 185.246,276.236 188.251,285.484 180.384,279.769 172.517,285.484 175.522,276.236 167.656,270.521 177.38,270.521 180.384,261.272 183.388,270.521 "
style="fill:#ffda44" />
<polygon
id="polygon3145"
points="193.113,391.579 185.246,397.294 188.251,406.542 180.384,400.827 172.517,406.542 175.522,397.294 167.656,391.579 177.38,391.579 180.384,382.332 183.388,391.579 "
style="fill:#ffda44" />
<polygon
id="polygon3147"
points="136.762,350.638 128.896,356.353 131.9,365.601 124.033,359.886 116.166,365.601 119.171,356.353 111.304,350.638 121.029,350.638 124.033,341.389 127.037,350.638 "
style="fill:#ffda44" />
<polygon
id="polygon3149"
points="158.286,282.626 150.42,288.342 153.424,297.59 145.557,291.874 137.69,297.59 140.695,288.342 132.828,282.626 142.553,282.626 145.557,273.378 148.561,282.626 "
style="fill:#ffda44" />
<polygon
id="polygon3151"
points="124.032,302.214 127.037,311.462 136.762,311.461 128.895,317.177 131.9,326.427 124.032,320.711 116.166,326.424 119.17,317.177 111.304,311.462 121.027,311.463 "
style="fill:#ffda44" />
<polygon
id="polygon3153"
points="132.827,377.708 142.552,377.708 145.557,368.46 148.562,377.707 158.286,377.707 150.419,383.423 153.423,392.672 145.556,386.956 137.69,392.671 140.695,383.425 "
style="fill:#ffda44" />
<polygon
id="polygon3155"
points="223.986,350.638 231.851,356.353 228.847,365.601 236.714,359.886 244.581,365.601 241.576,356.353 249.443,350.638 239.718,350.638 236.714,341.389 233.71,350.638 "
style="fill:#ffda44" />
<polygon
id="polygon3157"
points="202.461,282.626 210.327,288.342 207.323,297.59 215.19,291.874 223.057,297.59 220.052,288.342 227.919,282.626 218.194,282.626 215.19,273.378 212.186,282.626 "
style="fill:#ffda44" />
<polygon
id="polygon3159"
points="236.715,302.214 233.71,311.462 223.986,311.461 231.853,317.177 228.847,326.427 236.715,320.711 244.581,326.424 241.577,317.177 249.443,311.462 239.721,311.463 "
style="fill:#ffda44" />
<polygon
id="polygon3161"
points="227.919,377.708 218.195,377.708 215.19,368.46 212.185,377.707 202.461,377.707 210.328,383.423 207.324,392.672 215.191,386.956 223.057,392.671 220.052,383.425 "
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.331001)"
id="g3165">
</g>
<g
transform="translate(0,-85.331001)"
id="g3167">
</g>
<g
transform="translate(0,-85.331001)"
id="g3169">
</g>
<g
transform="translate(0,-85.331001)"
id="g3171">
</g>
<g
transform="translate(0,-85.331001)"
id="g3173">
</g>
<g
transform="translate(0,-85.331001)"
id="g3175">
</g>
<g
transform="translate(0,-85.331001)"
id="g3177">
</g>
<g
transform="translate(0,-85.331001)"
id="g3179">
</g>
<g
transform="translate(0,-85.331001)"
id="g3181">
</g>
<g
transform="translate(0,-85.331001)"
id="g3183">
</g>
<g
transform="translate(0,-85.331001)"
id="g3185">
</g>
<g
transform="translate(0,-85.331001)"
id="g3187">
</g>
<g
transform="translate(0,-85.331001)"
id="g3189">
</g>
<g
transform="translate(0,-85.331001)"
id="g3191">
</g>
<g
transform="translate(0,-85.331001)"
id="g3193">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

129
public/img/flags/cw.svg Executable 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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="cw.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3255"><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="defs3253" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3251"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3210"
height="341.32599"
width="512"
style="fill:#0052b4"
y="0" />
<rect
x="0"
id="rect3212"
height="32"
width="512"
style="fill:#ffda44"
y="239.99399" />
<g
transform="translate(0,-85.336998)"
id="g3218">
<polygon
id="polygon3214"
points="184.798,176.751 160.688,194.269 169.896,222.612 145.786,205.096 121.676,222.612 130.886,194.269 106.776,176.751 136.577,176.751 145.786,148.41 154.995,176.751 "
style="fill:#f0f0f0" />
<polygon
id="polygon3216"
points="118.015,135.733 103.55,146.244 109.075,163.25 94.608,152.74 80.142,163.25 85.668,146.244 71.202,135.733 89.084,135.733 94.608,118.728 100.134,135.733 "
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.336998)"
id="g3220">
</g>
<g
transform="translate(0,-85.336998)"
id="g3222">
</g>
<g
transform="translate(0,-85.336998)"
id="g3224">
</g>
<g
transform="translate(0,-85.336998)"
id="g3226">
</g>
<g
transform="translate(0,-85.336998)"
id="g3228">
</g>
<g
transform="translate(0,-85.336998)"
id="g3230">
</g>
<g
transform="translate(0,-85.336998)"
id="g3232">
</g>
<g
transform="translate(0,-85.336998)"
id="g3234">
</g>
<g
transform="translate(0,-85.336998)"
id="g3236">
</g>
<g
transform="translate(0,-85.336998)"
id="g3238">
</g>
<g
transform="translate(0,-85.336998)"
id="g3240">
</g>
<g
transform="translate(0,-85.336998)"
id="g3242">
</g>
<g
transform="translate(0,-85.336998)"
id="g3244">
</g>
<g
transform="translate(0,-85.336998)"
id="g3246">
</g>
<g
transform="translate(0,-85.336998)"
id="g3248">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

153
public/img/flags/cx.svg Executable file
View File

@ -0,0 +1,153 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="cx.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3322"><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="defs3320" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3318"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3265"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.003000183" />
<polyline
transform="translate(0,-85.33)"
id="polyline3267"
points="0,85.33 512,85.33 512,426.662 "
style="fill:#6da544" />
<circle
id="circle3269"
r="44.521999"
cy="170.666"
cx="256"
style="fill:#ffda44" />
<g
transform="translate(0,-85.33)"
id="g3281">
<polygon
id="polygon3271"
points="142.835,359.809 138.099,369.576 146.603,376.321 136.015,378.706 136.044,389.561 127.576,382.77 119.108,389.561 119.137,378.706 108.547,376.321 117.053,369.576 112.317,359.809 122.892,362.253 127.576,352.46 132.26,362.253 "
style="fill:#f0f0f0" />
<polygon
id="polygon3273"
points="112.199,278.185 107.464,287.953 115.968,294.697 105.38,297.083 105.409,307.938 96.941,301.147 88.472,307.938 88.501,297.083 77.913,294.697 86.418,287.953 81.682,278.185 92.257,280.629 96.941,270.836 101.624,280.629 "
style="fill:#f0f0f0" />
<polygon
id="polygon3275"
points="142.835,211.402 138.099,221.17 146.603,227.914 136.015,230.3 136.044,241.156 127.576,234.364 119.108,241.156 119.137,230.3 108.548,227.914 117.052,221.17 112.317,211.402 122.892,213.846 127.576,204.054 132.26,213.846 "
style="fill:#f0f0f0" />
<polygon
id="polygon3277"
points="180.891,263.343 176.155,273.112 184.658,279.856 174.07,282.243 174.099,293.097 165.631,286.306 157.164,293.097 157.193,282.243 146.603,279.856 155.108,273.112 150.372,263.343 160.948,265.789 165.631,255.996 170.315,265.789 "
style="fill:#f0f0f0" />
<polygon
id="polygon3279"
points="154.024,311.855 144.38,318.862 148.064,330.199 138.419,323.193 128.776,330.199 132.46,318.862 122.815,311.855 134.736,311.855 138.419,300.518 142.103,311.855 "
style="fill:#f0f0f0" />
</g>
<path
id="path3283"
d="m 256,200.348 h 14.84 c 0,0 6.431,-11.376 0,-22.261 l 14.84,-14.84 -7.42,-14.841 h -7.421 c 0,0 -3.71,11.13 -18.551,11.13 -14.841,0 -18.55,-11.13 -18.55,-11.13 h -7.42 l 7.42,14.84 -7.421,14.84 7.421,7.421 c 0,0 7.421,-14.84 22.261,-7.421 0.001,10e-4 6.309,9.276 0.001,22.262 z"
style="fill:#6da544" />
<path
id="path3285"
d="m 396.449,115.489 c 0.351,-1.823 0.536,-3.704 0.536,-5.629 0,-13.2 -8.618,-24.381 -20.533,-28.238 3.641,7.4 5.693,15.723 5.693,24.527 0,2.97 -0.239,5.882 -0.688,8.726 -1.793,-2.888 -4.096,-5.528 -6.91,-7.768 -10.601,-8.435 -25.087,-8.658 -35.797,-1.554 8.268,1.805 16.264,5.475 23.335,11.102 5.536,4.405 10.01,10.364 13.434,16.116 l -45.316,14.19 c 44.522,7.421 81.623,-22.261 81.623,-22.261 -4.11,-8.221 -10.496,-9.606 -15.377,-9.211 z"
style="fill:#ffda44" />
<g
transform="translate(0,-85.33)"
id="g3287">
</g>
<g
transform="translate(0,-85.33)"
id="g3289">
</g>
<g
transform="translate(0,-85.33)"
id="g3291">
</g>
<g
transform="translate(0,-85.33)"
id="g3293">
</g>
<g
transform="translate(0,-85.33)"
id="g3295">
</g>
<g
transform="translate(0,-85.33)"
id="g3297">
</g>
<g
transform="translate(0,-85.33)"
id="g3299">
</g>
<g
transform="translate(0,-85.33)"
id="g3301">
</g>
<g
transform="translate(0,-85.33)"
id="g3303">
</g>
<g
transform="translate(0,-85.33)"
id="g3305">
</g>
<g
transform="translate(0,-85.33)"
id="g3307">
</g>
<g
transform="translate(0,-85.33)"
id="g3309">
</g>
<g
transform="translate(0,-85.33)"
id="g3311">
</g>
<g
transform="translate(0,-85.33)"
id="g3313">
</g>
<g
transform="translate(0,-85.33)"
id="g3315">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

118
public/img/flags/cy.svg Executable file
View File

@ -0,0 +1,118 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="cy.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3373"><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="defs3371" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3369"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3332"
height="341.33701"
width="512"
style="fill:#fcfcfc"
y="0" />
<path
id="path3334"
d="m 352,148.549 c -5.169,0 -11.569,0 -22.154,0 0,40.784 -33.063,73.846 -73.846,73.846 -40.785,0 -73.846,-33.062 -73.846,-73.846 -7.138,0 -15.016,0 -22.154,0 0,43.931 29.509,80.969 69.787,92.377 -4.415,8.389 -3.743,18.951 2.564,26.822 8.285,-6.64 16.864,-13.515 24.141,-19.346 7.277,5.831 15.855,12.705 24.141,19.346 6.371,-7.95 6.998,-18.646 2.434,-27.075 C 322.905,228.987 352,192.169 352,148.549 Z"
style="fill:#6da544" />
<path
id="path3336"
d="m 196.923,141.166 c 0,0 0,36.923 36.923,36.923 l 7.385,7.385 H 256 c 0,0 7.385,-22.154 22.154,-22.154 0,0 0,-14.769 14.769,-14.769 14.769,0 22.154,0 22.154,0 0,0 -7.385,-29.538 29.538,-51.692001 l -14.769,-7.385 c 0,0 -51.692,36.923001 -88.615,29.538001 v 14.769 h -14.769 l -7.385,-7.385 z"
style="fill:#ffda44" />
<g
transform="translate(0,-85.331001)"
id="g3338">
</g>
<g
transform="translate(0,-85.331001)"
id="g3340">
</g>
<g
transform="translate(0,-85.331001)"
id="g3342">
</g>
<g
transform="translate(0,-85.331001)"
id="g3344">
</g>
<g
transform="translate(0,-85.331001)"
id="g3346">
</g>
<g
transform="translate(0,-85.331001)"
id="g3348">
</g>
<g
transform="translate(0,-85.331001)"
id="g3350">
</g>
<g
transform="translate(0,-85.331001)"
id="g3352">
</g>
<g
transform="translate(0,-85.331001)"
id="g3354">
</g>
<g
transform="translate(0,-85.331001)"
id="g3356">
</g>
<g
transform="translate(0,-85.331001)"
id="g3358">
</g>
<g
transform="translate(0,-85.331001)"
id="g3360">
</g>
<g
transform="translate(0,-85.331001)"
id="g3362">
</g>
<g
transform="translate(0,-85.331001)"
id="g3364">
</g>
<g
transform="translate(0,-85.331001)"
id="g3366">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

120
public/img/flags/cz.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="cz.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3424"><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="defs3422" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3420"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3383"
height="341.32599"
width="512"
style="fill:#0052b4"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon3385"
points="0,426.663 215.185,256 512,256 512,426.663 "
style="fill:#d80027" />
<polygon
transform="translate(0,-85.336998)"
id="polygon3387"
points="215.185,256 0,85.337 512,85.337 512,256 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.336998)"
id="g3389">
</g>
<g
transform="translate(0,-85.336998)"
id="g3391">
</g>
<g
transform="translate(0,-85.336998)"
id="g3393">
</g>
<g
transform="translate(0,-85.336998)"
id="g3395">
</g>
<g
transform="translate(0,-85.336998)"
id="g3397">
</g>
<g
transform="translate(0,-85.336998)"
id="g3399">
</g>
<g
transform="translate(0,-85.336998)"
id="g3401">
</g>
<g
transform="translate(0,-85.336998)"
id="g3403">
</g>
<g
transform="translate(0,-85.336998)"
id="g3405">
</g>
<g
transform="translate(0,-85.336998)"
id="g3407">
</g>
<g
transform="translate(0,-85.336998)"
id="g3409">
</g>
<g
transform="translate(0,-85.336998)"
id="g3411">
</g>
<g
transform="translate(0,-85.336998)"
id="g3413">
</g>
<g
transform="translate(0,-85.336998)"
id="g3415">
</g>
<g
transform="translate(0,-85.336998)"
id="g3417">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

123
public/img/flags/de.svg Executable file
View File

@ -0,0 +1,123 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="de.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3475"><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="defs3473" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3471"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3434"
height="341.33701"
width="512"
style="fill:#d80027"
y="0" />
<rect
x="0"
id="rect3436"
height="113.775"
width="512"
y="0" />
<rect
x="0"
id="rect3438"
height="113.775"
width="512"
style="fill:#ffda44"
y="227.55099" />
<g
transform="translate(0,-85.331001)"
id="g3440">
</g>
<g
transform="translate(0,-85.331001)"
id="g3442">
</g>
<g
transform="translate(0,-85.331001)"
id="g3444">
</g>
<g
transform="translate(0,-85.331001)"
id="g3446">
</g>
<g
transform="translate(0,-85.331001)"
id="g3448">
</g>
<g
transform="translate(0,-85.331001)"
id="g3450">
</g>
<g
transform="translate(0,-85.331001)"
id="g3452">
</g>
<g
transform="translate(0,-85.331001)"
id="g3454">
</g>
<g
transform="translate(0,-85.331001)"
id="g3456">
</g>
<g
transform="translate(0,-85.331001)"
id="g3458">
</g>
<g
transform="translate(0,-85.331001)"
id="g3460">
</g>
<g
transform="translate(0,-85.331001)"
id="g3462">
</g>
<g
transform="translate(0,-85.331001)"
id="g3464">
</g>
<g
transform="translate(0,-85.331001)"
id="g3466">
</g>
<g
transform="translate(0,-85.331001)"
id="g3468">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

125
public/img/flags/dj.svg Executable file
View File

@ -0,0 +1,125 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="dj.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3528"><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="defs3526" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3524"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3485"
height="341.32599"
width="512"
style="fill:#6da544"
y="0.0059979861" />
<polygon
transform="translate(0,-85.331)"
id="polygon3487"
points="0,256.173 0,85.331 512,85.331 512,252.021 "
style="fill:#338af3" />
<polygon
transform="translate(0,-85.331)"
id="polygon3489"
points="0,85.331 256,256.006 0,426.668 "
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-85.331)"
id="polygon3491"
points="141.422,245.488 112.49,266.51 123.54,300.522 94.608,279.502 65.675,300.522 76.728,266.51 47.795,245.488 83.557,245.488 94.608,211.478 105.658,245.488 "
style="fill:#d80027" />
<g
transform="translate(0,-85.331)"
id="g3493">
</g>
<g
transform="translate(0,-85.331)"
id="g3495">
</g>
<g
transform="translate(0,-85.331)"
id="g3497">
</g>
<g
transform="translate(0,-85.331)"
id="g3499">
</g>
<g
transform="translate(0,-85.331)"
id="g3501">
</g>
<g
transform="translate(0,-85.331)"
id="g3503">
</g>
<g
transform="translate(0,-85.331)"
id="g3505">
</g>
<g
transform="translate(0,-85.331)"
id="g3507">
</g>
<g
transform="translate(0,-85.331)"
id="g3509">
</g>
<g
transform="translate(0,-85.331)"
id="g3511">
</g>
<g
transform="translate(0,-85.331)"
id="g3513">
</g>
<g
transform="translate(0,-85.331)"
id="g3515">
</g>
<g
transform="translate(0,-85.331)"
id="g3517">
</g>
<g
transform="translate(0,-85.331)"
id="g3519">
</g>
<g
transform="translate(0,-85.331)"
id="g3521">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

115
public/img/flags/dk.svg Executable file
View File

@ -0,0 +1,115 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="dk.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3577"><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="defs3575" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3573"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3538"
height="341.33701"
width="512"
style="fill:#d80027"
y="0.003000183" />
<polygon
transform="translate(0,-85.33)"
id="polygon3540"
points="128,223.996 0,223.996 0,287.996 128,287.996 128,426.662 192,426.662 192,287.996 512,287.996 512,223.996 192,223.996 192,85.33 128,85.33 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g3542">
</g>
<g
transform="translate(0,-85.33)"
id="g3544">
</g>
<g
transform="translate(0,-85.33)"
id="g3546">
</g>
<g
transform="translate(0,-85.33)"
id="g3548">
</g>
<g
transform="translate(0,-85.33)"
id="g3550">
</g>
<g
transform="translate(0,-85.33)"
id="g3552">
</g>
<g
transform="translate(0,-85.33)"
id="g3554">
</g>
<g
transform="translate(0,-85.33)"
id="g3556">
</g>
<g
transform="translate(0,-85.33)"
id="g3558">
</g>
<g
transform="translate(0,-85.33)"
id="g3560">
</g>
<g
transform="translate(0,-85.33)"
id="g3562">
</g>
<g
transform="translate(0,-85.33)"
id="g3564">
</g>
<g
transform="translate(0,-85.33)"
id="g3566">
</g>
<g
transform="translate(0,-85.33)"
id="g3568">
</g>
<g
transform="translate(0,-85.33)"
id="g3570">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

202
public/img/flags/dm.svg Executable file
View File

@ -0,0 +1,202 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="dm.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3662"><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="defs3660" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3658"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3587"
height="341.32599"
width="512"
style="fill:#496e2d"
y="0" />
<polygon
transform="translate(0,-85.336998)"
id="polygon3589"
points="0,266.666 0,288 512,288 512,266.666 512,245.334 512,224 0,224 0,245.334 " />
<rect
x="0"
id="rect3591"
height="21.337"
width="512"
style="fill:#ffda44"
y="138.66299" />
<rect
x="0"
id="rect3593"
height="21.337"
width="512"
style="fill:#f0f0f0"
y="181.32599" />
<rect
id="rect3595"
height="341.32599"
width="64"
y="0"
x="224" />
<rect
id="rect3597"
height="341.32599"
width="21.326"
style="fill:#ffda44"
y="0"
x="224" />
<rect
id="rect3599"
height="341.32599"
width="21.326"
style="fill:#f0f0f0"
y="0"
x="266.67401" />
<circle
id="circle3601"
r="81.619003"
cy="170.66299"
cx="256"
style="fill:#d80027" />
<g
transform="translate(0,-85.336998)"
id="g3625">
<path
id="path3603"
d="m 274.596,265.107 c -6.071,-12.142 -13.963,-24.449 -13.963,-24.449 0,0 0.196,-5.603 0.196,-8.942 0,-5.03 -4.077,-9.107 -9.107,-9.107 -4.765,0 -8.668,3.661 -9.067,8.321 -3.746,0.245 -6.712,3.352 -6.712,7.161 0,2.769 1.569,5.168 3.864,6.368 1.141,-2.669 3.376,-4.753 6.141,-5.703 0.45,0.37 0.935,0.698 1.451,0.977 l 1.166,0.559 c 0,0 -4.326,12.193 -4.326,18.745 0,18.416 12.142,24.095 12.142,24.095 v 0.19 l -6.071,6.069 h 12.142 v -12.142 l 6.071,6.072 c 0.057,-0.115 11.503,-7.354 6.073,-18.214 z"
style="fill:#496e2d" />
<polygon
id="polygon3605"
points="267.703,197.72 260.47,202.976 263.234,211.478 256,206.224 248.766,211.478 251.53,202.976 244.297,197.72 253.237,197.72 256,189.217 258.763,197.72 "
style="fill:#496e2d" />
<polygon
id="polygon3607"
points="231.211,201.972 228.449,210.474 235.682,215.729 226.743,215.73 223.979,224.233 221.216,215.73 212.276,215.729 219.509,210.474 216.746,201.972 223.978,207.226 "
style="fill:#496e2d" />
<polygon
id="polygon3609"
points="204.188,226.861 206.952,235.363 215.891,235.363 208.659,240.618 211.423,249.121 204.188,243.867 196.955,249.12 199.718,240.618 192.486,235.363 201.425,235.363 "
style="fill:#496e2d" />
<polygon
id="polygon3611"
points="196.955,262.88 204.188,268.134 211.421,262.879 208.659,271.382 215.893,276.637 206.952,276.638 204.188,285.139 201.425,276.637 192.486,276.637 199.718,271.383 "
style="fill:#496e2d" />
<polygon
id="polygon3613"
points="212.275,296.271 221.216,296.271 223.979,287.767 226.743,296.27 235.682,296.27 228.449,301.526 231.211,310.028 223.978,304.774 216.746,310.028 219.509,301.527 "
style="fill:#496e2d" />
<polygon
id="polygon3615"
points="244.297,314.281 251.53,309.025 248.766,300.522 256,305.776 263.233,300.522 260.47,309.025 267.703,314.28 258.763,314.281 256,322.783 253.237,314.281 "
style="fill:#496e2d" />
<polygon
id="polygon3617"
points="280.789,310.029 283.551,301.526 276.317,296.271 285.257,296.27 288.02,287.767 290.784,296.271 299.724,296.271 292.491,301.527 295.254,310.028 288.022,304.774 "
style="fill:#496e2d" />
<polygon
id="polygon3619"
points="307.812,285.139 305.048,276.638 296.107,276.638 303.341,271.382 300.577,262.88 307.812,268.134 315.044,262.88 312.282,271.382 319.514,276.637 310.575,276.637 "
style="fill:#496e2d" />
<polygon
id="polygon3621"
points="315.045,249.12 307.812,243.866 300.578,249.121 303.341,240.618 296.107,235.364 305.048,235.363 307.811,226.861 310.575,235.363 319.514,235.363 312.282,240.618 "
style="fill:#496e2d" />
<polygon
id="polygon3623"
points="299.724,215.729 290.784,215.729 288.022,224.233 285.257,215.73 276.317,215.73 283.551,210.474 280.789,201.973 288.022,207.226 295.254,201.972 292.491,210.474 "
style="fill:#496e2d" />
</g>
<g
transform="translate(0,-85.336998)"
id="g3627">
</g>
<g
transform="translate(0,-85.336998)"
id="g3629">
</g>
<g
transform="translate(0,-85.336998)"
id="g3631">
</g>
<g
transform="translate(0,-85.336998)"
id="g3633">
</g>
<g
transform="translate(0,-85.336998)"
id="g3635">
</g>
<g
transform="translate(0,-85.336998)"
id="g3637">
</g>
<g
transform="translate(0,-85.336998)"
id="g3639">
</g>
<g
transform="translate(0,-85.336998)"
id="g3641">
</g>
<g
transform="translate(0,-85.336998)"
id="g3643">
</g>
<g
transform="translate(0,-85.336998)"
id="g3645">
</g>
<g
transform="translate(0,-85.336998)"
id="g3647">
</g>
<g
transform="translate(0,-85.336998)"
id="g3649">
</g>
<g
transform="translate(0,-85.336998)"
id="g3651">
</g>
<g
transform="translate(0,-85.336998)"
id="g3653">
</g>
<g
transform="translate(0,-85.336998)"
id="g3655">
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

150
public/img/flags/do.svg Executable file
View File

@ -0,0 +1,150 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="do.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3723"><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="defs3721" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3719"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3672"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect3674"
height="126.141"
width="211.478"
style="fill:#d80027"
y="215.185" />
<rect
x="0"
id="rect3676"
height="126.152"
width="211.478"
style="fill:#0052b4"
y="0" />
<rect
id="rect3678"
height="126.152"
width="211.478"
style="fill:#d80027"
y="0"
x="300.522" />
<rect
id="rect3680"
height="126.141"
width="211.478"
style="fill:#0052b4"
y="215.185"
x="300.522" />
<path
id="path3682"
d="m 300.521,170.669 c 0,24.588 -19.932,44.521 -44.521,44.521 -24.589,0 -44.521,-19.932 -44.521,-44.521 0,-24.589 44.521,-44.521 44.521,-44.521 0,0 44.521,19.932 44.521,44.521 z"
style="fill:#496e2d" />
<path
id="path3684"
d="m 211.479,170.669 c 0,-24.588 19.932,-44.521 44.521,-44.521 24.589,0 44.521,19.932 44.521,44.521"
style="fill:#0052b4" />
<path
id="path3686"
d="m 230.957,148.408 v 27.825 c 0,13.831 11.212,25.042 25.043,25.042 13.832,0 25.043,-11.212 25.043,-25.042 v -27.825 z"
style="fill:#d80027" />
<g
transform="translate(0,-85.336998)"
id="g3688">
</g>
<g
transform="translate(0,-85.336998)"
id="g3690">
</g>
<g
transform="translate(0,-85.336998)"
id="g3692">
</g>
<g
transform="translate(0,-85.336998)"
id="g3694">
</g>
<g
transform="translate(0,-85.336998)"
id="g3696">
</g>
<g
transform="translate(0,-85.336998)"
id="g3698">
</g>
<g
transform="translate(0,-85.336998)"
id="g3700">
</g>
<g
transform="translate(0,-85.336998)"
id="g3702">
</g>
<g
transform="translate(0,-85.336998)"
id="g3704">
</g>
<g
transform="translate(0,-85.336998)"
id="g3706">
</g>
<g
transform="translate(0,-85.336998)"
id="g3708">
</g>
<g
transform="translate(0,-85.336998)"
id="g3710">
</g>
<g
transform="translate(0,-85.336998)"
id="g3712">
</g>
<g
transform="translate(0,-85.336998)"
id="g3714">
</g>
<g
transform="translate(0,-85.336998)"
id="g3716">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

129
public/img/flags/dz.svg Executable 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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="dz.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3778"><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="defs3776" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3774"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3733"
height="341.32599"
width="512"
style="fill:#496e2d"
y="0" />
<rect
id="rect3735"
height="341.33701"
width="256"
style="fill:#f0f0f0"
y="0"
x="256" />
<g
transform="translate(0,-85.331001)"
id="g3741">
<polygon
id="polygon3737"
points="255.989,235.201 270.013,254.481 256.011,273.777 278.682,266.396 292.707,285.676 292.693,261.835 315.362,254.454 292.684,247.1 292.669,223.259 278.666,242.554 "
style="fill:#d80027" />
<path
id="path3739"
d="m 270.158,304.226 c -26.637,0 -48.232,-21.594 -48.232,-48.232 0,-26.638 21.594,-48.232 48.232,-48.232 8.306,0 16.12,2.1 22.943,5.797 -10.704,-10.467 -25.342,-16.927 -41.494,-16.927 -32.785,0 -59.362,26.577 -59.362,59.362 0,32.785 26.577,59.362 59.362,59.362 16.152,0 30.79,-6.461 41.494,-16.927 -6.823,3.698 -14.638,5.797 -22.943,5.797 z"
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.331001)"
id="g3743">
</g>
<g
transform="translate(0,-85.331001)"
id="g3745">
</g>
<g
transform="translate(0,-85.331001)"
id="g3747">
</g>
<g
transform="translate(0,-85.331001)"
id="g3749">
</g>
<g
transform="translate(0,-85.331001)"
id="g3751">
</g>
<g
transform="translate(0,-85.331001)"
id="g3753">
</g>
<g
transform="translate(0,-85.331001)"
id="g3755">
</g>
<g
transform="translate(0,-85.331001)"
id="g3757">
</g>
<g
transform="translate(0,-85.331001)"
id="g3759">
</g>
<g
transform="translate(0,-85.331001)"
id="g3761">
</g>
<g
transform="translate(0,-85.331001)"
id="g3763">
</g>
<g
transform="translate(0,-85.331001)"
id="g3765">
</g>
<g
transform="translate(0,-85.331001)"
id="g3767">
</g>
<g
transform="translate(0,-85.331001)"
id="g3769">
</g>
<g
transform="translate(0,-85.331001)"
id="g3771">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

124
public/img/flags/ec-w.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="ec-w.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3886"><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="defs3884" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3882"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3845"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect3847"
height="113.775"
width="512"
style="fill:#6da544"
y="0" />
<rect
x="0"
id="rect3849"
height="113.775"
width="512"
style="fill:#0052b4"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g3851">
</g>
<g
transform="translate(0,-85.336998)"
id="g3853">
</g>
<g
transform="translate(0,-85.336998)"
id="g3855">
</g>
<g
transform="translate(0,-85.336998)"
id="g3857">
</g>
<g
transform="translate(0,-85.336998)"
id="g3859">
</g>
<g
transform="translate(0,-85.336998)"
id="g3861">
</g>
<g
transform="translate(0,-85.336998)"
id="g3863">
</g>
<g
transform="translate(0,-85.336998)"
id="g3865">
</g>
<g
transform="translate(0,-85.336998)"
id="g3867">
</g>
<g
transform="translate(0,-85.336998)"
id="g3869">
</g>
<g
transform="translate(0,-85.336998)"
id="g3871">
</g>
<g
transform="translate(0,-85.336998)"
id="g3873">
</g>
<g
transform="translate(0,-85.336998)"
id="g3875">
</g>
<g
transform="translate(0,-85.336998)"
id="g3877">
</g>
<g
transform="translate(0,-85.336998)"
id="g3879">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

137
public/img/flags/ec.svg Executable file
View File

@ -0,0 +1,137 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="ec.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3835"><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="defs3833" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3831"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3788"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect3790"
height="85.336998"
width="512"
style="fill:#0052b4"
y="170.66299" />
<rect
x="0"
id="rect3792"
height="85.325996"
width="512"
style="fill:#d80027"
y="256" />
<circle
id="circle3794"
r="59.359001"
cy="170.66299"
cx="256"
style="fill:#ffda44" />
<path
id="path3796"
d="m 256,209.967 c -21.098,0 -38.261,-17.163 -38.261,-38.261 v -22.957 c 0,-21.098 17.163,-38.261 38.261,-38.261 21.098,0 38.261,17.163 38.261,38.261 v 22.957 c 0,21.098 -17.163,38.261 -38.261,38.261 z"
style="fill:#338af3" />
<path
id="path3798"
d="m 317.217,79.880002 h -45.913 c 0,-8.451 -6.853,-15.304 -15.304,-15.304 -8.451,0 -15.304,6.853 -15.304,15.304 h -45.913 c 0,8.452 7.363,15.304 15.814,15.304 h -0.51 c 0,8.451998 6.852,15.303998 15.304,15.303998 0,8.452 6.852,15.304 15.304,15.304 h 30.609 c 8.452,0 15.304,-6.852 15.304,-15.304 8.452,0 15.304,-6.852 15.304,-15.303998 h -0.51 c 8.453,0 15.815,-6.852 15.815,-15.304 z" />
<g
transform="translate(0,-85.336998)"
id="g3800">
</g>
<g
transform="translate(0,-85.336998)"
id="g3802">
</g>
<g
transform="translate(0,-85.336998)"
id="g3804">
</g>
<g
transform="translate(0,-85.336998)"
id="g3806">
</g>
<g
transform="translate(0,-85.336998)"
id="g3808">
</g>
<g
transform="translate(0,-85.336998)"
id="g3810">
</g>
<g
transform="translate(0,-85.336998)"
id="g3812">
</g>
<g
transform="translate(0,-85.336998)"
id="g3814">
</g>
<g
transform="translate(0,-85.336998)"
id="g3816">
</g>
<g
transform="translate(0,-85.336998)"
id="g3818">
</g>
<g
transform="translate(0,-85.336998)"
id="g3820">
</g>
<g
transform="translate(0,-85.336998)"
id="g3822">
</g>
<g
transform="translate(0,-85.336998)"
id="g3824">
</g>
<g
transform="translate(0,-85.336998)"
id="g3826">
</g>
<g
transform="translate(0,-85.336998)"
id="g3828">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

123
public/img/flags/ee.svg Executable file
View File

@ -0,0 +1,123 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="ee.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3937"><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="defs3935" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3933"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3896"
height="341.32599"
width="512"
y="0" />
<rect
x="0"
id="rect3898"
height="113.775"
width="512"
style="fill:#0052b4"
y="0" />
<rect
x="0"
id="rect3900"
height="113.775"
width="512"
style="fill:#f0f0f0"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g3902">
</g>
<g
transform="translate(0,-85.336998)"
id="g3904">
</g>
<g
transform="translate(0,-85.336998)"
id="g3906">
</g>
<g
transform="translate(0,-85.336998)"
id="g3908">
</g>
<g
transform="translate(0,-85.336998)"
id="g3910">
</g>
<g
transform="translate(0,-85.336998)"
id="g3912">
</g>
<g
transform="translate(0,-85.336998)"
id="g3914">
</g>
<g
transform="translate(0,-85.336998)"
id="g3916">
</g>
<g
transform="translate(0,-85.336998)"
id="g3918">
</g>
<g
transform="translate(0,-85.336998)"
id="g3920">
</g>
<g
transform="translate(0,-85.336998)"
id="g3922">
</g>
<g
transform="translate(0,-85.336998)"
id="g3924">
</g>
<g
transform="translate(0,-85.336998)"
id="g3926">
</g>
<g
transform="translate(0,-85.336998)"
id="g3928">
</g>
<g
transform="translate(0,-85.336998)"
id="g3930">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

127
public/img/flags/eg.svg Executable file
View File

@ -0,0 +1,127 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="eg.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata3990"><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="defs3988" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview3986"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect3947"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect3949"
height="113.775"
width="512"
style="fill:#d80027"
y="0" />
<rect
x="0"
id="rect3951"
height="113.775"
width="512"
y="227.55099" />
<path
id="path3953"
d="m 320,150.953 h -48 c 0,-8.836 -7.164,-16 -16,-16 -8.836,0 -16,7.164 -16,16 h -48 c 0,8.836 7.697,16 16.533,16 H 208 c 0,8.836 7.164,16 16,16 0,8.836 7.164,16 16,16 h 32 c 8.836,0 16,-7.164 16,-16 8.836,0 16,-7.164 16,-16 h -0.533 c 8.836,0 16.533,-7.163 16.533,-16 z"
style="fill:#ff9811" />
<g
transform="translate(0,-85.336998)"
id="g3955">
</g>
<g
transform="translate(0,-85.336998)"
id="g3957">
</g>
<g
transform="translate(0,-85.336998)"
id="g3959">
</g>
<g
transform="translate(0,-85.336998)"
id="g3961">
</g>
<g
transform="translate(0,-85.336998)"
id="g3963">
</g>
<g
transform="translate(0,-85.336998)"
id="g3965">
</g>
<g
transform="translate(0,-85.336998)"
id="g3967">
</g>
<g
transform="translate(0,-85.336998)"
id="g3969">
</g>
<g
transform="translate(0,-85.336998)"
id="g3971">
</g>
<g
transform="translate(0,-85.336998)"
id="g3973">
</g>
<g
transform="translate(0,-85.336998)"
id="g3975">
</g>
<g
transform="translate(0,-85.336998)"
id="g3977">
</g>
<g
transform="translate(0,-85.336998)"
id="g3979">
</g>
<g
transform="translate(0,-85.336998)"
id="g3981">
</g>
<g
transform="translate(0,-85.336998)"
id="g3983">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

139
public/img/flags/eh.svg Executable file
View File

@ -0,0 +1,139 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="eh.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4049"><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="defs4047" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4045"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4000"
height="341.32599"
width="512"
style="fill:#f0f0f0"
y="0.0059979861" />
<rect
x="0"
id="rect4002"
height="113.775"
width="512"
y="0.0059979861" />
<rect
x="0"
id="rect4004"
height="113.775"
width="512"
style="fill:#496e2d"
y="227.55701" />
<g
transform="translate(0,-85.331)"
id="g4012">
<polygon
id="polygon4006"
points="0,85.331 256,256.006 0,426.668 "
style="fill:#d80027" />
<path
id="path4008"
d="m 305.716,256 c 0,-19.892 13.98,-36.51 32.649,-40.587 -2.869,-0.627 -5.847,-0.966 -8.904,-0.966 -22.95,0 -41.553,18.603 -41.553,41.553 0,22.95 18.603,41.553 41.553,41.553 3.058,0 6.035,-0.339 8.904,-0.966 C 319.696,292.51 305.716,275.892 305.716,256 Z"
style="fill:#d80027" />
<polygon
id="polygon4010"
points="365.078,247.427 349.648,258.638 355.542,276.777 340.112,265.567 324.681,276.777 330.576,258.638 315.145,247.427 334.217,247.427 340.112,229.287 346.006,247.427 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.331)"
id="g4014">
</g>
<g
transform="translate(0,-85.331)"
id="g4016">
</g>
<g
transform="translate(0,-85.331)"
id="g4018">
</g>
<g
transform="translate(0,-85.331)"
id="g4020">
</g>
<g
transform="translate(0,-85.331)"
id="g4022">
</g>
<g
transform="translate(0,-85.331)"
id="g4024">
</g>
<g
transform="translate(0,-85.331)"
id="g4026">
</g>
<g
transform="translate(0,-85.331)"
id="g4028">
</g>
<g
transform="translate(0,-85.331)"
id="g4030">
</g>
<g
transform="translate(0,-85.331)"
id="g4032">
</g>
<g
transform="translate(0,-85.331)"
id="g4034">
</g>
<g
transform="translate(0,-85.331)"
id="g4036">
</g>
<g
transform="translate(0,-85.331)"
id="g4038">
</g>
<g
transform="translate(0,-85.331)"
id="g4040">
</g>
<g
transform="translate(0,-85.331)"
id="g4042">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

125
public/img/flags/er.svg Executable file
View File

@ -0,0 +1,125 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32602"
width="512"
sodipodi:docname="er.svg"
xml:space="preserve"
viewBox="0 0 512 341.32602"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4102"><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="defs4100" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4098"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="2.3437195e-08"
id="rect4059"
height="341.32599"
width="512"
style="fill:#338af3"
y="0" />
<rect
x="2.3437195e-08"
id="rect4061"
height="170.66299"
width="512"
style="fill:#6da544"
y="0" />
<path
id="path4063"
d="M 2.3437195e-8,341.326 C -0.00399998,341.353 512,170.657 512,170.657 L 2.3437195e-8,2.0141602e-6 Z"
style="fill:#d80027" />
<path
id="path4065"
d="m 140.986,106.657 c -29.718,0 -53.895,24.176 -53.895,53.895 v 20.211 c 0,29.718 24.178,53.895 53.895,53.895 29.717,0 53.895,-24.176 53.895,-53.895 v -20.211 c 0,-29.717 -24.178,-53.895 -53.895,-53.895 z m 33.684,74.106 c 0,15.054 -9.927,27.831 -23.579,32.134 v -22.028 l 14.299,-14.298 -14.29,-14.29 -0.008,-5.087 v -6.745 h -20.211 v 20.211 l -14.288,14.288 14.288,14.288 v 13.663 c -13.651,-4.303 -23.579,-17.08 -23.579,-32.134 v -20.212 c 0,-18.573 15.111,-33.684 33.684,-33.684 18.573,0 33.684,15.111 33.684,33.684 v 20.21 z"
style="fill:#ffda44" />
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4067">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4069">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4071">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4073">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4075">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4077">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4079">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4081">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4083">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4085">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4087">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4089">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4091">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4093">
</g>
<g
transform="translate(2.3437195e-8,-85.336998)"
id="g4095">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

207
public/img/flags/es-ce.svg Executable file
View File

@ -0,0 +1,207 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="es-ce.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4191"><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="defs4189" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4187"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4112"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0.003000183" />
<polygon
transform="translate(0,-85.33)"
id="polygon4114"
points="256,85.33 85.334,85.33 256,255.996 " />
<polygon
transform="translate(0,-85.33)"
id="polygon4116"
points="256,255.996 0,255.996 0,426.662 85.334,426.662 " />
<polygon
transform="translate(0,-85.33)"
id="polygon4118"
points="256,426.662 426.666,426.662 256,255.996 " />
<polygon
transform="translate(0,-85.33)"
id="polygon4120"
points="512,255.996 512,85.33 426.666,85.33 256,255.996 " />
<polygon
transform="translate(0,-85.33)"
id="polygon4122"
points="315.362,204.054 315.362,168.436 291.617,180.309 256,144.692 220.383,180.309 196.638,168.436 196.638,204.054 256,211.475 "
style="fill:#ffda44" />
<path
id="path4124"
d="m 256,259.71 c -32.732,0 -59.362,-26.63 -59.362,-59.362 v -59.36 l 22.261,-22.262 h 74.203 l 22.261,22.262 v 59.36 C 315.362,233.08 288.732,259.71 256,259.71 Z"
style="fill:#d80027" />
<path
id="path4126"
d="m 256,237.449 c -20.458,0 -37.101,-16.643 -37.101,-37.101 v -59.361 h 74.203 v 59.361 c -10e-4,20.457 -16.644,37.101 -37.102,37.101 z"
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g4142">
<rect
id="rect4128"
height="22.261"
width="22.261"
style="fill:#ffda44"
y="204.05"
x="196.64101" />
<rect
id="rect4130"
height="22.261"
width="22.261"
style="fill:#ffda44"
y="204.05"
x="293.09799" />
<rect
id="rect4132"
height="22.261"
width="22.261"
style="fill:#ffda44"
y="252.28999"
x="293.09799" />
<rect
id="rect4134"
height="22.261"
width="22.261"
style="fill:#ffda44"
y="252.28999"
x="196.64101" />
<path
id="path4136"
d="m 256,322.779 c -3.877,0 -7.615,-0.6 -11.13,-1.709 v 22.908 c 3.608,0.688 7.325,1.062 11.13,1.062 3.805,0 7.522,-0.374 11.13,-1.062 V 321.07 c -3.515,1.109 -7.253,1.709 -11.13,1.709 z"
style="fill:#ffda44" />
<path
id="path4138"
d="m 219.395,291.7 -17.766,17.766 c 3.081,7.013 7.474,13.319 12.876,18.606 l 15.733,-15.733 c -5.614,-5.426 -9.525,-12.599 -10.843,-20.639 z"
style="fill:#ffda44" />
<path
id="path4140"
d="M 310.371,309.467 292.605,291.7 c -1.319,8.038 -5.229,15.212 -10.843,20.638 l 15.733,15.733 c 5.401,-5.286 9.795,-11.591 12.876,-18.604 z"
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.33)"
id="g4154">
<path
id="path4144"
d="m 248.579,238.683 v 12.367 c 0,4.098 3.322,7.421 7.421,7.421 4.098,0 7.421,-3.322 7.421,-7.421 v -12.367 z"
style="fill:#0052b4" />
<path
id="path4146"
d="m 248.579,288.151 v 12.367 c 0,4.098 3.322,7.421 7.421,7.421 4.098,0 7.421,-3.322 7.421,-7.421 v -12.367 z"
style="fill:#0052b4" />
<path
id="path4148"
d="m 270.84,263.417 v 12.368 c 0,4.097 3.322,7.421 7.421,7.421 4.099,0 7.421,-3.324 7.421,-7.421 v -12.368 z"
style="fill:#0052b4" />
<path
id="path4150"
d="m 248.579,263.417 v 12.368 c 0,4.097 3.322,7.421 7.421,7.421 4.098,0 7.421,-3.324 7.421,-7.421 v -12.368 z"
style="fill:#0052b4" />
<path
id="path4152"
d="m 226.318,263.417 v 12.368 c 0,4.097 3.322,7.421 7.421,7.421 4.099,0 7.421,-3.324 7.421,-7.421 v -12.368 z"
style="fill:#0052b4" />
</g>
<g
transform="translate(0,-85.33)"
id="g4156">
</g>
<g
transform="translate(0,-85.33)"
id="g4158">
</g>
<g
transform="translate(0,-85.33)"
id="g4160">
</g>
<g
transform="translate(0,-85.33)"
id="g4162">
</g>
<g
transform="translate(0,-85.33)"
id="g4164">
</g>
<g
transform="translate(0,-85.33)"
id="g4166">
</g>
<g
transform="translate(0,-85.33)"
id="g4168">
</g>
<g
transform="translate(0,-85.33)"
id="g4170">
</g>
<g
transform="translate(0,-85.33)"
id="g4172">
</g>
<g
transform="translate(0,-85.33)"
id="g4174">
</g>
<g
transform="translate(0,-85.33)"
id="g4176">
</g>
<g
transform="translate(0,-85.33)"
id="g4178">
</g>
<g
transform="translate(0,-85.33)"
id="g4180">
</g>
<g
transform="translate(0,-85.33)"
id="g4182">
</g>
<g
transform="translate(0,-85.33)"
id="g4184">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

124
public/img/flags/es-cn.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="es-cn.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4242"><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="defs4240" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4238"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4201"
height="341.33701"
width="512"
style="fill:#338af3"
y="0" />
<rect
x="0"
id="rect4203"
height="341.33701"
width="170.66299"
style="fill:#f0f0f0"
y="0" />
<rect
id="rect4205"
height="341.33701"
width="170.66299"
style="fill:#ffda44"
y="0"
x="341.33701" />
<g
transform="translate(0,-85.331001)"
id="g4207">
</g>
<g
transform="translate(0,-85.331001)"
id="g4209">
</g>
<g
transform="translate(0,-85.331001)"
id="g4211">
</g>
<g
transform="translate(0,-85.331001)"
id="g4213">
</g>
<g
transform="translate(0,-85.331001)"
id="g4215">
</g>
<g
transform="translate(0,-85.331001)"
id="g4217">
</g>
<g
transform="translate(0,-85.331001)"
id="g4219">
</g>
<g
transform="translate(0,-85.331001)"
id="g4221">
</g>
<g
transform="translate(0,-85.331001)"
id="g4223">
</g>
<g
transform="translate(0,-85.331001)"
id="g4225">
</g>
<g
transform="translate(0,-85.331001)"
id="g4227">
</g>
<g
transform="translate(0,-85.331001)"
id="g4229">
</g>
<g
transform="translate(0,-85.331001)"
id="g4231">
</g>
<g
transform="translate(0,-85.331001)"
id="g4233">
</g>
<g
transform="translate(0,-85.331001)"
id="g4235">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

161
public/img/flags/es-ib.svg Executable file
View File

@ -0,0 +1,161 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="es-ib.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4305"><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="defs4303" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4301"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4252"
height="341.33701"
width="512"
style="fill:#d80027"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g4264">
<rect
x="0"
id="rect4254"
height="37.921001"
width="512"
style="fill:#ffda44"
y="161.174" />
<rect
x="0"
id="rect4256"
height="37.921001"
width="512"
style="fill:#ffda44"
y="237.028" />
<rect
x="0"
id="rect4258"
height="37.921001"
width="512"
style="fill:#ffda44"
y="312.88199" />
<rect
x="0"
id="rect4260"
height="37.921001"
width="512"
style="fill:#ffda44"
y="388.73599" />
<rect
x="0"
id="rect4262"
height="37.921001"
width="512"
style="fill:#ffda44"
y="85.331001" />
</g>
<rect
x="0"
id="rect4266"
height="170.66299"
width="256"
style="fill:#4a1f63"
y="0" />
<polygon
transform="translate(0,-85.331001)"
id="polygon4268"
points="165.101,170.66 165.101,155.819 150.261,155.819 150.261,170.66 142.84,170.66 142.84,140.978 113.16,140.978 113.16,170.66 105.739,170.66 105.739,155.819 90.899,155.819 90.899,170.66 83.478,170.66 83.478,155.819 68.638,155.819 68.638,200.341 187.362,200.341 187.362,155.819 172.522,155.819 172.522,170.66 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.331001)"
id="g4270">
</g>
<g
transform="translate(0,-85.331001)"
id="g4272">
</g>
<g
transform="translate(0,-85.331001)"
id="g4274">
</g>
<g
transform="translate(0,-85.331001)"
id="g4276">
</g>
<g
transform="translate(0,-85.331001)"
id="g4278">
</g>
<g
transform="translate(0,-85.331001)"
id="g4280">
</g>
<g
transform="translate(0,-85.331001)"
id="g4282">
</g>
<g
transform="translate(0,-85.331001)"
id="g4284">
</g>
<g
transform="translate(0,-85.331001)"
id="g4286">
</g>
<g
transform="translate(0,-85.331001)"
id="g4288">
</g>
<g
transform="translate(0,-85.331001)"
id="g4290">
</g>
<g
transform="translate(0,-85.331001)"
id="g4292">
</g>
<g
transform="translate(0,-85.331001)"
id="g4294">
</g>
<g
transform="translate(0,-85.331001)"
id="g4296">
</g>
<g
transform="translate(0,-85.331001)"
id="g4298">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

200
public/img/flags/es-ml.svg Executable 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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="es-ml.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4386"><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="defs4384" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4382"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4315"
height="341.33701"
width="512"
style="fill:#338af3"
y="0" />
<rect
id="rect4317"
height="22.261"
width="178.08701"
style="fill:#818085"
y="185.5"
x="166.957" />
<polygon
transform="translate(0,-85.331001)"
id="polygon4319"
points="315.362,204.052 315.362,168.435 291.617,180.307 256,144.69 220.383,180.307 196.638,168.435 196.638,204.052 256,211.474 "
style="fill:#ffda44" />
<g
transform="translate(0,-85.331001)"
id="g4325">
<polygon
id="polygon4321"
points="159.536,274.546 166.957,263.415 159.536,252.285 159.536,226.314 181.797,226.314 181.797,315.357 159.536,315.357 "
style="fill:#f0f0f0" />
<polygon
id="polygon4323"
points="330.203,226.314 352.464,226.314 352.464,252.284 345.043,263.601 352.464,274.548 352.464,315.357 330.203,315.357 "
style="fill:#f0f0f0" />
</g>
<rect
id="rect4327"
height="22.261"
width="192.924"
style="fill:#acabb1"
y="166.957"
x="159.533" />
<path
id="path4329"
d="m 256,259.707 c -32.732,0 -59.362,-26.63 -59.362,-59.362 v -81.623 h 118.725 v 81.623 c -10e-4,32.732 -26.631,59.362 -59.363,59.362 z"
style="fill:#f0f0f0" />
<path
id="path4331"
d="m 256,237.446 c -20.458,0 -37.101,-16.643 -37.101,-37.101 v -59.362 h 74.203 v 59.362 c -10e-4,20.458 -16.644,37.101 -37.102,37.101 z"
style="fill:#0052b4" />
<g
transform="translate(0,-85.331001)"
id="g4349">
<rect
id="rect4333"
height="22.261"
width="22.261"
style="fill:#d80027"
y="204.049"
x="196.64101" />
<rect
id="rect4335"
height="22.261"
width="22.261"
style="fill:#d80027"
y="204.049"
x="293.09799" />
<rect
id="rect4337"
height="22.261"
width="22.261"
style="fill:#d80027"
y="252.28799"
x="293.09799" />
<rect
id="rect4339"
height="22.261"
width="22.261"
style="fill:#d80027"
y="252.28799"
x="196.64101" />
<rect
id="rect4341"
height="22.261"
width="22.261"
style="fill:#d80027"
y="204.049"
x="244.87" />
<path
id="path4343"
d="m 256,322.777 c -3.877,0 -7.615,-0.6 -11.13,-1.709 v 22.908 c 3.608,0.688 7.325,1.062 11.13,1.062 3.805,0 7.522,-0.374 11.13,-1.062 v -22.908 c -3.515,1.109 -7.253,1.709 -11.13,1.709 z"
style="fill:#d80027" />
<path
id="path4345"
d="m 219.395,291.699 -17.766,17.766 c 3.081,7.013 7.474,13.319 12.876,18.606 l 15.733,-15.733 c -5.614,-5.426 -9.525,-12.6 -10.843,-20.639 z"
style="fill:#d80027" />
<path
id="path4347"
d="m 310.371,309.465 -17.766,-17.766 c -1.319,8.038 -5.229,15.212 -10.843,20.638 l 15.733,15.733 c 5.401,-5.286 9.795,-11.592 12.876,-18.605 z"
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.331001)"
id="g4351">
</g>
<g
transform="translate(0,-85.331001)"
id="g4353">
</g>
<g
transform="translate(0,-85.331001)"
id="g4355">
</g>
<g
transform="translate(0,-85.331001)"
id="g4357">
</g>
<g
transform="translate(0,-85.331001)"
id="g4359">
</g>
<g
transform="translate(0,-85.331001)"
id="g4361">
</g>
<g
transform="translate(0,-85.331001)"
id="g4363">
</g>
<g
transform="translate(0,-85.331001)"
id="g4365">
</g>
<g
transform="translate(0,-85.331001)"
id="g4367">
</g>
<g
transform="translate(0,-85.331001)"
id="g4369">
</g>
<g
transform="translate(0,-85.331001)"
id="g4371">
</g>
<g
transform="translate(0,-85.331001)"
id="g4373">
</g>
<g
transform="translate(0,-85.331001)"
id="g4375">
</g>
<g
transform="translate(0,-85.331001)"
id="g4377">
</g>
<g
transform="translate(0,-85.331001)"
id="g4379">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

128
public/img/flags/es.svg Executable file
View File

@ -0,0 +1,128 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="es.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4490"><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="defs4488" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4486"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4447"
height="341.33701"
width="512"
style="fill:#ffda44"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g4453">
<rect
x="0"
id="rect4449"
height="113.775"
width="512"
style="fill:#d80027"
y="85.331001" />
<rect
x="0"
id="rect4451"
height="113.775"
width="512"
style="fill:#d80027"
y="312.88199" />
</g>
<g
transform="translate(0,-85.331001)"
id="g4455">
</g>
<g
transform="translate(0,-85.331001)"
id="g4457">
</g>
<g
transform="translate(0,-85.331001)"
id="g4459">
</g>
<g
transform="translate(0,-85.331001)"
id="g4461">
</g>
<g
transform="translate(0,-85.331001)"
id="g4463">
</g>
<g
transform="translate(0,-85.331001)"
id="g4465">
</g>
<g
transform="translate(0,-85.331001)"
id="g4467">
</g>
<g
transform="translate(0,-85.331001)"
id="g4469">
</g>
<g
transform="translate(0,-85.331001)"
id="g4471">
</g>
<g
transform="translate(0,-85.331001)"
id="g4473">
</g>
<g
transform="translate(0,-85.331001)"
id="g4475">
</g>
<g
transform="translate(0,-85.331001)"
id="g4477">
</g>
<g
transform="translate(0,-85.331001)"
id="g4479">
</g>
<g
transform="translate(0,-85.331001)"
id="g4481">
</g>
<g
transform="translate(0,-85.331001)"
id="g4483">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

120
public/img/flags/esp-pv.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="esp-pv.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4437"><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="defs4435" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4433"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4396"
height="341.33701"
width="512"
style="fill:#d80027"
y="0.003000183" />
<polygon
transform="translate(0,-85.33)"
id="polygon4398"
points="512,85.33 466.745,85.33 256,225.826 45.255,85.33 0,85.33 0,115.499 210.745,255.996 0,396.493 0,426.662 45.255,426.662 256,286.166 466.745,426.662 512,426.662 512,396.493 301.255,255.996 512,115.499 "
style="fill:#496e2d" />
<polygon
transform="translate(0,-85.33)"
id="polygon4400"
points="278.261,85.33 233.739,85.33 233.739,202.254 233.74,233.735 233.74,233.735 202.258,233.735 0,233.735 0,278.257 202.258,278.257 233.739,278.257 233.739,309.738 233.739,426.662 278.261,426.662 278.261,309.739 278.261,278.258 278.261,278.257 309.743,278.257 512,278.257 512,233.735 309.742,233.735 278.262,233.735 278.261,233.735 278.261,202.254 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g4402">
</g>
<g
transform="translate(0,-85.33)"
id="g4404">
</g>
<g
transform="translate(0,-85.33)"
id="g4406">
</g>
<g
transform="translate(0,-85.33)"
id="g4408">
</g>
<g
transform="translate(0,-85.33)"
id="g4410">
</g>
<g
transform="translate(0,-85.33)"
id="g4412">
</g>
<g
transform="translate(0,-85.33)"
id="g4414">
</g>
<g
transform="translate(0,-85.33)"
id="g4416">
</g>
<g
transform="translate(0,-85.33)"
id="g4418">
</g>
<g
transform="translate(0,-85.33)"
id="g4420">
</g>
<g
transform="translate(0,-85.33)"
id="g4422">
</g>
<g
transform="translate(0,-85.33)"
id="g4424">
</g>
<g
transform="translate(0,-85.33)"
id="g4426">
</g>
<g
transform="translate(0,-85.33)"
id="g4428">
</g>
<g
transform="translate(0,-85.33)"
id="g4430">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

142
public/img/flags/et.svg Executable file
View File

@ -0,0 +1,142 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="et.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4549"><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="defs4547" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4545"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4500"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect4502"
height="113.775"
width="512"
style="fill:#6da544"
y="0" />
<rect
x="0"
id="rect4504"
height="113.775"
width="512"
style="fill:#d80027"
y="227.55099" />
<circle
id="circle4506"
r="81.619003"
cy="170.66299"
cx="256"
style="fill:#0052b4" />
<g
transform="translate(0,-85.336998)"
id="g4512">
<polygon
id="polygon4508"
points="318.474,238.142 279.824,266.17 294.673,311.651 255.982,283.491 217.352,311.599 232.142,266.17 193.526,238.142 241.248,238.142 255.982,192.796 270.717,238.142 "
style="fill:#ffda44" />
<polygon
id="polygon4510"
points="296.893,212.339 284.888,203.615 255.999,243.376 227.112,203.616 215.106,212.338 243.992,252.1 197.252,267.286 201.837,281.401 248.579,266.213 248.579,315.361 263.421,315.361 263.421,266.213 310.161,281.401 314.748,267.286 268.005,252.098 "
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.336998)"
id="g4514">
</g>
<g
transform="translate(0,-85.336998)"
id="g4516">
</g>
<g
transform="translate(0,-85.336998)"
id="g4518">
</g>
<g
transform="translate(0,-85.336998)"
id="g4520">
</g>
<g
transform="translate(0,-85.336998)"
id="g4522">
</g>
<g
transform="translate(0,-85.336998)"
id="g4524">
</g>
<g
transform="translate(0,-85.336998)"
id="g4526">
</g>
<g
transform="translate(0,-85.336998)"
id="g4528">
</g>
<g
transform="translate(0,-85.336998)"
id="g4530">
</g>
<g
transform="translate(0,-85.336998)"
id="g4532">
</g>
<g
transform="translate(0,-85.336998)"
id="g4534">
</g>
<g
transform="translate(0,-85.336998)"
id="g4536">
</g>
<g
transform="translate(0,-85.336998)"
id="g4538">
</g>
<g
transform="translate(0,-85.336998)"
id="g4540">
</g>
<g
transform="translate(0,-85.336998)"
id="g4542">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

146
public/img/flags/eu.svg Executable file
View File

@ -0,0 +1,146 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="eu.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4614"><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="defs4612" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4610"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4559"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g4577">
<polygon
id="polygon4561"
points="277.63,175.709 264.262,185.422 269.368,201.137 256,191.425 242.632,201.137 247.738,185.422 234.37,175.709 250.893,175.709 256,159.994 261.107,175.709 "
style="fill:#ffda44" />
<polygon
id="polygon4563"
points="214.525,183.93 211.939,200.25 226.662,207.752 210.342,210.337 207.757,226.658 200.255,211.935 183.936,214.519 195.62,202.835 188.118,188.112 202.841,195.613 "
style="fill:#ffda44" />
<polygon
id="polygon4565"
points="175.716,234.365 185.427,247.733 201.143,242.627 191.43,255.994 201.143,269.362 185.427,264.257 175.716,277.624 175.716,261.101 160,255.994 175.715,250.888 "
style="fill:#ffda44" />
<polygon
id="polygon4567"
points="183.936,297.47 200.257,300.055 207.757,285.332 210.342,301.653 226.662,304.237 211.94,311.739 214.525,328.058 202.841,316.375 188.118,323.877 195.618,309.153 "
style="fill:#ffda44" />
<polygon
id="polygon4569"
points="234.37,336.279 247.739,326.567 242.632,310.852 256,320.564 269.368,310.852 264.262,326.567 277.63,336.279 261.106,336.279 256,351.994 250.893,336.279 "
style="fill:#ffda44" />
<polygon
id="polygon4571"
points="297.475,328.06 300.061,311.738 285.338,304.237 301.657,301.653 304.243,285.332 311.745,300.055 328.064,297.47 316.38,309.154 323.882,323.877 309.159,316.376 "
style="fill:#ffda44" />
<polygon
id="polygon4573"
points="336.285,277.624 326.573,264.255 310.857,269.362 320.57,255.994 310.857,242.627 326.573,247.732 336.284,234.365 336.285,250.889 352,255.994 336.285,261.101 "
style="fill:#ffda44" />
<polygon
id="polygon4575"
points="328.065,214.519 311.743,211.933 304.243,226.657 301.657,210.337 285.338,207.752 300.061,200.25 297.475,183.93 309.159,195.614 323.882,188.112 316.381,202.835 "
style="fill:#ffda44" />
</g>
<g
transform="translate(0,-85.331001)"
id="g4579">
</g>
<g
transform="translate(0,-85.331001)"
id="g4581">
</g>
<g
transform="translate(0,-85.331001)"
id="g4583">
</g>
<g
transform="translate(0,-85.331001)"
id="g4585">
</g>
<g
transform="translate(0,-85.331001)"
id="g4587">
</g>
<g
transform="translate(0,-85.331001)"
id="g4589">
</g>
<g
transform="translate(0,-85.331001)"
id="g4591">
</g>
<g
transform="translate(0,-85.331001)"
id="g4593">
</g>
<g
transform="translate(0,-85.331001)"
id="g4595">
</g>
<g
transform="translate(0,-85.331001)"
id="g4597">
</g>
<g
transform="translate(0,-85.331001)"
id="g4599">
</g>
<g
transform="translate(0,-85.331001)"
id="g4601">
</g>
<g
transform="translate(0,-85.331001)"
id="g4603">
</g>
<g
transform="translate(0,-85.331001)"
id="g4605">
</g>
<g
transform="translate(0,-85.331001)"
id="g4607">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

115
public/img/flags/fi.svg Executable file
View File

@ -0,0 +1,115 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="fi.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4663"><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="defs4661" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4659"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4624"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0.0049996339" />
<polygon
transform="translate(0,-85.329)"
id="polygon4626"
points="183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 512,234.666 512,277.329 "
style="fill:#2e52b2" />
<g
transform="translate(0,-85.329)"
id="g4628">
</g>
<g
transform="translate(0,-85.329)"
id="g4630">
</g>
<g
transform="translate(0,-85.329)"
id="g4632">
</g>
<g
transform="translate(0,-85.329)"
id="g4634">
</g>
<g
transform="translate(0,-85.329)"
id="g4636">
</g>
<g
transform="translate(0,-85.329)"
id="g4638">
</g>
<g
transform="translate(0,-85.329)"
id="g4640">
</g>
<g
transform="translate(0,-85.329)"
id="g4642">
</g>
<g
transform="translate(0,-85.329)"
id="g4644">
</g>
<g
transform="translate(0,-85.329)"
id="g4646">
</g>
<g
transform="translate(0,-85.329)"
id="g4648">
</g>
<g
transform="translate(0,-85.329)"
id="g4650">
</g>
<g
transform="translate(0,-85.329)"
id="g4652">
</g>
<g
transform="translate(0,-85.329)"
id="g4654">
</g>
<g
transform="translate(0,-85.329)"
id="g4656">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

155
public/img/flags/fj.svg Executable file
View File

@ -0,0 +1,155 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="fj.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4732"><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="defs4730" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4728"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4673"
height="341.33701"
width="512"
style="fill:#2e52b2"
y="0.0049996339" />
<polygon
transform="translate(0,-85.329)"
id="polygon4675"
points="209.931,138.66 256,138.66 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 256,85.334 256,107.951 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.329)"
id="g4691">
<polygon
id="polygon4677"
points="112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 144,85.329 112,85.329 "
style="fill:#d80027" />
<polygon
id="polygon4679"
points="57.377,138.663 80,138.663 0,85.329 0,100.412 "
style="fill:#d80027" />
<polygon
id="polygon4681"
points="198.623,138.663 176,138.663 256,85.329 256,100.412 "
style="fill:#d80027" />
<polygon
id="polygon4683"
points="57.377,138.663 80,138.663 0,85.329 0,100.412 "
style="fill:#d80027" />
<polygon
id="polygon4685"
points="198.623,138.663 176,138.663 256,85.329 256,100.412 "
style="fill:#d80027" />
<polygon
id="polygon4687"
points="57.377,202.663 80,202.663 0,255.997 0,240.915 "
style="fill:#d80027" />
<polygon
id="polygon4689"
points="198.623,202.663 176,202.663 256,255.997 256,240.915 "
style="fill:#d80027" />
</g>
<path
id="path4693"
d="m 332.058,122.436 v 59.362 c 0,39.76 51.942,51.942 51.942,51.942 0,0 51.942,-12.182 51.942,-51.942 V 122.436 L 384,107.595 Z"
style="fill:#f3f3f3" />
<path
id="path4695"
d="M 435.942,126.146 V 103.885 H 332.059 v 22.261 h 44.521 v 44.523 h -44.521 v 14.839 10e-4 h 44.521 v 49.664 c 4.479,1.586 7.421,2.277 7.421,2.277 0,0 2.942,-0.691 7.42,-2.276 v -49.665 h 44.523 v -10e-4 -14.839 H 391.42 v -44.523 z"
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g4697">
</g>
<g
transform="translate(0,-85.329)"
id="g4699">
</g>
<g
transform="translate(0,-85.329)"
id="g4701">
</g>
<g
transform="translate(0,-85.329)"
id="g4703">
</g>
<g
transform="translate(0,-85.329)"
id="g4705">
</g>
<g
transform="translate(0,-85.329)"
id="g4707">
</g>
<g
transform="translate(0,-85.329)"
id="g4709">
</g>
<g
transform="translate(0,-85.329)"
id="g4711">
</g>
<g
transform="translate(0,-85.329)"
id="g4713">
</g>
<g
transform="translate(0,-85.329)"
id="g4715">
</g>
<g
transform="translate(0,-85.329)"
id="g4717">
</g>
<g
transform="translate(0,-85.329)"
id="g4719">
</g>
<g
transform="translate(0,-85.329)"
id="g4721">
</g>
<g
transform="translate(0,-85.329)"
id="g4723">
</g>
<g
transform="translate(0,-85.329)"
id="g4725">
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

185
public/img/flags/fk.svg Executable file
View File

@ -0,0 +1,185 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="fk.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4813"><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="defs4811" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4809"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4742"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.003000183" />
<polygon
transform="translate(0,-85.33)"
id="polygon4744"
points="354.318,300.518 354.318,293.097 332.058,293.097 332.058,322.779 346.899,322.779 346.899,330.198 421.101,330.198 421.101,322.779 435.942,322.779 435.942,293.097 413.681,293.097 413.681,300.518 "
style="fill:#ffda44" />
<path
id="path4746"
d="m 332.058,96.463 v 81.623 c 0,39.759 51.942,51.942 51.942,51.942 0,0 51.942,-12.182 51.942,-51.942 V 96.463 Z"
style="fill:#338af3" />
<g
transform="translate(0,-85.33)"
id="g4752">
<path
id="path4748"
d="m 383.997,242.675 c -12.985,0 -12.985,11.873 -25.97,11.873 -12.985,0 -12.985,-11.873 -25.97,-11.873 v 20.777 c 12.985,0 12.985,11.873 25.97,11.873 12.985,0 12.985,-11.873 25.97,-11.873 12.986,0 12.986,11.873 25.973,11.873 12.986,0 12.986,-11.873 25.973,-11.873 v -20.777 c -12.986,0 -12.986,11.873 -25.973,11.873 -12.986,0 -12.986,-11.873 -25.973,-11.873 z"
style="fill:#f3f3f3" />
<path
id="path4750"
d="m 383.997,201.085 c -12.985,0 -12.985,11.873 -25.97,11.873 -12.985,0 -12.985,-11.873 -25.97,-11.873 v 20.777 c 12.985,0 12.985,11.873 25.97,11.873 12.985,0 12.985,-11.873 25.97,-11.873 12.986,0 12.986,11.873 25.973,11.873 12.986,0 12.986,-11.873 25.973,-11.873 v -20.777 c -12.986,0 -12.986,11.873 -25.973,11.873 -12.986,0 -12.986,-11.873 -25.973,-11.873 z"
style="fill:#f3f3f3" />
</g>
<polygon
transform="translate(0,-85.33)"
id="polygon4754"
points="210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.169 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.442 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.16 100.174,85.333 155.826,85.333 155.826,133.906 243.256,85.333 256,85.333 256,115.886 "
style="fill:#f0f0f0" />
<polygon
transform="translate(0,-85.33)"
id="polygon4756"
points="112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 144,85.33 112,85.33 "
style="fill:#d80027" />
<polygon
transform="translate(0,-85.33)"
id="polygon4758"
points="256,240.259 184.153,200.344 155.826,200.344 256,255.996 "
style="fill:#0052b4" />
<polygon
transform="translate(0,-85.33)"
id="polygon4760"
points="256,240.259 184.153,200.344 155.826,200.344 256,255.996 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g4766">
<polygon
id="polygon4762"
points="256,240.259 184.153,200.344 155.826,200.344 256,255.996 "
style="fill:#d80027" />
<polygon
id="polygon4764"
points="0,255.996 0,255.996 100.174,200.344 71.846,200.344 0,240.259 "
style="fill:#d80027" />
</g>
<polygon
transform="translate(0,-85.33)"
id="polygon4768"
points="0,101.067 71.847,140.982 100.174,140.982 0,85.33 "
style="fill:#0052b4" />
<polygon
transform="translate(0,-85.33)"
id="polygon4770"
points="0,101.067 71.847,140.982 100.174,140.982 0,85.33 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.33)"
id="g4776">
<polygon
id="polygon4772"
points="0,101.067 71.847,140.982 100.174,140.982 0,85.33 "
style="fill:#d80027" />
<polygon
id="polygon4774"
points="256,85.33 256,85.33 155.826,140.982 184.154,140.982 256,101.067 "
style="fill:#d80027" />
</g>
<g
transform="translate(0,-85.33)"
id="g4778">
</g>
<g
transform="translate(0,-85.33)"
id="g4780">
</g>
<g
transform="translate(0,-85.33)"
id="g4782">
</g>
<g
transform="translate(0,-85.33)"
id="g4784">
</g>
<g
transform="translate(0,-85.33)"
id="g4786">
</g>
<g
transform="translate(0,-85.33)"
id="g4788">
</g>
<g
transform="translate(0,-85.33)"
id="g4790">
</g>
<g
transform="translate(0,-85.33)"
id="g4792">
</g>
<g
transform="translate(0,-85.33)"
id="g4794">
</g>
<g
transform="translate(0,-85.33)"
id="g4796">
</g>
<g
transform="translate(0,-85.33)"
id="g4798">
</g>
<g
transform="translate(0,-85.33)"
id="g4800">
</g>
<g
transform="translate(0,-85.33)"
id="g4802">
</g>
<g
transform="translate(0,-85.33)"
id="g4804">
</g>
<g
transform="translate(0,-85.33)"
id="g4806">
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

130
public/img/flags/fm.svg Executable file
View File

@ -0,0 +1,130 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="fm.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4870"><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="defs4868" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4866"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4823"
height="341.33701"
width="512"
style="fill:#338af3"
y="0" />
<g
transform="translate(0,-85.331001)"
id="g4833">
<polygon
id="polygon4825"
points="287.209,182.204 267.921,196.22 275.288,218.893 255.999,204.88 236.711,218.893 244.079,196.22 224.791,182.204 248.633,182.204 255.999,159.53 263.366,182.204 "
style="fill:#f0f0f0" />
<polygon
id="polygon4827"
points="182.21,224.786 196.225,244.074 218.899,236.706 204.886,255.996 218.899,275.282 196.225,267.915 182.21,287.203 182.21,263.362 159.536,255.996 182.21,248.628 "
style="fill:#f0f0f0" />
<polygon
id="polygon4829"
points="224.791,329.785 244.079,315.769 236.712,293.095 256.001,307.109 275.288,293.095 267.921,315.769 287.209,329.785 263.367,329.785 256.001,352.459 248.634,329.785 "
style="fill:#f0f0f0" />
<polygon
id="polygon4831"
points="329.79,287.203 315.775,267.915 293.101,275.282 307.114,255.993 293.101,236.706 315.775,244.074 329.79,224.786 329.79,248.627 352.464,255.993 329.79,263.361 "
style="fill:#f0f0f0" />
</g>
<g
transform="translate(0,-85.331001)"
id="g4835">
</g>
<g
transform="translate(0,-85.331001)"
id="g4837">
</g>
<g
transform="translate(0,-85.331001)"
id="g4839">
</g>
<g
transform="translate(0,-85.331001)"
id="g4841">
</g>
<g
transform="translate(0,-85.331001)"
id="g4843">
</g>
<g
transform="translate(0,-85.331001)"
id="g4845">
</g>
<g
transform="translate(0,-85.331001)"
id="g4847">
</g>
<g
transform="translate(0,-85.331001)"
id="g4849">
</g>
<g
transform="translate(0,-85.331001)"
id="g4851">
</g>
<g
transform="translate(0,-85.331001)"
id="g4853">
</g>
<g
transform="translate(0,-85.331001)"
id="g4855">
</g>
<g
transform="translate(0,-85.331001)"
id="g4857">
</g>
<g
transform="translate(0,-85.331001)"
id="g4859">
</g>
<g
transform="translate(0,-85.331001)"
id="g4861">
</g>
<g
transform="translate(0,-85.331001)"
id="g4863">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

120
public/img/flags/fo.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="fo.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4921"><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="defs4919" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4917"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4880"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0.0049996339" />
<polygon
transform="translate(0,-85.329)"
id="polygon4882"
points="202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 512,295.883 202.195,295.883 "
style="fill:#0052b4" />
<polygon
transform="translate(0,-85.329)"
id="polygon4884"
points="183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 512,234.666 512,277.329 "
style="fill:#d80027" />
<g
transform="translate(0,-85.329)"
id="g4886">
</g>
<g
transform="translate(0,-85.329)"
id="g4888">
</g>
<g
transform="translate(0,-85.329)"
id="g4890">
</g>
<g
transform="translate(0,-85.329)"
id="g4892">
</g>
<g
transform="translate(0,-85.329)"
id="g4894">
</g>
<g
transform="translate(0,-85.329)"
id="g4896">
</g>
<g
transform="translate(0,-85.329)"
id="g4898">
</g>
<g
transform="translate(0,-85.329)"
id="g4900">
</g>
<g
transform="translate(0,-85.329)"
id="g4902">
</g>
<g
transform="translate(0,-85.329)"
id="g4904">
</g>
<g
transform="translate(0,-85.329)"
id="g4906">
</g>
<g
transform="translate(0,-85.329)"
id="g4908">
</g>
<g
transform="translate(0,-85.329)"
id="g4910">
</g>
<g
transform="translate(0,-85.329)"
id="g4912">
</g>
<g
transform="translate(0,-85.329)"
id="g4914">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

117
public/img/flags/fr-h.svg Executable file
View File

@ -0,0 +1,117 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="fr-h.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata4972"><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="defs4970" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview4968"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4931"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0" />
<path
id="path4933"
d="m 315.424,144.551 c 0,-36.096 -29.261,-65.357001 -65.357,-65.357001 -26.635,0 -49.535,15.94 -59.715,38.796001 l -8.062,29.223 7.421,7.421 -14.84,29.682 14.84,7.421 -7.421,7.421 v 7.421 l 7.421,7.421 v 14.84 l 7.421,7.421 22.261,-7.421 c 0,0 0,7.421 7.421,14.84 7.421,7.42 14.841,22.262 14.841,22.262 0,0 22.261,7.421 37.101,-14.84 14.84,-22.261 29.682,-29.682 29.682,-29.682 l -14.305,-28.61 c 13.08,-11.951 21.291,-29.143 21.291,-48.259 z" />
<path
id="path4935"
d="m 320.751,169.545 c 30.152,-5.087 35.176,-64.13 35.176,-64.13 h -41.553 c 21.518,51.942 -1.004,55.436 -1.004,55.436 -3.052,-2.27 -112.249,-54 -115.712,-55.316 -0.834,1.116 -3.903,4.047 -7.635,13.174 -3.732,9.127 -4.649,17.338 -4.649,17.338 1.749,1.139 117.718,41.633 120.783,41.971 6.083,3.978 13.569,15.871 9.385,51.137 l 39.996,-11.273 c -0.002,0 -13.575,-36.109 -34.787,-48.337 z"
style="fill:#acabb1" />
<g
transform="translate(0,-85.331001)"
id="g4937">
</g>
<g
transform="translate(0,-85.331001)"
id="g4939">
</g>
<g
transform="translate(0,-85.331001)"
id="g4941">
</g>
<g
transform="translate(0,-85.331001)"
id="g4943">
</g>
<g
transform="translate(0,-85.331001)"
id="g4945">
</g>
<g
transform="translate(0,-85.331001)"
id="g4947">
</g>
<g
transform="translate(0,-85.331001)"
id="g4949">
</g>
<g
transform="translate(0,-85.331001)"
id="g4951">
</g>
<g
transform="translate(0,-85.331001)"
id="g4953">
</g>
<g
transform="translate(0,-85.331001)"
id="g4955">
</g>
<g
transform="translate(0,-85.331001)"
id="g4957">
</g>
<g
transform="translate(0,-85.331001)"
id="g4959">
</g>
<g
transform="translate(0,-85.331001)"
id="g4961">
</g>
<g
transform="translate(0,-85.331001)"
id="g4963">
</g>
<g
transform="translate(0,-85.331001)"
id="g4965">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

124
public/img/flags/fr.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.33701"
width="512"
sodipodi:docname="fr.svg"
xml:space="preserve"
viewBox="0 0 512 341.33701"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata5023"><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="defs5021" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.669"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview5019"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect4982"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0" />
<rect
x="0"
id="rect4984"
height="341.33701"
width="170.66299"
style="fill:#0052b4"
y="0" />
<rect
id="rect4986"
height="341.33701"
width="170.66299"
style="fill:#d80027"
y="0"
x="341.33701" />
<g
transform="translate(0,-85.331001)"
id="g4988">
</g>
<g
transform="translate(0,-85.331001)"
id="g4990">
</g>
<g
transform="translate(0,-85.331001)"
id="g4992">
</g>
<g
transform="translate(0,-85.331001)"
id="g4994">
</g>
<g
transform="translate(0,-85.331001)"
id="g4996">
</g>
<g
transform="translate(0,-85.331001)"
id="g4998">
</g>
<g
transform="translate(0,-85.331001)"
id="g5000">
</g>
<g
transform="translate(0,-85.331001)"
id="g5002">
</g>
<g
transform="translate(0,-85.331001)"
id="g5004">
</g>
<g
transform="translate(0,-85.331001)"
id="g5006">
</g>
<g
transform="translate(0,-85.331001)"
id="g5008">
</g>
<g
transform="translate(0,-85.331001)"
id="g5010">
</g>
<g
transform="translate(0,-85.331001)"
id="g5012">
</g>
<g
transform="translate(0,-85.331001)"
id="g5014">
</g>
<g
transform="translate(0,-85.331001)"
id="g5016">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

124
public/img/flags/ga.svg Executable file
View File

@ -0,0 +1,124 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.32599"
width="512"
sodipodi:docname="ga.svg"
xml:space="preserve"
viewBox="0 0 512 341.32599"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata5074"><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="defs5072" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.663"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview5070"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect5033"
height="341.32599"
width="512"
style="fill:#ffda44"
y="0" />
<rect
x="0"
id="rect5035"
height="113.775"
width="512"
style="fill:#6da544"
y="0" />
<rect
x="0"
id="rect5037"
height="113.775"
width="512"
style="fill:#0052b4"
y="227.55099" />
<g
transform="translate(0,-85.336998)"
id="g5039">
</g>
<g
transform="translate(0,-85.336998)"
id="g5041">
</g>
<g
transform="translate(0,-85.336998)"
id="g5043">
</g>
<g
transform="translate(0,-85.336998)"
id="g5045">
</g>
<g
transform="translate(0,-85.336998)"
id="g5047">
</g>
<g
transform="translate(0,-85.336998)"
id="g5049">
</g>
<g
transform="translate(0,-85.336998)"
id="g5051">
</g>
<g
transform="translate(0,-85.336998)"
id="g5053">
</g>
<g
transform="translate(0,-85.336998)"
id="g5055">
</g>
<g
transform="translate(0,-85.336998)"
id="g5057">
</g>
<g
transform="translate(0,-85.336998)"
id="g5059">
</g>
<g
transform="translate(0,-85.336998)"
id="g5061">
</g>
<g
transform="translate(0,-85.336998)"
id="g5063">
</g>
<g
transform="translate(0,-85.336998)"
id="g5065">
</g>
<g
transform="translate(0,-85.336998)"
id="g5067">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

115
public/img/flags/gb-eng.svg Executable file
View File

@ -0,0 +1,115 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34"
width="512"
sodipodi:docname="gb-eng.svg"
xml:space="preserve"
viewBox="0 0 512 341.34"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata5123"><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="defs5121" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.67"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview5119"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect5084"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0.003000183" />
<polygon
transform="translate(0,-85.33)"
id="polygon5086"
points="224,223.996 0,223.996 0,287.996 224,287.996 224,426.662 288,426.662 288,287.996 512,287.996 512,223.996 288,223.996 288,85.33 224,85.33 "
style="fill:#d80027" />
<g
transform="translate(0,-85.33)"
id="g5088">
</g>
<g
transform="translate(0,-85.33)"
id="g5090">
</g>
<g
transform="translate(0,-85.33)"
id="g5092">
</g>
<g
transform="translate(0,-85.33)"
id="g5094">
</g>
<g
transform="translate(0,-85.33)"
id="g5096">
</g>
<g
transform="translate(0,-85.33)"
id="g5098">
</g>
<g
transform="translate(0,-85.33)"
id="g5100">
</g>
<g
transform="translate(0,-85.33)"
id="g5102">
</g>
<g
transform="translate(0,-85.33)"
id="g5104">
</g>
<g
transform="translate(0,-85.33)"
id="g5106">
</g>
<g
transform="translate(0,-85.33)"
id="g5108">
</g>
<g
transform="translate(0,-85.33)"
id="g5110">
</g>
<g
transform="translate(0,-85.33)"
id="g5112">
</g>
<g
transform="translate(0,-85.33)"
id="g5114">
</g>
<g
transform="translate(0,-85.33)"
id="g5116">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

120
public/img/flags/gb-ork.svg Executable file
View File

@ -0,0 +1,120 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="gb-ork.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata5174"><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="defs5172" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview5170"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect5133"
height="341.33701"
width="512"
style="fill:#d80027"
y="0.0049996339" />
<polygon
transform="translate(0,-85.329)"
id="polygon5135"
points="202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 512,295.883 202.195,295.883 "
style="fill:#ffda44" />
<polygon
transform="translate(0,-85.329)"
id="polygon5137"
points="183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 512,234.666 512,277.329 "
style="fill:#0052b4" />
<g
transform="translate(0,-85.329)"
id="g5139">
</g>
<g
transform="translate(0,-85.329)"
id="g5141">
</g>
<g
transform="translate(0,-85.329)"
id="g5143">
</g>
<g
transform="translate(0,-85.329)"
id="g5145">
</g>
<g
transform="translate(0,-85.329)"
id="g5147">
</g>
<g
transform="translate(0,-85.329)"
id="g5149">
</g>
<g
transform="translate(0,-85.329)"
id="g5151">
</g>
<g
transform="translate(0,-85.329)"
id="g5153">
</g>
<g
transform="translate(0,-85.329)"
id="g5155">
</g>
<g
transform="translate(0,-85.329)"
id="g5157">
</g>
<g
transform="translate(0,-85.329)"
id="g5159">
</g>
<g
transform="translate(0,-85.329)"
id="g5161">
</g>
<g
transform="translate(0,-85.329)"
id="g5163">
</g>
<g
transform="translate(0,-85.329)"
id="g5165">
</g>
<g
transform="translate(0,-85.329)"
id="g5167">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

122
public/img/flags/gb-sct.svg Executable file
View File

@ -0,0 +1,122 @@
<?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"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
height="341.34201"
width="512"
sodipodi:docname="gb-sct.svg"
xml:space="preserve"
viewBox="0 0 512 341.34201"
y="0px"
x="0px"
id="Capa_1"
version="1.1"><metadata
id="metadata5225"><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="defs5223" /><sodipodi:namedview
inkscape:current-layer="Capa_1"
inkscape:window-maximized="0"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:cy="170.671"
inkscape:cx="256"
inkscape:zoom="1.6386719"
showgrid="false"
id="namedview5221"
inkscape:window-height="1020"
inkscape:window-width="1485"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<rect
x="0"
id="rect5184"
height="341.33701"
width="512"
style="fill:#f0f0f0"
y="0.0049996339" />
<rect
x="0"
id="rect5186"
height="341.33701"
width="512"
style="fill:#0052b4"
y="0.0049996339" />
<polygon
transform="translate(0,-85.329)"
id="polygon5188"
points="512,85.329 466.745,85.329 256,225.826 45.255,85.329 0,85.329 0,115.499 210.745,255.997 0,396.494 0,426.663 45.255,426.663 256,286.167 466.745,426.663 512,426.663 512,396.494 301.255,255.997 512,115.499 "
style="fill:#f0f0f0" />
<g
transform="translate(0,-85.329)"
id="g5190">
</g>
<g
transform="translate(0,-85.329)"
id="g5192">
</g>
<g
transform="translate(0,-85.329)"
id="g5194">
</g>
<g
transform="translate(0,-85.329)"
id="g5196">
</g>
<g
transform="translate(0,-85.329)"
id="g5198">
</g>
<g
transform="translate(0,-85.329)"
id="g5200">
</g>
<g
transform="translate(0,-85.329)"
id="g5202">
</g>
<g
transform="translate(0,-85.329)"
id="g5204">
</g>
<g
transform="translate(0,-85.329)"
id="g5206">
</g>
<g
transform="translate(0,-85.329)"
id="g5208">
</g>
<g
transform="translate(0,-85.329)"
id="g5210">
</g>
<g
transform="translate(0,-85.329)"
id="g5212">
</g>
<g
transform="translate(0,-85.329)"
id="g5214">
</g>
<g
transform="translate(0,-85.329)"
id="g5216">
</g>
<g
transform="translate(0,-85.329)"
id="g5218">
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

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