jekyll-theme-handwritten 4.3.5 → 4.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +92 -92
- data/_config.yml +54 -54
- data/_data/images.json +2 -2
- data/_includes/disqus_comments.html +20 -20
- data/_includes/footer.html +49 -49
- data/_includes/google-analytics.html +12 -12
- data/_includes/head.html +44 -45
- data/_includes/header.html +33 -33
- data/_includes/icon-github.html +1 -1
- data/_includes/icon-github.svg +1 -1
- data/_includes/icon-twitter.html +1 -1
- data/_includes/icon-twitter.svg +1 -1
- data/_includes/navrail.html +23 -23
- data/_includes/social.html +14 -14
- data/_includes/theme_selector.html +35 -35
- data/_layouts/default.html +23 -23
- data/_layouts/home.html +80 -80
- data/_layouts/page.html +14 -14
- data/_layouts/post.html +35 -35
- data/_sass/minima/_base.scss +846 -840
- data/_sass/minima/_layout.scss +277 -271
- data/_sass/minima/_mysass.scss +288 -287
- data/_sass/minima/_syntax-highlighting.scss +68 -68
- data/_sass/minima.scss +52 -52
- data/assets/main.scss +5 -5
- data/assets/minima-social-icons.svg +33 -33
- data/assets/theme-assets/js/theme.js +27 -27
- data/assets/theme-assets/material-theme/colors.module.css +294 -294
- data/assets/theme-assets/material-theme/theme.css +5 -5
- data/assets/theme-assets/material-theme/theme.dark.css +51 -51
- data/assets/theme-assets/material-theme/theme.light.css +51 -51
- data/assets/theme-assets/material-theme/tokens.css +303 -303
- data/assets/theme-assets/material-theme/typography.module.css +150 -150
- data/assets/theme-assets/theme-fonts/CascadiaCode-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/ComicShanns-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/Lexend-Regular.ttf +0 -0
- data/assets/theme-assets/theme-fonts/LilitaOne-Regular.ttf +0 -0
- data/assets/theme-assets/theme-fonts/Virgil-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/comic shanns.otf +0 -0
- data/assets/theme-assets/theme-icons/aboutme-small.svg +102 -102
- data/assets/theme-assets/theme-icons/aboutme.svg +9 -9
- data/assets/theme-assets/theme-icons/bookmark.svg +9 -9
- data/assets/theme-assets/theme-icons/categories-rough.svg +9 -9
- data/assets/theme-assets/theme-icons/categories2.svg +9 -9
- data/assets/theme-assets/theme-icons/divider.svg +19 -19
- data/assets/theme-assets/theme-icons/home-rough.svg +9 -9
- data/assets/theme-assets/theme-icons/home.svg +5 -5
- data/assets/theme-assets/theme-icons/home2.svg +9 -9
- data/assets/theme-assets/theme-icons/pin.svg +18 -18
- data/assets/theme-assets/theme-images/border-thick.svg +15 -15
- data/assets/theme-assets/theme-images/comp.png +0 -0
- data/assets/theme-assets/theme-images/comp.svg +9 -9
- data/assets/theme-assets/theme-images/logo.svg +9 -9
- data/assets/theme-assets/theme-images/menu.svg +9 -9
- metadata +13 -7
@@ -1,150 +1,150 @@
|
|
1
|
-
.displayLarge{
|
2
|
-
font-family: var(--md-sys-typescale-display-large-font-family-name);
|
3
|
-
font-style: var(--md-sys-typescale-display-large-font-family-style);
|
4
|
-
font-weight: var(--md-sys-typescale-display-large-font-weight);
|
5
|
-
font-size: var(--md-sys-typescale-display-large-font-size);
|
6
|
-
letter-spacing: var(--md-sys-typescale-display-large-tracking);
|
7
|
-
line-height: var(--md-sys-typescale-display-large-height);
|
8
|
-
text-transform: var(--md-sys-typescale-display-large-text-transform);
|
9
|
-
text-decoration: var(--md-sys-typescale-display-large-text-decoration);
|
10
|
-
}
|
11
|
-
.displayMedium{
|
12
|
-
font-family: var(--md-sys-typescale-display-medium-font-family-name);
|
13
|
-
font-style: var(--md-sys-typescale-display-medium-font-family-style);
|
14
|
-
font-weight: var(--md-sys-typescale-display-medium-font-weight);
|
15
|
-
font-size: var(--md-sys-typescale-display-medium-font-size);
|
16
|
-
letter-spacing: var(--md-sys-typescale-display-medium-tracking);
|
17
|
-
line-height: var(--md-sys-typescale-display-medium-height);
|
18
|
-
text-transform: var(--md-sys-typescale-display-medium-text-transform);
|
19
|
-
text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
|
20
|
-
}
|
21
|
-
.displaySmall{
|
22
|
-
font-family: var(--md-sys-typescale-display-small-font-family-name);
|
23
|
-
font-style: var(--md-sys-typescale-display-small-font-family-style);
|
24
|
-
font-weight: var(--md-sys-typescale-display-small-font-weight);
|
25
|
-
font-size: var(--md-sys-typescale-display-small-font-size);
|
26
|
-
letter-spacing: var(--md-sys-typescale-display-small-tracking);
|
27
|
-
line-height: var(--md-sys-typescale-display-small-height);
|
28
|
-
text-transform: var(--md-sys-typescale-display-small-text-transform);
|
29
|
-
text-decoration: var(--md-sys-typescale-display-small-text-decoration);
|
30
|
-
}
|
31
|
-
.headlineLarge{
|
32
|
-
font-family: var(--md-sys-typescale-headline-large-font-family-name);
|
33
|
-
font-style: var(--md-sys-typescale-headline-large-font-family-style);
|
34
|
-
font-weight: var(--md-sys-typescale-headline-large-font-weight);
|
35
|
-
font-size: var(--md-sys-typescale-headline-large-font-size);
|
36
|
-
letter-spacing: var(--md-sys-typescale-headline-large-tracking);
|
37
|
-
line-height: var(--md-sys-typescale-headline-large-height);
|
38
|
-
text-transform: var(--md-sys-typescale-headline-large-text-transform);
|
39
|
-
text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
|
40
|
-
}
|
41
|
-
.headlineMedium{
|
42
|
-
font-family: var(--md-sys-typescale-headline-medium-font-family-name);
|
43
|
-
font-style: var(--md-sys-typescale-headline-medium-font-family-style);
|
44
|
-
font-weight: var(--md-sys-typescale-headline-medium-font-weight);
|
45
|
-
font-size: var(--md-sys-typescale-headline-medium-font-size);
|
46
|
-
letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
|
47
|
-
line-height: var(--md-sys-typescale-headline-medium-height);
|
48
|
-
text-transform: var(--md-sys-typescale-headline-medium-text-transform);
|
49
|
-
text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
|
50
|
-
}
|
51
|
-
.headlineSmall{
|
52
|
-
font-family: var(--md-sys-typescale-headline-small-font-family-name);
|
53
|
-
font-style: var(--md-sys-typescale-headline-small-font-family-style);
|
54
|
-
font-weight: var(--md-sys-typescale-headline-small-font-weight);
|
55
|
-
font-size: var(--md-sys-typescale-headline-small-font-size);
|
56
|
-
letter-spacing: var(--md-sys-typescale-headline-small-tracking);
|
57
|
-
line-height: var(--md-sys-typescale-headline-small-height);
|
58
|
-
text-transform: var(--md-sys-typescale-headline-small-text-transform);
|
59
|
-
text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
|
60
|
-
}
|
61
|
-
.bodyLarge{
|
62
|
-
font-family: var(--md-sys-typescale-body-large-font-family-name);
|
63
|
-
font-style: var(--md-sys-typescale-body-large-font-family-style);
|
64
|
-
font-weight: var(--md-sys-typescale-body-large-font-weight);
|
65
|
-
font-size: var(--md-sys-typescale-body-large-font-size);
|
66
|
-
letter-spacing: var(--md-sys-typescale-body-large-tracking);
|
67
|
-
line-height: var(--md-sys-typescale-body-large-height);
|
68
|
-
text-transform: var(--md-sys-typescale-body-large-text-transform);
|
69
|
-
text-decoration: var(--md-sys-typescale-body-large-text-decoration);
|
70
|
-
}
|
71
|
-
.bodyMedium{
|
72
|
-
font-family: var(--md-sys-typescale-body-medium-font-family-name);
|
73
|
-
font-style: var(--md-sys-typescale-body-medium-font-family-style);
|
74
|
-
font-weight: var(--md-sys-typescale-body-medium-font-weight);
|
75
|
-
font-size: var(--md-sys-typescale-body-medium-font-size);
|
76
|
-
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
77
|
-
line-height: var(--md-sys-typescale-body-medium-height);
|
78
|
-
text-transform: var(--md-sys-typescale-body-medium-text-transform);
|
79
|
-
text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
|
80
|
-
}
|
81
|
-
.bodySmall{
|
82
|
-
font-family: var(--md-sys-typescale-body-small-font-family-name);
|
83
|
-
font-style: var(--md-sys-typescale-body-small-font-family-style);
|
84
|
-
font-weight: var(--md-sys-typescale-body-small-font-weight);
|
85
|
-
font-size: var(--md-sys-typescale-body-small-font-size);
|
86
|
-
letter-spacing: var(--md-sys-typescale-body-small-tracking);
|
87
|
-
line-height: var(--md-sys-typescale-body-small-height);
|
88
|
-
text-transform: var(--md-sys-typescale-body-small-text-transform);
|
89
|
-
text-decoration: var(--md-sys-typescale-body-small-text-decoration);
|
90
|
-
}
|
91
|
-
.labelLarge{
|
92
|
-
font-family: var(--md-sys-typescale-label-large-font-family-name);
|
93
|
-
font-style: var(--md-sys-typescale-label-large-font-family-style);
|
94
|
-
font-weight: var(--md-sys-typescale-label-large-font-weight);
|
95
|
-
font-size: var(--md-sys-typescale-label-large-font-size);
|
96
|
-
letter-spacing: var(--md-sys-typescale-label-large-tracking);
|
97
|
-
line-height: var(--md-sys-typescale-label-large-height);
|
98
|
-
text-transform: var(--md-sys-typescale-label-large-text-transform);
|
99
|
-
text-decoration: var(--md-sys-typescale-label-large-text-decoration);
|
100
|
-
}
|
101
|
-
.labelMedium{
|
102
|
-
font-family: var(--md-sys-typescale-label-medium-font-family-name);
|
103
|
-
font-style: var(--md-sys-typescale-label-medium-font-family-style);
|
104
|
-
font-weight: var(--md-sys-typescale-label-medium-font-weight);
|
105
|
-
font-size: var(--md-sys-typescale-label-medium-font-size);
|
106
|
-
letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
107
|
-
line-height: var(--md-sys-typescale-label-medium-height);
|
108
|
-
text-transform: var(--md-sys-typescale-label-medium-text-transform);
|
109
|
-
text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
|
110
|
-
}
|
111
|
-
.labelSmall{
|
112
|
-
font-family: var(--md-sys-typescale-label-small-font-family-name);
|
113
|
-
font-style: var(--md-sys-typescale-label-small-font-family-style);
|
114
|
-
font-weight: var(--md-sys-typescale-label-small-font-weight);
|
115
|
-
font-size: var(--md-sys-typescale-label-small-font-size);
|
116
|
-
letter-spacing: var(--md-sys-typescale-label-small-tracking);
|
117
|
-
line-height: var(--md-sys-typescale-label-small-height);
|
118
|
-
text-transform: var(--md-sys-typescale-label-small-text-transform);
|
119
|
-
text-decoration: var(--md-sys-typescale-label-small-text-decoration);
|
120
|
-
}
|
121
|
-
.titleLarge{
|
122
|
-
font-family: var(--md-sys-typescale-title-large-font-family-name);
|
123
|
-
font-style: var(--md-sys-typescale-title-large-font-family-style);
|
124
|
-
font-weight: var(--md-sys-typescale-title-large-font-weight);
|
125
|
-
font-size: var(--md-sys-typescale-title-large-font-size);
|
126
|
-
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
127
|
-
line-height: var(--md-sys-typescale-title-large-height);
|
128
|
-
text-transform: var(--md-sys-typescale-title-large-text-transform);
|
129
|
-
text-decoration: var(--md-sys-typescale-title-large-text-decoration);
|
130
|
-
}
|
131
|
-
.titleMedium{
|
132
|
-
font-family: var(--md-sys-typescale-title-medium-font-family-name);
|
133
|
-
font-style: var(--md-sys-typescale-title-medium-font-family-style);
|
134
|
-
font-weight: var(--md-sys-typescale-title-medium-font-weight);
|
135
|
-
font-size: var(--md-sys-typescale-title-medium-font-size);
|
136
|
-
letter-spacing: var(--md-sys-typescale-title-medium-tracking);
|
137
|
-
line-height: var(--md-sys-typescale-title-medium-height);
|
138
|
-
text-transform: var(--md-sys-typescale-title-medium-text-transform);
|
139
|
-
text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
|
140
|
-
}
|
141
|
-
.titleSmall{
|
142
|
-
font-family: var(--md-sys-typescale-title-small-font-family-name);
|
143
|
-
font-style: var(--md-sys-typescale-title-small-font-family-style);
|
144
|
-
font-weight: var(--md-sys-typescale-title-small-font-weight);
|
145
|
-
font-size: var(--md-sys-typescale-title-small-font-size);
|
146
|
-
letter-spacing: var(--md-sys-typescale-title-small-tracking);
|
147
|
-
line-height: var(--md-sys-typescale-title-small-height);
|
148
|
-
text-transform: var(--md-sys-typescale-title-small-text-transform);
|
149
|
-
text-decoration: var(--md-sys-typescale-title-small-text-decoration);
|
150
|
-
}
|
1
|
+
.displayLarge{
|
2
|
+
font-family: var(--md-sys-typescale-display-large-font-family-name);
|
3
|
+
font-style: var(--md-sys-typescale-display-large-font-family-style);
|
4
|
+
font-weight: var(--md-sys-typescale-display-large-font-weight);
|
5
|
+
font-size: var(--md-sys-typescale-display-large-font-size);
|
6
|
+
letter-spacing: var(--md-sys-typescale-display-large-tracking);
|
7
|
+
line-height: var(--md-sys-typescale-display-large-height);
|
8
|
+
text-transform: var(--md-sys-typescale-display-large-text-transform);
|
9
|
+
text-decoration: var(--md-sys-typescale-display-large-text-decoration);
|
10
|
+
}
|
11
|
+
.displayMedium{
|
12
|
+
font-family: var(--md-sys-typescale-display-medium-font-family-name);
|
13
|
+
font-style: var(--md-sys-typescale-display-medium-font-family-style);
|
14
|
+
font-weight: var(--md-sys-typescale-display-medium-font-weight);
|
15
|
+
font-size: var(--md-sys-typescale-display-medium-font-size);
|
16
|
+
letter-spacing: var(--md-sys-typescale-display-medium-tracking);
|
17
|
+
line-height: var(--md-sys-typescale-display-medium-height);
|
18
|
+
text-transform: var(--md-sys-typescale-display-medium-text-transform);
|
19
|
+
text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
|
20
|
+
}
|
21
|
+
.displaySmall{
|
22
|
+
font-family: var(--md-sys-typescale-display-small-font-family-name);
|
23
|
+
font-style: var(--md-sys-typescale-display-small-font-family-style);
|
24
|
+
font-weight: var(--md-sys-typescale-display-small-font-weight);
|
25
|
+
font-size: var(--md-sys-typescale-display-small-font-size);
|
26
|
+
letter-spacing: var(--md-sys-typescale-display-small-tracking);
|
27
|
+
line-height: var(--md-sys-typescale-display-small-height);
|
28
|
+
text-transform: var(--md-sys-typescale-display-small-text-transform);
|
29
|
+
text-decoration: var(--md-sys-typescale-display-small-text-decoration);
|
30
|
+
}
|
31
|
+
.headlineLarge{
|
32
|
+
font-family: var(--md-sys-typescale-headline-large-font-family-name);
|
33
|
+
font-style: var(--md-sys-typescale-headline-large-font-family-style);
|
34
|
+
font-weight: var(--md-sys-typescale-headline-large-font-weight);
|
35
|
+
font-size: var(--md-sys-typescale-headline-large-font-size);
|
36
|
+
letter-spacing: var(--md-sys-typescale-headline-large-tracking);
|
37
|
+
line-height: var(--md-sys-typescale-headline-large-height);
|
38
|
+
text-transform: var(--md-sys-typescale-headline-large-text-transform);
|
39
|
+
text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
|
40
|
+
}
|
41
|
+
.headlineMedium{
|
42
|
+
font-family: var(--md-sys-typescale-headline-medium-font-family-name);
|
43
|
+
font-style: var(--md-sys-typescale-headline-medium-font-family-style);
|
44
|
+
font-weight: var(--md-sys-typescale-headline-medium-font-weight);
|
45
|
+
font-size: var(--md-sys-typescale-headline-medium-font-size);
|
46
|
+
letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
|
47
|
+
line-height: var(--md-sys-typescale-headline-medium-height);
|
48
|
+
text-transform: var(--md-sys-typescale-headline-medium-text-transform);
|
49
|
+
text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
|
50
|
+
}
|
51
|
+
.headlineSmall{
|
52
|
+
font-family: var(--md-sys-typescale-headline-small-font-family-name);
|
53
|
+
font-style: var(--md-sys-typescale-headline-small-font-family-style);
|
54
|
+
font-weight: var(--md-sys-typescale-headline-small-font-weight);
|
55
|
+
font-size: var(--md-sys-typescale-headline-small-font-size);
|
56
|
+
letter-spacing: var(--md-sys-typescale-headline-small-tracking);
|
57
|
+
line-height: var(--md-sys-typescale-headline-small-height);
|
58
|
+
text-transform: var(--md-sys-typescale-headline-small-text-transform);
|
59
|
+
text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
|
60
|
+
}
|
61
|
+
.bodyLarge{
|
62
|
+
font-family: var(--md-sys-typescale-body-large-font-family-name);
|
63
|
+
font-style: var(--md-sys-typescale-body-large-font-family-style);
|
64
|
+
font-weight: var(--md-sys-typescale-body-large-font-weight);
|
65
|
+
font-size: var(--md-sys-typescale-body-large-font-size);
|
66
|
+
letter-spacing: var(--md-sys-typescale-body-large-tracking);
|
67
|
+
line-height: var(--md-sys-typescale-body-large-height);
|
68
|
+
text-transform: var(--md-sys-typescale-body-large-text-transform);
|
69
|
+
text-decoration: var(--md-sys-typescale-body-large-text-decoration);
|
70
|
+
}
|
71
|
+
.bodyMedium{
|
72
|
+
font-family: var(--md-sys-typescale-body-medium-font-family-name);
|
73
|
+
font-style: var(--md-sys-typescale-body-medium-font-family-style);
|
74
|
+
font-weight: var(--md-sys-typescale-body-medium-font-weight);
|
75
|
+
font-size: var(--md-sys-typescale-body-medium-font-size);
|
76
|
+
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
77
|
+
line-height: var(--md-sys-typescale-body-medium-height);
|
78
|
+
text-transform: var(--md-sys-typescale-body-medium-text-transform);
|
79
|
+
text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
|
80
|
+
}
|
81
|
+
.bodySmall{
|
82
|
+
font-family: var(--md-sys-typescale-body-small-font-family-name);
|
83
|
+
font-style: var(--md-sys-typescale-body-small-font-family-style);
|
84
|
+
font-weight: var(--md-sys-typescale-body-small-font-weight);
|
85
|
+
font-size: var(--md-sys-typescale-body-small-font-size);
|
86
|
+
letter-spacing: var(--md-sys-typescale-body-small-tracking);
|
87
|
+
line-height: var(--md-sys-typescale-body-small-height);
|
88
|
+
text-transform: var(--md-sys-typescale-body-small-text-transform);
|
89
|
+
text-decoration: var(--md-sys-typescale-body-small-text-decoration);
|
90
|
+
}
|
91
|
+
.labelLarge{
|
92
|
+
font-family: var(--md-sys-typescale-label-large-font-family-name);
|
93
|
+
font-style: var(--md-sys-typescale-label-large-font-family-style);
|
94
|
+
font-weight: var(--md-sys-typescale-label-large-font-weight);
|
95
|
+
font-size: var(--md-sys-typescale-label-large-font-size);
|
96
|
+
letter-spacing: var(--md-sys-typescale-label-large-tracking);
|
97
|
+
line-height: var(--md-sys-typescale-label-large-height);
|
98
|
+
text-transform: var(--md-sys-typescale-label-large-text-transform);
|
99
|
+
text-decoration: var(--md-sys-typescale-label-large-text-decoration);
|
100
|
+
}
|
101
|
+
.labelMedium{
|
102
|
+
font-family: var(--md-sys-typescale-label-medium-font-family-name);
|
103
|
+
font-style: var(--md-sys-typescale-label-medium-font-family-style);
|
104
|
+
font-weight: var(--md-sys-typescale-label-medium-font-weight);
|
105
|
+
font-size: var(--md-sys-typescale-label-medium-font-size);
|
106
|
+
letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
107
|
+
line-height: var(--md-sys-typescale-label-medium-height);
|
108
|
+
text-transform: var(--md-sys-typescale-label-medium-text-transform);
|
109
|
+
text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
|
110
|
+
}
|
111
|
+
.labelSmall{
|
112
|
+
font-family: var(--md-sys-typescale-label-small-font-family-name);
|
113
|
+
font-style: var(--md-sys-typescale-label-small-font-family-style);
|
114
|
+
font-weight: var(--md-sys-typescale-label-small-font-weight);
|
115
|
+
font-size: var(--md-sys-typescale-label-small-font-size);
|
116
|
+
letter-spacing: var(--md-sys-typescale-label-small-tracking);
|
117
|
+
line-height: var(--md-sys-typescale-label-small-height);
|
118
|
+
text-transform: var(--md-sys-typescale-label-small-text-transform);
|
119
|
+
text-decoration: var(--md-sys-typescale-label-small-text-decoration);
|
120
|
+
}
|
121
|
+
.titleLarge{
|
122
|
+
font-family: var(--md-sys-typescale-title-large-font-family-name);
|
123
|
+
font-style: var(--md-sys-typescale-title-large-font-family-style);
|
124
|
+
font-weight: var(--md-sys-typescale-title-large-font-weight);
|
125
|
+
font-size: var(--md-sys-typescale-title-large-font-size);
|
126
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
127
|
+
line-height: var(--md-sys-typescale-title-large-height);
|
128
|
+
text-transform: var(--md-sys-typescale-title-large-text-transform);
|
129
|
+
text-decoration: var(--md-sys-typescale-title-large-text-decoration);
|
130
|
+
}
|
131
|
+
.titleMedium{
|
132
|
+
font-family: var(--md-sys-typescale-title-medium-font-family-name);
|
133
|
+
font-style: var(--md-sys-typescale-title-medium-font-family-style);
|
134
|
+
font-weight: var(--md-sys-typescale-title-medium-font-weight);
|
135
|
+
font-size: var(--md-sys-typescale-title-medium-font-size);
|
136
|
+
letter-spacing: var(--md-sys-typescale-title-medium-tracking);
|
137
|
+
line-height: var(--md-sys-typescale-title-medium-height);
|
138
|
+
text-transform: var(--md-sys-typescale-title-medium-text-transform);
|
139
|
+
text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
|
140
|
+
}
|
141
|
+
.titleSmall{
|
142
|
+
font-family: var(--md-sys-typescale-title-small-font-family-name);
|
143
|
+
font-style: var(--md-sys-typescale-title-small-font-family-style);
|
144
|
+
font-weight: var(--md-sys-typescale-title-small-font-weight);
|
145
|
+
font-size: var(--md-sys-typescale-title-small-font-size);
|
146
|
+
letter-spacing: var(--md-sys-typescale-title-small-tracking);
|
147
|
+
line-height: var(--md-sys-typescale-title-small-height);
|
148
|
+
text-transform: var(--md-sys-typescale-title-small-text-transform);
|
149
|
+
text-decoration: var(--md-sys-typescale-title-small-text-decoration);
|
150
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
@@ -1,103 +1,103 @@
|
|
1
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 115.20619217560227 149.71790279280162"
|
2
|
-
width="345.6185765268068" height="449.1537083784049" filter="invert(93%) hue-rotate(180deg)">
|
3
|
-
<!-- svg-source:excalidraw -->
|
4
|
-
|
5
|
-
<defs>
|
6
|
-
<style class="style-fonts">
|
7
|
-
|
8
|
-
</style>
|
9
|
-
|
10
|
-
</defs>
|
11
|
-
<g stroke-opacity="0.8" fill-opacity="0.8" stroke-linecap="round"
|
12
|
-
transform="translate(10 16.369558909910893) rotate(0 34.50250452803067 32.58569872091772)">
|
13
|
-
<path
|
14
|
-
d="M56.2 6.66 C60.83 9.91, 65.18 17.15, 66.6 23.55 C68.01 29.94, 66.75 38.81, 64.69 45.03 C62.63 51.25, 59.51 57.37, 54.25 60.88 C48.98 64.39, 40.47 66.37, 33.1 66.08 C25.73 65.79, 15.1 63.35, 10.04 59.13 C4.97 54.9, 4.1 47.13, 2.7 40.74 C1.31 34.35, -0.84 26.6, 1.68 20.8 C4.19 14.99, 11.85 9.28, 17.8 5.89 C23.74 2.51, 28.82 -3.74, 37.36 0.47 C45.9 4.69, 65.47 22.08, 69.04 31.18 C72.61 40.28, 59.47 54.58, 58.77 55.07 M56.44 7.52 C62.54 11.73, 68.24 20.01, 70.04 26.1 C71.85 32.19, 70.26 38.79, 67.27 44.06 C64.28 49.33, 58.21 54.34, 52.08 57.71 C45.95 61.08, 36.72 63.97, 30.5 64.29 C24.29 64.6, 19.95 63.11, 14.77 59.61 C9.58 56.11, 1.79 50.04, -0.61 43.27 C-3.01 36.5, -2.16 25.78, 0.38 18.99 C2.91 12.19, 8.32 5.32, 14.61 2.52 C20.9 -0.29, 30.69 1.1, 38.11 2.16 C45.52 3.22, 56.27 7.48, 59.1 8.86 C61.93 10.25, 56.22 10.5, 55.09 10.47"
|
15
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
16
|
-
</g>
|
17
|
-
<g stroke-linecap="round">
|
18
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
19
|
-
transform="translate(31.084863878241322 81.54095635174724) rotate(0 16.700716021606354 27.136795898502896)"
|
20
|
-
fill-rule="evenodd">
|
21
|
-
<path
|
22
|
-
d="M0 0 C0 0, 0 0, 0 0 M0 0 C0 0, 0 0, 0 0 M-4.85 18.11 C-1.53 8.08, 3.27 2.65, 13.63 2.03 M-0.7 13.9 C2.05 8.39, 9.28 0.67, 12.81 -0.85 M-7.39 28.48 C0.46 19.31, 12.25 18.01, 21.43 -5.52 M-3.99 27.77 C1.83 18.92, 11.43 11.34, 24.92 -4.31 M-1.2 39.03 C10.65 23.06, 21.6 16.88, 31.8 -6.35 M2.83 35.05 C13.25 18.41, 28.13 6.31, 33.02 -3.76 M-0.37 55.26 C7.83 35.23, 24.14 28.23, 37.55 7.28 M-1.35 52.1 C12.69 34.32, 26.01 17.87, 34.58 11.32 M6.34 56.57 C14.03 50.36, 16.7 38.28, 36.04 21.48 M1.76 58.96 C9.85 50.25, 20.7 40.86, 33.11 23.14 M11.18 63.53 C16.57 52.39, 26.05 45.27, 37.15 36.05 M11.44 59.65 C19.74 52.69, 30.08 40.62, 34.1 32.02 M22.26 64.29 C26.12 57.85, 30.4 52.57, 40.44 43.82 M22.81 59.7 C26.98 53.55, 32.65 47.81, 36.1 44.75"
|
23
|
-
stroke="#40c057" stroke-width="1" fill="none"></path>
|
24
|
-
<path
|
25
|
-
d="M1.99 2.39 C1.11 7.06, -3.02 20.95, -3.64 29.46 C-4.27 37.98, -7.79 49.73, -1.75 53.5 C4.29 57.27, 26.85 57.07, 32.6 52.07 C38.34 47.08, 32.32 32.4, 32.72 23.52 C33.12 14.64, 37.66 3.18, 34.98 -1.21 C32.3 -5.6, 22.04 -3.44, 16.65 -2.82 C11.25 -2.2, 5.23 2.27, 2.61 2.5 M-0.37 1.22 C-1.69 6.13, -6.09 23.42, -5.34 32.46 C-4.59 41.5, -2.08 51.98, 4.14 55.48 C10.36 58.97, 27.81 59.82, 31.97 53.44 C36.14 47.07, 28.01 26.55, 29.12 17.22 C30.23 7.88, 40.33 0.12, 38.63 -2.55 C36.94 -5.22, 25.11 0.24, 18.94 1.17 C12.77 2.11, 5.17 2.72, 1.61 3.06"
|
26
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
27
|
-
</g>
|
28
|
-
</g>
|
29
|
-
<mask></mask>
|
30
|
-
<g stroke-linecap="round">
|
31
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
32
|
-
transform="translate(27.083277305692036 81.12124227184631) rotate(0 -7.1804027025845585 23.829739409577826)">
|
33
|
-
<path
|
34
|
-
d="M-0.95 -0.98 C-2.8 3.72, -9.61 18.98, -11.86 27.25 C-14.12 35.52, -14.1 45.41, -14.48 48.64 M0.75 1.13 C-1.2 5.59, -10.22 18.11, -12.86 25.72 C-15.51 33.32, -15 43.19, -15.11 46.76"
|
35
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
36
|
-
</g>
|
37
|
-
</g>
|
38
|
-
<mask></mask>
|
39
|
-
<g stroke-linecap="round">
|
40
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
41
|
-
transform="translate(11.603050377373279 130.07938183127078) rotate(0 3.7405555080219983 4.8157300924779065)">
|
42
|
-
<path d="M-0.07 0.7 C1.45 2.34, 7.03 8.02, 8.5 9.22 M-1.01 0.41 C0.47 1.9, 6.41 6.85, 7.98 8.18" stroke="#000000"
|
43
|
-
stroke-width="2" fill="none"></path>
|
44
|
-
</g>
|
45
|
-
</g>
|
46
|
-
<mask></mask>
|
47
|
-
<g stroke-linecap="round">
|
48
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
49
|
-
transform="translate(67.9781866761125 83.74271082123255) rotate(0 12.155933012048592 -26.781485085579163)">
|
50
|
-
<path
|
51
|
-
d="M0.6 2.06 C4.34 -1.85, 17.88 -15.07, 22.24 -20.86 C26.61 -26.65, 27.01 -26.9, 26.79 -32.69 C26.57 -38.49, 21.88 -52.31, 20.93 -55.62 M-2.53 0.71 C1 -1.76, 15.96 -12.44, 20.78 -18.7 C25.6 -24.96, 26.19 -31.01, 26.4 -36.86 C26.61 -42.71, 23.4 -51.48, 22.05 -53.79"
|
52
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
53
|
-
</g>
|
54
|
-
</g>
|
55
|
-
<mask></mask>
|
56
|
-
<g stroke-linecap="round">
|
57
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
58
|
-
transform="translate(86.360096875105 25.81282286672092) rotate(0 0.07455243862114003 -7.420999907079079)">
|
59
|
-
<path d="M0.61 -1.16 C0.67 -3.66, 0.72 -11.69, 0.6 -14.13 M-0.52 0.85 C-0.55 -2.04, 0.26 -13.08, 0.24 -15.69"
|
60
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
61
|
-
</g>
|
62
|
-
</g>
|
63
|
-
<mask></mask>
|
64
|
-
<g stroke-linecap="round">
|
65
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
66
|
-
transform="translate(91.07874026399963 31.58005367537021) rotate(0 2.1697822114203404 -10.253476735488448)">
|
67
|
-
<path d="M1.12 1.07 C1.7 -2.33, 3.58 -18.02, 4.09 -21.58 M0.25 0.59 C0.65 -2.56, 2.79 -16.56, 3.36 -20.36"
|
68
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
69
|
-
</g>
|
70
|
-
</g>
|
71
|
-
<mask></mask>
|
72
|
-
<g stroke-linecap="round">
|
73
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
74
|
-
transform="translate(90.55444655412225 32.10434738524714) rotate(0 6.916527724979403 -7.804763053959505)">
|
75
|
-
<path d="M0.42 -0.61 C2.68 -3.38, 12.24 -12.94, 14.65 -15.55 M-0.82 1.69 C1.22 -0.91, 11.42 -14.52, 13.96 -17.3"
|
76
|
-
stroke="#000000" stroke-width="2" fill="none"></path>
|
77
|
-
</g>
|
78
|
-
</g>
|
79
|
-
<mask></mask>
|
80
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
81
|
-
transform="translate(38.67430022957956 38.840193608200366) rotate(0 0.00004600333937787582 0.00004600333937787582)"
|
82
|
-
stroke="none">
|
83
|
-
<path fill="#000000"
|
84
|
-
d="M 1.57,-1.57 Q 1.57,-1.57 1.77,-1.27 1.98,-0.98 2.09,-0.64 2.20,-0.29 2.19,0.05 2.18,0.41 2.05,0.75 1.93,1.09 1.70,1.37 1.48,1.65 1.18,1.84 0.87,2.04 0.52,2.12 0.18,2.21 -0.17,2.18 -0.53,2.15 -0.86,2.01 -1.19,1.87 -1.46,1.63 -1.73,1.39 -1.90,1.07 -2.08,0.76 -2.15,0.41 -2.21,0.05 -2.17,-0.29 -2.12,-0.65 -1.96,-0.97 -1.80,-1.29 -1.54,-1.54 -1.29,-1.80 -0.97,-1.96 -0.65,-2.12 -0.29,-2.17 0.06,-2.21 0.41,-2.15 0.76,-2.08 1.07,-1.90 1.39,-1.73 1.63,-1.46 1.87,-1.19 2.01,-0.86 2.15,-0.53 2.18,-0.17 2.21,0.18 2.12,0.52 2.03,0.87 1.84,1.18 1.65,1.48 1.37,1.70 1.09,1.93 0.75,2.05 0.41,2.18 0.05,2.19 -0.30,2.20 -0.64,2.09 -0.98,1.98 -1.27,1.77 -1.57,1.56 -1.57,1.57 -1.57,1.57 -1.73,1.35 -1.90,1.14 -2.01,0.90 -2.12,0.66 -2.16,0.39 -2.21,0.13 -2.20,-0.13 -2.18,-0.40 -2.10,-0.65 -2.02,-0.91 -1.88,-1.14 -1.74,-1.36 -1.55,-1.55 -1.36,-1.74 -1.14,-1.88 -0.91,-2.02 -0.65,-2.10 -0.40,-2.18 -0.13,-2.20 0.13,-2.21 0.39,-2.16 0.66,-2.12 0.90,-2.01 1.14,-1.90 1.35,-1.73 1.57,-1.57 1.57,-1.57 L 1.57,-1.57 Z">
|
85
|
-
</path>
|
86
|
-
</g>
|
87
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
88
|
-
transform="translate(56.4250003633673 38.00175253083182) rotate(0 0.00004600333937787582 0.00004600333937787582)"
|
89
|
-
stroke="none">
|
90
|
-
<path fill="#000000"
|
91
|
-
d="M 1.57,-1.57 Q 1.57,-1.57 1.77,-1.27 1.98,-0.98 2.09,-0.64 2.20,-0.29 2.19,0.05 2.18,0.41 2.05,0.75 1.93,1.09 1.70,1.37 1.48,1.65 1.18,1.84 0.87,2.04 0.52,2.12 0.18,2.21 -0.17,2.18 -0.53,2.15 -0.86,2.01 -1.19,1.87 -1.46,1.63 -1.73,1.39 -1.90,1.07 -2.08,0.76 -2.15,0.41 -2.21,0.05 -2.17,-0.29 -2.12,-0.65 -1.96,-0.97 -1.80,-1.29 -1.54,-1.54 -1.29,-1.80 -0.97,-1.96 -0.65,-2.12 -0.29,-2.17 0.06,-2.21 0.41,-2.15 0.76,-2.08 1.07,-1.90 1.39,-1.73 1.63,-1.46 1.87,-1.19 2.01,-0.86 2.15,-0.53 2.18,-0.17 2.21,0.18 2.12,0.52 2.03,0.87 1.84,1.18 1.65,1.48 1.37,1.70 1.09,1.93 0.75,2.05 0.41,2.18 0.05,2.19 -0.30,2.20 -0.64,2.09 -0.98,1.98 -1.27,1.77 -1.57,1.56 -1.57,1.57 -1.57,1.57 -1.73,1.35 -1.90,1.14 -2.01,0.90 -2.12,0.66 -2.16,0.39 -2.21,0.13 -2.20,-0.13 -2.18,-0.40 -2.10,-0.65 -2.02,-0.91 -1.88,-1.14 -1.74,-1.36 -1.55,-1.55 -1.36,-1.74 -1.14,-1.88 -0.91,-2.02 -0.65,-2.10 -0.40,-2.18 -0.13,-2.20 0.13,-2.21 0.39,-2.16 0.66,-2.12 0.90,-2.01 1.14,-1.90 1.35,-1.73 1.57,-1.57 1.57,-1.57 L 1.57,-1.57 Z">
|
92
|
-
</path>
|
93
|
-
</g>
|
94
|
-
<g stroke-linecap="round">
|
95
|
-
<g stroke-opacity="0.8" fill-opacity="0.8"
|
96
|
-
transform="translate(40.53198443230451 53.85006053174004) rotate(180.707313349537 6.173547239599031 -2.3527085912999155)">
|
97
|
-
<path
|
98
|
-
d="M0.1 0.01 C0.75 -0.66, 2.28 -3.82, 4.22 -4.03 C6.16 -4.23, 10.36 -1.78, 11.76 -1.21 M-0.51 -0.46 C0.28 -1.27, 3.04 -4.67, 5.27 -4.72 C7.5 -4.76, 11.58 -1.23, 12.86 -0.71"
|
99
|
-
stroke="#000000" stroke-width="1" fill="none"></path>
|
100
|
-
</g>
|
101
|
-
</g>
|
102
|
-
<mask></mask>
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 115.20619217560227 149.71790279280162"
|
2
|
+
width="345.6185765268068" height="449.1537083784049" filter="invert(93%) hue-rotate(180deg)">
|
3
|
+
<!-- svg-source:excalidraw -->
|
4
|
+
|
5
|
+
<defs>
|
6
|
+
<style class="style-fonts">
|
7
|
+
|
8
|
+
</style>
|
9
|
+
|
10
|
+
</defs>
|
11
|
+
<g stroke-opacity="0.8" fill-opacity="0.8" stroke-linecap="round"
|
12
|
+
transform="translate(10 16.369558909910893) rotate(0 34.50250452803067 32.58569872091772)">
|
13
|
+
<path
|
14
|
+
d="M56.2 6.66 C60.83 9.91, 65.18 17.15, 66.6 23.55 C68.01 29.94, 66.75 38.81, 64.69 45.03 C62.63 51.25, 59.51 57.37, 54.25 60.88 C48.98 64.39, 40.47 66.37, 33.1 66.08 C25.73 65.79, 15.1 63.35, 10.04 59.13 C4.97 54.9, 4.1 47.13, 2.7 40.74 C1.31 34.35, -0.84 26.6, 1.68 20.8 C4.19 14.99, 11.85 9.28, 17.8 5.89 C23.74 2.51, 28.82 -3.74, 37.36 0.47 C45.9 4.69, 65.47 22.08, 69.04 31.18 C72.61 40.28, 59.47 54.58, 58.77 55.07 M56.44 7.52 C62.54 11.73, 68.24 20.01, 70.04 26.1 C71.85 32.19, 70.26 38.79, 67.27 44.06 C64.28 49.33, 58.21 54.34, 52.08 57.71 C45.95 61.08, 36.72 63.97, 30.5 64.29 C24.29 64.6, 19.95 63.11, 14.77 59.61 C9.58 56.11, 1.79 50.04, -0.61 43.27 C-3.01 36.5, -2.16 25.78, 0.38 18.99 C2.91 12.19, 8.32 5.32, 14.61 2.52 C20.9 -0.29, 30.69 1.1, 38.11 2.16 C45.52 3.22, 56.27 7.48, 59.1 8.86 C61.93 10.25, 56.22 10.5, 55.09 10.47"
|
15
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
16
|
+
</g>
|
17
|
+
<g stroke-linecap="round">
|
18
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
19
|
+
transform="translate(31.084863878241322 81.54095635174724) rotate(0 16.700716021606354 27.136795898502896)"
|
20
|
+
fill-rule="evenodd">
|
21
|
+
<path
|
22
|
+
d="M0 0 C0 0, 0 0, 0 0 M0 0 C0 0, 0 0, 0 0 M-4.85 18.11 C-1.53 8.08, 3.27 2.65, 13.63 2.03 M-0.7 13.9 C2.05 8.39, 9.28 0.67, 12.81 -0.85 M-7.39 28.48 C0.46 19.31, 12.25 18.01, 21.43 -5.52 M-3.99 27.77 C1.83 18.92, 11.43 11.34, 24.92 -4.31 M-1.2 39.03 C10.65 23.06, 21.6 16.88, 31.8 -6.35 M2.83 35.05 C13.25 18.41, 28.13 6.31, 33.02 -3.76 M-0.37 55.26 C7.83 35.23, 24.14 28.23, 37.55 7.28 M-1.35 52.1 C12.69 34.32, 26.01 17.87, 34.58 11.32 M6.34 56.57 C14.03 50.36, 16.7 38.28, 36.04 21.48 M1.76 58.96 C9.85 50.25, 20.7 40.86, 33.11 23.14 M11.18 63.53 C16.57 52.39, 26.05 45.27, 37.15 36.05 M11.44 59.65 C19.74 52.69, 30.08 40.62, 34.1 32.02 M22.26 64.29 C26.12 57.85, 30.4 52.57, 40.44 43.82 M22.81 59.7 C26.98 53.55, 32.65 47.81, 36.1 44.75"
|
23
|
+
stroke="#40c057" stroke-width="1" fill="none"></path>
|
24
|
+
<path
|
25
|
+
d="M1.99 2.39 C1.11 7.06, -3.02 20.95, -3.64 29.46 C-4.27 37.98, -7.79 49.73, -1.75 53.5 C4.29 57.27, 26.85 57.07, 32.6 52.07 C38.34 47.08, 32.32 32.4, 32.72 23.52 C33.12 14.64, 37.66 3.18, 34.98 -1.21 C32.3 -5.6, 22.04 -3.44, 16.65 -2.82 C11.25 -2.2, 5.23 2.27, 2.61 2.5 M-0.37 1.22 C-1.69 6.13, -6.09 23.42, -5.34 32.46 C-4.59 41.5, -2.08 51.98, 4.14 55.48 C10.36 58.97, 27.81 59.82, 31.97 53.44 C36.14 47.07, 28.01 26.55, 29.12 17.22 C30.23 7.88, 40.33 0.12, 38.63 -2.55 C36.94 -5.22, 25.11 0.24, 18.94 1.17 C12.77 2.11, 5.17 2.72, 1.61 3.06"
|
26
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
27
|
+
</g>
|
28
|
+
</g>
|
29
|
+
<mask></mask>
|
30
|
+
<g stroke-linecap="round">
|
31
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
32
|
+
transform="translate(27.083277305692036 81.12124227184631) rotate(0 -7.1804027025845585 23.829739409577826)">
|
33
|
+
<path
|
34
|
+
d="M-0.95 -0.98 C-2.8 3.72, -9.61 18.98, -11.86 27.25 C-14.12 35.52, -14.1 45.41, -14.48 48.64 M0.75 1.13 C-1.2 5.59, -10.22 18.11, -12.86 25.72 C-15.51 33.32, -15 43.19, -15.11 46.76"
|
35
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
36
|
+
</g>
|
37
|
+
</g>
|
38
|
+
<mask></mask>
|
39
|
+
<g stroke-linecap="round">
|
40
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
41
|
+
transform="translate(11.603050377373279 130.07938183127078) rotate(0 3.7405555080219983 4.8157300924779065)">
|
42
|
+
<path d="M-0.07 0.7 C1.45 2.34, 7.03 8.02, 8.5 9.22 M-1.01 0.41 C0.47 1.9, 6.41 6.85, 7.98 8.18" stroke="#000000"
|
43
|
+
stroke-width="2" fill="none"></path>
|
44
|
+
</g>
|
45
|
+
</g>
|
46
|
+
<mask></mask>
|
47
|
+
<g stroke-linecap="round">
|
48
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
49
|
+
transform="translate(67.9781866761125 83.74271082123255) rotate(0 12.155933012048592 -26.781485085579163)">
|
50
|
+
<path
|
51
|
+
d="M0.6 2.06 C4.34 -1.85, 17.88 -15.07, 22.24 -20.86 C26.61 -26.65, 27.01 -26.9, 26.79 -32.69 C26.57 -38.49, 21.88 -52.31, 20.93 -55.62 M-2.53 0.71 C1 -1.76, 15.96 -12.44, 20.78 -18.7 C25.6 -24.96, 26.19 -31.01, 26.4 -36.86 C26.61 -42.71, 23.4 -51.48, 22.05 -53.79"
|
52
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
53
|
+
</g>
|
54
|
+
</g>
|
55
|
+
<mask></mask>
|
56
|
+
<g stroke-linecap="round">
|
57
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
58
|
+
transform="translate(86.360096875105 25.81282286672092) rotate(0 0.07455243862114003 -7.420999907079079)">
|
59
|
+
<path d="M0.61 -1.16 C0.67 -3.66, 0.72 -11.69, 0.6 -14.13 M-0.52 0.85 C-0.55 -2.04, 0.26 -13.08, 0.24 -15.69"
|
60
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
61
|
+
</g>
|
62
|
+
</g>
|
63
|
+
<mask></mask>
|
64
|
+
<g stroke-linecap="round">
|
65
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
66
|
+
transform="translate(91.07874026399963 31.58005367537021) rotate(0 2.1697822114203404 -10.253476735488448)">
|
67
|
+
<path d="M1.12 1.07 C1.7 -2.33, 3.58 -18.02, 4.09 -21.58 M0.25 0.59 C0.65 -2.56, 2.79 -16.56, 3.36 -20.36"
|
68
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
69
|
+
</g>
|
70
|
+
</g>
|
71
|
+
<mask></mask>
|
72
|
+
<g stroke-linecap="round">
|
73
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
74
|
+
transform="translate(90.55444655412225 32.10434738524714) rotate(0 6.916527724979403 -7.804763053959505)">
|
75
|
+
<path d="M0.42 -0.61 C2.68 -3.38, 12.24 -12.94, 14.65 -15.55 M-0.82 1.69 C1.22 -0.91, 11.42 -14.52, 13.96 -17.3"
|
76
|
+
stroke="#000000" stroke-width="2" fill="none"></path>
|
77
|
+
</g>
|
78
|
+
</g>
|
79
|
+
<mask></mask>
|
80
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
81
|
+
transform="translate(38.67430022957956 38.840193608200366) rotate(0 0.00004600333937787582 0.00004600333937787582)"
|
82
|
+
stroke="none">
|
83
|
+
<path fill="#000000"
|
84
|
+
d="M 1.57,-1.57 Q 1.57,-1.57 1.77,-1.27 1.98,-0.98 2.09,-0.64 2.20,-0.29 2.19,0.05 2.18,0.41 2.05,0.75 1.93,1.09 1.70,1.37 1.48,1.65 1.18,1.84 0.87,2.04 0.52,2.12 0.18,2.21 -0.17,2.18 -0.53,2.15 -0.86,2.01 -1.19,1.87 -1.46,1.63 -1.73,1.39 -1.90,1.07 -2.08,0.76 -2.15,0.41 -2.21,0.05 -2.17,-0.29 -2.12,-0.65 -1.96,-0.97 -1.80,-1.29 -1.54,-1.54 -1.29,-1.80 -0.97,-1.96 -0.65,-2.12 -0.29,-2.17 0.06,-2.21 0.41,-2.15 0.76,-2.08 1.07,-1.90 1.39,-1.73 1.63,-1.46 1.87,-1.19 2.01,-0.86 2.15,-0.53 2.18,-0.17 2.21,0.18 2.12,0.52 2.03,0.87 1.84,1.18 1.65,1.48 1.37,1.70 1.09,1.93 0.75,2.05 0.41,2.18 0.05,2.19 -0.30,2.20 -0.64,2.09 -0.98,1.98 -1.27,1.77 -1.57,1.56 -1.57,1.57 -1.57,1.57 -1.73,1.35 -1.90,1.14 -2.01,0.90 -2.12,0.66 -2.16,0.39 -2.21,0.13 -2.20,-0.13 -2.18,-0.40 -2.10,-0.65 -2.02,-0.91 -1.88,-1.14 -1.74,-1.36 -1.55,-1.55 -1.36,-1.74 -1.14,-1.88 -0.91,-2.02 -0.65,-2.10 -0.40,-2.18 -0.13,-2.20 0.13,-2.21 0.39,-2.16 0.66,-2.12 0.90,-2.01 1.14,-1.90 1.35,-1.73 1.57,-1.57 1.57,-1.57 L 1.57,-1.57 Z">
|
85
|
+
</path>
|
86
|
+
</g>
|
87
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
88
|
+
transform="translate(56.4250003633673 38.00175253083182) rotate(0 0.00004600333937787582 0.00004600333937787582)"
|
89
|
+
stroke="none">
|
90
|
+
<path fill="#000000"
|
91
|
+
d="M 1.57,-1.57 Q 1.57,-1.57 1.77,-1.27 1.98,-0.98 2.09,-0.64 2.20,-0.29 2.19,0.05 2.18,0.41 2.05,0.75 1.93,1.09 1.70,1.37 1.48,1.65 1.18,1.84 0.87,2.04 0.52,2.12 0.18,2.21 -0.17,2.18 -0.53,2.15 -0.86,2.01 -1.19,1.87 -1.46,1.63 -1.73,1.39 -1.90,1.07 -2.08,0.76 -2.15,0.41 -2.21,0.05 -2.17,-0.29 -2.12,-0.65 -1.96,-0.97 -1.80,-1.29 -1.54,-1.54 -1.29,-1.80 -0.97,-1.96 -0.65,-2.12 -0.29,-2.17 0.06,-2.21 0.41,-2.15 0.76,-2.08 1.07,-1.90 1.39,-1.73 1.63,-1.46 1.87,-1.19 2.01,-0.86 2.15,-0.53 2.18,-0.17 2.21,0.18 2.12,0.52 2.03,0.87 1.84,1.18 1.65,1.48 1.37,1.70 1.09,1.93 0.75,2.05 0.41,2.18 0.05,2.19 -0.30,2.20 -0.64,2.09 -0.98,1.98 -1.27,1.77 -1.57,1.56 -1.57,1.57 -1.57,1.57 -1.73,1.35 -1.90,1.14 -2.01,0.90 -2.12,0.66 -2.16,0.39 -2.21,0.13 -2.20,-0.13 -2.18,-0.40 -2.10,-0.65 -2.02,-0.91 -1.88,-1.14 -1.74,-1.36 -1.55,-1.55 -1.36,-1.74 -1.14,-1.88 -0.91,-2.02 -0.65,-2.10 -0.40,-2.18 -0.13,-2.20 0.13,-2.21 0.39,-2.16 0.66,-2.12 0.90,-2.01 1.14,-1.90 1.35,-1.73 1.57,-1.57 1.57,-1.57 L 1.57,-1.57 Z">
|
92
|
+
</path>
|
93
|
+
</g>
|
94
|
+
<g stroke-linecap="round">
|
95
|
+
<g stroke-opacity="0.8" fill-opacity="0.8"
|
96
|
+
transform="translate(40.53198443230451 53.85006053174004) rotate(180.707313349537 6.173547239599031 -2.3527085912999155)">
|
97
|
+
<path
|
98
|
+
d="M0.1 0.01 C0.75 -0.66, 2.28 -3.82, 4.22 -4.03 C6.16 -4.23, 10.36 -1.78, 11.76 -1.21 M-0.51 -0.46 C0.28 -1.27, 3.04 -4.67, 5.27 -4.72 C7.5 -4.76, 11.58 -1.23, 12.86 -0.71"
|
99
|
+
stroke="#000000" stroke-width="1" fill="none"></path>
|
100
|
+
</g>
|
101
|
+
</g>
|
102
|
+
<mask></mask>
|
103
103
|
</svg>
|
@@ -1,10 +1,10 @@
|
|
1
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 132.29597182603248 250.349351184527" width="396.88791547809745" height="751.048053553581" filter="invert(93%) hue-rotate(180deg)">
|
2
|
-
<!-- svg-source:excalidraw -->
|
3
|
-
|
4
|
-
<defs>
|
5
|
-
<style class="style-fonts">
|
6
|
-
|
7
|
-
</style>
|
8
|
-
|
9
|
-
</defs>
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 132.29597182603248 250.349351184527" width="396.88791547809745" height="751.048053553581" filter="invert(93%) hue-rotate(180deg)">
|
2
|
+
<!-- svg-source:excalidraw -->
|
3
|
+
|
4
|
+
<defs>
|
5
|
+
<style class="style-fonts">
|
6
|
+
|
7
|
+
</style>
|
8
|
+
|
9
|
+
</defs>
|
10
10
|
<g stroke-opacity="0.8" fill-opacity="0.8" stroke-linecap="round" transform="translate(13.489773546914648 47.56960163452027) rotate(0 34.50250452803067 32.58569872091772)"><path d="M56.2 6.66 C60.83 9.91, 65.18 17.15, 66.6 23.55 C68.01 29.94, 66.75 38.81, 64.69 45.03 C62.63 51.25, 59.51 57.37, 54.25 60.88 C48.98 64.39, 40.47 66.37, 33.1 66.08 C25.73 65.79, 15.1 63.35, 10.04 59.13 C4.97 54.9, 4.1 47.13, 2.7 40.74 C1.31 34.35, -0.84 26.6, 1.68 20.8 C4.19 14.99, 11.85 9.28, 17.8 5.89 C23.74 2.51, 28.82 -3.74, 37.36 0.47 C45.9 4.69, 65.47 22.08, 69.04 31.18 C72.61 40.28, 59.47 54.58, 58.77 55.07 M56.44 7.52 C62.54 11.73, 68.24 20.01, 70.04 26.1 C71.85 32.19, 70.26 38.79, 67.27 44.06 C64.28 49.33, 58.21 54.34, 52.08 57.71 C45.95 61.08, 36.72 63.97, 30.5 64.29 C24.29 64.6, 19.95 63.11, 14.77 59.61 C9.58 56.11, 1.79 50.04, -0.61 43.27 C-3.01 36.5, -2.16 25.78, 0.38 18.99 C2.91 12.19, 8.32 5.32, 14.61 2.52 C20.9 -0.29, 30.69 1.1, 38.11 2.16 C45.52 3.22, 56.27 7.48, 59.1 8.86 C61.93 10.25, 56.22 10.5, 55.09 10.47" stroke="#000000" stroke-width="2" fill="none"></path></g><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(34.57463742515591 112.74099907635662) rotate(0 15.084791538819161 26.155661383568685)" fill-rule="evenodd"><path d="M0 0 C0 0, 0 0, 0 0 M0 0 C0 0, 0 0, 0 0 M-4.85 18.11 C-1.53 8.08, 3.27 2.65, 13.63 2.03 M-0.7 13.9 C2.05 8.39, 9.28 0.67, 12.81 -0.85 M-7.39 28.48 C0.46 19.31, 12.25 18.01, 21.43 -5.52 M-3.99 27.77 C1.83 18.92, 11.43 11.34, 24.92 -4.31 M-1.2 39.03 C10.65 23.06, 21.6 16.88, 31.8 -6.35 M2.83 35.05 C13.25 18.41, 28.13 6.31, 33.02 -3.76 M-0.37 55.26 C7.83 35.23, 24.14 28.23, 37.55 7.28 M-1.35 52.1 C12.69 34.32, 26.01 17.87, 34.58 11.32 M6.34 56.57 C14.03 50.36, 16.7 38.28, 36.04 21.48 M1.76 58.96 C9.85 50.25, 20.7 40.86, 33.11 23.14 M11.18 63.53 C16.57 52.39, 26.05 45.27, 37.15 36.05 M11.44 59.65 C19.74 52.69, 30.08 40.62, 34.1 32.02 M22.26 64.29 C26.12 57.85, 30.4 52.57, 40.44 43.82 M22.81 59.7 C26.98 53.55, 32.65 47.81, 36.1 44.75" stroke="#40c057" stroke-width="1" fill="none"></path><path d="M1.99 2.39 C1.11 7.06, -3.02 20.95, -3.64 29.46 C-4.27 37.98, -7.79 49.73, -1.75 53.5 C4.29 57.27, 26.85 57.07, 32.6 52.07 C38.34 47.08, 32.32 32.4, 32.72 23.52 C33.12 14.64, 37.66 3.18, 34.98 -1.21 C32.3 -5.6, 22.04 -3.44, 16.65 -2.82 C11.25 -2.2, 5.23 2.27, 2.61 2.5 M-0.37 1.22 C-1.69 6.13, -6.09 23.42, -5.34 32.46 C-4.59 41.5, -2.08 51.98, 4.14 55.48 C10.36 58.97, 27.81 59.82, 31.97 53.44 C36.14 47.07, 28.01 26.55, 29.12 17.22 C30.23 7.88, 40.33 0.12, 38.63 -2.55 C36.94 -5.22, 25.11 0.24, 18.94 1.17 C12.77 2.11, 5.17 2.72, 1.61 3.06" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(34.24310682174746 167.37212453356108) rotate(0 -8.388699358034899 35.91411912658697)"><path d="M-1.67 -2.49 C-0.34 20.35, 0.95 46.72, 7.91 64.29 M1.87 1.79 C2.92 22.77, 4.61 48.67, 5.37 63.42 M8.12 60.41 C-5.24 69.08, -9.07 64.86, -24.24 72.09 M4.57 63.28 C-4.21 64.86, -12.61 68.37, -19.63 72.98" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(70.94366651315022 166.84783082368415) rotate(0 9.961580487666453 33.55479743213962)"><path d="M-2.98 -3.17 C-4.65 20.57, 1.44 42.72, 0.32 64.44 M0.7 -1.01 C1.46 13.92, 1.27 25.42, -2.26 62.43 M-4.06 65.68 C6.16 60.29, 6.12 65.26, 22.86 70.05 M-3.41 60.91 C5.11 63.59, 17.04 67.01, 21.36 68.64" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(30.573050852606627 112.32128499645569) rotate(0 -7.077965083341809 45.87569961425362)"><path d="M-2.22 -2.28 C-4.33 6.19, -12.95 32.73, -14.4 48.74 C-15.85 64.76, -11.66 87.1, -10.94 93.81 M1.77 2.66 C-0.58 10.6, -14.4 30.69, -16.77 45.14 C-19.14 59.6, -13.76 81.9, -12.42 89.4" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(15.89282697604574 180.47946728048953) rotate(0 5.767230808649117 3.9322028240788995)"><path d="M-0.1 1.12 C2.02 2.74, 9.75 7.82, 11.79 8.75 M-1.62 0.66 C0.45 2.03, 8.76 5.96, 10.98 7.09" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(71.46796022302715 114.94275354584192) rotate(0 18.088132990762716 -44.30281848462164)"><path d="M0.6 2.06 C5.94 -3.72, 25.48 -19.2, 31.84 -32.06 C38.21 -44.92, 40.88 -65.43, 38.79 -75.09 C36.71 -84.75, 22.54 -88.05, 19.33 -90.03 M-2.53 0.71 C2.6 -3.62, 23.56 -16.57, 30.38 -29.9 C37.2 -43.23, 40.06 -69.55, 38.4 -79.26 C36.75 -88.98, 24.07 -87.21, 20.45 -88.19" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(103.44987652553522 25.81282286672092) rotate(0 -0.2621468549386634 -7.602258793218937)"><path d="M0.61 -1.16 C0.67 -3.66, 0.72 -11.69, 0.6 -14.13 M-0.52 0.85 C-0.55 -2.04, 0.26 -13.08, 0.24 -15.69" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(108.16851991442985 31.58005367537021) rotate(0 1.8350279845700186 -10.48587419754358)"><path d="M1.12 1.07 C1.7 -2.33, 3.58 -18.02, 4.09 -21.58 M0.25 0.59 C0.65 -2.56, 2.79 -16.56, 3.36 -20.36" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(107.64422620455252 32.10434738524714) rotate(0 7.077965083342008 -8.126552503096264)"><path d="M0.42 -0.61 C2.68 -3.38, 12.24 -12.94, 14.65 -15.55 M-0.82 1.69 C1.22 -0.91, 11.42 -14.52, 13.96 -17.3" stroke="#000000" stroke-width="2" fill="none"></path></g></g><mask></mask><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(42.164073776494206 70.04023633280974) rotate(0 0.00004600333937787582 0.00004600333937787582)" stroke="none"><path fill="#000000" d="M 1.57,-1.57 Q 1.57,-1.57 1.77,-1.27 1.98,-0.98 2.09,-0.64 2.20,-0.29 2.19,0.05 2.18,0.41 2.05,0.75 1.93,1.09 1.70,1.37 1.48,1.65 1.18,1.84 0.87,2.04 0.52,2.12 0.18,2.21 -0.17,2.18 -0.53,2.15 -0.86,2.01 -1.19,1.87 -1.46,1.63 -1.73,1.39 -1.90,1.07 -2.08,0.76 -2.15,0.41 -2.21,0.05 -2.17,-0.29 -2.12,-0.65 -1.96,-0.97 -1.80,-1.29 -1.54,-1.54 -1.29,-1.80 -0.97,-1.96 -0.65,-2.12 -0.29,-2.17 0.06,-2.21 0.41,-2.15 0.76,-2.08 1.07,-1.90 1.39,-1.73 1.63,-1.46 1.87,-1.19 2.01,-0.86 2.15,-0.53 2.18,-0.17 2.21,0.18 2.12,0.52 2.03,0.87 1.84,1.18 1.65,1.48 1.37,1.70 1.09,1.93 0.75,2.05 0.41,2.18 0.05,2.19 -0.30,2.20 -0.64,2.09 -0.98,1.98 -1.27,1.77 -1.57,1.56 -1.57,1.57 -1.57,1.57 -1.73,1.35 -1.90,1.14 -2.01,0.90 -2.12,0.66 -2.16,0.39 -2.21,0.13 -2.20,-0.13 -2.18,-0.40 -2.10,-0.65 -2.02,-0.91 -1.88,-1.14 -1.74,-1.36 -1.55,-1.55 -1.36,-1.74 -1.14,-1.88 -0.91,-2.02 -0.65,-2.10 -0.40,-2.18 -0.13,-2.20 0.13,-2.21 0.39,-2.16 0.66,-2.12 0.90,-2.01 1.14,-1.90 1.35,-1.73 1.57,-1.57 1.57,-1.57 L 1.57,-1.57 Z"></path></g><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(59.91477391028195 69.2017952554412) rotate(0 0.00004600333937787582 0.00004600333937787582)" stroke="none"><path fill="#000000" d="M 1.57,-1.57 Q 1.57,-1.57 1.77,-1.27 1.98,-0.98 2.09,-0.64 2.20,-0.29 2.19,0.05 2.18,0.41 2.05,0.75 1.93,1.09 1.70,1.37 1.48,1.65 1.18,1.84 0.87,2.04 0.52,2.12 0.18,2.21 -0.17,2.18 -0.53,2.15 -0.86,2.01 -1.19,1.87 -1.46,1.63 -1.73,1.39 -1.90,1.07 -2.08,0.76 -2.15,0.41 -2.21,0.05 -2.17,-0.29 -2.12,-0.65 -1.96,-0.97 -1.80,-1.29 -1.54,-1.54 -1.29,-1.80 -0.97,-1.96 -0.65,-2.12 -0.29,-2.17 0.06,-2.21 0.41,-2.15 0.76,-2.08 1.07,-1.90 1.39,-1.73 1.63,-1.46 1.87,-1.19 2.01,-0.86 2.15,-0.53 2.18,-0.17 2.21,0.18 2.12,0.52 2.03,0.87 1.84,1.18 1.65,1.48 1.37,1.70 1.09,1.93 0.75,2.05 0.41,2.18 0.05,2.19 -0.30,2.20 -0.64,2.09 -0.98,1.98 -1.27,1.77 -1.57,1.56 -1.57,1.57 -1.57,1.57 -1.73,1.35 -1.90,1.14 -2.01,0.90 -2.12,0.66 -2.16,0.39 -2.21,0.13 -2.20,-0.13 -2.18,-0.40 -2.10,-0.65 -2.02,-0.91 -1.88,-1.14 -1.74,-1.36 -1.55,-1.55 -1.36,-1.74 -1.14,-1.88 -0.91,-2.02 -0.65,-2.10 -0.40,-2.18 -0.13,-2.20 0.13,-2.21 0.39,-2.16 0.66,-2.12 0.90,-2.01 1.14,-1.90 1.35,-1.73 1.57,-1.57 1.57,-1.57 L 1.57,-1.57 Z"></path></g><g stroke-linecap="round"><g stroke-opacity="0.8" fill-opacity="0.8" transform="translate(44.02175797921916 85.05010325634942) rotate(180.707313349537 6.088006858548368 -2.283002571955649)"><path d="M0.1 0.01 C0.75 -0.66, 2.28 -3.82, 4.22 -4.03 C6.16 -4.23, 10.36 -1.78, 11.76 -1.21 M-0.51 -0.46 C0.28 -1.27, 3.04 -4.67, 5.27 -4.72 C7.5 -4.76, 11.58 -1.23, 12.86 -0.71" stroke="#000000" stroke-width="1" fill="none"></path></g></g><mask></mask></svg>
|
@@ -1,10 +1,10 @@
|
|
1
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57.01867283902206 69.51073495614105" width="171.05601851706618" height="208.53220486842315" filter="invert(93%) hue-rotate(180deg)">
|
2
|
-
<!-- svg-source:excalidraw -->
|
3
|
-
|
4
|
-
<defs>
|
5
|
-
<style class="style-fonts">
|
6
|
-
|
7
|
-
</style>
|
8
|
-
|
9
|
-
</defs>
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57.01867283902206 69.51073495614105" width="171.05601851706618" height="208.53220486842315" filter="invert(93%) hue-rotate(180deg)">
|
2
|
+
<!-- svg-source:excalidraw -->
|
3
|
+
|
4
|
+
<defs>
|
5
|
+
<style class="style-fonts">
|
6
|
+
|
7
|
+
</style>
|
8
|
+
|
9
|
+
</defs>
|
10
10
|
<g stroke-linecap="round"><g transform="translate(13.950384992495117 12.357081829032381) rotate(0 14.261622046022111 23.33231996428026)" fill-rule="evenodd"><path d="M-1.57 1.72 C3.58 1.91, 25.62 -4.24, 31.26 2.88 C36.9 10.01, 34.58 40.2, 32.28 44.5 C29.97 48.8, 22.75 28.44, 17.43 28.67 C12.11 28.89, 3.48 50.24, 0.37 45.85 C-2.75 41.46, -1.18 9.92, -1.24 2.32" stroke="none" stroke-width="0" fill="#ffffff" fill-rule="evenodd"></path><path d="M1.07 1.02 C5.97 1.28, 24.68 -6.58, 29.67 0.84 C34.65 8.26, 33.31 40.75, 30.98 45.54 C28.66 50.32, 21.15 29.55, 15.7 29.55 C10.26 29.56, 1.13 50.67, -1.68 45.56 C-4.49 40.45, -1.37 6.37, -1.16 -1.1 M0.17 0.51 C4.88 1.03, 23.61 -5.39, 28.68 2.3 C33.76 9.99, 32.79 42.48, 30.63 46.65 C28.47 50.82, 21.37 27.53, 15.74 27.31 C10.11 27.1, -0.48 49.76, -3.16 45.37 C-5.84 40.97, -0.88 8.54, -0.36 0.94" stroke="#1e1e1e" stroke-width="2" fill="none"></path></g></g><mask></mask></svg>
|