add 'Paco Ŝako' theme based on the icons from the manual
|
|
@ -120,7 +120,7 @@ button:disabled .silhouette {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cb_controls, #cb_names, #cb_message, #cb_game, #cb_navigate {
|
#cb_controls, #cb_theme, #cb_names, #cb_message, #cb_game, #cb_navigate {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
.cb-theme-pacosako img.cb-dk-piece.cb-king { content: url(../../svg/pacosako/kd.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-dk-piece.cb-queen { content: url(../../svg/pacosako/qd.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-dk-piece.cb-rook { content: url(../../svg/pacosako/rd.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-dk-piece.cb-knight { content: url(../../svg/pacosako/nd.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-dk-piece.cb-bishop { content: url(../../svg/pacosako/bd.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-dk-piece.cb-pawn { content: url(../../svg/pacosako/pd.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-lt-piece.cb-king { content: url(../../svg/pacosako/kl.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-lt-piece.cb-queen { content: url(../../svg/pacosako/ql.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-lt-piece.cb-rook { content: url(../../svg/pacosako/rl.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-lt-piece.cb-knight { content: url(../../svg/pacosako/nl.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-lt-piece.cb-bishop { content: url(../../svg/pacosako/bl.svg); }
|
||||||
|
.cb-theme-pacosako img.cb-lt-piece.cb-pawn { content: url(../../svg/pacosako/pl.svg); }
|
||||||
|
|
||||||
|
.cb-theme-pacosako .cb-piece {
|
||||||
|
position: absolute;
|
||||||
|
top: 10%;
|
||||||
|
width: calc(55% * 80 / 65);
|
||||||
|
height: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cb_board.cb-theme-pacosako .cb-lt-piece {
|
||||||
|
left: 0;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cb_board.cb-theme-pacosako .cb-dk-piece {
|
||||||
|
left: auto;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cb_board.cb-theme-pacosako.cb-reversed .cb-lt-piece {
|
||||||
|
right: 0;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cb_board.cb-theme-pacosako.cb-reversed .cb-dk-piece {
|
||||||
|
left: 0;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cb_board.cb-theme-pacosako #cb_phantom .cb-piece {
|
||||||
|
top: 15%;
|
||||||
|
left: calc((100% - (55% * 80 / 65)) / 2);
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<link rel="stylesheet" type="text/css" href="css/chess.css">
|
<link rel="stylesheet" type="text/css" href="css/chess.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/theme/pacosako.css">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery-ui/dist/jquery-ui.css">
|
<link rel="stylesheet" type="text/css" href="jquery-ui/dist/jquery-ui.css">
|
||||||
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto|Vollkorn:700&display=swap">
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto|Vollkorn:700&display=swap">
|
||||||
<title>Paco Ŝako</title>
|
<title>Paco Ŝako</title>
|
||||||
|
|
@ -198,6 +199,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="cb_theme">
|
||||||
|
<label for="cb_select_theme">Theme:</label>
|
||||||
|
<select id="cb_select_theme">
|
||||||
|
<option value="traditional">Traditional</option>
|
||||||
|
<option value="pacosako">Paco Ŝako</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<div id="cb_names">
|
<div id="cb_names">
|
||||||
<label for="cb_light_name">Players:</label>
|
<label for="cb_light_name">Players:</label>
|
||||||
<input id="cb_light_name" placeholder="Light"> vs. <input id="cb_dark_name" placeholder="Dark">
|
<input id="cb_light_name" placeholder="Light"> vs. <input id="cb_dark_name" placeholder="Dark">
|
||||||
|
|
|
||||||
|
|
@ -352,6 +352,16 @@ $(function (){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function applyTheme(theme) {
|
||||||
|
let cbBoard = $('#cb_board').first();
|
||||||
|
for (const klass of cbBoard.prop('classList')) {
|
||||||
|
if (klass.match(/^cb-theme-/)) {
|
||||||
|
cbBoard.removeClass(klass);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cbBoard.addClass('cb-theme-' + theme);
|
||||||
|
}
|
||||||
|
|
||||||
function setVisibleGame(game, animate) {
|
function setVisibleGame(game, animate) {
|
||||||
/* navigation should not include the redo stack */
|
/* navigation should not include the redo stack */
|
||||||
visibleGame = new PS.Game(game);
|
visibleGame = new PS.Game(game);
|
||||||
|
|
@ -607,6 +617,7 @@ $(function (){
|
||||||
|
|
||||||
const LS_KEY_NOTIFY = 'pacosako/notify';
|
const LS_KEY_NOTIFY = 'pacosako/notify';
|
||||||
const LS_KEY_REVERSE = 'pacosako/reverse';
|
const LS_KEY_REVERSE = 'pacosako/reverse';
|
||||||
|
const LS_KEY_THEME = 'pacosako/theme';
|
||||||
|
|
||||||
if ('localStorage' in window) {
|
if ('localStorage' in window) {
|
||||||
function fromStorage(key, value) {
|
function fromStorage(key, value) {
|
||||||
|
|
@ -623,6 +634,16 @@ $(function (){
|
||||||
const cb_reverse = $('#cb_reverse')[0];
|
const cb_reverse = $('#cb_reverse')[0];
|
||||||
cb_reverse.checked = doReverse;
|
cb_reverse.checked = doReverse;
|
||||||
arrangeBoard(doReverse);
|
arrangeBoard(doReverse);
|
||||||
|
} else if (key === LS_KEY_THEME) {
|
||||||
|
const cb_theme = $('#cb_select_theme');
|
||||||
|
if (value !== cb_theme.val()) {
|
||||||
|
cb_theme.val(value);
|
||||||
|
if (!cb_theme.val()) {
|
||||||
|
value = 'traditional';
|
||||||
|
cb_theme.val(value);
|
||||||
|
}
|
||||||
|
applyTheme(value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -630,7 +651,7 @@ $(function (){
|
||||||
fromStorage(event.originalEvent.key, event.originalEvent.newValue);
|
fromStorage(event.originalEvent.key, event.originalEvent.newValue);
|
||||||
});
|
});
|
||||||
|
|
||||||
for (const key of [LS_KEY_NOTIFY, LS_KEY_REVERSE]) {
|
for (const key of [LS_KEY_NOTIFY, LS_KEY_REVERSE, LS_KEY_THEME]) {
|
||||||
const value = window.localStorage.getItem(key);
|
const value = window.localStorage.getItem(key);
|
||||||
if (value !== null) {
|
if (value !== null) {
|
||||||
fromStorage(key, value);
|
fromStorage(key, value);
|
||||||
|
|
@ -746,6 +767,15 @@ $(function (){
|
||||||
renderBoard(true);
|
renderBoard(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#cb_select_theme').on('change', function(){
|
||||||
|
const theme = $('#cb_select_theme').val();
|
||||||
|
debug('cb_select_theme changed to ' + theme);
|
||||||
|
if ('localStorage' in window) {
|
||||||
|
window.localStorage.setItem(LS_KEY_THEME, theme);
|
||||||
|
}
|
||||||
|
applyTheme(theme);
|
||||||
|
});
|
||||||
|
|
||||||
$('#cb_select_game').on('change', function(){
|
$('#cb_select_game').on('change', function(){
|
||||||
let optIndex = $('#cb_select_game')[0].selectedIndex;
|
let optIndex = $('#cb_select_game')[0].selectedIndex;
|
||||||
if (optIndex === 0) {
|
if (optIndex === 0) {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" fill="#030303" stroke="#fefefe" stroke-linecap="round"><path d="m18.034 293.47c-5.2917 0-11.642 0-16.294 2.5025 5.7106 0.67249 13.824-0.38585 16.294-2.5025z" fill-rule="evenodd" stroke-linejoin="bevel" stroke-width=".265"/><path d="m9.5677 290.65h-2.1167c-0.19544 0-0.35278 0.15734-0.35278 0.35278v0.70557c0 0.19544 0.15734 0.35278 0.35278 0.35278h8.4667c0.19544 0 0.35278-0.15734 0.35278-0.35278v-0.70557c0-0.19544-0.15734-0.35278-0.35278-0.35278h-2.1167s1.9199-1.8038 2.1779-3.4114c0.35921-3.5267-2.1663-6.617-3.6792-9.64-0.16967-0.33905 0.55481 0.18842 0.7988-0.35404 0.13293-0.29555-0.08219-0.77751-0.35582-1.0583-0.27902-0.28636-0.93601-0.70577-1.0583-0.70556-0.12233 2.1e-4 -0.75853 0.40575-1.0583 0.70556-0.2998 0.2998-0.42901 0.76566-0.35278 1.0583 0.14786 0.56765 0.9822-8.3e-4 0.81139 0.35278-0.52266 1.082-1.1651 1.4746-1.8697 3.5278l2.1167 2.1167-0.70556 1.4111-2.1167-2.1167c-1.0583 1.4111-1.4502 3.4337-1.0369 5.1844 0.30804 1.3049 2.0953 2.9294 2.0953 2.9294z" stroke-linejoin="round" stroke-width=".26458"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" fill="#fff" stroke="#000" stroke-linecap="round"><path d="m1.7639 293.47c5.2917 0 11.642 0 16.294 2.5025-5.7106 0.67249-13.824-0.38585-16.294-2.5025z" fill-rule="evenodd" stroke-linejoin="bevel" stroke-width=".265"/><path d="m10.231 290.65h2.1167c0.19544 0 0.35278 0.15734 0.35278 0.35278v0.70557c0 0.19544-0.15734 0.35278-0.35278 0.35278h-8.4667c-0.19544 0-0.35278-0.15734-0.35278-0.35278v-0.70557c0-0.19544 0.15734-0.35278 0.35278-0.35278h2.1167s-1.9199-1.8038-2.1779-3.4114c-0.35921-3.5267 2.1663-6.617 3.6792-9.64 0.16967-0.33905-0.55481 0.18842-0.7988-0.35404-0.13293-0.29555 0.082189-0.77751 0.35582-1.0583 0.27902-0.28636 0.93601-0.70577 1.0583-0.70556s0.75853 0.40575 1.0583 0.70556c0.2998 0.2998 0.42901 0.76566 0.35278 1.0583-0.14786 0.56765-0.9822-8.3e-4 -0.81139 0.35278 0.52266 1.082 1.1651 1.4746 1.8697 3.5278l-2.1167 2.1167 0.70556 1.4111 2.1167-2.1167c1.0583 1.4111 1.4502 3.4337 1.0369 5.1844-0.30804 1.3049-2.0953 2.9294-2.0953 2.9294z" stroke-linejoin="round" stroke-width=".26458"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)"><g><g stroke-linejoin="round"><path d="m11.462 274.42c0.09772 0 0.17622 0.0785 0.17622 0.17622v0.52916h0.52917c0.09772 0 0.17673 0.0785 0.17673 0.17622v0.35295c0 0.0977-0.07902 0.17622-0.17673 0.17622h-0.52917v0.7059h-0.70538v-0.7059h-0.52917c-0.09772 0-0.17622-0.0785-0.17622-0.17622v-0.35295c0-0.0977 0.0785-0.17622 0.17622-0.17622h0.52917v-0.52916c0-0.0977 0.0785-0.17622 0.17622-0.17622zm0.17622 2.822h-0.70538z" stroke="#fff" stroke-linecap="round" stroke-width=".26458"/><g stroke-width=".26458"><path d="m13.402 278.3v-1.4111c0-0.19544-0.15734-0.35278-0.35278-0.35278h-3.5278c-0.19544 0-0.35278 0.15734-0.35278 0.35278l1e-6 1.4111" stroke="#fff" stroke-linecap="round"/><path d="m15.166 289.94 2.8222-10.583h-1.7639v-1.0583h-9.525v1.0583h-1.7639l2.4694 10.583z" fill="#070707" fill-rule="evenodd" stroke="#fefefe"/><rect transform="scale(-1,1)" x="-16.93" y="289.94" width="11.289" height="2.4694" rx=".70556" ry=".70556" stroke="#fff" stroke-linecap="round"/></g></g><path d="m17.636 293.47c-5.2917 0-11.642 0-16.294 2.5025 5.7106 0.67249 13.824-0.38585 16.294-2.5025z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width=".265"/></g><path d="m12.344 280.42v1.4109h1.4108c0.19544 0 0.35295 0.15751 0.35295 0.35295v1.0583c0 0.19544-0.1578 0.34227-0.35295 0.35295h-1.4108v2.4694c0 0.19544-0.15751 0.35244-0.35295 0.35244h-1.0583c-0.19544 0-0.35295-0.157-0.35295-0.35244v-2.4694h-1.4108c-0.19544 0-0.35295-0.15751-0.35295-0.35295v-1.0583c0-0.19544 0.1578-0.36362 0.35295-0.35295h1.4108v-1.4109l0.88212-1.0583z" fill="#f8f8f8"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)"><g fill="#fefefe"><g stroke="#000" stroke-linejoin="round"><path transform="matrix(.26458 0 0 .26458 0 274.07)" d="m30 1.334c-0.36934 0-0.66602 0.29676-0.66602 0.66602v2h-2c-0.36933 0-0.66797 0.29676-0.66797 0.66602v1.334c0 0.36922 0.29864 0.66602 0.66797 0.66602h2v2.668h2.666v-2.668h2c0.36934 0 0.66602-0.29676 0.66602-0.66602v-1.334c0-0.36922-0.29668-0.66602-0.66602-0.66602h-2v-2c0-0.36922-0.29668-0.66602-0.66602-0.66602zm-0.66602 10.666h2.666z" stroke-linecap="round"/><path d="m5.9972 278.3-2e-7 -1.4111c0-0.19544 0.15734-0.35278 0.35278-0.35278h3.5278c0.19544 0 0.35278 0.15734 0.35278 0.35278l-1e-6 1.4111" stroke-linecap="round" stroke-width=".26458"/><path d="m4.2333 289.94-2.8222-10.583h1.7639v-1.0583h9.525v1.0583h1.7639l-2.4694 10.583z" fill-rule="evenodd" stroke-width=".26458"/></g><rect x="2.4694" y="289.94" width="11.289" height="2.4694" rx=".70556" ry=".70556" stroke="#000004" stroke-linecap="round" stroke-linejoin="round" stroke-width=".26458"/><path d="m1.7639 293.47c5.2917 0 11.642 0 16.294 2.5025-5.7106 0.67249-13.824-0.38585-16.294-2.5025z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width=".265"/></g><path d="m7.0556 280.42v1.4109h-1.4108c-0.19544 0-0.35295 0.15751-0.35295 0.35295v1.0583c0 0.19544 0.1578 0.34227 0.35295 0.35295h1.4108v2.4694c0 0.19544 0.15751 0.35244 0.35295 0.35244h1.0583c0.19544 0 0.35295-0.157 0.35295-0.35244v-2.4694h1.4108c0.19544 0 0.35295-0.15751 0.35295-0.35295v-1.0583c0-0.19544-0.1578-0.36362-0.35295-0.35295h-1.4108v-1.4109l-0.88212-1.0583z"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" fill="#040404" fill-rule="evenodd" stroke="#fff"><path d="m18.034 293.47c-5.2917 0-11.642 0-16.294 2.5025 5.7106 0.67249 13.824-0.38585 16.294-2.5025z" stroke-linecap="round" stroke-linejoin="bevel" stroke-width=".265"/><path d="m15.191 290.26c1.1459-2.1515 1.8943-3.8587 1.8475-6.8287-0.04677-2.97-1.5669-5.0982-2.9233-5.9868s-3.6202-1.5306-4.5475-0.69992c-0.27387 0.24531-0.58305-8e-3 -0.78715 0.27769-0.0955 0.13352-0.24291 0.51577-0.20783 0.56255 0.07016 0.0935 0.70158 0.44433 1.4266 0.53788 0.72497 0.0935 3.2039 0.30402 4.1861 2.5257 0.98222 2.2217 1.1927 4.6538 1.0056 9.6117z" stroke-width=".26458px"/><path d="m16.976 292.06h-10.231s2.4694-2.8222 3.175-3.8805c0.70556-1.0583 1.0469-3.2973 0.67248-3.627-0.58388-0.51405-1.7694 0.52366-2.1222 0.87644-0.35278 0.35277-0.9103 1.0454-1.3725 0.98667-0.54779-0.0696-0.99204-0.55429-1.0583-1.0583-0.04906-0.37303 0.38542-1.1563 0.70556-1.7639 0.3677-0.6979 0.99219-1.6151 1.0583-2.3041 0.03371-0.35116 0.04606-0.82146 0.06615-1.1576 0.02438-0.40786 0.94971-0.53565 1.2788-1.2733 0.15066-0.33769 0.15023-0.42902 0.31419-0.678 0.28253-0.42902 0.56224-0.16538 0.89297-0.29768 0.33073-0.13229 0.8599-2.1828 0.95912-2.3812 0.11093-0.22186 0.31567-0.21999 0.41341-0.0248 0.22348 0.44626 0.64535 2.1868 0.75241 2.3895 0.13818 0.2617 0.98392 0.42994 1.8025 1.3229 0.84952 0.92675 1.7611 2.4639 1.7611 4.8617 0 2.3978-0.31419 5.2255-0.13229 5.8704s0.71107 0.72759 1.0638 0.72759v1.4111z" stroke-width=".26458px"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" fill="#fff" fill-rule="evenodd" stroke="#000"><path d="m1.7639 293.47c5.2917 0 11.642 0 16.294 2.5025-5.7106 0.67249-13.824-0.38585-16.294-2.5025z" stroke-linecap="round" stroke-linejoin="bevel" stroke-width=".265"/><path d="m4.6071 290.26c-1.1459-2.1515-1.8943-3.8587-1.8475-6.8287 0.046772-2.97 1.5669-5.0982 2.9233-5.9868 1.3564-0.88867 3.6202-1.5306 4.5475-0.69992 0.27387 0.24531 0.58305-8e-3 0.78715 0.27769 0.0955 0.13352 0.24291 0.51577 0.20783 0.56255-0.07016 0.0935-0.70158 0.44433-1.4266 0.53788-0.72497 0.0935-3.2039 0.30402-4.1861 2.5257-0.98222 2.2217-1.1927 4.6538-1.0056 9.6117z" stroke-width=".26458px"/><path d="m2.8222 292.06h10.231s-2.4694-2.8222-3.175-3.8805c-0.70556-1.0583-1.0469-3.2973-0.67248-3.627 0.58388-0.51405 1.7694 0.52366 2.1222 0.87644 0.35278 0.35277 0.9103 1.0454 1.3725 0.98667 0.54779-0.0696 0.99204-0.55429 1.0583-1.0583 0.04906-0.37303-0.38542-1.1563-0.70556-1.7639-0.3677-0.6979-0.99219-1.6151-1.0583-2.3041-0.03371-0.35116-0.04606-0.82146-0.06615-1.1576-0.02438-0.40786-0.94971-0.53565-1.2788-1.2733-0.15066-0.33769-0.15023-0.42902-0.31419-0.678-0.28253-0.42902-0.56224-0.16538-0.89297-0.29768-0.33073-0.13229-0.8599-2.1828-0.95911-2.3812-0.11093-0.22186-0.31567-0.21999-0.41341-0.0248-0.22348 0.44626-0.64535 2.1868-0.75241 2.3895-0.13818 0.2617-0.98392 0.42994-1.8025 1.3229-0.84952 0.92675-1.7611 2.4639-1.7611 4.8617 0 2.3978 0.31419 5.2255 0.13229 5.8704-0.1819 0.64492-0.71107 0.72759-1.0638 0.72759v1.4111z" stroke-width=".26458px"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" stroke="#fafafa" stroke-linecap="round"><path d="m18.034 293.47c-5.2917 0-11.642 0-16.294 2.5025 5.7106 0.67249 13.824-0.38585 16.294-2.5025z" fill-rule="evenodd" stroke-linejoin="bevel" stroke-width=".265"/><rect transform="scale(-1,1)" x="-14.859" y="290.65" width="6.7028" height="1.4111" rx=".35278" ry=".35278" stroke-linejoin="round" stroke-width=".26458"/><circle transform="scale(-1,1)" cx="-11.508" cy="284.87" r="4.5861" stroke-linejoin="round" stroke-width=".26458"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 673 B |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" fill="#fff" stroke="#000" stroke-linecap="round"><path d="m1.7639 293.47c5.2917 0 11.642 0 16.294 2.5025-5.7106 0.67249-13.824-0.38585-16.294-2.5025z" fill-rule="evenodd" stroke-linejoin="bevel" stroke-width=".265"/><rect x="4.9389" y="290.65" width="6.7028" height="1.4111" rx=".35278" ry=".35278" stroke-linejoin="round" stroke-width=".26458"/><circle cx="8.2903" cy="284.87" r="4.5861" stroke-linejoin="round" stroke-width=".26458"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 631 B |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" stroke="#fff"><path d="m14.507 289.94 3.175-10.583-2.4694 2.8222-0.70556-3.175-1.4111 3.175-1.4111-3.5278-1.4111 3.5278-1.4111-3.175-0.70556 3.175-2.1167-2.8222 2.8222 10.583z" fill-rule="evenodd" stroke-linejoin="round" stroke-width=".26458"/><g stroke-linecap="round"><rect transform="scale(-1,1)" x="-15.918" y="289.94" width="8.4667" height="2.4694" rx=".70556" ry=".70556" stroke-linejoin="round" stroke-width=".26458"/><path d="m18.034 293.47c-5.2917 0-11.642 0-16.294 2.5025 5.7106 0.67249 13.824-0.38585 16.294-2.5025z" fill-rule="evenodd" stroke-linejoin="bevel" stroke-width=".265"/><circle transform="scale(-1,1)" cx="-11.684" cy="276.54" r="1.4111" stroke-linejoin="round" stroke-width=".17639"/></g></g></svg>
|
||||||
|
After Width: | Height: | Size: 907 B |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" fill="#fff"><path d="m5.2917 289.94-3.175-10.583 2.4694 2.8222 0.70556-3.175 1.4111 3.175 1.4111-3.5278 1.4111 3.5278 1.4111-3.175 0.70556 3.175 2.1167-2.8222-2.8222 10.583z" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width=".26458"/><g stroke-linecap="round"><rect x="3.8806" y="289.94" width="8.4667" height="2.4694" rx=".70556" ry=".70556" stroke="#000004" stroke-linejoin="round" stroke-width=".26458"/><path d="m1.7639 293.47c5.2917 0 11.642 0 16.294 2.5025-5.7106 0.67249-13.824-0.38585-16.294-2.5025z" fill-rule="evenodd" stroke="#000" stroke-linejoin="bevel" stroke-width=".265"/><circle cx="8.1139" cy="276.54" r="1.4111" stroke="#060606" stroke-linejoin="round" stroke-width=".17639"/></g></g></svg>
|
||||||
|
After Width: | Height: | Size: 916 B |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)" stroke="#f5f5ff"><g stroke-linecap="round"><path d="m16.27 278.66c0.39088 0 0.7059 0.31452 0.7059 0.70539v9.525c0 0.39088-0.31502 0.70538-0.7059 0.70538h-9.172c-0.39088 0-0.70538-0.3145-0.70538-0.70538v-9.525c0-0.39087 0.31451-0.70539 0.70538-0.70539h0.35295v3.175c0 0.39088 0.31451 0.70539 0.70538 0.70539 0.39088 0 0.70538-0.31451 0.70538-0.70539v-3.175h2.1167v3.175c0 0.39088 0.31502 0.70539 0.7059 0.70539h0.35243c0.39088 0 0.7059-0.31451 0.7059-0.70539v-3.175h2.1167v3.175c0 0.39088 0.31451 0.70539 0.70538 0.70539 0.39088 0 0.70538-0.31451 0.70538-0.70539z" stroke-linejoin="round" stroke-width=".26458"/><rect transform="scale(-1,1)" x="-15.918" y="290.18" width="8.4667" height="1.6743" rx=".70556" ry=".70556" stroke-linejoin="round" stroke-width=".26458"/><path d="m18.034 293.47c-5.2917 0-11.642 0-16.294 2.5025 5.7106 0.67249 13.824-0.38585 16.294-2.5025z" fill-rule="evenodd" stroke-linejoin="bevel" stroke-width=".265"/></g><path d="m16.976 287.83h-10.583" fill-rule="evenodd" stroke-width=".26458px"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="55pt" height="65pt" version="1.1" viewBox="0 0 19.403 22.931" xmlns="http://www.w3.org/2000/svg"><g transform="translate(0 -274.07)"><g fill="#fff" stroke-linecap="round"><path transform="matrix(.26458 0 0 .26458 0 274.07)" d="m13.334 17.334c-1.4773 0-2.668 1.1887-2.668 2.666v36c0 1.4773 1.1906 2.666 2.668 2.666h34.666c1.4773 0 2.666-1.1887 2.666-2.666v-36c0-1.4773-1.1887-2.666-2.666-2.666h-1.334v12c0 1.4773-1.1887 2.666-2.666 2.666s-2.666-1.1887-2.666-2.666v-12h-8v12c0 1.4773-1.1906 2.666-2.668 2.666h-1.332c-1.4773 0-2.668-1.1887-2.668-2.666v-12h-8v12c0 1.4773-1.1887 2.666-2.666 2.666s-2.666-1.1887-2.666-2.666z" stroke="#000" stroke-linejoin="round"/><rect x="3.8806" y="290.18" width="8.4667" height="1.6743" rx=".70556" ry=".70556" stroke="#000004" stroke-linejoin="round" stroke-width=".26458"/><path d="m1.7639 293.47c5.2917 0 11.642 0 16.294 2.5025-5.7106 0.67249-13.824-0.38585-16.294-2.5025z" fill-rule="evenodd" stroke="#000" stroke-linejoin="bevel" stroke-width=".265"/></g><path d="m2.8222 287.83h10.583" fill="none" stroke="#000" stroke-width=".26458px"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,82 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="bd.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="25.444103"
|
||||||
|
inkscape:cy="39.248023"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:lockguides="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline;opacity:1">
|
||||||
|
<path
|
||||||
|
style="fill:#030303;fill-opacity:1;fill-rule:evenodd;stroke:#fefefe;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.034351,293.47223 c -5.291666,0 -11.641666,0 -16.293923,2.50251 5.71059,0.67249 13.824479,-0.38585 16.293923,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#030303;fill-opacity:1;stroke:#fefefe;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="M 9.567685,290.64999 H 7.451018 c -0.195439,0 -0.352778,0.15734 -0.352778,0.35278 v 0.70557 c 0,0.19544 0.157339,0.35278 0.352778,0.35278 h 8.466667 c 0.195438,0 0.352777,-0.15734 0.352777,-0.35278 v -0.70557 c 0,-0.19544 -0.157339,-0.35278 -0.352777,-0.35278 h -2.116667 c 0,0 1.919917,-1.80382 2.177852,-3.41145 0.359211,-3.52667 -2.166333,-6.61696 -3.679164,-9.64005 -0.16967,-0.33905 0.554813,0.18842 0.7988,-0.35404 0.132932,-0.29555 -0.08219,-0.77751 -0.355822,-1.05833 -0.279024,-0.28636 -0.936006,-0.70577 -1.058333,-0.70556 -0.122326,2.1e-4 -0.75853,0.40575 -1.058333,0.70556 -0.299804,0.2998 -0.429011,0.76566 -0.352778,1.05833 0.147856,0.56765 0.982204,-8.3e-4 0.811389,0.35278 -0.522659,1.08197 -1.1650744,1.47455 -1.869722,3.52778 l 2.116667,2.11666 -0.705556,1.41111 -2.116667,-2.11666 c -1.058333,1.41111 -1.45022,3.43374 -1.036933,5.18444 0.308044,1.30489 2.095267,2.92943 2.095267,2.92943 z"
|
||||||
|
id="rect8203"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cssssssssccssszsssccccsc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
|
|
@ -0,0 +1,82 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="bl.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="-2.368397"
|
||||||
|
inkscape:cy="39.248023"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="true"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
inkscape:lockguides="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline;opacity:1">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 1.7638889,293.47223 c 5.2916665,0 11.6416661,0 16.2939231,2.50251 -5.71059,0.67249 -13.8244788,-0.38585 -16.2939231,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 10.230555,290.64999 h 2.116667 c 0.195439,0 0.352778,0.15734 0.352778,0.35278 v 0.70557 c 0,0.19544 -0.157339,0.35278 -0.352778,0.35278 H 3.8805555 c -0.1954389,0 -0.3527778,-0.15734 -0.3527778,-0.35278 v -0.70557 c 0,-0.19544 0.1573389,-0.35278 0.3527778,-0.35278 h 2.1166666 c 0,0 -1.9199168,-1.80382 -2.1778519,-3.41145 -0.3592114,-3.52667 2.1663329,-6.61696 3.679164,-9.64005 0.1696703,-0.33905 -0.5548135,0.18842 -0.7988001,-0.35404 -0.1329321,-0.29555 0.082189,-0.77751 0.3558214,-1.05833 0.2790244,-0.28636 0.9360065,-0.70577 1.0583332,-0.70556 0.1223267,2.1e-4 0.75853,0.40575 1.0583334,0.70556 0.2998035,0.2998 0.4290107,0.76566 0.3527778,1.05833 -0.1478556,0.56765 -0.9822041,-8.3e-4 -0.8113889,0.35278 0.5226588,1.08197 1.1650744,1.47455 1.869722,3.52778 l -2.1166665,2.11666 0.7055555,1.41111 2.116667,-2.11666 c 1.058333,1.41111 1.45022,3.43374 1.036933,5.18444 -0.308044,1.30489 -2.095267,2.92943 -2.095267,2.92943 z"
|
||||||
|
id="rect8203"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cssssssssccssszsssccccsc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
|
|
@ -0,0 +1,115 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="kd.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<inkscape:perspective
|
||||||
|
sodipodi:type="inkscape:persp3d"
|
||||||
|
inkscape:vp_x="0 : 11.465277 : 1"
|
||||||
|
inkscape:vp_y="0 : 1000 : 0"
|
||||||
|
inkscape:vp_z="19.402778 : 11.465277 : 1"
|
||||||
|
inkscape:persp3d-origin="9.701389 : 7.6435183 : 1"
|
||||||
|
id="perspective4945" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="28.483682"
|
||||||
|
inkscape:cy="42.071325"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.26458333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 11.461904,274.4224 c 0.09772,0 0.176217,0.0785 0.176217,0.17622 v 0.52916 h 0.529166 c 0.09772,0 0.176734,0.0785 0.176734,0.17622 v 0.35295 c 0,0.0977 -0.07902,0.17622 -0.176734,0.17622 h -0.529166 v 0.7059 h -0.705384 v -0.7059 h -0.529166 c -0.09772,0 -0.176217,-0.0785 -0.176217,-0.17622 V 275.304 c 0,-0.0977 0.0785,-0.17622 0.176217,-0.17622 h 0.529166 v -0.52916 c 0,-0.0977 0.0785,-0.17622 0.176217,-0.17622 z m 0.176217,2.82205 h -0.705384 z"
|
||||||
|
id="rect4608-3-6-7"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="sscssssccccsssscsssccc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 13.402182,278.30278 0,-1.41109 c 0,-0.19544 -0.157339,-0.35278 -0.352778,-0.35278 H 9.5216262 c -0.1954392,0 -0.3527782,0.15734 -0.3527782,0.35278 l 10e-7,1.41109"
|
||||||
|
id="rect4608-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cssssc" />
|
||||||
|
<path
|
||||||
|
style="fill:#070707;fill-opacity:1;fill-rule:evenodd;stroke:#fefefe;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 15.166071,289.94445 2.822222,-10.58333 h -1.763889 v -1.05834 h -9.525 v 1.05834 H 4.935515 l 2.469445,10.58333 z"
|
||||||
|
id="path4600"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccc" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4602"
|
||||||
|
width="11.288889"
|
||||||
|
height="2.4694364"
|
||||||
|
x="-16.92996"
|
||||||
|
y="289.94446"
|
||||||
|
rx="0.70555556"
|
||||||
|
ry="0.70555556"
|
||||||
|
transform="scale(-1,1)" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 17.635515,293.47223 c -5.291666,0 -11.641666,0 -16.293923,2.50251 5.71059,0.67249 13.824479,-0.38585 16.293923,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 12.343849,280.41928 v 1.41094 h 1.410766 c 0.195439,0 0.35295,0.15751 0.35295,0.35295 v 1.05833 c 0,0.19544 -0.157803,0.34227 -0.35295,0.35295 h -1.410766 v 2.46944 c 0,0.19544 -0.157511,0.35244 -0.35295,0.35244 h -1.058334 c -0.195439,0 -0.35295,-0.157 -0.35295,-0.35244 v -2.46944 H 9.168848 c -0.195439,0 -0.35295,-0.15751 -0.35295,-0.35295 v -1.05833 c 0,-0.19544 0.157802,-0.36362 0.35295,-0.35295 h 1.410767 v -1.41094 l 0.882117,-1.05834 z"
|
||||||
|
id="rect4608"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccsssscsssscsssscccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.5 KiB |
|
|
@ -0,0 +1,107 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="kl.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="26.258438"
|
||||||
|
inkscape:cy="50.670874"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#fefefe;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 30,1.3339844 c -0.369335,0 -0.666016,0.2967558 -0.666016,0.6660156 v 2 h -2 C 26.964653,4 26.666016,4.2967558 26.666016,4.6660156 V 6 c 0,0.3692221 0.298637,0.6660156 0.667968,0.6660156 h 2 V 9.3339844 H 32 V 6.6660156 h 2 c 0.369335,0 0.666016,-0.2967558 0.666016,-0.6660156 V 4.6660156 C 34.666016,4.2967936 34.369335,4 34,4 H 32 V 2 C 32,1.6307779 31.703316,1.3339844 31.333984,1.3339844 Z M 29.333984,12 H 32 Z"
|
||||||
|
transform="matrix(0.26458333,0,0,0.26458333,0,274.06945)"
|
||||||
|
id="rect4608-3-6-7"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="sscssssccccsssscssscsc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#fefefe;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 5.9972221,278.30278 -2e-7,-1.41109 c 0,-0.19544 0.1573389,-0.35278 0.3527778,-0.35278 h 3.5277781 c 0.1954392,0 0.3527782,0.15734 0.3527782,0.35278 l -10e-7,1.41109"
|
||||||
|
id="rect4608-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cssssc" />
|
||||||
|
<path
|
||||||
|
style="fill:#fefefe;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="M 4.2333332,289.94445 1.4111111,279.36112 h 1.7638888 v -1.05834 H 12.7 v 1.05834 h 1.763889 l -2.469445,10.58333 z"
|
||||||
|
id="path4600"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccc" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#fefefe;fill-opacity:1;stroke:#000004;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4602"
|
||||||
|
width="11.288889"
|
||||||
|
height="2.4694364"
|
||||||
|
x="2.4694443"
|
||||||
|
y="289.94446"
|
||||||
|
rx="0.70555556"
|
||||||
|
ry="0.70555556" />
|
||||||
|
<path
|
||||||
|
style="fill:#fefefe;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m 1.7638889,293.47223 c 5.2916665,0 11.6416661,0 16.2939231,2.50251 -5.71059,0.67249 -13.8244788,-0.38585 -16.2939231,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 7.0555554,280.41928 v 1.41094 H 5.6447887 c -0.1954388,0 -0.35295,0.15751 -0.35295,0.35295 v 1.05833 c 0,0.19544 0.1578031,0.34227 0.35295,0.35295 h 1.4107667 v 2.46944 c 0,0.19544 0.157511,0.35244 0.35295,0.35244 h 1.0583333 c 0.195439,0 0.3529499,-0.157 0.3529499,-0.35244 v -2.46944 h 1.4107674 c 0.195439,0 0.35295,-0.15751 0.35295,-0.35295 v -1.05833 c 0,-0.19544 -0.157802,-0.36362 -0.35295,-0.35295 H 8.8197886 v -1.41094 L 7.937672,279.36094 Z"
|
||||||
|
id="rect4608"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccsssscsssscsssscccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.2 KiB |
|
|
@ -0,0 +1,87 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="nd.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="25.727308"
|
||||||
|
inkscape:cy="44.234454"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="false"
|
||||||
|
inkscape:snap-global="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline;opacity:1">
|
||||||
|
<path
|
||||||
|
style="fill:#040404;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.034351,293.47223 c -5.291666,0 -11.641666,0 -16.293923,2.50251 5.71059,0.67249 13.824479,-0.38585 16.293923,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#040404;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 15.191181,290.26481 c 1.145919,-2.15152 1.894273,-3.8587 1.847501,-6.82873 -0.04677,-2.97004 -1.566867,-5.09817 -2.92326,-5.98684 -1.356393,-0.88867 -3.620168,-1.53056 -4.547519,-0.69992 -0.273871,0.24531 -0.583049,-0.008 -0.787152,0.27769 -0.0955,0.13352 -0.24291,0.51577 -0.207832,0.56255 0.07016,0.0935 0.701583,0.44433 1.426551,0.53788 0.724969,0.0935 3.203893,0.30402 4.186109,2.52569 0.982215,2.22168 1.19269,4.65383 1.005602,9.61168 z"
|
||||||
|
id="path7537"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csssscccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#040404;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 16.976018,292.06112 H 6.745463 c 0,0 2.469444,-2.82218 3.1749994,-3.88051 0.7055556,-1.05833 1.0469406,-3.29732 0.6724826,-3.627 -0.583879,-0.51405 -1.769398,0.52366 -2.122178,0.87644 -0.352775,0.35277 -0.910305,1.04536 -1.372527,0.98667 -0.547788,-0.0696 -0.992043,-0.55429 -1.058333,-1.05833 -0.04906,-0.37303 0.385421,-1.15626 0.705555,-1.76389 0.367695,-0.6979 0.992188,-1.61506 1.058334,-2.30408 0.03371,-0.35116 0.04606,-0.82146 0.06615,-1.15755 0.02438,-0.40786 0.949707,-0.53565 1.278819,-1.27331 0.150658,-0.33769 0.150231,-0.42902 0.314193,-0.678 0.282529,-0.42902 0.562238,-0.16538 0.892968,-0.29768 0.330728,-0.13229 0.859899,-2.18282 0.959115,-2.38125 0.110933,-0.22186 0.315666,-0.21999 0.413411,-0.0248 0.223483,0.44626 0.645347,2.18677 0.752409,2.38953 0.138184,0.2617 0.98392,0.42994 1.802474,1.32291 0.849525,0.92675 1.761133,2.46393 1.761133,4.86172 0,2.39778 -0.314193,5.22552 -0.132292,5.87044 0.181901,0.64492 0.711068,0.72759 1.063846,0.72759 v 1.41111 z"
|
||||||
|
id="path7535"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccsssssssssssssssssccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.3 KiB |
|
|
@ -0,0 +1,87 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="nl.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="8"
|
||||||
|
inkscape:cx="-2.085192"
|
||||||
|
inkscape:cy="44.234454"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="false"
|
||||||
|
inkscape:snap-global="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline;opacity:1">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 1.7638889,293.47223 c 5.2916665,0 11.6416661,0 16.2939231,2.50251 -5.71059,0.67249 -13.8244788,-0.38585 -16.2939231,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 4.6070586,290.26481 c -1.1459184,-2.15152 -1.894273,-3.8587 -1.8475008,-6.82873 0.046772,-2.97004 1.5668675,-5.09817 2.9232603,-5.98684 1.3563931,-0.88867 3.620168,-1.53056 4.5475189,-0.69992 0.273871,0.24531 0.583049,-0.008 0.787152,0.27769 0.0955,0.13352 0.24291,0.51577 0.207832,0.56255 -0.07016,0.0935 -0.701583,0.44433 -1.426551,0.53788 -0.7249686,0.0935 -3.2038935,0.30402 -4.1861091,2.52569 -0.9822154,2.22168 -1.1926901,4.65383 -1.0056023,9.61168 z"
|
||||||
|
id="path7537"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csssscccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 2.8222222,292.06112 H 13.052777 c 0,0 -2.469444,-2.82218 -3.1749994,-3.88051 -0.7055557,-1.05833 -1.0469404,-3.29732 -0.6724828,-3.627 0.5838795,-0.51405 1.7693982,0.52366 2.1221782,0.87644 0.352775,0.35277 0.910305,1.04536 1.372527,0.98667 0.547788,-0.0696 0.992043,-0.55429 1.058333,-1.05833 0.04906,-0.37303 -0.385421,-1.15626 -0.705555,-1.76389 -0.367695,-0.6979 -0.992188,-1.61506 -1.058334,-2.30408 -0.03371,-0.35116 -0.04606,-0.82146 -0.06615,-1.15755 -0.02438,-0.40786 -0.949707,-0.53565 -1.278819,-1.27331 -0.150658,-0.33769 -0.150231,-0.42902 -0.314193,-0.678 -0.282529,-0.42902 -0.5622375,-0.16538 -0.8929684,-0.29768 -0.3307275,-0.13229 -0.8598982,-2.18282 -0.9591146,-2.38125 -0.1109327,-0.22186 -0.3156664,-0.21999 -0.4134114,-0.0248 -0.2234821,0.44626 -0.6453469,2.18677 -0.7524089,2.38953 -0.1381833,0.2617 -0.9839192,0.42994 -1.8024739,1.32291 -0.849525,0.92675 -1.7611328,2.46393 -1.7611328,4.86172 0,2.39778 0.3141927,5.22552 0.1322919,5.87044 -0.1819011,0.64492 -0.711068,0.72759 -1.0638457,0.72759 v 1.41111 z"
|
||||||
|
id="path7535"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccsssssssssssssssssccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.4 KiB |
|
|
@ -0,0 +1,93 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="pd.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="5.6568543"
|
||||||
|
inkscape:cx="26.068193"
|
||||||
|
inkscape:cy="41.748023"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="true"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:lockguides="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline;opacity:1">
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#fafafa;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.034351,293.47223 c -5.291666,0 -11.641666,0 -16.293923,2.50251 5.71059,0.67249 13.824479,-0.38585 16.293923,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#fafafa;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect8867"
|
||||||
|
width="6.7027774"
|
||||||
|
height="1.4111111"
|
||||||
|
x="-14.859351"
|
||||||
|
y="290.64999"
|
||||||
|
rx="0.35277691"
|
||||||
|
ry="0.35277691"
|
||||||
|
transform="scale(-1,1)" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#fafafa;stroke-width:0.26458335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path8871"
|
||||||
|
cx="-11.507962"
|
||||||
|
cy="284.87326"
|
||||||
|
r="4.5861111"
|
||||||
|
transform="scale(-1,1)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
|
|
@ -0,0 +1,91 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="pl.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="5.6568543"
|
||||||
|
inkscape:cx="26.068193"
|
||||||
|
inkscape:cy="41.748023"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="true"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
inkscape:lockguides="false">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline;opacity:1">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 1.7638889,293.47223 c 5.2916665,0 11.6416661,0 16.2939231,2.50251 -5.71059,0.67249 -13.8244788,-0.38585 -16.2939231,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect8867"
|
||||||
|
width="6.7027774"
|
||||||
|
height="1.4111111"
|
||||||
|
x="4.9388885"
|
||||||
|
y="290.64999"
|
||||||
|
rx="0.35277691"
|
||||||
|
ry="0.35277691" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path8871"
|
||||||
|
cx="8.2902775"
|
||||||
|
cy="284.87326"
|
||||||
|
r="4.5861111" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
|
|
@ -0,0 +1,96 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="qd.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4"
|
||||||
|
inkscape:cx="13.671949"
|
||||||
|
inkscape:cy="34.760971"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 14.506573,289.94445 3.175,-10.58333 -2.469444,2.82222 -0.705556,-3.175 -1.411111,3.175 -1.411111,-3.52778 -1.411111,3.52778 -1.411111,-3.175 -0.705555,3.175 -2.116667,-2.82222 2.822222,10.58333 z"
|
||||||
|
id="path4600"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccccc" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4602"
|
||||||
|
width="8.4666672"
|
||||||
|
height="2.4694364"
|
||||||
|
x="-15.917685"
|
||||||
|
y="289.94446"
|
||||||
|
rx="0.70555556"
|
||||||
|
ry="0.70555556"
|
||||||
|
transform="scale(-1,1)" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.034351,293.47223 c -5.291666,0 -11.641666,0 -16.293923,2.50251 5.71059,0.67249 13.824479,-0.38585 16.293923,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.17638889;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path5600"
|
||||||
|
cy="276.53888"
|
||||||
|
cx="-11.684351"
|
||||||
|
r="1.4111111"
|
||||||
|
transform="scale(-1,1)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
|
|
@ -0,0 +1,94 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="ql.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="16"
|
||||||
|
inkscape:cx="13.671949"
|
||||||
|
inkscape:cy="64.760971"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m 5.2916666,289.94445 -3.175,-10.58333 2.4694444,2.82222 0.7055555,-3.175 1.4111111,3.175 1.4111111,-3.52778 1.4111111,3.52778 1.4111112,-3.175 0.705555,3.175 2.116667,-2.82222 -2.822222,10.58333 z"
|
||||||
|
id="path4600"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccccc" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000004;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4602"
|
||||||
|
width="8.4666672"
|
||||||
|
height="2.4694364"
|
||||||
|
x="3.8805554"
|
||||||
|
y="289.94446"
|
||||||
|
rx="0.70555556"
|
||||||
|
ry="0.70555556" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m 1.7638889,293.47223 c 5.2916665,0 11.6416661,0 16.2939231,2.50251 -5.71059,0.67249 -13.8244788,-0.38585 -16.2939231,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<circle
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#060606;stroke-width:0.17638889;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="path5600"
|
||||||
|
cy="276.53888"
|
||||||
|
cx="8.1138887"
|
||||||
|
r="1.4111111" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.5 KiB |
|
|
@ -0,0 +1,94 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="rd.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4"
|
||||||
|
inkscape:cx="26.712911"
|
||||||
|
inkscape:cy="38.244467"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="true">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#f5f5ff;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 16.27029,278.65573 c 0.390878,0 0.7059,0.31452 0.7059,0.70539 v 9.525 c 0,0.39088 -0.315022,0.70538 -0.7059,0.70538 H 7.0982402 c -0.390878,0 -0.7053834,-0.3145 -0.7053834,-0.70538 v -9.525 c 0,-0.39087 0.3145054,-0.70539 0.7053834,-0.70539 h 0.3529499 v 3.175 c 0,0.39088 0.3145054,0.70539 0.7053834,0.70539 0.3908779,0 0.7053834,-0.31451 0.7053834,-0.70539 v -3.175 h 2.1166671 v 3.175 c 0,0.39088 0.315021,0.70539 0.705899,0.70539 h 0.352434 c 0.390878,0 0.7059,-0.31451 0.7059,-0.70539 v -3.175 h 2.116666 v 3.175 c 0,0.39088 0.314506,0.70539 0.705384,0.70539 0.390877,0 0.705383,-0.31451 0.705383,-0.70539 z"
|
||||||
|
id="rect6835"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#f5f5ff;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4602"
|
||||||
|
width="8.4666672"
|
||||||
|
height="1.6743097"
|
||||||
|
x="-15.917685"
|
||||||
|
y="290.17831"
|
||||||
|
rx="0.70555556"
|
||||||
|
ry="0.70555556"
|
||||||
|
transform="scale(-1,1)" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#f5f5ff;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.034351,293.47223 c -5.291666,0 -11.641666,0 -16.293923,2.50251 5.71059,0.67249 13.824479,-0.38585 16.293923,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#f5f5ff;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 16.976018,287.82778 H 6.392685"
|
||||||
|
id="path6868"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.9 KiB |
|
|
@ -0,0 +1,94 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="55pt"
|
||||||
|
height="65pt"
|
||||||
|
viewBox="0 0 19.402778 22.930555"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="rl.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4"
|
||||||
|
inkscape:cx="26.712911"
|
||||||
|
inkscape:cy="38.244467"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
units="pt"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="999"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-grids="true">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4612"
|
||||||
|
units="pt"
|
||||||
|
spacingx="0.35277777"
|
||||||
|
spacingy="0.35277777" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-274.06945)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
d="m 13.333984,17.333984 c -1.477333,0 -2.667968,1.188712 -2.667968,2.666016 v 36 c 0,1.477342 1.190635,2.666016 2.667968,2.666016 H 48 c 1.477334,0 2.666016,-1.188674 2.666016,-2.666016 V 20 c 0,-1.477304 -1.188682,-2.666016 -2.666016,-2.666016 h -1.333984 v 12 C 46.666016,30.811326 45.477334,32 44,32 42.522666,32 41.333984,30.811326 41.333984,29.333984 v -12 h -8 v 12 C 33.333984,30.811326 32.143351,32 30.666016,32 h -1.332032 c -1.477335,0 -2.667968,-1.188674 -2.667968,-2.666016 v -12 h -8 v 12 C 18.666016,30.811326 17.477333,32 16,32 14.522667,32 13.333984,30.811326 13.333984,29.333984 Z"
|
||||||
|
transform="matrix(0.26458333,0,0,0.26458333,0,274.06945)"
|
||||||
|
id="rect6835"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000004;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||||
|
id="rect4602"
|
||||||
|
width="8.4666672"
|
||||||
|
height="1.6743097"
|
||||||
|
x="3.8805554"
|
||||||
|
y="290.17831"
|
||||||
|
rx="0.70555556"
|
||||||
|
ry="0.70555556" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 1.7638889,293.47223 c 5.2916665,0 11.6416661,0 16.2939231,2.50251 -5.71059,0.67249 -13.8244788,-0.38585 -16.2939231,-2.50251 z"
|
||||||
|
id="path4604"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 2.8222223,287.82778 H 13.405555"
|
||||||
|
id="path6868"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.9 KiB |