reinit
10
.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
1
.npmrc
Normal file
|
@ -0,0 +1 @@
|
|||
engine-strict=true
|
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Potato++
|
||||
A indie game dev website
|
1057
package-lock.json
generated
Normal file
17
package.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "ppp",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sveltejs/adapter-auto": "^2.0.0",
|
||||
"@sveltejs/kit": "^1.20.4",
|
||||
"svelte": "^4.0.5",
|
||||
"vite": "^4.4.2"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
12
src/app.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
%sveltekit.body%
|
||||
</body>
|
||||
</html>
|
37
src/lib/Button.svelte
Normal file
|
@ -0,0 +1,37 @@
|
|||
<style>
|
||||
.button {
|
||||
background: var(--gray);
|
||||
color: var(--white);
|
||||
text-decoration: none;
|
||||
width: 128px;
|
||||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
margin: 10px;
|
||||
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.hover-true {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
.icon {
|
||||
background: var(--teal);
|
||||
width: 100%;
|
||||
border-radius: inherit;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
export let href, content, icon;
|
||||
|
||||
let hover = false;
|
||||
</script>
|
||||
|
||||
<a class='button hover-{hover}' href={href} on:mouseover={() => hover = true} on:mouseleave={() => hover = false}>
|
||||
{#if icon}
|
||||
<img src={icon} class='icon'>
|
||||
{/if}
|
||||
{content}
|
||||
</a>
|
51
src/lib/CurrencyItem.svelte
Normal file
|
@ -0,0 +1,51 @@
|
|||
<script>
|
||||
import { numString } from "$lib/util.js";
|
||||
|
||||
export let currency = {};
|
||||
</script>
|
||||
|
||||
<div class="wrapper">
|
||||
<img src="/{currency.type}.svg" />
|
||||
<span class="amount bottom right">{numString(currency.amount)}X</span>
|
||||
<span class="amount bottom">{numString(currency.perClick)}/1CLK</span>
|
||||
<span class="amount"
|
||||
>{numString(currency.perDelay)}/{numString(
|
||||
currency.delay / 1000
|
||||
)}SEC</span
|
||||
>
|
||||
<span class="amount right">{currency.name}</span>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.amount {
|
||||
position: absolute;
|
||||
font-weight: bold;
|
||||
font-family: monospace;
|
||||
text-align: left;
|
||||
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
|
||||
left: 0;
|
||||
top: 0;
|
||||
|
||||
font-size: 0.9em;
|
||||
|
||||
filter: drop-shadow(1.5px 1.5px 0 var(--black));
|
||||
}
|
||||
|
||||
.right {
|
||||
text-align: right;
|
||||
justify-content: end;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
display: flex;
|
||||
align-items: end;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
position: relative;
|
||||
margin: 16px;
|
||||
}
|
||||
</style>
|
54
src/lib/FactoryItem.svelte
Normal file
|
@ -0,0 +1,54 @@
|
|||
<script>
|
||||
export let factory = {};
|
||||
export let currencies = {};
|
||||
|
||||
let costs = "";
|
||||
$: {
|
||||
if (factory.costs) {
|
||||
costs = Object.entries(factory.costs)
|
||||
.map((x) => x.join(": "))
|
||||
.join(", ");
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="wrapper-wrapper" on:click={() => factory.buy(currencies)}>
|
||||
<img src="/{factory.type}.svg" />
|
||||
<a class="wrapper" href="#">
|
||||
{factory.canUse ? factory.amount + "x" : ""}
|
||||
{factory.name} (<b>COSTS</b> | {costs}) {factory.canUse
|
||||
? ""
|
||||
: "(LOCKED)"}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.wrapper-wrapper {
|
||||
position: relative;
|
||||
margin: 16px;
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
}
|
||||
.wrapper {
|
||||
background: var(--black);
|
||||
padding: 10px;
|
||||
color: var(--white);
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 100px;
|
||||
width: 200px;
|
||||
z-index: 2;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.wrapper-wrapper:hover .wrapper {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.wrapper-wrapper .wrapper {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
78
src/lib/clicker.js
Normal file
|
@ -0,0 +1,78 @@
|
|||
class Currency {
|
||||
constructor(name, causeUpdate, type) {
|
||||
this.name = name;
|
||||
this.amount = 0;
|
||||
this.perClick = 0;
|
||||
this.delay = 1000;
|
||||
this.perDelay = 0;
|
||||
|
||||
this.ticks = 0;
|
||||
|
||||
this.causeUpdate = causeUpdate;
|
||||
|
||||
this.interval = setInterval(() => { this.tick() }, 200);
|
||||
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
upgrade({ perClick, delay, perDelay }) {
|
||||
this.perClick += perClick;
|
||||
this.delay /= delay;
|
||||
this.perDelay += perDelay;
|
||||
|
||||
clearInterval(this.interval);
|
||||
this.interval = setInterval(() => { this.tick() }, 200);
|
||||
this.causeUpdate();
|
||||
}
|
||||
|
||||
click() {
|
||||
this.amount += this.perClick;
|
||||
this.causeUpdate();
|
||||
}
|
||||
|
||||
tick() {
|
||||
this.ticks += 200;
|
||||
this.amount += Math.floor(this.ticks / this.delay) * this.perDelay;
|
||||
this.ticks = this.ticks % this.delay;
|
||||
if (!this.causeUpdate) return;
|
||||
this.causeUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
class Factory {
|
||||
constructor(name, costs, upgrades, costInc, causeUpdate, isUpgrade, type) {
|
||||
this.name = name;
|
||||
this.costs = costs;
|
||||
this.upgrades = upgrades;
|
||||
this.costInc = costInc;
|
||||
this.amount = 0;
|
||||
this.causeUpdate = causeUpdate;
|
||||
this.isUpgrade = isUpgrade;
|
||||
this.canUse = true;
|
||||
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
buy(currencies) {
|
||||
if (!this.canUse) return;
|
||||
for (let currency in this.costs) {
|
||||
if (this.costs[currency] > currencies[currency].amount) return;
|
||||
}
|
||||
for (let currency in this.costs) {
|
||||
let curr = currencies[currency];
|
||||
curr.amount -= this.costs[currency];
|
||||
this.costs[currency] = Math.round(this.costs[currency] * this.costInc);
|
||||
}
|
||||
for (let upgrade in this.upgrades) {
|
||||
currencies[upgrade].upgrade(this.upgrades[upgrade]);
|
||||
}
|
||||
if (this.isUpgrade) this.canUse = false;
|
||||
this.amount++;
|
||||
this.causeUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
export {
|
||||
Currency,
|
||||
Factory
|
||||
};
|
21
src/lib/util.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
// https://github.com/berezaa/minershaven/blob/d5c8b41ca8ed9f1bd91176ec397e8dff9a259130/src/ReplicatedStorage/MoneyLib.lua#L13
|
||||
const prefixes = [
|
||||
"","k","M","B","T","qd","Qn","sx","Sp","O","N","de","Ud","DD","tdD","qdD","QnD","sxD","SpD","OcD","NvD","Vgn","UVg","DVg","TVg","qtV","QnV","SeV","SPG","OVG","NVG","TGN","UTG","DTG","tsTG","qtTG","QnTG","ssTG","SpTG","OcTG","NoTG","QdDR","uQDR","dQDR","tQDR","qdQDR","QnQDR","sxQDR","SpQDR","OQDDr","NQDDr","qQGNT","uQGNT","dQGNT","tQGNT","qdQGNT","QnQGNT","sxQGNT","SpQGNT", "OQQGNT","NQQGNT","SXGNTL"
|
||||
]
|
||||
|
||||
function numString(number) {
|
||||
let exp = Math.floor(Math.log10(number + 1) / 3);
|
||||
let base = number / (10 ** (exp*3) );
|
||||
let prefix = prefixes[exp] || '';
|
||||
|
||||
base = (base+'').slice(0, 5);
|
||||
base += prefix;
|
||||
|
||||
if (prefix != '') base = `(${base})`;
|
||||
|
||||
return base;
|
||||
}
|
||||
|
||||
export {
|
||||
numString
|
||||
}
|
59
src/routes/+layout.svelte
Normal file
|
@ -0,0 +1,59 @@
|
|||
<h2>
|
||||
<a href='https://potatoplusplus.com/'>Potato++</a> |
|
||||
<a href="https://discord.gg/KnAU3Snc9g">Discord</a>
|
||||
</h2>
|
||||
|
||||
<slot />
|
||||
|
||||
<style>
|
||||
:global(:root) {
|
||||
--black: rgb(15, 15, 15);
|
||||
--gray: rgb(54, 53, 61);
|
||||
--light-gray: rgb(142, 170, 192);
|
||||
--white: rgb(240, 246, 253);
|
||||
--teal: rgb(27, 28, 36);
|
||||
color: var(--white);
|
||||
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
:global(a) {
|
||||
color: var(--light-gray);
|
||||
}
|
||||
|
||||
:global(body) {
|
||||
background: var(--teal);
|
||||
min-height: 100vh;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
:global(.row, .left) {
|
||||
display: flex;
|
||||
justify-content: start;
|
||||
flex-direction: column;
|
||||
width: 50vw;
|
||||
min-width: 350px;
|
||||
}
|
||||
|
||||
:global(.row) {
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
:global(img) {
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
}
|
||||
|
||||
:global(p) {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
h2 a {
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
34
src/routes/+page.svelte
Normal file
|
@ -0,0 +1,34 @@
|
|||
<script>
|
||||
import Button from "$lib/Button.svelte";
|
||||
</script>
|
||||
|
||||
<section class="left">
|
||||
<h1 class="row">
|
||||
<img src="/potatoplusplus.svg" alt="icon" />
|
||||
<p>Welcome to Potato++</p>
|
||||
</h1>
|
||||
<p>
|
||||
Potato++ is a website where two brothers make games and put them here so
|
||||
people can play them.
|
||||
</p>
|
||||
<section class="row">
|
||||
<Button href="https://discord.gg/KnAU3Snc9g" content="Discord" />
|
||||
<Button
|
||||
href="https://github.com/potato-plus-plus/ppp"
|
||||
content="Source Code"
|
||||
/>
|
||||
</section>
|
||||
<h1>Games</h1>
|
||||
<section class="row">
|
||||
<Button
|
||||
href="researchclicker"
|
||||
content="Research Clicker"
|
||||
icon="/research.svg"
|
||||
/>
|
||||
</section>
|
||||
<h1>Credits</h1>
|
||||
<section class="row">
|
||||
<Button href="https://github.com/thepotatoplus" content="Potato" />
|
||||
<Button href="https://github.com/nanodev-x" content="NDX" />
|
||||
</section>
|
||||
</section>
|
138
src/routes/researchclicker/+page.svelte
Normal file
|
@ -0,0 +1,138 @@
|
|||
<script>
|
||||
let technologicalProgression = "Stone";
|
||||
|
||||
import { Currency, Factory } from "$lib/clicker.js";
|
||||
import CurrencyItem from "$lib/CurrencyItem.svelte";
|
||||
import FactoryItem from "$lib/FactoryItem.svelte";
|
||||
|
||||
let causeUpdate = () => {
|
||||
currencies = { ...currencies };
|
||||
upgrades = { ...upgrades };
|
||||
technology.stoneTools.invis = !(upgrades.scientist.amount > 9);
|
||||
};
|
||||
|
||||
let currencies = {
|
||||
research: new Currency("TECH", causeUpdate, "research"),
|
||||
land: new Currency("LAND", causeUpdate, "land"),
|
||||
stone: new Currency("ROCK", causeUpdate, "stone"),
|
||||
wood: new Currency("WOOD", causeUpdate, "wood"),
|
||||
dirt: new Currency("DIRT", causeUpdate, "dirt"),
|
||||
};
|
||||
|
||||
currencies.research.perClick = 1;
|
||||
currencies.stone.delay = 3000;
|
||||
|
||||
let upgrades = {
|
||||
scientist: new Factory(
|
||||
"Scientist",
|
||||
{
|
||||
research: 15,
|
||||
},
|
||||
{
|
||||
research: {
|
||||
perClick: 0,
|
||||
delay: 1,
|
||||
perDelay: 1,
|
||||
},
|
||||
},
|
||||
1.1,
|
||||
causeUpdate,
|
||||
false,
|
||||
"scientist"
|
||||
),
|
||||
miner: new Factory(
|
||||
"Miner",
|
||||
{
|
||||
stone: 10,
|
||||
},
|
||||
{
|
||||
stone: {
|
||||
perClick: 0,
|
||||
delay: 1,
|
||||
perDelay: 1,
|
||||
},
|
||||
},
|
||||
1.1,
|
||||
causeUpdate,
|
||||
false,
|
||||
"miner"
|
||||
),
|
||||
};
|
||||
let technology = {
|
||||
rockfinding: new Factory(
|
||||
"Rock Finding",
|
||||
{
|
||||
research: 15,
|
||||
},
|
||||
{
|
||||
stone: {
|
||||
perClick: 0.1,
|
||||
delay: 1,
|
||||
perDelay: 0,
|
||||
},
|
||||
},
|
||||
1.1,
|
||||
causeUpdate,
|
||||
true,
|
||||
"stone"
|
||||
),
|
||||
stoneTools: new Factory(
|
||||
"Stone Tools",
|
||||
{
|
||||
research: 100,
|
||||
stone: 50,
|
||||
},
|
||||
{
|
||||
stone: {
|
||||
perClick: 0.1,
|
||||
delay: 1,
|
||||
perDelay: 0,
|
||||
},
|
||||
},
|
||||
1.1,
|
||||
causeUpdate,
|
||||
true,
|
||||
"research"
|
||||
),
|
||||
};
|
||||
</script>
|
||||
|
||||
<h1>{technologicalProgression} Age</h1>
|
||||
<a
|
||||
on:click={() => {
|
||||
for (let currency in currencies) {
|
||||
currencies[currency].click();
|
||||
}
|
||||
}}><img src="/research.svg" /></a
|
||||
>
|
||||
<p>Click to <b>Research</b></p>
|
||||
|
||||
<h2>Raw Resources</h2>
|
||||
|
||||
<section class="row">
|
||||
{#each Object.values(currencies) as currency}
|
||||
{#if !currency.invis}
|
||||
<CurrencyItem {currency} />
|
||||
{/if}
|
||||
{/each}
|
||||
</section>
|
||||
|
||||
<h2>Generators</h2>
|
||||
|
||||
<section class="row">
|
||||
{#each Object.values(upgrades) as upgrade}
|
||||
{#if !upgrade.invis}
|
||||
<FactoryItem factory={upgrade} {currencies} />
|
||||
{/if}
|
||||
{/each}
|
||||
</section>
|
||||
|
||||
<h2>Research</h2>
|
||||
|
||||
<section class="row">
|
||||
{#each Object.values(technology) as upgrade}
|
||||
{#if !upgrade.invis}
|
||||
<FactoryItem factory={upgrade} {currencies} />
|
||||
{/if}
|
||||
{/each}
|
||||
</section>
|
194
static/dirt.svg
Normal file
|
@ -0,0 +1,194 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="dirt.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5981902"
|
||||
inkscape:cx="158.61691"
|
||||
inkscape:cy="148.60559"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:#352a1c;fill-opacity:1;stroke-width:2.24821;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect4167"
|
||||
width="305.85333"
|
||||
height="282.5864"
|
||||
x="-30.604113"
|
||||
y="-285.84116"
|
||||
ry="10.269248"
|
||||
transform="scale(1,-1)" />
|
||||
<path
|
||||
id="rect6100"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:12.8755;stroke-linecap:square"
|
||||
d="M 195.48371,-37.20341 C 57.591152,-48.66221 -45.422974,-43.6916 -66.215331,19.72014 -115.69487,111.84215 29.948338,82.08608 157.20213,82.08608 297.30629,77.32257 415.42144,116.06071 338.01193,25.16252 296.91358,-34.75894 278.91628,-32.94269 195.48371,-37.20341 Z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path6944"
|
||||
style="fill:#5f4528;fill-opacity:1;stroke-width:11.3335;stroke-linecap:square"
|
||||
d="M 190.92985,-33.2596 C 63.193524,-42.84398 -32.233308,-38.68645 -51.494214,14.35252 -97.329451,91.4054 37.586658,66.51677 155.4679,66.51677 285.25296,62.53246 394.6686,94.93389 322.96053,18.90466 284.88916,-31.21499 268.21737,-29.69583 190.92985,-33.2596 Z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path3826"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.22136;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 29.946175,60.00923 C 23.308115,59.67161 16.616293,58.69705 10.876126,56.57177 8.2963202,55.573 5.7048452,54.40823 4.2275084,52.73259 2.6754938,51.06901 2.8986356,48.95466 4.3599347,47.2995 c 1.3907254,-1.64427 4.0864351,-2.88246 7.1299923,-3.08983 3.393771,-0.2774 7.027316,0.55071 9.147946,2.20957 2.267191,0.97347 5.03622,1.31572 7.681831,1.70655 3.734953,-1.20351 8.680175,-0.59634 11.485888,1.30692 2.380995,1.509 3.310036,3.83009 2.162643,5.8188 -1.565168,3.03101 -6.838011,5.13181 -12.02206,4.75772 z" />
|
||||
<path
|
||||
id="path3828"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.28573;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 56.018972,49.74865 c -3.945623,-0.38268 -7.046678,-5.40676 -6.321107,-10.11709 0.451911,-3.82354 3.194546,-7.01761 6.346931,-7.44682 1.918438,-0.70804 3.12772,-2.82161 4.171897,-4.76208 1.198259,-2.28168 2.502128,-4.73079 4.613594,-5.87503 2.918962,-1.69741 6.816651,-0.71663 8.732785,2.53044 1.838867,2.93034 1.971359,7.25026 0.307299,10.3343 -1.516309,3.36066 -3.565345,6.32343 -5.770219,9.04387 -2.921564,3.37399 -6.673215,5.97324 -10.761696,6.28641 -0.439595,0.0241 -0.879686,0.0208 -1.319484,0.006 z" />
|
||||
<path
|
||||
id="path3830"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.45165;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 81.522781,21.29363 c -4.928285,-0.54574 -8.790555,-5.70075 -7.809919,-10.54719 0.67082,-3.74203 3.928513,-6.65906 7.570919,-7.52416 7.359836,-2.27045001 14.953728,-4.21868001 22.713769,-4.17517001 1.19588,6.5e-4 2.40393,0.17005 3.47199,0.735 4.01192,1.92825001 6.38257,6.93953001 4.91038,11.19122001 -1.63832,4.54359 -6.60276,7.67251 -11.44085,7.16405 -1.013671,-0.0984 -1.974071,-0.46027 -2.931651,-0.76151 -0.97921,-0.0407 -1.88411,0.33865 -2.87054,0.47883 -3.969264,0.8617 -7.749377,2.36014 -11.656794,3.43432 -0.648768,0.0586 -1.308502,0.062 -1.957304,0.004 z" />
|
||||
<path
|
||||
id="path3832"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.07882;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 135.16577,9.93314 C 130.6984,9.68498 126.98098,6.7504 127.5797,3.80763 c 0.50204,-2.73964 4.52204,-4.92084 8.6852,-4.84231 7.10495,-0.53167 14.23743,-0.8922 21.37716,-1.1465 4.64069,-0.93472 10.06877,1.36030999 10.68083,4.52938 0.73134,2.95757 -3.06978,5.99148 -7.61981,6.10251 -3.8256,0.24328 -7.68587,0.14422 -11.50229,0.46467 -4.27153,0.205 -8.52553,0.52324 -12.73862,1.0229 -0.43196,0.0146 -0.86488,0.0162 -1.2964,-0.005 z" />
|
||||
<path
|
||||
id="path3834"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.5217;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 205.15894,52.30584 c -6.27818,-0.20061 -11.34945,-4.76605 -10.39033,-9.11995 0.70118,-3.44892 4.92048,-6.18521 9.64038,-6.88964 1.80811,-0.31861 3.56035,-0.80471 5.29035,-1.29574 1.36437,-0.40484 2.69043,-0.88363 3.90674,-1.48112 1.80966,-4.0396 8.84913,-6.32938 14.39881,-4.78479 5.199,1.2941 8.42654,5.56554 7.08691,9.34281 -0.93831,3.76088 -4.7017,6.90618 -9.2203,8.86164 -5.60645,2.54178 -12.02941,3.96518 -18.39506,5.22146 -0.76283,0.10451 -1.54067,0.15213 -2.3175,0.14533 z" />
|
||||
<path
|
||||
id="path3836"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.35144;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 34.737195,18.39737 C 30.250001,18.05408 26.712439,13.349 27.349096,8.83613 27.829591,4.76062 31.543579,1.4756 35.525443,1.36385 c 2.949746,-0.33313 5.837316,-1.06990001 8.773509,-1.49985001 1.312123,-0.19854 2.635496,-0.44783 3.96259,-0.43385 4.630475,0.70067 7.997117,5.93402001 6.820646,10.55802001 -0.884523,3.45123 -4.099737,5.9098 -7.479594,6.39176 -3.683378,0.63193 -7.351382,1.36511 -11.042954,1.94178 -0.604149,0.0772 -1.214085,0.10629 -1.822445,0.0757 z" />
|
||||
<path
|
||||
id="path3838"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.28134;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 97.925031,50.43397 c -1.133746,3.4155 -2.035588,7.14966 -3.886703,9.89134 -1.081979,1.62615 -2.590348,2.55904 -4.12728,2.58859 -2.335531,0.11337 -4.701814,-1.71444 -5.84488,-4.77839 -1.352941,-3.40576 -1.127465,-7.98195 0.500184,-11.09941 0.616044,-1.39359 0.971405,-3.00172 1.576755,-4.40814 0.973089,-2.56559 2.685888,-4.58907 4.677992,-5.01199 2.084489,-0.50751 4.316209,0.5904 5.745498,2.91468 1.659022,2.55054 2.378223,6.59513 1.358434,9.90332 z" />
|
||||
<path
|
||||
id="path3840"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.46605;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 153.11439,37.62383 c -4.02804,-0.20971 -7.9404,-1.31625 -11.922,-1.88605 -3.79024,-1.00838 -7.02691,-4.4816 -7.31647,-8.58846 -0.35483,-4.94495 3.77906,-9.80494 8.63747,-9.83957 2.75156,-0.009 5.30246,1.32854 8.04323,1.43497 3.01871,0.40467 6.22287,1.00516 8.61037,3.10255 3.65192,3.42985 3.57134,10.08176 -0.10363,13.46302 -1.58363,1.53217 -3.76765,2.43071 -5.94897,2.31354 z" />
|
||||
<path
|
||||
id="path3842"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:1.71723;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 189.94088,24.95423 c -9.35334,-0.60682 -15.90229,-5.09638 -12.9445,-8.86289 1.76714,-2.49158 7.2407,-4.29377 13.16349,-4.85824 5.39512,-0.91453 11.18494,-1.86265 17.11154,-1.45815 9.21607,0.74988 15.32498,5.29613 12.08862,8.98849 -1.73914,2.16214 -6.4338,3.69221 -11.48176,4.38217 -5.61821,1.0782 -11.70422,1.85311 -17.93739,1.80862 z" />
|
||||
<path
|
||||
id="path3844"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:0.996099;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 118.33968,42.21879 c -4.14361,-0.18599 -7.59727,-2.67692 -7.06247,-5.18051 0.24246,-2.17555 3.25687,-4.12888 6.86614,-4.3574 2.78152,-0.37106 5.89786,-0.40794 8.41413,0.50747 3.3977,1.30085 4.49683,4.30224 2.41151,6.3694 -1.23176,1.37997 -3.68772,2.25229 -6.22615,2.4398 -1.44357,0.18881 -2.9283,0.25352 -4.40316,0.22124 z" />
|
||||
<path
|
||||
id="path4096"
|
||||
style="fill:#997750;fill-opacity:1;stroke-width:0.996099;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 159.67806,56.20468 c -4.14361,-0.18599 -7.59727,-2.67692 -7.06247,-5.18051 0.24246,-2.17555 3.25687,-4.12888 6.86614,-4.3574 2.78152,-0.37106 5.89786,-0.40794 8.41413,0.50747 3.3977,1.30085 4.49683,4.30224 2.41151,6.3694 -1.23176,1.37997 -3.68772,2.25229 -6.22615,2.4398 -1.44357,0.18881 -2.9283,0.25352 -4.40316,0.22124 z" />
|
||||
<path
|
||||
id="path4187"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 127.19028,142.40678 c -10.49749,-0.68321 -17.84754,-5.73795 -14.52794,-9.97862 1.98331,-2.80524 8.12642,-4.8343 14.77371,-5.46983 6.05508,-1.02966 12.55314,-2.09714 19.20471,-1.64172 10.34342,0.84428 17.1996,5.96285 13.56736,10.12003 -1.95188,2.43433 -7.22082,4.15702 -12.88627,4.93383 -6.30545,1.21394 -13.13593,2.0864 -20.13157,2.03631 z" />
|
||||
<path
|
||||
id="path4189"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 20.778354,171.00027 c -10.497485,-0.68321 -17.8475343,-5.73795 -14.5279333,-9.97862 1.983305,-2.80524 8.1264173,-4.8343 14.7737113,-5.46983 6.055077,-1.02966 12.553135,-2.09713 19.204705,-1.64171 10.343428,0.84428 17.199609,5.96284 13.567362,10.12003 -1.95188,2.43432 -7.220814,4.15701 -12.886267,4.93383 -6.305457,1.21393 -13.135937,2.08639 -20.131578,2.0363 z" />
|
||||
<path
|
||||
id="path4191"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 103.12635,214.60974 c -10.497494,-0.68321 -17.847544,-5.73795 -14.527934,-9.97861 1.9833,-2.80524 8.12642,-4.83431 14.773714,-5.46983 6.05508,-1.02966 12.55314,-2.09714 19.20471,-1.64172 10.34342,0.84428 17.1996,5.96285 13.56735,10.12003 -1.95188,2.43433 -7.22081,4.15701 -12.88626,4.93383 -6.30546,1.21393 -13.13594,2.08639 -20.13158,2.0363 z" />
|
||||
<path
|
||||
id="path4193"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 17.498785,225.26183 c -10.4974853,-0.68321 -17.8475343,-5.73795 -14.5279333,-9.97861 1.983305,-2.80524 8.1264173,-4.83431 14.7737113,-5.46984 6.055077,-1.02965 12.553136,-2.09713 19.204706,-1.64171 10.343423,0.84428 17.199605,5.96285 13.567357,10.12003 -1.951879,2.43433 -7.220813,4.15701 -12.886263,4.93383 -6.305457,1.21393 -13.135936,2.08639 -20.131578,2.0363 z" />
|
||||
<path
|
||||
id="path4195"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 177.94959,253.34524 c -10.49748,-0.68321 -17.84753,-5.73795 -14.52793,-9.97862 1.9833,-2.80523 8.12642,-4.8343 14.77371,-5.46983 6.05508,-1.02965 12.55313,-2.09713 19.2047,-1.64171 10.34343,0.84428 17.19961,5.96285 13.56736,10.12003 -1.95188,2.43432 -7.22081,4.15701 -12.88626,4.93383 -6.30546,1.21393 -13.13594,2.08639 -20.13158,2.0363 z" />
|
||||
<path
|
||||
id="path4197"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 194.7235,203.40649 c -10.49749,-0.68321 -17.84754,-5.73795 -14.52793,-9.97862 1.9833,-2.80524 8.12641,-4.8343 14.77371,-5.46983 6.05507,-1.02966 12.55313,-2.09714 19.2047,-1.64171 10.34343,0.84428 17.19961,5.96284 13.56736,10.12002 -1.95188,2.43433 -7.22081,4.15702 -12.88626,4.93383 -6.30546,1.21394 -13.13594,2.0864 -20.13158,2.03631 z" />
|
||||
<path
|
||||
id="path4199"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 212.19645,164.50704 c -10.49749,-0.68321 -17.84754,-5.73795 -14.52794,-9.97862 1.98331,-2.80524 8.12642,-4.8343 14.77371,-5.46983 6.05508,-1.02966 12.55314,-2.09714 19.20471,-1.64172 10.34342,0.84429 17.1996,5.96285 13.56736,10.12003 -1.95188,2.43433 -7.22082,4.15702 -12.88627,4.93383 -6.30545,1.21394 -13.13593,2.0864 -20.13157,2.03631 z" />
|
||||
<path
|
||||
id="path4201"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="M 75.357075,99.60693 C 64.859589,98.92372 57.50954,93.86898 60.829141,89.62831 c 1.983305,-2.80523 8.126417,-4.8343 14.773711,-5.46983 6.055074,-1.02965 12.553134,-2.09713 19.204704,-1.64171 10.343424,0.84428 17.199604,5.96285 13.567364,10.12003 -1.95188,2.43432 -7.22082,4.15701 -12.886274,4.93383 -6.30545,1.21393 -13.13593,2.08639 -20.131571,2.0363 z" />
|
||||
<path
|
||||
id="path4203"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 27.193963,133.72674 c -10.497485,-0.68321 -17.8475343,-5.73796 -14.527933,-9.97862 1.983305,-2.80524 8.126417,-4.8343 14.773711,-5.46983 6.055077,-1.02966 12.553136,-2.09714 19.204706,-1.64172 10.343423,0.84428 17.199603,5.96285 13.567357,10.12003 -1.951879,2.43433 -7.220813,4.15701 -12.886263,4.93383 -6.305457,1.21394 -13.135937,2.0864 -20.131578,2.03631 z" />
|
||||
<path
|
||||
id="path4205"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 172.9495,96.80597 c -10.49749,-0.68321 -17.84753,-5.73795 -14.52793,-9.97862 1.9833,-2.80523 8.12641,-4.8343 14.77371,-5.46983 6.05507,-1.02965 12.55313,-2.09713 19.2047,-1.64171 10.34343,0.84428 17.19961,5.96285 13.56736,10.12003 -1.95188,2.43432 -7.22081,4.15701 -12.88626,4.93383 -6.30546,1.21393 -13.13594,2.08639 -20.13158,2.0363 z" />
|
||||
<path
|
||||
id="path4207"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 216.75967,114.74624 c -10.49748,-0.68321 -17.84753,-5.73795 -14.52793,-9.97861 1.9833,-2.80524 8.12642,-4.8343 14.77371,-5.46983 6.05508,-1.02966 12.55314,-2.09714 19.20471,-1.64172 10.34342,0.84428 17.1996,5.96285 13.56735,10.12003 -1.95188,2.43433 -7.22081,4.15701 -12.88626,4.93383 -6.30546,1.21393 -13.13594,2.08639 -20.13158,2.0363 z" />
|
||||
<path
|
||||
id="path4848"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 108.86525,188.83055 c 10.51644,0.25679 18.28579,-4.12161 15.35561,-8.64185 -1.72654,-2.97119 -7.66525,-5.5407 -14.22977,-6.76723 -5.93969,-1.56621 -12.317254,-3.20965 -18.982834,-3.34993 -10.377275,-0.0826 -17.660383,4.40347 -14.41139,8.86847 1.728152,2.59894 6.82333,4.78523 12.39738,6.06482 6.17272,1.77211 12.898684,3.25099 19.871004,3.82572 z" />
|
||||
<path
|
||||
id="path4850"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 172.95521,178.77442 c 10.51644,0.2568 18.28579,-4.12161 15.35562,-8.64185 -1.72655,-2.97119 -7.66526,-5.5407 -14.22978,-6.76723 -5.93969,-1.56621 -12.31724,-3.20965 -18.98283,-3.34993 -10.37728,-0.0826 -17.66039,4.40347 -14.41139,8.86846 1.72815,2.59895 6.82333,4.78525 12.39738,6.06483 6.17273,1.77212 12.89868,3.25099 19.871,3.82572 z" />
|
||||
<path
|
||||
id="path4852"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 136.85081,247.96968 c 10.51644,0.2568 18.28579,-4.12161 15.35561,-8.64185 -1.72654,-2.97119 -7.66525,-5.5407 -14.22977,-6.76723 -5.93969,-1.56621 -12.31725,-3.20965 -18.98282,-3.34993 -10.37729,-0.0826 -17.66039,4.40347 -14.41141,8.86846 1.72816,2.59895 6.82333,4.78524 12.39738,6.06483 6.17273,1.77212 12.89869,3.25099 19.87101,3.82572 z" />
|
||||
<path
|
||||
id="path4854"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 213.11853,235.75388 c 10.51644,0.2568 18.28579,-4.12161 15.35561,-8.64185 -1.72655,-2.97119 -7.66525,-5.5407 -14.22978,-6.76723 -5.93969,-1.56621 -12.31725,-3.20965 -18.98283,-3.34993 -10.37727,-0.0826 -17.66039,4.40347 -14.41139,8.86846 1.72815,2.59895 6.82333,4.78525 12.39738,6.06483 6.17272,1.77212 12.89869,3.25099 19.87101,3.82572 z" />
|
||||
<path
|
||||
id="path4856"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 47.164627,257.42932 c 10.516443,0.2568 18.285794,-4.12161 15.355613,-8.64184 -1.726543,-2.97119 -7.665252,-5.54071 -14.229778,-6.76724 -5.939691,-1.56621 -12.31725,-3.20964 -18.982828,-3.34993 -10.37728,-0.0826 -17.660385,4.40347 -14.411393,8.86847 1.728151,2.59894 6.823331,4.78524 12.397375,6.06483 6.172726,1.77211 12.89869,3.25098 19.871011,3.82571 z" />
|
||||
<path
|
||||
id="path4858"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 52.298712,204.60161 c 10.516439,0.25679 18.285791,-4.12162 15.355611,-8.64185 -1.726544,-2.97119 -7.665251,-5.5407 -14.229775,-6.76723 -5.939692,-1.56621 -12.31725,-3.20965 -18.982828,-3.34994 -10.377281,-0.0826 -17.660386,4.40348 -14.411394,8.86847 1.728152,2.59895 6.823332,4.78524 12.397374,6.06483 6.172728,1.77211 12.898692,3.25099 19.871012,3.82572 z" />
|
||||
<path
|
||||
id="path4860"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 85.413926,159.77038 c 10.51644,0.25679 18.285804,-4.12162 15.355614,-8.64185 -1.726544,-2.97119 -7.665254,-5.54072 -14.229774,-6.76724 -5.939694,-1.56622 -12.317253,-3.20964 -18.982831,-3.34994 -10.37728,-0.0826 -17.660386,4.40348 -14.411394,8.86848 1.728152,2.59895 6.823332,4.78524 12.397375,6.06483 6.172728,1.77211 12.898691,3.25099 19.87101,3.82572 z" />
|
||||
<path
|
||||
id="path4862"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 151.85967,114.89228 c 10.51644,0.25679 18.28579,-4.12161 15.3556,-8.64185 -1.72654,-2.97119 -7.66524,-5.5407 -14.22977,-6.76723 -5.93969,-1.56621 -12.31725,-3.20965 -18.98282,-3.34994 -10.37729,-0.0826 -17.66039,4.40347 -14.4114,8.86847 1.72815,2.59894 6.82333,4.78524 12.39737,6.06483 6.17273,1.77211 12.8987,3.25099 19.87102,3.82572 z" />
|
||||
<path
|
||||
id="path4864"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 211.5293,137.47227 c 10.51643,0.2568 18.28579,-4.12161 15.3556,-8.64185 -1.72653,-2.9712 -7.66524,-5.54071 -14.22977,-6.76723 -5.93969,-1.56622 -12.31725,-3.20965 -18.98282,-3.34994 -10.37729,-0.0826 -17.66039,4.40347 -14.41139,8.86847 1.72814,2.59894 6.82333,4.78525 12.39736,6.06483 6.17273,1.77211 12.89869,3.25099 19.87102,3.82572 z" />
|
||||
<path
|
||||
id="path4866"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 98.738576,126.66463 c 10.516444,0.25679 18.285794,-4.12162 15.355614,-8.64185 -1.72655,-2.9712 -7.66525,-5.54071 -14.229774,-6.76724 -5.9397,-1.56621 -12.31726,-3.20964 -18.982834,-3.34993 -10.377279,-0.0826 -17.660386,4.40347 -14.411393,8.86847 1.728152,2.59894 6.823331,4.78525 12.397375,6.06483 6.172722,1.77211 12.898692,3.25099 19.871012,3.82572 z" />
|
||||
<path
|
||||
id="path4868"
|
||||
style="fill:#261e14;fill-opacity:1;stroke-width:1.93035;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 25.499715,115.74797 c 10.516439,0.2568 18.285791,-4.12162 15.355611,-8.64185 -1.726544,-2.97119 -7.665251,-5.5407 -14.229776,-6.76723 -5.939691,-1.56621 -12.31725,-3.20964 -18.9828283,-3.34994 -10.37728,-0.0826 -17.6603847,4.40348 -14.411393,8.86847 1.728152,2.59894 6.823331,4.78524 12.397375,6.06484 6.1727263,1.7721 12.8986903,3.25098 19.8710113,3.82571 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
BIN
static/favicon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
200
static/land.svg
Normal file
|
@ -0,0 +1,200 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="land.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.2601823"
|
||||
inkscape:cx="88.267216"
|
||||
inkscape:cy="102.42537"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" /><defs
|
||||
id="defs2" /><g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"><rect
|
||||
style="fill:#b4d6e6;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect1761"
|
||||
width="263.37137"
|
||||
height="262.40781"
|
||||
x="-2.1541173"
|
||||
y="-8.1214228"
|
||||
ry="9.121026" /><ellipse
|
||||
style="fill:#e5e6e6;fill-opacity:1;stroke:none;stroke-width:2.69388;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="path2150"
|
||||
cx="205.9583"
|
||||
cy="34.787025"
|
||||
rx="68.309547"
|
||||
ry="68.827126" /><g
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-5"
|
||||
transform="matrix(1,0,0,1.1578663,-65.060921,-73.802227)"><path
|
||||
id="rect6046"
|
||||
style="fill:#574435;fill-opacity:1;stroke-width:5.65845;stroke-linecap:square"
|
||||
d="m 125.96197,8.0440415 c 7.03168,0 12.69259,3.0618065 12.69259,6.8650375 V 235.09093 c 0,3.80323 -5.66091,6.86503 -12.69259,6.86503 -7.03169,0 -12.6926,-3.0618 -12.6926,-6.86503 V 14.909079 c 0,-3.803231 5.66091,-6.8650375 12.6926,-6.8650375 z" /><path
|
||||
id="path6946"
|
||||
style="fill:#6c5442;fill-opacity:1;stroke-width:4.59286;stroke-linecap:square"
|
||||
d="m 124.21165,13.191143 c 4.83783,0 8.73256,2.931954 8.73256,6.573886 V 230.60884 c 0,3.64192 -3.89473,6.57387 -8.73256,6.57387 -4.83782,0 -8.73256,-2.93195 -8.73256,-6.57387 V 19.765029 c 0,-3.641932 3.89474,-6.573886 8.73256,-6.573886 z" /><path
|
||||
id="path6637"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 116.87359,191.22419 h 1.60091 c 0.34086,0 0.61529,1.1288 0.61529,2.53094 v 36.61307 c 0,1.40215 -0.27443,2.53094 -0.61529,2.53094 h -1.60091 c -0.34086,0 -0.61529,-1.12879 -0.61529,-2.53094 v -36.61307 c 0,-1.40214 0.27443,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path6641"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 124.49504,173.7509 h 1.60089 c 0.34087,0 0.6153,1.1288 0.6153,2.53094 v 36.61307 c 0,1.40214 -0.27443,2.53094 -0.6153,2.53094 h -1.60089 c -0.34088,0 -0.6153,-1.1288 -0.6153,-2.53094 v -36.61307 c 0,-1.40214 0.27442,-2.53094 0.6153,-2.53094 z" /><path
|
||||
id="path6643"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.66657,122.22438 h 1.60091 c 0.34085,0 0.61529,1.12881 0.61529,2.53094 v 36.61308 c 0,1.40213 -0.27444,2.53094 -0.61529,2.53094 h -1.60091 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53094 v -36.61308 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path6645"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 119.01657,61.305708 h 1.60091 c 0.34085,0 0.61528,1.128802 0.61528,2.53094 v 36.613072 c 0,1.40214 -0.27443,2.53094 -0.61528,2.53094 h -1.60091 c -0.34088,0 -0.61529,-1.1288 -0.61529,-2.53094 V 63.836648 c 0,-1.402138 0.27441,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path6647"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.91224,61.485677 h 1.6009 c 0.34087,0 0.61529,1.128803 0.61529,2.530941 v 36.613072 c 0,1.40214 -0.27442,2.53095 -0.61529,2.53095 h -1.6009 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53095 V 64.016618 c 0,-1.402138 0.27442,-2.530941 0.61529,-2.530941 z" /><path
|
||||
id="path6649"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 118.35423,129.93473 h 1.6009 c 0.34087,0 0.61529,1.12881 0.61529,2.53094 v 36.61309 c 0,1.40213 -0.27442,2.53093 -0.61529,2.53093 h -1.6009 c -0.34087,0 -0.61529,-1.1288 -0.61529,-2.53093 v -36.61309 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path6651"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 133.02071,192.45006 h 1.60091 c 0.34086,0 0.61528,1.12881 0.61528,2.53094 v 36.61307 c 0,1.40214 -0.27442,2.53095 -0.61528,2.53095 h -1.60091 c -0.34088,0 -0.61529,-1.12881 -0.61529,-2.53095 V 194.981 c 0,-1.40213 0.27441,-2.53094 0.61529,-2.53094 z" /></g><g
|
||||
inkscape:label="Layer 1"
|
||||
id="g2431"
|
||||
transform="matrix(1,0,0,1.1578663,52.47653,-74.901088)"><path
|
||||
id="path2413"
|
||||
style="fill:#574435;fill-opacity:1;stroke-width:5.65845;stroke-linecap:square"
|
||||
d="m 125.96197,8.0440415 c 7.03168,0 12.69259,3.0618065 12.69259,6.8650375 V 235.09093 c 0,3.80323 -5.66091,6.86503 -12.69259,6.86503 -7.03169,0 -12.6926,-3.0618 -12.6926,-6.86503 V 14.909079 c 0,-3.803231 5.66091,-6.8650375 12.6926,-6.8650375 z" /><path
|
||||
id="path2415"
|
||||
style="fill:#6c5442;fill-opacity:1;stroke-width:4.59286;stroke-linecap:square"
|
||||
d="m 124.21165,13.191143 c 4.83783,0 8.73256,2.931954 8.73256,6.573886 V 230.60884 c 0,3.64192 -3.89473,6.57387 -8.73256,6.57387 -4.83782,0 -8.73256,-2.93195 -8.73256,-6.57387 V 19.765029 c 0,-3.641932 3.89474,-6.573886 8.73256,-6.573886 z" /><path
|
||||
id="path2417"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 116.87359,191.22419 h 1.60091 c 0.34086,0 0.61529,1.1288 0.61529,2.53094 v 36.61307 c 0,1.40215 -0.27443,2.53094 -0.61529,2.53094 h -1.60091 c -0.34086,0 -0.61529,-1.12879 -0.61529,-2.53094 v -36.61307 c 0,-1.40214 0.27443,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path2419"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 124.49504,173.7509 h 1.60089 c 0.34087,0 0.6153,1.1288 0.6153,2.53094 v 36.61307 c 0,1.40214 -0.27443,2.53094 -0.6153,2.53094 h -1.60089 c -0.34088,0 -0.6153,-1.1288 -0.6153,-2.53094 v -36.61307 c 0,-1.40214 0.27442,-2.53094 0.6153,-2.53094 z" /><path
|
||||
id="path2421"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.66657,122.22438 h 1.60091 c 0.34085,0 0.61529,1.12881 0.61529,2.53094 v 36.61308 c 0,1.40213 -0.27444,2.53094 -0.61529,2.53094 h -1.60091 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53094 v -36.61308 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path2423"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 119.01657,61.305708 h 1.60091 c 0.34085,0 0.61528,1.128802 0.61528,2.53094 v 36.613072 c 0,1.40214 -0.27443,2.53094 -0.61528,2.53094 h -1.60091 c -0.34088,0 -0.61529,-1.1288 -0.61529,-2.53094 V 63.836648 c 0,-1.402138 0.27441,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path2425"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.91224,61.485677 h 1.6009 c 0.34087,0 0.61529,1.128803 0.61529,2.530941 v 36.613072 c 0,1.40214 -0.27442,2.53095 -0.61529,2.53095 h -1.6009 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53095 V 64.016618 c 0,-1.402138 0.27442,-2.530941 0.61529,-2.530941 z" /><path
|
||||
id="path2427"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 118.35423,129.93473 h 1.6009 c 0.34087,0 0.61529,1.12881 0.61529,2.53094 v 36.61309 c 0,1.40213 -0.27442,2.53093 -0.61529,2.53093 h -1.6009 c -0.34087,0 -0.61529,-1.1288 -0.61529,-2.53093 v -36.61309 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" /><path
|
||||
id="path2429"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 133.02071,192.45006 h 1.60091 c 0.34086,0 0.61528,1.12881 0.61528,2.53094 v 36.61307 c 0,1.40214 -0.27442,2.53095 -0.61528,2.53095 h -1.60091 c -0.34088,0 -0.61529,-1.12881 -0.61529,-2.53095 V 194.981 c 0,-1.40213 0.27441,-2.53094 0.61529,-2.53094 z" /></g><path
|
||||
id="rect6100"
|
||||
style="fill:#29442d;fill-opacity:1;stroke-width:9.93516;stroke-linecap:square"
|
||||
d="m 170.34651,175.11537 c -8.68616,-0.87158 -17.33138,-8.21066 -26.21082,-7.86944 -6.80076,0.26133 -13.9252,8.37053 -20.19079,7.24726 -14.88957,-2.66936 -27.877368,-13.42673 -40.117082,-10.39586 -9.511791,2.35537 -17.185154,13.53515 -25.878563,15.59563 -11.075293,2.62504 -22.827287,-3.87581 -31.526969,-0.71918 -8.997284,3.26461 -7.958834,15.20285 -14.622393,19.72963 -9.5719843,6.50257 -21.805032,12.09113 -25.222982,24.67769 -34.745395,78.11066 67.527796,52.88036 156.887609,52.88036 98.38358,-4.039 181.32608,28.80724 126.96779,-48.26574 -13.61727,-23.97306 -23.97867,-33.84793 -35.55232,-43.22295 -5.3217,-4.31074 -8.82416,-13.95626 -16.71756,-15.11887 -3.83591,-0.56498 -13.76894,10.07581 -18.22984,9.6618 -8.70613,-0.80801 -17.53048,-3.45695 -29.58608,-4.20033 z"
|
||||
sodipodi:nodetypes="csssssscccsssc" /><path
|
||||
id="path2480"
|
||||
style="fill:#314e33;fill-opacity:1;stroke-width:9.07017;stroke-linecap:square"
|
||||
d="m 168.31635,181.84194 c -8.20564,-0.76895 -16.3726,-7.24393 -24.76083,-6.94289 -6.42454,0.23057 -13.15485,7.38498 -19.07382,6.39397 -14.06588,-2.35507 -26.335184,-11.84586 -37.897791,-9.17184 -8.985594,2.07804 -16.234463,11.9415 -24.446949,13.75938 -10.462602,2.31597 -21.564471,-3.41946 -29.782882,-0.6345 -8.49955,2.88023 -7.518548,13.41285 -13.813476,17.40665 -9.0424575,5.73695 -20.5987673,10.66751 -23.8276348,21.77212 -32.8232632,68.91384 63.7921268,46.65418 148.2085128,46.65418 92.94096,-3.56345 171.29504,25.41545 119.94387,-42.58289 -12.86395,-21.15046 -22.65215,-29.86265 -33.58554,-38.13385 -5.02731,-3.80319 -8.33601,-12.31304 -15.79274,-13.33876 -3.62371,-0.49846 -13.00724,8.88948 -17.22136,8.52421 -8.2245,-0.71288 -16.56068,-3.04993 -27.94936,-3.70578 z"
|
||||
sodipodi:nodetypes="csssssscccsssc" /><path
|
||||
id="path6944"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 25.399922,231.73091 c -6.304208,-3.18723 -14.814575,4.74795 -19.4289311,9.07065 -4.8367258,4.53101 -13.6853578,12.85908 -6.9816057,16.11056 6.2713714,3.04176 14.2908758,-4.87473 18.8381118,-9.10237 4.886123,-4.54271 14.214938,-12.72058 7.572425,-16.07884 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1188"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 21.764508,209.96637 c -6.304207,-3.18723 -14.8145759,4.74795 -19.4289309,9.07065 -4.8367261,4.53101 -13.6853581,12.85909 -6.9816058,16.11056 6.2713711,3.04176 14.2908756,-4.87473 18.8381117,-9.10237 4.886123,-4.54271 14.214937,-12.72058 7.572425,-16.07884 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1190"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 39.164294,253.53887 c -6.304214,-3.18722 -14.814583,4.74795 -19.428938,9.07066 -4.836726,4.53101 -13.6853568,12.85909 -6.981605,16.11056 6.271371,3.04176 14.290875,-4.87473 18.838111,-9.10237 4.886123,-4.54271 14.214942,-12.72059 7.572432,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1192"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 59.913799,188.55718 c -6.304215,-3.18722 -14.814584,4.74795 -19.428939,9.07066 -4.836726,4.53101 -13.685357,12.85909 -6.981606,16.11056 6.271372,3.04176 14.290876,-4.87473 18.838113,-9.10237 4.886122,-4.54271 14.214941,-12.72059 7.572432,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1194"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 64.522244,213.19797 c -6.304215,-3.18722 -14.814584,4.74795 -19.428939,9.07066 -4.836726,4.53101 -13.685357,12.85909 -6.981606,16.11056 6.271371,3.04176 14.290876,-4.87473 18.838112,-9.10237 4.886123,-4.54271 14.214942,-12.72059 7.572433,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1196"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 101.45059,184.90607 c -6.304206,-3.18722 -14.814575,4.74795 -19.42893,9.07066 -4.836726,4.53101 -13.685357,12.85909 -6.981606,16.11056 6.271371,3.04176 14.290876,-4.87473 18.838112,-9.10237 4.886129,-4.54271 14.214934,-12.72059 7.572424,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1198"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 80.47407,236.15649 c -6.30421,-3.18722 -14.814579,4.74795 -19.428934,9.07066 -4.836726,4.53101 -13.685357,12.85909 -6.981606,16.11056 6.271371,3.04176 14.290876,-4.87473 18.838112,-9.10237 4.886129,-4.54271 14.214938,-12.72059 7.572428,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1200"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 117.35853,203.21038 c -6.3042,-3.18722 -14.81457,4.74795 -19.428933,9.07066 -4.836732,4.53101 -13.685357,12.85909 -6.981599,16.11056 6.271375,3.04176 14.290862,-4.87473 18.838112,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1202"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 137.81649,246.07272 c -6.30421,-3.18722 -14.81457,4.74795 -19.42894,9.07066 -4.83672,4.53101 -13.68535,12.85909 -6.98159,16.11056 6.27137,3.04176 14.29086,-4.87473 18.8381,-9.10237 4.88613,-4.54271 14.21494,-12.72059 7.57243,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1204"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 187.17238,204.42784 c -6.3042,-3.18722 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.9816,16.11056 6.27137,3.04176 14.29087,-4.87473 18.83811,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1206"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 153.9992,179.07364 c -6.30421,-3.18722 -14.81457,4.74796 -19.42894,9.07067 -4.83672,4.53101 -13.68535,12.85909 -6.98159,16.11056 6.27137,3.04176 14.29086,-4.87473 18.8381,-9.10237 4.88613,-4.54271 14.21494,-12.72059 7.57243,-16.07886 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1208"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 114.09473,231.27978 c -6.3042,-3.18722 -14.814569,4.74796 -19.428937,9.07067 -4.836728,4.53101 -13.685356,12.85909 -6.981596,16.11056 6.271371,3.04176 14.290873,-4.87473 18.838113,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07886 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1210"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 148.85963,211.07102 c -6.30421,-3.18722 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.9816,16.11056 6.27137,3.04176 14.29086,-4.87473 18.8381,-9.10237 4.88613,-4.54271 14.21494,-12.72059 7.57243,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1212"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 176.10326,239.17563 c -6.3042,-3.18722 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.98159,16.11056 6.27137,3.04176 14.29086,-4.87473 18.8381,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1214"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 219.77435,189.17761 c -6.30421,-3.18722 -14.81457,4.74795 -19.42894,9.07066 -4.83672,4.53101 -13.68535,12.85909 -6.98159,16.11056 6.27137,3.04176 14.29086,-4.87473 18.8381,-9.10237 4.88613,-4.54271 14.21494,-12.72059 7.57243,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1216"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 178.67385,183.04826 c -6.3042,-3.18722 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.9816,16.11056 6.27137,3.04176 14.29087,-4.87473 18.83811,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1218"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 209.15396,217.65371 c -6.3042,-3.18721 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.9816,16.11056 6.27137,3.04176 14.29086,-4.87473 18.83811,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1220"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 242.62479,231.7255 c -6.3042,-3.18721 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68535,12.85909 -6.98159,16.11056 6.27137,3.04176 14.29086,-4.87473 18.8381,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1222"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 202.30709,247.72068 c -6.3042,-3.18721 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.9816,16.11056 6.27137,3.04176 14.29086,-4.87473 18.83811,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /><path
|
||||
id="path1224"
|
||||
style="fill:#457d48;fill-opacity:1;stroke-width:0.88891;stroke-linecap:square"
|
||||
d="m 252.26309,251.0088 c -6.3042,-3.18721 -14.81457,4.74795 -19.42893,9.07066 -4.83673,4.53101 -13.68536,12.85909 -6.9816,16.11056 6.27138,3.04176 14.29087,-4.87473 18.83811,-9.10237 4.88612,-4.54271 14.21493,-12.72059 7.57242,-16.07885 z"
|
||||
sodipodi:nodetypes="aaaaa" /></g></svg>
|
After Width: | Height: | Size: 18 KiB |
135
static/miner.svg
Normal file
|
@ -0,0 +1,135 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="miner.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5981903"
|
||||
inkscape:cx="124.20299"
|
||||
inkscape:cy="100.42609"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="rect6046"
|
||||
style="fill:#574435;fill-opacity:1;stroke-width:5.19414;stroke-linecap:square"
|
||||
d="M 24.046096,56.769705 C 28.61024,52.205553 34.272018,50.518524 36.740637,52.987143 L 179.6573,195.90379 c 2.46861,2.46862 0.78158,8.13039 -3.78258,12.69455 -4.56417,4.56416 -10.22595,6.25121 -12.69455,3.78259 L 20.263501,69.464279 C 17.794882,66.99566 19.48194,61.333887 24.046096,56.769705 Z" />
|
||||
<path
|
||||
id="path6946"
|
||||
style="fill:#6c5442;fill-opacity:1;stroke-width:4.21599;stroke-linecap:square"
|
||||
d="m 26.250884,61.246731 c 3.140182,-3.140166 7.571267,-3.765086 9.935189,-1.401176 L 173.04154,196.70104 c 2.36392,2.36391 1.73899,6.79501 -1.40117,9.93517 -3.14015,3.14015 -7.57126,3.76508 -9.93517,1.40116 L 24.849725,71.181912 c -2.363913,-2.363926 -1.73899,-6.795021 1.401159,-9.935181 z" />
|
||||
<path
|
||||
id="path6637"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 137.04638,181.56826 1.03914,-1.03913 c 0.22124,-0.22125 1.13205,0.33331 2.04216,1.24342 l 23.76498,23.76498 c 0.91012,0.91011 1.46467,1.82092 1.24342,2.04217 l -1.03914,1.03913 c -0.22125,0.22126 -1.13204,-0.33331 -2.04216,-1.24342 L 138.2898,183.61043 c -0.91011,-0.91011 -1.46468,-1.82091 -1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path6641"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 130.6517,165.27965 1.03911,-1.03911 c 0.22126,-0.22125 1.13208,0.3333 2.04218,1.24342 l 23.76497,23.76497 c 0.91013,0.9101 1.46467,1.82092 1.24342,2.04218 l -1.03909,1.0391 c -0.22128,0.22127 -1.13209,-0.3333 -2.0422,-1.2434 l -23.76497,-23.76499 c -0.91011,-0.91009 -1.46468,-1.82091 -1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path6643"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 100.56339,128.47781 1.03914,-1.03913 c 0.22122,-0.22122 1.13207,0.33332 2.04217,1.24342 l 23.76498,23.76499 c 0.91009,0.91012 1.46465,1.82094 1.24342,2.04217 l -1.03913,1.03913 c -0.22127,0.22126 -1.13207,-0.33331 -2.04217,-1.24341 L 101.80681,130.52 c -0.91011,-0.91011 -1.46467,-1.82091 -1.24342,-2.04219 z" />
|
||||
<path
|
||||
id="path6645"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 54.109263,95.849203 1.039134,-1.03913 c 0.22124,-0.221229 1.132063,0.333326 2.04217,1.243419 l 23.764977,23.764978 c 0.910105,0.9101 1.464662,1.82095 1.243419,2.04217 l -1.039113,1.03913 c -0.22127,0.22127 -1.132073,-0.33333 -2.042169,-1.24343 L 55.35269,97.891368 c -0.9101,-0.910113 -1.46468,-1.820898 -1.243427,-2.042165 z" />
|
||||
<path
|
||||
id="path6647"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 61.29829,88.893807 1.039135,-1.039117 c 0.221238,-0.221256 1.132041,0.333304 2.04217,1.243419 l 23.764968,23.764961 c 0.910124,0.91012 1.464691,1.82093 1.243429,2.04219 l -1.039113,1.03911 c -0.221252,0.22125 -1.132073,-0.3333 -2.042168,-1.24342 L 62.54171,90.935977 c -0.910107,-0.910119 -1.464672,-1.820915 -1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path6649"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 98.225409,140.82516 1.039113,-1.03914 c 0.221252,-0.22124 1.132068,0.33332 2.042168,1.24342 l 23.76499,23.765 c 0.9101,0.91011 1.46467,1.82091 1.24341,2.04216 l -1.03911,1.03913 c -0.22126,0.22125 -1.13207,-0.33331 -2.04217,-1.24342 L 99.468829,142.86733 c -0.910124,-0.9101 -1.464682,-1.82092 -1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path6651"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 148.32293,171.8831 1.03912,-1.03912 c 0.22125,-0.22125 1.13206,0.33332 2.04217,1.24342 l 23.76498,23.76498 c 0.91009,0.91011 1.46467,1.82094 1.24343,2.04217 l -1.03913,1.03913 c -0.22127,0.22126 -1.13207,-0.33332 -2.04217,-1.24343 l -23.76498,-23.76498 c -0.91011,-0.91009 -1.46469,-1.82091 -1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="rect6100"
|
||||
style="fill:#676875;fill-opacity:1;stroke-width:5.62196;stroke-linecap:square"
|
||||
d="M 25.942102,72.930099 C 49.35491,43.311112 74.574583,20.789288 106.3294,39.09841 157.11569,61.04297 81.224538,57.468837 47.933828,88.878834 14.643145,120.28883 30.637995,190.85123 11.009389,138.71523 -4.3283533,106.74461 2.5292803,102.54906 25.942102,72.930099 Z"
|
||||
sodipodi:nodetypes="zczcz" />
|
||||
<path
|
||||
id="path6944"
|
||||
style="fill:#86899a;fill-opacity:1;stroke-width:4.92303;stroke-linecap:square"
|
||||
d="M 31.993986,73.322524 C 46.022049,56.414799 73.029591,27.273877 100.1302,42.047838 143.76772,59.244027 74.955098,55.308846 44.511426,84.179487 14.067762,113.05014 27.682557,178.11493 12.570741,133.20124 0.41017679,105.79205 17.965916,90.230253 31.993986,73.322524 Z"
|
||||
sodipodi:nodetypes="zczcz" />
|
||||
<path
|
||||
id="path5579"
|
||||
style="fill:#574435;fill-opacity:1;stroke-width:5.19414;stroke-linecap:square"
|
||||
d="M 225.95391,60.757621 C 221.38976,56.193469 215.72798,54.50644 213.25937,56.97506 L 70.342705,199.89171 c -2.468609,2.46862 -0.781574,8.13039 3.782582,12.69455 4.564166,4.56416 10.225945,6.25121 12.694554,3.78259 L 229.7365,73.452195 c 2.46862,-2.468619 0.78157,-8.130392 -3.78259,-12.694574 z" />
|
||||
<path
|
||||
id="path5581"
|
||||
style="fill:#6c5442;fill-opacity:1;stroke-width:4.21599;stroke-linecap:square"
|
||||
d="m 223.74912,65.234648 c -3.14018,-3.140167 -7.57127,-3.765086 -9.93519,-1.401177 L 76.958467,200.68896 c -2.363917,2.3639 -1.73899,6.795 1.401169,9.93516 3.140149,3.14015 7.571259,3.76509 9.935167,1.40117 L 225.15028,75.169828 c 2.36392,-2.363926 1.73899,-6.795021 -1.40116,-9.93518 z" />
|
||||
<path
|
||||
id="path5583"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 112.95363,185.55618 -1.03914,-1.03914 c -0.22124,-0.22124 -1.13205,0.33332 -2.04217,1.24342 l -23.764978,23.76498 c -0.910114,0.91012 -1.464662,1.82093 -1.24342,2.04217 l 1.039141,1.03913 c 0.221252,0.22127 1.132045,-0.3333 2.04216,-1.24342 l 23.764987,-23.76498 c 0.91011,-0.9101 1.46468,-1.8209 1.24342,-2.04216 z" />
|
||||
<path
|
||||
id="path5585"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 119.34831,169.26757 -1.03911,-1.03912 c -0.22126,-0.22125 -1.13208,0.33331 -2.04218,1.24342 l -23.764975,23.76498 c -0.910124,0.9101 -1.464672,1.82092 -1.24342,2.04217 l 1.039095,1.03911 c 0.221279,0.22127 1.132082,-0.3333 2.042196,-1.2434 l 23.764974,-23.76499 c 0.9101,-0.91009 1.46468,-1.82091 1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path5587"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 149.43661,132.46572 -1.03913,-1.03912 c -0.22122,-0.22122 -1.13207,0.33332 -2.04217,1.24342 l -23.76498,23.76499 c -0.91009,0.91011 -1.46465,1.82094 -1.24342,2.04217 l 1.03912,1.03913 c 0.22128,0.22126 1.13208,-0.33331 2.04218,-1.24341 l 23.76498,-23.76498 c 0.91012,-0.91011 1.46467,-1.82092 1.24342,-2.0422 z" />
|
||||
<path
|
||||
id="path5589"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 195.89074,99.83712 -1.03913,-1.039131 c -0.22124,-0.221229 -1.13206,0.333326 -2.04218,1.243421 l -23.76497,23.76498 c -0.9101,0.91009 -1.46466,1.82094 -1.24342,2.04217 l 1.03911,1.03913 c 0.22127,0.22127 1.13208,-0.33334 2.04217,-1.24343 l 23.76499,-23.76498 c 0.91011,-0.9101 1.46468,-1.82089 1.24343,-2.04216 z" />
|
||||
<path
|
||||
id="path5591"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 188.70171,92.881723 -1.03913,-1.039117 c -0.22124,-0.221255 -1.13204,0.333304 -2.04218,1.243419 l -23.76496,23.764965 c -0.91012,0.91012 -1.46469,1.82092 -1.24343,2.04218 l 1.03912,1.03912 c 0.22125,0.22125 1.13207,-0.3333 2.04217,-1.24342 l 23.76499,-23.764977 c 0.91011,-0.910119 1.46468,-1.820915 1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path5593"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 151.7746,144.81307 -1.03911,-1.03914 c -0.22126,-0.22123 -1.13207,0.33333 -2.04217,1.24342 l -23.76499,23.76501 c -0.9101,0.91011 -1.46467,1.82091 -1.24341,2.04216 l 1.03911,1.03912 c 0.22126,0.22125 1.13207,-0.3333 2.04217,-1.24341 l 23.76498,-23.76499 c 0.91012,-0.91009 1.46468,-1.82091 1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path5595"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.36841;stroke-linecap:square"
|
||||
d="m 101.67708,175.87102 -1.03912,-1.03912 c -0.22125,-0.22125 -1.132065,0.33332 -2.04217,1.24342 L 74.83081,199.8403 c -0.910096,0.91011 -1.464672,1.82093 -1.243429,2.04217 l 1.039122,1.03913 c 0.221271,0.22126 1.132073,-0.33333 2.042178,-1.24343 l 23.764979,-23.76498 c 0.91011,-0.9101 1.46468,-1.82091 1.24342,-2.04217 z" />
|
||||
<path
|
||||
id="path5597"
|
||||
style="fill:#676875;fill-opacity:1;stroke-width:5.62196;stroke-linecap:square"
|
||||
d="M 224.0579,76.918015 C 200.6451,47.299029 175.42542,24.777204 143.67061,43.086326 c -50.786297,21.94456 25.10486,18.370427 58.39556,49.780424 33.29068,31.40999 17.29584,101.97239 36.92444,49.8364 15.33775,-31.97062 8.48012,-36.16618 -14.93271,-65.785135 z"
|
||||
sodipodi:nodetypes="zczcz" />
|
||||
<path
|
||||
id="path5599"
|
||||
style="fill:#86899a;fill-opacity:1;stroke-width:4.92303;stroke-linecap:square"
|
||||
d="M 218.00602,77.31044 C 203.97796,60.402715 176.97041,31.261793 149.86981,46.035754 c -43.63752,17.196189 25.1751,13.261008 55.61876,42.13165 30.44367,28.870646 16.82888,93.935446 31.94069,49.021756 12.16057,-27.40919 -5.39517,-42.970991 -19.42324,-59.87872 z"
|
||||
sodipodi:nodetypes="zczcz" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
85
static/potatoplusplus.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="potatoplusplus.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5981902"
|
||||
inkscape:cx="174.88532"
|
||||
inkscape:cy="94.169017"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:#725942;fill-opacity:1;stroke-width:12;stroke-linecap:square"
|
||||
id="rect1134"
|
||||
width="250"
|
||||
height="250"
|
||||
x="0"
|
||||
y="0" />
|
||||
<path
|
||||
id="rect1150"
|
||||
style="fill:#c9986e;stroke-width:10.7283;stroke-linecap:square;fill-opacity:1"
|
||||
d="m 100.10374,53.246337 69.79251,-20 c 24.9546,-7.151082 54.00849,21.902811 46.85741,46.857407 l -20,69.792506 c -7.15108,24.9546 -21.90281,39.70633 -46.85741,46.85741 l -69.792506,20 C 55.149148,223.90474 26.095255,194.85085 33.246337,169.89625 l 20,-69.79251 C 60.397418,75.149147 75.149147,60.397418 100.10374,53.246337 Z"
|
||||
sodipodi:nodetypes="sssssssss" />
|
||||
<g
|
||||
aria-label="Potato++"
|
||||
transform="matrix(0.68922792,-0.72544942,0.68922792,0.72544942,0.56309843,4.5533416)"
|
||||
id="text236"
|
||||
style="font-weight:bold;font-size:49.2123px;font-family:Cantarell;-inkscape-font-specification:'Cantarell Bold';fill:#ffffff;stroke-width:4.46426;stroke-linecap:square">
|
||||
<path
|
||||
d="m -86.87336,189.93394 h 6.348387 V 161.3416 h 4.773593 c 4.183045,0 6.988147,2.55904 6.988147,6.3976 0,3.64171 -2.312979,5.70862 -6.348387,5.70862 h -7.775543 v 5.56099 h 6.64366 c 8.415303,0 14.074718,-4.8228 14.074718,-12.05701 0,-6.88972 -5.019655,-11.17119 -12.992047,-11.17119 H -86.87336 Z"
|
||||
id="path1490" />
|
||||
<path
|
||||
d="m -47.011407,190.42607 c 7.529482,0 12.647561,-5.11808 12.647561,-12.7952 0,-7.33263 -4.675168,-12.10623 -11.909376,-12.10623 -7.578695,0 -12.598349,5.11808 -12.598349,12.84441 0,7.28342 4.625956,12.05702 11.860164,12.05702 z m 0.541335,-5.26572 c -3.690922,0 -6.053112,-2.85431 -6.053112,-7.33263 0,-4.28147 2.165341,-6.98815 5.708626,-6.98815 3.690923,0 6.053113,2.90353 6.053113,7.38185 0,4.28147 -2.165341,6.93893 -5.708627,6.93893 z"
|
||||
id="path1492" />
|
||||
<path
|
||||
d="m -19.304849,190.27843 c 1.673219,0 3.395649,-0.29527 4.970442,-0.83661 l -1.279519,-4.47832 c -0.688972,0.29527 -1.574794,0.44291 -2.312978,0.44291 -2.263766,0 -3.690923,-1.32873 -3.690923,-3.34644 l 0,-22.98214 h -6.200749 l 0,23.32663 c 0,4.87202 3.198799,7.87397 8.513727,7.87397 z M -31.1158,171.03642 h 15.551086 v -5.01965 H -31.1158 Z"
|
||||
id="path1494" />
|
||||
<path
|
||||
d="m 5.1044225,189.93394 h 4.478319 l 0,-14.36999 c 0,-6.44681 -3.690922,-10.03931 -10.7282811,-10.03931 -3.444861,0 -7.0865711,0.88582 -9.8916724,2.31298 l 1.4763692,4.3799 c 2.5098272,-0.98425 4.8720176,-1.47637 7.0865711,-1.47637 3.8385593,0 5.9054759,1.47637 5.9054759,4.33068 l 0,10.28537 z m -8.366091,0.49213 c 5.265716,0 9.104276,-3.00195 10.236158,-8.16925 l -2.017704,-0.93503 c -0.8366091,2.55904 -3.2480118,4.18305 -6.1515374,4.18305 -2.4114027,0 -4.0354086,-1.23031 -4.0354086,-3.00195 0,-2.31298 2.8051011,-3.24802 9.694823,-3.24802 v -3.49407 c -11.0727674,0 -15.9939975,2.31298 -15.9939975,7.57869 0,4.28147 3.248012,7.08658 8.2676665,7.08658 z"
|
||||
id="path1496" />
|
||||
<path
|
||||
d="m 25.67517,190.27843 c 1.673218,0 3.395649,-0.29527 4.970442,-0.83661 l -1.27952,-4.47832 c -0.688972,0.29527 -1.574793,0.44291 -2.312978,0.44291 -2.263765,0 -3.690922,-1.32873 -3.690922,-3.34644 l 0,-22.98214 h -6.20075 l 0,23.32663 c 0,4.87202 3.1988,7.87397 8.513728,7.87397 z M 13.864218,171.03642 h 15.551087 v -5.01965 H 13.864218 Z"
|
||||
id="path1498" />
|
||||
<path
|
||||
d="m 45.458486,190.42607 c 7.529481,0 12.64756,-5.11808 12.64756,-12.7952 0,-7.33263 -4.675168,-12.10623 -11.909376,-12.10623 -7.578694,0 -12.598349,5.11808 -12.598349,12.84441 0,7.28342 4.625957,12.05702 11.860165,12.05702 z m 0.541335,-5.26572 c -3.690923,0 -6.053113,-2.85431 -6.053113,-7.33263 0,-4.28147 2.165341,-6.98815 5.708627,-6.98815 3.690922,0 6.053113,2.90353 6.053113,7.38185 0,4.28147 -2.165342,6.93893 -5.708627,6.93893 z"
|
||||
id="path1500" />
|
||||
<path
|
||||
d="m 71.639472,185.40641 h 6.102325 v -23.37584 h -6.102325 z m -8.661365,-8.75979 H 86.35395 v -5.95469 H 62.978107 Z"
|
||||
id="path1502" />
|
||||
<path
|
||||
d="m 100.67473,185.40641 h 6.10233 v -23.37584 h -6.10233 z m -8.661359,-8.75979 h 23.375839 v -5.95469 H 92.013371 Z"
|
||||
id="path1504" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
89
static/research.svg
Normal file
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="hammer.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.1963805"
|
||||
inkscape:cx="48.96163"
|
||||
inkscape:cy="104.64962"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="rect6046"
|
||||
style="fill:#574435;fill-opacity:1;stroke-width:5.65845;stroke-linecap:square"
|
||||
d="m 125.96197,8.0440415 c 7.03168,0 12.69259,3.0618065 12.69259,6.8650375 V 235.09093 c 0,3.80323 -5.66091,6.86503 -12.69259,6.86503 -7.03169,0 -12.6926,-3.0618 -12.6926,-6.86503 V 14.909079 c 0,-3.803231 5.66091,-6.8650375 12.6926,-6.8650375 z" />
|
||||
<path
|
||||
id="path6946"
|
||||
style="fill:#6c5442;fill-opacity:1;stroke-width:4.59286;stroke-linecap:square"
|
||||
d="m 124.21165,13.191143 c 4.83783,0 8.73256,2.931954 8.73256,6.573886 V 230.60884 c 0,3.64192 -3.89473,6.57387 -8.73256,6.57387 -4.83782,0 -8.73256,-2.93195 -8.73256,-6.57387 V 19.765029 c 0,-3.641932 3.89474,-6.573886 8.73256,-6.573886 z" />
|
||||
<path
|
||||
id="path6637"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 116.87359,191.22419 h 1.60091 c 0.34086,0 0.61529,1.1288 0.61529,2.53094 v 36.61307 c 0,1.40215 -0.27443,2.53094 -0.61529,2.53094 h -1.60091 c -0.34086,0 -0.61529,-1.12879 -0.61529,-2.53094 v -36.61307 c 0,-1.40214 0.27443,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6641"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 124.49504,173.7509 h 1.60089 c 0.34087,0 0.6153,1.1288 0.6153,2.53094 v 36.61307 c 0,1.40214 -0.27443,2.53094 -0.6153,2.53094 h -1.60089 c -0.34088,0 -0.6153,-1.1288 -0.6153,-2.53094 v -36.61307 c 0,-1.40214 0.27442,-2.53094 0.6153,-2.53094 z" />
|
||||
<path
|
||||
id="path6643"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.66657,122.22438 h 1.60091 c 0.34085,0 0.61529,1.12881 0.61529,2.53094 v 36.61308 c 0,1.40213 -0.27444,2.53094 -0.61529,2.53094 h -1.60091 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53094 v -36.61308 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6645"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 119.01657,61.305708 h 1.60091 c 0.34085,0 0.61528,1.128802 0.61528,2.53094 v 36.613072 c 0,1.40214 -0.27443,2.53094 -0.61528,2.53094 h -1.60091 c -0.34088,0 -0.61529,-1.1288 -0.61529,-2.53094 V 63.836648 c 0,-1.402138 0.27441,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6647"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.91224,61.485677 h 1.6009 c 0.34087,0 0.61529,1.128803 0.61529,2.530941 v 36.613072 c 0,1.40214 -0.27442,2.53095 -0.61529,2.53095 h -1.6009 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53095 V 64.016618 c 0,-1.402138 0.27442,-2.530941 0.61529,-2.530941 z" />
|
||||
<path
|
||||
id="path6649"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 118.35423,129.93473 h 1.6009 c 0.34087,0 0.61529,1.12881 0.61529,2.53094 v 36.61309 c 0,1.40213 -0.27442,2.53093 -0.61529,2.53093 h -1.6009 c -0.34087,0 -0.61529,-1.1288 -0.61529,-2.53093 v -36.61309 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6651"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 133.02071,192.45006 h 1.60091 c 0.34086,0 0.61528,1.12881 0.61528,2.53094 v 36.61307 c 0,1.40214 -0.27442,2.53095 -0.61528,2.53095 h -1.60091 c -0.34088,0 -0.61529,-1.12881 -0.61529,-2.53095 V 194.981 c 0,-1.40213 0.27441,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="rect6100"
|
||||
style="fill:#676875;fill-opacity:1;stroke-width:3.81116;stroke-linecap:square"
|
||||
d="m 96.724557,26.090899 c 29.032803,-4.463768 53.061833,-2.527468 68.703393,22.174553 27.05828,35.8861 -10.84456,24.294635 -39.46598,24.294635 C 93.626614,70.704462 73.759145,85.794889 75.451866,50.385534 74.334048,27.043143 78.695996,27.750664 96.724557,26.090899 Z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path6944"
|
||||
style="fill:#86899a;fill-opacity:1;stroke-width:3.18774;stroke-linecap:square"
|
||||
d="m 95.43976,28.114702 c 24.28367,-3.733592 44.38208,-2.11403 57.46502,18.547286 22.63214,30.015926 -9.07062,20.320569 -33.01021,20.320569 C 92.848568,65.430471 76.230979,78.052436 77.646809,48.435272 76.711841,28.911182 80.360271,29.502967 95.43976,28.114702 Z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
71
static/scientist.svg
Normal file
|
@ -0,0 +1,71 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="scientist.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.5981903"
|
||||
inkscape:cx="124.20299"
|
||||
inkscape:cy="100.42609"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="path6303"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.84078;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 136.03516,19.203125 c -22.94314,0.08217 -45.887412,0.233141 -68.826176,0.697266 -9.921406,1.822818 -18.308699,9.45706 -21.715343,18.860872 -4.243866,10.891097 -2.599092,23.70848 3.781787,33.433407 12.298165,21.957896 24.596329,43.91579 36.894494,65.87369 -11.015548,22.74358 -22.511525,45.28918 -31.966797,68.74414 -1.979607,13.08149 4.046921,27.12265 15.152344,34.40625 6.514649,3.50863 14.102133,4.28283 21.388672,3.99219 26.026409,-0.17568 52.060459,-0.19436 78.074219,-1.10742 10.89765,-2.67018 19.58514,-12.1622 21.78423,-23.0955 2.49134,-10.63567 -0.0309,-22.13458 -6.06981,-31.15169 -10.18736,-18.0042 -20.37472,-36.00839 -30.56208,-54.01258 12.2657,-25.32477 24.62666,-50.605583 36.29688,-76.210938 2.83842,-13.098365 -2.46763,-27.687221 -13.32994,-35.62453 -5.52781,-3.676344 -12.30038,-5.075006 -18.87084,-4.870833 -7.34388,0.02189 -14.68776,0.04378 -22.03164,0.06568 z" />
|
||||
<path
|
||||
id="path5833"
|
||||
style="fill:#cc8edd;stroke-width:1.84078;stroke-linecap:round;stroke-linejoin:round;fill-opacity:1"
|
||||
d="m 156.64547,30.865526 c -28.90301,0.07451 -57.808445,-0.0339 -86.708823,0.47367 -5.734372,0.513085 -10.816516,5.162552 -13.369588,11.122337 -2.726161,6.314577 -2.341681,14.316107 0.984304,20.221408 8.029163,15.115443 16.581602,29.831496 24.863374,44.753879 5.669082,10.09537 11.338165,20.19075 17.007247,30.28613 -11.39088,23.4312 -23.124361,46.6555 -33.57202,70.69922 -1.555593,9.83648 3.64322,20.49545 11.648571,23.80645 5.666133,1.91317 11.608706,1.03797 17.412545,1.19489 23.70654,-0.0674 47.41731,-0.0207 71.11722,-0.77869 5.86482,-0.98921 10.79079,-6.33627 12.80311,-12.79812 2.17534,-6.90465 0.93491,-14.93319 -2.66381,-20.85761 -2.87846,-5.18658 -5.86942,-10.28514 -8.74099,-15.47721 -8.90254,-15.77404 -17.80508,-31.54809 -26.70762,-47.32214 12.75344,-26.23464 25.61061,-52.402141 38.02436,-78.863277 2.19666,-9.623677 -2.32236,-20.649038 -10.04663,-24.644509 -3.77664,-1.989464 -8.00865,-1.825862 -12.05125,-1.816428 z" />
|
||||
<path
|
||||
id="rect6418"
|
||||
style="fill:#ad57c3;stroke-width:1.71153;stroke-linecap:round;stroke-linejoin:round;fill-opacity:1"
|
||||
d="m 95.56171,43.615219 h 53.19895 c 5.17282,0 9.33721,4.164395 9.33721,9.337208 v 6.364569 c 0,5.172813 -4.16439,9.337207 -9.33721,9.337207 H 95.56171 c -5.172813,0 -9.337207,-4.164394 -9.337207,-9.337207 v -6.364569 c 0,-5.172813 4.164394,-9.337208 9.337207,-9.337208 z" />
|
||||
<path
|
||||
id="path6421"
|
||||
style="fill:#ad57c3;fill-opacity:1;stroke-width:1.20011;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 101.40932,79.036792 h 26.15632 c 2.54333,0 4.59083,4.164395 4.59083,9.337208 v 6.364569 c 0,5.172813 -2.0475,9.337211 -4.59083,9.337211 h -26.15632 c -2.543318,0 -4.590826,-4.164398 -4.590826,-9.337211 V 88.374 c 0,-5.172813 2.047508,-9.337208 4.590826,-9.337208 z" />
|
||||
<path
|
||||
id="path6423"
|
||||
style="fill:#ad57c3;fill-opacity:1;stroke-width:1.20011;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 106.26005,150.07368 h 26.15632 c 2.54333,0 4.59083,4.16439 4.59083,9.3372 v 6.36457 c 0,5.17282 -2.0475,9.33721 -4.59083,9.33721 h -26.15632 c -2.54332,0 -4.59083,-4.16439 -4.59083,-9.33721 v -6.36457 c 0,-5.17281 2.04751,-9.3372 4.59083,-9.3372 z" />
|
||||
<path
|
||||
id="path6425"
|
||||
style="fill:#ad57c3;fill-opacity:1;stroke-width:1.20011;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 89.022493,194.42618 h 26.156317 c 2.54333,0 4.59083,4.16439 4.59083,9.3372 v 6.36457 c 0,5.17282 -2.0475,9.33721 -4.59083,9.33721 H 89.022493 c -2.54332,0 -4.59083,-4.16439 -4.59083,-9.33721 v -6.36457 c 0,-5.17281 2.04751,-9.3372 4.59083,-9.3372 z" />
|
||||
<path
|
||||
id="path6427"
|
||||
style="fill:#ad57c3;fill-opacity:1;stroke-width:1.20011;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 135.85911,190.39207 h 26.15632 c 2.54333,0 4.59083,4.16439 4.59083,9.3372 v 6.36457 c 0,5.17282 -2.0475,9.33721 -4.59083,9.33721 h -26.15632 c -2.54332,0 -4.59083,-4.16439 -4.59083,-9.33721 v -6.36457 c 0,-5.17281 2.04751,-9.3372 4.59083,-9.3372 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
103
static/stone.svg
Normal file
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="stone.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.2601823"
|
||||
inkscape:cx="86.497447"
|
||||
inkscape:cy="105.52246"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="rect6100"
|
||||
style="fill:#676875;fill-opacity:1;stroke-width:8.10529;stroke-linecap:square"
|
||||
d="M 149.94846,75.606263 C 84.120407,66.094202 34.942844,70.220358 25.016851,122.8591 1.3959785,199.33054 70.924098,174.62972 131.67335,174.62972 198.5572,170.67548 254.94379,202.83241 217.98953,127.37688 198.36973,77.635446 189.77805,79.143137 149.94846,75.606263 Z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path6944"
|
||||
style="fill:#86899a;fill-opacity:1;stroke-width:6.77945;stroke-linecap:square"
|
||||
d="M 154.5822,79.918883 C 99.52219,71.96279 58.388997,75.413994 50.086692,119.4422 c -19.757018,63.9624 38.397804,43.30209 89.209838,43.30209 55.94312,-3.30742 103.10611,23.58935 72.19675,-39.52331 C 195.08283,81.616141 187.89655,82.877205 154.5822,79.918883 Z"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
id="path2132"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.791319;stroke-linecap:square"
|
||||
d="m 164.1034,95.507869 c 7.50179,-4.696675 17.3592,7.363851 21.96111,14.924151 5.13285,8.43256 12.08009,24.45989 3.53544,29.4039 -7.69015,4.44959 -16.81115,-8.31347 -21.35715,-15.94702 -4.89177,-8.21416 -12.24272,-23.30775 -4.1394,-28.381031 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2497"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.173974;stroke-linecap:square"
|
||||
d="m 152.59564,118.60095 c 1.67488,-1.31669 4.48522,1.04669 5.77212,2.74456 1.10473,1.45753 2.40728,4.33026 0.92924,5.4074 -1.70611,1.24335 -4.34009,-1.24878 -5.61338,-2.93266 -1.07188,-1.41753 -2.48511,-4.12096 -1.08798,-5.2193 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2550"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.443018;stroke-linecap:square"
|
||||
d="m 131.53218,94.488903 c 2.72093,-4.83921 11.85093,-2.056108 16.63797,0.755593 3.88461,2.281648 9.4619,7.650614 7.11076,11.493554 -2.86516,4.68311 -11.67938,1.43792 -16.41568,-1.33843 -3.78038,-2.216 -9.4807,-7.091094 -7.33305,-10.910717 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2552"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.276886;stroke-linecap:square"
|
||||
d="m 195.92301,100.43144 c 2.78861,-1.138211 4.65398,4.15522 5.77212,6.95194 1.69882,4.24911 5.21615,12.09585 0.92924,13.69688 -2.90745,1.08585 -4.50667,-4.52882 -5.61338,-7.42839 -1.57673,-4.13103 -5.18181,-11.54948 -1.08798,-13.22043 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2554"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.173974;stroke-linecap:square"
|
||||
d="m 176.67594,89.293911 c 1.67488,-1.316687 4.48522,1.046685 5.77212,2.74456 1.10473,1.457531 2.40728,4.33026 0.92924,5.4074 -1.70611,1.24335 -4.34009,-1.248778 -5.61338,-2.93266 -1.07188,-1.417526 -2.48511,-4.120964 -1.08798,-5.2193 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2556"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.173974;stroke-linecap:square"
|
||||
d="m 151.7544,84.420492 c 1.67488,-1.316687 4.48522,1.046685 5.77212,2.74456 1.10473,1.457532 2.40728,4.330261 0.92924,5.407402 -1.70611,1.24335 -4.34009,-1.248779 -5.61338,-2.932662 -1.07188,-1.417526 -2.48511,-4.120964 -1.08798,-5.2193 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2558"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.173974;stroke-linecap:square"
|
||||
d="m 132.56837,80.0025 c 1.67488,-1.316687 4.48522,1.046685 5.77212,2.74456 1.10473,1.457532 2.40728,4.330261 0.92924,5.407402 -1.70611,1.24335 -4.34009,-1.248779 -5.61338,-2.932662 -1.07188,-1.417526 -2.48511,-4.120964 -1.08798,-5.2193 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2560"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.295347;stroke-linecap:square"
|
||||
d="m 192.6313,139.80834 c 2.79976,-1.77012 6.52219,2.70771 8.25644,5.52983 1.91551,3.11708 4.48791,9.04899 1.32919,10.89503 -2.86904,1.67674 -6.31617,-3.06144 -8.02938,-5.90884 -1.82686,-3.03629 -4.55136,-8.62239 -1.55625,-10.51602 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2562"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.173974;stroke-linecap:square"
|
||||
d="m 159.00615,139.76399 c 1.67488,-1.31669 4.48522,1.04669 5.77212,2.74456 1.10473,1.45753 2.40728,4.33027 0.92924,5.40741 -1.70611,1.24335 -4.34009,-1.24879 -5.61338,-2.93267 -1.07188,-1.41753 -2.48511,-4.12096 -1.08798,-5.2193 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
<path
|
||||
id="path2564"
|
||||
style="fill:#a9adc3;fill-opacity:1;stroke-width:0.27786;stroke-linecap:square"
|
||||
d="m 110.43363,85.636609 c 2.95413,-4.024656 10.81362,-0.359524 14.72379,2.74456 1.54139,1.223636 3.6076,3.876923 2.37035,5.40741 -3.06291,3.788839 -10.41701,-0.0151 -14.31887,-2.93267 -1.57805,-1.17997 -3.9412,-3.630849 -2.77527,-5.2193 z"
|
||||
sodipodi:nodetypes="aaaaa" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6 KiB |
79
static/wood.svg
Normal file
|
@ -0,0 +1,79 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="250"
|
||||
height="250"
|
||||
viewBox="0 0 250 250.00001"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="wood.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.1963805"
|
||||
inkscape:cx="66.32502"
|
||||
inkscape:cy="103.71106"
|
||||
inkscape:window-width="1918"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="22"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<path
|
||||
id="rect6046"
|
||||
style="fill:#574435;fill-opacity:1;stroke-width:5.65845;stroke-linecap:square"
|
||||
d="m 125.96197,8.0440415 c 7.03168,0 12.69259,3.0618065 12.69259,6.8650375 V 235.09093 c 0,3.80323 -5.66091,6.86503 -12.69259,6.86503 -7.03169,0 -12.6926,-3.0618 -12.6926,-6.86503 V 14.909079 c 0,-3.803231 5.66091,-6.8650375 12.6926,-6.8650375 z" />
|
||||
<path
|
||||
id="path6946"
|
||||
style="fill:#6c5442;fill-opacity:1;stroke-width:4.59286;stroke-linecap:square"
|
||||
d="m 124.21165,13.191143 c 4.83783,0 8.73256,2.931954 8.73256,6.573886 V 230.60884 c 0,3.64192 -3.89473,6.57387 -8.73256,6.57387 -4.83782,0 -8.73256,-2.93195 -8.73256,-6.57387 V 19.765029 c 0,-3.641932 3.89474,-6.573886 8.73256,-6.573886 z" />
|
||||
<path
|
||||
id="path6637"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 116.87359,191.22419 h 1.60091 c 0.34086,0 0.61529,1.1288 0.61529,2.53094 v 36.61307 c 0,1.40215 -0.27443,2.53094 -0.61529,2.53094 h -1.60091 c -0.34086,0 -0.61529,-1.12879 -0.61529,-2.53094 v -36.61307 c 0,-1.40214 0.27443,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6641"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 124.49504,173.7509 h 1.60089 c 0.34087,0 0.6153,1.1288 0.6153,2.53094 v 36.61307 c 0,1.40214 -0.27443,2.53094 -0.6153,2.53094 h -1.60089 c -0.34088,0 -0.6153,-1.1288 -0.6153,-2.53094 v -36.61307 c 0,-1.40214 0.27442,-2.53094 0.6153,-2.53094 z" />
|
||||
<path
|
||||
id="path6643"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.66657,122.22438 h 1.60091 c 0.34085,0 0.61529,1.12881 0.61529,2.53094 v 36.61308 c 0,1.40213 -0.27444,2.53094 -0.61529,2.53094 h -1.60091 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53094 v -36.61308 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6645"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 119.01657,61.305708 h 1.60091 c 0.34085,0 0.61528,1.128802 0.61528,2.53094 v 36.613072 c 0,1.40214 -0.27443,2.53094 -0.61528,2.53094 h -1.60091 c -0.34088,0 -0.61529,-1.1288 -0.61529,-2.53094 V 63.836648 c 0,-1.402138 0.27441,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6647"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 129.91224,61.485677 h 1.6009 c 0.34087,0 0.61529,1.128803 0.61529,2.530941 v 36.613072 c 0,1.40214 -0.27442,2.53095 -0.61529,2.53095 h -1.6009 c -0.34087,0 -0.61529,-1.12881 -0.61529,-2.53095 V 64.016618 c 0,-1.402138 0.27442,-2.530941 0.61529,-2.530941 z" />
|
||||
<path
|
||||
id="path6649"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 118.35423,129.93473 h 1.6009 c 0.34087,0 0.61529,1.12881 0.61529,2.53094 v 36.61309 c 0,1.40213 -0.27442,2.53093 -0.61529,2.53093 h -1.6009 c -0.34087,0 -0.61529,-1.1288 -0.61529,-2.53093 v -36.61309 c 0,-1.40213 0.27442,-2.53094 0.61529,-2.53094 z" />
|
||||
<path
|
||||
id="path6651"
|
||||
style="fill:#af9885;fill-opacity:1;stroke-width:1.49073;stroke-linecap:square"
|
||||
d="m 133.02071,192.45006 h 1.60091 c 0.34086,0 0.61528,1.12881 0.61528,2.53094 v 36.61307 c 0,1.40214 -0.27442,2.53095 -0.61528,2.53095 h -1.60091 c -0.34088,0 -0.61529,-1.12881 -0.61529,-2.53095 V 194.981 c 0,-1.40213 0.27441,-2.53094 0.61529,-2.53094 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
13
svelte.config.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
import adapter from '@sveltejs/adapter-auto';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
kit: {
|
||||
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
|
||||
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
|
||||
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
||||
adapter: adapter()
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
6
vite.config.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
import { defineConfig } from 'vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit()]
|
||||
});
|