Implement YEC 2023 banner
Context: tpo/web/tpo#385 Milestone: https://gitlab.torproject.org/groups/tpo/-/milestones/50 Co-authored-by: kez <kez@torproject.org>
@ -14,16 +14,33 @@
|
||||
}
|
||||
|
||||
:root {
|
||||
--abouttor-yec-page-bg-color: #0E0625;
|
||||
--abouttor-yec-heading-color: #C0FF00;
|
||||
--abouttor-yec-heading-alt-color: #FFA3FF;
|
||||
--abouttor-yec-page-bg-color: #272727;
|
||||
--abouttor-yec-button-color: #000000;
|
||||
--abouttor-yec-button-bg-color: #C0FF00;
|
||||
--abouttor-yec-button-hover-bg-color: #A8DF00;
|
||||
--abouttor-yec-button-active-bg-color: #90BF00;
|
||||
--abouttor-yec-button-bg-color: #FBBE22;
|
||||
--abouttor-yec-button-hover-bg-color: #CC9A19;
|
||||
--abouttor-yec-button-active-bg-color: #AC8112;
|
||||
--abouttor-yec-donate-text-color: #FAF5DF;
|
||||
}
|
||||
|
||||
#yec-donate-button:hover {
|
||||
background-color: var(--abouttor-yec-button-hover-bg-color);
|
||||
color: var(--abouttor-yec-button-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#yec-donate-button:active {
|
||||
background-color: var(--abouttor-yec-button-active-bg-color);
|
||||
color: var(--abouttor-yec-button-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#yec-donate-button:focus-visible {
|
||||
outline: 2px solid var(--abouttor-yec-button-bg-color);
|
||||
outline-offset: 2px;
|
||||
color: var(--abouttor-yec-button-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Don't move down content w banner. Navbar isn't fixed. */
|
||||
.page {
|
||||
padding-top: 0 !important;
|
||||
@ -36,32 +53,23 @@
|
||||
right: 0;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
//min-height: 360px;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.banner-content {
|
||||
height: auto;
|
||||
min-height: 360px;
|
||||
margin-inline: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#banner-header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
min-height: inherit;
|
||||
max-height: inherit;
|
||||
}
|
||||
|
||||
.banner-content-spacer {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
gap: 36px;
|
||||
padding: 1.5rem 1rem 2rem 1rem;
|
||||
min-height: inherit;
|
||||
max-height: inherit;
|
||||
}
|
||||
|
||||
.banner-content-2 {
|
||||
@ -72,10 +80,6 @@
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.banner-main-graphics {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.banner-cta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@ -211,10 +215,6 @@ html[dir="rtl"] {
|
||||
.banner-content-2 {
|
||||
display: block;
|
||||
}
|
||||
.banner-content-spacer {
|
||||
margin-top: 4rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.banner-cta {
|
||||
top: 20px;
|
||||
gap: 20px;
|
||||
@ -261,20 +261,19 @@ html[dir="rtl"] {
|
||||
position: absolute;
|
||||
right: 16px;
|
||||
top: 16px;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
height: 4.5vh;
|
||||
min-height: 32px;
|
||||
z-index: 1;
|
||||
visibility: inherit;
|
||||
background-color: #FAF5DF;
|
||||
border-radius: 6px;
|
||||
color: #05161C !important;
|
||||
background-image: url(images/x.svg);
|
||||
background-image: url(../images/x.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.banner-close:hover {
|
||||
background-color: var(--abouttor-yec-heading-color);
|
||||
img {
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.eoy-sr-only {
|
||||
@ -294,3 +293,101 @@ html[dir="rtl"] {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#banner-header {
|
||||
h1, p {
|
||||
color: #FBFBFE;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.5rem;
|
||||
@include media-breakpoint-up(md) {
|
||||
font-size: 2rem;
|
||||
}
|
||||
font-family: "Source Sans Pro Bold", sans-serif;
|
||||
line-height: 130%;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
@include media-breakpoint-up(md) {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
line-height: 150%;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
p strong {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
.banner-content-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
gap: 2rem;
|
||||
padding: 2rem 2rem 2.5rem 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
#yec-donate-button-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: fit-content;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 0.625rem;
|
||||
align-self: stretch;
|
||||
margin: 0 auto;
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#yec-donate-button {
|
||||
display: flex;
|
||||
padding: 0.75rem 1rem;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 0.625rem;
|
||||
align-self: stretch;
|
||||
background-color: #FFBD4F;
|
||||
color: unset;
|
||||
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
line-height: 120%; /* 1.05rem */
|
||||
|
||||
.donate-heart {
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.yec-illo {
|
||||
width: 156px;
|
||||
@include media-breakpoint-up(md) {
|
||||
width: 208px !important;
|
||||
}
|
||||
@include media-breakpoint-up(lg) {
|
||||
width: 260px !important;
|
||||
}
|
||||
}
|
||||
|
||||
#banner-text {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
#banner-text-container {
|
||||
gap: 1.5rem;
|
||||
max-width: 45rem;
|
||||
}
|
||||
|
BIN
assets/static/images/yec-2023/heart.png
Normal file
After Width: | Height: | Size: 674 B |
4
assets/static/images/yec-2023/heart.svg
Normal file
@ -0,0 +1,4 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.87866 6.5C8.87866 6.5 8.87866 2.5 12.3787 2.5C15.8787 2.5 15.8787 5.5 15.8787 6.5C15.8787 11 8.87866 15.5 8.87866 15.5V6.5Z" fill="#1C1B22"/>
|
||||
<path d="M8.87866 6.5C8.87866 6.5 8.87866 2.5 5.37866 2.5C1.87866 2.5 1.87866 5.5 1.87866 6.5C1.87866 11 8.87866 15.5 8.87866 15.5L9.87866 9.5L8.87866 6.5Z" fill="#1C1B22"/>
|
||||
</svg>
|
After Width: | Height: | Size: 431 B |
BIN
assets/static/images/yec-2023/main-illo.png
Normal file
After Width: | Height: | Size: 30 KiB |
304
assets/static/images/yec-2023/main-illo.svg
Normal file
@ -0,0 +1,304 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="Layer_1"
|
||||
viewBox="0 0 260 234.17635"
|
||||
version="1.1"
|
||||
sodipodi:docname="main-illo.svg"
|
||||
width="260"
|
||||
height="234.17635"
|
||||
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">
|
||||
<sodipodi:namedview
|
||||
id="namedview105"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.0344828"
|
||||
inkscape:cx="122.88136"
|
||||
inkscape:cy="146.72034"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<style
|
||||
id="style2">.cls-1,.cls-2{fill-rule:evenodd;}.cls-1,.cls-2,.cls-3,.cls-4,.cls-5,.cls-6{stroke-width:0px;}.cls-1,.cls-4{fill:#b27af4;}.cls-2,.cls-6{fill:#f5f5f5;}.cls-3{fill:#f9f9f9;}.cls-5{fill:#fbbe22;}</style>
|
||||
</defs>
|
||||
<g
|
||||
id="R_root"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 237.41,133.43 h -20.8 c -0.37,0 -0.73,0.02 -1.09,0.06 h -1.88 c -3.25,0 -6.13,1.46 -8.03,3.77 l -0.42,-24.48 -0.02,-1.04 c -0.18,0.04 -0.34,0.06 -0.52,0.09 -0.18,0.03 -0.34,0.05 -0.52,0.07 l 0.02,1.04 0.44,25.81 0.03,1.16 0.02,1.46 0.05,2.63 h 2.58 l 0.02,-0.5 c 0.15,-4.69 3.68,-8.46 8.24,-8.98 0.35,-0.05 0.72,-0.06 1.09,-0.06 h 20.8 c 0.61,0 1.21,0.06 1.78,0.18 4.3,0.83 7.56,4.63 7.56,9.16 v 10.99 c 0,4.4 -3.08,8.09 -7.19,9.03 -0.56,0.13 -1.13,0.21 -1.73,0.23 -0.12,0 -0.24,0 -0.36,0 -0.45,0 -0.88,-0.03 -1.31,-0.09 -4.5,-0.64 -7.97,-4.52 -7.97,-9.18 v -1.45 c 0,-2.03 -1.65,-3.67 -3.67,-3.67 h -19.76 v 0.58 c 0,0 0.02,0.52 0.02,0.52 l 0.12,6.76 v 0.52 c 0,0 0.02,0.36 0.02,0.36 h 1.53 c 0.61,0 1.21,0.06 1.78,0.18 4.29,0.83 7.53,4.63 7.53,9.15 v 7.42 c 0,4.41 -3.08,8.12 -7.2,9.09 -0.57,0.14 -1.15,0.21 -1.74,0.24 -0.13,0 -0.26,0 -0.39,0 h -1.08 v 0.39 c 0,0 0.02,0.53 0.02,0.53 l 0.4,23.57 c 0.05,2.51 -0.91,4.88 -2.67,6.68 -1.26,1.29 -2.83,2.16 -4.54,2.57 -0.58,0.14 -1.19,0.22 -1.8,0.24 -0.13,0 -0.25,0 -0.38,0 -0.45,0 -0.87,-0.03 -1.3,-0.09 -4.56,-0.63 -8.09,-4.53 -8.09,-9.24 v -20.98 c 0,-4.8 3.65,-8.77 8.32,-9.28 h 1.32 v -0.06 h 2.97 l -0.25,-14.77 h -10.22 c -5.15,0 -9.33,-4.18 -9.33,-9.34 v -17.94 c 0,-3.77 2.67,-6.92 6.21,-7.68 0.46,-0.09 0.94,-0.15 1.43,-0.16 0.07,0 0.14,0 0.21,0 0.44,0 0.87,0.04 1.29,0.11 2.63,0.43 4.83,2.19 5.88,4.56 0.25,0.56 0.44,1.15 0.55,1.76 0.08,0.45 0.13,0.93 0.13,1.41 v 3.54 c 0,0.68 0.19,1.31 0.5,1.86 0.49,0.85 1.34,1.49 2.36,1.73 l 0.65,0.14 -0.53,-31.28 -0.02,-1.05 c -0.18,-0.03 -0.35,-0.06 -0.52,-0.09 -0.18,-0.03 -0.35,-0.06 -0.52,-0.1 -0.66,-0.12 -1.31,-0.27 -1.94,-0.45 -0.18,-0.04 -0.35,-0.08 -0.53,-0.15 -0.18,-0.04 -0.35,-0.09 -0.52,-0.15 l 0.02,1.09 0.33,19.63 c -1.61,-2.18 -4.21,-3.6 -7.13,-3.6 -0.56,0 -1.1,0.06 -1.63,0.16 -0.44,-0.06 -0.88,-0.1 -1.34,-0.1 -4.91,0 -8.89,3.99 -8.89,8.89 v 17.94 c 0,5.71 4.66,10.37 10.38,10.37 h 9.19 l 0.21,12.66 c -0.13,0 -0.25,0.02 -0.37,0.04 h -1.84 c -5.72,0 -10.38,4.65 -10.38,10.37 v 20.98 c 0,5.71 4.68,10.37 10.43,10.37 0.58,0 1.15,-0.05 1.71,-0.14 0.42,0.06 0.83,0.08 1.26,0.08 2.82,0 5.47,-1.11 7.46,-3.13 1.96,-2 3.01,-4.64 2.97,-7.42 l -0.4,-23.45 h 0.02 c 5.72,0 10.37,-4.65 10.37,-10.37 v -7.42 c 0,-5.71 -4.65,-10.37 -10.37,-10.37 h -0.5 l -0.11,-6.6 h 15.73 c 1.46,0 2.63,1.18 2.63,2.63 v 1.45 c 0,5.69 4.63,10.31 10.31,10.31 0.58,0 1.13,-0.05 1.68,-0.14 0.42,0.06 0.85,0.08 1.29,0.08 5.69,0 10.31,-4.63 10.31,-10.31 v -10.99 c 0,-5.72 -4.66,-10.37 -10.38,-10.37 z"
|
||||
id="path6" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 234.96,157.38 c 0.16,0.16 0.32,0.3 0.51,0.42 0.19,0.12 0.38,0.23 0.58,0.32 0.44,0.19 0.92,0.3 1.43,0.3 1.99,0 3.62,-1.62 3.62,-3.62 v -10.99 c 0,-2.03 -1.65,-3.67 -3.68,-3.67 h -20.8 c -0.21,0 -0.43,0.02 -0.63,0.06 -0.49,0.08 -0.95,0.26 -1.35,0.52 -0.23,0.15 -0.45,0.32 -0.64,0.52 -0.48,0.48 -0.82,1.1 -0.96,1.81 -0.03,0.14 -0.06,0.27 -0.06,0.41 v 0.11 c 0,0 -0.06,0.45 -0.06,0.45 h 11.63 c 0.59,0 1.18,0.06 1.74,0.17 4.31,0.82 7.59,4.62 7.59,9.17 v 1.45 c 0,1.01 0.42,1.93 1.09,2.59 z m -20.85,-14.4 c 0.29,-0.91 1.05,-1.58 1.99,-1.75 h 18.36 c 1.46,0 2.63,1.18 2.63,2.63 v 10.99 c 0,0.85 -0.41,1.6 -1.05,2.08 v 0 c -0.69,-0.46 -1.13,-1.25 -1.13,-2.13 v -1.45 c 0,-5.72 -4.66,-10.37 -10.37,-10.37 z"
|
||||
id="path8" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 189.86,140.33 v -3.54 c 0,-1.21 -0.98,-2.19 -2.19,-2.19 -0.59,0 -1.13,0.22 -1.52,0.6 -0.13,0.13 -0.24,0.27 -0.32,0.42 -0.11,0.15 -0.19,0.32 -0.24,0.49 -0.07,0.21 -0.11,0.45 -0.11,0.68 v 17.94 c 0,1.07 0.45,2.02 1.18,2.7 0.21,0.2 0.45,0.38 0.71,0.52 0.53,0.3 1.14,0.46 1.78,0.46 h 10.12 l -0.15,-8.73 -0.48,-0.03 c -4.92,-0.29 -8.77,-4.39 -8.77,-9.32 z m -3.35,14.39 v -10.7 c 1.34,3.59 4.63,6.26 8.62,6.68 l 0.12,6.67 h -6.1 c -1.45,0 -2.63,-1.19 -2.63,-2.64 z"
|
||||
id="path10" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 195.73,184.56 c -0.49,0.07 -0.95,0.26 -1.34,0.52 -0.24,0.14 -0.45,0.32 -0.66,0.52 -0.65,0.67 -1.06,1.57 -1.06,2.58 v 20.98 c 0,1.04 0.45,1.98 1.16,2.66 0.16,0.15 0.34,0.29 0.53,0.41 0.19,0.13 0.4,0.24 0.62,0.32 0.44,0.18 0.92,0.28 1.42,0.28 1.01,0 1.96,-0.4 2.67,-1.12 0.7,-0.71 1.08,-1.64 1.06,-2.62 l -0.42,-24.59 h -3.36 c -0.21,0 -0.42,0.02 -0.62,0.06 z m -2.02,24.6 v -20.98 c 0,-1.23 0.85,-2.28 2.01,-2.56 l 0.4,23.55 c 0.02,0.7 -0.26,1.36 -0.76,1.87 -0.12,0.12 -0.25,0.23 -0.4,0.33 -0.75,-0.46 -1.25,-1.29 -1.25,-2.22 z"
|
||||
id="path12" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 205.05,165.69 0.19,11.48 v 0.65 c 0,0 0.02,0.59 0.02,0.59 v 0.42 h 1.18 c 2.02,0 3.67,-1.64 3.67,-3.67 v -7.42 c 0,-2.02 -1.65,-3.67 -3.67,-3.67 h -1.42 v 0.41 c 0,0 0.02,0.58 0.02,0.58 v 0.63 z"
|
||||
id="path14" />
|
||||
</g>
|
||||
<g
|
||||
id="O_root"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 149.67,194.58 h 8.48 c 5.45,0 9.89,-4.43 9.89,-9.89 v -10.16 c 0,-5.45 -4.43,-9.89 -9.89,-9.89 h -6.62 c -1.73,0 -3.13,-1.4 -3.13,-3.13 v -2.98 h 6.23 c 5.45,0 9.89,-4.44 9.89,-9.89 v -2.96 c 0,-5.45 -4.43,-9.9 -9.89,-9.9 h -16.86 c -1.73,0 -3.13,-1.4 -3.13,-3.12 v -23.02 c -0.17,0.03 -0.34,0.05 -0.52,0.06 -0.17,0.02 -0.34,0.04 -0.52,0.04 v 22.92 c 0,1.24 0.55,2.36 1.41,3.12 0.22,0.2 0.47,0.38 0.74,0.52 0.59,0.33 1.28,0.52 2.01,0.52 h 16.98 c 0.57,0 1.11,0.06 1.65,0.18 v 0 c 4.03,0.83 7.07,4.41 7.07,8.68 v 2.96 c 0,4.27 -3.04,7.84 -7.07,8.67 v 0 c -0.54,0.11 -1.09,0.17 -1.65,0.18 h -7.39 v 4.02 c 0,1.25 0.55,2.37 1.43,3.13 0.22,0.2 0.46,0.37 0.72,0.52 0.59,0.33 1.28,0.52 2.01,0.52 h 6.75 c 0.57,0 1.11,0.07 1.64,0.18 v 0 c 4.03,0.83 7.07,4.41 7.07,8.67 v 10.16 c 0,4.27 -3.04,7.84 -7.07,8.67 v 0 c -0.53,0.1 -1.08,0.17 -1.64,0.18 h -8.61 c -0.62,0 -1.2,0.19 -1.68,0.52 -0.21,0.15 -0.41,0.32 -0.58,0.52 -0.45,0.52 -0.72,1.21 -0.72,1.94 0,0.73 0.27,1.41 0.72,1.93 0.17,0.2 0.36,0.38 0.58,0.52 0.48,0.32 1.06,0.52 1.68,0.52 h 8.61 c 0.57,0 1.11,0.07 1.64,0.18 v 0 c 4.03,0.83 7.07,4.41 7.07,8.67 v 0.79 c 0,4.27 -3.04,7.84 -7.07,8.67 v 0 c -0.53,0.1 -1.08,0.17 -1.64,0.18 h -57.65 c -4.88,0 -8.85,-3.97 -8.85,-8.85 v -5.18 c 0,-4.88 3.97,-8.85 8.85,-8.85 h 2.56 c 2.29,0 4.16,-1.86 4.16,-4.16 v -1.07 c 0,-2.3 -1.87,-4.16 -4.16,-4.16 h -2.56 c -4.88,0 -8.85,-3.97 -8.85,-8.85 v -3.66 c 0,-4.88 3.97,-8.85 8.85,-8.85 h 10.67 c 2.29,0 4.16,-1.86 4.16,-4.16 v -2.67 h -5.95 c -4.88,0 -8.85,-3.97 -8.85,-8.85 v -2.96 c 0,-4.69 3.65,-8.53 8.26,-8.84 0.19,0 0.39,-0.02 0.58,-0.02 h 1.91 c 0.57,0 1.11,0.06 1.65,0.18 v 0 c 4.03,0.83 7.07,4.41 7.07,8.68 v 7.11 h 22.54 v -11.28 h -4.91 c -4.89,0 -8.86,-3.97 -8.86,-8.85 v -23.13 c -0.17,-0.03 -0.34,-0.06 -0.52,-0.1 -0.17,-0.03 -0.34,-0.06 -0.52,-0.11 -0.24,-0.05 -0.49,-0.1 -0.73,-0.18 -0.55,-0.15 -1.09,-0.32 -1.63,-0.52 -0.2,-0.07 -0.4,-0.15 -0.59,-0.23 v 24.27 c 0,5.44 4.43,9.89 9.89,9.89 h 3.87 v 9.2 h -17.49 v -6.08 c 0,-5.45 -4.43,-9.9 -9.89,-9.9 h -1.79 c -0.19,0 -0.39,0 -0.58,0.02 -0.19,0 -0.4,-0.02 -0.59,-0.02 h -1.79 c -5.45,0 -9.89,4.44 -9.89,9.9 v 2.96 c 0,5.44 4.43,9.89 9.89,9.89 h 4.92 v 1.63 c 0,1.73 -1.4,3.13 -3.13,3.13 H 97.64 c -5.45,0 -9.89,4.43 -9.89,9.89 v 3.66 c 0,5.45 4.43,9.89 9.89,9.89 h 2.56 c 1.73,0 3.13,1.4 3.13,3.13 v 1.07 c 0,1.73 -1.4,3.13 -3.13,3.13 h -2.56 c -5.45,0 -9.89,4.43 -9.89,9.89 v 5.18 c 0,5.44 4.43,9.89 9.89,9.89 h 60.49 c 5.45,0 9.89,-4.44 9.89,-9.89 v -0.79 c 0,-5.44 -4.43,-9.89 -9.89,-9.89 h -8.48 c -1.07,0 -1.94,-0.86 -1.94,-1.93 0,-1.07 0.87,-1.94 1.94,-1.94 z"
|
||||
id="path17" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 129.94,108.65 c 0.4,0.06 0.81,0.09 1.22,0.11 0.18,0 0.34,0.02 0.52,0.02 0.16,0 0.32,0 0.48,0 0.66,0 1.32,-0.04 1.97,-0.11 0.18,0 0.34,-0.04 0.52,-0.06 v -0.48 h -7.33 c 0.19,0.06 0.37,0.1 0.56,0.14 0.68,0.18 1.36,0.3 2.07,0.38 z"
|
||||
id="path19" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 111.29,141.54 h -1.79 c -0.19,0 -0.4,0.02 -0.58,0.05 -0.51,0.06 -0.99,0.23 -1.43,0.47 -0.26,0.15 -0.51,0.32 -0.73,0.52 -0.87,0.76 -1.42,1.87 -1.42,3.13 v 2.96 c 0,1.24 0.55,2.36 1.41,3.12 0.22,0.2 0.47,0.38 0.74,0.52 0.59,0.33 1.28,0.52 2.01,0.52 h 5.95 v -7.11 c 0,-2.3 -1.87,-4.16 -4.16,-4.16 z m -1.79,10.24 c -1.73,0 -3.13,-1.4 -3.13,-3.12 v -2.96 c 0,-1.52 1.09,-2.8 2.54,-3.07 1.44,0.28 2.53,1.55 2.53,3.07 v 6.08 h -1.95 z"
|
||||
id="path21" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 149.67,188.86 h 8.48 c 2.3,0 4.16,-1.87 4.16,-4.16 v -10.16 c 0,-2.29 -1.86,-4.16 -4.16,-4.16 h -6.62 c -4.88,0 -8.85,-3.97 -8.85,-8.86 v -4.02 h -22.54 v 2.67 c 0,4.29 -3.05,7.87 -7.1,8.69 v 0 c -0.54,0.1 -1.09,0.16 -1.65,0.17 h -10.76 c -0.72,0 -1.4,0.19 -2,0.51 -0.26,0.15 -0.51,0.32 -0.73,0.52 -0.87,0.76 -1.43,1.88 -1.43,3.13 v 3.66 c 0,1.24 0.55,2.36 1.42,3.12 0.22,0.2 0.47,0.38 0.73,0.52 0.6,0.33 1.29,0.52 2.01,0.52 h 2.68 c 0.57,0 1.11,0.06 1.65,0.18 v 0 c 4.03,0.83 7.07,4.41 7.07,8.68 v 1.07 c 0,4.27 -3.04,7.84 -7.07,8.67 v 0 c -0.54,0.11 -1.09,0.17 -1.65,0.18 h -2.68 c -0.72,0 -1.41,0.19 -2.01,0.52 -0.26,0.15 -0.5,0.32 -0.72,0.52 -0.87,0.76 -1.43,1.88 -1.43,3.13 v 5.18 c 0,1.24 0.55,2.36 1.42,3.12 0.22,0.2 0.47,0.38 0.73,0.52 0.6,0.33 1.29,0.52 2.01,0.52 h 57.52 c 2.3,0 4.16,-1.86 4.16,-4.16 v -0.79 c 0,-2.29 -1.86,-4.16 -4.16,-4.16 h -8.48 c -4.23,0 -7.67,-3.44 -7.67,-7.66 0,-4.22 3.44,-7.66 7.67,-7.66 z m 8.64,19.48 v 0.79 c 0,1.72 -1.4,3.12 -3.12,3.12 h -54.57 c -1.73,0 -3.13,-1.4 -3.13,-3.12 v -5.18 c 0,-1.73 1.4,-3.13 3.13,-3.13 h 2.56 c 5.45,0 9.89,-4.43 9.89,-9.89 v -1.07 c 0,-5.45 -4.43,-9.9 -9.89,-9.9 h -2.56 c -1.73,0 -3.13,-1.4 -3.13,-3.12 v -3.66 c 0,-1.73 1.4,-3.13 3.13,-3.13 h 10.67 c 5.45,0 9.89,-4.43 9.89,-9.89 v -1.63 h 17.49 v 2.98 c 0,5.45 4.43,9.89 9.89,9.89 h 6.63 c 1.72,0 3.12,1.4 3.12,3.13 v 10.16 c 0,1.73 -1.4,3.13 -3.12,3.13 h -8.49 c -4.8,0 -8.7,3.9 -8.7,8.7 0,4.8 3.9,8.7 8.7,8.7 h 8.49 c 1.72,0 3.12,1.4 3.12,3.12 z"
|
||||
id="path23" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 158.8,148.66 v -2.96 c 0,-2.3 -1.86,-4.16 -4.16,-4.16 h -7.27 v 11.28 h 7.27 c 2.3,0 4.16,-1.86 4.16,-4.16 z m -10.4,-6.08 h 3.26 c 1.73,0 3.13,1.4 3.13,3.13 v 2.96 c 0,1.72 -1.4,3.12 -3.13,3.12 h -3.26 v -9.2 z"
|
||||
id="path25" />
|
||||
</g>
|
||||
<g
|
||||
id="T_root"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 83.67,124.48 h -1.12 c -0.6,-0.11 -1.22,-0.17 -1.85,-0.17 h -8.62 c -5.74,0 -10.41,4.67 -10.41,10.41 v 2.63 H 26.4 c -0.99,-0.36 -1.7,-1.33 -1.7,-2.45 0,-1.45 1.17,-2.62 2.61,-2.62 h 25.73 c 5.73,0 10.41,-4.67 10.41,-10.41 v -10.14 c -0.18,0.04 -0.34,0.06 -0.52,0.09 -0.18,0.03 -0.34,0.06 -0.52,0.07 v 9.97 c 0,4.68 -3.45,8.58 -7.95,9.27 -0.46,0.07 -0.94,0.11 -1.42,0.11 H 27.31 c -0.55,0 -1.08,0.12 -1.54,0.34 -0.3,0.13 -0.57,0.31 -0.81,0.52 -0.8,0.67 -1.3,1.67 -1.3,2.79 0,0.95 0.36,1.81 0.96,2.45 0.17,0.19 0.35,0.37 0.57,0.52 0.32,0.22 0.67,0.41 1.04,0.52 0.34,0.11 0.71,0.17 1.09,0.17 H 65.7 v -3.67 c 0,-5.17 4.2,-9.37 9.37,-9.37 h 8.62 c 0.24,0 0.48,0 0.71,0.03 0.6,0.05 1.19,0.15 1.74,0.31 3.98,1.08 6.91,4.73 6.91,9.05 0,4.68 -3.44,8.58 -7.92,9.28 h -0.02 c -0.46,0.07 -0.95,0.11 -1.43,0.11 H 71.42 v 17.42 c 0,2.04 -1.31,3.82 -3.25,4.44 l -0.36,0.12 v 2.87 c 0,4.27 -3.17,7.81 -7.27,8.39 -0.4,0.06 -0.8,0.09 -1.22,0.09 h -8.63 v 9.14 h 7.74 c 0.24,0 0.48,0 0.71,0.03 0.6,0.05 1.2,0.15 1.76,0.31 3.97,1.09 6.89,4.73 6.89,9.04 v 13.04 c 0,4.67 -3.43,8.55 -7.91,9.25 -0.47,0.08 -0.96,0.12 -1.46,0.12 h -4.1 c -0.59,0 -1.17,-0.06 -1.73,-0.17 -4.35,-0.81 -7.64,-4.63 -7.64,-9.2 v -16.17 l -0.06,-0.52 h -0.52 c -5.17,0 -9.37,-4.2 -9.37,-9.37 v -1.86 c 0,-5.17 4.2,-9.37 9.43,-9.37 h 0.52 v -11.81 c 0,-5.17 4.2,-9.37 9.37,-9.37 h 11.35 v -6.44 H 27.3 c -0.59,0 -1.17,-0.06 -1.73,-0.17 -4.35,-0.81 -7.64,-4.64 -7.64,-9.22 0,-5.18 4.2,-9.39 9.37,-9.39 h 25.73 c 2,0 3.64,-1.63 3.64,-3.65 v -10.16 c -0.18,-0.02 -0.35,-0.05 -0.52,-0.09 -0.18,-0.02 -0.35,-0.06 -0.52,-0.1 -0.24,-0.04 -0.48,-0.08 -0.71,-0.15 -0.58,-0.12 -1.16,-0.28 -1.73,-0.45 -0.18,-0.05 -0.35,-0.1 -0.52,-0.16 v 10.94 c 0,1.44 -1.17,2.61 -2.61,2.61 H 24.33 c -5.74,0 -10.41,4.67 -10.41,10.43 0,5.76 4.67,10.43 10.41,10.43 h 1.13 c 0.59,0.11 1.21,0.17 1.84,0.17 h 34.37 v 4.19 H 51.36 c -5.74,0 -10.41,4.67 -10.41,10.41 v 10.78 C 35.42,170.93 31,175.5 31,181.09 v 1.86 c 0,5.57 4.4,10.12 9.95,10.39 v 15.67 c 0,5.73 4.67,10.41 10.41,10.41 h 1.13 c 0.59,0.11 1.21,0.17 1.84,0.17 h 4.1 c 5.74,0 10.41,-4.67 10.41,-10.41 v -13.04 c 0,-5.74 -4.67,-10.42 -10.41,-10.42 h -1.12 c -0.59,-0.11 -1.22,-0.17 -1.85,-0.17 h -3.74 v -6.89 h 7.59 c 5.25,0 9.53,-4.28 9.53,-9.53 v -2.12 c 2.17,-0.85 3.61,-2.94 3.61,-5.31 v -16.38 h 11.22 c 5.74,0 10.41,-4.67 10.41,-10.43 0,-5.76 -4.67,-10.43 -10.41,-10.43 z"
|
||||
id="path28" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 63.44,110.63 h -0.17 c 0.05,0.15 0.1,0.31 0.17,0.45 z"
|
||||
id="path30" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 50.69,209.18 c 0,0.94 0.35,1.79 0.95,2.43 0.18,0.19 0.37,0.37 0.58,0.52 0.31,0.23 0.66,0.41 1.04,0.52 0.33,0.11 0.7,0.17 1.08,0.17 h 4.1 c 2,0 3.64,-1.63 3.64,-3.64 v -13.04 c 0,-2.01 -1.63,-3.65 -3.64,-3.65 H 50.7 v 16.69 z m 1.04,-15.65 h 4.65 c 0.99,0.36 1.7,1.32 1.7,2.43 v 13.05 c 0,1.43 -1.17,2.6 -2.61,2.6 h -2.06 c -0.98,-0.37 -1.68,-1.33 -1.68,-2.43 z"
|
||||
id="path32" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 42,178.53 c -0.19,0.17 -0.37,0.35 -0.52,0.56 -0.22,0.29 -0.4,0.62 -0.52,0.97 -0.14,0.38 -0.21,0.79 -0.21,1.22 v 1.86 c 0,0.43 0.07,0.83 0.21,1.21 0.12,0.35 0.3,0.69 0.52,0.97 0.16,0.2 0.32,0.39 0.52,0.55 0.65,0.57 1.5,0.91 2.45,0.91 h 0.52 v -8.62 l -0.06,-0.52 h -0.52 c -0.91,0 -1.74,0.33 -2.38,0.9 z"
|
||||
id="path34" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 87.31,134.91 c 0,-2.02 -1.63,-3.65 -3.65,-3.65 h -8.62 c -0.55,0 -1.08,0.12 -1.54,0.34 -0.3,0.13 -0.57,0.31 -0.81,0.52 -0.8,0.66 -1.3,1.66 -1.3,2.77 v 3.67 h 12.26 c 2.01,0 3.65,-1.64 3.65,-3.65 z m -12.26,-2.62 h 6.55 c 1,0.37 1.71,1.34 1.71,2.46 0,1.45 -1.17,2.62 -2.61,2.62 h -8.25 v -2.47 c 0,-1.44 1.17,-2.61 2.61,-2.61 z"
|
||||
id="path36" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 52.78,156.81 c -0.3,0.13 -0.57,0.31 -0.81,0.52 -0.79,0.66 -1.29,1.66 -1.29,2.77 v 11.81 h 8.63 c 1.52,0 2.75,-1.24 2.75,-2.76 v -3.82 c 0,-2.04 1.31,-3.83 3.26,-4.45 l 0.36,-0.11 v -4.3 H 54.33 c -0.56,0 -1.09,0.12 -1.55,0.35 z m 1.55,0.69 h 7.35 v 2.35 c -2.17,0.85 -3.61,2.95 -3.61,5.31 v 3.82 c 0,0.95 -0.78,1.73 -1.73,1.73 h -4.62 v -10.6 c 0,-1.44 1.17,-2.61 2.61,-2.61 z"
|
||||
id="path38" />
|
||||
</g>
|
||||
<path
|
||||
id="greens"
|
||||
class="cls-2"
|
||||
d="m 135.42264,31.984739 c -1.33362,2.623146 -2.41374,6.403561 -3.17423,10.305214 -0.0551,0.297584 -0.33065,0.495973 -0.62823,0.462908 -0.29759,-0.03306 -0.51802,-0.297583 -0.507,-0.595167 0.11022,-2.612124 0.18737,-5.025858 0.0221,-6.778296 -0.0771,-0.881729 -0.20941,-1.554048 -0.39678,-1.97287 -0.18737,-0.429843 -0.34167,-0.451886 -0.4078,-0.451886 -0.022,0 -0.0441,0 -0.0772,0 -0.2535,-0.03307 -0.51802,0.04409 -0.79356,0.286562 -0.29758,0.253497 -0.59517,0.68334 -0.87071,1.311573 -0.5621,1.245443 -0.9699,3.119118 -1.15727,5.411615 -0.37473,4.441712 0.0882,10.3493 1.70835,16.069521 l 0.79356,-0.573125 c 0.18737,-0.132259 0.42984,-0.143281 0.62823,-0.02204 0.19839,0.121238 0.29759,0.34167 0.26452,0.573124 -0.0992,0.661298 -0.16532,1.333616 -0.19839,2.016957 h 3.22934 c 0.1543,-2.016957 1.14625,-4.816448 2.55701,-7.582874 1.49894,-2.964816 3.52692,-5.98474 5.66511,-8.067826 0.15431,-0.154302 0.20942,-0.34167 0.18737,-0.451886 0,-0.05511 -0.022,-0.07715 -0.0331,-0.08817 0,0 -0.0331,-0.03307 -0.0992,-0.04409 -1.24544,-0.209411 -2.89868,0.352691 -4.61806,1.70835 -0.20941,0.165325 -0.49597,0.165325 -0.69436,0 -0.20941,-0.154302 -0.28656,-0.429843 -0.18737,-0.672318 1.39975,-3.427724 2.71132,-6.767275 3.33956,-9.423485 0.3086,-1.333616 0.44086,-2.435778 0.35269,-3.262399 -0.0882,-0.793557 -0.37474,-1.245443 -0.80458,-1.465876 -0.69436,-0.231454 -1.34464,-0.07715 -2.039,0.462909 -0.71641,0.562102 -1.42179,1.543026 -2.09411,2.854599 z m 1.38872,-3.758372 c 0.92582,-0.738448 2.00594,-1.036032 3.16321,-0.628232 0.022,0 0.0441,0.01102 0.0661,0.02204 0.92581,0.451886 1.34463,1.344638 1.46587,2.38067 0.11022,1.02501 -0.0441,2.281475 -0.37473,3.648156 -0.54006,2.292497 -1.56507,5.03688 -2.68928,7.869436 1.34464,-0.738448 2.71132,-1.080119 3.9237,-0.88173 0.65027,0.110217 1.02501,0.595168 1.08012,1.135227 0.0551,0.495973 -0.14329,1.036032 -0.52904,1.410768 -2.01696,1.961848 -3.97881,4.871555 -5.44468,7.75922 -1.4769,2.909707 -2.40272,5.709198 -2.4468,7.483679 0,0.4078 -0.34167,0.738449 -0.74947,0.738449 h -4.02289 c -0.42985,0 -0.76049,-0.352692 -0.74947,-0.771514 0.011,-0.418821 0.0441,-0.837643 0.0772,-1.256464 l -0.19839,0.143281 c -0.41882,0.297583 -1.00297,0.09919 -1.15727,-0.396779 -1.79652,-6.017804 -2.30352,-12.289105 -1.90674,-17.01738 0.19839,-2.358626 0.61721,-4.375583 1.25646,-5.78635 0.31963,-0.705384 0.69437,-1.300551 1.1683,-1.708351 0.47393,-0.4078 1.03603,-0.639254 1.66426,-0.562103 0.72743,0.02204 1.16829,0.562103 1.42179,1.146249 0.2535,0.595167 0.4078,1.410767 0.48495,2.325561 0.0441,0.484952 0.0661,1.013989 0.0882,1.576092 0.58415,-2.016956 1.26749,-3.868588 2.02798,-5.37855 0.70538,-1.377703 1.49894,-2.523951 2.40271,-3.240356 z" />
|
||||
<path
|
||||
id="ring"
|
||||
class="cls-4"
|
||||
d="m 131.73039,94.12463 c 1.9839,0 3.65918,-1.675287 3.65918,-3.835524 0,-2.160238 -1.67528,-3.835524 -3.65918,-3.835524 -1.98389,0 -3.65917,1.675286 -3.65917,3.835524 0,2.160237 1.67528,3.835524 3.65917,3.835524 z" />
|
||||
<path
|
||||
id="ring-2"
|
||||
class="cls-1"
|
||||
d="m 139.36838,90.278084 c 0,4.463756 -3.46079,8.001696 -7.63799,8.001696 -4.17719,0 -7.63798,-3.53794 -7.63798,-8.001696 0,-4.463756 3.46079,-8.001696 7.63798,-8.001696 4.1772,0 7.63799,3.53794 7.63799,8.001696 z m -7.63799,4.981776 c 2.65621,0 4.80543,-2.23739 4.80543,-4.981776 0,-2.744383 -2.14922,-4.981772 -4.80543,-4.981772 -2.65621,0 -4.80542,2.237389 -4.80542,4.981772 0,2.744386 2.14921,4.981776 4.80542,4.981776 z" />
|
||||
<path
|
||||
id="ring-3"
|
||||
class="cls-1"
|
||||
d="m 131.73039,102.5231 c 6.43663,0 11.73803,-5.43366 11.73803,-12.233994 0,-6.80034 -5.29038,-12.233998 -11.73803,-12.233998 -6.44764,0 -11.73802,5.433658 -11.73802,12.233998 0,6.800334 5.29038,12.233994 11.73802,12.233994 z m 0,-3.08605 c 4.84952,0 8.78423,-4.10004 8.78423,-9.147944 0,-5.047902 -3.93471,-9.147944 -8.78423,-9.147944 -4.84951,0 -8.78423,4.100042 -8.78423,9.147944 0,5.047904 3.93472,9.147944 8.78423,9.147944 z" />
|
||||
<path
|
||||
id="ring-4"
|
||||
class="cls-1"
|
||||
d="m 147.9983,90.278084 c 0,9.412466 -7.31835,16.973296 -16.26791,16.973296 -8.94955,0 -16.26791,-7.54981 -16.26791,-16.973296 0,-9.423485 7.32938,-16.973294 16.26791,-16.973294 8.93854,0 16.26791,7.549809 16.26791,16.973294 z m -3.38363,0 c 0,7.384486 -5.76431,13.380246 -12.88428,13.380246 -7.11996,0 -12.88427,-5.99576 -12.88427,-13.380246 0,-7.384485 5.76431,-13.380246 12.88427,-13.380246 7.11997,0 12.88428,5.995761 12.88428,13.380246 z" />
|
||||
<path
|
||||
id="ring-5"
|
||||
class="cls-1"
|
||||
d="m 131.73039,68.510386 c -11.4735,0 -20.84188,9.699025 -20.84188,21.77872 0,10.128864 6.60195,18.593474 15.50742,21.051294 0.20941,0.0661 0.4078,0.11021 0.61721,0.1543 0.74947,0.19839 1.49894,0.33065 2.28148,0.41882 0.44086,0.0661 0.89275,0.0992 1.34463,0.12124 0.19839,0 0.37474,0.022 0.57313,0.022 0.17634,0 0.35269,0 0.52904,0 0.72742,0 1.45485,-0.0441 2.17125,-0.12123 0.19839,0 0.37474,-0.0441 0.57313,-0.0661 10.195,-1.38873 18.11954,-10.49259 18.11954,-21.580334 0,-12.068674 -9.3794,-21.77872 -20.8529,-21.77872 z m 0,39.887244 c -9.61085,0 -17.41415,-8.11192 -17.41415,-18.119546 0,-10.00763 7.8033,-18.119542 17.41415,-18.119542 9.61086,0 17.41416,8.111912 17.41416,18.119542 0,10.007626 -7.79228,18.119546 -17.41416,18.119546 z" />
|
||||
<path
|
||||
id="body"
|
||||
class="cls-1"
|
||||
d="m 142.92836,63.264095 c -1.70835,-1.15727 -3.40568,-2.402713 -4.62908,-3.504875 -0.99195,-1.146248 -2.46884,-3.019924 -2.34761,-5.345485 0.0661,-1.179314 0.0992,-1.906741 0.14329,-2.391692 0.022,-0.187367 -0.46291,-0.562102 -0.63926,-0.484951 -1.79652,0.892751 -3.61509,1.002967 -7.13099,1.013989 -0.0992,0 -0.17634,0.07715 -0.17634,0.187367 0.0882,2.094108 -1.02501,5.91861 -2.52395,7.252226 -1.66427,1.256465 -3.35058,2.259432 -5.09199,3.262399 -9.31327,4.62908 -15.79398,14.879186 -15.79398,26.782535 0,8.762192 3.5159,16.631622 9.08181,22.021192 2.93175,2.84358 6.117,4.22128 9.93048,5.33447 0.18737,0.0661 0.37474,0.11021 0.57313,0.17634 0.18736,0.0551 0.37473,0.0992 0.57312,0.15431 0.68334,0.18736 1.38872,0.36371 2.11615,0.55108 0.18737,0.0551 0.37474,0.0882 0.57313,0.14328 0.18736,0.0551 0.37473,0.0882 0.57312,0.14328 0.0882,0.022 0.19839,0.0551 0.28656,0.0661 0.49597,0.13226 1.01399,0.2535 1.54303,0.38576 1.08012,0.28656 2.22637,0.33064 3.33955,0.11021 0.0551,0 0.0882,-0.022 0.14328,-0.0331 0.14328,-0.0331 0.28656,-0.0661 0.42984,-0.0882 0.19839,-0.0441 0.38576,-0.0771 0.57313,-0.12123 6.61297,-1.42179 10.93344,-2.75541 15.1437,-6.83341 5.56592,-5.38957 9.08182,-13.25901 9.08182,-22.021193 0,-11.881306 -6.45867,-22.109369 -15.7499,-26.760492 z m -8.4646,49.762615 c -0.18737,0.0331 -0.37474,0.0551 -0.57313,0.0661 -0.18737,0.022 -0.37473,0.0441 -0.57312,0.0441 -0.51802,0.0551 -1.05808,0.0661 -1.59814,0.0661 -1.21238,0 -2.41373,-0.0992 -3.58202,-0.3086 -0.18737,-0.0331 -0.37474,-0.0661 -0.57313,-0.11022 -0.18737,-0.0331 -0.37473,-0.0661 -0.57312,-0.12124 -0.26452,-0.0551 -0.54006,-0.11021 -0.80458,-0.19839 -0.60619,-0.16532 -1.20136,-0.35269 -1.79652,-0.57312 -0.22044,-0.0772 -0.44087,-0.16532 -0.65028,-0.2535 -8.20008,-3.31751 -14.0195,-11.63883 -14.0195,-21.359896 0,-12.652819 9.85333,-22.913947 21.99915,-22.913947 12.14583,0 21.99915,10.261128 21.99915,22.913947 0,11.693936 -8.38745,21.348876 -19.25476,22.748626 z" />
|
||||
<path
|
||||
id="greens-2"
|
||||
class="cls-2"
|
||||
d="m 57.995761,32.105977 c -1.333616,2.612124 -2.402713,6.381518 -3.163205,10.272149 -0.05511,0.297584 -0.330648,0.495973 -0.628232,0.462908 -0.297584,-0.03307 -0.518016,-0.297583 -0.506995,-0.595167 0.110217,-2.601102 0.187368,-5.003815 0.02204,-6.756253 -0.07715,-0.881729 -0.209411,-1.543026 -0.396779,-1.97287 -0.187367,-0.429843 -0.34167,-0.451886 -0.4078,-0.451886 -0.02204,0 -0.04409,0 -0.07715,0 -0.253497,-0.03307 -0.518016,0.04409 -0.793557,0.286562 -0.297583,0.253497 -0.595167,0.68334 -0.870707,1.311573 -0.551081,1.245443 -0.958881,3.108096 -1.15727,5.400593 -0.286563,3.460789 -0.07715,7.814328 0.804578,12.267063 0,0 1.311572,-0.341671 1.443832,-0.04409 l 0.187367,-0.176346 c 0.187368,-0.132259 0.451887,0.05511 0.650276,0.176346 0.198389,0.121238 -0.264519,-0.03307 0.881729,-0.176346 -0.09919,0.650276 0.551081,-0.68334 0.506995,0 h 1.025011 c 1.02501,-0.297584 1.15727,-0.297584 2.843577,-0.297584 0.19839,-0.429843 0.4078,-0.870707 0.628233,-1.300551 1.49894,-2.953794 3.515896,-5.962696 5.65409,-8.045782 0.154303,-0.154302 0.19839,-0.34167 0.187368,-0.451886 0,-0.05511 -0.02204,-0.07715 -0.03307,-0.08817 0,0 -0.03306,-0.03307 -0.09919,-0.04409 -1.245443,-0.20941 -2.887664,0.352692 -4.607036,1.708351 -0.19839,0.165325 -0.484952,0.165325 -0.694362,0 -0.209411,-0.154302 -0.286563,-0.429843 -0.187368,-0.672318 1.399746,-3.416702 2.700297,-6.745231 3.328529,-9.39042 0.308605,-1.322594 0.440865,-2.424756 0.352692,-3.251378 -0.08817,-0.793556 -0.374735,-1.245443 -0.793557,-1.465875 -0.68334,-0.231454 -1.344637,-0.07715 -2.027978,0.451886 -0.716405,0.562103 -1.421789,1.532005 -2.083086,2.8546 z m 1.377702,-3.74735 c 0.925816,-0.727427 2.005935,-1.036033 3.152183,-0.628233 0.02204,0 0.04409,0.01102 0.06613,0.02204 0.925816,0.451887 1.344638,1.344638 1.454854,2.38067 0.110216,1.025011 -0.04409,2.270454 -0.374735,3.637135 -0.540059,2.281475 -1.554048,5.025858 -2.689275,7.836371 1.344637,-0.738449 2.700296,-1.080119 3.912675,-0.88173 0.650275,0.110217 1.013989,0.595168 1.080118,1.124206 0.05511,0.495972 -0.143281,1.036032 -0.529037,1.410767 -2.016957,1.961848 -3.967783,4.849512 -5.433659,7.737177 -0.220432,0.429843 -0.418821,0.848664 -0.606189,1.267486 -0.804578,-0.176346 -1.322594,-0.727427 -2.18228,-0.727427 0,0.4078 -0.341671,0.727427 -0.749471,0.727427 h -4.011869 c -0.429843,0 -0.738448,0.308605 -0.727427,-0.110216 0.01102,-0.418822 -0.330648,0.573124 -0.297584,0.154302 l -0.198389,0.143281 c -0.418821,0.297584 -1.002967,0.0992 -1.146248,-0.396778 0.07715,0.253497 -0.330649,0.694362 -0.396778,0.374735 -0.88173,-4.529885 -1.102162,-8.949555 -0.804579,-12.487495 0.198389,-2.347604 0.617211,-4.353539 1.256465,-5.764306 0.319627,-0.705384 0.694362,-1.300552 1.15727,-1.69733 0.462908,-0.4078 1.036032,-0.639254 1.653243,-0.562102 0.727427,0.02204 1.168292,0.562102 1.410767,1.146248 0.253497,0.595167 0.396778,1.410767 0.484951,2.31454 0.04409,0.484951 0.06613,1.013989 0.08817,1.56507 0.584146,-2.005935 1.256465,-3.857567 2.027978,-5.367529 0.694362,-1.377702 1.487919,-2.512929 2.402713,-3.229334 z" />
|
||||
<path
|
||||
id="ring-6"
|
||||
class="cls-4"
|
||||
d="m 57.78635,57.973718 c 0.08817,-0.02204 0.176346,-0.05511 0.264519,-0.07715 0,-0.04409 0,-0.08817 0,-0.132259 0.220432,1.333616 0.705384,2.72234 1.377702,3.780415 1.234422,1.532005 3.119119,2.766427 5.753286,4.022891 0.837643,0.330649 1.642221,0.694362 2.435778,1.091141 0.03306,0.01102 0.05511,0.03306 0.08817,0.04409 8.927511,4.507842 14.967359,13.2039 14.967359,23.189487 0,13.347187 -10.801187,24.390847 -24.853752,26.198397 -0.617211,-1.45486 -1.179313,-2.97584 -1.708351,-4.54091 12.399322,-0.84867 22.175498,-10.39339 22.175498,-22.054265 0,-11.660873 -10.536668,-21.933023 -23.597287,-22.109368 0.837643,-3.328529 1.884697,-6.480713 3.108097,-9.401442 z" />
|
||||
<path
|
||||
id="ring-7"
|
||||
class="cls-4"
|
||||
d="m 55.747351,110.4256 c 12.013565,-0.67231 21.392963,-9.86435 21.392963,-20.930051 0,-11.065706 -10.084782,-20.930055 -22.737601,-20.974142 -0.264519,1.146249 -0.518016,2.31454 -0.738448,3.504875 0.220432,0 0.440864,0 0.650275,0 10.470538,0 18.957185,7.82535 18.957185,17.480289 0,9.654939 -8.255193,17.259859 -18.51632,17.469269 0.297584,1.17931 0.628232,2.32556 0.980924,3.46079 z" />
|
||||
<path
|
||||
id="ring-8"
|
||||
class="cls-4"
|
||||
d="m 54.479864,105.82959 c 9.853328,-0.0772 17.656635,-7.45062 17.656635,-16.334041 0,-8.883425 -7.89148,-16.33404 -17.821959,-16.33404 -0.286562,0 -0.573124,0 -0.859686,0.02204 -0.198389,1.135227 -0.363714,2.292497 -0.506995,3.47181 0.451887,-0.04409 0.903773,-0.05511 1.366681,-0.05511 7.748198,0 14.030521,5.775329 14.030521,12.906317 0,7.130994 -6.282323,12.906324 -14.030521,12.906324 -0.198389,0 -0.385757,0 -0.584146,0 0.220433,1.16829 0.462908,2.31454 0.738449,3.43874 z" />
|
||||
<path
|
||||
id="ring-9"
|
||||
class="cls-4"
|
||||
d="m 53.532005,101.23357 c 0.264519,0.011 0.529038,0.022 0.793557,0.022 7.208139,0 12.884273,-5.35651 12.884273,-11.771093 0,-6.414582 -5.676134,-11.771089 -12.884273,-11.771089 -0.506995,0 -1.013989,0.02204 -1.498941,0.07715 -0.110216,0.991946 -0.198389,1.994913 -0.27554,3.019924 0.573124,-0.0992 1.168292,-0.154303 1.774481,-0.154303 5.279355,0 9.566765,3.956762 9.566765,8.828317 0,4.871554 -4.276388,8.828314 -9.566765,8.828314 -0.429843,0 -0.848665,-0.022 -1.256465,-0.0772 0.13226,1.01399 0.286562,2.00594 0.462908,2.99788 z" />
|
||||
<path
|
||||
id="ring-10"
|
||||
class="cls-4"
|
||||
d="m 52.914794,97.0674 c 0.451887,0.0661 0.925816,0.11022 1.399746,0.11022 4.739296,0 8.420517,-3.52692 8.420517,-7.682071 0,-4.155151 -3.681221,-7.682069 -8.420517,-7.682069 -0.639254,0 -1.256465,0.06613 -1.851632,0.187368 -0.05511,1.002967 -0.09919,2.016956 -0.121238,3.041967 0.606189,-0.231454 1.278508,-0.352692 1.983892,-0.352692 2.887664,0 5.235269,2.149216 5.235269,4.805426 0,2.65621 -2.347605,4.805421 -5.235269,4.805421 -0.595168,0 -1.179314,-0.0882 -1.708351,-0.26451 0.08817,1.02501 0.187367,2.02797 0.308605,3.03094 z" />
|
||||
<path
|
||||
id="ring-11"
|
||||
class="cls-4"
|
||||
d="m 52.518016,92.791013 c 0.540059,0.242477 1.146249,0.374737 1.807546,0.374737 2.347605,0 4.08902,-1.730396 4.08902,-3.670201 0,-1.939805 -1.741415,-3.670199 -4.08902,-3.670199 -0.738449,0 -1.421789,0.176346 -1.994913,0.462908 0,0.242475 0,0.484951 0,0.716405 0,1.950827 0.06613,3.87961 0.198389,5.775329 z" />
|
||||
<path
|
||||
id="onion_outline"
|
||||
class="cls-1"
|
||||
d="M 58.657058,51.162357 47.811785,51.93387 c -0.639254,0.05511 -1.025011,0.771514 -0.738449,1.355659 0.694362,1.432811 1.509962,3.53794 1.6312,5.554897 0.143281,2.336583 -5.345486,5.554896 -9.291225,7.682068 -9.45655,4.551929 -15.871132,13.380246 -15.871132,23.542179 0,11.760067 8.607885,21.756677 20.577363,25.360747 0.187368,0.0661 0.374735,0.11022 0.573124,0.16532 0.187368,0.0661 0.374735,0.11022 0.573125,0.16533 0.694362,0.18737 1.399745,0.35269 2.116151,0.48495 0.198389,0.0441 0.374735,0.0661 0.573124,0.0992 0.187367,0.0441 0.374735,0.0661 0.573124,0.0992 1.355659,0.20941 2.755405,0.35269 4.188215,0.4078 0.716406,-0.0441 1.421789,-0.11022 2.127173,-0.20941 0.198389,-0.022 0.385756,-0.0441 0.573124,-0.0771 0.198389,-0.0221 0.385757,-0.0551 0.573124,-0.0882 0.231454,-0.0331 0.47393,-0.0772 0.694362,-0.12123 0.374735,-0.0772 0.760492,-0.16533 1.124205,-0.24248 v 0 c -0.143281,-0.36371 -0.297583,-0.71641 -0.440864,-1.0691 -0.06613,-0.16532 -0.13226,-0.33065 -0.19839,-0.49597 -0.132259,-0.34167 -0.253497,-0.68334 -0.385756,-1.03603 -0.231454,-0.63926 -0.462908,-1.28953 -0.683341,-1.95083 -0.121237,-0.36371 -0.231454,-0.73845 -0.352691,-1.11318 -0.187368,-0.56211 -0.352692,-1.13523 -0.518017,-1.71938 -0.165324,-0.57312 -0.319626,-1.16829 -0.473929,-1.75243 -1.576092,-6.12802 -2.4468,-12.86223 -2.4468,-19.949134 0,-5.224247 0.47393,-10.250106 1.344638,-14.989402 0,-0.03306 0,-0.06613 0.02204,-0.07715 0.08817,-0.562103 0.209411,-1.113184 0.330649,-1.664265 v -0.03306 c 0.110216,-0.529037 0.220432,-1.058075 0.352692,-1.56507 0,-0.06613 0.02204,-0.110216 0.04409,-0.165324 0.07715,-0.374735 0.176346,-0.760492 0.27554,-1.135227 0.209411,-0.848664 0.440865,-1.686308 0.683341,-2.512929 0.110216,-0.385757 0.220432,-0.771513 0.352692,-1.15727 0.242475,-0.793557 0.495973,-1.587113 0.771513,-2.347605 0.07715,-0.231454 0.165324,-0.47393 0.242476,-0.694362 l 0.429843,-1.135227 c 0.198389,-0.518016 0.4078,-1.047054 0.628232,-1.554048 0.08817,-0.03307 0.176346,-0.05511 0.264519,-0.07715 v -0.07715 c -0.08817,-1.653243 0.694362,-3.736329 1.476897,-5.290377 0.319627,-0.639254 -0.165324,-1.410767 -0.870708,-1.355659 z m -1.741416,5.951674 -0.187367,0.429844 c -3.504875,8.354387 -5.565918,18.527342 -5.565918,29.47181 0,9.930475 1.686308,19.199665 4.62908,27.080115 0.05511,0.16533 0.110216,0.34167 0.187368,0.49598 0.07715,0.22043 0.165324,0.45188 0.253497,0.67231 -0.07715,0.022 -0.176346,0.0331 -0.253497,0.0441 -0.19839,0.0441 -0.374735,0.0661 -0.573125,0.0992 -0.198389,0.0331 -0.374735,0.0661 -0.573124,0.0772 -0.705383,0.0992 -1.421789,0.17634 -2.149216,0.22043 -1.421788,-0.0551 -2.810513,-0.19839 -4.166172,-0.42984 -0.198389,-0.0221 -0.385756,-0.0551 -0.573124,-0.0992 -0.198389,-0.022 -0.385757,-0.0661 -0.573124,-0.11021 -0.264519,-0.0441 -0.529038,-0.0882 -0.782535,-0.16533 -0.639254,-0.13226 -1.278508,-0.3086 -1.90674,-0.49597 -0.198389,-0.0551 -0.385757,-0.11022 -0.573124,-0.17635 -11.396355,-3.571 -19.442137,-13.12675 -19.442137,-24.18143 0,-9.654939 6.105977,-18.119542 15.231878,-22.517168 h 0.02204 c 0,0 0.02204,-0.02204 0.02204,-0.02204 1.983892,-1.058075 4.408648,-2.435777 6.32641,-3.846545 0.947859,-0.705383 1.829589,-1.454854 2.468843,-2.215345 0.61721,-0.727427 1.168291,-1.653243 1.09114,-2.689275 -0.132259,-2.10513 -0.914794,-4.243324 -1.620178,-5.720221 l 10.128868,-0.727427 c -0.639254,1.344638 -1.322594,3.141162 -1.43281,4.783383 z" />
|
||||
<path
|
||||
id="greens-3"
|
||||
class="cls-2"
|
||||
d="m 214.20517,32.105977 c -1.33361,2.612124 -2.41373,6.381518 -3.1632,10.272149 -0.0551,0.297584 -0.33065,0.495973 -0.62824,0.462908 -0.29758,-0.03307 -0.51801,-0.297583 -0.50699,-0.595167 0.11022,-2.601102 0.18737,-5.003815 0.022,-6.756253 -0.0772,-0.881729 -0.20941,-1.543026 -0.39677,-1.97287 -0.18737,-0.429843 -0.34168,-0.451886 -0.4078,-0.451886 -0.022,0 -0.0441,0 -0.0772,0 -0.25349,-0.03307 -0.51801,0.04409 -0.79355,0.286562 -0.29759,0.253497 -0.59517,0.68334 -0.87071,1.311573 -0.55108,1.245443 -0.95888,3.108096 -1.15727,5.400593 -0.28656,3.460789 -0.0772,7.814328 0.80458,12.267063 0,0 1.31157,-0.341671 1.44383,-0.04409 l 0.18737,-0.176346 c 0.18736,-0.132259 0.45188,0.05511 0.65027,0.176346 0.19839,0.121238 -0.26452,-0.03307 0.88173,-0.176346 -0.0992,0.650276 0.55108,-0.68334 0.507,0 h 1.02501 c 1.02501,-0.297584 1.15727,-0.297584 2.83255,-0.297584 0.19839,-0.429843 0.4078,-0.870707 0.62824,-1.300551 1.49894,-2.953794 3.51589,-5.962696 5.65409,-8.045782 0.1543,-0.154302 0.19839,-0.34167 0.18736,-0.451886 0,-0.05511 -0.022,-0.07715 -0.0331,-0.08817 0,0 -0.0331,-0.03307 -0.0992,-0.04409 -1.24544,-0.20941 -2.88766,0.352692 -4.59601,1.708351 -0.20941,0.165325 -0.49597,0.165325 -0.69436,0 -0.20941,-0.154302 -0.28656,-0.429843 -0.18737,-0.672318 1.39975,-3.416702 2.7003,-6.745231 3.32853,-9.39042 0.3086,-1.322594 0.44086,-2.424756 0.35269,-3.251378 -0.0882,-0.793556 -0.37473,-1.245443 -0.79356,-1.465875 -0.68334,-0.231454 -1.34463,-0.07715 -2.02797,0.451886 -0.71641,0.562103 -1.42179,1.532005 -2.08309,2.8546 z m 1.3777,-3.74735 c 0.92582,-0.727427 2.00594,-1.036033 3.15219,-0.628233 0.022,0 0.0441,0.01102 0.0661,0.02204 0.92581,0.451887 1.34463,1.344638 1.45485,2.38067 0.11022,1.025011 -0.0441,2.270454 -0.37473,3.637135 -0.54006,2.281475 -1.55405,5.025858 -2.68928,7.836371 1.34464,-0.738449 2.7003,-1.080119 3.91268,-0.88173 0.65027,0.110217 1.01398,0.595168 1.08011,1.124206 0.0551,0.495972 -0.14328,1.036032 -0.52903,1.410767 -2.01696,1.961848 -3.96779,4.849512 -5.43366,7.737177 -0.22043,0.429843 -0.41882,0.848664 -0.60619,1.267486 -0.80458,-0.176346 -1.3226,-0.727427 -2.18228,-0.727427 0,0.4078 -0.34167,0.727427 -0.74947,0.727427 h -4.01187 c -0.42984,0 -0.73845,0.308605 -0.72743,-0.110216 0.011,-0.418822 -0.33065,0.573124 -0.29758,0.154302 l -0.19839,0.143281 c -0.41882,0.297584 -1.00297,0.0992 -1.14625,-0.396778 0.0772,0.253497 -0.33065,0.694362 -0.39678,0.374735 -0.88173,-4.529885 -1.10216,-8.949555 -0.80458,-12.487495 0.19839,-2.347604 0.61721,-4.353539 1.25647,-5.764306 0.31963,-0.705384 0.69436,-1.300552 1.15727,-1.69733 0.47393,-0.4078 1.03603,-0.639254 1.65324,-0.562102 0.72743,0.02204 1.16829,0.562102 1.41077,1.146248 0.2535,0.595167 0.39678,1.410767 0.48495,2.31454 0.0441,0.484951 0.0661,1.013989 0.0882,1.56507 0.58415,-2.005935 1.25647,-3.857567 2.02798,-5.367529 0.69436,-1.377702 1.49894,-2.512929 2.40271,-3.229334 z" />
|
||||
<path
|
||||
id="ring-12"
|
||||
class="cls-4"
|
||||
d="m 213.99576,57.973718 c 0.0882,-0.02204 0.17635,-0.05511 0.26452,-0.07715 0,-0.04409 0,-0.08817 0,-0.132259 0.22043,1.333616 0.70538,2.72234 1.3777,3.780415 1.23442,1.532005 3.11912,2.766427 5.75329,4.022891 0.83764,0.330649 1.64222,0.694362 2.43578,1.091141 0.0331,0.01102 0.0551,0.03306 0.0771,0.04409 8.92751,4.507842 14.96736,13.2039 14.96736,23.189487 0,13.347187 -10.80119,24.390847 -24.85376,26.198397 -0.61721,-1.45486 -1.17931,-2.97584 -1.70835,-4.54091 12.39932,-0.84867 22.1755,-10.39339 22.1755,-22.054265 0,-11.660873 -10.53667,-21.933023 -23.59729,-22.109368 0.83765,-3.328529 1.8847,-6.480713 3.1081,-9.401442 z" />
|
||||
<path
|
||||
id="ring-13"
|
||||
class="cls-4"
|
||||
d="m 211.94574,110.4256 c 12.01356,-0.67231 21.39296,-9.86435 21.39296,-20.930051 0,-11.065706 -10.08478,-20.930055 -22.7376,-20.974142 -0.26452,1.146249 -0.51801,2.31454 -0.73845,3.504875 0.22044,0 0.44087,0 0.65028,0 10.47054,0 18.95718,7.82535 18.95718,17.480289 0,9.654939 -8.25519,17.259859 -18.51632,17.469269 0.29759,1.17931 0.62824,2.32556 0.98093,3.46079 z" />
|
||||
<path
|
||||
id="ring-14"
|
||||
class="cls-4"
|
||||
d="m 210.67825,105.82959 c 9.85333,-0.0772 17.65664,-7.45062 17.65664,-16.334041 0,-8.883425 -7.89148,-16.33404 -17.82196,-16.33404 -0.28656,0 -0.57312,0 -0.85969,0.02204 -0.19839,1.135227 -0.36371,2.292497 -0.50699,3.47181 0.45188,-0.04409 0.90377,-0.05511 1.36668,-0.05511 7.7482,0 14.03052,5.775329 14.03052,12.906317 0,7.130994 -6.28232,12.906324 -14.03052,12.906324 -0.19839,0 -0.38576,0 -0.58415,0 0.22044,1.16829 0.46291,2.31454 0.73845,3.43874 z" />
|
||||
<path
|
||||
id="ring-15"
|
||||
class="cls-4"
|
||||
d="m 209.73039,101.23357 c 0.26452,0.011 0.52904,0.022 0.79356,0.022 7.20814,0 12.88427,-5.35651 12.88427,-11.771093 0,-6.414582 -5.67613,-11.771089 -12.88427,-11.771089 -0.50699,0 -1.01399,0.02204 -1.49894,0.07715 -0.11022,0.991946 -0.19839,1.994913 -0.27554,3.019924 0.57312,-0.0992 1.16829,-0.154303 1.77448,-0.154303 5.27936,0 9.56677,3.956762 9.56677,8.828317 0,4.871554 -4.27639,8.828314 -9.56677,8.828314 -0.42984,0 -0.84866,-0.022 -1.25646,-0.0772 0.13226,1.01399 0.28656,2.00594 0.4629,2.99788 z" />
|
||||
<path
|
||||
id="ring-16"
|
||||
class="cls-4"
|
||||
d="m 209.11318,97.0674 c 0.45189,0.0661 0.92582,0.11022 1.39975,0.11022 4.7393,0 8.42052,-3.52692 8.42052,-7.682071 0,-4.155151 -3.68122,-7.682069 -8.42052,-7.682069 -0.63925,0 -1.25647,0.06613 -1.85163,0.187368 -0.0551,1.002967 -0.0992,2.016956 -0.12124,3.041967 0.60619,-0.231454 1.27851,-0.352692 1.98389,-0.352692 2.88767,0 5.23527,2.149216 5.23527,4.805426 0,2.65621 -2.33658,4.805421 -5.23527,4.805421 -0.59517,0 -1.17931,-0.0882 -1.70835,-0.26451 0.0882,1.02501 0.18737,2.02797 0.30861,3.03094 z" />
|
||||
<path
|
||||
id="ring-17"
|
||||
class="cls-4"
|
||||
d="m 208.71641,92.791013 c 0.54005,0.242477 1.14624,0.374737 1.80754,0.374737 2.34761,0 4.08902,-1.730396 4.08902,-3.670201 0,-1.939805 -1.74141,-3.670199 -4.08902,-3.670199 -0.73845,0 -1.42179,0.176346 -1.99491,0.462908 0,0.242475 0,0.484951 0,0.716405 0,1.950827 0.0661,3.87961 0.19839,5.775329 z" />
|
||||
<path
|
||||
id="onion_outline-2"
|
||||
class="cls-1"
|
||||
d="m 214.85545,51.162357 -10.84528,0.771513 c -0.63925,0.05511 -1.02501,0.771514 -0.73844,1.355659 0.69436,1.432811 1.50996,3.53794 1.63119,5.554897 0.14329,2.336583 -5.34548,5.554896 -9.29122,7.682068 -9.45655,4.551929 -15.87113,13.380246 -15.87113,23.542179 0,11.782107 8.65197,21.789737 20.65451,25.393807 0.18737,0.0551 0.37474,0.11022 0.57313,0.15431 0.19839,0.0661 0.38575,0.11021 0.58414,0.16532 0.69436,0.18737 1.41077,0.35269 2.12718,0.48495 0.19838,0.0441 0.38575,0.0661 0.58414,0.11022 0.18737,0.0331 0.37474,0.0661 0.57313,0.0882 1.33361,0.20941 2.68927,0.34167 4.07799,0.38576 0.72743,-0.0441 1.44384,-0.11022 2.16024,-0.20941 0.19839,-0.022 0.37474,-0.0551 0.57313,-0.0771 0.19839,-0.0331 0.37473,-0.0661 0.57312,-0.0992 0.20941,-0.0331 0.44086,-0.0661 0.65028,-0.11021 0.38575,-0.0772 0.77151,-0.16533 1.13522,-0.24248 v 0 c -0.14328,-0.36371 -0.29758,-0.71641 -0.44086,-1.0691 -0.0661,-0.16532 -0.13226,-0.33065 -0.19839,-0.49597 -0.13226,-0.34167 -0.2535,-0.68334 -0.38576,-1.03603 -0.23145,-0.63926 -0.46291,-1.28953 -0.68334,-1.95083 -0.0661,-0.18737 -0.12124,-0.36371 -0.17634,-0.5621 -0.0661,-0.18737 -0.12124,-0.36372 -0.17635,-0.55108 -0.0661,-0.20941 -0.13226,-0.4078 -0.19839,-0.62823 -0.11022,-0.3527 -0.22043,-0.72743 -0.33065,-1.09115 -0.16532,-0.57312 -0.31962,-1.16829 -0.47393,-1.75243 -1.57609,-6.12802 -2.4468,-12.86223 -2.4468,-19.949134 0,-5.224247 0.47393,-10.250106 1.34464,-14.989402 0,-0.03306 0,-0.06613 0.022,-0.07715 0.0882,-0.562103 0.20941,-1.113184 0.33065,-1.664265 v -0.03306 c 0.0661,-0.34167 0.14328,-0.661297 0.22043,-1.002967 0.0551,-0.242476 0.0992,-0.495973 0.16533,-0.727427 0.0771,-0.374735 0.17634,-0.760492 0.27554,-1.135227 0.20941,-0.848664 0.44086,-1.686308 0.68334,-2.512929 0.11022,-0.385757 0.22043,-0.771513 0.35269,-1.15727 0.24248,-0.793557 0.49597,-1.587113 0.77151,-2.347605 0.0772,-0.231454 0.16533,-0.47393 0.24248,-0.694362 l 0.42984,-1.135227 c 0.19839,-0.518016 0.4078,-1.047054 0.62824,-1.554048 0.0882,-0.03307 0.17634,-0.05511 0.26451,-0.07715 v -0.07715 c -0.0882,-1.653243 0.69437,-3.736329 1.4769,-5.290377 0.31963,-0.639254 -0.16532,-1.410767 -0.87071,-1.355659 z m -1.74142,5.951674 -0.18737,0.429844 c -3.50487,8.354387 -5.56591,18.527342 -5.56591,29.47181 0,8.189065 1.14624,15.937265 3.19627,22.814755 0.0551,0.19839 0.11021,0.37473 0.17634,0.5621 0.0551,0.19839 0.11022,0.38576 0.18737,0.57312 0,0.0661 0.022,0.12124 0.0551,0.18737 0.18736,0.60619 0.38575,1.20136 0.60619,1.79652 0.18736,0.55109 0.38575,1.10217 0.60619,1.64223 0.0772,0.22043 0.16532,0.45188 0.25349,0.67231 -0.0771,0 -0.16532,0.0331 -0.24247,0.0441 -0.19839,0.0441 -0.37474,0.0661 -0.57313,0.0992 -0.19839,0.0331 -0.37473,0.0551 -0.57312,0.0772 -0.70539,0.0992 -1.43281,0.17634 -2.16024,0.22043 -1.38872,-0.0551 -2.7554,-0.19839 -4.078,-0.4078 -0.19839,-0.0331 -0.38575,-0.0661 -0.57312,-0.0992 -0.19839,-0.0331 -0.38576,-0.0661 -0.57313,-0.11022 -0.72742,-0.13226 -1.44383,-0.29758 -2.13819,-0.49597 -0.19839,-0.0441 -0.38576,-0.0882 -0.58415,-0.16533 -0.19839,-0.0441 -0.38575,-0.0992 -0.57312,-0.16532 -11.42942,-3.54896 -19.50827,-13.12675 -19.50827,-24.192457 0,-9.654938 6.10598,-18.119542 15.23188,-22.517168 h 0.022 c 0,0 0.0221,-0.02204 0.0221,-0.02204 1.98389,-1.058076 4.40865,-2.435778 6.32641,-3.846546 0.94786,-0.705383 1.82959,-1.454853 2.46884,-2.215345 0.61721,-0.727427 1.15727,-1.653243 1.09114,-2.689275 -0.13226,-2.105129 -0.91479,-4.243324 -1.62018,-5.720221 l 10.12887,-0.727426 c -0.63925,1.344637 -1.32259,3.141161 -1.43281,4.783382 z" />
|
||||
<path
|
||||
id="highlight"
|
||||
class="cls-3"
|
||||
d="m 201.45316,69.348029 c 0.51801,0.440865 0.51801,1.245443 0,1.686308 l -0.17635,0.143281 c 0,0 -0.0882,0.07715 -0.12124,0.121237 l -0.14328,0.176346 c -0.44086,0.518016 -1.24544,0.518016 -1.6863,0 l -0.15431,-0.176346 c 0,0 -0.0771,-0.08817 -0.12123,-0.121237 l -0.17635,-0.143281 c -0.51802,-0.440865 -0.51802,-1.245443 0,-1.686308 l 0.17635,-0.143281 c 0,0 0.0882,-0.07715 0.12123,-0.121238 l 0.15431,-0.176346 c 0.44086,-0.518016 1.24544,-0.518016 1.6863,0 l 0.14328,0.176346 c 0,0 0.0772,0.08817 0.12124,0.121238 l 0.17635,0.154302 z" />
|
||||
<path
|
||||
id="highlight-2"
|
||||
class="cls-3"
|
||||
d="m 197.82705,73.84485 c 1.26748,1.080118 1.26748,3.041966 0,4.122085 l -0.42985,0.363714 c -0.11021,0.08817 -0.20941,0.187367 -0.29758,0.297583 l -0.36371,0.429843 c -1.08012,1.267487 -3.04197,1.267487 -4.12209,0 l -0.36371,-0.429843 c -0.0882,-0.110216 -0.19839,-0.20941 -0.29759,-0.297583 l -0.42984,-0.363714 c -1.26749,-1.080119 -1.26749,-3.041967 0,-4.122085 l 0.42984,-0.363714 c 0.11022,-0.08817 0.20941,-0.187367 0.29759,-0.297584 l 0.36371,-0.429843 c 1.08012,-1.267486 3.04197,-1.267486 4.12209,0 l 0.36371,0.429843 c 0.0882,0.110217 0.18737,0.209411 0.29758,0.297584 z" />
|
||||
<path
|
||||
id="highlight-3"
|
||||
class="cls-3"
|
||||
d="m 41.099618,74.649428 c -0.176345,0.121238 -0.352691,0.253497 -0.518016,0.374735 -0.694362,0.518016 -1.355659,1.058075 -2.005934,1.642221 -0.07715,0.06613 -0.154303,0.132259 -0.231454,0.187368 -0.88173,0.61721 -2.083086,0.595167 -2.876643,-0.154303 -0.870708,-0.8156 -0.914794,-2.193302 -0.03307,-2.997881 0.08817,-0.07715 0.165324,-0.154302 0.253497,-0.231454 0.716406,-0.650275 1.465876,-1.267486 2.237389,-1.84061 0.253497,-0.187368 0.506995,-0.374735 0.760492,-0.551081 0.793556,-0.551081 1.609156,-1.080119 2.446799,-1.554048 0.06613,-0.03306 0.13226,-0.07715 0.198389,-0.110216 0.03307,-0.02204 0.07715,-0.04409 0.110217,-0.05511 1.047054,-0.584145 2.336583,-0.110216 2.843577,0.969903 0.462908,0.991946 0.110217,2.149216 -0.74947,2.78847 -0.07715,0.05511 -0.165324,0.110216 -0.253497,0.165324 -0.74947,0.429843 -1.476897,0.892751 -2.182281,1.388724 z" />
|
||||
<circle
|
||||
id="highlight-4"
|
||||
class="cls-3"
|
||||
cx="33.164051"
|
||||
cy="79.443825"
|
||||
r="2.1822805" />
|
||||
<g
|
||||
id="star"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 226.79,31.14 c 0,0.27 -0.06,0.52 -0.15,0.75 -0.07,0.17 -0.17,0.29 -0.25,0.43 l 0.84,-0.82 v 0 c 0.37,-0.35 0.6,-0.84 0.6,-1.39 v -6.92 l -1.04,1.04 z"
|
||||
id="path68" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 214.08,18.17 -0.19,0.2 -0.75,0.75 c 0.14,-0.11 0.3,-0.21 0.47,-0.29 0.22,-0.09 0.48,-0.15 0.74,-0.15 h 7.34 l 1.04,-1.04 h -7.34 c -0.51,0 -0.97,0.19 -1.31,0.52 z"
|
||||
id="path70" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 236.44,17.65 h -7.35 l -1.26,-1.26 V 9.05 c 0,-1.07 -0.86,-1.93 -1.92,-1.93 -0.55,0 -1.04,0.22 -1.38,0.59 l -0.13,0.14 -0.6,0.63 c 0.1,-0.06 0.21,-0.12 0.32,-0.18 v 0 c 0.22,-0.09 0.45,-0.14 0.7,-0.15 h 0.07 c 0.27,0 0.52,0.06 0.75,0.17 0.46,0.21 0.83,0.6 1.01,1.09 0.07,0.2 0.12,0.44 0.12,0.67 v 7.35 l 1.27,1.26 h 7.34 c 0.23,0 0.46,0.05 0.67,0.12 0.48,0.18 0.87,0.55 1.09,1.02 0.07,0.17 0.13,0.33 0.15,0.53 v 0 c 0,0.08 0.02,0.16 0.02,0.23 v 0.02 c 0,0.27 -0.06,0.52 -0.14,0.74 v 0 c -0.06,0.17 -0.15,0.3 -0.24,0.42 l 0.72,-0.7 0.08,-0.07 c 0.38,-0.35 0.62,-0.85 0.62,-1.41 0,-1.07 -0.86,-1.93 -1.92,-1.93 z"
|
||||
id="path72" />
|
||||
<path
|
||||
class="cls-5"
|
||||
d="m 236.17,20.61 c 0,0.11 -0.03,0.22 -0.07,0.32 -0.11,0.27 -0.38,0.45 -0.7,0.45 h -7.39 l -1.34,1.34 -1.03,1.03 v 7.39 c 0,0.09 -0.02,0.19 -0.05,0.27 -0.08,0.21 -0.25,0.38 -0.47,0.45 -0.07,0.03 -0.16,0.05 -0.25,0.05 -0.42,0 -0.77,-0.34 -0.77,-0.77 v -7.39 l -0.12,-0.12 -2.11,-2.12 -0.12,-0.12 h -7.4 c -0.42,0 -0.77,-0.34 -0.77,-0.77 0,-0.08 0.02,-0.17 0.05,-0.24 0.07,-0.22 0.24,-0.39 0.46,-0.47 0.08,-0.03 0.17,-0.05 0.26,-0.05 h 7.82 l 1.03,-1.04 v 0 l 0.9,-0.91 v -7.82 c 0,-0.31 0.19,-0.58 0.46,-0.7 0.09,-0.05 0.19,-0.06 0.31,-0.06 0.09,0 0.19,0.02 0.27,0.05 0.3,0.11 0.5,0.39 0.5,0.71 v 7.82 l 1.94,1.95 h 7.82 c 0.33,0 0.61,0.2 0.71,0.49 0.04,0.08 0.06,0.18 0.06,0.27 z"
|
||||
id="path74" />
|
||||
</g>
|
||||
<g
|
||||
id="star-2"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 240.27,50.31 c 0,0.19 -0.04,0.37 -0.11,0.54 -0.05,0.12 -0.12,0.21 -0.18,0.3 l 0.6,-0.58 v 0 c 0.27,-0.25 0.43,-0.6 0.43,-0.99 v -4.94 l -0.74,0.74 v 4.94 z"
|
||||
id="path77" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 231.18,41.05 -0.14,0.15 -0.54,0.54 c 0.1,-0.08 0.21,-0.15 0.34,-0.21 0.16,-0.07 0.34,-0.11 0.53,-0.11 h 5.24 l 0.74,-0.74 h -5.24 c -0.36,0 -0.7,0.14 -0.93,0.37 z"
|
||||
id="path79" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 247.16,40.68 h -5.25 l -0.9,-0.9 v -5.24 c 0,-0.76 -0.62,-1.38 -1.37,-1.38 -0.39,0 -0.74,0.16 -0.99,0.42 l -0.09,0.1 -0.43,0.45 c 0.07,-0.05 0.15,-0.09 0.23,-0.13 v 0 c 0.16,-0.07 0.32,-0.1 0.5,-0.11 h 0.05 c 0.19,0 0.37,0.05 0.54,0.12 0.33,0.15 0.6,0.43 0.72,0.78 0.05,0.15 0.09,0.31 0.09,0.48 v 5.25 l 0.91,0.9 h 5.24 c 0.17,0 0.33,0.03 0.48,0.09 0.34,0.13 0.62,0.39 0.78,0.73 0.05,0.12 0.09,0.24 0.11,0.38 v 0 c 0,0.06 0.01,0.11 0.01,0.17 v 0 c 0,0.21 -0.04,0.38 -0.1,0.54 v 0 c -0.05,0.12 -0.11,0.21 -0.17,0.3 l 0.52,-0.5 0.06,-0.05 c 0.27,-0.25 0.44,-0.61 0.44,-1.01 0,-0.76 -0.62,-1.38 -1.37,-1.38 z"
|
||||
id="path81" />
|
||||
<path
|
||||
class="cls-5"
|
||||
d="m 246.97,42.79 c 0,0.08 -0.02,0.16 -0.05,0.23 -0.08,0.19 -0.27,0.32 -0.5,0.32 h -5.28 l -0.95,0.95 -0.74,0.74 v 5.28 c 0,0.07 -0.01,0.13 -0.03,0.19 -0.06,0.15 -0.18,0.27 -0.34,0.32 -0.05,0.02 -0.11,0.03 -0.18,0.03 -0.3,0 -0.55,-0.25 -0.55,-0.55 v -5.28 l -0.09,-0.09 -1.51,-1.52 -0.09,-0.09 h -5.29 c -0.3,0 -0.55,-0.25 -0.55,-0.55 0,-0.06 0.01,-0.12 0.03,-0.17 0.05,-0.16 0.17,-0.28 0.33,-0.34 0.06,-0.02 0.12,-0.03 0.19,-0.03 h 5.59 l 0.74,-0.74 v 0 l 0.64,-0.65 v -5.59 c 0,-0.22 0.14,-0.41 0.33,-0.5 0.07,-0.03 0.14,-0.05 0.22,-0.05 0.07,0 0.13,0.01 0.19,0.03 0.21,0.08 0.36,0.28 0.36,0.51 v 5.59 l 1.39,1.39 h 5.59 c 0.24,0 0.44,0.15 0.51,0.35 0.03,0.06 0.04,0.13 0.04,0.19 z"
|
||||
id="path83" />
|
||||
</g>
|
||||
<g
|
||||
id="star-3"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 126.92,190.52 c 0,0.21 0.04,0.4 0.12,0.59 0.06,0.13 0.13,0.22 0.2,0.33 l -0.66,-0.64 v 0 c -0.29,-0.27 -0.47,-0.66 -0.47,-1.08 v -5.39 l 0.81,0.81 z"
|
||||
id="path86" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 136.82,180.42 0.15,0.16 0.59,0.59 c -0.11,-0.09 -0.23,-0.17 -0.37,-0.22 -0.17,-0.07 -0.38,-0.12 -0.58,-0.12 h -5.71 l -0.81,-0.81 h 5.71 c 0.4,0 0.76,0.15 1.02,0.4 z"
|
||||
id="path88" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 119.41,180.01 h 5.72 l 0.98,-0.98 v -5.71 c 0,-0.83 0.67,-1.5 1.5,-1.5 0.43,0 0.81,0.17 1.08,0.46 l 0.1,0.11 0.47,0.49 c -0.08,-0.05 -0.17,-0.09 -0.25,-0.14 v 0 c -0.17,-0.07 -0.35,-0.11 -0.55,-0.12 h -0.06 c -0.21,0 -0.4,0.05 -0.59,0.13 -0.36,0.17 -0.65,0.47 -0.79,0.85 -0.06,0.16 -0.09,0.34 -0.09,0.52 v 5.72 l -0.99,0.98 h -5.71 c -0.18,0 -0.36,0.04 -0.52,0.09 -0.38,0.14 -0.68,0.43 -0.85,0.79 -0.06,0.13 -0.1,0.26 -0.12,0.41 v 0 c 0,0.07 -0.01,0.12 -0.01,0.18 v 0 c 0,0.22 0.04,0.42 0.11,0.59 v 0 c 0.05,0.13 0.12,0.23 0.19,0.33 l -0.56,-0.55 -0.06,-0.06 c -0.3,-0.27 -0.48,-0.66 -0.48,-1.1 0,-0.83 0.67,-1.5 1.5,-1.5 z"
|
||||
id="path90" />
|
||||
<path
|
||||
class="cls-5"
|
||||
d="m 119.62,182.32 c 0,0.09 0.02,0.17 0.06,0.25 0.09,0.21 0.3,0.35 0.54,0.35 h 5.76 l 1.04,1.04 0.8,0.8 v 5.76 c 0,0.07 0.01,0.14 0.04,0.21 0.07,0.17 0.2,0.3 0.37,0.35 0.06,0.02 0.12,0.04 0.2,0.04 0.33,0 0.6,-0.27 0.6,-0.6 v -5.76 l 0.09,-0.09 1.65,-1.65 0.09,-0.09 h 5.76 c 0.33,0 0.6,-0.27 0.6,-0.6 0,-0.07 -0.01,-0.13 -0.04,-0.19 -0.06,-0.17 -0.19,-0.3 -0.36,-0.37 -0.07,-0.02 -0.13,-0.04 -0.2,-0.04 h -6.09 l -0.8,-0.81 v 0 l -0.7,-0.71 v -6.09 c 0,-0.24 -0.15,-0.45 -0.36,-0.54 -0.07,-0.04 -0.15,-0.05 -0.24,-0.05 -0.07,0 -0.14,0.01 -0.21,0.04 -0.23,0.09 -0.39,0.3 -0.39,0.56 v 6.09 l -1.51,1.52 h -6.09 c -0.26,0 -0.48,0.16 -0.56,0.38 -0.03,0.07 -0.04,0.14 -0.04,0.21 z"
|
||||
id="path92" />
|
||||
</g>
|
||||
<g
|
||||
id="star-4"
|
||||
transform="matrix(1.1021619,0,0,1.1021619,-13.931326,-7.8473927)">
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 22.91,73.25 c 0,0.24 0.05,0.46 0.13,0.67 0.07,0.15 0.15,0.26 0.22,0.38 l -0.75,-0.72 v 0 c -0.33,-0.31 -0.53,-0.75 -0.53,-1.23 v -6.14 l 0.92,0.92 v 6.13 z"
|
||||
id="path95" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 34.19,61.75 0.17,0.18 0.67,0.67 c -0.12,-0.1 -0.26,-0.19 -0.42,-0.26 -0.2,-0.08 -0.43,-0.13 -0.66,-0.13 h -6.51 l -0.92,-0.92 h 6.51 c 0.45,0 0.86,0.17 1.16,0.46 z"
|
||||
id="path97" />
|
||||
<path
|
||||
class="cls-6"
|
||||
d="m 14.36,61.29 h 6.52 L 22,60.17 v -6.51 c 0,-0.95 0.77,-1.71 1.7,-1.71 0.49,0 0.92,0.2 1.23,0.53 l 0.12,0.12 0.53,0.56 C 25.49,53.1 25.39,53.05 25.29,53 v 0 c -0.2,-0.08 -0.4,-0.12 -0.63,-0.13 h -0.07 c -0.24,0 -0.46,0.06 -0.67,0.15 -0.41,0.19 -0.74,0.53 -0.9,0.96 -0.07,0.18 -0.11,0.39 -0.11,0.59 v 6.52 l -1.13,1.12 h -6.51 c -0.21,0 -0.41,0.04 -0.59,0.11 -0.43,0.16 -0.77,0.49 -0.96,0.9 -0.07,0.15 -0.12,0.3 -0.13,0.47 v 0 c 0,0.07 -0.02,0.14 -0.02,0.21 v 0.02 c 0,0.24 0.05,0.46 0.12,0.66 v 0 c 0.06,0.15 0.13,0.26 0.21,0.37 L 13.26,64.32 13.19,64.25 C 12.85,63.94 12.64,63.49 12.64,63 c 0,-0.95 0.77,-1.71 1.7,-1.71 z"
|
||||
id="path99" />
|
||||
<path
|
||||
class="cls-5"
|
||||
d="m 14.6,63.91 c 0,0.1 0.02,0.2 0.07,0.28 0.1,0.24 0.34,0.4 0.62,0.4 h 6.56 l 1.18,1.18 0.91,0.91 v 6.56 c 0,0.08 0.02,0.16 0.04,0.24 0.07,0.19 0.22,0.34 0.42,0.4 0.07,0.02 0.14,0.04 0.22,0.04 0.37,0 0.68,-0.3 0.68,-0.68 v -6.56 l 0.11,-0.11 1.88,-1.88 0.11,-0.11 h 6.56 c 0.37,0 0.68,-0.3 0.68,-0.68 0,-0.07 -0.02,-0.15 -0.04,-0.21 -0.07,-0.2 -0.21,-0.35 -0.41,-0.42 -0.07,-0.02 -0.15,-0.04 -0.23,-0.04 h -6.93 l -0.91,-0.92 v 0 l -0.8,-0.81 v -6.93 c 0,-0.27 -0.17,-0.51 -0.41,-0.62 -0.08,-0.04 -0.17,-0.06 -0.27,-0.06 -0.08,0 -0.16,0.02 -0.24,0.04 -0.26,0.1 -0.44,0.35 -0.44,0.63 v 6.93 l -1.72,1.73 h -6.93 c -0.3,0 -0.54,0.18 -0.63,0.44 -0.03,0.07 -0.05,0.16 -0.05,0.24 z"
|
||||
id="path101" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 51 KiB |
BIN
assets/static/images/yec-2023/x.png
Normal file
After Width: | Height: | Size: 517 B |
3
assets/static/images/yec-2023/x.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.2088 15.7556L22.3459 10.6185C22.465 10.4889 22.5296 10.3183 22.5259 10.1422C22.5223 9.96613 22.4508 9.79827 22.3263 9.67368C22.2019 9.54909 22.0341 9.47739 21.858 9.47355C21.682 9.46971 21.5112 9.53404 21.3815 9.65309L16.2662 14.7684H15.7339L10.6186 9.65418C10.5552 9.59086 10.4799 9.54064 10.3971 9.5064C10.3143 9.47216 10.2256 9.45456 10.136 9.45461C10.0464 9.45466 9.9577 9.47236 9.87494 9.5067C9.79218 9.54103 9.71699 9.59133 9.65367 9.65472C9.59035 9.71812 9.54013 9.79336 9.50589 9.87616C9.47165 9.95896 9.45405 10.0477 9.4541 10.1373C9.4542 10.3182 9.52619 10.4918 9.65421 10.6196L14.7673 15.7316V16.2673L9.65421 21.3804C9.53501 21.51 9.4705 21.6806 9.47414 21.8567C9.47777 22.0328 9.54929 22.2006 9.67374 22.3252C9.79819 22.4498 9.96596 22.5215 10.142 22.5254C10.3181 22.5292 10.4888 22.4649 10.6186 22.3458L15.7317 17.2327H16.2673L21.3804 22.3458C21.5086 22.4735 21.6822 22.5452 21.8631 22.5452C22.0441 22.5452 22.2177 22.4735 22.3459 22.3458C22.4738 22.2178 22.5457 22.0441 22.5457 21.8631C22.5457 21.682 22.4738 21.5084 22.3459 21.3804L17.2088 16.2433V15.7556Z" fill="#FBFBFE"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 95 KiB |
Before Width: | Height: | Size: 222 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 37 KiB |
@ -24,4 +24,10 @@ if (Modernizr.addTest('svgasimg', document.implementation.hasFeature('http://www
|
||||
}
|
||||
}
|
||||
});
|
||||
a = $('[class*="img-svg"]');
|
||||
a.each(function(i, obj) {
|
||||
pngSrc = $(obj).attr('src');
|
||||
svgSrc = pngSrc.replace(/png/g,"svg");
|
||||
$(obj).attr("src",svgSrc);
|
||||
});
|
||||
}
|
||||
|
@ -1,49 +1,32 @@
|
||||
<div class="banner">
|
||||
<input id="trigger" type="checkbox" title="{{ _('Close banner') }}" />
|
||||
<label for="trigger" class="banner-close text-white">
|
||||
<noscript>
|
||||
<div class="d-flex h-100">
|
||||
<img src="{{ '/static/css/images/x.png'|asseturl }}" class="m-auto h-100 w-100 p-1">
|
||||
<img src="{{ '/static/images/yec-2023/x.png'|asseturl }}" class="m-auto h-100 w-100 p-1 img-svg">
|
||||
</div>
|
||||
</noscript>
|
||||
</label>
|
||||
<span class="eoy-sr-only text-white">{{ _('Close banner') }}</span>
|
||||
|
||||
<div id="banner-header">
|
||||
<div class="banner-content">
|
||||
<div class="banner-content-spacer pt-2">
|
||||
<h1 class="banner-heading pb-4 mb-3">{{ _('POWERED BY PRIVACY:') }}</h1>
|
||||
|
||||
<div class="banner-content-2">
|
||||
<div class="banner-main-graphics">
|
||||
<img class="yec-background-image"
|
||||
alt=""
|
||||
srcset="
|
||||
{{ '/static/images/yec-bg-desktop-2x.png'|asseturl }} 2x,
|
||||
{{ '/static/images/yec-bg-desktop-3x.png'|asseturl }} 3x" />
|
||||
|
||||
<div class="banner-foreground-text">
|
||||
<img class="yec-foreground-image"
|
||||
alt=""
|
||||
srcset="
|
||||
{{ '/static/images/yec-foreground-2x_12x.png'|asseturl }} 2x,
|
||||
{{ '/static/images/yec-foreground-2x_13x.png'|asseturl }} 3x" />
|
||||
|
||||
<div class="banner-sub-headings">
|
||||
<p class="banner-sub-heading-bold">{{ _('RESISTANCE') }}</p>
|
||||
<p class="banner-sub-heading-light">{{ _('CHANGE') }}</p>
|
||||
<p class="banner-sub-heading-bold">{{ _('FREEDOM') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="banner-content-spacer py-5 h-100">
|
||||
<div class="banner-content-container d-flex">
|
||||
<div class="banner-main-graphics h-100">
|
||||
<img class="yec-illo img-svg" src="{{ '/static/images/yec-2023/main-illo.png'|asseturl }}">
|
||||
</div>
|
||||
|
||||
<div class="banner-cta">
|
||||
<p class="banner-donate-text m-0 d-none">{{ _('Your donation will be matched by Friends of Tor, up to $100,000.') }}</p>
|
||||
<a class="banner-donate-button"
|
||||
href="https://torproject.org/donate/donate-pbp-banner"
|
||||
target="_blank">
|
||||
{{ _('DONATE NOW') }}
|
||||
</a>
|
||||
<div id="banner-text-container" class="d-flex flex-column">
|
||||
<div id="banner-text" class="d-flex flex-column">
|
||||
<h1>{{ _('Right now, Tor Browser is protecting your privacy and the privacy of millions of people like you!') }}</h1>
|
||||
<p>
|
||||
<strong>{{ _('This is possible because of donations from our community.') }}</strong> {{ _("If you value the privacy that Tor Browser offers yourself and others, please make a donation today. You’ll ensure Tor Browser continues to provide online privacy to everyone who needs it.") }}
|
||||
</p>
|
||||
</div>
|
||||
<div id="yec-donate-button-container">
|
||||
<a class="btn" id="yec-donate-button" href="https://donate.torproject.org/">
|
||||
<span>{{ _('Donate now') }}</span>
|
||||
<img src="{{ '/static/images/yec-2023/heart.png'|asseturl }}" class="donate-heart img-svg">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|