Compare commits
No commits in common. "main" and "dark_mode" have entirely different histories.
12
flake.lock
|
@ -5,11 +5,11 @@
|
|||
"systems": "systems"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1689068808,
|
||||
"narHash": "sha256-6ixXo3wt24N/melDWjq70UuHQLxGV8jZvooRanIHXw0=",
|
||||
"lastModified": 1681037374,
|
||||
"narHash": "sha256-XL6X3VGbEFJZDUouv2xpKg2Aljzu/etPLv5e1FPt1q0=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "919d646de7be200f3bf08cb76ae1f09402b6f9b4",
|
||||
"rev": "033b9f258ca96a10e543d4442071f614dc3f8412",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -20,11 +20,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1690261429,
|
||||
"narHash": "sha256-YMFya0UTTfz8MSr8PPvoNttGmGXOuKReH3EyEp9mQMM=",
|
||||
"lastModified": 1681157730,
|
||||
"narHash": "sha256-6EFItq6FGMkJYLf61y4DYtZmbUtS3aP4mE0BgCEMRVA=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "70eb2b8d15ea2f2fb0b59b3235ce0d32860ef1c1",
|
||||
"rev": "90a9855eceb801d8f2db4ab116fe557b5c28cf34",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
40
future.md
|
@ -1,40 +0,0 @@
|
|||
# Ideas for future blog posts
|
||||
|
||||
## The new treatment
|
||||
|
||||
Hi there,
|
||||
|
||||
Those of you following me on social media might know that I was hospitalised again. The hospital
|
||||
stay was originally scheduled to happen later, but since my mental state deteriorated too quickly I
|
||||
was hospitalised earlier and on a different ward.
|
||||
|
||||
The reason behind all this was a new treatment having been approved last year. All studies yielded
|
||||
very good results even for patients with chronic depression like me, so I wanted to give it a shot.
|
||||
I did not expect a cure, but hoped a little for some long-term relief. In the very least I didn't
|
||||
want to be able to scold myself for a missed opportunity.
|
||||
|
||||
The treatment itself is a new form medication, a nasal spray containing Esketamine, which I
|
||||
received two times a week during my hospitalisation and still receive once a week, but now as an
|
||||
out-patient.
|
||||
|
||||
So far I can confirm its overwhelmingly positive effects. I feel more energetic than I have felt
|
||||
in a very long time, probably ever. My regular antidepressants have been reduced -- a fact I was
|
||||
not thrilled about in the beginning -- due to interference with the Esketamine. I still remain on
|
||||
the reduced dosage and feel fine. This is also a huge win.
|
||||
|
||||
Some little damper I have with this treatment: The day I receive the treatment is usually lost,
|
||||
since I get very tired as a side-effect of the drug, but this is outweighed by the positive changes
|
||||
I have from it.
|
||||
|
||||
In the coming weeks the drug will be slowly faded out and I will test how long I can go without it.
|
||||
If the need arises in the future I may repeat this treatment. I hope this will not happen too soon.
|
||||
|
||||
SO far for this bigger update.
|
||||
|
||||
Keep calm and wash hands
|
||||
|
||||
## What is Cyberpunk?
|
||||
|
||||
## My new camera - a testimonial
|
||||
|
||||
## POSSE
|
|
@ -15,9 +15,7 @@ I also actively maintain a presence at following platforms, so check them out
|
|||
or get in touch:
|
||||
|
||||
* [Mastodon][mastodon]
|
||||
* [Pixelfed][pixelfed]
|
||||
* [BlueSky][bluesky]
|
||||
* [Ko-Fi][ko-fi]
|
||||
* [Twitter][twitter]
|
||||
* [My Gitea][gitea]
|
||||
|
||||
|
||||
|
@ -26,8 +24,5 @@ or get in touch:
|
|||
[matrix]: https://en.wikipedia.org/wiki/Matrix_(protocol)
|
||||
|
||||
[mastodon]: https://chaos.social/@nek0
|
||||
[bluesky]: https://bsky.app/profile/nek0.bsky.social
|
||||
[pixelfed]: https://pixelfed.social/nek0
|
||||
[twitter]: https://twitter.com/nek0_lynx
|
||||
[ko-fi]: https://ko-fi.com/nek0_lynx
|
||||
[twitter]: https://twitter.com/rys_ostrovid
|
||||
[gitea]: https://gitea.nek0.eu/nek0
|
||||
|
|
|
@ -1,38 +1,36 @@
|
|||
:root {
|
||||
--background-color: #2e4e4eff;
|
||||
--text-color: gainsboro;
|
||||
--link-color: chartreuse;
|
||||
--background-color: darkslategrey;
|
||||
--text-color: silver;
|
||||
--link-color: limegreen;
|
||||
--link-visited-color: lightskyblue;
|
||||
--box-color: #161525e5;
|
||||
--border-radius: 10px;
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--text-color);
|
||||
font-size: 12pt;
|
||||
font-family: 'Courier Prime';
|
||||
font-family: 'Tippa';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
grid-template-columns: [leftcol] 1fr [maincol] auto [rightcol] 1fr;
|
||||
grid-template-rows: [headerrow] 1fr [mainrow] auto [rule] 125px [plugrow] 0.6fr [extrasrow] 0.6fr;
|
||||
grid-template-rows: [headerrow] 1fr [mainrow] auto [plugrow] 1fr [extrasrow] 1fr;
|
||||
grid-template-areas:
|
||||
"inlinks logo outlinks"
|
||||
"main main main"
|
||||
"rule rule rule"
|
||||
"plugs plugs plugs"
|
||||
"extras extras extras";
|
||||
justify-content: stretch;
|
||||
align-content: stretch;
|
||||
min-height: 100vh;
|
||||
background-color: var(--background-color);
|
||||
box-shadow: inset 0 0 50vw #203037ff;
|
||||
box-shadow: inset 0 0 25vh #000000;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body::after {
|
||||
content: "";
|
||||
opacity: 0.1;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
@ -65,9 +63,9 @@ img, video {
|
|||
}
|
||||
|
||||
hr {
|
||||
color: var(--link-color);
|
||||
color: black;
|
||||
border: 0;
|
||||
background-color: var(--link-color);
|
||||
background-color: black;
|
||||
height: 3px;
|
||||
margin: 20px 10% 20px;
|
||||
}
|
||||
|
@ -89,16 +87,15 @@ header a:visited {
|
|||
article {
|
||||
text-align: left;
|
||||
padding: 0 20px 5px;
|
||||
margin: 5em auto 0;
|
||||
margin: 0 auto 0;
|
||||
overflow: auto;
|
||||
grid-area: main;
|
||||
max-width: 80em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
article + hr {
|
||||
article hr {
|
||||
margin-top: 100px;
|
||||
grid-area: rule;
|
||||
}
|
||||
|
||||
article a:hover, .extras a:hover{
|
||||
|
@ -107,34 +104,22 @@ article a:hover, .extras a:hover{
|
|||
|
||||
article ul{
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
article li::before {
|
||||
content: "❯";
|
||||
color: var(--text-color);
|
||||
display: inline-block;
|
||||
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc5MiIgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xMzYzIDg3N2wtNzQyIDc0MnEtMTkgMTktNDUgMTl0LTQ1LTE5bC0xNjYtMTY2cS0xOS0xOS0xOS00NXQxOS00NWw1MzEtNTMxLTUzMS01MzFxLTE5LTE5LTE5LTQ1dDE5LTQ1bDE2Ni0xNjZxMTktMTkgNDUtMTl0NDUgMTlsNzQyIDc0MnExOSAxOSAxOSA0NXQtMTkgNDV6Ii8+PC9zdmc+);
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
content: "";
|
||||
width: 1.5ex;
|
||||
height: 1.5ex;
|
||||
}
|
||||
|
||||
article li {
|
||||
text-indent: -2ex;
|
||||
}
|
||||
|
||||
article > *, .tags, .info {
|
||||
background-color: var(--box-color);
|
||||
}
|
||||
|
||||
article > *:first-child {
|
||||
border-top-left-radius: var(--border-radius);
|
||||
border-top-right-radius: var(--border-radius);
|
||||
}
|
||||
|
||||
article > *:last-child {
|
||||
border-bottom-left-radius: var(--border-radius);
|
||||
border-bottom-right-radius: var(--border-radius);
|
||||
}
|
||||
|
||||
.liberapay {
|
||||
height: 45px;
|
||||
display: inline-block;
|
||||
|
@ -171,24 +156,20 @@ article > *:last-child {
|
|||
grid-area: extras;
|
||||
}
|
||||
|
||||
.inlinks, .outlinks, .plugs, .extras {
|
||||
padding: 20px;
|
||||
line-height: 100%;
|
||||
.plugs, .extras {
|
||||
padding : 20px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.tags {
|
||||
padding: 0 20px 0;
|
||||
.inlinks, .outlinks, .tags, .plugs, .extras {
|
||||
padding: 20px 20px 20px 20px;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.inlinks, .outlinks, .logo {
|
||||
background: rgb(32,48,55);
|
||||
background: linear-gradient(180deg, rgba(32,48,55,1) 33%, rgba(32,48,55,0) 100%);
|
||||
}
|
||||
|
||||
.tags p, .plugs p, article p {
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
|
@ -234,27 +215,22 @@ article > *:last-child {
|
|||
.plugs img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: var(--text-color);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.plugs, .extras {
|
||||
padding: 0 40px 0;
|
||||
margin: 0;
|
||||
padding : 20px;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
|
||||
.plugs, .extras, .plugs ul, .extras ul {
|
||||
list-style: none;
|
||||
justify-content: center;
|
||||
justify-content: space-evenly;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.plugs li, .extras li {
|
||||
display: inline-block;
|
||||
margin: 0 20px 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.extras a {
|
||||
|
@ -266,22 +242,24 @@ article > *:last-child {
|
|||
}
|
||||
|
||||
.extras a:link, .extras a:visited {
|
||||
color: var(--text-color);
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.plug-container, .extras-container {
|
||||
display: inline-block;
|
||||
height: 85px;
|
||||
padding: 20px;
|
||||
width: 25%;
|
||||
background-color: var(--box-color);
|
||||
border-radius: var(--border-radius);
|
||||
background-color: var(--text-color);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
pre {
|
||||
border: dashed 1px #000000;
|
||||
border-radius: (--border-radius);
|
||||
background-color: #000000aa;
|
||||
border-radius: 5px;
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
|
@ -304,9 +282,10 @@ pre code::before {
|
|||
|
||||
code {
|
||||
font-size: 14pt;
|
||||
background-color: #000000aa;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border: dashed 1px #000000;
|
||||
border-radius: var(--border-radius);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
@ -317,16 +296,9 @@ h2 {
|
|||
font-size: 20pt;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-family: 'Tippa';
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
padding: 3em 0 3em;
|
||||
}
|
||||
|
||||
.left, .right {
|
||||
|
@ -345,18 +317,34 @@ h1, h2, h3, h4, h5 {
|
|||
.info {
|
||||
font-size: 14pt;
|
||||
font-style: italic;
|
||||
padding: 20px 40px 30px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.tags a {
|
||||
.tags a::before {
|
||||
display: inline-block;
|
||||
padding: 2ex;
|
||||
width: 2ex;
|
||||
height: 2ex;
|
||||
content: "";
|
||||
padding-right: 0.5ex;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgaGVpZ2h0PSIxMDAlIgogICB3aWR0aD0iMTAwJSIKICAgdmVyc2lvbj0iMS4xIgogICBpZD0ic3ZnNDMwMyIKICAgdmlld0JveD0iMCAtMjU2IDE5NTAgMTk1MCI+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhNDMxMyI+CiAgICA8cmRmOlJERj4KICAgICAgPGNjOldvcmsKICAgICAgICAgcmRmOmFib3V0PSIiPgogICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PgogICAgICAgIDxkYzp0eXBlCiAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4KICAgICAgICA8ZGM6dGl0bGU+PC9kYzp0aXRsZT4KICAgICAgPC9jYzpXb3JrPgogICAgPC9yZGY6UkRGPgogIDwvbWV0YWRhdGE+CiAgPGRlZnMKICAgICBpZD0iZGVmczQzMTEiIC8+CiAgPGcKICAgICBpZD0iZzQzMDUiCiAgICAgdHJhbnNmb3JtPSJtYXRyaXgoMSwwLDAsLTEsMjEuNjc4Nzg2LDEzOTIuODE5KSI+CiAgICA8cGF0aAogICAgICAgc3R5bGU9ImZpbGw6Y3VycmVudENvbG9yIgogICAgICAgaWQ9InBhdGg0MzA3IgogICAgICAgZD0ibSA0NDgsMTA4OCBxIDAsNTMgLTM3LjUsOTAuNSBRIDM3MywxMjE2IDMyMCwxMjE2IDI2NywxMjE2IDIyOS41LDExNzguNSAxOTIsMTE0MSAxOTIsMTA4OCAxOTIsMTAzNSAyMjkuNSw5OTcuNSAyNjcsOTYwIDMyMCw5NjAgcSA1MywwIDkwLjUsMzcuNSBRIDQ0OCwxMDM1IDQ0OCwxMDg4IHogTSAxNTE1LDUxMiBxIDAsLTUzIC0zNywtOTAgTCA5ODcsLTcwIHEgLTM5LC0zNyAtOTEsLTM3IC01MywwIC05MCwzNyBMIDkxLDY0NiBRIDUzLDY4MyAyNi41LDc0NyAwLDgxMSAwLDg2NCB2IDQxNiBxIDAsNTIgMzgsOTAgMzgsMzggOTAsMzggaCA0MTYgcSA1MywwIDExNywtMjYuNSA2NCwtMjYuNSAxMDIsLTY0LjUgbCA3MTUsLTcxNCBxIDM3LC0zOSAzNywtOTEgeiBtIDM4NCwwIHEgMCwtNTMgLTM3LC05MCBMIDEzNzEsLTcwIHEgLTM5LC0zNyAtOTEsLTM3IC0zNiwwIC01OSwxNCAtMjMsMTQgLTUzLDQ1IGwgNDcwLDQ3MCBxIDM3LDM3IDM3LDkwIDAsNTIgLTM3LDkxIGwgLTcxNSw3MTQgcSAtMzgsMzggLTEwMiw2NC41IC02NCwyNi41IC0xMTcsMjYuNSBoIDIyNCBxIDUzLDAgMTE3LC0yNi41IDY0LC0yNi41IDEwMiwtNjQuNSBsIDcxNSwtNzE0IHEgMzcsLTM5IDM3LC05MSB6IiAvPgogIDwvZz4KPC9zdmc+Cg==);
|
||||
}
|
||||
|
||||
.feed a {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.feed a::before {
|
||||
content: "";
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
display: inline-block;
|
||||
background-image: url(/images/feed.svg);
|
||||
background-size: contain;
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
.scripture {
|
||||
/* change font */
|
||||
font-family: 'Inknut Antiqua';
|
||||
|
@ -365,7 +353,7 @@ h1, h2, h3, h4, h5 {
|
|||
font-weight: normal;
|
||||
font-style: normal;
|
||||
/* box shadow */
|
||||
box-shadow: 5px 5px 10px var(--box-color);
|
||||
box-shadow: 5px 5px 10px #a1a1a1;
|
||||
/* bg-colour */
|
||||
background-color: blanchedalmond;
|
||||
/* adjust line height */
|
||||
|
@ -378,11 +366,10 @@ h1, h2, h3, h4, h5 {
|
|||
|
||||
.scripture p {
|
||||
padding-top: 25px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
p {
|
||||
padding: 1em;
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
.with-initial > p:first-child::first-letter {
|
||||
|
@ -409,11 +396,6 @@ p {
|
|||
|
||||
.logo {
|
||||
width: 100%;
|
||||
background: rgb(32,48,55);
|
||||
}
|
||||
|
||||
.inlinks {
|
||||
background: rgb(32,48,55);
|
||||
}
|
||||
|
||||
.logo img {
|
||||
|
@ -426,6 +408,7 @@ p {
|
|||
}
|
||||
|
||||
.inlinks, .outlinks{
|
||||
border-radius: 5px;
|
||||
columns: auto;
|
||||
}
|
||||
|
||||
|
@ -437,22 +420,8 @@ p {
|
|||
columns: 1;
|
||||
}
|
||||
|
||||
.plugs, .extras {
|
||||
.plugs, .extras{
|
||||
padding: 2em 0 2em;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.plugs > li, .extras > li {
|
||||
padding: 2em;
|
||||
box-shadow: inset 0 0 50vw #203037ff;
|
||||
box-sizing: border-box;
|
||||
display: list-item;
|
||||
margin: 10px 0 10px;
|
||||
}
|
||||
|
||||
.plug-container, .extras-container {
|
||||
display: list-item;
|
||||
width: initial;
|
||||
}
|
||||
|
||||
nav ul{
|
||||
|
@ -466,15 +435,11 @@ p {
|
|||
|
||||
article {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
article img {
|
||||
float: right;
|
||||
padding: 10px;
|
||||
padding-left: 100%;
|
||||
width: 230px;
|
||||
}
|
||||
|
|
|
@ -18,10 +18,3 @@
|
|||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Courier Prime';
|
||||
src: url('/font/Courier Prime.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
|
|
@ -2,20 +2,20 @@
|
|||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="200mm"
|
||||
height="200mm"
|
||||
viewBox="0 0 200 200"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="brain.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"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="brain.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<marker
|
||||
|
@ -146,14 +146,14 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.1746705"
|
||||
inkscape:cx="337.98223"
|
||||
inkscape:cy="164.1628"
|
||||
inkscape:zoom="0.615"
|
||||
inkscape:cx="-236.1652"
|
||||
inkscape:cy="236.37955"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1027"
|
||||
inkscape:window-height="1015"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
|
@ -164,10 +164,7 @@
|
|||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
|
@ -176,7 +173,7 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
|
@ -186,13 +183,13 @@
|
|||
id="layer1"
|
||||
transform="translate(-76.102448,-78.959463)">
|
||||
<g
|
||||
id="g9794">
|
||||
id="g1244"
|
||||
transform="translate(27.346486,-14.10015)">
|
||||
<g
|
||||
style="fill:#243842;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g4756"
|
||||
transform="translate(27.346486,-14.10015)">
|
||||
style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="g4756">
|
||||
<path
|
||||
style="fill:#243842;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#7f7f7f;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 146.73097,268.9367 V 124.61116 c 0,0 0.80182,-2.13815 -3.20723,-4.00904 -4.00905,-1.87089 -2.6727,-9.35443 -5.87994,-10.95805 -3.20724,-1.60362 -10.15624,-3.20724 -15.7689,-2.13816 -5.61266,1.06908 -11.49258,4.27631 -13.36347,7.48355 -1.87089,3.20724 0.80181,4.00904 -2.93997,6.1472 -3.74178,2.13816 -9.354431,3.20723 -14.165283,9.08716 -4.810853,5.87993 -3.999182,10.34129 -3.904689,11.09724 0.09449,0.75595 0.330728,3.02381 -1.795388,3.59078 -2.126116,0.56697 -4.015993,2.40958 -4.11049,4.58295 -0.0945,2.17337 -2e-6,2.55134 0.472469,3.92151 0.472471,1.37017 0.850447,4.53571 -1.086681,6.3311 -1.937128,1.79539 -5.10268,4.15774 -4.866444,9.87463 0.236236,5.71689 1.700892,6.37834 2.267858,7.22879 0.566966,0.85045 1.039435,2.12611 0.236235,3.30729 -0.8032,1.18118 -0.755954,3.63802 -0.236235,6.14212 0.519719,2.5041 2.409597,3.63802 2.031621,5.81138 -0.377976,2.17336 -0.803196,1.55915 -2.173361,4.39397 -1.370165,2.83482 -0.04725,8.36273 0.566962,9.59115 0.614212,1.22842 1.842635,3.87425 1.842635,6.09487 0,2.22061 -0.944942,4.11048 -0.283483,7.843 0.661458,3.73251 2.126115,5.85863 2.976563,7.03981 0.850448,1.18118 4.960936,2.50409 5.764136,4.44122 0.8032,1.93713 -0.661459,3.59077 0.236236,6.70908 0.897695,3.11831 1.086683,4.29947 2.882069,6.47284 1.795386,2.17337 4.535714,3.7325 4.91369,7.843 0.377975,4.11049 -0.73952,8.41758 3.26005,12.00075 3.99957,3.58317 6.01901,3.19408 10.9613,4.44121 4.94229,1.24713 8.40998,4.72471 12.33148,7.13431 3.9215,2.4096 5.05543,2.69308 10.81957,2.83482 5.76414,0.14174 8.78794,-1.65364 10.58333,-4.29948 1.79539,-2.64584 1.63536,-5.71546 1.63536,-5.71546 z"
|
||||
id="path1047"
|
||||
inkscape:connector-curvature="0"
|
||||
|
@ -202,12 +199,11 @@
|
|||
inkscape:connector-curvature="0"
|
||||
id="path4752"
|
||||
d="M 150.78082,268.9367 V 124.61116 c 0,0 -0.80182,-2.13815 3.20725,-4.00904 4.00907,-1.87089 2.67271,-9.35443 5.87997,-10.95805 3.20726,-1.60362 10.1563,-3.20724 15.76899,-2.13816 5.61266,1.06908 11.49258,4.27631 13.36347,7.48355 1.87089,3.20724 -0.80181,4.00904 2.93997,6.1472 3.74178,2.13816 9.35443,3.20723 14.16528,9.08716 4.81085,5.87993 3.99918,10.34129 3.90469,11.09724 -0.0945,0.75595 -0.33073,3.02381 1.79539,3.59078 2.12611,0.56697 4.01599,2.40958 4.11049,4.58295 0.0945,2.17337 0,2.55134 -0.47247,3.92151 -0.47247,1.37017 -0.85045,4.53571 1.08668,6.3311 1.93713,1.79539 5.10268,4.15774 4.86644,9.87463 -0.23623,5.71689 -1.70089,6.37834 -2.26786,7.22879 -0.56696,0.85045 -1.03943,2.12611 -0.23623,3.30729 0.8032,1.18118 0.75595,3.63802 0.23623,6.14212 -0.51971,2.5041 -2.40959,3.63802 -2.03162,5.81138 0.37798,2.17336 0.8032,1.55915 2.17336,4.39397 1.37017,2.83482 0.0472,8.36273 -0.56696,9.59115 -0.61421,1.22842 -1.84263,3.87425 -1.84263,6.09487 0,2.22061 0.94494,4.11048 0.28348,7.843 -0.66146,3.73251 -2.12611,5.85863 -2.97656,7.03981 -0.85045,1.18118 -4.96094,2.50409 -5.76414,4.44122 -0.8032,1.93713 0.66146,3.59077 -0.23623,6.70908 -0.8977,3.11831 -1.08669,4.29947 -2.88207,6.47284 -1.79539,2.17337 -4.53572,3.7325 -4.91369,7.843 -0.37798,4.11049 0.73952,8.41758 -3.26005,12.00075 -3.99957,3.58317 -6.01901,3.19408 -10.9613,4.44121 -4.94229,1.24713 -8.40998,4.72471 -12.33149,7.13431 -3.92152,2.4096 -5.05546,2.69308 -10.81963,2.83482 -5.76417,0.14174 -8.78799,-1.65364 -10.58339,-4.29948 -1.7954,-2.64584 -1.63537,-5.71546 -1.63537,-5.71546 z"
|
||||
style="fill:#243842;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:#7f7f7f;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#7fff00;fill-opacity:1;stroke:none"
|
||||
id="g10314"
|
||||
transform="translate(27.346486,-14.10015)">
|
||||
id="g10314">
|
||||
<g
|
||||
style="fill:#7fff00;fill-opacity:1;stroke:none"
|
||||
id="g10151">
|
||||
|
@ -217,12 +213,12 @@
|
|||
id="path4815"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 142.51479,225.86175 c 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 z"
|
||||
id="path10157"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 132.66617,225.41827 c -0.39032,-0.39032 -0.39032,-1.02389 1e-5,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41422 -0.39032,0.39032 -1.02389,0.39032 -1.41422,-1e-5 z"
|
||||
id="path10159"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -238,12 +234,12 @@
|
|||
<path
|
||||
id="path10147"
|
||||
d="m 131.56148,220.91031 c 0.39033,0.39032 0.39033,1.02389 0,1.41421 -0.39032,0.39032 -1.02389,0.39032 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39033 1.02389,-0.39033 1.41421,0 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10149"
|
||||
d="m 126.07131,130.74527 c 0.39032,-0.39033 1.02389,-0.39033 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39032 -1.02389,0.39032 -1.41421,0 -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -257,7 +253,7 @@
|
|||
<path
|
||||
id="path10139"
|
||||
d="m 135.22778,117.8704 c 0.39032,-0.39033 1.02389,-0.39033 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39032 -1.02389,0.39032 -1.41421,0 -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -269,7 +265,7 @@
|
|||
id="path5489"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 136.6137,128.70512 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
id="path10131"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -285,12 +281,12 @@
|
|||
<path
|
||||
id="path10121"
|
||||
d="m 124.96661,224.07357 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10123"
|
||||
d="m 142.56156,231.28732 c 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -302,12 +298,12 @@
|
|||
id="path5659"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 121.85626,227.18392 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
id="path10111"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 145.03828,247.51505 c 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 z"
|
||||
id="path10113"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -323,10 +319,10 @@
|
|||
<path
|
||||
id="path10101"
|
||||
d="m 95.10552,242.49584 c 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 103.31979,254.19146 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10103"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -342,10 +338,10 @@
|
|||
<path
|
||||
id="path10091"
|
||||
d="m 91.24661,219.70703 c -0.390323,0.39033 -1.023891,0.39033 -1.414214,0 -0.390323,-0.39032 -0.390323,-1.02389 0,-1.41421 0.390323,-0.39032 1.02389,-0.39032 1.414213,0 0.390323,0.39032 0.390324,1.02389 10e-7,1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 98.788801,235.40605 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10093"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -361,12 +357,12 @@
|
|||
<path
|
||||
id="path10081"
|
||||
d="m 85.063541,214.57011 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10083"
|
||||
d="m 109.66979,255.44823 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -380,12 +376,12 @@
|
|||
<path
|
||||
id="path10071"
|
||||
d="m 87.276862,148.96388 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10073"
|
||||
d="m 83.581861,191.43301 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -397,12 +393,12 @@
|
|||
id="path6509"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 107.23996,147.34335 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
id="path10061"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 138.15636,178.25975 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
id="path10063"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -418,7 +414,7 @@
|
|||
<path
|
||||
id="path10053"
|
||||
d="m 113.937,181.52174 c 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -432,12 +428,12 @@
|
|||
<path
|
||||
id="path10043"
|
||||
d="m 121.04637,190.78263 c 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10045"
|
||||
d="m 121.04637,175.25427 c 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -449,12 +445,12 @@
|
|||
id="path6959"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 136.76182,158.31831 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10033"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 109.08131,143.1282 c 0.39032,-0.39033 1.02389,-0.39033 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39032 -1.02389,0.39032 -1.41421,0 -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 z"
|
||||
id="path10035"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -470,12 +466,12 @@
|
|||
<path
|
||||
id="path10023"
|
||||
d="m 128.77239,121.64253 c -0.39032,-0.39032 -0.39032,-1.02389 1e-5,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41422 -0.39032,0.39032 -1.02389,0.39032 -1.41422,-1e-5 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10025"
|
||||
d="m 136.63626,152.39523 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -487,12 +483,12 @@
|
|||
id="path7265"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 132.65449,112.05423 c -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 z"
|
||||
id="path10013"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 127.81971,152.32507 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41422,0 0.39032,0.39032 0.39032,1.02389 -1e-5,1.41421 z"
|
||||
id="path10015"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -508,12 +504,12 @@
|
|||
<path
|
||||
id="path10003"
|
||||
d="m 113.74991,134.18387 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10005"
|
||||
d="m 144.76293,266.71809 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -525,12 +521,12 @@
|
|||
id="path7595"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 128.67245,111.12741 c 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 z"
|
||||
id="path9993"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 108.53189,194.33288 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path9995"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -544,7 +540,7 @@
|
|||
id="path7769"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 104.63796,134.17747 c -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 z"
|
||||
id="path9985"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -560,12 +556,12 @@
|
|||
<path
|
||||
id="path9975"
|
||||
d="m 103.27294,183.66883 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path9977"
|
||||
d="m 131.19371,198.77845 c 0,0.552 -0.448,1 -1,1 -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -577,12 +573,12 @@
|
|||
id="path8143"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 104.63796,127.72291 c -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 z"
|
||||
id="path9965"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 116.02143,205.74444 c 0.39033,0.39032 0.39033,1.02389 0,1.41421 -0.39032,0.39032 -1.02389,0.39032 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39033 1.02389,-0.39033 1.41421,0 z"
|
||||
id="path9967"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -598,12 +594,12 @@
|
|||
<path
|
||||
id="path9955"
|
||||
d="m 119.05547,207.13036 c -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path9957"
|
||||
d="m 89.062826,202.71594 c 0.390323,-0.39033 1.023891,-0.39033 1.414214,0 0.390323,0.39032 0.390323,1.02389 0,1.41421 -0.390323,0.39032 -1.02389,0.39032 -1.414213,0 -0.390323,-0.39032 -0.390324,-1.02389 -10e-7,-1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -615,7 +611,7 @@
|
|||
id="path8535"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 119.41796,117.9943 c -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 z"
|
||||
id="path9947"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -631,12 +627,12 @@
|
|||
<path
|
||||
id="path9937"
|
||||
d="m 89.147749,168.88882 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path9939"
|
||||
d="m 113.86684,260.74936 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
|
@ -648,7 +644,7 @@
|
|||
id="path8937"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 94.105599,176.18528 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path9929"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -664,116 +660,116 @@
|
|||
<path
|
||||
id="path9919"
|
||||
d="m 133.48229,179.18209 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path9921"
|
||||
d="m 131.33098,271.03619 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 121.08767,167.30196 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10316" />
|
||||
<path
|
||||
id="path10318"
|
||||
d="m 124.59558,170.7631 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 128.00995,174.17747 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10320" />
|
||||
<path
|
||||
id="path10324"
|
||||
d="m 125.20362,182.50291 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 125.20362,187.45252 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10326" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 132.47669,160.63693 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10328" />
|
||||
<path
|
||||
id="path10330"
|
||||
d="m 138.65062,138.37338 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 135.47563,135.19839 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10332" />
|
||||
<path
|
||||
id="path10334"
|
||||
d="m 132.30064,132.0234 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 123.30478,115.09005 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10336" />
|
||||
<path
|
||||
id="path10338"
|
||||
d="m 100.69915,150.30949 c -0.552,0 -0.999997,-0.448 -0.999997,-1 0,-0.552 0.447997,-1 0.999997,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 100.69915,158.77621 c -0.552,0 -0.999997,-0.448 -0.999997,-1 0,-0.552 0.447997,-1 0.999997,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10340" />
|
||||
<path
|
||||
id="path10342"
|
||||
d="m 102.28666,170.94706 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 97.524145,170.94706 c -0.551997,0 -0.999994,-0.448 -0.999994,-1 0,-0.552 0.447997,-1 0.999994,-1 0.551997,0 0.999994,0.448 0.999994,1 0,0.552 -0.447997,1 -0.999994,1 z"
|
||||
id="path10344" />
|
||||
<path
|
||||
id="path10346"
|
||||
d="m 84.824137,170.94706 c -0.551997,0 -0.999994,-0.448 -0.999994,-1 0,-0.552 0.447997,-1 0.999994,-1 0.551997,0 0.999994,0.448 0.999994,1 0,0.552 -0.447997,1 -0.999994,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path10348"
|
||||
d="m 123.61611,203.32753 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 119.38275,203.32753 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10350" />
|
||||
<path
|
||||
id="path10352"
|
||||
d="m 105.62442,209.67754 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 138.43278,234.54841 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10354" />
|
||||
<path
|
||||
id="path10356"
|
||||
d="m 138.43278,239.84011 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 138.43278,253.59847 c -0.552,0 -1,-0.448 -1,-1 0,-0.552 0.448,-1 1,-1 0.552,0 1,0.448 1,1 0,0.552 -0.448,1 -1,1 z"
|
||||
id="path10358" />
|
||||
</g>
|
||||
|
@ -786,12 +782,12 @@
|
|||
id="path9363"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 129.21746,208.39609 c -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 z"
|
||||
id="path9909"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
d="m 137.16835,270.88736 c -0.39032,0.39033 -1.02389,0.39033 -1.41421,0 -0.39032,-0.39032 -0.39032,-1.02389 0,-1.41421 0.39032,-0.39032 1.02389,-0.39032 1.41421,0 0.39033,0.39032 0.39033,1.02389 0,1.41421 z"
|
||||
id="path9911"
|
||||
inkscape:connector-curvature="0" />
|
||||
|
@ -807,12 +803,12 @@
|
|||
<path
|
||||
id="path9889"
|
||||
d="m 103.45159,258.30833 c 0.39032,-0.39033 1.02389,-0.39033 1.41421,0 0.39032,0.39032 0.39032,1.02389 0,1.41421 -0.39032,0.39032 -1.02389,0.39032 -1.41421,0 -0.39033,-0.39032 -0.39033,-1.02389 0,-1.41421 z"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2pt;stroke-opacity:1"
|
||||
style="fill:#7fff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.20000001pt;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(27.346483,-14.10015)"
|
||||
transform="translate(-3.3333333e-6)"
|
||||
id="g10581">
|
||||
<path
|
||||
style="fill:#ffbe00;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
|
|
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 115 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 13 MiB |
Before Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 57 KiB |
|
@ -1,37 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
id="svg12"
|
||||
version="1.1"
|
||||
enable-background="new 0 0 64 64"
|
||||
viewBox="0 0 64 64"
|
||||
sodipodi:docname="nek0net_lynx_wh.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
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"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview9"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#999999"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="13.234375"
|
||||
inkscape:cx="27.806375"
|
||||
inkscape:cy="32.03778"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1027"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12" />
|
||||
viewBox="0 0 64 64">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<rdf:RDF>
|
||||
|
@ -40,16 +17,16 @@
|
|||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs16" />
|
||||
<path
|
||||
id="path856"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.956947"
|
||||
d="m 6.8085938,10.355469 c -0.3718289,3.848599 -0.5823585,7.640616 -0.4608991,11.544296 0.063506,2.21774 0.2835163,4.658204 0.6816022,6.947891 -0.6744336,2.408835 -0.6725231,4.932915 -0.9902344,7.400391 -0.5014464,-0.83901 -0.4733358,-0.02508 -0.5195313,0.505859 -0.2132572,2.028266 0.2919079,4.024909 0.5605469,6.021485 -0.7703994,-0.384854 -0.9291344,0.0228 -0.7593408,0.750136 0.064504,0.805877 0.1272043,1.611897 0.1909815,2.417832 -0.6443995,-0.134956 -0.3928047,0.828467 -0.6203186,1.224951 -0.140926,0.702072 -0.4497155,1.465886 -0.2488221,2.171534 1.3782552,1.811198 2.7565104,3.622396 4.1347657,5.433594 C 7.2667014,54.253949 5.70143,53.657207 4.2246094,53.185547 c 0.036379,0.699422 -0.1228388,1.528522 0.5122761,2.018379 0.6124444,0.770566 1.2248888,1.541133 1.8373333,2.311699 -0.843099,0.127604 -1.686198,0.255208 -2.5292969,0.382813 0.2252886,0.83598 0.3611085,1.725448 0.4902343,2.560546 C 10.030157,57.82237 16.375943,57.622826 22.306641,58.5625 c 0.399927,-0.131699 1.200688,0.237937 1.755871,0.300422 3.99036,1.013294 8.17541,1.449989 12.256463,0.738466 1.810876,-0.28054 3.584953,-0.747107 5.374384,-1.134591 0.276037,0.184931 0.992158,-0.117706 1.431641,-0.111328 5.493421,-0.676838 11.29816,-0.327783 16.347656,2.107422 0.112457,-0.862913 0.262906,-1.721916 0.482422,-2.564453 -0.843099,-0.127605 -1.686198,-0.255209 -2.529297,-0.382813 0.738516,-0.983591 1.597839,-1.907153 2.269531,-2.923828 0.08465,-0.469949 0.06808,-0.951956 0.08008,-1.427735 -1.517578,0.536459 -3.035157,1.072917 -4.552735,1.609376 1.386731,-1.846092 2.827977,-3.66947 4.181641,-5.529297 0.09019,-1.129724 -0.39734,-2.199304 -0.570313,-3.300782 -0.707191,0.085 -0.109136,-1.036442 -0.227862,-1.495364 0.0452,-0.613555 0.114393,-1.226355 0.102862,-1.842526 -0.869515,0.424816 -0.842743,-0.102133 -0.637562,-0.818536 0.347027,-1.97676 0.640337,-3.994004 0.307484,-5.995917 -0.578337,0.957374 -0.446871,-0.225796 -0.538253,-0.736925 -0.252707,-2.073281 -0.277412,-4.189314 -0.86995,-6.206435 0.411777,-2.36792 0.628649,-4.864783 0.689052,-7.165096 0.08544,-3.035275 -0.03454,-6.092438 -0.268253,-9.050002 C 57.23116,10.661072 57.032971,8.6928424 56.857422,6.7226562 56.512954,6.7028014 55.336306,7.6174356 55.66321,7.0079249 51.953579,7.7166773 48.244815,9.0729507 44.846478,10.82849 c -1.233541,0.632449 -2.478192,1.359478 -3.555061,2.049918 -0.613502,0.334248 -1.172654,0.897221 -1.805454,1.113518 -4.940969,-1.127072 -10.13142,-1.114031 -15.069947,0.01979 -0.96898,-0.650251 -1.944981,-1.308644 -2.865682,-1.850021 C 17.470297,9.7220527 12.993014,7.9285331 8.328125,6.9902344 8.6874951,7.6243068 7.5216495,6.7298176 7.1799285,6.7313172 6.9898601,7.8405826 6.942453,9.1691266 6.8085938,10.355469 Z" />
|
||||
d="m 2.7084294,0.065821 1.556909,3.179234 -1.913895,-0.842936 c 0,0 2.905578,3.81287 2.454047,7.782674 l 0.01121,-0.01308 c -0.727957,7.410195 -0.670857,13.629837 0.173821,18.58571 -0.265075,0.955033 -0.4217,1.908183 -0.491557,2.829723 l -0.360725,-0.394368 -0.556973,4.833333 c -0.187562,1.625854 -0.117763,3.018256 0.08224,4.184776 l -0.371938,-0.08037 v 2.766176 c 0,0.350054 0.02196,0.699222 0.05607,1.046661 h -0.0056 c 0.06142,1.032797 -0.242925,2.139019 -0.536414,3.334364 -0.162916,0.663533 -0.56955,2.513502 0.342034,3.390435 l -1.564385,-0.691544 0.413057,1.298982 c 0.521226,1.636767 -0.174019,3.67418 0.863496,4.780998 l -1.351315,0.205594 0.390629,1.36066 c 0.404372,1.410118 0.609618,2.439152 0.753223,4.166086 l 0.183165,2.21107 1.465326,-1.091516 c 0,0 1.503973,-1.143496 4.820249,-2.011085 3.3162746,-0.86759 8.3506946,-1.399827 15.1859326,0.07476 v -0.0037 c 2.655318,0.636498 5.286851,0.99059 7.69296,0.99059 2.406109,0 5.037642,-0.354092 7.692961,-0.99059 v 0.0037 c 6.835237,-1.474588 11.869658,-0.942351 15.185933,-0.07476 3.316277,0.867589 4.820249,2.011085 4.820249,2.011085 l 1.465325,1.091516 0.183167,-2.21107 c 0.143603,-1.726934 0.34885,-2.755968 0.753222,-4.166086 l 0.390628,-1.36066 -1.351314,-0.205594 c 1.037515,-1.106818 0.34227,-3.144231 0.863496,-4.780998 l 0.413057,-1.298982 -1.564384,0.691544 c 0.911583,-0.876933 0.504948,-2.726902 0.342033,-3.390435 -0.293489,-1.195345 -0.597835,-2.301567 -0.536413,-3.334364 h -0.0056 c 0.03411,-0.347439 0.05607,-0.696607 0.05607,-1.046661 v -2.766176 l -0.371939,0.08037 c 0.200001,-1.16652 0.2698,-2.558922 0.08224,-4.184776 l -0.556974,-4.833333 -0.360724,0.394368 c -0.06986,-0.92154 -0.226483,-1.87469 -0.491557,-2.829723 0.844678,-4.955873 0.901778,-11.175515 0.173821,-18.585714 l 0.01121,0.01308 c -0.451533,-3.9698 2.454046,-7.78267 2.454046,-7.78267 l -1.913895,0.842936 1.556908,-3.179234 c 0,0 -4.363299,4.553191 -6.567799,5.083783 l 0.0019,0.0019 C 48.866601,6.37958 43.41791,8.979859 39.164022,11.887516 c -2.212463,-0.478474 -4.595576,-0.732663 -7.164023,-0.732663 -2.568447,0 -4.95156,0.254189 -7.164022,0.732663 C 20.582089,8.979859 15.133398,6.37958 9.2743674,5.151503 l 0.0019,-0.0019 C 7.0717654,4.619012 2.7084664,0.065821 2.7084664,0.065821 Z"
|
||||
id="path856" />
|
||||
<g
|
||||
id="g902"
|
||||
style="display:inline">
|
||||
|
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 20 KiB |
|
@ -1,48 +0,0 @@
|
|||
---
|
||||
title: There is a problem
|
||||
author: nek0
|
||||
tags:
|
||||
- english
|
||||
- meta
|
||||
- projects
|
||||
- comic
|
||||
description: I made a very important realization very recently and I need to change things.
|
||||
---
|
||||
|
||||
Hi there!
|
||||
|
||||
It's surely been a while again since I posted something on my blog. I owe you an apology for that.
|
||||
I have had blog posts I want to write on my mind for some time now, but I never actually got to
|
||||
execute any of those ideas due to me being too busy.
|
||||
|
||||
I am very busy. To name just a few of the things I do: I have work, I have my ongoing comic, I have
|
||||
ideas for further comics, I draw other stuff, I dabble in Haskell game development, I do photography
|
||||
and so on and so forth. I don't do these things all at once, but still it's a lot.
|
||||
|
||||
Lately I've had problems drawing new pages for my ongoing comic. Not because I didn't enjoy thinking
|
||||
about it any more or I was fed up with the story or the characters. At first I thought it was
|
||||
because it was always the same project and I needed to spice my drawing time up a little with other
|
||||
drawings than the comic. But the problem is deeper.
|
||||
|
||||
I have been struggling with mental health problems for more than half of my life now and all these
|
||||
projects on top of my regular dayjob are taking their toll, which I'm slowly beginning to feel.
|
||||
|
||||
Over the course of the past years I somehow managed to un-learn a very important activity: I forgot
|
||||
how to relax. I can't remember when I last sat down with a good book or comic and read it for the
|
||||
sake of just reading it. The same goes for watching a movie or an episode of a series. I used to be
|
||||
playing video games.
|
||||
|
||||
I didn't fully realize I had a problem until very recently, when a friend called me for emotional
|
||||
support. They told me they are about to burn out. During our conversation they told me some of
|
||||
the early warning signs they had experienced and I was immediately reminded of myself and the
|
||||
situation I am in at the moment.
|
||||
|
||||
This warrants some changes I need to make to take proper care of myself. I want to re-learn how to
|
||||
relax and spend time "doing nothing" without havig a bad conscience. Since the amount of time in a
|
||||
day or a week is limited, this means I need to cut back on other activities in my free time, which
|
||||
has been mostly taken over by drawing and related activities. This does not mean I'm droppping
|
||||
drawing and my comic projects altogether, but there is a hiatus coming soon.
|
||||
|
||||
On a technical side note: You might have noticed the new design of my blog. I overhauled it because
|
||||
I have grown increasingly discontent with the old design. I hope you like it. Let me know what you
|
||||
think.
|
|
@ -1,42 +0,0 @@
|
|||
---
|
||||
title: Getting above of things
|
||||
author: nek0
|
||||
tags:
|
||||
- english
|
||||
- meta
|
||||
- projects
|
||||
- comic
|
||||
description: "Watch me struggle to get above of my problems"
|
||||
---
|
||||
|
||||
Hi, it's me again.
|
||||
|
||||
I thought I'd give you a little update about the things I've been up to in the past month or so
|
||||
since I posted my last blog post.
|
||||
|
||||
I actually managed to use some time periods I usually would spend online or working on my projects
|
||||
at least mentally to wind down a little. For that purpose I looked at some mangas and settled for
|
||||
"Spy x Family" and boy am I sold on this series. I'm still in the first half of the second issue and
|
||||
I'm enjoying it more than I had anticipated. I really do recommend this manga series.
|
||||
|
||||
My little hiatus from drawing did not last long, because I could not handle my imagination present
|
||||
me with beautiful ideas for either redraws of old art or even new art ideas. Unfortunately for my
|
||||
ongoing comic project the ideas I had go into completely different directions. On the other hand I
|
||||
might have drawn my best drawings so far.
|
||||
|
||||
To distract me a little from my urge to draw I started working on my vulkan renderer in Haskell
|
||||
again, which made some good progress thanks to my renewed passion for it. I optimized some data
|
||||
handling between CPU and GPU and also am able to load and display textures, but UV maps don't work
|
||||
yet and I need to figure out why. But here's a little video of it's current capabilities:
|
||||
|
||||
<video controls="true">
|
||||
<source src="/vids/2023-05-16.webm" type="video/webm" />
|
||||
</video>
|
||||
|
||||
I hope soon to be able to actually use this renderer and continue with my game projects, where I
|
||||
might have gained a new idea…
|
||||
|
||||
This is what I've been up to so far. I hope to make blog posts a more regular thing again in the
|
||||
future. See you soon.
|
||||
|
||||
Keep calm and wash hands.
|
|
@ -1,44 +0,0 @@
|
|||
---
|
||||
title: A big anniversary
|
||||
author: nek0
|
||||
tags:
|
||||
- english
|
||||
- meta
|
||||
- personal
|
||||
description: A lot of time has passed since I started this blog…
|
||||
---
|
||||
|
||||
Hi folks!
|
||||
|
||||
I recently had a look inside the [archive](/archive.html) of this blog and was quite surprised to
|
||||
find out I have been maintaining it for 10 years now. That's quite a long time for human standards.
|
||||
|
||||
On this occasion I started to reminisce about the past ten years and the ups and downs I had in
|
||||
this period of time. There are very mixed feelings when looking into the past and even more when
|
||||
trying to tell the future.
|
||||
|
||||
I feel like I have lost my purpose of being somewhere along the way, but the one I had was not
|
||||
doing me good either. It gave me a direction whereas now I feel aimless, but it wore me down to
|
||||
the bone and made me neglect myself. Nowadays I still have the tendency to disregard my own needs
|
||||
-- old habits die hard -- but i'm no longer peer-pressured into thinking that it's alright and
|
||||
that I need to wear me down even more to succeed. On the contrary even, my friends point out my
|
||||
flawed thinking and convince me to take care of myself.
|
||||
|
||||
Speaking of friends, I feel thankful for the people in my life. Those I keep contact with from
|
||||
long before and those who came along during the journey. The diversity of life reflected in them
|
||||
and all the different experiences I have had with them tought me a lot. Often I feel guilty of
|
||||
being a burden to them…
|
||||
|
||||
Change is probably the one lasting constant of life. I hope to change for the better in the future
|
||||
and never lose my passions.
|
||||
|
||||
Ten years ago I wouldn't have dared to make up characters and stories to share them publicly.
|
||||
Nowadays I'm publishing [my own webcomic][remnants], where the first chapter has just been
|
||||
completed and the second one is about to get ready for release. And I have ideas and plans for
|
||||
more chapters to come.
|
||||
|
||||
Excuse me my rambling in this blog post. It's just something that occupied my mind lately.
|
||||
|
||||
Keep calm and wash hands.
|
||||
|
||||
[remnants]: https://comics.nek0.eu/remnants/
|
|
@ -1,45 +0,0 @@
|
|||
---
|
||||
title: What about the comic?
|
||||
author: nek0
|
||||
tags:
|
||||
- comic
|
||||
- personal
|
||||
- projects
|
||||
description:
|
||||
---
|
||||
|
||||
Hi there!
|
||||
|
||||
I slowly begin to feel like a scratched record as I talk about me making a comic. But hey, I'm
|
||||
actually making a comic that is out there and people can read it. And they do. If you are
|
||||
interested, you can read it [on its own webpage][comic]. This blog post can wait a little longer.
|
||||
|
||||
Actually I haven't posted any new pages since July, because the first chapter of the comic is
|
||||
concluded and I needed a well-deserved break and some time to figure out my future plans. Now, two
|
||||
months later, I can tell you what I figured out.
|
||||
|
||||
The good news: The story will continue. As I was gradually releasing pages from the first chapter
|
||||
into the web I was already working on the pages for the second chapter. I even posted some sneak
|
||||
peeks of it on my [social media][contact]. The story for the entire comic is also already written,
|
||||
so I can disclose the fact, that there is a total sum of eleven chapters planned.
|
||||
|
||||
The sad news: I can and will only work on the comic in my free time from my day job next to my
|
||||
other hobbies. This means the upload schedule of one page per month will not change. At least for
|
||||
now. I'll let you all know if that changes.
|
||||
|
||||
Because I'm spending so much time drawing, be it comic related or not, I have been thinking about
|
||||
doing art streams. Those would, if I would draw comic related stuff on stream, of course contain
|
||||
spoilers. This kinda deters me from doing those streams, as to not lessen your surprise and
|
||||
anticipation. But I guess I'll figure something out for those, who are willing to be spoiled and
|
||||
also for those who prefer not to. But whatever comes out of the still nebulous idea, you'll hear
|
||||
about it from me.
|
||||
|
||||
And now for the actual announcement: I'm planning to resume posting new pages in December. I hope
|
||||
You can wait that long, but I need to make sure everything is ready by then.
|
||||
|
||||
So much for this blog post. Have a nice time.
|
||||
|
||||
Keep calm and wash hands.
|
||||
|
||||
[comic]: https://comics.nek0.eu/remnants/
|
||||
[contact]: /contact.html
|
|
@ -1,49 +0,0 @@
|
|||
---
|
||||
title: Long time no see
|
||||
author: nek0
|
||||
tags:
|
||||
- english
|
||||
- meta
|
||||
- projects
|
||||
- personal
|
||||
description:
|
||||
"A year's worth of updates"
|
||||
---
|
||||
|
||||
Hi there!
|
||||
|
||||
It's been a while -- almost a year -- since my last blog post. That's a little embarrassing for me
|
||||
to be honest.
|
||||
|
||||
But I wasn't idle the whole time. [My webcomic][remnants] has been steadily growing since then. You
|
||||
may read well into chapter 2 at the moment and I'm about to wrap up drawing the last panels of this
|
||||
chapter so I can start preparing the chapter 3.
|
||||
|
||||
I also have other projects, as you may know. I'm still active in game development, where I started
|
||||
writing a multiplayer game in Haskell last November and hope to finish it by December this year.
|
||||
There are still my older Haskell gamedev projects around, but they are shelved at the moment.
|
||||
|
||||
Apart from Haskell gamedev, I also started dabbling in Rust gamedev and aim to create an adventure
|
||||
game out of a story idea I initially had intended to work out as a comic.
|
||||
|
||||
Another nice thing I came to do around in the past year is taking piano lessons. It's has been 14
|
||||
years since I had my last one and boy, am I rusty. I'm very glad the initial frustration has faded
|
||||
quickly and I'm having fun learning new stuff again.
|
||||
|
||||
So I find ways to keep myself busy, as you can see. The projects are so many and tightly packed,
|
||||
that I started blocking out time for them in a separate calendar some weeks ago. This serves the
|
||||
purpose to answer the ubiquitous question "What am I going to do today?" and not being paralyzed by
|
||||
the sheer amount of choices.
|
||||
|
||||
This allocation of my free time has worked quite well since I put it in place and it's nice seeing
|
||||
the progress on the projects. I tend to procrastinate a lot less since then.
|
||||
|
||||
That's all for this update. I want to return to my old goal to post at least once a month here.
|
||||
Additionally I want to make small weekly updates over on [Mastodon][masto].
|
||||
|
||||
So until then.
|
||||
|
||||
Keep calm and wash your paws.
|
||||
|
||||
[remnants]: https://comics.nek0.eu/remnants/
|
||||
[masto]: https://chaos.social/@nek0
|
|
@ -1,4 +1,2 @@
|
|||
<p>
|
||||
Here you can find all my previous posts:
|
||||
<p>
|
||||
Here you can find all my previous posts:
|
||||
$partial("templates/post-list.html")$
|
||||
|
|
|
@ -14,14 +14,14 @@
|
|||
<!-- humans.txt -->
|
||||
<link rel="author" href="/humans.txt" />
|
||||
|
||||
<!-- favicon -->
|
||||
<link rel="icon" type="image/svg+xml" href="/images/nek0arts_logo.svg">
|
||||
|
||||
<!-- RSS -->
|
||||
<link rel="alternate" type="application/rss+xml" title="nek0's blog" href="/rss.xml">
|
||||
|
||||
<!-- ATOM -->
|
||||
<link rel="alternate" type="application/atom+xml" title="nek0's blog" href="/atom.xml">
|
||||
|
||||
<!-- favicon -->
|
||||
<link rel="icon" type="image/x-icon" href="/images/nek0net_lynx.ico">
|
||||
</head>
|
||||
<body itemscope="" itemtype="https://schema.org/Blog">
|
||||
<div class="logo">
|
||||
|
@ -54,13 +54,13 @@
|
|||
<h1 itemprop="headline">$title$</h1>
|
||||
$endif$
|
||||
$body$
|
||||
<hr>
|
||||
</article>
|
||||
<hr>
|
||||
<ul class="plugs">
|
||||
<li class="plug-container">
|
||||
Tip Jar:
|
||||
<ul>
|
||||
<li><a href="https://ko-fi.com/nek0_lynx"><img src="/images/ko-fi.svg" title="Support me on Ko-Fi" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
<li><a href="https://ko-fi.com/ostrovid"><img src="/images/ko-fi.svg" title="Support me on Ko-Fi" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
<li><a href="https://liberapay.com/nek0/donate"><img src="/images/liberapay.svg" title="Support me on Liberapay" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
<li><a href="https://en.tipeee.com/nek0"><img src="/images/tipeee.svg" title="Support me on Tipeee" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
</ul>
|
||||
|
@ -69,7 +69,7 @@
|
|||
Socials:
|
||||
<ul>
|
||||
<li><a href="https://chaos.social/@nek0"><img src="/images/mastodon.svg" title="Find me on Mastodon" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
<li><a href="https://twitter.com/nek0_lynx"><img src="/images/twitter.svg" title="Find me on Twitter" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
<li><a href="https://twitter.com/rys_ostrovid"><img src="/images/twitter.svg" title="Find me on Twitter" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
<li><a href="https://gitea.nek0.eu/nek0"><img src="/images/gitea.svg" title="Find me on Gitea" target="_blank" rel="noopener noreferrer" /></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
</div>
|
||||
|
||||
<div class="tags">
|
||||
Tags:
|
||||
$tagCloud$
|
||||
</div>
|
||||
|
||||
|
|