Version 2
56
files/dark.css
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
body {
|
||||||
|
background-color: #292929;
|
||||||
|
color: #e2e2e2;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main>div.content,
|
||||||
|
div.main,
|
||||||
|
div.main-wrapper div.main div.content div.fixed-title,
|
||||||
|
div.folder-divider span {
|
||||||
|
background-color: #121212;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main div.navigation .list button {
|
||||||
|
color: #E2E2E2;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main div.navigation .list button:hover {
|
||||||
|
background-color: rgba(0,0,0,.1);
|
||||||
|
}
|
||||||
|
div.folder-divider span {
|
||||||
|
color: #e2e2e2;
|
||||||
|
}
|
||||||
|
div.folder-divider:before {
|
||||||
|
background: none;
|
||||||
|
background-color: #e2e2e2;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main div.content div.fixed-title {
|
||||||
|
-webkit-box-shadow: 0px 0px 15px 0px rgb(10 10 10 / 80%);
|
||||||
|
-moz-box-shadow: 0px 0px 15px 0px rgba(10,10,10,.8);
|
||||||
|
box-shadow: 0px 0px 15px 0px rgb(10 10 10 / 80%);
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
color: #e2e2e2;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main div.navigation, button.default-button {
|
||||||
|
background: none;
|
||||||
|
background-color: #1d1d1d;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main div.navigation .list button i, div.action-menu-wrapper button i, button.button-back i {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
div.folder-view-wrapper div.folder, .container.lang-manager div.columns, div.content div.voklist div.head, div.content div.voklist>div>div:not(.input), div.content div.voklist form.vocrow input, div.view-settings div.sorting>div div:hover,div.folder-view-wrapper div.folder, div.choicebox label {
|
||||||
|
background-color: #1d1d1d;
|
||||||
|
}
|
||||||
|
div.main-wrapper div.main div.navigation .list div.selection-display, div.view-settings div.sorting button, div.view-settings div.sorting>div {
|
||||||
|
background-color: #121212;
|
||||||
|
}
|
||||||
|
div.action-menu-wrapper button, button.button-back, .message-banner, .message-banner .time-beam, div.main-wrapper div.main div.content div.fixed-title button {
|
||||||
|
background-color: #1d1d1d;
|
||||||
|
}
|
||||||
|
div.content div.voklist input, .input-wrapper input, select, div.tooltip {
|
||||||
|
background-color: #121212;
|
||||||
|
}
|
||||||
|
.message-banner span {
|
||||||
|
color: #e2e2e2;
|
||||||
|
}
|
||||||
|
div.content div.voklist.default div.progress-indicator {
|
||||||
|
border-color: #121212;
|
||||||
|
}
|
||||||
7
files/ezine.conf.php
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
// configuration of my database
|
||||||
|
$host = "rdbms.strato.de";
|
||||||
|
$login= "U3611332";
|
||||||
|
$base = "DB3611332";
|
||||||
|
$password="Scheisshaus20";
|
||||||
|
?>
|
||||||
7
files/ezine0.conf.php
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
// configuration of my database
|
||||||
|
$host = "rdbms.strato.de";
|
||||||
|
$login= "U3611332";
|
||||||
|
$base = "DB3611332";
|
||||||
|
$password="Scheisshaus20";
|
||||||
|
?>
|
||||||
9
files/ezine_db.inc.php
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
require "ezine.conf.php";
|
||||||
|
|
||||||
|
$conn = new mysqli($host, $login, $password, $base);
|
||||||
|
// Check connection
|
||||||
|
if ($conn->connect_error) {
|
||||||
|
die("Connection failed: " . $conn->connect_error);
|
||||||
|
}
|
||||||
|
?>
|
||||||
32
files/ezine_db0.inc.php
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
function ezine_mysql_die($error = "")
|
||||||
|
{
|
||||||
|
if (empty($error))
|
||||||
|
{
|
||||||
|
|
||||||
|
$mysqlError = mysql_error();
|
||||||
|
if (!empty($mysqlError))
|
||||||
|
{
|
||||||
|
echo "SQL server reply: ".$mysqlError;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
echo "SQL server reply: ".$error;
|
||||||
|
echo "<br>Leider nein, leider gar nicht!";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function ezine_connecte_db()
|
||||||
|
{
|
||||||
|
// Server connection parameter
|
||||||
|
require "ezine.conf.php";
|
||||||
|
|
||||||
|
$db = mysql_connect($host,$login,$password) or ezine_mysql_die();
|
||||||
|
mysql_select_db($base);
|
||||||
|
return $db;
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
1
files/green-checkmark.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="96px" height="96px" viewBox="0 0 96 96" enable-background="new 0 0 96 96" xml:space="preserve"><g><path fill-rule="evenodd" clip-rule="evenodd" fill="#6BBE66" d="M48,0c26.51,0,48,21.49,48,48S74.51,96,48,96S0,74.51,0,48 S21.49,0,48,0L48,0z M26.764,49.277c0.644-3.734,4.906-5.813,8.269-3.79c0.305,0.182,0.596,0.398,0.867,0.646l0.026,0.025 c1.509,1.446,3.2,2.951,4.876,4.443l1.438,1.291l17.063-17.898c1.019-1.067,1.764-1.757,3.293-2.101 c5.235-1.155,8.916,5.244,5.206,9.155L46.536,63.366c-2.003,2.137-5.583,2.332-7.736,0.291c-1.234-1.146-2.576-2.312-3.933-3.489 c-2.35-2.042-4.747-4.125-6.701-6.187C26.993,52.809,26.487,50.89,26.764,49.277L26.764,49.277z"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 835 B |
22
files/icons/flags/Chinesisch.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="-49 141 512 512" style="enable-background:new -49 141 512 512;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{fill:#D80027;}
|
||||||
|
.st1{fill:#FFDA44;}
|
||||||
|
</style>
|
||||||
|
<circle class="st0" cx="207" cy="397" r="256"/>
|
||||||
|
<g>
|
||||||
|
<polygon class="st1" points="91.1,296.8 113.2,364.8 184.7,364.8 126.9,406.9 149,474.9 91.1,432.9 33.2,474.9 55.4,406.9
|
||||||
|
-2.5,364.8 69,364.8 "/>
|
||||||
|
<polygon class="st1" points="254.5,537.5 237.6,516.7 212.6,526.4 227.1,503.9 210.2,483 236.1,489.9 250.7,467.4 252.1,494.2
|
||||||
|
278.1,501.1 253,510.7 "/>
|
||||||
|
<polygon class="st1" points="288.1,476.5 296.1,450.9 274.2,435.4 301,435 308.9,409.4 317.6,434.8 344.4,434.5 322.9,450.5
|
||||||
|
331.5,475.9 309.6,460.4 "/>
|
||||||
|
<polygon class="st1" points="333.4,328.9 321.6,353 340.8,371.7 314.3,367.9 302.5,391.9 297.9,365.5 271.3,361.7 295.1,349.2
|
||||||
|
290.5,322.7 309.7,341.4 "/>
|
||||||
|
<polygon class="st1" points="255.2,255.9 253.2,282.6 278.1,292.7 252,299.1 250.1,325.9 236,303.1 209.9,309.5 227.2,289
|
||||||
|
213,266.3 237.9,276.4 "/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
40
files/icons/flags/Deutsch.svg
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M15.923,345.043C52.094,442.527,145.929,512,256,512s203.906-69.473,240.077-166.957L256,322.783
|
||||||
|
L15.923,345.043z"/>
|
||||||
|
<path d="M256,0C145.929,0,52.094,69.472,15.923,166.957L256,189.217l240.077-22.261C459.906,69.472,366.071,0,256,0z"/>
|
||||||
|
<path style="fill:#D80027;" d="M15.923,166.957C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043h480.155
|
||||||
|
C506.368,317.31,512,287.314,512,256s-5.632-61.31-15.923-89.043H15.923z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 984 B |
61
files/icons/flags/Englisch.svg
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M52.92,100.142c-20.109,26.163-35.272,56.318-44.101,89.077h133.178L52.92,100.142z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M503.181,189.219c-8.829-32.758-23.993-62.913-44.101-89.076l-89.075,89.076H503.181z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M8.819,322.784c8.83,32.758,23.993,62.913,44.101,89.075l89.074-89.075L8.819,322.784L8.819,322.784
|
||||||
|
z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M411.858,52.921c-26.163-20.109-56.317-35.272-89.076-44.102v133.177L411.858,52.921z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M100.142,459.079c26.163,20.109,56.318,35.272,89.076,44.102V370.005L100.142,459.079z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M189.217,8.819c-32.758,8.83-62.913,23.993-89.075,44.101l89.075,89.075V8.819z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M322.783,503.181c32.758-8.83,62.913-23.993,89.075-44.101l-89.075-89.075V503.181z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M370.005,322.784l89.075,89.076c20.108-26.162,35.272-56.318,44.101-89.076H370.005z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M509.833,222.609h-220.44h-0.001V2.167C278.461,0.744,267.317,0,256,0
|
||||||
|
c-11.319,0-22.461,0.744-33.391,2.167v220.44v0.001H2.167C0.744,233.539,0,244.683,0,256c0,11.319,0.744,22.461,2.167,33.391
|
||||||
|
h220.44h0.001v220.442C233.539,511.256,244.681,512,256,512c11.317,0,22.461-0.743,33.391-2.167v-220.44v-0.001h220.442
|
||||||
|
C511.256,278.461,512,267.319,512,256C512,244.683,511.256,233.539,509.833,222.609z"/>
|
||||||
|
<path style="fill:#D80027;" d="M322.783,322.784L322.783,322.784L437.019,437.02c5.254-5.252,10.266-10.743,15.048-16.435
|
||||||
|
l-97.802-97.802h-31.482V322.784z"/>
|
||||||
|
<path style="fill:#D80027;" d="M189.217,322.784h-0.002L74.98,437.019c5.252,5.254,10.743,10.266,16.435,15.048l97.802-97.804
|
||||||
|
V322.784z"/>
|
||||||
|
<path style="fill:#D80027;" d="M189.217,189.219v-0.002L74.981,74.98c-5.254,5.252-10.266,10.743-15.048,16.435l97.803,97.803
|
||||||
|
H189.217z"/>
|
||||||
|
<path style="fill:#D80027;" d="M322.783,189.219L322.783,189.219L437.02,74.981c-5.252-5.254-10.743-10.266-16.435-15.047
|
||||||
|
l-97.802,97.803V189.219z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
38
files/icons/flags/Franzoesisch.svg
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M0,256c0,110.071,69.473,203.906,166.957,240.077V15.923C69.473,52.094,0,145.929,0,256z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 841 B |
38
files/icons/flags/Französisch.svg
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M0,256c0,110.071,69.473,203.906,166.957,240.077V15.923C69.473,52.094,0,145.929,0,256z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 841 B |
38
files/icons/flags/Niederlaendisch.svg
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#A2001D;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 839 B |
38
files/icons/flags/Niederländisch.svg
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#A2001D;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 839 B |
37
files/icons/flags/Polnisch.svg
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 680 B |
39
files/icons/flags/Russisch.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#0052B4;" d="M496.077,345.043C506.368,317.31,512,287.314,512,256s-5.632-61.31-15.923-89.043H15.923
|
||||||
|
C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043L256,367.304L496.077,345.043z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 926 B |
41
files/icons/flags/Spanisch.svg
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M0,256c0,31.314,5.633,61.31,15.923,89.043L256,367.304l240.077-22.261
|
||||||
|
C506.367,317.31,512,287.314,512,256s-5.633-61.31-15.923-89.043L256,144.696L15.923,166.957C5.633,194.69,0,224.686,0,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M496.077,166.957C459.906,69.473,366.071,0,256,0S52.094,69.473,15.923,166.957H496.077z"/>
|
||||||
|
<path style="fill:#D80027;" d="M15.923,345.043C52.094,442.527,145.929,512,256,512s203.906-69.473,240.077-166.957H15.923z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1016 B |
43
files/icons/flags/Tuerkisch.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#D80027;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="245.518,209.186 266.523,238.131 300.54,227.101 279.502,256.021 300.504,284.965
|
||||||
|
266.499,273.893 245.462,302.813 245.484,267.052 211.478,255.98 245.496,244.95 "/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M188.194,328.348c-39.956,0-72.348-32.392-72.348-72.348s32.392-72.348,72.348-72.348
|
||||||
|
c12.458,0,24.18,3.151,34.414,8.696c-16.055-15.702-38.012-25.392-62.24-25.392c-49.178,0-89.043,39.866-89.043,89.043
|
||||||
|
s39.866,89.043,89.043,89.043c24.23,0,46.186-9.691,62.24-25.392C212.374,325.197,200.652,328.348,188.194,328.348z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
43
files/icons/flags/Türkisch.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#D80027;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="245.518,209.186 266.523,238.131 300.54,227.101 279.502,256.021 300.504,284.965
|
||||||
|
266.499,273.893 245.462,302.813 245.484,267.052 211.478,255.98 245.496,244.95 "/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M188.194,328.348c-39.956,0-72.348-32.392-72.348-72.348s32.392-72.348,72.348-72.348
|
||||||
|
c12.458,0,24.18,3.151,34.414,8.696c-16.055-15.702-38.012-25.392-62.24-25.392c-49.178,0-89.043,39.866-89.043,89.043
|
||||||
|
s39.866,89.043,89.043,89.043c24.23,0,46.186-9.691,62.24-25.392C212.374,325.197,200.652,328.348,188.194,328.348z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
63
files/icons/flags/abkhazia.svg
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#6DA544;" d="M435.138,73.144C388.965,27.904,325.747,0,256,0c-22.261,0-87.394,27.904-133.565,73.144H435.138z"
|
||||||
|
/>
|
||||||
|
<path style="fill:#6DA544;" d="M256,219.429h253.388c-3.694-25.825-11.237-50.405-22.038-73.143H244.87L256,219.429z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M24.651,365.715h462.698c10.802-22.737,18.345-47.319,22.039-73.144H2.612
|
||||||
|
C6.307,318.397,13.848,342.979,24.651,365.715z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M76.862,438.856C123.035,484.096,186.253,512,256,512s132.965-27.904,179.138-73.144H76.862z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M256,0C127.034,0,20.36,95.371,2.612,219.429H256V0z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="128,196.267 116.87,174.007 116.87,129.485 144.696,107.224 172.522,129.485
|
||||||
|
172.522,162.876 183.652,151.746 183.652,174.007 161.391,196.267 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="68.135,128 71.082,137.07 80.618,137.07 72.903,142.677 75.851,151.746 68.135,146.14
|
||||||
|
60.419,151.746 63.367,142.677 55.652,137.07 65.188,137.07 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="90.396,105.739 93.343,114.809 102.88,114.809 95.164,120.416 98.111,129.485
|
||||||
|
90.396,123.88 82.681,129.485 85.629,120.416 77.913,114.809 87.448,114.809 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="112.657,83.478 115.604,92.548 125.139,92.548 117.425,98.155 120.371,107.224
|
||||||
|
112.657,101.619 104.941,107.224 107.888,98.155 100.174,92.548 109.709,92.548 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="221.256,128 218.309,137.07 208.774,137.07 216.488,142.677 213.541,151.746
|
||||||
|
221.256,146.14 228.972,151.746 226.025,142.677 233.739,137.07 224.204,137.07 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="198.995,105.739 196.048,114.809 186.513,114.809 194.227,120.416 191.28,129.485
|
||||||
|
198.995,123.88 206.711,129.485 203.763,120.416 211.478,114.809 201.943,114.809 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="176.735,83.478 173.787,92.548 164.252,92.548 171.966,98.155 169.019,107.224
|
||||||
|
176.735,101.619 184.45,107.224 181.503,98.155 189.217,92.548 179.682,92.548 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="144.696,72.348 141.748,81.418 132.213,81.418 139.927,87.024 136.98,96.093
|
||||||
|
144.696,90.488 152.411,96.093 149.464,87.024 157.178,81.418 147.643,81.418 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
46
files/icons/flags/afghanistan.svg
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M367.304,25.402C333.648,9.128,295.89,0,256,0s-77.648,9.128-111.304,25.402L122.435,256
|
||||||
|
l22.261,230.598C178.352,502.872,216.11,512,256,512s77.648-9.128,111.304-25.402L389.565,256L367.304,25.402z"/>
|
||||||
|
<path d="M144.696,25.411C59.066,66.818,0,154.507,0,256s59.066,189.182,144.696,230.589V25.411z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M367.304,25.411v461.178C452.934,445.182,512,357.493,512,256S452.934,66.818,367.304,25.411z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFDA44;" d="M256,166.957c-49.178,0-89.043,39.866-89.043,89.043s39.866,89.043,89.043,89.043
|
||||||
|
s89.043-39.866,89.043-89.043S305.178,166.957,256,166.957z M256,311.652c-30.736,0-55.652-24.917-55.652-55.652
|
||||||
|
s24.917-55.652,55.652-55.652s55.652,24.917,55.652,55.652S286.736,311.652,256,311.652z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M256,222.609c-12.295,0-22.261,9.966-22.261,22.261v33.391h44.522V244.87
|
||||||
|
C278.261,232.575,268.295,222.609,256,222.609z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
49
files/icons/flags/aland-islands.svg
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M503.181,322.783C508.92,301.489,512,279.107,512,256s-3.08-45.489-8.819-66.783L233.739,0.974
|
||||||
|
c-50.021,4.31-95.924,23-133.565,51.921L8.819,189.217C3.08,210.511,0,232.893,0,256c0,22.972,3.043,45.231,8.718,66.413
|
||||||
|
l91.455,136.692c37.641,28.921,83.544,47.612,133.565,51.921L503.181,322.783z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M8.819,322.783c14.812,54.959,47.457,102.593,91.355,136.322V322.783H8.819z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M233.739,511.026C241.077,511.658,248.498,512,256,512c118.279,0,217.805-80.221,247.181-189.217
|
||||||
|
H233.739V511.026z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M503.181,189.217C473.805,80.221,374.279,0,256,0c-7.502,0-14.923,0.342-22.261,0.974v188.243
|
||||||
|
H503.181z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M100.174,52.895c-43.898,33.73-76.543,81.363-91.355,136.322h91.355V52.895z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.481l0,0H2.167
|
||||||
|
C0.742,233.539,0,244.683,0,256s0.742,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
|
||||||
|
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
43
files/icons/flags/albania.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#D80027;" cx="256" cy="256" r="256"/>
|
||||||
|
<path d="M400.696,190.009H307.97c5.724-5.994,9.247-14.109,9.247-23.052c0-18.441-14.95-33.391-33.391-33.391
|
||||||
|
c-11.618,0-21.845,5.936-27.826,14.937c-5.981-9.001-16.209-14.937-27.826-14.937c-18.441,0-33.391,14.95-33.391,33.391
|
||||||
|
c0,8.943,3.523,17.059,9.247,23.052h-92.725c0,24.589,21.417,44.521,46.004,44.521h-1.484c0,24.59,19.933,44.523,44.523,44.523
|
||||||
|
c0,7.964,2.099,15.43,5.763,21.894l-36.93,36.931l28.334,28.332l40.192-40.191c1.574,0.577,3.203,1.04,4.885,1.355l-24.287,54.835
|
||||||
|
L256,422.957l37.695-40.75l-24.287-54.835c1.683-0.315,3.311-0.777,4.885-1.355l40.192,40.191l28.334-28.333l-36.931-36.931
|
||||||
|
c3.665-6.463,5.764-13.93,5.764-21.894c24.589,0,44.522-19.932,44.522-44.523h-1.483
|
||||||
|
C379.278,234.529,400.696,214.598,400.696,190.009z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
44
files/icons/flags/algeria.svg
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c141.384,0,256,114.616,256,256S397.384,512,256,512c0-11.13-33.391-256-33.391-256L256,0z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M256,512C114.616,512,0,397.384,0,256S114.616,0,256,0"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#D80027;" points="311.003,206.896 289.999,235.841 255.982,224.809 277.02,253.729 256.018,282.674
|
||||||
|
290.022,271.603 311.06,300.522 311.038,264.761 345.043,253.689 311.027,242.659 "/>
|
||||||
|
<path style="fill:#D80027;" d="M277.237,328.348c-39.956,0-72.348-32.392-72.348-72.348s32.392-72.348,72.348-72.348
|
||||||
|
c12.458,0,24.181,3.15,34.415,8.696c-16.056-15.701-38.012-25.392-62.241-25.392c-49.178,0-89.043,39.866-89.043,89.043
|
||||||
|
s39.866,89.043,89.043,89.043c24.23,0,46.186-9.691,62.241-25.392C301.418,325.198,289.695,328.348,277.237,328.348z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
48
files/icons/flags/american-samoa.svg
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M380.196,32.112C343.412,11.664,301.07,0,256,0C114.626,0,0.018,114.598,0,255.97l178.087-89.013
|
||||||
|
L380.196,32.112z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M0,256.03C0.018,397.402,114.626,512,256,512c45.07,0,87.412-11.662,124.196-32.112L178.087,345.043
|
||||||
|
L0,256.03z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M401.53,45.382c-6.876-4.759-14.001-9.185-21.343-13.266L0,255.97c0,0.01,0,0.02,0,0.03
|
||||||
|
s0,0.021,0,0.03l380.188,223.853c7.342-4.082,14.466-8.507,21.343-13.266L43.822,256L401.53,45.382z"/>
|
||||||
|
<path style="fill:#A2001D;" d="M445.217,246.453h-30.494c7.929-9.52,7.44-23.683-1.493-32.614c9.462-9.461,9.462-24.802,0-34.265
|
||||||
|
l-0.57,0.572c9.461-9.461,10.032-25.374,0.57-34.835L276.174,282.367c9.462,9.463,24.534,9.35,33.995-0.112l2.638-2.411
|
||||||
|
l65.628-5.966v28.226h22.261v-30.25l33.391-3.035L445.217,246.453z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="278.269,311.652 256,300.522 278.269,289.391 422.964,289.391 422.964,311.652 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
51
files/icons/flags/andorra.svg
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M144.696,486.598C178.352,502.872,216.109,512,256,512s77.648-9.128,111.304-25.402L389.565,256
|
||||||
|
L367.304,25.402C333.648,9.128,295.891,0,256,0s-77.648,9.128-111.304,25.402L122.435,256L144.696,486.598z"/>
|
||||||
|
<path style="fill:#D80027;" d="M367.304,486.589C452.935,445.183,512,357.493,512,256S452.935,66.817,367.304,25.411V486.589z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M144.696,486.589V25.411C59.065,66.817,0,154.506,0,256S59.065,445.183,144.696,486.589z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M256,345.043c0-40.851,0-89.043,0-89.043h66.783v33.391c0,5.801-11.13,27.057-38.603,44.522
|
||||||
|
C273.775,340.529,263.004,342.657,256,345.043z"/>
|
||||||
|
<rect x="189.217" y="189.217" style="fill:#D80027;" width="66.783" height="66.783"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#FF9811;" d="M289.391,166.957c0-12.295-9.967-22.261-22.261-22.261c-4.06,0-7.854,1.104-11.13,3.002
|
||||||
|
c-3.277-1.898-7.07-3.002-11.13-3.002c-12.294,0-22.261,9.966-22.261,22.261h-55.652V278.26c0,41.436,32.906,65.399,58.711,77.821
|
||||||
|
c-1.931,3.298-3.059,7.125-3.059,11.224c0,12.295,9.967,22.261,22.261,22.261c4.06,0,7.854-1.104,11.13-3.002
|
||||||
|
c3.277,1.898,7.07,3.002,11.13,3.002c12.294,0,22.261-9.966,22.261-22.261c0-4.099-1.128-7.926-3.06-11.224
|
||||||
|
c25.805-12.422,58.712-36.384,58.712-77.821V166.957H289.391z M311.652,278.26c0,5.801,0,23.452-27.472,40.918
|
||||||
|
c-10.406,6.616-21.176,10.906-28.18,13.291c-7.004-2.385-17.774-6.675-28.18-13.291c-27.472-17.466-27.472-35.117-27.472-40.918
|
||||||
|
v-77.912h111.304V278.26z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
48
files/icons/flags/angola.svg
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256c-11.13,0-256,33.391-256,33.391L0,256z"/>
|
||||||
|
<path d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="220.898,203.612 242.6,219.362 234.33,244.87 256.016,229.094 277.72,244.844
|
||||||
|
269.418,219.344 291.102,203.57 264.287,203.586 255.984,178.087 247.713,203.595 "/>
|
||||||
|
<path style="fill:#FFDA44;" d="M320,145.149c-20.173-11.647-42.23-17.144-64-17.106v33.384
|
||||||
|
c16.091-0.029,32.393,4.031,47.304,12.641c45.178,26.084,60.713,84.06,34.628,129.238c-26.083,45.178-84.058,60.713-129.237,34.629
|
||||||
|
c-13.162-7.599-23.787-17.917-31.619-29.824L149.2,326.515c10.597,16.109,24.993,30.056,42.8,40.336
|
||||||
|
c61.124,35.29,139.561,14.273,174.85-46.851C402.14,258.876,381.124,180.439,320,145.149z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M182.19,233.739c-8.85,16.179-2.908,36.47,13.27,45.32l108.449,59.26
|
||||||
|
c-7.375,13.481-3.458,29.89,10.023,37.265l29.295,16.025c13.481,7.376,30.392,2.424,37.767-11.058l16.025-29.294L182.19,233.739z"
|
||||||
|
/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
67
files/icons/flags/anguilla.svg
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.591,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.189,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.955-90.953h-31.48v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#496E2D;" d="M445.217,256L445.217,256L445.217,256z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M289.391,256L289.391,256L289.391,256z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#F3F3F3;" d="M432.939,293.474c7.361-10.128,12.278-22.496,12.278-37.474V144.696
|
||||||
|
c-9.302,6.988-20.862,11.13-33.391,11.13c-18.206,0-34.369-8.743-44.522-22.259c-10.154,13.516-26.317,22.259-44.522,22.259
|
||||||
|
c-12.53,0-24.09-4.143-33.391-11.128V256c0,14.978,4.917,27.346,12.278,37.474H432.939z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FF9811;" d="M409.785,235.351c3.544-8.646,6.3-21.283,6.3-27.572c0-10.105-13.174-18.296-13.174-18.296
|
||||||
|
s-13.174,8.191-13.174,18.296c0,6.29,2.757,18.927,6.299,27.572l-7.605,17.171c4.47,1.818,9.356,2.828,14.481,2.828
|
||||||
|
s10.01-1.011,14.481-2.828L409.785,235.351z"/>
|
||||||
|
<path style="fill:#FF9811;" d="M358.294,179.752c-9.256,1.254-21.579,5.189-27.025,8.333c-8.751,5.053-9.259,20.556-9.259,20.556
|
||||||
|
s13.682,7.313,22.432,2.261c5.448-3.145,15.012-11.849,20.725-19.241l18.676-2c-0.661-4.778-2.233-9.515-4.792-13.952
|
||||||
|
c-2.564-4.437-5.879-8.165-9.689-11.128L358.294,179.752z"/>
|
||||||
|
<path style="fill:#FF9811;" d="M335.892,252.146c5.713,7.388,15.28,16.091,20.728,19.237c8.751,5.052,22.432-2.259,22.432-2.259
|
||||||
|
s-0.51-15.505-9.259-20.558c-5.449-3.145-17.77-7.076-27.028-8.328l-11.067-15.173c-3.809,2.962-7.125,6.692-9.688,11.125
|
||||||
|
c-2.561,4.439-4.129,9.174-4.793,13.955L335.892,252.146z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#338AF3;" d="M298.916,289.394c20.788,33.355,68.389,44.52,68.389,44.52s47.6-11.165,68.389-44.52H298.916z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
45
files/icons/flags/antigua-and-barbuda.svg
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M0,256c0,17.535,1.768,34.657,5.127,51.2L256,322.783L506.874,307.2
|
||||||
|
C510.234,290.657,512,273.535,512,256s-1.768-34.657-5.126-51.2L256,189.217L5.127,204.8C1.768,221.343,0,238.465,0,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M506.874,307.2H5.127C28.846,424.05,132.151,512,256,512S483.154,424.05,506.874,307.2z"/>
|
||||||
|
<path d="M5.127,204.8h501.748C483.154,87.95,379.851,0,256,0S28.846,87.95,5.127,204.8z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="367.304,204.8 144.696,204.8 190.176,183.406 165.957,139.361 215.342,148.806
|
||||||
|
221.602,98.917 256,135.611 290.4,98.917 296.656,148.806 346.043,139.361 321.826,183.408 "/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#A2001D;" d="M0,256c0,141.384,114.616,256,256,256L51.196,102.391C19.052,145.18,0,198.363,0,256z"/>
|
||||||
|
<path style="fill:#A2001D;" d="M256,512c141.384,0,256-114.616,256-256c0-57.637-19.052-110.82-51.196-153.609L256,512z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
43
files/icons/flags/argentina.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#338AF3;" d="M256,0C154.506,0,66.81,59.065,25.402,144.696h461.195C445.19,59.065,357.493,0,256,0z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M256,512c101.493,0,189.19-59.065,230.598-144.696H25.402C66.81,452.935,154.506,512,256,512z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="332.515,256 301.25,270.707 317.899,300.986 283.949,294.491 279.647,328.787 256,303.563
|
||||||
|
232.352,328.787 228.051,294.491 194.101,300.985 210.749,270.706 179.485,256 210.75,241.293 194.101,211.015 228.05,217.509
|
||||||
|
232.353,183.213 256,208.437 279.648,183.213 283.949,217.509 317.9,211.015 301.251,241.294 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
39
files/icons/flags/armenia.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
|
||||||
|
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
|
||||||
|
<path style="fill:#FF9811;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#D80027;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1009 B |
47
files/icons/flags/aruba.svg
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#338AF3;" d="M256,512c77.591,0,147.114-34.524,194.061-89.043H61.939C108.886,477.476,178.409,512,256,512z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M512,256C512,114.616,397.384,0,256,0S0,114.616,0,256c0,23.107,3.08,45.489,8.819,66.783h494.363
|
||||||
|
C508.92,301.489,512,279.107,512,256z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M20.349,356.174c4.935,11.596,10.704,22.748,17.225,33.391h436.852
|
||||||
|
c6.521-10.644,12.29-21.796,17.227-33.391H20.349z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="117.317,161.463 67.301,139.389 117.317,117.315 139.39,67.3 161.463,117.315
|
||||||
|
211.478,139.389 161.463,161.463 139.39,211.478 "/>
|
||||||
|
<polygon style="fill:#D80027;" points="139.39,94.867 153.021,125.756 183.911,139.389 153.021,153.021 139.39,183.91
|
||||||
|
125.757,153.021 94.868,139.389 125.757,125.756 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
68
files/icons/flags/australia.svg
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.06,256,0.029,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.014,0-0.029,0.001-0.043,0.001L256,0L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.232,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.566c0-45.045,0-74.562,0-133.565h-0.043C114.592,0.024,0,114.629,0,256h133.565v-75.212
|
||||||
|
L208.777,256h46.539c0.229-0.228,0.457-0.456,0.685-0.685c0-17.247,0-32.636,0-46.536l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.19,89.476,33.391,129.515V256h66.783V100.175v-0.001H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.953-90.952h-31.481c0-0.001,0,0,0,0L255.999,256H256
|
||||||
|
C256,256,256,234.295,256,224.519z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="154.395,300.522 168.445,329.9 200.172,322.567 185.964,351.869 211.478,372.102
|
||||||
|
179.711,379.262 179.8,411.826 154.395,391.453 128.991,411.826 129.08,379.262 97.312,372.102 122.827,351.869 108.617,322.567
|
||||||
|
140.346,329.9 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="383.284,356.174 390.309,370.863 406.173,367.196 399.068,381.847 411.826,391.964
|
||||||
|
395.942,395.544 395.986,411.826 383.284,401.639 370.582,411.826 370.626,395.544 354.743,391.964 367.5,381.847 360.396,367.196
|
||||||
|
376.259,370.863 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="317.933,200.348 324.957,215.038 340.821,211.37 333.717,226.021 346.474,236.138
|
||||||
|
330.591,239.718 330.634,256 317.933,245.813 305.231,256 305.274,239.718 289.391,236.138 302.148,226.021 295.044,211.37
|
||||||
|
310.908,215.038 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="383.284,111.304 390.309,125.994 406.173,122.327 399.069,136.978 411.825,147.094
|
||||||
|
395.942,150.675 395.986,166.957 383.284,156.77 370.582,166.957 370.626,150.675 354.743,147.094 367.499,136.978
|
||||||
|
360.396,122.327 376.259,125.994 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="440.368,178.087 447.392,192.777 463.256,189.109 456.152,203.76 468.909,213.877
|
||||||
|
453.025,217.458 453.069,233.739 440.368,223.553 427.666,233.739 427.709,217.458 411.826,213.877 424.583,203.76
|
||||||
|
417.479,189.109 433.342,192.777 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="399.55,256 405.075,273.006 422.957,273.006 408.49,283.517 414.017,300.522
|
||||||
|
399.55,290.012 385.084,300.522 390.609,283.517 376.143,273.006 394.024,273.006 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
41
files/icons/flags/austria.svg
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#F0F0F0;" d="M496.077,345.043C506.368,317.311,512,287.314,512,256s-5.632-61.309-15.923-89.043L256,144.696
|
||||||
|
L15.923,166.957C5.633,194.691,0,224.686,0,256s5.633,61.311,15.923,89.043L256,367.304L496.077,345.043z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M256,512c110.07,0,203.906-69.472,240.076-166.957H15.922C52.094,442.528,145.928,512,256,512z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,0C145.928,0,52.094,69.472,15.922,166.957h480.155C459.906,69.472,366.07,0,256,0z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1023 B |
47
files/icons/flags/azerbaijan.svg
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
|
||||||
|
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M261.565,328.348c-39.956,0-72.348-32.392-72.348-72.348s32.392-72.348,72.348-72.348
|
||||||
|
c12.458,0,24.181,3.15,34.415,8.696c-16.056-15.701-38.012-25.392-62.241-25.392c-49.178,0-89.043,39.866-89.043,89.043
|
||||||
|
s39.866,89.043,89.043,89.043c24.23,0,46.186-9.691,62.241-25.392C285.746,325.198,274.023,328.348,261.565,328.348z"/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="317.217,205.913 326.8,232.864 352.634,220.582 340.353,246.416 367.304,256
|
||||||
|
340.353,265.584 352.634,291.418 326.8,279.136 317.217,306.087 307.635,279.136 281.8,291.418 294.082,265.584 267.13,256
|
||||||
|
294.082,246.416 281.8,220.582 307.635,232.864 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
60
files/icons/flags/azores-islands.svg
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M0,256c0,97.035,53.99,181.455,133.565,224.873V31.127C53.99,74.545,0,158.965,0,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M0,256c0,118.279,80.221,217.805,189.217,247.181V8.819C80.221,38.195,0,137.721,0,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M91.826,89.043v41.739c0,20.747,16.818,37.565,37.565,37.565s37.565-16.818,37.565-37.565V89.043
|
||||||
|
H91.826z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M129.391,146.087c-8.439,0-15.304-6.865-15.304-15.304v-19.478h30.609v19.478
|
||||||
|
C144.696,139.222,137.83,146.087,129.391,146.087z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFDA44;" d="M278.261,267.13h-66.783c0-12.294-9.967-22.261-22.261-22.261s-22.261,9.967-22.261,22.261h-66.783
|
||||||
|
c0,12.295,10.709,22.261,23.002,22.261h-0.741c0,12.295,9.965,22.261,22.261,22.261c0,12.295,9.965,22.261,22.261,22.261h44.522
|
||||||
|
c12.294,0,22.261-9.966,22.261-22.261c12.294,0,22.261-9.966,22.261-22.261h-0.741C267.552,289.391,278.261,279.425,278.261,267.13
|
||||||
|
z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="287.409,231.507 281.565,240.864 288.654,249.312 277.95,246.647 272.105,256
|
||||||
|
271.334,244.995 260.63,242.326 270.861,238.194 270.091,227.189 277.182,235.641 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="253.306,202.892 251.015,213.683 260.568,219.198 249.596,220.356 247.303,231.144
|
||||||
|
242.815,221.066 231.844,222.218 240.043,214.836 235.557,204.76 245.109,210.275 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="211.476,187.668 213.011,198.593 223.874,200.508 213.96,205.344 215.495,216.269
|
||||||
|
207.833,208.333 197.917,213.169 203.096,203.428 195.433,195.494 206.298,197.408 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="166.959,187.668 172.139,197.408 183.002,195.493 175.339,203.43 180.518,213.17
|
||||||
|
170.604,208.333 162.94,216.267 164.476,205.344 154.561,200.509 165.424,198.593 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="125.128,202.892 133.326,210.275 142.878,204.76 138.394,214.84 146.589,222.219
|
||||||
|
135.62,221.066 131.131,231.144 128.841,220.354 117.869,219.202 127.421,213.684 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="91.026,231.507 101.257,235.641 108.344,227.19 107.578,238.197 117.805,242.33
|
||||||
|
107.1,244.996 106.328,256 100.487,246.647 89.783,249.314 96.874,240.864 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
43
files/icons/flags/bahamas.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#338AF3;" d="M155.826,166.957h340.25C459.906,69.472,366.07,0,256,0C185.306,0,121.313,28.659,74.989,74.989
|
||||||
|
L155.826,166.957z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M155.826,345.043h340.25C459.906,442.528,366.07,512,256,512
|
||||||
|
c-70.694,0-134.687-28.659-181.011-74.989L155.826,345.043z"/>
|
||||||
|
</g>
|
||||||
|
<path d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256L74.98,74.98z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
39
files/icons/flags/bahrain.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,0c-51.376,0-99.208,15.145-139.3,41.198l65.839,44.129l-82.365,42.666l82.365,42.666
|
||||||
|
l-82.365,42.666l82.365,42.661l-82.365,42.665l82.365,42.665l-82.365,42.67l82.365,42.666l-65.847,44.143
|
||||||
|
C156.786,496.853,204.621,512,256,512c141.384,0,256-114.616,256-256S397.384,0,256,0z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 902 B |
49
files/icons/flags/balearic-islands.svg
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M256.001,0.001c141.384,0,256,114.616,256,256s-114.616,256-256,256s-256-114.616-256-256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M250.436,113.779H468.88c-14.384-21.487-31.937-40.667-51.987-56.889H250.436V113.779z"/>
|
||||||
|
<path style="fill:#D80027;" d="M250.436,227.557h259.985c-2.182-19.726-6.603-38.773-13.006-56.888H250.436V227.557z"/>
|
||||||
|
<path style="fill:#D80027;" d="M14.588,341.335h482.825c6.403-18.115,10.825-37.164,13.007-56.89H1.582
|
||||||
|
C3.762,304.172,8.184,323.221,14.588,341.335z"/>
|
||||||
|
<path style="fill:#D80027;" d="M95.108,455.112h321.784c20.049-16.221,37.603-35.403,51.987-56.889H43.123
|
||||||
|
C57.507,419.709,75.059,438.89,95.108,455.112z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#4A1F63;" d="M256.001,0.001C114.616,0.001-0.001,114.617,0,256.003c58.426-0.002,114.616,0,256,0L256.001,0.001z"
|
||||||
|
/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="211.479,133.566 211.479,155.827 200.349,155.827 200.349,133.566 178.088,133.566
|
||||||
|
178.088,155.827 166.958,155.827 166.958,111.305 122.436,111.305 122.436,155.827 111.305,155.827 111.305,133.566 89.045,133.566
|
||||||
|
89.045,155.827 77.914,155.827 77.914,133.566 55.652,133.566 55.652,200.348 233.74,200.348 233.74,133.566 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
37
files/icons/flags/bangladesh.svg
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#496E2D;" cx="256" cy="256" r="256"/>
|
||||||
|
<circle style="fill:#D80027;" cx="200.348" cy="256" r="111.304"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 657 B |
45
files/icons/flags/barbados.svg
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M367.304,25.402C333.648,9.128,295.89,0,256,0s-77.648,9.128-111.304,25.402L122.435,256
|
||||||
|
l22.261,230.598C178.352,502.872,216.11,512,256,512s77.648-9.128,111.304-25.402L389.565,256L367.304,25.402z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M144.696,25.411C59.066,66.817,0,154.506,0,256s59.066,189.183,144.696,230.589V25.411z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M367.304,25.411v461.178C452.934,445.183,512,357.493,512,256S452.934,66.817,367.304,25.411z"/>
|
||||||
|
</g>
|
||||||
|
<path d="M333.913,155.826l14.933,7.466L333.913,155.826l-14.934-7.466c-0.9,1.801-20.399,41.474-23.584,102.075h-22.699v-94.609
|
||||||
|
L256,133.565l-16.696,22.261v94.609h-22.699c-3.186-60.601-22.684-100.274-23.585-102.075l-29.866,14.933
|
||||||
|
c0.206,0.41,20.499,41.715,20.499,103.838v16.696h55.652v94.609h33.391v-94.609h55.652V267.13c0-32.118,5.557-58.602,10.22-75.164
|
||||||
|
c5.083-18.06,10.246-28.607,10.297-28.712L333.913,155.826z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
56
files/icons/flags/basque-country.svg
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M2.168,289.391c5.956,45.713,23.978,87.628,50.755,122.464l136.294-122.464H2.168z"/>
|
||||||
|
<path style="fill:#D80027;" d="M222.609,509.833v-187.05L100.145,459.078C134.982,485.855,176.896,503.878,222.609,509.833z"/>
|
||||||
|
<path style="fill:#D80027;" d="M222.609,2.167c-45.713,5.956-87.627,23.978-122.464,50.755l122.464,136.296V2.167z"/>
|
||||||
|
<path style="fill:#D80027;" d="M2.168,222.609h187.049L52.922,100.145C26.145,134.981,8.123,176.896,2.168,222.609z"/>
|
||||||
|
<path style="fill:#D80027;" d="M289.391,2.167v187.05L411.857,52.922C377.02,26.147,335.105,8.122,289.391,2.167z"/>
|
||||||
|
<path style="fill:#D80027;" d="M509.833,222.609c-5.956-45.713-23.978-87.628-50.755-122.465L322.783,222.609H509.833z"/>
|
||||||
|
<path style="fill:#D80027;" d="M322.783,289.391l136.296,122.465c26.776-34.837,44.799-76.752,50.755-122.465H322.783z"/>
|
||||||
|
<path style="fill:#D80027;" d="M289.391,509.833c45.713-5.956,87.629-23.978,122.465-50.756L289.391,322.783V509.833z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#496E2D;" d="M459.098,411.876L303.224,256.001L303.223,256l155.875-155.876
|
||||||
|
c-6.722-8.736-14.076-17.14-22.078-25.144c-8.002-8.002-16.407-15.357-25.144-22.078L256.001,208.777H256L100.125,52.902
|
||||||
|
C91.389,59.624,82.984,66.977,74.98,74.98c-8.002,8.004-15.357,16.408-22.078,25.145l155.875,155.874l0.001,0.001L52.903,411.876
|
||||||
|
c6.722,8.735,14.076,17.14,22.078,25.144c8.003,8.002,16.408,15.357,25.145,22.078L256,303.223l0,0l155.876,155.875
|
||||||
|
c8.735-6.722,17.14-14.076,25.144-22.078C445.023,429.016,452.376,420.611,459.098,411.876z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M289.391,509.833V289.394v-0.002h220.442C511.258,278.461,512,267.317,512,256
|
||||||
|
c0-11.316-0.743-22.46-2.167-33.39h-220.44l-0.001-0.001V2.168C278.462,0.745,267.319,0,256,0
|
||||||
|
c-11.317,0.001-22.461,0.745-33.391,2.168l0.001,220.439v0.002H2.168C0.744,233.539,0,244.683,0,256
|
||||||
|
c0.001,11.319,0.744,22.461,2.168,33.391h220.44l0,0l0.001,220.442C233.54,511.256,244.681,512,256,512
|
||||||
|
C267.319,512,278.462,511.256,289.391,509.833z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
50
files/icons/flags/belarus.svg
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FCFCFC;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#A2001D;" points="105.739,237.449 77.913,186.966 105.739,137.275 133.565,186.966 "/>
|
||||||
|
<polygon style="fill:#A2001D;" points="50.087,237.449 22.261,186.966 50.087,137.275 77.913,186.966 "/>
|
||||||
|
<polygon style="fill:#A2001D;" points="105.739,374.725 77.913,324.242 105.739,274.551 133.565,324.242 "/>
|
||||||
|
<polygon style="fill:#A2001D;" points="50.087,374.725 22.261,324.242 50.087,274.551 77.913,324.242 "/>
|
||||||
|
<path style="fill:#A2001D;" d="M133.565,49.692l-7.878-14.068c-14.13,8.372-27.383,18.065-39.594,28.909l19.646,35.641
|
||||||
|
L133.565,49.692z"/>
|
||||||
|
<path style="fill:#A2001D;" d="M105.739,411.826l-19.854,35.456c12.2,10.858,25.444,20.566,39.568,28.955l8.113-14.719
|
||||||
|
L105.739,411.826z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#6DA544;" d="M155.826,322.783v168.863C186.595,504.743,220.448,512,256,512
|
||||||
|
c110.071,0,203.906-69.472,240.077-166.957L155.826,322.783z"/>
|
||||||
|
<path style="fill:#A2001D;" d="M496.077,345.043C506.368,317.31,512,287.314,512,256C512,114.616,397.384,0,256,0
|
||||||
|
c-35.549,0-69.405,7.253-100.174,20.348v324.696H496.077z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
39
files/icons/flags/belgium.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M345.043,15.923C317.31,5.633,287.314,0,256,0s-61.31,5.633-89.043,15.923L144.696,256
|
||||||
|
l22.261,240.077C194.69,506.368,224.686,512,256,512s61.31-5.632,89.043-15.923L367.304,256L345.043,15.923z"/>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0-110.07-69.472-203.906-166.957-240.076v480.155C442.528,459.906,512,366.072,512,256z"/>
|
||||||
|
<path d="M0,256c0,110.072,69.472,203.906,166.957,240.078V15.924C69.472,52.094,0,145.93,0,256z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 984 B |
49
files/icons/flags/belize.svg
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0-87.861-44.269-165.374-111.713-211.478L256,33.391l-144.287,11.13
|
||||||
|
C44.27,90.626,0,168.14,0,256c0,87.863,44.27,165.374,111.713,211.478L256,478.609l144.287-11.13
|
||||||
|
C467.731,421.374,512,343.863,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#A2001D;" d="M400.287,44.522C359.202,16.436,309.524,0,256,0c-53.523,0-103.202,16.436-144.287,44.522H400.287z"
|
||||||
|
/>
|
||||||
|
<path style="fill:#A2001D;" d="M111.713,467.478C152.797,495.564,202.477,512,256,512c53.524,0,103.202-16.436,144.287-44.522
|
||||||
|
H111.713z"/>
|
||||||
|
</g>
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="122.435"/>
|
||||||
|
<circle style="fill:#6DA544;" cx="256" cy="256" r="100.174"/>
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="66.783"/>
|
||||||
|
<polygon style="fill:#0052B4;" points="256,239.304 219.826,256 219.826,283.826 256,306.087 292.174,283.826 292.174,256 "/>
|
||||||
|
<rect x="219.826" y="222.609" style="fill:#FFDA44;" width="72.348" height="33.391"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
39
files/icons/flags/benin.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M166.957,233.739l22.261,269.442C210.511,508.92,232.893,512,256,512c141.384,0,256-114.616,256-256
|
||||||
|
L166.957,233.739z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M166.957,256L189.217,8.819C210.511,3.08,232.893,0,256,0c141.384,0,256,114.616,256,256H166.957z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M0,256c0,118.279,80.221,217.805,189.217,247.181V8.819C80.221,38.195,0,137.721,0,256z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 933 B |
58
files/icons/flags/bermuda.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#0052B4;" points="256,122.435 256,208.778 166.957,122.435 "/>
|
||||||
|
<polygon style="fill:#0052B4;" points="133.565,256 208.776,256 133.565,155.826 122.435,233.739 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.591,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.189,89.476,33.391,129.515V267.13h66.783V100.176v-0.002H267.13
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M266.177,234.694L165.045,133.565h-31.48v0.002l132.609,132.609h0.002
|
||||||
|
C266.177,266.177,266.177,244.47,266.177,234.694z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#F3F3F3;" d="M289.391,133.565v122.434c0,59.64,155.826,59.64,155.826,0V133.565H289.391z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M289.391,256v-0.001c0,59.64,77.913,77.914,77.913,77.914s77.913-18.274,77.913-77.914V256H289.391z"
|
||||||
|
/>
|
||||||
|
<polygon style="fill:#A2001D;" points="367.304,207.026 331.13,222.609 331.13,256 367.304,278.261 403.478,256 403.478,222.609 "/>
|
||||||
|
<rect x="331.13" y="189.217" style="fill:#338AF3;" width="72.348" height="33.391"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
46
files/icons/flags/bhutan-1.svg
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M74.98,437.02c-99.974-99.974-99.974-262.064,0-362.039s262.065-99.974,362.04,0
|
||||||
|
c0,0.035,67.968,230.057-32.007,330.033C305.04,504.989,75.05,437.09,74.98,437.02z"/>
|
||||||
|
<path style="fill:#FF9811;" d="M74.98,437.02c99.974,99.974,262.065,99.974,362.04,0s99.974-262.064,0-362.039L74.98,437.02z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M400.816,144.695v-44.522H315.48l-6.52,6.519c-23.189,23.189-19.288,50.241-16.44,69.993
|
||||||
|
c2.641,18.323,2.958,25.342-3.856,32.157c-6.814,6.813-13.835,6.497-32.156,3.854c-19.752-2.847-46.803-6.748-69.992,16.44
|
||||||
|
c-23.188,23.188-19.285,50.238-16.435,69.989c2.643,18.321,2.961,25.34-3.851,32.151c-6.813,6.811-13.834,6.494-32.151,3.851
|
||||||
|
c-7.142-1.031-14.527-2.095-22.411-2.183l-0.489,44.52c4.934,0.055,10.573,0.867,16.543,1.729
|
||||||
|
c7.068,1.021,15.068,2.175,23.494,2.175c8.732,0,17.918-1.245,26.99-5.162v35.621h66.783v-33.391h-33.391v-22.261h22.261v-33.391
|
||||||
|
h-17.792c0.844-10.802-0.64-21.146-1.92-30.014c-2.643-18.321-2.961-25.34,3.851-32.15c6.814-6.814,13.832-6.498,32.156-3.856
|
||||||
|
c14.393,2.075,32.661,4.697,50.488-2.999v35.627h66.783v-33.391h-33.391V233.74h22.261v-33.391h-17.791
|
||||||
|
c0.845-10.803-0.638-21.146-1.918-30.017c-1.845-12.801-2.557-20.085-0.493-25.636h64.723V144.695z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
50
files/icons/flags/bhutan.svg
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M437.019,437.02c-99.974,99.974-262.064,99.974-362.039,0c-99.974-99.974-99.974-262.065,0-362.04
|
||||||
|
c0.036,0,230.058-67.967,330.033,32.007S437.088,436.95,437.019,437.02z"/>
|
||||||
|
<path style="fill:#D80027;" d="M437.019,437.02c99.974-99.974,99.974-262.065,0-362.04s-262.064-99.974-362.039,0L437.019,437.02z"
|
||||||
|
/>
|
||||||
|
<path style="fill:#FF9811;" d="M322.916,322.941c-10.516,4.13-22.735,3.692-33.336-2.257c-18.73-10.512-25.416-34.306-14.901-53.039
|
||||||
|
l-3.192-1.79c32.071-7.733,55.798-36.843,55.382-71.195c-0.258-21.357-9.801-40.464-24.728-53.538l-23.373,23.946
|
||||||
|
c8.836,7.042,14.565,17.844,14.712,29.997c0.26,21.48-17.002,39.167-38.481,39.426l0.045,3.657
|
||||||
|
c-22.733-23.906-59.805-29.899-89.346-12.363c-18.366,10.904-30.14,28.72-34.001,48.185l32.424,8.27
|
||||||
|
c1.681-11.174,8.17-21.536,18.621-27.741c18.471-10.965,42.419-4.857,53.384,13.613l3.148-1.867
|
||||||
|
c-9.338,31.638,4.007,66.741,33.966,83.557c18.626,10.454,39.942,11.743,58.73,5.354L322.916,322.941z M255.268,256.747
|
||||||
|
L255.268,256.747l-0.002,0.001L255.268,256.747z"/>
|
||||||
|
<path style="fill:#FFEACF;" d="M350.786,173.381l-18.094,64.571l-54.29-10.025l-34.946-72.035l-94.407,33.501l-7.445-20.98
|
||||||
|
l-24.7-3.043l18.611,52.449l64.969-16.616l18.463,52.029l-44.912,66.281l76.217,65.006l-14.447,16.937l9.715,22.915l36.118-42.344
|
||||||
|
l-46.874-47.957l35.827-42.003l79.858,5.754l18.189-98.51l21.891,4.043l14.989-19.87L350.786,173.381z M255.981,257.742v0.002
|
||||||
|
V257.742L255.981,257.742z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
39
files/icons/flags/bolivia.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
|
||||||
|
C5.632,194.689,0,224.686,0,256s5.632,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#D80027;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1009 B |
46
files/icons/flags/bonaire.svg
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M74.98,74.98C20.115,129.845-4.632,203.419,0.721,275.165L275.164,0.722
|
||||||
|
C203.418-4.632,129.845,20.115,74.98,74.98z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M91.41,452.071c100.581,84.622,250.94,79.617,345.61-15.052s99.675-245.029,15.052-345.609
|
||||||
|
L91.41,452.071z"/>
|
||||||
|
<path d="M255.087,245.689l22.061-11.95l-22.061-11.95c-5.151-33.461-31.589-59.9-65.05-65.05l-11.951-22.062l-11.95,22.061
|
||||||
|
c-33.46,5.15-59.898,31.589-65.05,65.05l-22.062,11.951l22.061,11.95c5.151,33.461,31.589,59.9,65.05,65.05l11.951,22.062
|
||||||
|
l11.95-22.061C223.498,305.589,249.936,279.15,255.087,245.689z M178.087,278.261c-24.589,0-44.522-19.932-44.522-44.522
|
||||||
|
s19.932-44.522,44.522-44.522s44.522,19.932,44.522,44.522S202.676,278.261,178.087,278.261z"/>
|
||||||
|
<polygon style="fill:#D80027;" points="178.087,200.348 187.726,217.043 207.005,217.043 197.365,233.739 207.005,250.435
|
||||||
|
187.726,250.435 178.087,267.13 168.448,250.435 149.17,250.435 158.809,233.739 149.17,217.043 168.448,217.043 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
51
files/icons/flags/bosnia-and-herzegovina.svg
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M256,0C165.23,0,85.5,47.243,40.044,118.479l347.159,357.37C461.946,431.147,512,349.423,512,256
|
||||||
|
C512,114.616,397.384,0,256,0z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0-66.422-25.298-126.93-66.783-172.428v344.857C486.702,382.93,512,322.422,512,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M319.789,481.873l26.815-0.017l8.272-25.509l8.302,25.499l13.45-0.008
|
||||||
|
c8.247-4.415,16.224-9.267,23.9-14.529L44.689,111.471c-5.864,8.556-11.212,17.49-16.021,26.75l3.162,9.712l26.815-0.017
|
||||||
|
l-21.684,15.775l8.302,25.499l-21.704-15.748l-12.945,9.416C3.713,206.034,0,230.583,0,256c0,141.384,114.616,256,256,256
|
||||||
|
c29.892,0,58.583-5.132,85.25-14.552L319.789,481.873z M57.099,244.87l8.27-25.508l-21.702-15.75l26.815-0.017l8.271-25.509
|
||||||
|
l8.302,25.499l26.815-0.017l-21.685,15.775l8.302,25.499l-21.704-15.748L57.099,244.87z M112.324,300.522l8.27-25.508
|
||||||
|
l-21.702-15.75l26.815-0.017l8.271-25.509l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499l-21.704-15.748L112.324,300.522z
|
||||||
|
M167.548,356.174l8.27-25.508l-21.702-15.75l26.815-0.017l8.271-25.509l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499
|
||||||
|
l-21.704-15.75L167.548,356.174z M244.457,396.051l-21.685,15.775l8.27-25.508l-21.702-15.75l26.815-0.017l8.272-25.509
|
||||||
|
l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499L244.457,396.051z M277.997,467.478l8.27-25.508l-21.702-15.75
|
||||||
|
l26.815-0.017l8.271-25.509l8.302,25.499l26.815-0.017l-21.684,15.775l8.302,25.499l-21.704-15.75L277.997,467.478z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
46
files/icons/flags/botswana.svg
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#F0F0F0;" d="M12.089,178.086C4.247,202.655,0,228.828,0.001,255.999C0,283.168,4.247,309.342,12.09,333.912
|
||||||
|
l243.911,11.132l243.91-11.132C507.752,309.342,512,283.167,512,256c0-27.17-4.247-53.345-12.089-77.914l-243.911-11.13
|
||||||
|
L12.089,178.086z"/>
|
||||||
|
<path d="M512,256c0-15.187-1.33-30.063-3.867-44.523H3.868C1.33,225.937,0,240.811,0,255.999s1.331,30.062,3.868,44.522h504.265
|
||||||
|
C510.669,286.06,512,271.186,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#338AF3;" d="M256.001,511.999c114.216,0,210.946-74.803,243.91-178.088H12.09
|
||||||
|
C45.055,437.195,141.786,511.997,256.001,511.999z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M256.001,0.001c-114.215,0-210.945,74.803-243.912,178.085l487.82,0.001
|
||||||
|
C466.946,74.804,370.215-0.001,256.001,0.001z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
45
files/icons/flags/brazil.svg
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#6DA544;" cx="256" cy="256" r="256"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="256,100.174 467.478,256 256,411.826 44.522,256 "/>
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="89.043"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M211.478,250.435c-15.484,0-30.427,2.355-44.493,6.725c0.623,48.64,40.227,87.884,89.015,87.884
|
||||||
|
c30.168,0,56.812-15.017,72.919-37.968C301.362,272.579,258.961,250.435,211.478,250.435z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M343.393,273.06c1.072-5.524,1.651-11.223,1.651-17.06c0-49.178-39.866-89.043-89.043-89.043
|
||||||
|
c-36.694,0-68.194,22.201-81.826,53.899c12.05-2.497,24.526-3.812,37.305-3.812C263.197,217.043,309.983,238.541,343.393,273.06z"
|
||||||
|
/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
102
files/icons/flags/british-columbia.svg
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#F0F0F0;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256H0z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#0052B4;" points="189.217,242.005 175.222,256 189.217,256 "/>
|
||||||
|
<polygon style="fill:#0052B4;" points="322.783,242.006 322.783,256 336.777,256 "/>
|
||||||
|
<path style="fill:#0052B4;" d="M7.386,194.784C2.571,214.4,0,234.899,0,256h80.777l61.216-61.216H7.386z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M370.005,194.784L431.221,256H512c0-21.101-2.572-41.6-7.386-61.216H370.005z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#D80027;" points="354.264,194.784 322.783,194.784 322.783,194.784 383.999,256 415.481,256 "/>
|
||||||
|
<polygon style="fill:#D80027;" points="189.217,226.263 189.217,194.784 189.215,194.784 127.999,256 159.481,256 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M119.922,39.142C109.37,45.778,99.337,53.16,89.896,61.217h52.1L119.922,39.142z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M422.104,61.217c-9.441-8.058-19.473-15.44-30.024-22.075l-22.074,22.075H422.104z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M289.391,161.391h204.55c-9.678-24.319-22.98-46.797-39.233-66.783H289.392h-0.001V2.167
|
||||||
|
C278.461,0.744,267.317,0,256,0c-11.319,0-22.461,0.744-33.391,2.167v92.44v0.001H57.292
|
||||||
|
c-16.253,19.986-29.555,42.464-39.233,66.783h204.548h0.001V256h66.783v-94.608V161.391z"/>
|
||||||
|
<path style="fill:#D80027;" d="M189.217,61.217v-0.001l-38.593-38.593c-7.135,3.227-14.089,6.782-20.856,10.625l27.969,27.969
|
||||||
|
H189.217z"/>
|
||||||
|
<path style="fill:#D80027;" d="M322.783,61.217L322.783,61.217l38.594-38.593c-7.341-3.319-14.868-6.295-22.558-8.924
|
||||||
|
l-16.036,16.037V61.217z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C11.13,256,512,256,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M469.33,288.65c-21.333,0-21.333-19.506-42.667-19.506c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
s-21.333-19.506-42.665-19.506c-21.333,0-21.333,19.506-42.667,19.506s-21.335-19.506-42.67-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.665,19.506c-21.33,0-21.33-19.506-42.663-19.506c-21.335,0-21.335,19.506-42.67,19.506
|
||||||
|
s-21.335-19.506-42.67-19.506c-21.33,0-21.33,19.506-42.663,19.506c-21.218,0-21.341-19.291-42.332-19.497
|
||||||
|
c0.591,11.71,1.989,23.206,4.103,34.448c17.004,2.499,18.493,19.182,38.23,19.182c21.333,0,21.333-19.504,42.663-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504s21.335-19.504,42.67-19.504c21.333,0,21.333,19.504,42.663,19.504
|
||||||
|
c21.333,0,21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.67,19.504c21.335,0,21.335-19.504,42.667-19.504
|
||||||
|
c21.333,0,21.333,19.504,42.665,19.504s21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.667,19.504
|
||||||
|
c19.739,0,21.228-16.682,38.233-19.181c2.115-11.243,3.511-22.738,4.105-34.448C490.674,269.361,490.549,288.65,469.33,288.65z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M426.663,335.927c-21.333,0-21.333,19.506-42.665,19.506s-21.333-19.506-42.665-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.667,19.506c-21.335,0-21.335-19.506-42.67-19.506c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
c-21.33,0-21.33-19.506-42.663-19.506c-21.335,0-21.335,19.506-42.67,19.506s-21.335-19.506-42.67-19.506
|
||||||
|
c-21.33,0-21.33,19.506-42.663,19.506c-15.243,0-19.597-9.956-28.622-15.644c6.008,17.359,13.824,33.872,23.237,49.308
|
||||||
|
c1.637,0.302,3.419,0.469,5.385,0.469c21.333,0,21.333-19.504,42.663-19.504c21.335,0,21.335,19.504,42.67,19.504
|
||||||
|
s21.335-19.504,42.67-19.504c21.333,0,21.333,19.504,42.663,19.504c21.333,0,21.333-19.504,42.665-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504c21.335,0,21.335-19.504,42.667-19.504c21.333,0,21.333,19.504,42.665,19.504
|
||||||
|
s21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.667,19.504c1.967,0,3.75-0.167,5.387-0.47
|
||||||
|
c9.413-15.435,17.229-31.948,23.239-49.306c-9.026,5.685-13.38,15.643-28.626,15.643
|
||||||
|
C447.998,355.433,447.998,335.927,426.663,335.927z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M511.862,247.957c0.022,0.711,0.047,1.422,0.063,2.136
|
||||||
|
C511.909,249.38,511.883,248.668,511.862,247.957z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M0.075,250.092c0.017-0.713,0.041-1.424,0.063-2.136C0.117,248.668,0.091,249.38,0.075,250.092z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M0,256c0-1.975,0.03-3.942,0.075-5.908C0.029,252.058,0,254.025,0,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M0,256c0,4.663,0.132,9.296,0.381,13.897c20.943,0.235,21.082,19.494,42.285,19.494
|
||||||
|
c21.333,0,21.333-19.504,42.663-19.504c21.335,0,21.335,19.504,42.67,19.504s21.335-19.504,42.67-19.504
|
||||||
|
c21.333,0,21.333,19.504,42.663,19.504c21.333,0,21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.67,19.504
|
||||||
|
c21.335,0,21.335-19.504,42.667-19.504c21.333,0,21.333,19.504,42.665,19.504s21.333-19.504,42.665-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.667,19.504c21.205,0,21.344-19.259,42.291-19.494C511.868,265.295,512,260.663,512,256H0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M511.925,250.092C511.97,252.056,512,254.024,512,256C512,254.025,511.971,252.058,511.925,250.092z
|
||||||
|
"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#0052B4;" d="M426.663,402.709c-21.333,0-21.333,19.506-42.665,19.506s-21.333-19.506-42.665-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.667,19.506c-21.335,0-21.335-19.506-42.67-19.506c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
c-21.33,0-21.33-19.506-42.663-19.506c-21.335,0-21.335,19.506-42.67,19.506s-21.335-19.506-42.67-19.506
|
||||||
|
c-14.734,0-19.293,9.304-27.733,15.061c22.389,27.426,50.359,50.11,82.164,66.352L256,478.266l116.24,5.855
|
||||||
|
c31.804-16.243,59.774-38.924,82.163-66.35C445.959,412.015,441.4,402.709,426.663,402.709z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M397.983,408.814l-77.875,14.895l-9.866-78.665L256,402.899l-54.24-57.856l-9.87,78.665
|
||||||
|
l-77.871-14.895l38.189,69.452l-12.472,5.866C174.624,501.949,214.137,512,256,512s81.376-10.051,116.264-27.867l-12.467-5.865
|
||||||
|
L397.983,408.814z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.0 KiB |
119
files/icons/flags/british-indian-ocean-territory.svg
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M469.33,286.637c-21.333,0-21.333-19.506-42.667-19.506c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
s-21.333-19.506-42.665-19.506c-21.333,0-21.333,19.506-42.667,19.506s-21.335-19.506-42.67-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.665,19.506c-21.33,0-21.33-19.506-42.663-19.506c-21.335,0-21.335,19.506-42.67,19.506
|
||||||
|
s-21.335-19.506-42.67-19.506c-21.33,0-21.33,19.506-42.663,19.506c-21.218,0-21.341-19.291-42.332-19.497
|
||||||
|
c0.591,11.709,1.989,23.206,4.103,34.449c17.004,2.497,18.493,19.18,38.231,19.18c21.333,0,21.333-19.504,42.663-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504s21.335-19.504,42.67-19.504c21.333,0,21.333,19.504,42.663,19.504
|
||||||
|
c21.333,0,21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.67,19.504c21.335,0,21.335-19.504,42.667-19.504
|
||||||
|
c21.333,0,21.333,19.504,42.665,19.504c21.333,0,21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.667,19.504
|
||||||
|
c19.739,0,21.228-16.682,38.233-19.18c2.115-11.244,3.511-22.739,4.105-34.449C490.674,267.347,490.549,286.637,469.33,286.637z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M426.663,333.913c-21.333,0-21.333,19.506-42.665,19.506s-21.333-19.506-42.665-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.667,19.506c-21.335,0-21.335-19.506-42.67-19.506c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
c-21.33,0-21.33-19.506-42.663-19.506c-21.335,0-21.335,19.506-42.67,19.506s-21.335-19.506-42.67-19.506
|
||||||
|
c-21.33,0-21.33,19.506-42.663,19.506c-15.715,0-19.864-10.578-29.487-16.15c5.828,17.419,13.483,33.998,22.728,49.522
|
||||||
|
c2.002,0.483,4.228,0.761,6.758,0.761c21.333,0,21.333-19.504,42.663-19.504c21.335,0,21.335,19.504,42.67,19.504
|
||||||
|
s21.335-19.504,42.67-19.504c21.333,0,21.333,19.504,42.663,19.504c21.333,0,21.333-19.504,42.665-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504c21.335,0,21.335-19.504,42.667-19.504c21.333,0,21.333,19.504,42.665,19.504
|
||||||
|
s21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.667,19.504c2.532,0,4.76-0.278,6.763-0.762
|
||||||
|
c9.246-15.523,16.9-32.102,22.727-49.52c-9.623,5.572-13.773,16.15-29.49,16.15C447.998,353.419,447.998,333.913,426.663,333.913z"
|
||||||
|
/>
|
||||||
|
<path style="fill:#0052B4;" d="M506.044,200.941c-15.594,3.237-17.582,18.913-36.714,18.913c-21.333,0-21.333-19.506-42.667-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.665,19.506s-21.333-19.506-42.665-19.506c-21.333,0-21.333,19.506-42.667,19.506
|
||||||
|
s-21.335-19.506-42.67-19.506c-11.527,0-16.827,5.694-22.628,10.93v34.133c5.801-5.235,11.1-10.928,22.628-10.928
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504c21.335,0,21.335-19.504,42.667-19.504c21.333,0,21.333,19.504,42.665,19.504
|
||||||
|
s21.333-19.504,42.665-19.504c21.335,0,21.335,19.504,42.667,19.504c19.739,0,21.228-16.682,38.233-19.18
|
||||||
|
c1.09,0,2.308-0.011,3.555-0.026C510.173,223.268,508.463,211.972,506.044,200.941z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M487.344,146.274c-4.421,3.713-9.531,6.797-18.013,6.797c-21.333,0-21.333-19.506-42.667-19.506
|
||||||
|
c-21.333,0-21.333,19.506-42.665,19.506s-21.333-19.506-42.665-19.506c-21.333,0-21.333,19.506-42.667,19.506
|
||||||
|
s-21.335-19.506-42.67-19.506c-11.527,0-16.827,5.694-22.628,10.93v34.133c5.801-5.235,11.1-10.928,22.628-10.928
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504C320,187.204,320,167.7,341.333,167.7c21.333,0,21.333,19.504,42.665,19.504
|
||||||
|
S405.33,167.7,426.663,167.7c21.335,0,21.335,19.504,42.667,19.504c15.137,0,19.546-9.805,28.446-15.507
|
||||||
|
C494.743,163,491.26,154.515,487.344,146.274z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M428.485,66.835c-0.592-0.032-1.195-0.052-1.822-0.052c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
c-21.333,0-21.333-19.506-42.665-19.506C320,66.783,320,86.289,298.665,86.289c-21.335,0-21.335-19.506-42.67-19.506
|
||||||
|
c-11.527,0-16.827,5.694-22.628,10.93v34.133c5.801-5.235,11.1-10.928,22.628-10.928c21.335,0,21.335,19.504,42.67,19.504
|
||||||
|
c21.335,0,21.335-19.504,42.667-19.504c21.333,0,21.333,19.504,42.665,19.504s21.333-19.504,42.665-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.667,19.504c1.314,0,2.541-0.078,3.703-0.217C460.641,100.441,445.637,82.484,428.485,66.835z"/>
|
||||||
|
<polygon style="fill:#0052B4;" points="255.996,0 255.992,0 255.997,0 "/>
|
||||||
|
<path style="fill:#0052B4;" d="M321.432,8.454c-5.856,5.268-11.148,11.054-22.767,11.054c-21.335,0-21.335-19.504-42.669-19.506
|
||||||
|
h-0.004C244.96,0.003,239.634,5.22,234.11,10.259v34.134c5.523-5.039,10.851-10.257,21.886-10.257
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504C320,53.64,320,34.136,341.333,34.136c21.333,0,21.333,19.504,42.665,19.504
|
||||||
|
c8.951,0,14.143-3.436,18.735-7.422C378.397,29.163,350.959,16.237,321.432,8.454z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M298.665,486.984c-21.335,0-21.335-19.506-42.67-19.506c-21.333,0-21.333,19.506-42.665,19.506
|
||||||
|
c-21.33,0-21.33-19.506-42.663-19.506c-16.341,0-20.174,11.434-30.654,16.792c28.9,14.714,60.967,24.093,94.907,26.86
|
||||||
|
c5.249-4.796,10.581-9.518,21.075-9.518c10.497,0,15.829,4.722,21.079,9.519c33.941-2.766,66.01-12.146,94.911-26.86
|
||||||
|
c-10.482-5.357-14.314-16.794-30.653-16.794C320,467.478,320,486.984,298.665,486.984z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M383.998,420.202c-21.333,0-21.333-19.506-42.665-19.506c-21.333,0-21.333,19.506-42.667,19.506
|
||||||
|
c-21.335,0-21.335-19.506-42.67-19.506c-21.333,0-21.333,19.506-42.665,19.506c-21.33,0-21.33-19.506-42.663-19.506
|
||||||
|
c-21.335,0-21.335,19.506-42.67,19.506s-21.335-19.506-42.67-19.506c-15.341,0-19.649,10.09-28.794,15.755
|
||||||
|
c5.732,7.118,11.826,13.932,18.275,20.392c2.889-1.234,6.279-2.013,10.518-2.013c21.335,0,21.335,19.504,42.67,19.504
|
||||||
|
s21.335-19.504,42.67-19.504c21.333,0,21.333,19.504,42.663,19.504c21.333,0,21.333-19.504,42.665-19.504
|
||||||
|
c21.335,0,21.335,19.504,42.67,19.504c21.335,0,21.335-19.504,42.667-19.504s21.333,19.504,42.665,19.504
|
||||||
|
s21.333-19.504,42.665-19.504c4.244,0,7.634,0.779,10.525,2.015c6.45-6.461,12.544-13.275,18.276-20.393
|
||||||
|
c-9.146-5.664-13.454-15.755-28.8-15.755C405.33,400.696,405.33,420.202,383.998,420.202z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#496E2D;" points="289.391,256 289.391,256 289.391,255.999 "/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#0052B4;" points="256,133.565 256,208.778 166.957,122.435 "/>
|
||||||
|
<polygon style="fill:#0052B4;" points="133.566,256 208.776,256 133.565,155.826 122.435,233.739 "/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.592,0.024,0,114.629,0,256h133.566v-75.211
|
||||||
|
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.19,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.955-90.953h-31.48v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#6DA544;" points="333.913,133.565 434.087,133.565 384,183.652 "/>
|
||||||
|
<g>
|
||||||
|
<rect x="372.87" y="172.522" style="fill:#A2001D;" width="22.261" height="61.217"/>
|
||||||
|
<rect x="372.87" y="333.913" style="fill:#A2001D;" width="22.261" height="61.217"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#FFDA44;" d="M450.783,300.522c0-18.441-14.95-33.391-33.391-33.391c-8.554,0-16.352,3.22-22.261,8.509V256h11.13
|
||||||
|
v-22.261h-11.13v-11.13H372.87v11.13h-11.13V256h11.13v19.64c-5.909-5.289-13.707-8.509-22.261-8.509
|
||||||
|
c-18.441,0-33.391,14.95-33.391,33.391c0,9.887,4.301,18.767,11.13,24.882v19.64h111.304v-19.64
|
||||||
|
C446.482,319.289,450.783,310.409,450.783,300.522z"/>
|
||||||
|
<path style="fill:#D80027;" d="M417.391,289.391c-3.511,0-5.969,1.542-7.414,2.834l-14.847,13.291H372.87l-14.847-13.291
|
||||||
|
c-1.445-1.292-3.903-2.834-7.414-2.834c-6.137,0-11.13,4.993-11.13,11.13c0,4.323,2.331,7.054,3.72,8.299l7.411,6.636v7.326h66.783
|
||||||
|
v-7.326l7.411-6.636c1.389-1.244,3.72-3.976,3.72-8.299C428.522,294.384,423.529,289.391,417.391,289.391z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.2 KiB |
64
files/icons/flags/british-virgin-islands.svg
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.591,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.189,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M367.304,256l-69.193,69.193c12.968,25.011,39.076,42.111,69.193,42.111s56.225-17.1,69.193-42.111
|
||||||
|
L367.304,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.955-90.953h-31.48v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M289.391,133.565v122.434V256l0,0c0.001,59.639,77.913,77.913,77.913,77.913
|
||||||
|
s77.912-18.274,77.913-77.913l0,0v-0.001V133.565H289.391z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#496E2D;" d="M445.217,256v-0.001V256z"/>
|
||||||
|
<polygon style="fill:#496E2D;" points="289.391,256 289.391,256 289.391,255.999 "/>
|
||||||
|
</g>
|
||||||
|
<rect x="350.609" y="189.217" style="fill:#F0F0F0;" width="33.391" height="89.043"/>
|
||||||
|
<circle style="fill:#A2001D;" cx="367.304" cy="189.217" r="16.696"/>
|
||||||
|
<g>
|
||||||
|
<rect x="311.652" y="155.826" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||||
|
<rect x="311.652" y="205.913" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||||
|
<rect x="311.652" y="256" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||||
|
<rect x="400.696" y="155.826" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||||
|
<rect x="400.696" y="205.913" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||||
|
<rect x="400.696" y="256" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
56
files/icons/flags/brunei.svg
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 511.989 511.989" style="enable-background:new 0 0 511.989 511.989;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="255.997" cy="255.996" r="255.957"/>
|
||||||
|
<path d="M34.33,128.016c-11.553,20.008-20.075,40.926-25.75,62.233L436.638,437.39c15.615-15.569,29.471-33.41,41.021-53.417
|
||||||
|
L34.33,128.016z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFDA44;" d="M383.974,34.329C281.558-24.8,155.278-5.093,75.351,74.599l428.058,247.139
|
||||||
|
C532.462,212.676,486.388,93.459,383.974,34.329z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M128.017,477.66c102.414,59.129,228.697,39.422,308.622-40.269L8.58,190.249
|
||||||
|
C-20.471,299.314,25.601,418.531,128.017,477.66z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M328.331,228.173c0,39.949-32.386,72.336-72.336,72.336s-72.336-32.386-72.336-72.336
|
||||||
|
c0-12.456,3.149-24.177,8.695-34.41c-15.697,16.053-25.388,38.005-25.388,62.231c0,49.169,39.859,89.029,89.029,89.029
|
||||||
|
s89.029-39.859,89.029-89.029c0-24.226-9.69-46.178-25.388-62.231C325.182,203.998,328.331,215.717,328.331,228.173z"/>
|
||||||
|
<rect x="239.304" y="144.71" style="fill:#D80027;" width="33.386" height="166.929"/>
|
||||||
|
<path style="fill:#D80027;" d="M311.638,178.095H200.353c0,7.683,6.693,13.911,14.375,13.911h-0.464
|
||||||
|
c0,7.683,6.229,13.911,13.911,13.911c0,7.683,6.229,13.911,13.911,13.911h27.821c7.683,0,13.911-6.228,13.911-13.911
|
||||||
|
c7.683,0,13.911-6.228,13.911-13.911h-0.463C304.946,192.005,311.638,185.779,311.638,178.095z"/>
|
||||||
|
<rect x="178.097" y="322.767" style="fill:#D80027;" width="155.8" height="33.386"/>
|
||||||
|
<rect x="289.382" y="333.896" style="fill:#D80027;" width="66.771" height="33.386"/>
|
||||||
|
<rect x="155.84" y="333.896" style="fill:#D80027;" width="66.771" height="33.386"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
39
files/icons/flags/bulgaria.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#496E2D;" d="M512,256c0-31.314-5.632-61.311-15.923-89.043L256,155.826l-240.077,11.13
|
||||||
|
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.368,317.311,512,287.314,512,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1009 B |
39
files/icons/flags/burkina-faso.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256c-11.13,0-256,33.391-256,33.391L0,256z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="255.999,166.957 275.336,226.475 337.923,226.475 287.291,263.261 306.629,322.783
|
||||||
|
255.999,285.998 205.368,322.783 224.709,263.261 174.076,226.475 236.66,226.475 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 953 B |
54
files/icons/flags/burundi.svg
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M411.876,52.902c-91.652-70.526-220.1-70.526-311.752-0.001L256,208.777L411.876,52.902z"/>
|
||||||
|
<path style="fill:#D80027;" d="M255.998,303.224L100.124,459.098c91.652,70.526,220.1,70.526,311.752,0L256,303.222
|
||||||
|
L255.998,303.224z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#6DA544;" d="M208.777,256L52.902,100.124c-70.526,91.652-70.526,220.1,0,311.752L208.777,256L208.777,256z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M303.224,256l155.874,155.876c70.526-91.652,70.526-220.1,0-311.752L303.224,256L303.224,256z"/>
|
||||||
|
</g>
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="111.304"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#D80027;" points="256,178.087 265.639,194.783 284.918,194.783 275.278,211.478 284.918,228.174
|
||||||
|
265.639,228.174 256,244.87 246.361,228.174 227.083,228.174 236.722,211.478 227.083,194.783 246.361,194.783 "/>
|
||||||
|
<polygon style="fill:#D80027;" points="207.005,256 216.644,272.696 235.922,272.696 226.283,289.391 235.922,306.087
|
||||||
|
216.644,306.087 207.005,322.783 197.365,306.087 178.087,306.087 187.726,289.391 178.087,272.696 197.365,272.696 "/>
|
||||||
|
<polygon style="fill:#D80027;" points="304.996,256 314.635,272.696 333.913,272.696 324.274,289.391 333.913,306.087
|
||||||
|
314.635,306.087 304.996,322.783 295.356,306.087 276.078,306.087 285.717,289.391 276.078,272.696 295.356,272.696 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
44
files/icons/flags/cambodia.svg
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M0,256c0,44.35,11.283,86.064,31.127,122.435L256,400.696l224.873-22.261
|
||||||
|
C500.717,342.064,512,300.35,512,256s-11.283-86.064-31.127-122.435L256,111.304L31.127,133.565C11.283,169.936,0,211.65,0,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M31.127,133.565h449.745C437.454,53.989,353.035,0,256,0S74.546,53.989,31.127,133.565z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M256,512c97.035,0,181.454-53.989,224.873-133.565H31.127C74.546,458.011,158.965,512,256,512z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="345.043,306.087 345.043,272.696 322.783,272.696 322.783,228.174 300.522,205.913
|
||||||
|
278.261,228.174 278.261,183.652 256,161.391 233.739,183.652 233.739,228.174 211.478,205.913 189.217,228.174 189.217,272.696
|
||||||
|
166.957,272.696 166.957,306.087 144.696,306.087 144.696,339.478 367.304,339.478 367.304,306.087 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
41
files/icons/flags/cameroon.svg
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#D80027;" d="M367.304,25.402C333.648,9.128,295.89,0,256,0s-77.648,9.128-111.304,25.402L122.435,256
|
||||||
|
l22.261,230.598C178.352,502.872,216.11,512,256,512s77.648-9.128,111.304-25.402L389.565,256L367.304,25.402z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="255.998,166.957 278.098,234.976 349.626,234.976 291.762,277.02 313.863,345.043
|
||||||
|
255.998,303.002 198.133,345.043 220.238,277.02 162.374,234.976 233.897,234.976 "/>
|
||||||
|
<path style="fill:#496E2D;" d="M144.696,25.411C59.066,66.817,0,154.506,0,256s59.066,189.183,144.696,230.589V25.411z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M367.304,25.411v461.178C452.934,445.183,512,357.493,512,256S452.934,66.817,367.304,25.411z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
43
files/icons/flags/canada.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0-101.494-59.065-189.19-144.696-230.598v461.195C452.935,445.19,512,357.494,512,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M0,256c0,101.494,59.065,189.19,144.696,230.598V25.402C59.065,66.81,0,154.506,0,256z"/>
|
||||||
|
<polygon style="fill:#D80027;" points="300.522,289.391 345.043,267.13 322.783,256 322.783,233.739 278.261,256 300.522,211.478
|
||||||
|
278.261,211.478 256,178.087 233.739,211.478 211.478,211.478 233.739,256 189.217,233.739 189.217,256 166.957,267.13
|
||||||
|
211.478,289.391 200.348,311.652 244.87,311.652 244.87,345.043 267.13,345.043 267.13,311.652 311.652,311.652 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
39
files/icons/flags/canary-islands.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#338AF3;" d="M256,0c-31.314,0-61.311,5.633-89.043,15.923L155.826,256l11.13,240.077
|
||||||
|
C194.689,506.368,224.686,512,256,512s61.311-5.632,89.043-15.923L356.174,256l-11.13-240.077C317.311,5.633,287.314,0,256,0z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M166.957,496.077V15.923C69.472,52.094,0,145.929,0,256S69.472,459.906,166.957,496.077z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1011 B |
65
files/icons/flags/cape-verde.svg
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M256,512c77.591,0,147.114-34.524,194.061-89.043H61.939C108.886,477.476,178.409,512,256,512z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M512,256C512,114.616,397.384,0,256,0S0,114.616,0,256c0,23.107,3.08,45.489,8.819,66.783h494.363
|
||||||
|
C508.92,301.489,512,279.107,512,256z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M20.348,356.174c4.935,11.596,10.704,22.748,17.227,33.391h436.852
|
||||||
|
c6.521-10.644,12.29-21.796,17.227-33.391H20.348z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="182.99,272.696 187.134,285.45 200.545,285.45 189.696,293.333 193.84,306.087
|
||||||
|
182.99,298.204 172.14,306.087 176.285,293.333 165.436,285.45 178.847,285.45 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="182.99,439.652 187.134,452.407 200.545,452.407 189.696,460.289 193.84,473.043
|
||||||
|
182.99,465.161 172.14,473.043 176.285,460.289 165.436,452.407 178.847,452.407 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="105.274,383.189 109.418,395.942 122.829,395.942 111.98,403.824 116.124,416.58
|
||||||
|
105.274,408.697 94.424,416.58 98.57,403.824 87.72,395.942 101.13,395.942 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="134.959,289.391 139.103,302.146 152.513,302.146 141.665,310.028 145.809,322.783
|
||||||
|
134.959,314.9 124.109,322.783 128.255,310.028 117.404,302.146 130.815,302.146 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="87.72,341.915 101.128,341.916 105.273,329.159 109.418,341.915 122.829,341.914
|
||||||
|
111.979,349.797 116.124,362.552 105.273,354.669 94.424,362.549 98.568,349.796 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="124.11,453.911 128.254,441.159 117.403,433.277 130.814,433.277 134.959,420.522
|
||||||
|
139.104,433.276 152.514,433.276 141.664,441.158 145.808,453.914 134.958,446.03 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="260.677,383.189 256.534,395.942 243.123,395.942 253.971,403.824 249.827,416.58
|
||||||
|
260.677,408.697 271.527,416.58 267.382,403.824 278.232,395.942 264.821,395.942 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="230.992,289.391 226.849,302.146 213.438,302.146 224.286,310.028 220.142,322.783
|
||||||
|
230.992,314.9 241.842,322.783 237.697,310.028 248.547,302.146 235.136,302.146 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="278.232,341.915 264.823,341.916 260.678,329.159 256.534,341.915 243.123,341.914
|
||||||
|
253.972,349.797 249.827,362.552 260.678,354.669 271.527,362.549 267.383,349.796 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="241.841,453.911 237.698,441.159 248.548,433.277 235.137,433.277 230.992,420.522
|
||||||
|
226.848,433.276 213.437,433.276 224.287,441.158 220.143,453.914 230.993,446.03 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
66
files/icons/flags/cayman-islands.svg
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.591,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<circle style="fill:#6DA544;" cx="367.304" cy="144.696" r="44.522"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.189,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.955-90.953h-31.48v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
<rect x="289.391" y="133.565" style="fill:#D80027;" width="155.826" height="66.783"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#496E2D;" d="M445.217,256v-0.001V256z"/>
|
||||||
|
<polygon style="fill:#496E2D;" points="289.391,256 289.391,256 289.391,255.999 "/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#FFDA44;" d="M289.391,300.522v44.522h23.424c14.045,13.764,33.27,22.261,54.489,22.261
|
||||||
|
s40.444-8.497,54.489-22.261h1.163h22.261v-44.522H289.391z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M289.391,189.217V256c0,59.639,77.913,77.913,77.913,77.913s77.913-18.274,77.913-77.913v-66.783
|
||||||
|
H289.391z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F3F3F3;" d="M367.3,224.889c-19.477,0-19.477,17.809-38.954,17.809c-19.477,0-19.477-17.809-38.954-17.809
|
||||||
|
v31.165c19.477,0,19.477,17.809,38.954,17.809s19.477-17.809,38.954-17.809c19.479,0,19.479,17.809,38.959,17.809
|
||||||
|
s19.479-17.809,38.959-17.809v-31.165c-19.479,0-19.479,17.809-38.959,17.809C386.779,242.698,386.779,224.889,367.3,224.889z"/>
|
||||||
|
<path style="fill:#F3F3F3;" d="M367.3,162.504c-19.477,0-19.477,17.809-38.954,17.809c-19.477,0-19.477-17.809-38.954-17.809
|
||||||
|
v31.165c19.477,0,19.477,17.809,38.954,17.809s19.477-17.809,38.954-17.809c19.479,0,19.479,17.809,38.959,17.809
|
||||||
|
s19.479-17.809,38.959-17.809v-31.165c-19.479,0-19.479,17.809-38.959,17.809C386.779,180.313,386.779,162.504,367.3,162.504z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
54
files/icons/flags/central-african-republic.svg
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M480.873,133.565c-33.08-60.629-89.963-106.398-158.09-124.76l-11.13,124.76H480.873z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M31.127,133.565h169.22l-11.13-124.76C121.09,27.167,64.208,72.937,31.127,133.565z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#6DA544;" d="M311.652,256v122.435h169.22C500.717,342.064,512,300.35,512,256H311.652z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M200.348,256H0c0,44.35,11.283,86.064,31.127,122.435h169.22V256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFDA44;" d="M31.127,378.435c33.081,60.629,89.963,106.398,158.09,124.76l11.13-109.109L31.127,378.435z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M322.783,503.195c68.127-18.362,125.01-64.131,158.09-124.76l-169.22,15.649L322.783,503.195z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="311.652,394.084 480.873,378.435 311.652,378.435 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="200.348,378.435 31.127,378.435 200.348,394.084 "/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M256,0c-23.107,0-45.489,3.08-66.783,8.819v494.363C210.511,508.92,232.893,512,256,512
|
||||||
|
s45.489-3.08,66.783-8.819V8.819C301.489,3.08,279.107,0,256,0z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="137.698,55.652 144.604,76.909 166.957,76.909 148.875,90.047 155.782,111.304
|
||||||
|
137.698,98.167 119.615,111.304 126.524,90.047 108.442,76.909 130.793,76.909 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
68
files/icons/flags/ceuta.svg
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path d="M256,0C185.307,0,121.307,28.654,74.98,74.98L256,256V0z"/>
|
||||||
|
<path d="M0,256c0,70.693,28.654,134.693,74.98,181.02L256,256H0z"/>
|
||||||
|
<path d="M256,512c70.693,0,134.693-28.654,181.02-74.98L256,256V512z"/>
|
||||||
|
<path d="M512,256c0-70.693-28.654-134.693-74.98-181.02L256,256H512z"/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="166.957,178.087 256,189.22 345.043,178.087 345.043,124.661 309.426,142.47 256,89.043
|
||||||
|
202.574,142.47 166.957,124.661 "/>
|
||||||
|
<path style="fill:#D80027;" d="M256,389.565c-49.099,0-89.043-39.945-89.043-89.043v-89.039l33.391-33.394h111.304l33.391,33.394
|
||||||
|
v89.039C345.043,349.62,305.099,389.565,256,389.565z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,356.174c-30.687,0-55.652-24.966-55.652-55.652V211.48h111.304v89.041
|
||||||
|
C311.652,331.208,286.687,356.174,256,356.174z"/>
|
||||||
|
<g>
|
||||||
|
<rect x="166.957" y="178.087" style="fill:#FFDA44;" width="33.391" height="33.391"/>
|
||||||
|
<rect x="311.652" y="178.087" style="fill:#FFDA44;" width="33.391" height="33.391"/>
|
||||||
|
<rect x="311.652" y="250.435" style="fill:#FFDA44;" width="33.391" height="33.391"/>
|
||||||
|
<rect x="166.957" y="250.435" style="fill:#FFDA44;" width="33.391" height="33.391"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M256,356.174c-5.816,0-11.423-0.9-16.696-2.562v34.361c5.412,1.032,10.988,1.593,16.696,1.593
|
||||||
|
s11.284-0.561,16.696-1.593v-34.361C267.423,355.273,261.816,356.174,256,356.174z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M201.092,309.556l-26.648,26.648c4.62,10.519,11.212,19.978,19.314,27.908l23.6-23.6
|
||||||
|
C208.936,332.375,203.069,321.615,201.092,309.556z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M337.556,336.206l-26.648-26.648c-1.978,12.058-7.844,22.817-16.265,30.957l23.6,23.6
|
||||||
|
C326.343,356.184,332.936,346.725,337.556,336.206z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M244.87,230.03v18.55c0,6.146,4.983,11.13,11.13,11.13s11.13-4.984,11.13-11.13v-18.55H244.87z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M244.87,304.233v18.55c0,6.146,4.983,11.13,11.13,11.13s11.13-4.984,11.13-11.13v-18.55
|
||||||
|
L244.87,304.233L244.87,304.233z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M278.261,267.13v18.552c0,6.146,4.983,11.13,11.13,11.13s11.13-4.984,11.13-11.13V267.13H278.261z"
|
||||||
|
/>
|
||||||
|
<path style="fill:#0052B4;" d="M244.87,267.13v18.552c0,6.146,4.983,11.13,11.13,11.13s11.13-4.984,11.13-11.13V267.13H244.87z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M211.478,267.13v18.552c0,6.146,4.983,11.13,11.13,11.13c6.147,0,11.13-4.984,11.13-11.13V267.13
|
||||||
|
H211.478z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
39
files/icons/flags/chad.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M256,0c-31.314,0-61.311,5.633-89.043,15.923L155.826,256l11.13,240.077
|
||||||
|
C194.689,506.368,224.686,512,256,512s61.311-5.632,89.043-15.923L356.174,256l-11.13-240.077C317.311,5.633,287.314,0,256,0z"/>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0-110.071-69.472-203.906-166.957-240.077v480.155C442.528,459.906,512,366.071,512,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M166.957,496.077V15.923C69.472,52.094,0,145.929,0,256S69.472,459.906,166.957,496.077z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1011 B |
40
files/icons/flags/chile.svg
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256s256,0,256,0S449.761,256,512,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M0,256C0,114.616,114.616,0,256,0c0,97.355,0,256,0,256S89.043,256,0,256z"/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="152.389,89.043 168.966,140.061 222.609,140.061 179.211,171.591 195.787,222.609
|
||||||
|
152.389,191.078 108.991,222.609 125.567,171.591 82.169,140.061 135.812,140.061 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
61
files/icons/flags/christmas-island.svg
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M437.02,437.02c-99.974,99.974-262.065,99.974-362.04,0s-99.974-262.065,0-362.04
|
||||||
|
c7.87,7.869,204.631,157.408,204.631,157.408L437.02,437.02z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M74.981,74.981c99.974-99.974,262.065-99.974,362.04,0s99.974,262.065,0,362.04"/>
|
||||||
|
<circle style="fill:#FFDA44;" cx="256" cy="256" r="66.783"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="95.325,367.305 102.35,381.994 118.213,378.327 111.109,392.978 123.867,403.095
|
||||||
|
107.983,406.674 108.027,422.957 95.325,412.77 82.623,422.957 82.667,406.674 66.783,403.095 79.541,392.978 72.436,378.327
|
||||||
|
88.3,381.994 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="49.372,244.87 56.397,259.559 72.26,255.891 65.157,270.543 77.913,280.66 62.03,284.239
|
||||||
|
62.074,300.522 49.372,290.336 36.671,300.522 36.714,284.239 20.831,280.66 33.588,270.543 26.484,255.891 42.347,259.559 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="95.325,144.696 102.35,159.385 118.213,155.717 111.11,170.369 123.867,180.486
|
||||||
|
107.983,184.065 108.027,200.348 95.325,190.162 82.623,200.348 82.667,184.065 66.784,180.486 79.54,170.369 72.436,155.717
|
||||||
|
88.3,159.385 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="152.408,222.609 159.433,237.298 175.297,233.63 168.192,248.283 180.949,258.399
|
||||||
|
165.066,261.979 165.109,278.261 152.408,268.075 139.706,278.261 139.75,261.979 123.867,258.399 136.623,248.283 129.52,233.63
|
||||||
|
145.383,237.298 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="111.591,289.392 117.117,306.398 134.997,306.398 120.531,316.908 126.057,333.913
|
||||||
|
111.591,323.404 97.125,333.913 102.651,316.908 88.185,306.398 106.065,306.398 "/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#6DA544;" d="M256,300.522h22.261c0,0,9.646-17.065,0-33.391l22.261-22.261l-11.13-22.261h-11.13
|
||||||
|
c0,0-5.565,16.696-27.826,16.696c-22.261,0-27.826-16.696-27.826-16.696h-11.13l11.13,22.261l-11.13,22.261l11.13,11.13
|
||||||
|
c0,0,11.13-22.261,33.391-11.13C256,267.131,265.461,281.044,256,300.522z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M422.153,140.223c0.525-2.735,0.804-5.556,0.804-8.444c0-19.8-12.928-36.571-30.8-42.357
|
||||||
|
c5.461,11.1,8.539,23.584,8.539,36.792c0,4.454-0.358,8.824-1.031,13.089c-2.69-4.333-6.145-8.292-10.366-11.651
|
||||||
|
c-15.901-12.652-37.63-12.987-53.695-2.332c12.403,2.708,24.395,8.213,35.002,16.652c8.304,6.608,15.014,15.546,20.152,24.174
|
||||||
|
l-67.975,21.285c66.783,11.13,122.435-33.391,122.435-33.391C439.051,141.708,429.475,139.628,422.153,140.223z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
60
files/icons/flags/cocos-island.svg
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#6DA544;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="392.984,367.304 400.009,381.993 415.873,378.327 408.769,392.978 421.526,403.094
|
||||||
|
405.642,406.674 405.687,422.957 392.984,412.77 380.282,422.957 380.326,406.674 364.443,403.094 377.2,392.978 370.096,378.327
|
||||||
|
385.959,381.993 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="327.632,211.478 334.658,226.167 350.522,222.5 343.417,237.152 356.174,247.268
|
||||||
|
340.291,250.848 340.335,267.13 327.632,256.944 314.93,267.13 314.973,250.848 299.091,247.268 311.848,237.152 304.743,222.5
|
||||||
|
320.608,226.167 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="392.984,122.435 400.009,137.124 415.873,133.456 408.77,148.108 421.526,158.225
|
||||||
|
405.642,161.804 405.685,178.087 392.984,167.9 380.282,178.087 380.326,161.804 364.444,158.225 377.2,148.108 370.096,133.456
|
||||||
|
385.959,137.124 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="450.067,189.217 457.092,203.906 472.957,200.239 465.852,214.891 478.609,225.007
|
||||||
|
462.726,228.587 462.77,244.87 450.067,234.683 437.365,244.87 437.408,228.587 421.526,225.007 434.283,214.891 427.178,200.239
|
||||||
|
443.042,203.906 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="409.249,267.13 414.776,284.137 432.657,284.137 418.19,294.647 423.717,311.652
|
||||||
|
409.249,301.143 394.784,311.652 400.309,294.647 385.843,284.137 403.724,284.137 "/>
|
||||||
|
<path style="fill:#FFDA44;" d="M283.826,328.348c-39.957,0-72.349-32.392-72.349-72.348s32.391-72.348,72.349-72.348
|
||||||
|
c12.458,0,24.181,3.151,34.415,8.696c-16.055-15.702-38.01-25.392-62.243-25.392c-49.176,0-89.042,39.866-89.042,89.043
|
||||||
|
s39.866,89.043,89.042,89.043c24.232,0,46.188-9.69,62.242-25.392C308.007,325.197,296.284,328.348,283.826,328.348z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M160.986,100.174c-7.7-13.304-22.075-22.261-38.551-22.261s-30.851,8.957-38.551,22.261H160.986z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M161.134,100.431l-38.699,38.699l-38.699-38.699c-3.699,6.491-5.822,13.998-5.822,22.004
|
||||||
|
c0,24.589,19.933,44.522,44.522,44.522s44.522-19.932,44.522-44.522C166.957,114.429,164.833,106.922,161.134,100.431z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#A2001D;" d="M111.304,128v37.554c3.557,0.915,7.287,1.402,11.13,1.402c3.843,0,7.573-0.488,11.13-1.402V128
|
||||||
|
H111.304z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
39
files/icons/flags/colombia.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256l-256,22.261L0,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M34.256,384C78.521,460.516,161.245,512,256,512s177.479-51.484,221.744-128L256,367.304L34.256,384z
|
||||||
|
"/>
|
||||||
|
<path style="fill:#0052B4;" d="M477.744,384C499.526,346.346,512,302.631,512,256H0c0,46.631,12.474,90.346,34.256,128H477.744z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 903 B |
57
files/icons/flags/comoros.svg
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M511.991,255.259h-277.51c-55.097,55.098-88.415,97.635-122.435,131.655l144.696,13.04
|
||||||
|
l224.534-22.261C500.871,341.498,512,300.049,512,256C512,255.752,511.991,255.507,511.991,255.259z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M112.047,132.824h368.412C436.921,53.656,352.731,0,256,0C185.495,0,121.659,28.511,75.364,74.624
|
||||||
|
L112.047,132.824z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M123.177,377.693c-23.014,23.014-31.908,42.296-48.559,58.946C120.973,483.186,185.118,512,256,512
|
||||||
|
c97.336,0,181.98-54.325,225.277-134.307L123.177,377.693L123.177,377.693z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M74.98,74.239c-99.974,99.974-99.974,262.065,0,362.04c41.313-41.313,81.046-81.046,181.02-181.02
|
||||||
|
L74.98,74.239z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M67.525,255.259c0-37.298,26.213-68.457,61.217-76.101c-5.38-1.175-10.962-1.812-16.696-1.812
|
||||||
|
c-43.031,0-77.913,34.882-77.913,77.913s34.882,77.913,77.913,77.913c5.733,0,11.315-0.637,16.696-1.812
|
||||||
|
C93.738,323.715,67.525,292.557,67.525,255.259z"/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="127.883,188.476 132.028,201.23 145.438,201.23 134.588,209.113 138.733,221.867
|
||||||
|
127.883,213.985 117.033,221.867 121.178,209.113 110.328,201.23 123.738,201.23 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="127.883,221.867 132.028,234.622 145.438,234.622 134.588,242.504 138.733,255.259
|
||||||
|
127.883,247.376 117.033,255.259 121.178,242.504 110.328,234.622 123.738,234.622 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="127.883,255.259 132.028,268.013 145.438,268.013 134.588,275.896 138.733,288.65
|
||||||
|
127.883,280.767 117.033,288.65 121.178,275.896 110.328,268.013 123.738,268.013 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="127.883,288.65 132.028,301.404 145.438,301.404 134.588,309.287 138.733,322.041
|
||||||
|
127.883,314.159 117.033,322.041 121.178,309.287 110.328,301.404 123.738,301.404 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.4 KiB |
70
files/icons/flags/cook-islands.svg
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.591,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.776,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.189,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.955-90.953h-31.48v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#496E2D;" d="M445.217,256L445.217,256L445.217,256z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M289.391,256L289.391,256L289.391,256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="345.043,256 349.781,270.576 365.106,270.576 352.708,279.584 357.444,294.161
|
||||||
|
345.043,285.152 332.644,294.161 337.38,279.584 324.982,270.576 340.307,270.576 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="282.081,282.081 295.736,289.038 306.574,278.201 304.176,293.339 317.832,300.297
|
||||||
|
302.694,302.693 300.297,317.833 293.338,304.176 278.201,306.574 289.04,295.737 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="256,345.043 270.576,340.307 270.578,324.983 279.584,337.38 294.161,332.643
|
||||||
|
285.152,345.043 294.161,357.444 279.584,352.708 270.578,365.106 270.578,349.781 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="282.081,408.006 289.038,394.35 278.201,383.514 293.339,385.911 300.297,372.255
|
||||||
|
302.694,387.393 317.832,389.789 304.176,396.748 306.574,411.887 295.736,401.047 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="345.043,434.087 340.307,419.51 324.981,419.51 337.38,410.502 332.644,395.926
|
||||||
|
345.043,404.934 357.444,395.926 352.708,410.502 365.106,419.51 349.781,419.51 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="408.006,408.006 394.35,401.05 383.514,411.887 385.911,396.748 372.255,389.791
|
||||||
|
387.393,387.393 389.791,372.255 396.748,385.911 411.886,383.514 401.047,394.351 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="434.087,345.043 419.51,349.781 419.51,365.106 410.502,352.707 395.926,357.444
|
||||||
|
404.935,345.043 395.926,332.643 410.502,337.38 419.51,324.983 419.51,340.307 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="408.006,282.082 401.05,295.737 411.886,306.574 396.748,304.176 389.791,317.833
|
||||||
|
387.393,302.693 372.255,300.296 385.911,293.339 383.514,278.202 394.351,289.038 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
44
files/icons/flags/corsica.svg
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FCFCFC;" cx="256" cy="256" r="256"/>
|
||||||
|
<path d="M345.136,216.833c0-54.144-43.892-98.035-98.035-98.035c-39.954,0-74.301,23.91-89.573,58.194l-12.091,43.835l11.13,11.13
|
||||||
|
l-22.261,44.522l22.261,11.13l-11.13,11.13v11.13l11.13,11.13v22.261l11.13,11.13l33.391-11.13c0,0,0,11.13,11.13,22.261
|
||||||
|
c11.13,11.13,22.262,33.392,22.262,33.392s33.391,11.13,55.652-22.261c22.261-33.391,44.522-44.522,44.522-44.522l-21.456-42.914
|
||||||
|
C332.82,271.293,345.136,245.506,345.136,216.833z"/>
|
||||||
|
<path style="fill:#ACABB1;" d="M353.126,254.322c45.229-7.629,52.763-96.195,52.763-96.195h-62.33
|
||||||
|
c32.278,77.913-1.507,83.154-1.507,83.154c-4.577-3.405-168.375-81.001-173.567-82.974c-1.251,1.674-5.856,6.071-11.454,19.761
|
||||||
|
c-5.599,13.69-6.973,26.006-6.973,26.006c2.622,1.709,176.575,62.45,181.173,62.956c9.125,5.966,20.353,23.807,14.078,76.705
|
||||||
|
l59.994-16.908C405.305,326.827,384.944,272.664,353.126,254.322z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
42
files/icons/flags/costa-rica.svg
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M496.077,166.957H15.923C5.633,194.69,0,224.686,0,256s5.633,61.31,15.923,89.043h480.155
|
||||||
|
C506.368,317.31,512,287.314,512,256S506.368,194.69,496.077,166.957z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M256,0C178.409,0,108.886,34.524,61.939,89.043H450.06C403.114,34.524,333.591,0,256,0z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M450.061,422.957H61.939C108.886,477.476,178.409,512,256,512S403.114,477.476,450.061,422.957z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
66
files/icons/flags/croatia.svg
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#F0F0F0;" d="M512,256c0-31.314-5.633-61.311-15.923-89.043L256,155.826l-240.077,11.13
|
||||||
|
C5.633,194.689,0,224.686,0,256s5.633,61.311,15.923,89.043L256,356.174l240.077-11.13C506.367,317.311,512,287.314,512,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#D80027;" d="M15.923,166.957h480.155C459.906,69.472,366.071,0,256,0S52.094,69.472,15.923,166.957z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#338AF3;" points="322.783,178.088 278.261,178.088 285.682,122.435 315.362,100.174 345.043,122.435
|
||||||
|
345.043,166.957 "/>
|
||||||
|
<polygon style="fill:#338AF3;" points="189.217,178.088 233.739,178.088 226.318,122.435 196.637,100.174 166.957,122.435
|
||||||
|
166.957,166.957 "/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#0052B4;" points="285.682,178.088 226.318,178.088 226.318,122.435 256,100.174 285.682,122.435 "/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M166.957,166.958v122.434c0,29.153,14.082,55.079,35.802,71.332l15.583-3.899l19.664,19.782
|
||||||
|
c5.815,1.198,11.832,1.829,17.995,1.829c6.13,0,12.117-0.623,17.901-1.809l22.447-18.69l12.892,2.751
|
||||||
|
c21.711-16.252,35.803-42.151,35.803-71.296V166.958H166.957z"/>
|
||||||
|
<g>
|
||||||
|
<rect x="166.957" y="166.957" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="238.191" y="166.957" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="309.426" y="166.957" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="202.574" y="202.574" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="273.809" y="202.574" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="166.957" y="238.18" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="202.574" y="273.798" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="238.191" y="238.18" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="309.426" y="238.18" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="273.809" y="273.798" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<rect x="238.191" y="309.415" style="fill:#D80027;" width="35.617" height="35.617"/>
|
||||||
|
<path style="fill:#D80027;" d="M202.574,309.418h-33.319c3.056,13.24,9.064,25.355,17.302,35.617h16.017V309.418z"/>
|
||||||
|
<path style="fill:#D80027;" d="M309.426,345.036h16.016c8.24-10.262,14.246-22.378,17.302-35.617h-33.318V345.036z"/>
|
||||||
|
<path style="fill:#D80027;" d="M202.574,345.036v15.541c10.359,7.795,22.465,13.384,35.617,16.066v-31.607H202.574z"/>
|
||||||
|
<path style="fill:#D80027;" d="M273.809,345.036v31.607c13.153-2.68,25.258-8.271,35.617-16.066v-15.541H273.809z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
49
files/icons/flags/cuba.svg
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<polygon style="fill:#FF9811;" points="0.001,44.522 0,44.522 0,467.478 0.001,467.478 0.001,256.001 "/>
|
||||||
|
<circle style="fill:#F0F0F0;" cx="255.999" cy="256" r="255.999"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M256.001,0.002c-83.752,0-158.106,40.223-204.811,102.4h409.621
|
||||||
|
C414.107,40.224,339.752,0.002,256.001,0.002z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M256.001,511.999c83.752,0,158.106-40.223,204.811-102.4H51.19
|
||||||
|
C97.894,471.777,172.249,511.999,256.001,511.999z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M0.001,256.001c0,17.535,1.768,34.657,5.127,51.2h501.747c3.359-16.543,5.126-33.665,5.126-51.2
|
||||||
|
s-1.768-34.657-5.126-51.2H5.128C1.769,221.344,0.001,238.466,0.001,256.001z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#D80027;" d="M74.981,74.982c-99.973,99.973-99.973,262.064,0,362.039
|
||||||
|
c41.313-41.313,81.045-81.046,181.019-181.019L74.981,74.982z"/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="103.611,189.219 120.185,240.234 173.831,240.234 130.434,271.766 147.008,322.782
|
||||||
|
103.611,291.252 60.212,322.782 76.79,271.766 33.392,240.234 87.034,240.234 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
47
files/icons/flags/curacao.svg
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#0052B4;" d="M256,512c84,0,158.549-40.458,205.229-102.949H50.771C97.451,471.542,172,512,256,512z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M512,256C512,114.616,397.384,0,256,0S0,114.616,0,256c0,30.273,5.269,59.312,14.916,86.269h482.167
|
||||||
|
C506.731,315.312,512,286.273,512,256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="175.222,164.182 189.035,206.694 233.739,206.694 197.574,232.972 211.387,275.486
|
||||||
|
175.222,249.21 139.057,275.486 152.872,232.972 116.707,206.694 161.409,206.694 "/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="98.454,119.66 106.742,145.168 133.565,145.168 111.866,160.934 120.154,186.443
|
||||||
|
98.454,170.677 76.755,186.443 85.044,160.934 63.346,145.168 90.168,145.168 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
43
files/icons/flags/cyprus.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FCFCFC;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#6DA544;" d="M400.696,222.609c-7.791,0-17.438,0-33.391,0c0,61.472-49.834,111.304-111.304,111.304
|
||||||
|
c-61.473,0-111.304-49.832-111.304-111.304c-10.76,0-22.633,0-33.391,0c0,66.215,44.476,122.042,105.186,139.235
|
||||||
|
c-6.656,12.644-5.642,28.563,3.866,40.428c12.488-10.009,25.417-20.37,36.385-29.158c10.968,8.789,23.898,19.15,36.385,29.158
|
||||||
|
c9.602-11.983,10.547-28.104,3.67-40.809C356.843,343.848,400.696,288.353,400.696,222.609z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M166.957,211.478c0,0,0,55.652,55.652,55.652l11.13,11.13H256c0,0,11.13-33.391,33.391-33.391
|
||||||
|
c0,0,0-22.261,22.261-22.261s33.391,0,33.391,0s-11.13-44.522,44.522-77.913l-22.261-11.13c0,0-77.913,55.652-133.565,44.522v22.261
|
||||||
|
h-22.261l-11.13-11.13L166.957,211.478z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
40
files/icons/flags/czech-republic.svg
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M233.739,256c0,0-158.609,181.055-158.759,181.019C121.306,483.346,185.307,512,256,512
|
||||||
|
c141.384,0,256-114.616,256-256H233.739z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256
|
||||||
|
L74.98,74.98z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 895 B |
49
files/icons/flags/democratic-republic-of-congo.svg
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M483.574,138.616c-11.829-22.919-27.334-44.431-46.546-63.643
|
||||||
|
c-19.213-19.213-40.726-34.718-63.644-46.546L193.035,193.033L28.428,373.382c11.829,22.919,27.334,44.432,46.546,63.644
|
||||||
|
c19.212,19.212,40.725,34.717,63.643,46.546l180.349-164.607L483.574,138.616z"/>
|
||||||
|
<path style="fill:#D80027;" d="M74.974,437.027c10.739,10.739,22.198,20.317,34.217,28.75l356.584-356.586
|
||||||
|
c-8.431-12.019-18.009-23.478-28.748-34.217c-10.74-10.739-22.198-20.316-34.217-28.748L46.226,402.81
|
||||||
|
C54.657,414.827,64.234,426.288,74.974,437.027z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#338AF3;" d="M74.974,74.972c-80.767,80.767-96.272,202.065-46.546,298.41L373.384,28.427
|
||||||
|
C277.038-21.298,155.74-5.791,74.974,74.972z"/>
|
||||||
|
<path style="fill:#338AF3;" d="M437.027,437.027c80.766-80.766,96.27-202.064,46.547-298.409L138.618,483.573
|
||||||
|
C234.963,533.298,356.262,517.794,437.027,437.027z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="136.426,77.905 150.24,120.422 194.944,120.422 158.778,146.698 172.592,189.214
|
||||||
|
136.426,162.937 100.258,189.214 114.074,146.698 77.906,120.422 122.61,120.422 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
45
files/icons/flags/denmark.svg
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M200.349,222.609h309.484C493.47,97.002,386.067,0,256,0c-19.115,0-37.732,2.113-55.652,6.085
|
||||||
|
v216.524H200.349z"/>
|
||||||
|
<path style="fill:#D80027;" d="M133.565,222.608V31.127C63.272,69.481,12.95,139.832,2.167,222.609h131.398V222.608z"/>
|
||||||
|
<path style="fill:#D80027;" d="M133.564,289.391H2.167c10.783,82.777,61.105,153.128,131.398,191.481L133.564,289.391
|
||||||
|
L133.564,289.391z"/>
|
||||||
|
<path style="fill:#D80027;" d="M200.348,289.392v216.523C218.268,509.887,236.885,512,256,512
|
||||||
|
c130.067,0,237.47-97.002,253.833-222.609H200.348V289.392z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
43
files/icons/flags/djibouti.svg
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#338AF3;" d="M233.739,278.261c0,0-158.609-203.316-158.759-203.28C121.306,28.654,185.307,0,256,0
|
||||||
|
c141.384,0,256,114.616,256,256L233.739,278.261z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M233.739,256c0,0-158.609,181.055-158.759,181.019C121.306,483.346,185.307,512,256,512
|
||||||
|
c141.384,0,256-114.616,256-256H233.739z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256
|
||||||
|
L74.98,74.98z"/>
|
||||||
|
<polygon style="fill:#D80027;" points="103.61,189.217 120.185,240.233 173.831,240.233 130.433,271.765 147.007,322.783
|
||||||
|
103.61,291.252 60.211,322.783 76.789,271.765 33.391,240.233 87.033,240.233 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
82
files/icons/flags/dominica.svg
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#496E2D;" d="M306.087,507.087c101.203-20.076,180.924-99.798,201-201h-201V507.087z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M4.913,306.087c20.075,101.202,99.797,180.924,201,201v-201H4.913z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M507.087,205.913c-20.076-101.202-99.797-180.924-201-201v201H507.087z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M205.913,4.913c-101.203,20.076-180.925,99.798-201,201h201V4.913z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFDA44;" d="M239.304,306.087h-33.391v201c10.897,2.161,22.044,3.625,33.391,4.356V306.087z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M239.304,205.913V0.557c-11.347,0.73-22.495,2.195-33.391,4.356v201H239.304z"/>
|
||||||
|
</g>
|
||||||
|
<path d="M272.696,0.557C267.174,0.2,261.611,0,256,0s-11.174,0.2-16.696,0.557v205.357h33.391V0.557z"/>
|
||||||
|
<path d="M239.304,511.443C244.826,511.8,250.389,512,256,512s11.174-0.2,16.696-0.557V306.087h-33.391V511.443z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#FFDA44;" d="M205.913,239.304v-33.391h-201c-2.162,10.898-3.626,22.044-4.356,33.391H205.913z"/>
|
||||||
|
<path style="fill:#FFDA44;" d="M306.087,239.304h205.357c-0.73-11.347-2.195-22.493-4.356-33.391h-201V239.304z"/>
|
||||||
|
</g>
|
||||||
|
<path d="M306.087,272.696h205.357C511.8,267.175,512,261.611,512,256s-0.2-11.175-0.557-16.696H306.087V272.696z"/>
|
||||||
|
<path d="M0.557,239.304C0.201,244.825,0,250.389,0,256s0.201,11.175,0.557,16.696h205.357v-33.391H0.557z"/>
|
||||||
|
<circle style="fill:#D80027;" cx="256" cy="256" r="122.435"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#496E2D;" d="M283.894,269.66c-9.107-18.213-20.944-36.673-20.944-36.673s0.294-8.405,0.294-13.413
|
||||||
|
c0-7.544-6.116-13.66-13.66-13.66c-7.147,0-13.003,5.491-13.6,12.482c-5.62,0.367-10.067,5.029-10.067,10.741
|
||||||
|
c0,4.153,2.353,7.752,5.797,9.551c1.712-4.004,5.064-7.13,9.21-8.555c0.676,0.553,1.402,1.047,2.177,1.466l1.75,0.838
|
||||||
|
c0,0-6.489,18.291-6.489,28.117c0,27.624,18.214,36.143,18.214,36.143v0.285l-9.107,9.106h18.213v-18.214l9.107,9.107
|
||||||
|
C274.869,296.81,292.039,285.951,283.894,269.66z"/>
|
||||||
|
<polygon style="fill:#496E2D;" points="256,155.826 260.144,168.58 273.554,168.58 262.705,176.463 266.85,189.217 256,181.335
|
||||||
|
245.15,189.217 249.295,176.463 238.446,168.58 251.856,168.58 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="197.12,174.958 207.968,182.841 218.818,174.957 214.674,187.713 225.524,195.594
|
||||||
|
212.113,195.595 207.969,208.349 203.824,195.595 190.414,195.594 201.263,187.711 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="160.729,225.045 174.138,225.045 178.283,212.291 182.427,225.045 195.838,225.044
|
||||||
|
184.989,232.928 189.134,245.682 178.283,237.799 167.434,245.681 171.577,232.927 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="160.729,286.955 171.577,279.074 167.433,266.319 178.283,274.202 189.133,266.319
|
||||||
|
184.989,279.073 195.839,286.956 182.427,286.957 178.283,299.71 174.138,286.955 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="197.12,337.042 201.263,324.29 190.413,316.407 203.824,316.407 207.969,303.652
|
||||||
|
212.113,316.406 225.524,316.406 214.674,324.29 218.818,337.043 207.968,329.16 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="256,356.174 251.856,343.422 238.446,343.422 249.295,335.538 245.15,322.784 256,330.665
|
||||||
|
266.849,322.783 262.705,335.538 273.554,343.421 260.144,343.422 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="314.88,337.042 304.032,329.16 293.183,337.044 297.326,324.29 286.476,316.407
|
||||||
|
299.887,316.406 304.03,303.652 308.176,316.407 321.586,316.407 310.737,324.29 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="351.271,286.955 337.862,286.955 333.717,299.71 329.573,286.957 316.161,286.957
|
||||||
|
327.011,279.073 322.866,266.32 333.717,274.202 344.565,266.32 340.423,279.074 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="351.271,225.045 340.423,232.927 344.566,245.681 333.717,237.799 322.867,245.683
|
||||||
|
327.011,232.928 316.161,225.046 329.573,225.044 333.716,212.292 337.862,225.045 "/>
|
||||||
|
<polygon style="fill:#496E2D;" points="314.88,174.958 310.737,187.711 321.586,195.594 308.176,195.594 304.032,208.349
|
||||||
|
299.887,195.595 286.476,195.596 297.326,187.711 293.182,174.959 304.032,182.84 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.5 KiB |
45
files/icons/flags/dominican-republic.svg
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M8.819,322.783c23.638,87.703,92.695,156.761,180.399,180.399V322.783H8.819z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M189.217,8.819C101.514,32.456,32.456,101.514,8.819,189.217h180.399V8.819z"/>
|
||||||
|
<path style="fill:#D80027;" d="M503.181,189.217C479.544,101.514,410.486,32.456,322.783,8.819v180.399H503.181z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M322.783,503.181c87.703-23.638,156.761-92.695,180.399-180.399H322.783V503.181z"/>
|
||||||
|
<path style="fill:#496E2D;" d="M322.783,256c0,36.884-29.899,66.783-66.783,66.783c-36.883,0-66.783-29.899-66.783-66.783
|
||||||
|
S256,189.217,256,189.217S322.783,219.116,322.783,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M189.217,256c0-36.884,29.9-66.783,66.783-66.783c36.884,0,66.783,29.899,66.783,66.783"/>
|
||||||
|
<path style="fill:#D80027;" d="M218.435,222.609v41.739c0,20.747,16.818,37.565,37.565,37.565s37.565-16.818,37.565-37.565v-41.739
|
||||||
|
H218.435z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
41
files/icons/flags/east-timor.svg
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#FFDA44;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,0C193.323,0,135.917,22.537,91.415,59.934l0,0L367.304,256L91.415,452.066l0,0
|
||||||
|
C135.917,489.463,193.323,512,256,512c141.384,0,256-114.616,256-256S397.384,0,256,0z"/>
|
||||||
|
<path d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256L74.98,74.98z"/>
|
||||||
|
<polygon style="fill:#F0F0F0;" points="70.979,197.355 109.939,234.227 157.047,208.563 134.022,257.013 172.983,293.886
|
||||||
|
119.789,286.958 96.761,335.407 86.914,282.675 33.72,275.745 80.826,250.084 "/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
46
files/icons/flags/ecuador.svg
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M0,256C0,114.616,114.616,0,256,0s256,114.616,256,256l-256,22.261L0,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M34.256,384C78.521,460.516,161.245,512,256,512s177.479-51.484,221.744-128L256,367.304L34.256,384z
|
||||||
|
"/>
|
||||||
|
<path style="fill:#0052B4;" d="M477.744,384C499.526,346.346,512,302.631,512,256H0c0,46.631,12.474,90.346,34.256,128H477.744z"/>
|
||||||
|
<circle style="fill:#FFDA44;" cx="256" cy="256" r="89.043"/>
|
||||||
|
<path style="fill:#338AF3;" d="M256,311.652c-30.687,0-55.652-24.966-55.652-55.652v-33.391c0-30.687,24.966-55.652,55.652-55.652
|
||||||
|
s55.652,24.966,55.652,55.652V256C311.652,286.687,286.687,311.652,256,311.652z"/>
|
||||||
|
<path d="M345.043,122.435h-66.783c0-12.294-9.967-22.261-22.261-22.261s-22.261,9.967-22.261,22.261h-66.783
|
||||||
|
c0,12.295,10.709,22.261,23.002,22.261h-0.741c0,12.295,9.966,22.261,22.261,22.261c0,12.295,9.966,22.261,22.261,22.261h44.522
|
||||||
|
c12.295,0,22.261-9.966,22.261-22.261c12.295,0,22.261-9.966,22.261-22.261h-0.741C334.335,144.696,345.043,134.729,345.043,122.435
|
||||||
|
z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
42
files/icons/flags/egypt.svg
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
|
||||||
|
<path d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#FF9811;" d="M345.043,228.174h-66.783c0-12.294-9.967-22.261-22.261-22.261s-22.261,9.967-22.261,22.261h-66.783
|
||||||
|
c0,12.295,10.709,22.261,23.003,22.261h-0.742c0,12.295,9.966,22.261,22.261,22.261c0,12.295,9.966,22.261,22.261,22.261h44.522
|
||||||
|
c12.295,0,22.261-9.966,22.261-22.261c12.295,0,22.261-9.966,22.261-22.261h-0.741C334.335,250.435,345.043,240.469,345.043,228.174
|
||||||
|
z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
40
files/icons/flags/england.svg
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#D80027;" d="M509.833,222.609h-220.44h-0.001V2.167C278.461,0.744,267.317,0,256,0s-22.461,0.744-33.391,2.167
|
||||||
|
v220.44v0.001H2.167C0.744,233.539,0,244.681,0,256c0,11.319,0.744,22.461,2.167,33.391h220.44h0.001v220.442
|
||||||
|
C233.539,511.256,244.683,512,256,512s22.461-0.743,33.391-2.167v-220.44v-0.001h220.442C511.256,278.461,512,267.319,512,256
|
||||||
|
C512,244.681,511.256,233.539,509.833,222.609z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1000 B |
48
files/icons/flags/equatorial-guinea.svg
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#6DA544;" d="M155.826,166.957h340.25C459.906,69.472,366.07,0,256,0C185.306,0,121.313,28.659,74.989,74.989
|
||||||
|
L155.826,166.957z"/>
|
||||||
|
<path style="fill:#D80027;" d="M155.826,345.043h340.25C459.906,442.528,366.07,512,256,512
|
||||||
|
c-70.694,0-134.687-28.659-181.011-74.989L155.826,345.043z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C116.293,395.707,156.026,355.974,256,256
|
||||||
|
L74.98,74.98z"/>
|
||||||
|
<path style="fill:#DEDDE0;" d="M300.522,211.478v55.652c0,34.08,44.522,44.523,44.522,44.523s44.522-10.443,44.522-44.523v-55.652
|
||||||
|
H300.522z"/>
|
||||||
|
<rect x="333.913" y="257.113" style="fill:#786145;" width="22.261" height="32.278"/>
|
||||||
|
<path style="fill:#6DA544;" d="M367.304,244.87c0-12.295-9.966-22.261-22.261-22.261c-12.295,0-22.261,9.966-22.261,22.261
|
||||||
|
c-6.147,0-11.13,4.983-11.13,11.13s4.983,11.13,11.13,11.13c3.65,0,40.872,0,44.522,0c6.147,0,11.13-4.983,11.13-11.13
|
||||||
|
S373.452,244.87,367.304,244.87z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
46
files/icons/flags/eritrea.svg
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#338AF3;" d="M233.739,233.739c0,0-158.609,203.317-158.759,203.28C121.306,483.346,185.307,512,256,512
|
||||||
|
c141.384,0,256-114.616,256-256L233.739,233.739z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M233.739,256c0,0-158.609-181.055-158.759-181.019C121.306,28.654,185.307,0,256,0
|
||||||
|
c141.384,0,256,114.616,256,256H233.739z"/>
|
||||||
|
<path style="fill:#D80027;" d="M74.98,74.98c-99.974,99.974-99.974,262.065,0,362.04C74.973,437.061,512,256,512,256L74.98,74.98z"
|
||||||
|
/>
|
||||||
|
<path style="fill:#FFDA44;" d="M133.565,150.261c-49.099,0-89.043,39.945-89.043,89.043v33.391
|
||||||
|
c0,49.099,39.945,89.043,89.043,89.043s89.043-39.945,89.043-89.043v-33.391C222.609,190.206,182.664,150.261,133.565,150.261z
|
||||||
|
M189.217,272.696c0,24.872-16.402,45.981-38.957,53.09v-36.394l23.624-23.624l-23.611-23.611l-0.013-8.403v-11.144H116.87V256
|
||||||
|
l-23.608,23.607l23.608,23.607v22.573c-22.555-7.109-38.957-28.218-38.957-53.09v-33.391c0-30.687,24.966-55.652,55.652-55.652
|
||||||
|
s55.652,24.966,55.652,55.652V272.696z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
39
files/icons/flags/estonia.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path d="M0,256c0,31.314,5.633,61.31,15.923,89.043L256,356.174l240.077-11.13C506.368,317.31,512,287.314,512,256
|
||||||
|
s-5.632-61.31-15.923-89.043L256,155.826l-240.077,11.13C5.633,194.69,0,224.686,0,256z"/>
|
||||||
|
<path style="fill:#0052B4;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M496.077,345.043H15.923C52.094,442.527,145.929,512,256,512S459.906,442.527,496.077,345.043z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 982 B |
48
files/icons/flags/ethiopia.svg
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#FFDA44;" d="M0,256c0,31.316,5.633,61.312,15.924,89.046L256,367.304l240.076-22.259
|
||||||
|
C506.368,317.312,512,287.315,512,256c0-30.885-5.471-60.492-15.494-87.905L256,144.696l-240.506,23.4
|
||||||
|
C5.471,195.508,0,225.115,0,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,512c110.071,0,203.906-69.472,240.077-166.957H15.923C52.094,442.528,145.929,512,256,512z"/>
|
||||||
|
<path style="fill:#6DA544;" d="M256,0C145.929,0,52.094,69.472,15.923,166.957h480.155C459.906,69.472,366.071,0,256,0z"/>
|
||||||
|
<circle style="fill:#0052B4;" cx="256" cy="256" r="122.435"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="255.974,161.191 278.076,229.213 349.713,229.213 291.735,271.254 314.011,339.478
|
||||||
|
255.974,297.237 198.026,339.4 220.212,271.254 162.287,229.213 233.872,229.213 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="344.124,272.93 274.008,250.146 317.341,190.506 299.333,177.42 255.998,237.064
|
||||||
|
212.667,177.421 194.657,190.505 237.989,250.15 167.876,272.929 174.754,294.102 244.87,271.321 244.87,345.043 267.13,345.043
|
||||||
|
267.13,271.32 337.243,294.102 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
54
files/icons/flags/european-union.svg
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#0052B4;" cx="256" cy="256" r="256"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="256.001,100.174 264.29,125.683 291.11,125.683 269.411,141.448 277.7,166.957
|
||||||
|
256.001,151.191 234.301,166.957 242.59,141.448 220.891,125.683 247.712,125.683 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="145.814,145.814 169.714,157.99 188.679,139.026 184.482,165.516 208.381,177.693
|
||||||
|
181.89,181.889 177.694,208.381 165.517,184.482 139.027,188.679 157.992,169.714 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="100.175,256 125.684,247.711 125.684,220.89 141.448,242.59 166.958,234.301 151.191,256
|
||||||
|
166.958,277.699 141.448,269.411 125.684,291.11 125.684,264.289 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="145.814,366.186 157.991,342.286 139.027,323.321 165.518,327.519 177.693,303.62
|
||||||
|
181.89,330.111 208.38,334.307 184.484,346.484 188.679,372.974 169.714,354.009 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="256.001,411.826 247.711,386.317 220.891,386.317 242.591,370.552 234.301,345.045
|
||||||
|
256.001,360.809 277.7,345.045 269.411,370.552 291.11,386.317 264.289,386.317 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="366.187,366.186 342.288,354.01 323.322,372.975 327.519,346.483 303.622,334.307
|
||||||
|
330.112,330.111 334.308,303.62 346.484,327.519 372.974,323.321 354.009,342.288 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="411.826,256 386.317,264.289 386.317,291.11 370.552,269.41 345.045,277.699 360.81,256
|
||||||
|
345.045,234.301 370.553,242.59 386.317,220.89 386.317,247.712 "/>
|
||||||
|
<polygon style="fill:#FFDA44;" points="366.187,145.814 354.01,169.714 372.975,188.679 346.483,184.481 334.308,208.38
|
||||||
|
330.112,181.889 303.622,177.692 327.519,165.516 323.322,139.027 342.289,157.991 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
60
files/icons/flags/falkland-islands.svg
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#0052B4;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.028,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.592,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.777,256h46.539c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.213-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.19,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.953-90.953h-31.481v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
</g>
|
||||||
|
<polygon style="fill:#FFDA44;" points="411.826,300.522 411.826,311.652 322.783,311.652 322.783,300.522 289.391,300.522
|
||||||
|
289.391,345.043 311.652,345.043 311.652,356.174 422.957,356.174 422.957,345.043 445.217,345.043 445.217,300.522 "/>
|
||||||
|
<path style="fill:#338AF3;" d="M289.391,133.565V256c0,59.639,77.913,77.913,77.913,77.913s77.913-18.274,77.913-77.913V133.565
|
||||||
|
H289.391z"/>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F3F3F3;" d="M367.3,224.889c-19.477,0-19.477,17.809-38.954,17.809c-19.477,0-19.477-17.809-38.954-17.809
|
||||||
|
v31.165c19.477,0,19.477,17.809,38.954,17.809s19.477-17.809,38.954-17.809c19.479,0,19.479,17.809,38.959,17.809
|
||||||
|
s19.479-17.809,38.959-17.809v-31.165c-19.479,0-19.479,17.809-38.959,17.809C386.779,242.698,386.779,224.889,367.3,224.889z"/>
|
||||||
|
<path style="fill:#F3F3F3;" d="M367.3,162.504c-19.477,0-19.477,17.809-38.954,17.809c-19.477,0-19.477-17.809-38.954-17.809
|
||||||
|
v31.165c19.477,0,19.477,17.809,38.954,17.809s19.477-17.809,38.954-17.809c19.479,0,19.479,17.809,38.959,17.809
|
||||||
|
s19.479-17.809,38.959-17.809v-31.165c-19.479,0-19.479,17.809-38.959,17.809C386.779,180.313,386.779,162.504,367.3,162.504z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
44
files/icons/flags/faroe-islands.svg
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#0052B4;" d="M500.87,256l8.959-33.391c-1.488-11.381-3.72-22.529-6.647-33.391H233.739V0.974
|
||||||
|
c-11.36,0.978-22.505,2.707-33.391,5.121l-44.522,27.296l-22.261-2.247c-11.715,6.392-22.876,13.672-33.391,21.751v136.322H8.819
|
||||||
|
c-2.927,10.862-5.159,22.01-6.647,33.391L11.13,256l-8.959,33.391c1.488,11.381,3.72,22.529,6.647,33.391h91.355v136.322
|
||||||
|
c10.515,8.08,21.677,15.359,33.391,21.751l33.391-2.247l33.391,27.296c10.887,2.413,22.032,4.142,33.391,5.121V322.783h269.442
|
||||||
|
c2.927-10.862,5.159-22.01,6.647-33.391L500.87,256z"/>
|
||||||
|
<path style="fill:#D80027;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.481l0,0H2.167
|
||||||
|
C0.744,233.539,0,244.683,0,256s0.744,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
|
||||||
|
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
57
files/icons/flags/fiji.svg
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<path style="fill:#338AF3;" d="M512,256c0,141.384-114.616,256-256,256S0,397.384,0,256C0,256.061,256,0.028,256,0
|
||||||
|
C397.384,0,512,114.616,512,256z"/>
|
||||||
|
<g>
|
||||||
|
<polygon style="fill:#0052B4;" points="256,122.435 256,208.778 166.957,122.435 "/>
|
||||||
|
<polygon style="fill:#0052B4;" points="133.565,256 208.777,256 133.565,155.826 122.435,233.739 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,0c-0.016,0-0.029,0-0.043,0H256L256,0z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M255.315,256H256c0-0.23,0-0.454,0-0.685C255.772,255.544,255.544,255.772,255.315,256z"/>
|
||||||
|
<path style="fill:#F0F0F0;" d="M256,133.565C256,88.52,256,59.005,256,0h-0.043C114.592,0.024,0,114.629,0,256h133.565v-75.211
|
||||||
|
L208.777,256h46.54c0.228-0.228,0.456-0.456,0.685-0.685c0-17.247,0-32.636,0-46.537l-75.214-75.213H256z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path style="fill:#D80027;" d="M129.515,33.391C89.476,56.19,56.19,89.476,33.391,129.515V256h66.783V100.176v-0.002H256
|
||||||
|
c0-21.063,0-41.129,0-66.783H129.515z"/>
|
||||||
|
<path style="fill:#D80027;" d="M256,224.519l-90.953-90.953h-31.481v0.002L255.998,256H256C256,256,256,234.293,256,224.519z"/>
|
||||||
|
</g>
|
||||||
|
<path style="fill:#F3F3F3;" d="M289.391,166.957v89.042c0,59.64,77.913,77.914,77.913,77.914s77.913-18.274,77.913-77.914v-89.042
|
||||||
|
l-77.913-22.261L289.391,166.957z"/>
|
||||||
|
<path style="fill:#D80027;" d="M445.217,166.957v-33.391H289.391v33.391h66.781v66.784h-66.781v22.259c0,0.001,0,0.002,0,0.002
|
||||||
|
l66.781,0.001v74.497c6.718,2.376,11.132,3.414,11.132,3.414s4.412-1.036,11.129-3.414v-74.498h66.784v-0.002V233.74h-66.784
|
||||||
|
v-66.784H445.217z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
39
files/icons/flags/finland.svg
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||||
|
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="256"/>
|
||||||
|
<path style="fill:#0052B4;" d="M509.833,222.609H200.349h-0.001V6.085c-23.658,5.246-46.087,13.749-66.783,25.042v191.48v0.001
|
||||||
|
H2.167C0.742,233.539,0,244.683,0,256s0.742,22.461,2.167,33.391h131.397h0.001v191.481c20.696,11.292,43.125,19.797,66.783,25.042
|
||||||
|
V289.394v-0.002h309.485C511.256,278.461,512,267.317,512,256S511.256,233.539,509.833,222.609z"/>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 942 B |