slight updates
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 35s
70
output/crexpo10/index.html
Executable file
@@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>Creator's Expo 10</title>
|
||||
<link rel="stylesheet" href="main.css">
|
||||
<link rel="icon" href="res/bodhisattva.png">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Baskervville+SC&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="section">
|
||||
<div class="sideimage left">
|
||||
<img src="res/bodhisattva.svg">
|
||||
</div>
|
||||
<div class="track">
|
||||
<div class="text">
|
||||
Every culture has stories of heroes.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<div class="track">
|
||||
<div class="text">
|
||||
People who led the way to enlightenment, and healed the sick, and stole fire from the gods.
|
||||
</div>
|
||||
</div>
|
||||
<div class="sideimage">
|
||||
<img src="res/Prometheus.svg">
|
||||
</div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<div class="sideimage left">
|
||||
<img src="res/joshua.svg">
|
||||
</div>
|
||||
<div class="track">
|
||||
<div class="text">
|
||||
They brought hope with them, wherever they went.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="median ltd"></div>
|
||||
<div class="dark" id="yippee">
|
||||
<div class="light-track">
|
||||
<div class="text">
|
||||
Nowadays, it often seems that heroes are the stuff of fairy tales.
|
||||
</div>
|
||||
<div class="text">
|
||||
Mere stories, feeble against the coming darkness.
|
||||
</div>
|
||||
<div class="text">
|
||||
And hope starts to fade.
|
||||
</div>
|
||||
<div class="text">
|
||||
But hope doesn't come from stories.
|
||||
</div>
|
||||
<div class="text">
|
||||
Hope comes from <i>good people</i>. People who refuse to let the darkness win.
|
||||
</div>
|
||||
<img src="res/closing-fresco.svg" style="width:100vw;display:inline-block;">
|
||||
<div class="text" style="background-color: white;">
|
||||
And that can be <b>all of us</b>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
85
output/crexpo10/main.css
Executable file
@@ -0,0 +1,85 @@
|
||||
* {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.section {
|
||||
background-color: blanchedalmond;
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.track {
|
||||
height: 100vh;
|
||||
padding-top: 25vh;
|
||||
padding-bottom: 25vh;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 1.6em;
|
||||
font-weight: bold;
|
||||
font-family: "Baskervville SC", sans-serif;
|
||||
position: sticky;
|
||||
top: calc(50% - 0.5em);
|
||||
text-align: center;
|
||||
max-width: 30vw;
|
||||
}
|
||||
|
||||
.section.dark {
|
||||
background-color: rgb(0, 20, 40);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.section.verylight {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.median {
|
||||
height: 400px;
|
||||
background-color: blanchedalmond;
|
||||
}
|
||||
|
||||
.median.ltd {
|
||||
background-image: url(res/creepingdarkness-tile.svg);
|
||||
}
|
||||
|
||||
.median.dtl {
|
||||
transform: scaleY(-1);
|
||||
background-image: url(res/creepingdarkness-tile.svg);
|
||||
}
|
||||
|
||||
.median.dark {
|
||||
background-color: rgb(0, 20, 40);
|
||||
}
|
||||
|
||||
.sideimage {
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s;
|
||||
}
|
||||
|
||||
.sideimage.visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.light-track > .text {
|
||||
height: 100vh;
|
||||
transition: opacity 0.25s;
|
||||
max-width: 100vw;
|
||||
}
|
||||
|
||||
#yippee {
|
||||
background-color: var(--track-color);
|
||||
transition: color 1s;
|
||||
}
|
||||
|
||||
.light-track > div:last-of-type {
|
||||
height: 50vh !important;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: top;
|
||||
}
|
||||
48
output/crexpo10/main.js
Executable file
@@ -0,0 +1,48 @@
|
||||
function interpolate(one, frac, two) { // interpolate between two values. at frac=1, return one; at frac=0, return two.
|
||||
return frac * one + (1 - frac) * two;
|
||||
}
|
||||
|
||||
|
||||
function onscroll() {
|
||||
for (image of document.getElementsByClassName("sideimage")) {
|
||||
let rect = image.getBoundingClientRect();
|
||||
if (rect.top < 100 || rect.bottom > window.innerHeight - 100) {
|
||||
image.classList.remove("visible");
|
||||
}
|
||||
else {
|
||||
image.classList.add("visible");
|
||||
}
|
||||
}
|
||||
let lastText;
|
||||
for (text of document.querySelectorAll(".light-track > .text")) {
|
||||
let rect = text.getBoundingClientRect();
|
||||
if (rect.top < window.innerHeight * 3 / 4) {
|
||||
if (lastText) {
|
||||
lastText.style.opacity = '0';
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (lastText) {
|
||||
lastText.style.opacity = '1';
|
||||
}
|
||||
}
|
||||
lastText = text;
|
||||
}
|
||||
let track = document.getElementById("yippee");
|
||||
let track_pos = Math.max(0, (1 - (track.getBoundingClientRect().bottom - window.innerHeight) / (window.innerHeight * 2)));
|
||||
let r = interpolate(255, track_pos, 0);
|
||||
let g = interpolate(235, track_pos, 20);
|
||||
let b = interpolate(205, track_pos, 40);
|
||||
track.style.backgroundColor = "rgb(" + r + ", " + g + ", " + b + ")";
|
||||
if (track_pos > 0.4) {
|
||||
track.style.color = "black";
|
||||
}
|
||||
else {
|
||||
track.style.color = "white";
|
||||
}
|
||||
}
|
||||
onscroll();
|
||||
|
||||
window.addEventListener("scroll", onscroll);
|
||||
window.addEventListener("wheel", onscroll);
|
||||
window.addEventListener("keydown", onscroll);
|
||||
417
output/crexpo10/res/Prometheus.svg
Executable file
@@ -0,0 +1,417 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="302.57745"
|
||||
height="420.28168"
|
||||
viewBox="0 0 80.056949 111.19952"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
sodipodi:docname="Prometheus.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="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="1.4823794"
|
||||
inkscape:cx="115.35509"
|
||||
inkscape:cy="187.53634"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1043"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect40"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect39"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect37"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect35"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect33"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect31"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect30"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect29"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect28"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect27"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect13"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect12"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect11"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect10"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect9"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect7"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect6"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect5"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect4"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect3"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect2"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect1"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-10.965392,4.4443245)">
|
||||
<path
|
||||
id="path2"
|
||||
style="fill:#484537;stroke:none;stroke-width:0.264583;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
inkscape:path-effect="#path-effect2"
|
||||
inkscape:original-d="m 28.598494,69.118538 c -0.846533,2.915264 -1.69305,5.83047 -2.539601,8.745793 1.264273,2.379807 2.528521,4.759567 3.792819,7.139422 0.877554,0.178486 1.75509,0.356968 2.632662,0.535457 0.609826,0.342098 1.219639,0.684188 1.829477,1.026292 1.888973,4.483296 3.777908,8.966502 5.666918,13.449888 -0.04462,-0.0149 -0.08923,-0.02973 -0.133863,-0.0446 -1.368668,-0.586488 -2.73675,-1.172724 -4.105168,-1.759105 -5.267927,0.416474 -10.535685,0.832936 -15.803447,1.249397 -0.16361,-0.133863 -0.327224,-0.267729 -0.490835,-0.401593 -0.779761,-0.873978 -1.559536,-1.747972 -2.339285,-2.621937 -1.076053,0.296287 -2.152143,0.592583 -3.228211,0.888874 0.78911,1.142893 1.578226,2.285794 2.367335,3.428684 0.308156,0.31235 0.616314,0.6247 0.92447,0.93705 0.07057,0.91669 0.141136,1.83339 0.211703,2.75008 -0.504896,-0.34849 -1.009792,-0.69697 -1.514693,-1.04545 0.04854,0.84723 0.09708,1.69444 0.14562,2.54167 1.457473,-0.0317 2.914946,-0.0634 4.372408,-0.0951 -0.718733,-1.92894 -1.437459,-3.85786 -2.156211,-5.78685 7.341306,2.12004 14.682155,4.23994 22.023482,6.35998 0.132008,-0.5708 0.264006,-1.14155 0.396015,-1.71235 0.431352,0.26029 0.862683,0.52058 1.294021,0.78087 0.892447,-0.0595 1.784855,-0.11898 2.677284,-0.17848 0.446223,-4.00113 0.892419,-8.002024 1.338642,-12.003155 -0.98169,-3.019441 -1.963341,-6.038762 -2.945012,-9.058143"
|
||||
d="m 28.598494,69.118538 c -0.846534,2.915264 -1.69305,5.83047 -1.484189,8.478035 0.208861,2.647565 1.473109,5.027325 2.544035,6.306495 1.070926,1.279171 1.948462,1.457653 2.692161,1.717946 0.743699,0.260294 1.353512,0.602384 2.602917,3.015084 1.249406,2.4127 3.138341,6.895906 4.060531,9.130164 0.92219,2.234258 0.87759,2.219399 0.170939,1.918719 -0.70665,-0.300679 -2.074732,-0.886915 -5.392904,-0.971868 -3.318173,-0.08495 -8.585931,0.331508 -11.301617,0.472807 -2.715686,0.141299 -2.8793,0.0074 -3.350986,-0.496488 -0.471686,-0.503921 -1.251461,-1.377915 -2.179362,-1.666754 -0.927901,-0.288839 -2.003991,0.0075 -2.14747,0.727049 -0.143479,0.719592 0.645637,1.862493 1.19427,2.590113 0.548632,0.72762 0.85679,1.03997 1.046152,1.65449 0.189361,0.61452 0.25993,1.53122 0.04276,1.81532 -0.217166,0.28411 -0.722061,-0.0644 -0.95024,0.185 -0.228179,0.24937 -0.179639,1.09658 0.573367,1.50434 0.753007,0.40777 2.21048,0.37607 2.579844,-0.60425 0.369365,-0.98032 -0.349361,-2.90924 2.961917,-2.81372 3.311277,0.0955 10.652125,2.21543 14.388793,2.99005 3.736668,0.77462 3.868665,0.20387 4.150344,0.0486 0.281679,-0.15525 0.713012,0.10503 1.374905,0.20543 0.661893,0.1004 1.554301,0.0409 2.223627,-1.98941 0.669326,-2.03031 1.115522,-6.031204 0.847788,-9.54149 -0.267733,-3.510286 -1.249384,-6.529607 -2.231055,-9.548988"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccc"
|
||||
transform="matrix(1.4824084,0,0,1.4824084,-10.967458,-50.002867)" />
|
||||
<path
|
||||
style="fill:#484537;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 44.425343,87.714811 c 3.870388,-0.799319 7.740779,-1.598639 11.274646,-2.467867 3.533867,-0.869229 6.731012,-1.808308 9.065916,-2.319947 2.334904,-0.51164 3.807274,-0.595776 4.501434,-0.532671 0.69416,0.06311 0.610024,0.273445 -0.0631,1.872115 -0.673124,1.598671 -1.935159,4.585487 -2.061369,7.55144 -0.126211,2.965954 0.883417,5.910698 0.609959,9.087009 -0.273457,3.17631 -1.829969,6.58381 -2.334811,8.64524 -0.504843,2.06144 0.04204,2.7766 1.451397,2.65038 1.409354,-0.12621 3.681014,-1.09377 6.121092,-1.19895 2.440077,-0.10517 5.04824,0.65204 6.548083,0.59247 1.499842,-0.0596 1.891101,-0.93592 2.006792,-1.46179 0.115692,-0.52587 -0.0442,-0.70122 -1.733343,-1.16753 -1.689146,-0.46631 -4.907269,-1.22351 -6.495444,-1.81251 -1.588175,-0.58899 -1.546107,-1.00967 -1.128286,-2.63197 0.41782,-1.6223 1.211371,-4.44613 2.178974,-9.410353 0.967604,-4.964223 2.109224,-12.068669 2.36452,-15.810255 C 76.987097,75.558035 76.356071,75.17942 75.5357,74.52733 74.715329,73.87524 73.705703,72.949749 69.477638,72.346525 65.249572,71.743301 57.80343,71.462411 50.357134,71.181515"
|
||||
id="path4"
|
||||
inkscape:path-effect="#path-effect5"
|
||||
inkscape:original-d="m 44.425343,87.714811 c 3.870388,-0.799319 7.740779,-1.598639 11.611168,-2.397958 3.197345,-0.939138 6.39449,-1.878217 9.591836,-2.817355 1.472462,-0.08414 2.944832,-0.168277 4.417293,-0.252418 -0.08414,0.210352 -0.168277,0.420691 -0.252418,0.631042 -1.262108,2.98699 -2.524143,5.973806 -3.786251,8.960795 1.009687,2.944918 2.019315,5.889662 3.029003,8.834583 -1.556601,3.4077 -3.113114,6.8152 -4.66971,10.22288 0.546911,0.71519 1.093794,1.43035 1.640707,2.14554 2.271797,-0.96762 4.543457,-1.93518 6.815254,-2.9028 2.608358,0.75727 5.216521,1.51448 7.824917,2.27176 0.391288,-0.87642 0.782546,-1.75277 1.173824,-2.62916 -0.159893,-0.17535 -0.31978,-0.3507 -0.479677,-0.52605 -3.218397,-0.75727 -6.436521,-1.51447 -9.654941,-2.27175 0.04207,-0.42071 0.08414,-0.84139 0.126209,-1.26209 0.793572,-2.8239 1.587123,-5.64773 2.380691,-8.471622 1.141638,-7.104554 2.283258,-14.209 3.424894,-21.313546 -0.631045,-0.378626 -1.262071,-0.757242 -1.893126,-1.135875 -1.009687,-0.925547 -2.019313,-1.851038 -3.029,-2.776585 C 65.249572,71.743301 57.80343,71.462411 50.357134,71.181515"
|
||||
sodipodi:nodetypes="cccccccccccccccccccc"
|
||||
transform="matrix(1.0508776,0,0,1.0508776,-5.6961984,-13.555246)" />
|
||||
<path
|
||||
style="fill:#484537;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 28.309133,67.482212 c 1.060086,-5.408477 4.069636,-14.303253 8.324462,-20.236842 4.254825,-5.933588 9.754476,-8.905453 13.436864,-7.256015 3.682388,1.649438 5.547076,7.919983 3.874651,13.237134 -1.672424,5.317151 -6.881756,9.680268 -8.532088,12.576975 -1.650331,2.896707 0.258582,4.326678 0.939598,7.418648 0.681017,3.09197 0.134125,7.845723 -1.527646,10.432999 -1.661771,2.587275 -4.438299,3.007961 -7.256981,1.493427 -2.818682,-1.514535 -5.679348,-4.964161 -7.554438,-7.650026 -1.875089,-2.685866 -2.764509,-4.607824 -1.704422,-10.0163 z"
|
||||
id="path5"
|
||||
inkscape:path-effect="#path-effect6"
|
||||
inkscape:original-d="m 26.359608,70.968692 c 3.009611,-8.894957 6.019162,-17.789733 9.028833,-26.684868 5.499979,-2.972043 10.99963,-5.943907 16.499607,-8.915948 1.864798,6.270917 3.729487,12.541462 5.594286,18.812382 -5.209648,4.363382 -10.41898,8.726499 -15.628633,13.089885 1.90899,1.430028 3.817903,2.859999 5.72685,4.289996 -0.546914,4.753943 -1.093806,9.507696 -1.640709,14.261544 -2.776639,0.420703 -5.553167,0.841389 -8.329751,1.262084 -2.86078,-3.449764 -5.721446,-6.89939 -8.582169,-10.349085 -0.889456,-1.922036 -1.778876,-3.843994 -2.668314,-5.76599 z"
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
transform="translate(2.0193337,-10.601502)" />
|
||||
<path
|
||||
style="fill:#ff0000;stroke:#000000;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="M 25.61268,11.51232 C 24.363281,9.4299878 23.113882,7.3476561 22.355315,6.2916162 c -0.758566,-1.05604 -1.026289,-1.0857869 1.844414,-2.4690776 2.870704,-1.3832908 8.879598,-4.12001497 14.308582,-4.01586874 5.428984,0.10414623 10.277746,3.04909984 12.672426,7.79390654 2.394681,4.7448066 2.335187,11.2891466 2.840907,15.5876946 0.50572,4.298548 1.576613,6.351093 2.171566,7.481503 0.594952,1.130409 0.713941,1.338639 -0.312373,0.490813 -1.026315,-0.847826 -3.197845,-2.751633 -4.476995,-4.848862 -1.27915,-2.097228 -1.665861,-4.387747 -2.394688,-5.577652 -0.728827,-1.189904 -1.79972,-1.279145 -2.870634,-1.368388"
|
||||
id="path10"
|
||||
inkscape:path-effect="#path-effect11"
|
||||
inkscape:original-d="M 25.61268,11.51232 C 24.363281,9.4299877 23.113882,7.3476561 21.864483,5.2653244 21.596749,5.2355763 21.329026,5.2058292 21.061298,5.1760818 27.070433,2.4392481 33.079327,-0.29747596 39.08834,-3.0342549 c 4.848955,2.94507101 9.697717,5.8900242 14.546574,8.8350362 -0.0595,6.5446017 -0.118988,13.0889417 -0.178485,19.6334127 1.070936,2.052625 2.141829,4.10517 3.21274,6.157751 0.118994,0.208238 0.237982,0.416468 0.356971,0.6247 -2.171618,-1.903883 -4.343149,-3.80769 -6.514722,-5.711536 -0.386728,-2.290612 -0.773438,-4.581131 -1.160155,-6.871696 -1.070936,-0.08924 -2.141829,-0.178485 -3.212743,-0.267728"
|
||||
transform="matrix(-0.98498175,-0.17265847,-0.17265847,0.98498175,94.501079,2.6170242)" />
|
||||
<path
|
||||
style="fill:#484537;stroke:#000000;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 82.549578,49.797473 c -0.178485,-2.528545 -0.356967,-5.05704 0.509429,-6.001552 0.866397,-0.944512 2.777642,-0.304952 3.982444,-0.423945 1.204803,-0.118993 1.703053,-0.996509 1.788584,-1.658402 0.08553,-0.661894 -0.241688,-1.1081 -0.247622,-1.476081 -0.0059,-0.367981 0.30943,-0.657723 0.294556,-0.955203 -0.01487,-0.29748 -0.359976,-0.602679 -0.382406,-0.840842 -0.02243,-0.238164 0.277825,-0.409273 0.277825,-0.796 0,-0.386726 -0.300248,-0.989026 0.08508,-1.364564 0.385324,-0.375539 1.456214,-0.524273 1.381856,-1.282837 -0.07436,-0.758565 -1.293985,-2.126928 -2.231047,-3.822555 -0.937061,-1.695627 -1.591495,-3.718422 -2.037714,-4.744734 -0.446219,-1.026312 -0.684197,-1.056059 -3.212745,0.788292 -2.528548,1.844351 -7.347563,5.562726 -10.054642,7.808707 -2.707079,2.24598 -3.302031,3.019418 -2.751356,4.466488 0.550675,1.44707 2.246909,3.567687 2.863657,5.3958 0.616748,1.828113 0.153993,3.363617 -0.308771,4.899153"
|
||||
id="path11"
|
||||
inkscape:path-effect="#path-effect12"
|
||||
inkscape:original-d="m 82.549578,49.797473 c -0.178485,-2.528545 -0.356968,-5.05704 -0.535456,-7.585636 1.911282,0.639572 3.822527,1.279132 5.733849,1.918718 0.498283,-0.877572 0.996533,-1.755088 1.494817,-2.632662 -0.327224,-0.446212 -0.654442,-0.892418 -0.981671,-1.338641 0.315363,-0.28974 0.630727,-0.579481 0.946097,-0.869229 -0.345119,-0.305213 -0.690221,-0.610412 -1.035341,-0.915626 0.300261,-0.171113 0.600515,-0.342222 0.900781,-0.513338 -0.300266,-0.602337 -0.600514,-1.204637 -0.900781,-1.806976 1.070915,-0.148738 2.141805,-0.297471 3.212741,-0.446212 -1.21965,-1.36839 -2.439279,-2.736752 -3.658955,-4.105169 -0.654447,-2.022837 -1.308881,-4.045632 -1.963341,-6.06851 -0.237979,-0.02974 -0.475956,-0.05949 -0.713941,-0.08924 -4.81911,3.71845 -9.638125,7.436825 -14.457333,11.155348 -0.59495,0.773438 -1.189903,1.546875 -1.784855,2.320313 1.696302,2.120702 3.392536,4.241319 5.088805,6.361979 -0.462773,1.535566 -0.925528,3.07107 -1.388292,4.606606"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
transform="rotate(19.975574,115.57208,-35.055561)" />
|
||||
<path
|
||||
style="fill:#000000;stroke:#000000;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 26.133263,33.004958 c -0.104117,-1.085786 -0.31235,-3.257362 0.22312,-4.477017 0.53547,-1.219655 1.81459,-1.487378 2.796268,-1.888975 0.981677,-0.401598 1.665858,-0.937044 2.007956,-1.680743 0.342097,-0.743699 0.342097,-1.695603 0.282599,-2.201313 -0.0595,-0.505711 -0.178484,-0.565205 -1.740262,-0.520581 -1.561779,0.04462 -4.566226,0.193358 -6.083353,0.163608 -1.517127,-0.02975 -1.546873,-0.237979 -1.650991,-1.160171 -0.104118,-0.922191 -0.2826,-2.558276 -0.342093,-3.406085 -0.05949,-0.847808 -3e-6,-0.907299 0.327227,-0.788305 0.327229,0.118993 0.922169,0.416463 1.799735,-0.01489 0.877565,-0.431352 2.037698,-1.591485 2.30542,-2.543415 0.267722,-0.951931 -0.356964,-1.695606 -0.594943,-2.082325 -0.237979,-0.386718 -0.08924,-0.416465 2.11212,-1.442776 2.201364,-1.0263122 6.455186,-3.0491088 9.816688,-3.0490885 3.361503,2.04e-5 5.830504,2.0228162 7.198897,4.9529925 1.368393,2.930177 1.636116,6.76754 1.323757,9.370469 -0.312359,2.602928 -1.20477,3.971291 -1.665857,4.729855 -0.461087,0.758565 -0.490833,0.907299 0.04464,1.665878 0.535469,0.758578 1.636107,2.126939 2.141818,2.766514 0.505711,0.639575 0.416466,0.55033 -0.505728,0.520582 -0.922193,-0.02975 -2.677267,-3e-6 -3.584569,-0.08925 -0.907302,-0.08925 -0.966796,-0.297476 -1.264277,-1.398158 -0.297482,-1.100681 -0.832927,-3.093729 -1.234522,-4.0754 -0.401594,-0.981671 -0.669319,-0.951925 -1.294027,-0.892429 -0.624709,0.0595 -1.606361,0.148737 -2.126944,0.26773 -0.520584,0.118992 -0.580077,0.267726 -0.580076,1.026303 0,0.758577 0.05949,2.126941 0.07437,3.584587 0.01487,1.457647 -0.01487,3.004491 -1.636148,4.417515 -1.621275,1.413024 -4.833951,2.692144 -6.440322,2.558265 -1.60637,-0.133879 -1.60637,-1.680723 -1.60637,-2.45416 0,-0.773438 -10e-6,-0.773434 -0.104126,-1.859221 z"
|
||||
id="path9"
|
||||
inkscape:path-effect="#path-effect10"
|
||||
inkscape:original-d="m 26.237379,34.090745 c -0.208233,-2.171573 -0.416466,-4.343149 -0.624699,-6.514725 1.279173,-0.267732 2.558293,-0.535456 3.83744,-0.803185 0.684209,-0.535466 1.36839,-1.070912 2.052584,-1.606369 0,-0.951942 0,-1.903846 0,-2.855769 -0.118994,-0.0595 -0.237982,-0.118991 -0.35697,-0.178486 -3.004569,0.148741 -6.009016,0.297476 -9.013523,0.446214 -0.02975,-0.208237 -0.0595,-0.416466 -0.08924,-0.624699 -0.17849,-1.636151 -0.356972,-3.272236 -0.535457,-4.908353 0.0595,-0.0595 0.11899,-0.118991 0.178485,-0.178486 0.594964,0.297482 1.189904,0.594952 1.784856,0.892428 1.160179,-1.16018 2.320312,-2.320313 3.480468,-3.480469 -0.624711,-0.743705 -1.249398,-1.48738 -1.874098,-2.23107 0.148741,-0.02975 0.297476,-0.0595 0.446214,-0.08924 4.253991,-2.0228775 8.507813,-4.0456734 12.761718,-6.0685101 2.4691,2.0228772 4.938101,4.0456731 7.407153,6.0685101 0.267732,3.837516 0.535456,7.674879 0.803185,11.512319 -0.892447,1.368417 -1.784858,2.736779 -2.677284,4.105167 -0.02975,0.148741 -0.05949,0.297477 -0.08924,0.446215 1.100685,1.368417 2.201323,2.736778 3.301984,4.105169 -0.08924,-0.08924 -0.178485,-0.178485 -0.267729,-0.267729 -1.755143,0.02975 -3.510217,0.0595 -5.265325,0.08924 -0.05949,-0.208238 -0.118988,-0.416468 -0.178485,-0.6247 -0.535467,-1.99313 -1.070912,-3.986178 -1.60637,-5.979267 -0.267732,0.02975 -0.535456,0.0595 -0.803185,0.08924 -0.981689,0.08924 -1.963341,0.178486 -2.945011,0.267729 -0.0595,0.148741 -0.118991,0.297476 -0.178485,0.446214 0.0595,1.368416 0.118988,2.73678 0.178485,4.105168 -0.02975,1.546905 -0.0595,3.093749 -0.08924,4.640625 -3.212804,1.279173 -6.42548,2.558293 -9.638221,3.837439 0,-1.546905 0,-3.093749 0,-4.640624 z"
|
||||
transform="matrix(-0.98498175,-0.17265847,-0.17265847,0.98498175,94.501079,2.6170242)" />
|
||||
<path
|
||||
style="fill:#484537;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 48.110754,54.746432 c 0.476687,2.144229 0.953368,4.288434 2.204167,5.599449 1.250799,1.311014 3.275663,1.788781 4.823159,3.012615 1.547495,1.223834 2.6176,3.193725 4.475735,4.727086 1.858134,1.533361 4.504252,2.63016 6.184921,3.283742 1.68067,0.653581 2.395847,0.863927 5.382831,-0.776816 2.986985,-1.640744 8.24556,-5.132438 10.895937,-6.92039 2.650376,-1.787953 2.692445,-1.872092 2.187601,-2.52418 -0.504845,-0.652088 -1.55656,-1.872078 -2.166568,-2.503121 -0.610009,-0.631042 -0.778284,-0.673111 -2.923867,0.2314 -2.145583,0.904512 -6.268308,2.755531 -8.519027,3.533813 -2.250719,0.778282 -2.629337,0.483802 -3.236362,-0.637657 -0.607026,-1.121459 -1.4424,-3.06977 -2.683475,-4.037389 -1.241075,-0.967618 -2.887732,-0.954422 -4.105238,-2.533115 -1.217506,-1.578694 -2.005786,-4.749087 -3.28893,-6.873637 -1.283145,-2.124551 -3.061035,-3.203023 -4.83896,-4.281516"
|
||||
id="path27"
|
||||
inkscape:path-effect="#path-effect28"
|
||||
inkscape:original-d="m 48.110754,54.746432 c 0.476687,2.144229 0.953368,4.288434 1.43006,6.432686 2.024906,0.477777 4.04977,0.955545 6.074653,1.433316 1.070108,1.969896 2.140213,3.939787 3.210327,5.909694 2.646155,1.096815 5.292273,2.193614 7.938428,3.290429 0.715184,0.210348 1.430361,0.420695 2.145543,0.631041 5.258787,-3.491833 10.517362,-6.983528 15.776046,-10.475293 0.04207,-0.08414 0.08414,-0.168278 0.126206,-0.252418 -1.051756,-1.220038 -2.103472,-2.440027 -3.155209,-3.660042 -0.16828,-0.04207 -0.336555,-0.08414 -0.504833,-0.126209 -4.122888,1.851094 -8.245612,3.702114 -12.368419,5.553168 -0.378632,-0.294492 -0.75725,-0.588971 -1.135874,-0.883457 -0.835427,-1.948433 -1.670801,-3.896744 -2.506228,-5.845178 -1.646723,0.0132 -3.29338,0.0264 -4.940065,0.03959 -0.788327,-3.170584 -1.576606,-6.340977 -2.364934,-9.511562 -1.777962,-1.078516 -3.555852,-2.156988 -5.333777,-3.235481"
|
||||
sodipodi:nodetypes="cccccccccccccccc"
|
||||
transform="translate(2.0193337,-10.601502)" />
|
||||
<g
|
||||
id="g40"
|
||||
transform="matrix(0.6231213,0,0,0.6261038,24.1072,16.22929)">
|
||||
<g
|
||||
id="g39"
|
||||
transform="matrix(0.48503503,0,0,0.61983988,31.379608,16.44708)">
|
||||
<path
|
||||
style="fill:#1a1a1a;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 119.62449,14.755865 c 0.9676,1.39881 2.92379,3.986028 2.57671,7.330613 -0.34708,3.344586 -2.99735,7.446195 -3.34443,11.032688 -0.34708,3.586494 1.60907,6.657439 5.1009,8.361287 3.49184,1.703847 8.51893,2.040389 13.59893,2.071942 5.07999,0.03155 10.21229,-0.241889 12.88345,-3.321099 2.67117,-3.07921 2.88095,-8.964008 1.52421,-15.022021 -1.35674,-6.058014 -4.27999,-12.289087 -5.73111,-15.3731126 -1.45113,-3.0840253 -1.43009,-3.0209023 -1.27113,-1.7414906 0.15897,1.2794117 0.45585,3.7750462 0.18811,5.9521162 -0.26774,2.17707 -1.1001,4.035544 -1.55839,5.027957 -0.45828,0.992414 -0.54241,1.118592 -1.09083,-0.446876 -0.54843,-1.565468 -1.56109,-4.822424 -2.63958,-7.23095 -1.0785,-2.408525 -2.22271,-3.9683298 -2.79471,-5.8954535 -0.57201,-1.9271237 -0.57173,-4.2212968 -0.56108,-5.38951434 0.0106,-1.16821756 0.0317,-1.21031176 -0.46277,0.872933 -0.49447,2.08324474 -1.50437,6.29153494 -3.14536,7.08464614 -1.64099,0.7931112 -3.91292,-1.8291083 -5.09161,-3.1664536 -1.17869,-1.3373454 -1.26414,-1.3898005 -0.94851,0.3630667 0.31564,1.7528673 1.03233,5.3110246 1.18033,8.1418656 0.148,2.830841 -0.27269,4.934272 -0.5251,6.007036 -0.2524,1.072764 -0.33656,1.114847 -1.77747,-0.136745 -1.44091,-1.251592 -4.23842,-3.796698 -5.64777,-4.964147 -1.40935,-1.167449 -1.43039,-0.957099 -0.46279,0.441712 z"
|
||||
id="path30"
|
||||
inkscape:path-effect="#path-effect31"
|
||||
inkscape:original-d="m 118.63586,13.567399 c 1.95623,2.587276 3.91242,5.174491 5.86868,7.761814 -2.65042,4.101854 -5.30069,8.203462 -7.95112,12.305315 1.95627,3.071131 3.91242,6.142077 5.86869,9.21321 5.0274,0.336562 10.05449,0.673104 15.0819,1.009667 5.13258,-0.273457 10.26488,-0.546899 15.39742,-0.820354 0.20979,-5.884965 0.41957,-11.769763 0.62936,-17.654663 -2.92327,-6.231128 -5.84652,-12.4622 -8.7698,-18.6933449 0.021,0.063104 0.0421,0.1262068 0.0631,0.1893125 0.2969,2.4957276 0.59378,4.9913624 0.89067,7.4870014 -0.83237,1.858501 -1.66473,3.716975 -2.49714,5.575564 -0.0842,0.126213 -0.16829,0.252414 -0.25243,0.378625 -1.01271,-3.257146 -2.02536,-6.514103 -3.03808,-9.771252 -1.14428,-1.5598999 -2.28849,-3.1197046 -3.43277,-4.6796053 2.7e-4,-2.2943469 5.5e-4,-4.58852 8.2e-4,-6.8828977 0.021,-0.042071 0.0421,-0.084138 0.0631,-0.1262087 -1.00996,4.2085468 -2.01986,8.4168369 -3.02982,12.6253787 -2.27202,-2.6223184 -4.54395,-5.2445397 -6.81592,-7.8668012 -0.0854,-0.052442 -0.17086,-0.1048835 -0.25629,-0.1573255 0.7167,3.5581761 1.43339,7.1163347 2.15009,10.6745017 -0.4207,2.103515 -0.84139,4.206946 -1.26209,6.310418 -0.0841,0.04207 -0.16827,0.08414 -0.25241,0.126209 -2.79768,-2.545254 -5.59519,-5.090363 -8.39286,-7.635606 -0.021,0.21035 -0.0421,0.420694 -0.0631,0.631042 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccc" />
|
||||
<path
|
||||
style="fill:#550000;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 119.62449,14.755865 c 0.9676,1.39881 2.92379,3.986028 2.57671,7.330613 -0.34708,3.344586 -2.99735,7.446195 -3.34443,11.032688 -0.34708,3.586494 1.60907,6.657439 5.1009,8.361287 3.49184,1.703847 8.51893,2.040389 13.59893,2.071942 5.07999,0.03155 10.21229,-0.241889 12.88345,-3.321099 2.67117,-3.07921 2.88095,-8.964008 1.52421,-15.022021 -1.35674,-6.058014 -4.27999,-12.289087 -5.73111,-15.3731126 -1.45113,-3.0840253 -1.43009,-3.0209023 -1.27113,-1.7414906 0.15897,1.2794117 0.45585,3.7750462 0.18811,5.9521162 -0.26774,2.17707 -1.1001,4.035544 -1.55839,5.027957 -0.45828,0.992414 -0.54241,1.118592 -1.09083,-0.446876 -0.54843,-1.565468 -1.56109,-4.822424 -2.63958,-7.23095 -1.0785,-2.408525 -2.22271,-3.9683298 -2.79471,-5.8954535 -0.57201,-1.9271237 -0.57173,-4.2212968 -0.56108,-5.38951434 0.0106,-1.16821756 0.0317,-1.21031176 -0.46277,0.872933 -0.49447,2.08324474 -1.50437,6.29153494 -3.14536,7.08464614 -1.64099,0.7931112 -3.91292,-1.8291083 -5.09161,-3.1664536 -1.17869,-1.3373454 -1.26414,-1.3898005 -0.94851,0.3630667 0.31564,1.7528673 1.03233,5.3110246 1.18033,8.1418656 0.148,2.830841 -0.27269,4.934272 -0.5251,6.007036 -0.2524,1.072764 -0.33656,1.114847 -1.77747,-0.136745 -1.44091,-1.251592 -4.23842,-3.796698 -5.64777,-4.964147 -1.40935,-1.167449 -1.43039,-0.957099 -0.46279,0.441712 z"
|
||||
id="path31"
|
||||
inkscape:path-effect="#path-effect33"
|
||||
inkscape:original-d="m 118.63586,13.567399 c 1.95623,2.587276 3.91242,5.174491 5.86868,7.761814 -2.65042,4.101854 -5.30069,8.203462 -7.95112,12.305315 1.95627,3.071131 3.91242,6.142077 5.86869,9.21321 5.0274,0.336562 10.05449,0.673104 15.0819,1.009667 5.13258,-0.273457 10.26488,-0.546899 15.39742,-0.820354 0.20979,-5.884965 0.41957,-11.769763 0.62936,-17.654663 -2.92327,-6.231128 -5.84652,-12.4622 -8.7698,-18.6933449 0.021,0.063104 0.0421,0.1262068 0.0631,0.1893125 0.2969,2.4957276 0.59378,4.9913624 0.89067,7.4870014 -0.83237,1.858501 -1.66473,3.716975 -2.49714,5.575564 -0.0842,0.126213 -0.16829,0.252414 -0.25243,0.378625 -1.01271,-3.257146 -2.02536,-6.514103 -3.03808,-9.771252 -1.14428,-1.5598999 -2.28849,-3.1197046 -3.43277,-4.6796053 2.7e-4,-2.2943469 5.5e-4,-4.58852 8.2e-4,-6.8828977 0.021,-0.042071 0.0421,-0.084138 0.0631,-0.1262087 -1.00996,4.2085468 -2.01986,8.4168369 -3.02982,12.6253787 -2.27202,-2.6223184 -4.54395,-5.2445397 -6.81592,-7.8668012 -0.0854,-0.052442 -0.17086,-0.1048835 -0.25629,-0.1573255 0.7167,3.5581761 1.43339,7.1163347 2.15009,10.6745017 -0.4207,2.103515 -0.84139,4.206946 -1.26209,6.310418 -0.0841,0.04207 -0.16827,0.08414 -0.25241,0.126209 -2.79768,-2.545254 -5.59519,-5.090363 -8.39286,-7.635606 -0.021,0.21035 -0.0421,0.420694 -0.0631,0.631042 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccc"
|
||||
transform="translate(0,-0.17848557)" />
|
||||
<path
|
||||
style="fill:#ff0000;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 119.62449,14.755865 c 0.9676,1.39881 2.92379,3.986028 2.57671,7.330613 -0.34708,3.344586 -2.99735,7.446195 -3.34443,11.032688 -0.34708,3.586494 1.60907,6.657439 5.1009,8.361287 3.49184,1.703847 8.51893,2.040389 13.59893,2.071942 5.07999,0.03155 10.21229,-0.241889 12.88345,-3.321099 2.67117,-3.07921 2.88095,-8.964008 1.52421,-15.022021 -1.35674,-6.058014 -4.27999,-12.289087 -5.73111,-15.3731126 -1.45113,-3.0840253 -1.43009,-3.0209023 -1.27113,-1.7414906 0.15897,1.2794117 0.45585,3.7750462 0.18811,5.9521162 -0.26774,2.17707 -1.1001,4.035544 -1.55839,5.027957 -0.45828,0.992414 -0.54241,1.118592 -1.09083,-0.446876 -0.54843,-1.565468 -1.56109,-4.822424 -2.63958,-7.23095 -1.0785,-2.408525 -2.22271,-3.9683298 -2.79471,-5.8954535 -0.57201,-1.9271237 -0.57173,-4.2212968 -0.56108,-5.38951434 0.0106,-1.16821756 0.0317,-1.21031176 -0.46277,0.872933 -0.49447,2.08324474 -1.50437,6.29153494 -3.14536,7.08464614 -1.64099,0.7931112 -3.91292,-1.8291083 -5.09161,-3.1664536 -1.17869,-1.3373454 -1.26414,-1.3898005 -0.94851,0.3630667 0.31564,1.7528673 1.03233,5.3110246 1.18033,8.1418656 0.148,2.830841 -0.27269,4.934272 -0.5251,6.007036 -0.2524,1.072764 -0.33656,1.114847 -1.77747,-0.136745 -1.44091,-1.251592 -4.23842,-3.796698 -5.64777,-4.964147 -1.40935,-1.167449 -1.43039,-0.957099 -0.46279,0.441712 z"
|
||||
id="path33"
|
||||
inkscape:path-effect="#path-effect35"
|
||||
inkscape:original-d="m 118.63586,13.567399 c 1.95623,2.587276 3.91242,5.174491 5.86868,7.761814 -2.65042,4.101854 -5.30069,8.203462 -7.95112,12.305315 1.95627,3.071131 3.91242,6.142077 5.86869,9.21321 5.0274,0.336562 10.05449,0.673104 15.0819,1.009667 5.13258,-0.273457 10.26488,-0.546899 15.39742,-0.820354 0.20979,-5.884965 0.41957,-11.769763 0.62936,-17.654663 -2.92327,-6.231128 -5.84652,-12.4622 -8.7698,-18.6933449 0.021,0.063104 0.0421,0.1262068 0.0631,0.1893125 0.2969,2.4957276 0.59378,4.9913624 0.89067,7.4870014 -0.83237,1.858501 -1.66473,3.716975 -2.49714,5.575564 -0.0842,0.126213 -0.16829,0.252414 -0.25243,0.378625 -1.01271,-3.257146 -2.02536,-6.514103 -3.03808,-9.771252 -1.14428,-1.5598999 -2.28849,-3.1197046 -3.43277,-4.6796053 2.7e-4,-2.2943469 5.5e-4,-4.58852 8.2e-4,-6.8828977 0.021,-0.042071 0.0421,-0.084138 0.0631,-0.1262087 -1.00996,4.2085468 -2.01986,8.4168369 -3.02982,12.6253787 -2.27202,-2.6223184 -4.54395,-5.2445397 -6.81592,-7.8668012 -0.0854,-0.052442 -0.17086,-0.1048835 -0.25629,-0.1573255 0.7167,3.5581761 1.43339,7.1163347 2.15009,10.6745017 -0.4207,2.103515 -0.84139,4.206946 -1.26209,6.310418 -0.0841,0.04207 -0.16827,0.08414 -0.25241,0.126209 -2.79768,-2.545254 -5.59519,-5.090363 -8.39286,-7.635606 -0.021,0.21035 -0.0421,0.420694 -0.0631,0.631042 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccc"
|
||||
transform="matrix(0.84899065,0,0,0.71762204,20.77487,12.120367)" />
|
||||
<path
|
||||
style="fill:#d45500;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 119.62449,14.755865 c 0.9676,1.39881 2.92379,3.986028 2.57671,7.330613 -0.34708,3.344586 -2.99735,7.446195 -3.34443,11.032688 -0.34708,3.586494 1.60907,6.657439 5.1009,8.361287 3.49184,1.703847 8.51893,2.040389 13.59893,2.071942 5.07999,0.03155 10.21229,-0.241889 12.88345,-3.321099 2.67117,-3.07921 2.88095,-8.964008 1.52421,-15.022021 -1.35674,-6.058014 -4.27999,-12.289087 -5.73111,-15.3731126 -1.45113,-3.0840253 -1.43009,-3.0209023 -1.27113,-1.7414906 0.15897,1.2794117 0.45585,3.7750462 0.18811,5.9521162 -0.26774,2.17707 -1.1001,4.035544 -1.55839,5.027957 -0.45828,0.992414 -0.54241,1.118592 -1.09083,-0.446876 -0.54843,-1.565468 -1.56109,-4.822424 -2.63958,-7.23095 -1.0785,-2.408525 -2.22271,-3.9683298 -2.79471,-5.8954535 -0.57201,-1.9271237 -0.57173,-4.2212968 -0.56108,-5.38951434 0.0106,-1.16821756 0.0317,-1.21031176 -0.46277,0.872933 -0.49447,2.08324474 -1.50437,6.29153494 -3.14536,7.08464614 -1.64099,0.7931112 -3.91292,-1.8291083 -5.09161,-3.1664536 -1.17869,-1.3373454 -1.26414,-1.3898005 -0.94851,0.3630667 0.31564,1.7528673 1.03233,5.3110246 1.18033,8.1418656 0.148,2.830841 -0.27269,4.934272 -0.5251,6.007036 -0.2524,1.072764 -0.33656,1.114847 -1.77747,-0.136745 -1.44091,-1.251592 -4.23842,-3.796698 -5.64777,-4.964147 -1.40935,-1.167449 -1.43039,-0.957099 -0.46279,0.441712 z"
|
||||
id="path35"
|
||||
inkscape:path-effect="#path-effect37"
|
||||
inkscape:original-d="m 118.63586,13.567399 c 1.95623,2.587276 3.91242,5.174491 5.86868,7.761814 -2.65042,4.101854 -5.30069,8.203462 -7.95112,12.305315 1.95627,3.071131 3.91242,6.142077 5.86869,9.21321 5.0274,0.336562 10.05449,0.673104 15.0819,1.009667 5.13258,-0.273457 10.26488,-0.546899 15.39742,-0.820354 0.20979,-5.884965 0.41957,-11.769763 0.62936,-17.654663 -2.92327,-6.231128 -5.84652,-12.4622 -8.7698,-18.6933449 0.021,0.063104 0.0421,0.1262068 0.0631,0.1893125 0.2969,2.4957276 0.59378,4.9913624 0.89067,7.4870014 -0.83237,1.858501 -1.66473,3.716975 -2.49714,5.575564 -0.0842,0.126213 -0.16829,0.252414 -0.25243,0.378625 -1.01271,-3.257146 -2.02536,-6.514103 -3.03808,-9.771252 -1.14428,-1.5598999 -2.28849,-3.1197046 -3.43277,-4.6796053 2.7e-4,-2.2943469 5.5e-4,-4.58852 8.2e-4,-6.8828977 0.021,-0.042071 0.0421,-0.084138 0.0631,-0.1262087 -1.00996,4.2085468 -2.01986,8.4168369 -3.02982,12.6253787 -2.27202,-2.6223184 -4.54395,-5.2445397 -6.81592,-7.8668012 -0.0854,-0.052442 -0.17086,-0.1048835 -0.25629,-0.1573255 0.7167,3.5581761 1.43339,7.1163347 2.15009,10.6745017 -0.4207,2.103515 -0.84139,4.206946 -1.26209,6.310418 -0.0841,0.04207 -0.16827,0.08414 -0.25241,0.126209 -2.79768,-2.545254 -5.59519,-5.090363 -8.39286,-7.635606 -0.021,0.21035 -0.0421,0.420694 -0.0631,0.631042 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccc"
|
||||
transform="matrix(0.55472495,0,0,0.4876857,61.093265,22.492117)" />
|
||||
<path
|
||||
style="fill:#d4aa00;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 119.62449,14.755865 c 0.9676,1.39881 2.92379,3.986028 2.57671,7.330613 -0.34708,3.344586 -2.99735,7.446195 -3.34443,11.032688 -0.34708,3.586494 1.60907,6.657439 5.1009,8.361287 3.49184,1.703847 8.51893,2.040389 13.59893,2.071942 5.07999,0.03155 10.21229,-0.241889 12.88345,-3.321099 2.67117,-3.07921 2.88095,-8.964008 1.52421,-15.022021 -1.35674,-6.058014 -4.27999,-12.289087 -5.73111,-15.3731126 -1.45113,-3.0840253 -1.43009,-3.0209023 -1.27113,-1.7414906 0.15897,1.2794117 0.45585,3.7750462 0.18811,5.9521162 -0.26774,2.17707 -1.1001,4.035544 -1.55839,5.027957 -0.45828,0.992414 -0.54241,1.118592 -1.09083,-0.446876 -0.54843,-1.565468 -1.56109,-4.822424 -2.63958,-7.23095 -1.0785,-2.408525 -2.22271,-3.9683298 -2.79471,-5.8954535 -0.57201,-1.9271237 -0.57173,-4.2212968 -0.56108,-5.38951434 0.0106,-1.16821756 0.0317,-1.21031176 -0.46277,0.872933 -0.49447,2.08324474 -1.50437,6.29153494 -3.14536,7.08464614 -1.64099,0.7931112 -3.91292,-1.8291083 -5.09161,-3.1664536 -1.17869,-1.3373454 -1.26414,-1.3898005 -0.94851,0.3630667 0.31564,1.7528673 1.03233,5.3110246 1.18033,8.1418656 0.148,2.830841 -0.27269,4.934272 -0.5251,6.007036 -0.2524,1.072764 -0.33656,1.114847 -1.77747,-0.136745 -1.44091,-1.251592 -4.23842,-3.796698 -5.64777,-4.964147 -1.40935,-1.167449 -1.43039,-0.957099 -0.46279,0.441712 z"
|
||||
id="path37"
|
||||
inkscape:path-effect="#path-effect39"
|
||||
inkscape:original-d="m 118.63586,13.567399 c 1.95623,2.587276 3.91242,5.174491 5.86868,7.761814 -2.65042,4.101854 -5.30069,8.203462 -7.95112,12.305315 1.95627,3.071131 3.91242,6.142077 5.86869,9.21321 5.0274,0.336562 10.05449,0.673104 15.0819,1.009667 5.13258,-0.273457 10.26488,-0.546899 15.39742,-0.820354 0.20979,-5.884965 0.41957,-11.769763 0.62936,-17.654663 -2.92327,-6.231128 -5.84652,-12.4622 -8.7698,-18.6933449 0.021,0.063104 0.0421,0.1262068 0.0631,0.1893125 0.2969,2.4957276 0.59378,4.9913624 0.89067,7.4870014 -0.83237,1.858501 -1.66473,3.716975 -2.49714,5.575564 -0.0842,0.126213 -0.16829,0.252414 -0.25243,0.378625 -1.01271,-3.257146 -2.02536,-6.514103 -3.03808,-9.771252 -1.14428,-1.5598999 -2.28849,-3.1197046 -3.43277,-4.6796053 2.7e-4,-2.2943469 5.5e-4,-4.58852 8.2e-4,-6.8828977 0.021,-0.042071 0.0421,-0.084138 0.0631,-0.1262087 -1.00996,4.2085468 -2.01986,8.4168369 -3.02982,12.6253787 -2.27202,-2.6223184 -4.54395,-5.2445397 -6.81592,-7.8668012 -0.0854,-0.052442 -0.17086,-0.1048835 -0.25629,-0.1573255 0.7167,3.5581761 1.43339,7.1163347 2.15009,10.6745017 -0.4207,2.103515 -0.84139,4.206946 -1.26209,6.310418 -0.0841,0.04207 -0.16827,0.08414 -0.25241,0.126209 -2.79768,-2.545254 -5.59519,-5.090363 -8.39286,-7.635606 -0.021,0.21035 -0.0421,0.420694 -0.0631,0.631042 z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccc"
|
||||
transform="matrix(0.3602994,0,0,0.33439481,87.585591,29.168636)" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#2b1100;stroke:none;stroke-width:0.079375;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 104.90354,58.546938 c -1.06972,-1.742379 -3.20911,-5.227081 -4.42609,-7.13777 -1.216974,-1.910688 -1.51145,-2.247231 -2.563207,-2.710003 -1.051757,-0.462773 -2.860672,-1.051722 -4.185886,-3.134202 -1.325214,-2.08248 -2.166573,-5.658256 -2.461064,-7.4252 -0.294491,-1.766945 -0.04208,-1.724876 1.870479,-1.088394 1.91256,0.636483 5.485041,1.867302 8.582168,1.445822 3.09712,-0.42148 5.71846,-2.495179 7.1134,-3.42695 1.39493,-0.931772 1.5632,-0.721437 2.02598,0.856199 0.46277,1.577637 1.22,4.522387 0.73619,6.646933 -0.48381,2.124546 -2.2086,3.428651 -3.19725,4.375232 -0.98865,0.946581 -1.24106,1.535532 -1.54302,3.714737 -0.30196,2.179206 -0.65343,5.948409 -0.80869,7.817811 -0.15525,1.869402 -0.11425,1.838767 -0.0938,1.823465 0.0205,-0.0153 0.0205,-0.0153 -1.04923,-1.75768 z"
|
||||
id="path39"
|
||||
inkscape:path-effect="#path-effect40"
|
||||
inkscape:original-d="M 105.97325,60.289318 C 103.83382,56.80456 101.69443,53.319857 99.554968,49.835041 99.260476,49.49848 98.966,49.161937 98.671508,48.825376 96.862486,48.236392 95.053571,47.647443 93.244549,47.058459 92.403143,43.482483 91.561784,39.906707 90.720382,36.330748 c 0.25242,0.04207 0.504829,0.08414 0.757251,0.126209 3.572699,1.230895 7.14518,2.461714 10.717887,3.692612 2.62154,-2.07386 5.24288,-4.147559 7.86447,-6.221452 0.16828,0.210355 0.33655,0.42069 0.50484,0.631042 0.75726,2.944919 1.51448,5.889669 2.27175,8.834585 -1.72488,1.304176 -3.44967,2.608276 -5.17455,3.912457 -0.25242,0.588986 -0.50483,1.177935 -0.75725,1.76692 -0.3515,3.769427 -0.70297,7.53863 -1.05447,11.308066 0.041,-0.03062 0.082,-0.06125 0.12294,-0.09187 z"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
transform="rotate(9.4646355,79.100216,16.214385)" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 41 KiB |
BIN
output/crexpo10/res/bodhisattva.png
Executable file
|
After Width: | Height: | Size: 54 KiB |
1058
output/crexpo10/res/bodhisattva.svg
Executable file
|
After Width: | Height: | Size: 103 KiB |
2360
output/crexpo10/res/closing-fresco.svg
Executable file
|
After Width: | Height: | Size: 218 KiB |
77
output/crexpo10/res/creepingdarkness-tile.svg
Executable file
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="800"
|
||||
height="400"
|
||||
viewBox="0 0 211.66666 105.83333"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
sodipodi:docname="creepingdarkness-tile.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="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="0.52410025"
|
||||
inkscape:cx="337.72165"
|
||||
inkscape:cy="-124.02208"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1043"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect2"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:#ffebcd;fill-opacity:1;stroke:none;stroke-width:0.793753"
|
||||
id="rect1"
|
||||
width="211.66667"
|
||||
height="110.26068"
|
||||
x="0"
|
||||
y="0" />
|
||||
<rect
|
||||
style="fill:#001428;fill-opacity:1;stroke:none;stroke-width:0.793755"
|
||||
id="rect2"
|
||||
width="211.66667"
|
||||
height="35.323265"
|
||||
x="0"
|
||||
y="72.278702" />
|
||||
<path
|
||||
style="fill:#001428;fill-opacity:1;stroke:none;stroke-width:0.307616"
|
||||
d="M -0.29600691,24.718147 C -0.36368613,21.7392 -0.32177582,21.77905 0.39790006,19.971477 1.1175759,18.163905 2.5150172,14.508913 3.4871896,12.555208 c 0.9721725,-1.953706 1.5190753,-2.206122 1.8977025,-0.628484 0.3786272,1.577639 0.5889702,4.985196 1.830042,7.530415 1.2410717,2.545219 3.5127769,4.227963 6.1000769,3.849314 2.5873,-0.37865 5.490035,-2.81863 8.056294,-6.289404 2.566259,-3.470775 4.795895,-7.9721163 5.973841,-8.9186531 1.177947,-0.9465369 1.304152,1.6617172 1.998311,3.8493471 0.694159,2.187629 1.956216,3.95451 4.185929,4.27002 2.229713,0.31551 5.426927,-0.820343 6.920391,-3.323514 1.493465,-2.503171 1.283122,-6.3734839 1.809003,-7.2569216 0.52588,-0.8834378 1.787939,1.2199935 2.797613,4.8800876 1.009675,3.660095 1.766909,8.876603 2.902799,10.790749 1.135891,1.914147 2.650361,0.525883 4.122806,-0.715177 1.472446,-1.24106 2.902778,-2.334844 3.807275,-2.040341 0.904497,0.294503 1.283114,1.977247 2.313832,2.292758 1.030718,0.31551 2.713463,-0.736205 3.744169,-3.029026 1.030706,-2.29282 1.409323,-5.826584 3.260412,-8.1404148 1.851089,-2.3138307 5.174509,-3.4076146 6.709803,-1.6959242 1.535294,1.7116904 1.282411,6.228607 2.58659,7.764173 1.304179,1.535565 4.165322,0.08957 6.584574,-1.30657 2.419251,-1.396138 4.396477,-2.742334 6.28962,-1.101579 1.893143,1.640755 3.702093,6.268302 5.532133,7.803822 1.83004,1.535519 3.681059,-0.02102 5.828172,0.0421 2.147112,0.06312 4.590132,1.74583 6.086322,0.926686 1.49618,-0.819145 2.04535,-4.140044 2.5688,-6.374964 0.52345,-2.234919 1.02111,-3.383587 1.01901,-1.284927 -0.002,2.09866 -0.504,7.444499 -1.01846,10.594386 -0.51447,3.149887 -1.04149,4.103688 -18.921951,6.179279 -17.880462,2.07559 -53.112213,5.272739 -70.817788,3.872487 C -0.0510635,33.694682 -0.22832768,27.697095 -0.29600691,24.718147 Z"
|
||||
id="path2"
|
||||
inkscape:path-effect="#path-effect2"
|
||||
inkscape:original-d="m -0.40559654,21.69935 c 0.0419103,0.03985 0.0838204,0.0797 0.12573055,0.119549 1.39744179,-3.654994 2.79488329,-7.309986 4.19232509,-10.96498 0.5469029,-0.252417 1.093806,-0.504833 1.6407087,-0.75725 0.2103514,3.407694 0.4206946,6.815251 0.6310418,10.222877 2.2717961,1.682812 4.5435014,3.365556 6.8152514,5.048334 2.90285,-2.440077 5.805585,-4.880056 8.708377,-7.320085 2.229725,-4.501521 4.459362,-9.0028625 6.689044,-13.5042941 0.126209,2.6083582 0.252415,5.2166122 0.378624,7.8249181 1.26211,1.766953 2.524167,3.533834 3.786251,5.300751 3.197342,-1.135897 6.394556,-2.27175 9.591836,-3.407625 -0.210351,-3.870467 -0.420695,-7.7407798 -0.631041,-11.6111693 1.262107,2.1035147 2.524167,4.2069453 3.786251,6.310418 0.757263,5.2167163 1.514498,10.4332243 2.271749,15.6498363 1.514531,-1.388319 3.029,-2.776584 4.543502,-4.164876 1.43039,-1.093827 2.860722,-2.187611 4.291084,-3.281417 0.378632,1.682812 0.75725,3.365556 1.135874,5.048334 1.682811,-1.051757 3.365556,-2.103472 5.048335,-3.155209 0.378632,-3.533904 0.757251,-7.067668 1.135875,-10.6015018 3.323553,-1.0938277 6.646973,-2.1876118 9.97046,-3.2814175 -0.252899,4.5171867 -0.505782,9.0341033 -0.758681,13.5512893 2.861257,-1.446055 5.7224,-2.892052 8.583601,-4.338079 1.977302,-1.346249 3.954528,-2.692445 5.931791,-4.038667 1.809023,4.627732 3.617974,9.255279 5.426959,13.882919 1.851094,-1.556601 3.702113,-3.113139 5.55317,-4.669709 2.443168,1.682812 4.886188,3.365522 7.329358,5.048334 0.5492,-3.321102 1.09836,-6.642002 1.64757,-9.963106 0.49769,-1.148737 0.99536,-2.297403 1.49306,-3.446139 -0.50191,5.346057 -1.0038,10.691896 -1.5057,16.03785 -0.52703,0.95382 -1.05405,1.907621 -1.58109,2.861459 C 70.591837,33.298037 35.360086,36.495186 0.12620837,39.692529 -0.05106349,33.694682 -0.22832768,27.697095 -0.40559654,21.69935 Z"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
|
||||
transform="matrix(1.998867,0,0,3.3309277,0.0799765,-15.779427)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
1031
output/crexpo10/res/joshua.svg
Executable file
|
After Width: | Height: | Size: 70 KiB |
236
output/crexpo10/res/shine.svg
Executable file
@@ -0,0 +1,236 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="1920"
|
||||
height="500"
|
||||
viewBox="0 0 507.99999 132.29167"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
sodipodi:docname="shine.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="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:zoom="0.37059484"
|
||||
inkscape:cx="894.50787"
|
||||
inkscape:cy="380.46941"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1043"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<inkscape:path-effect
|
||||
effect="skeletal"
|
||||
id="path-effect20"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
pattern="#path2"
|
||||
copytype="repeated"
|
||||
prop_scale="1.3459273"
|
||||
scale_y_rel="false"
|
||||
spacing="7.15"
|
||||
normal_offset="0"
|
||||
tang_offset="0"
|
||||
prop_units="false"
|
||||
vertical_pattern="false"
|
||||
hide_knot="false"
|
||||
fuse_tolerance="0" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect18"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="skeletal"
|
||||
id="path-effect16"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
pattern="#path2"
|
||||
copytype="repeated"
|
||||
prop_scale="1.3459273"
|
||||
scale_y_rel="false"
|
||||
spacing="7.15"
|
||||
normal_offset="0"
|
||||
tang_offset="0"
|
||||
prop_units="false"
|
||||
vertical_pattern="false"
|
||||
hide_knot="false"
|
||||
fuse_tolerance="0" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect14"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="skeletal"
|
||||
id="path-effect12"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
pattern="#path2"
|
||||
copytype="repeated"
|
||||
prop_scale="0.70780679"
|
||||
scale_y_rel="false"
|
||||
spacing="-1.4"
|
||||
normal_offset="0"
|
||||
tang_offset="0"
|
||||
prop_units="false"
|
||||
vertical_pattern="false"
|
||||
hide_knot="false"
|
||||
fuse_tolerance="0" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect10"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="skeletal"
|
||||
id="path-effect8"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
pattern="#path2"
|
||||
copytype="repeated"
|
||||
prop_scale="1.0709507"
|
||||
scale_y_rel="false"
|
||||
spacing="0"
|
||||
normal_offset="0"
|
||||
tang_offset="0"
|
||||
prop_units="false"
|
||||
vertical_pattern="false"
|
||||
hide_knot="false"
|
||||
fuse_tolerance="0" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect6"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
<inkscape:path-effect
|
||||
effect="skeletal"
|
||||
id="path-effect4"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
pattern="#path2"
|
||||
copytype="repeated"
|
||||
prop_scale="1.0709507"
|
||||
scale_y_rel="false"
|
||||
spacing="9.9"
|
||||
normal_offset="0"
|
||||
tang_offset="0"
|
||||
prop_units="false"
|
||||
vertical_pattern="false"
|
||||
hide_knot="false"
|
||||
fuse_tolerance="0" />
|
||||
<inkscape:path-effect
|
||||
effect="bspline"
|
||||
id="path-effect3"
|
||||
is_visible="true"
|
||||
lpeversion="1.3"
|
||||
weight="33.333333"
|
||||
steps="2"
|
||||
helper_size="0"
|
||||
apply_no_weight="true"
|
||||
apply_with_weight="true"
|
||||
only_selected="false"
|
||||
uniform="false" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<rect
|
||||
style="fill:#001428;fill-opacity:1;stroke:#000000;stroke-width:0.034886;stroke-linecap:square;paint-order:stroke fill markers"
|
||||
id="rect1"
|
||||
width="514.52795"
|
||||
height="172.13861"
|
||||
x="-6.545392"
|
||||
y="-8.0598917" />
|
||||
<path
|
||||
style="fill:#ffebd7;fill-opacity:1;stroke:#000000;stroke-width:0.0354542;stroke-linecap:square;paint-order:stroke fill markers"
|
||||
d="M 6.7837589,120.33521 21.20374,26.130991 41.816419,120.84433 Z"
|
||||
id="path2"
|
||||
transform="translate(-126.36779,-72.108174)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.696383;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="M 47.994964,293.45989 C 31.431107,250.94745 14.908008,208.39242 -1.3109613,165.70407 22.939862,204.85423 46.922562,244.1731 70.108372,283.88004 c -7.146791,3.01345 -14.508883,6.23944 -22.113408,9.57985 z m 30.001467,-13.9574 C 62.454697,236.61585 47.550203,193.48955 33.546321,150.03286 c 22.891953,39.99877 44.687628,80.52744 64.858261,121.80537 -6.619992,2.23982 -13.413666,4.82727 -20.408151,7.66426 z M 105.8259,268.32905 C 93.370169,224.46757 82.063735,180.24992 71.87013,135.72476 c 19.628684,41.72225 37.68495,84.06186 54.23746,126.91437 -6.85681,1.69588 -13.62301,3.58772 -20.28169,5.68992 z m 28.12281,-8.58754 c -8.6481,-44.76955 -16.23053,-89.78655 -22.78376,-135.00232 16.06092,43.22163 30.65479,86.89382 43.85029,130.91211 -7.09434,1.18196 -14.12216,2.54056 -21.06653,4.09021 z m 29.25277,-6.4097 c -1.40848,-12.42447 -2.74315,-24.85937 -4.00476,-37.30369 -3.3138,-32.95314 -6.20191,-65.95852 -8.68211,-99.00937 12.72003,44.29308 24.3163,88.82427 34.88184,133.5515 -6.63678,0.6841 -13.22747,1.48442 -19.76831,2.41304 -0.80962,0.114 -1.61852,0.23017 -2.42666,0.34852 z m 30.89139,-4.62029 c -2.37477,-45.5433 -4.03407,-91.1521 -5.02433,-136.80874 10.21482,44.92351 19.45147,90.0161 27.80297,135.2357 -7.64506,0.39476 -15.23974,0.91333 -22.77864,1.57304 z m 31.71397,-3.00558 c -0.0989,-45.62621 0.41248,-91.27945 1.48768,-136.94207 8.04618,45.37158 15.25978,90.84321 21.73382,136.37282 -7.78451,0.084 -15.5268,0.26799 -23.2215,0.56925 z m 32.35886,-1.64948 c 0.30906,-7.76014 0.63275,-15.51994 0.97084,-23.27933 1.64869,-37.82043 3.63119,-75.65173 5.98326,-113.48155 6.23516,45.64354 11.73856,91.36531 16.37918,137.12891 -7.17162,-0.21357 -14.4034,-0.3304 -21.68787,-0.36843 -0.54866,-3.2e-4 -1.09713,-1.9e-4 -1.64541,4e-4 z m 32.37596,-0.33642 c 3.63054,-45.49238 7.87567,-90.95373 12.79793,-136.36245 4.30929,45.89107 7.67903,91.80665 9.97822,137.71036 -7.51359,-0.5851 -15.10874,-1.02696 -22.77615,-1.34791 z m 31.63332,1.0782 c 5.90644,-45.2236 12.56789,-90.36569 20.04687,-135.40466 1.88362,46.0377 2.61992,92.04622 2.07788,137.98915 -7.28446,-1.02866 -14.66247,-1.88271 -22.12475,-2.58449 z m 30.77106,2.85655 c 3.4414,-17.80734 7.02449,-35.59379 10.7532,-53.358 5.63461,-26.89603 11.66557,-53.72152 18.08715,-80.46982 -1.04051,46.1008 -3.66588,92.05802 -7.826,137.80601 -5.80331,-1.27536 -11.62952,-2.40677 -17.4725,-3.38825 -1.17801,-0.20163 -2.35864,-0.39825 -3.54185,-0.58994 z m 29.36367,4.85948 c 12.10305,-43.95942 25.24928,-87.66862 39.41241,-131.09724 -4.75581,45.85706 -11.01927,91.46553 -18.74024,136.75978 -6.84651,-2.0829 -13.74072,-3.97384 -20.67217,-5.66254 z m 28.98293,7.21226 c 15.51069,-42.88506 32.0044,-85.45215 49.4548,-127.67091 -7.41904,40.53403 -15.9806,80.78565 -25.6489,120.708 -1.14772,4.74696 -2.3101,9.48935 -3.4867,14.22729 -0.42338,-0.16265 -0.84643,-0.3243 -1.26916,-0.48491 -6.29838,-2.41975 -12.65128,-4.68239 -19.05004,-6.77947 z m 28.675,9.47451 c 18.68128,-41.59389 38.16884,-82.8498 58.2899,-123.83348 -11.54648,44.59045 -24.13914,88.84305 -37.41529,132.87084 -7.07007,-3.20484 -14.01897,-6.2378 -20.87461,-9.03736 z m 29.6445,11.93478 c 20.82032,-40.59943 42.05919,-81.01409 63.54384,-121.3097 -13.51624,44.02803 -27.5031,87.88628 -41.59789,131.6878 -7.46342,-3.56522 -14.76943,-7.04509 -21.94595,-10.3781 z"
|
||||
id="path3"
|
||||
inkscape:path-effect="#path-effect3;#path-effect4"
|
||||
inkscape:original-d="m 18.678837,232.22338 c 37.188971,-17.8037 74.377938,-35.60741 111.566913,-53.41111 84.64417,-3.3993 169.28833,-6.7986 253.9325,-10.1979 47.28606,21.03473 94.57213,42.06945 141.85819,63.10418"
|
||||
transform="matrix(1.3864431,0,0,0.73898691,-122.43733,-27.413219)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.696383;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 18.678837,232.22338 c 37.18897,-17.8037 74.37794,-35.60741 135.294513,-46.20891 60.91657,-10.6015 145.56073,-14.0008 211.52585,-5.18309 65.96511,8.81772 113.25118,29.85244 160.53724,50.88717"
|
||||
id="path4"
|
||||
inkscape:path-effect="#path-effect6"
|
||||
inkscape:original-d="m 18.678837,232.22338 c 37.188971,-17.8037 74.377938,-35.60741 111.566913,-53.41111 84.64417,-3.3993 169.28833,-6.7986 253.9325,-10.1979 47.28606,21.03473 94.57213,42.06945 141.85819,63.10418"
|
||||
transform="matrix(1.3968241,0,0,0.55720007,-126.75692,3.3814072)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.696383;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="m 38.054289,272.69547 c -9.886962,-28.6047 -19.746187,-57.2365 -29.4027711,-85.95311 17.5468941,25.15552 34.9199261,50.42928 51.7720771,75.97284 -7.320891,3.1802 -14.767342,6.53931 -22.369306,9.98027 z m 20.958915,-9.86867 c -9.567786,-28.71332 -18.838357,-57.53697 -27.63681,-86.52868 17.092677,25.50536 33.643953,51.30151 49.306808,77.54001 -7.117812,2.75864 -14.331161,5.78722 -21.669998,8.98867 z m 20.309442,-8.95292 C 70.705467,224.8958 62.65498,195.72416 55.346088,166.30123 c 6.543779,10.66344 12.936786,21.40374 19.155577,32.23114 9.04962,15.75996 17.728717,31.68887 26.046475,47.77216 -2.478065,0.79885 -4.94406,1.62486 -7.397248,2.47862 -4.574442,1.5671 -9.181099,3.27295 -13.828246,5.09073 z m 19.893245,-7.62126 c -7.02856,-29.40257 -13.294527,-59.02342 -18.822433,-88.83067 14.484839,27.10156 27.942292,54.63627 40.416502,82.53418 -7.28647,1.88369 -14.49027,3.9779 -21.594069,6.29649 z m 20.257129,-6.42427 c -5.28334,-29.76473 -9.84257,-59.69966 -13.70224,-89.77292 12.8985,27.88811 24.81488,56.13311 35.79328,84.66509 -7.43555,1.50024 -14.805,3.19823 -22.09104,5.10783 z m 20.75344,-5.30581 c -3.63308,-30.02127 -6.58054,-60.16466 -8.86694,-90.3983 10.54543,26.4629 20.28573,53.16701 29.25604,80.05661 0.71081,2.1153 1.41767,4.23156 2.12061,6.34876 -0.3299,0.0501 -0.65971,0.10043 -0.98941,0.15111 -7.22453,1.10657 -14.40302,2.38312 -21.5203,3.84182 z m 21.15845,-4.2522 c -0.063,-0.91473 -0.12538,-1.82952 -0.18719,-2.74439 -1.92776,-29.27081 -3.34954,-58.59448 -4.29347,-87.96071 9.93993,29.048 19.14716,58.2704 27.68268,87.63824 -7.68627,0.85427 -15.32787,1.85658 -22.91915,3.02344 -0.0943,0.0144 -0.18859,0.0289 -0.28287,0.0434 z m 21.84726,-3.37808 c -0.81669,-30.23137 -1.1419,-60.50293 -1.00647,-90.80341 8.81146,29.40029 16.95475,58.94216 24.49089,88.59665 -7.87004,0.59412 -15.70014,1.324 -23.48442,2.20676 z m 22.13135,-2.56515 c 0.27563,-30.24882 0.99519,-60.52148 2.12782,-90.80671 7.783,29.69111 14.96238,59.49097 21.59915,89.37064 -7.94502,0.35329 -15.85597,0.82627 -23.72697,1.43607 z m 22.3759,-1.83595 c 1.25629,-30.23489 2.90893,-60.47727 4.92707,-90.71588 6.85457,29.92045 13.17007,59.91684 19.0075,89.96021 -8.00836,0.14255 -15.98851,0.38872 -23.93457,0.75567 z m 22.58579,-1.19137 c 1.89346,-26.89664 4.06376,-53.78625 6.48909,-80.66087 0.29689,-3.2911 0.59771,-6.58222 0.90253,-9.87333 6.02935,30.07629 11.60516,60.22492 16.64032,90.42342 -5.05305,-0.0488 -10.12351,-0.0527 -15.20918,-0.0175 -2.94452,0.0292 -5.88554,0.0717 -8.82276,0.12824 z m 22.69931,-0.58331 c 2.89858,-30.12548 6.15391,-60.24119 9.80717,-90.33231 5.25062,30.25027 9.95368,60.55133 14.02209,90.88072 -7.89486,-0.30855 -15.84081,-0.48384 -23.82926,-0.54841 z m 22.52445,0.0376 c 3.7731,-30.02842 7.96556,-60.02318 12.61852,-89.96945 4.31714,30.40172 7.99271,60.83268 10.93962,91.27041 -7.79677,-0.58082 -15.65235,-1.00696 -23.55814,-1.30096 z m 22.28569,0.74588 c 4.78859,-29.8681 10.05912,-59.67865 15.85275,-89.41682 3.22891,30.53062 5.72225,61.06894 7.39292,91.5925 -7.6849,-0.89383 -15.43632,-1.61154 -23.24567,-2.17568 z m 22.01011,1.57022 c 5.94504,-29.64452 12.4346,-59.2076 19.50986,-88.67441 1.50469,23.21277 2.53315,46.4176 3.04749,69.6047 0.15434,7.41318 0.2469,14.82258 0.27816,22.22759 -1.05996,-0.17355 -2.1205,-0.34255 -3.1816,-0.50697 -6.49944,-1.02175 -13.05255,-1.90065 -19.65391,-2.65091 z m 21.66296,2.5014 c 7.21253,-29.36444 15.14508,-58.58608 23.78001,-87.64507 0.51952,30.7236 -0.004,61.36823 -1.53803,91.88986 -7.37827,-1.6329 -14.79585,-3.05114 -22.24198,-4.24479 z m 21.10357,3.52335 c 8.82371,-28.9163 18.33984,-57.65992 28.53074,-86.21099 -1.16266,30.70163 -3.33491,61.27615 -6.48441,91.67956 -7.30272,-2.03164 -14.65509,-3.85781 -22.04633,-5.46857 z m 20.94443,4.68609 c 10.3674,-28.40298 21.39959,-56.6034 33.07895,-84.5814 -2.79718,30.59752 -6.57055,61.01981 -11.28779,91.22284 -7.20733,-2.4134 -14.47464,-4.63053 -21.79116,-6.64144 z m 20.72818,5.80186 c 11.84356,-27.82451 24.32431,-55.41656 37.42461,-82.7563 -1.67464,11.61671 -3.48685,23.20083 -5.43482,34.74991 -3.15396,18.68584 -6.65434,37.2733 -10.4442,55.77896 -2.61566,-1.01855 -5.22631,-2.00794 -7.83318,-2.96519 -4.54484,-1.68054 -9.11657,-3.28386 -13.71241,-4.80738 z m 20.50755,6.87622 c 13.25334,-27.17944 27.06243,-54.11415 41.3136,-80.8491 -5.87321,30.12419 -12.48496,60.03226 -19.59399,89.79455 -7.29253,-3.1639 -14.52373,-6.16645 -21.71961,-8.94545 z m 20.68146,7.9944 c 14.35117,-26.62432 29.08538,-53.07608 44.08897,-79.40023 -6.94103,29.88234 -14.35995,59.61693 -22.01551,89.27407 -7.43388,-3.41421 -14.78303,-6.72622 -22.07346,-9.87384 z"
|
||||
id="path8"
|
||||
inkscape:path-effect="#path-effect10;#path-effect12"
|
||||
inkscape:original-d="m 18.678837,232.22338 c 37.188971,-17.8037 74.377938,-35.60741 111.566913,-53.41111 84.64417,-3.3993 169.28833,-6.7986 253.9325,-10.1979 47.28606,21.03473 94.57213,42.06945 141.85819,63.10418"
|
||||
transform="matrix(1.3864431,0,0,0.73898691,-122.43733,-27.413219)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.696383;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="M 55.522154,309.18293 C 33.902477,256.1394 12.333419,203.04155 -8.8546612,149.77365 20.472452,199.52071 49.460065,249.47469 77.441793,299.9063 c -7.014961,2.88718 -14.313176,6.01236 -21.919639,9.27663 z M 82.844358,296.42848 C 62.306225,242.95668 42.507747,189.19696 23.779285,135.03359 c 27.819919,50.64066 54.336891,101.89584 78.884535,154.03625 -6.351443,2.12263 -12.949598,4.60848 -19.819462,7.35864 z M 107.58697,286.23497 C 90.315924,231.63909 74.501712,176.56304 60.098822,121.06824 c 24.191151,52.5028 46.377938,105.79193 66.647598,159.73677 -6.49168,1.61756 -12.88371,3.42261 -19.15945,5.42996 z m 24.37172,-7.90347 C 119.14427,222.53534 107.69082,166.38569 97.552805,109.94397 c 19.977925,54.23827 38.075625,109.0711 54.380335,164.36786 -6.7414,1.16561 -13.4051,2.50057 -19.97445,4.01967 z m 25.47744,-6.13457 C 148.76728,215.58666 141.3635,158.7496 135.17929,101.74715 c 3.71769,12.89133 7.34077,25.80435 10.87035,38.73744 11.61701,42.80122 22.38197,85.77824 32.34798,128.90751 -3.25042,0.36328 -6.4865,0.75733 -9.70779,1.18376 -3.77116,0.4921 -7.5233,1.03164 -11.2537,1.62107 z m 26.91729,-4.62905 c -5.10733,-57.03067 -9.26481,-114.16985 -12.53069,-171.39505 12.75597,56.33477 24.20922,112.90168 34.477,169.64873 -7.3801,0.44767 -14.69721,1.02395 -21.94631,1.74632 z m 28.11517,-3.28038 c -2.29603,-57.2274 -3.76372,-114.51781 -4.46131,-171.848739 10.06952,56.886619 19.00575,113.927309 26.92596,171.070079 -7.54566,0.14724 -15.03555,0.40096 -22.46465,0.77866 z m 28.82136,-2.06683 c 0.1319,-57.29364 0.97063,-114.60478 2.45796,-171.910935 5.53281,40.894565 10.57387,81.827905 15.16589,122.781085 1.83695,16.38425 3.60085,32.77607 5.28785,49.17438 -1.28599,-0.0242 -2.57426,-0.0459 -3.86476,-0.0651 -6.38413,-0.0569 -12.73408,-0.0534 -19.04694,0.0206 z m 29.36626,-1.00106 c 2.1828,-57.24873 5.02742,-114.5034 8.61259,-171.73728 5.73042,57.4998 10.44333,115.06109 13.97446,172.63691 -7.44007,-0.41098 -14.97236,-0.70347 -22.58705,-0.89963 z m 28.90985,0.0879 c 4.45846,-57.1196 9.74181,-114.18793 15.92879,-171.178268 3.3066,57.691238 5.35581,115.379108 5.98334,173.016678 -7.20359,-0.75268 -14.5109,-1.3581 -21.91213,-1.83841 z m 28.09116,1.32726 c 7.23748,-56.79661 15.46293,-113.48475 24.75509,-170.037695 0.35266,57.763515 -0.79194,115.458835 -3.59809,173.039005 -6.94038,-1.16908 -13.99598,-2.16213 -21.157,-3.00131 z m 27.15636,2.85092 c 10.43115,-56.30447 22.23992,-112.37846 35.39347,-168.183616 -3.22974,57.713026 -8.43417,115.205576 -15.54973,172.395626 -6.5861,-1.60282 -13.2041,-3.01033 -19.84374,-4.21201 z m 25.67374,4.45574 c 14.6117,-55.35603 30.53193,-110.40256 47.72783,-165.10125 -7.4959,57.30865 -16.87574,114.27624 -28.07596,170.82077 -6.50852,-2.09234 -13.06257,-4.00236 -19.65187,-5.71952 z m 25.49563,6.39621 c 18.56923,-54.16762 38.37789,-107.94673 59.39313,-161.299 -10.798,52.8303 -23.15651,105.25885 -37.0239,157.2191 -0.99623,3.73891 -1.99974,7.47545 -3.01041,11.20966 -0.25524,-0.10042 -0.51028,-0.20042 -0.76513,-0.29999 -6.14674,-2.43631 -12.34767,-4.71601 -18.59369,-6.82977 z m 25.28163,8.23493 c 22.30269,-52.73346 45.66789,-105.03199 69.87805,-156.9771 -15.3734,55.67093 -32.12474,110.88306 -49.79935,165.78179 -6.84329,-3.15018 -13.52642,-6.10542 -20.0787,-8.80469 z m 26.38655,10.42692 c 24.99632,-51.53254 50.60473,-102.80409 76.60768,-153.89615 -17.85239,54.92288 -36.41851,109.58892 -55.24367,164.14349 -7.30635,-3.55172 -14.41791,-6.98784 -21.36401,-10.24734 z"
|
||||
id="path12"
|
||||
inkscape:path-effect="#path-effect14;#path-effect16"
|
||||
inkscape:original-d="m 18.678837,232.22338 c 37.188971,-17.8037 74.377938,-35.60741 111.566913,-53.41111 84.64417,-3.3993 169.28833,-6.7986 253.9325,-10.1979 47.28606,21.03473 94.57213,42.06945 141.85819,63.10418"
|
||||
transform="matrix(1.3864431,0,0,0.73898691,-122.43733,-27.413219)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.696383;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
d="M 55.522154,309.18293 C 33.902477,256.1394 12.333419,203.04155 -8.8546612,149.77365 20.472452,199.52071 49.460065,249.47469 77.441793,299.9063 c -7.014961,2.88718 -14.313176,6.01236 -21.919639,9.27663 z M 82.844358,296.42848 C 62.306225,242.95668 42.507747,189.19696 23.779285,135.03359 c 27.819919,50.64066 54.336891,101.89584 78.884535,154.03625 -6.351443,2.12263 -12.949598,4.60848 -19.819462,7.35864 z M 107.58697,286.23497 C 90.315924,231.63909 74.501712,176.56304 60.098822,121.06824 c 24.191151,52.5028 46.377938,105.79193 66.647598,159.73677 -6.49168,1.61756 -12.88371,3.42261 -19.15945,5.42996 z m 24.37172,-7.90347 C 119.14427,222.53534 107.69082,166.38569 97.552805,109.94397 c 19.977925,54.23827 38.075625,109.0711 54.380335,164.36786 -6.7414,1.16561 -13.4051,2.50057 -19.97445,4.01967 z m 25.47744,-6.13457 C 148.76728,215.58666 141.3635,158.7496 135.17929,101.74715 c 3.71769,12.89133 7.34077,25.80435 10.87035,38.73744 11.61701,42.80122 22.38197,85.77824 32.34798,128.90751 -3.25042,0.36328 -6.4865,0.75733 -9.70779,1.18376 -3.77116,0.4921 -7.5233,1.03164 -11.2537,1.62107 z m 26.91729,-4.62905 c -5.10733,-57.03067 -9.26481,-114.16985 -12.53069,-171.39505 12.75597,56.33477 24.20922,112.90168 34.477,169.64873 -7.3801,0.44767 -14.69721,1.02395 -21.94631,1.74632 z m 28.11517,-3.28038 c -2.29603,-57.2274 -3.76372,-114.51781 -4.46131,-171.848739 10.06952,56.886619 19.00575,113.927309 26.92596,171.070079 -7.54566,0.14724 -15.03555,0.40096 -22.46465,0.77866 z m 28.82136,-2.06683 c 0.1319,-57.29364 0.97063,-114.60478 2.45796,-171.910935 5.53281,40.894565 10.57387,81.827905 15.16589,122.781085 1.83695,16.38425 3.60085,32.77607 5.28785,49.17438 -1.28599,-0.0242 -2.57426,-0.0459 -3.86476,-0.0651 -6.38413,-0.0569 -12.73408,-0.0534 -19.04694,0.0206 z m 29.36626,-1.00106 c 2.1828,-57.24873 5.02742,-114.5034 8.61259,-171.73728 5.73042,57.4998 10.44333,115.06109 13.97446,172.63691 -7.44007,-0.41098 -14.97236,-0.70347 -22.58705,-0.89963 z m 28.90985,0.0879 c 4.45846,-57.1196 9.74181,-114.18793 15.92879,-171.178268 3.3066,57.691238 5.35581,115.379108 5.98334,173.016678 -7.20359,-0.75268 -14.5109,-1.3581 -21.91213,-1.83841 z m 28.09116,1.32726 c 7.23748,-56.79661 15.46293,-113.48475 24.75509,-170.037695 0.35266,57.763515 -0.79194,115.458835 -3.59809,173.039005 -6.94038,-1.16908 -13.99598,-2.16213 -21.157,-3.00131 z m 27.15636,2.85092 c 10.43115,-56.30447 22.23992,-112.37846 35.39347,-168.183616 -3.22974,57.713026 -8.43417,115.205576 -15.54973,172.395626 -6.5861,-1.60282 -13.2041,-3.01033 -19.84374,-4.21201 z m 25.67374,4.45574 c 14.6117,-55.35603 30.53193,-110.40256 47.72783,-165.10125 -7.4959,57.30865 -16.87574,114.27624 -28.07596,170.82077 -6.50852,-2.09234 -13.06257,-4.00236 -19.65187,-5.71952 z m 25.49563,6.39621 c 18.56923,-54.16762 38.37789,-107.94673 59.39313,-161.299 -10.798,52.8303 -23.15651,105.25885 -37.0239,157.2191 -0.99623,3.73891 -1.99974,7.47545 -3.01041,11.20966 -0.25524,-0.10042 -0.51028,-0.20042 -0.76513,-0.29999 -6.14674,-2.43631 -12.34767,-4.71601 -18.59369,-6.82977 z m 25.28163,8.23493 c 22.30269,-52.73346 45.66789,-105.03199 69.87805,-156.9771 -15.3734,55.67093 -32.12474,110.88306 -49.79935,165.78179 -6.84329,-3.15018 -13.52642,-6.10542 -20.0787,-8.80469 z m 26.38655,10.42692 c 24.99632,-51.53254 50.60473,-102.80409 76.60768,-153.89615 -17.85239,54.92288 -36.41851,109.58892 -55.24367,164.14349 -7.30635,-3.55172 -14.41791,-6.98784 -21.36401,-10.24734 z"
|
||||
id="path16"
|
||||
inkscape:path-effect="#path-effect18;#path-effect20"
|
||||
inkscape:original-d="m 18.678837,232.22338 c 37.188971,-17.8037 74.377938,-35.60741 111.566913,-53.41111 84.64417,-3.3993 169.28833,-6.7986 253.9325,-10.1979 47.28606,21.03473 94.57213,42.06945 141.85819,63.10418"
|
||||
transform="matrix(1.3864431,0,0,0.73898691,-101.733,-28.841104)"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 23 KiB |