jekyll-mahjong 1.0.4 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/mahjong.scss +40 -0
- data/assets/tiles/1x.svg +4 -24
- data/lib/jekyll-mahjong-generator.rb +51 -17
- data/lib/jekyll-mahjong.rb +9 -9
- metadata +6 -41
- data/assets/tiles/c0m.svg +0 -48
- data/assets/tiles/c0p.svg +0 -48
- data/assets/tiles/c0s.svg +0 -48
- data/assets/tiles/c1m.svg +0 -48
- data/assets/tiles/c1p.svg +0 -51
- data/assets/tiles/c1s.svg +0 -51
- data/assets/tiles/c1x.svg +0 -40
- data/assets/tiles/c1z.svg +0 -44
- data/assets/tiles/c2m.svg +0 -51
- data/assets/tiles/c2p.svg +0 -44
- data/assets/tiles/c2s.svg +0 -44
- data/assets/tiles/c2z.svg +0 -44
- data/assets/tiles/c3m.svg +0 -51
- data/assets/tiles/c3p.svg +0 -51
- data/assets/tiles/c3s.svg +0 -44
- data/assets/tiles/c3z.svg +0 -44
- data/assets/tiles/c4m.svg +0 -51
- data/assets/tiles/c4p.svg +0 -44
- data/assets/tiles/c4s.svg +0 -44
- data/assets/tiles/c4z.svg +0 -44
- data/assets/tiles/c5m.svg +0 -51
- data/assets/tiles/c5p.svg +0 -51
- data/assets/tiles/c5s.svg +0 -51
- data/assets/tiles/c5z.svg +0 -44
- data/assets/tiles/c6m.svg +0 -51
- data/assets/tiles/c6p.svg +0 -51
- data/assets/tiles/c6s.svg +0 -44
- data/assets/tiles/c6z.svg +0 -44
- data/assets/tiles/c7m.svg +0 -51
- data/assets/tiles/c7p.svg +0 -51
- data/assets/tiles/c7s.svg +0 -51
- data/assets/tiles/c7z.svg +0 -48
- data/assets/tiles/c8m.svg +0 -51
- data/assets/tiles/c8p.svg +0 -44
- data/assets/tiles/c8s.svg +0 -44
- data/assets/tiles/c9m.svg +0 -51
- data/assets/tiles/c9p.svg +0 -51
- data/assets/tiles/c9s.svg +0 -51
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1c9cdc30076e03d2ae202ce8bbb0a439dfce450b177b6c62eea11405bfcd408
|
4
|
+
data.tar.gz: 475327ebc2bd56b87b4644577a1d2a08d49eac9b12be8d98dfeb903edb8a0dae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d633e07a8fc90fead34ea91b6abf95d36ad7c429d0b38690cf8a1df7a93d7d345fcb1b6460979a3a61dda687e028323a1c5b7b16548292b0605e2a7c82f4272e
|
7
|
+
data.tar.gz: bab3fb01a770b21c51e17f44a6c481dc743fa2d043671d6ff1ae2aac25ef62092166f2fa81b15c1c87c12ee51e418c3a44b501b523bccec9098900ba80ce3740
|
data/_sass/mahjong.scss
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
$tile_height: 2em;
|
2
|
+
$tile_width: $tile_height * 0.716;
|
3
|
+
// the ratio of the outline's thickness to the tile's height is about 0.0368
|
4
|
+
$negative_right_margin: -$tile_height * 0.034;
|
5
|
+
$tile_group_space_width: $tile_height * 0.5;
|
6
|
+
|
7
|
+
// these containers are surrounded by <span class='mahjong-tiles'></span>
|
8
|
+
.mahjong-tile-container {
|
9
|
+
vertical-align: bottom;
|
10
|
+
margin-right: $negative_right_margin;
|
11
|
+
|
12
|
+
img{
|
13
|
+
// set width of image here to get correct display size
|
14
|
+
width: $tile_width;
|
15
|
+
}
|
16
|
+
|
17
|
+
// ensures that the last tile doesn't have a negative right margin
|
18
|
+
&:last-child {
|
19
|
+
margin-right: 0;
|
20
|
+
}
|
21
|
+
|
22
|
+
// set the sideways tile's width explicitly, then
|
23
|
+
// transform the tile image accordingly
|
24
|
+
&.sideways{
|
25
|
+
// set width of container to ensure the image width takes up as much space
|
26
|
+
width: $tile_height;
|
27
|
+
// need to be an inline-block otherwise `width` of container doesn't work
|
28
|
+
display: inline-block;
|
29
|
+
|
30
|
+
img{
|
31
|
+
transform-origin: bottom left;
|
32
|
+
transform: rotate(-90deg) translateY(100%);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.space-between-tile-groups {
|
38
|
+
width: $tile_group_space_width;
|
39
|
+
display: inline-block;
|
40
|
+
}
|
data/assets/tiles/1x.svg
CHANGED
@@ -2,39 +2,19 @@
|
|
2
2
|
<svg
|
3
3
|
id="glyph4"
|
4
4
|
version="1.1"
|
5
|
-
sodipodi:docname="1x.svg"
|
6
5
|
width="71.625771"
|
7
6
|
height="100.00001"
|
8
|
-
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
9
7
|
xml:space="preserve"
|
10
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
11
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
8
|
xmlns="http://www.w3.org/2000/svg"
|
13
9
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
14
|
-
id="defs3" /><
|
15
|
-
id="namedview3"
|
16
|
-
pagecolor="#ffffff"
|
17
|
-
bordercolor="#000000"
|
18
|
-
borderopacity="0.25"
|
19
|
-
inkscape:showpageshadow="2"
|
20
|
-
inkscape:pageopacity="0.0"
|
21
|
-
inkscape:pagecheckerboard="0"
|
22
|
-
inkscape:deskcolor="#d1d1d1"
|
23
|
-
inkscape:zoom="2.7933333"
|
24
|
-
inkscape:cx="57.279237"
|
25
|
-
inkscape:cy="27.02864"
|
26
|
-
inkscape:window-width="1920"
|
27
|
-
inkscape:window-height="1009"
|
28
|
-
inkscape:window-x="-8"
|
29
|
-
inkscape:window-y="-8"
|
30
|
-
inkscape:window-maximized="1"
|
31
|
-
inkscape:current-layer="g3" /><g
|
10
|
+
id="defs3" /><g
|
32
11
|
transform="matrix(0,0.07668712,0.07668712,0,21.625768,0)"
|
33
12
|
id="g3"><path
|
34
13
|
fill="#ffffff"
|
35
14
|
d="M 1220,-234 H 1209 84 c -30,0 -36,17 -36,37 v 765 c 0,30 16,36 36,36 h 1135 c 30,0 37,-15 37,-35 v -767 c 0,-30 -16,-36 -36,-36 z"
|
36
15
|
id="path1"
|
37
16
|
style="fill:#f8a006;fill-opacity:1"
|
38
|
-
|
17
|
+
class="tile-back" /><path
|
39
18
|
d="m 84,-282 c -55,0 -84,35 -84,85 v 765 c 0,55 34,84 84,84 h 1135 c 55,0 85,-35 85,-85 v -765 c 0,-55 -34,-84 -84,-84 z m 1136,48 c 20,0 36,6 36,36 v 767 c 0,20 -7,35 -37,35 H 84 c -20,0 -36,-6 -36,-36 v -765 c 0,-20 6,-37 36,-37 h 1125 z"
|
40
|
-
id="
|
19
|
+
id="path2"
|
20
|
+
class="outline" /></g></svg>
|
@@ -1,31 +1,65 @@
|
|
1
1
|
module JekyllMahjong
|
2
2
|
class MahjongGenerator < Jekyll::Generator
|
3
|
-
# Find and copy all the
|
3
|
+
# Find and copy(/update) all the required files to the built site.
|
4
|
+
# only runs once per build (otherwise infinite loop during re-building if
|
5
|
+
# file overwrite is enabled)
|
4
6
|
def generate(site)
|
7
|
+
if @has_run
|
8
|
+
return
|
9
|
+
end
|
10
|
+
|
5
11
|
gem_path = Gem::Specification.find_by_name('jekyll-mahjong').gem_dir
|
6
|
-
relative_path = '/assets/tiles/'
|
7
12
|
|
8
|
-
#
|
9
|
-
|
10
|
-
|
13
|
+
# Copy SCSS files as necessary
|
14
|
+
scss_relative_path = '/_sass/'
|
15
|
+
scss_files_path = File.join(gem_path, scss_relative_path, '*.scss')
|
16
|
+
copy_as_necessary(
|
17
|
+
site,
|
18
|
+
Dir.glob(scss_files_path),
|
19
|
+
scss_relative_path,
|
20
|
+
false,
|
21
|
+
site.config.dig('jekyll-mahjong', 'overwrite_SCSS')
|
22
|
+
)
|
23
|
+
|
24
|
+
# Copy and mark as static SVG files as necessary
|
25
|
+
tiles_relative_path = '/assets/tiles/'
|
26
|
+
svg_files_path = File.join(gem_path, tiles_relative_path, '*.svg')
|
27
|
+
copy_as_necessary(
|
28
|
+
site,
|
29
|
+
Dir.glob(svg_files_path),
|
30
|
+
tiles_relative_path,
|
31
|
+
true,
|
32
|
+
site.config.dig('jekyll-mahjong', 'overwrite_tiles')
|
33
|
+
)
|
11
34
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
35
|
+
@has_run = true
|
36
|
+
end
|
37
|
+
|
38
|
+
# given an array of files, check if they exist in the corresponding
|
39
|
+
# directory of the site's source. If they don't exist or if overwrite is
|
40
|
+
# specified, copy them to the site's source. If the files are static
|
41
|
+
# and didn't exist before, mark them as static.
|
42
|
+
def copy_as_necessary(site, filenames, relative_directory, is_static, overwrite)
|
43
|
+
# Create the corresponding directory in site source as necessary
|
44
|
+
site_source_directory = File.join(site.source, relative_directory)
|
45
|
+
FileUtils.mkdir_p(site_source_directory)
|
20
46
|
|
21
|
-
|
22
|
-
|
23
|
-
|
47
|
+
filenames.each do |filename|
|
48
|
+
basename = File.basename(filename)
|
49
|
+
site_source_filename = File.join(site_source_directory, basename)
|
50
|
+
|
51
|
+
if !File.exist?(site_source_filename)
|
52
|
+
FileUtils.cp(filename, site_source_filename)
|
24
53
|
# IMPORTANT: mark to be included in the built _site
|
25
54
|
# lifesaver: https://stackoverflow.com/a/19890768/21452015
|
26
55
|
# documentation: https://www.rubydoc.info/gems/jekyll/Jekyll%2FStaticFile:initialize
|
27
|
-
|
56
|
+
if is_static
|
57
|
+
site.static_files << Jekyll::StaticFile.new(site, site.source, relative_directory, basename)
|
58
|
+
end
|
59
|
+
elsif overwrite
|
60
|
+
FileUtils.cp(filename, site_source_filename)
|
28
61
|
end
|
62
|
+
|
29
63
|
end
|
30
64
|
end
|
31
65
|
end
|
data/lib/jekyll-mahjong.rb
CHANGED
@@ -42,7 +42,7 @@ module JekyllMahjong
|
|
42
42
|
|
43
43
|
# do nothing if there are no tiles in the last group
|
44
44
|
unless svg_group.empty?
|
45
|
-
output += "<span class='
|
45
|
+
output += "<span class='space-between-tile-groups' />"
|
46
46
|
output += svg_group
|
47
47
|
end
|
48
48
|
end
|
@@ -60,9 +60,8 @@ module JekyllMahjong
|
|
60
60
|
if svg_tiles.empty?
|
61
61
|
return ""
|
62
62
|
end
|
63
|
-
|
64
|
-
|
65
|
-
"<span class='mahjong-tiles' style='margin-right: #{-@tile_margin_right}em;'>#{svg_tiles.join}</span>"
|
63
|
+
|
64
|
+
"<span class='mahjong-tiles'>#{svg_tiles.join}</span>"
|
66
65
|
end
|
67
66
|
|
68
67
|
def svg_for_tile_suit_block(tile_suit_block)
|
@@ -71,17 +70,18 @@ module JekyllMahjong
|
|
71
70
|
end
|
72
71
|
|
73
72
|
def svg_for_tile(number, suit)
|
73
|
+
tile_name = "#{number}#{suit}"
|
74
74
|
if suit == suit.upcase
|
75
75
|
# sideways tile
|
76
|
-
|
77
|
-
|
76
|
+
file_name = "#{number}#{suit.downcase}"
|
77
|
+
class_name = " sideways"
|
78
78
|
else
|
79
79
|
# upright tile
|
80
|
-
|
81
|
-
|
80
|
+
file_name = tile_name
|
81
|
+
class_name = ""
|
82
82
|
end
|
83
83
|
|
84
|
-
"<img src='/assets/tiles/#{
|
84
|
+
"<span class='mahjong-tile-container#{class_name}'><img src='/assets/tiles/#{file_name}.svg' alt='#{tile_name}' /></span>"
|
85
85
|
end
|
86
86
|
end
|
87
87
|
end
|
metadata
CHANGED
@@ -1,23 +1,26 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-mahjong
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Gao
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: '"jekyll-mahjong" is a Jekyll plugin that offers a "mahjong" tag that
|
14
14
|
will translate the text notation like "123p444s" into vector graphics of mahjong
|
15
|
-
tiles.
|
15
|
+
tiles. Note that you need to import the SCSS stylesheet that comes with this gem.
|
16
|
+
For documentation including installation instructions and demo, please see here:
|
17
|
+
https://peterish.com/riichi-docs/jekyll-mahjong-plugin/.'
|
16
18
|
email: peter1357908@hotmail.com
|
17
19
|
executables: []
|
18
20
|
extensions: []
|
19
21
|
extra_rdoc_files: []
|
20
22
|
files:
|
23
|
+
- _sass/mahjong.scss
|
21
24
|
- assets/tiles/0m.svg
|
22
25
|
- assets/tiles/0p.svg
|
23
26
|
- assets/tiles/0s.svg
|
@@ -56,44 +59,6 @@ files:
|
|
56
59
|
- assets/tiles/9m.svg
|
57
60
|
- assets/tiles/9p.svg
|
58
61
|
- assets/tiles/9s.svg
|
59
|
-
- assets/tiles/c0m.svg
|
60
|
-
- assets/tiles/c0p.svg
|
61
|
-
- assets/tiles/c0s.svg
|
62
|
-
- assets/tiles/c1m.svg
|
63
|
-
- assets/tiles/c1p.svg
|
64
|
-
- assets/tiles/c1s.svg
|
65
|
-
- assets/tiles/c1x.svg
|
66
|
-
- assets/tiles/c1z.svg
|
67
|
-
- assets/tiles/c2m.svg
|
68
|
-
- assets/tiles/c2p.svg
|
69
|
-
- assets/tiles/c2s.svg
|
70
|
-
- assets/tiles/c2z.svg
|
71
|
-
- assets/tiles/c3m.svg
|
72
|
-
- assets/tiles/c3p.svg
|
73
|
-
- assets/tiles/c3s.svg
|
74
|
-
- assets/tiles/c3z.svg
|
75
|
-
- assets/tiles/c4m.svg
|
76
|
-
- assets/tiles/c4p.svg
|
77
|
-
- assets/tiles/c4s.svg
|
78
|
-
- assets/tiles/c4z.svg
|
79
|
-
- assets/tiles/c5m.svg
|
80
|
-
- assets/tiles/c5p.svg
|
81
|
-
- assets/tiles/c5s.svg
|
82
|
-
- assets/tiles/c5z.svg
|
83
|
-
- assets/tiles/c6m.svg
|
84
|
-
- assets/tiles/c6p.svg
|
85
|
-
- assets/tiles/c6s.svg
|
86
|
-
- assets/tiles/c6z.svg
|
87
|
-
- assets/tiles/c7m.svg
|
88
|
-
- assets/tiles/c7p.svg
|
89
|
-
- assets/tiles/c7s.svg
|
90
|
-
- assets/tiles/c7z.svg
|
91
|
-
- assets/tiles/c8m.svg
|
92
|
-
- assets/tiles/c8p.svg
|
93
|
-
- assets/tiles/c8s.svg
|
94
|
-
- assets/tiles/c9m.svg
|
95
|
-
- assets/tiles/c9p.svg
|
96
|
-
- assets/tiles/c9s.svg
|
97
62
|
- lib/jekyll-mahjong-generator.rb
|
98
63
|
- lib/jekyll-mahjong.rb
|
99
64
|
homepage: https://peterish.com/riichi-docs/jekyll-mahjong-plugin/
|
data/assets/tiles/c0m.svg
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
id="glyph4"
|
4
|
-
version="1.1"
|
5
|
-
sodipodi:docname="0m.svg"
|
6
|
-
width="100.00001"
|
7
|
-
height="71.625771"
|
8
|
-
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
13
|
-
<defs
|
14
|
-
id="defs3" />
|
15
|
-
<sodipodi:namedview
|
16
|
-
id="namedview3"
|
17
|
-
pagecolor="#ffffff"
|
18
|
-
bordercolor="#000000"
|
19
|
-
borderopacity="0.25"
|
20
|
-
inkscape:showpageshadow="2"
|
21
|
-
inkscape:pageopacity="0.0"
|
22
|
-
inkscape:pagecheckerboard="0"
|
23
|
-
inkscape:deskcolor="#d1d1d1"
|
24
|
-
inkscape:zoom="2.7933333"
|
25
|
-
inkscape:cx="44.033413"
|
26
|
-
inkscape:cy="91.825776"
|
27
|
-
inkscape:window-width="1920"
|
28
|
-
inkscape:window-height="1009"
|
29
|
-
inkscape:window-x="-8"
|
30
|
-
inkscape:window-y="-8"
|
31
|
-
inkscape:window-maximized="1"
|
32
|
-
inkscape:current-layer="glyph4" />
|
33
|
-
<g
|
34
|
-
transform="matrix(0.07668712,0,0,-0.07668712,0,50.000002)"
|
35
|
-
id="g3">
|
36
|
-
<path
|
37
|
-
fill="#ffffff"
|
38
|
-
d="M 1220,-234 H 1209 84 c -30,0 -36,17 -36,37 v 765 c 0,30 16,36 36,36 h 1135 c 30,0 37,-15 37,-35 v -767 c 0,-30 -16,-36 -36,-36 z"
|
39
|
-
id="path1" />
|
40
|
-
<path
|
41
|
-
fill="#e5007f"
|
42
|
-
d="m 138,339 c 0,5 1,14 3,27 1,15 4,26 7,37 2,9 7,18 11,25 4,6 9,12 15,15 7,3 12,3 19,2 3,0 8,-2 11,-4 3,-3 6,-8 9,-14 4,-6 5,-12 7,-19 1,-5 2,-12 0,-20 -1,-6 -3,-17 -8,-29 -6,-21 -9,-33 -9,-38 0,-4 3,-17 12,-38 9,-22 15,-36 21,-44 14,-20 29,-33 46,-38 7,-1 12,-2 16,-4 5,0 8,-1 9,0 2,0 3,2 4,3 1,3 -1,7 -7,16 -6,8 -14,15 -22,21 -9,5 -15,10 -17,12 -3,3 -5,5 -6,10 -1,4 -1,9 1,14 l 5,22 c 5,7 32,11 80,13 49,2 73,4 74,4 l 26,54 c 20,38 33,64 43,82 9,16 15,28 23,34 7,6 13,7 21,7 9,0 17,-2 26,-7 8,-4 11,-7 12,-9 1,-2 3,-9 3,-20 0,-15 -5,-27 -14,-37 -3,-5 -7,-13 -15,-23 -8,-11 -15,-22 -23,-33 -8,-13 -13,-24 -21,-38 -7,-12 -13,-20 -16,-28 -1,-3 -4,-8 -6,-12 -2,-5 -3,-9 -4,-13 0,-4 0,-7 0,-9 0,-2 0,-8 2,-15 1,-7 3,-15 8,-27 3,-11 7,-22 13,-36 5,-13 12,-30 19,-47 8,-19 14,-31 17,-37 4,-6 10,-13 16,-22 4,-5 6,-7 7,-8 2,-2 2,-3 0,-6 0,-2 -1,-5 -3,-8 -5,-9 -10,-17 -18,-21 -5,-5 -11,-7 -17,-7 -8,0 -31,2 -69,7 -11,1 -20,1 -24,0 -2,0 -4,-2 -5,-5 -1,-3 -1,-8 4,-13 18,-20 39,-50 59,-93 28,-59 33,-87 19,-83 -3,0 -7,2 -12,11 -45,79 -95,136 -157,165 -5,3 -12,7 -17,8 -6,2 -10,3 -14,4 -5,0 -9,0 -14,0 -3,-1 -8,-1 -13,-2 -36,-13 -63,-4 -84,24 -21,28 -16,49 17,63 l 11,4 -1,35 c 0,8 -1,14 -1,20 -1,7 -1,11 -2,14 -1,5 -2,8 -3,10 -4,5 -13,24 -28,56 -7,15 -14,28 -20,36 -5,11 -11,18 -14,21 -8,8 -12,18 -12,31 z m 91,-218 c 0,-3 2,-5 4,-5 4,-1 8,-2 14,-3 29,-3 57,-11 83,-24 9,-4 14,-8 19,-9 4,-1 6,0 7,3 3,1 3,6 1,12 -1,4 -2,10 -4,17 -2,6 -4,13 -9,18 -4,12 -9,20 -13,22 -4,4 -15,6 -33,11 l -20,6 -20,-21 c -14,-15 -22,-22 -25,-22 -3,0 -4,-1 -4,-5 z m 66,346 c 0,15 4,25 14,34 9,8 21,14 35,14 19,0 33,-7 42,-22 10,-16 11,-31 1,-49 -8,-16 -23,-25 -44,-25 -21,0 -34,9 -44,25 -1,5 -1,6 -2,6 0,0 -1,2 -1,5 l -1,7 z m 45,-219 c 1,-1 1,-3 3,-8 l 5,-13 5,-16 9,-31 38,-9 c 33,-8 53,-12 61,-12 6,0 8,3 5,10 -1,3 -4,13 -9,31 -2,9 -4,16 -7,22 -3,5 -5,11 -7,14 -2,3 -5,5 -8,6 -2,2 -7,3 -12,4 -11,1 -28,2 -49,3 -13,0 -22,2 -25,2 -6,0 -8,-2 -8,-4 -1,2 -1,2 -1,1 z m 46,-127 c 1,-1 2,-4 5,-8 3,-4 4,-9 7,-16 l 8,-21 23,1 c 33,3 51,6 57,7 4,1 9,4 9,6 0,4 -4,9 -8,14 -6,3 -20,9 -45,19 -24,9 -41,14 -47,14 -9,0 -12,-2 -12,-7 z m 137,130 c 0,5 2,8 8,12 7,7 15,13 25,17 10,3 20,4 33,4 12,0 25,-2 42,-7 6,-1 14,-3 19,-4 6,-1 9,-1 10,0 v 10 c 0,4 0,13 -1,23 0,10 -1,21 -1,33 -4,78 -4,124 3,131 3,4 8,5 14,5 5,0 10,-2 13,-7 7,-9 11,-19 14,-31 2,-11 4,-38 6,-81 v -35 c 0,-5 2,-11 2,-15 0,-3 1,-8 1,-11 0,-4 0,-8 0,-11 1,-3 1,-5 2,-9 0,-2 0,-5 0,-6 0,-2 1,-4 1,-5 1,-2 1,-3 1,-4 7,-18 16,-41 25,-68 9,-29 19,-53 26,-71 7,-21 11,-34 13,-44 1,-9 2,-27 2,-52 0,-36 0,-58 -2,-67 -2,-11 -7,-20 -14,-29 l -8,-8 c -2,-2 -5,-3 -7,-4 -3,0 -7,0 -13,0 -9,0 -16,2 -19,8 -2,5 0,27 8,64 9,39 11,76 8,106 -1,7 -1,14 -2,16 0,3 -2,5 -3,6 -2,1 -5,3 -8,4 -14,4 -23,-3 -29,-16 -3,-10 -7,-15 -10,-15 -2,0 -9,4 -21,14 -4,2 -5,3 -4,3 1,0 -1,2 -7,6 l -8,5 -10,8 c -4,2 -6,4 -9,6 -2,2 -7,4 -9,5 -11,7 -18,13 -22,15 -3,4 -5,7 -6,8 -1,2 -3,7 -3,11 0,8 4,13 10,18 -2,1 0,2 9,3 l 12,1 h 12 c 4,0 8,0 11,-1 6,0 9,0 11,0 5,-2 16,-5 30,-8 7,-2 13,-1 16,-1 4,0 6,1 5,5 0,0 -1,1 -1,2 -2,1 -4,2 -5,3 -1,1 -3,1 -5,1 -4,1 -9,3 -17,6 -6,3 -15,6 -22,9 -17,7 -30,9 -39,8 -9,-1 -17,-6 -27,-15 l -12,-10 -25,26 c -5,7 -12,13 -16,20 -5,6 -7,10 -7,13 z m 226,36 c 0,11 1,19 4,23 4,6 8,8 16,8 6,0 32,-2 77,-9 10,-1 18,-2 28,-3 10,-1 21,-1 31,-2 10,0 19,0 26,0 22,0 35,1 38,3 2,2 3,14 6,35 5,39 16,72 32,102 15,30 32,47 50,52 22,2 40,0 51,-8 3,-4 9,-14 17,-26 8,-14 13,-22 13,-26 0,-2 3,-10 12,-26 7,-17 12,-41 15,-70 3,-30 3,-50 -3,-65 -8,-22 -22,-44 -42,-66 -1,-2 -3,-3 -6,-7 l -3,-6 -4,-6 c 0,-5 2,-12 9,-27 5,-14 11,-27 11,-40 1,-11 1,-18 -4,-22 -10,-7 -6,-11 9,-11 21,0 31,-6 31,-19 0,-5 -1,-9 -2,-12 -3,-2 -8,-4 -19,-9 -13,-6 -25,-13 -35,-16 -5,-2 -7,-2 -9,-2 -1,0 -3,-1 -5,-2 l -5,-3 -1,-1 c -2,-3 -1,-10 1,-17 10,-29 -5,-61 -47,-92 -9,-8 -13,-11 -17,-10 -3,0 -7,3 -9,10 -1,3 -3,7 -3,11 0,3 2,9 4,18 4,14 5,28 5,43 V 7 c -1,3 -4,4 -6,3 -22,-8 -50,-13 -86,-13 -16,0 -25,2 -30,5 -4,2 -7,8 -7,16 0,4 2,6 3,8 2,2 4,5 9,7 4,1 9,2 16,4 6,1 16,5 26,7 9,2 21,4 32,6 11,4 19,5 26,6 l 18,8 -2,20 c 0,0 -1,3 -2,7 l -1,7 -3,13 c -2,2 -2,4 -3,5 -2,4 -4,7 -6,9 -4,0 -10,1 -19,1 h -23 l 3,-12 c 3,-10 7,-16 15,-16 1,0 3,0 4,-3 1,-1 2,-3 3,-5 3,-3 4,-7 3,-11 -2,-2 -5,-4 -10,-7 -6,-3 -12,-5 -21,-7 -10,-5 -21,-7 -36,-9 -19,-2 -41,-4 -65,-4 -25,0 -42,2 -51,4 -1,1 -3,2 -4,2 -1,0 -2,0 -3,2 -1,2 -1,4 -3,5 0,0 -1,1 -1,4 0,2 -1,4 -1,7 0,2 0,5 -1,9 -1,16 -5,35 -13,57 -5,15 -10,29 -14,43 -5,15 -8,29 -11,40 -2,13 -4,24 -6,35 -1,10 -2,20 -2,27 z m 55,-67 3,-16 6,-16 h 29 l -1,17 c -1,7 -2,11 -3,15 -1,5 -2,8 -3,10 -1,5 -4,6 -7,6 -2,0 -6,1 -14,3 -3,1 -8,1 -9,0 -2,-1 -2,-3 -2,-8 v 0 z m 22,-98 1,-6 c 1,-2 1,-4 2,-6 2,-3 3,-4 5,-6 1,-2 2,-3 3,-4 3,-2 6,-3 12,-2 7,0 9,1 9,3 1,4 1,8 1,11 0,3 -1,8 -2,11 -2,4 -3,6 -4,7 -5,3 -11,4 -17,3 -8,0 -11,-1 -11,-4 v 0 z m 39,104 c 0,-2 0,-8 2,-17 l 2,-2 c 0,-8 2,-14 5,-17 1,-6 5,-8 7,-9 2,-1 6,-1 14,-1 h 12 l -2,14 c -1,11 -3,21 -6,28 -2,5 -9,9 -19,12 -6,0 -11,-1 -12,-1 -3,0 -3,-3 -3,-7 z m 23,-109 c 0,-2 2,-4 3,-7 1,-6 3,-10 4,-11 2,-1 7,-2 13,-2 11,0 17,2 17,8 0,2 0,5 -1,7 0,3 -2,5 -3,6 -1,3 -3,5 -8,8 -4,2 -8,3 -11,3 -4,0 -7,-1 -11,-2 0,-1 0,-2 -1,-4 0,-1 0,-3 0,-6 z m 51,109 c 2,-25 7,-42 12,-47 l 24,-4 h 21 l -3,17 c 0,3 0,8 -2,13 -2,7 -3,10 -4,13 -2,7 -4,10 -6,12 -2,1 -9,3 -19,4 -11,0 -18,-1 -20,-1 -2,0 -3,-3 -3,-7 z m 66,89 c 1,-7 4,-10 10,-11 6,0 19,1 40,5 l 30,8 12,-11 c 9,-5 13,-9 14,-9 1,0 -3,19 -16,56 -8,20 -16,34 -23,42 -8,9 -17,12 -26,11 -19,-3 -34,-21 -39,-55 -1,-10 -2,-20 -2,-29 v 0 z m 6,-92 c 0,-3 2,-10 6,-23 6,-20 13,-30 19,-31 1,0 3,1 6,2 2,1 4,2 6,3 1,3 2,4 1,7 0,2 -5,12 -12,26 -6,13 -8,20 -11,23 -4,4 -8,3 -11,0 -3,-2 -4,-4 -4,-7 z m 37,-97 c -2,-4 2,-12 8,-26 4,-11 8,-18 13,-21 4,-3 9,-3 18,0 13,4 15,10 8,13 -2,0 -5,2 -7,6 -3,4 -6,8 -9,13 -3,4 -3,7 -5,10 -1,2 -2,4 -5,6 -1,1 -2,2 -4,2 -1,1 -3,1 -8,1 -6,0 -9,-1 -9,-4 z m 35,99 c 0,-3 2,-8 4,-12 4,-7 8,-7 12,-2 l 3,4 c 4,1 5,3 6,5 1,4 1,5 1,6 1,5 2,10 3,14 1,5 1,9 1,12 0,4 0,6 -1,7 -1,0 -6,-5 -16,-15 -9,-8 -13,-16 -13,-19 z"
|
43
|
-
id="path2" />
|
44
|
-
<path
|
45
|
-
d="m 84,-282 c -55,0 -84,35 -84,85 v 765 c 0,55 34,84 84,84 h 1135 c 55,0 85,-35 85,-85 v -765 c 0,-55 -34,-84 -84,-84 z m 1136,48 c 20,0 36,6 36,36 v 767 c 0,20 -7,35 -37,35 H 84 c -20,0 -36,-6 -36,-36 v -765 c 0,-20 6,-37 36,-37 h 1125 z"
|
46
|
-
id="path3" />
|
47
|
-
</g>
|
48
|
-
</svg>
|
data/assets/tiles/c0p.svg
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
id="glyph6"
|
4
|
-
version="1.1"
|
5
|
-
sodipodi:docname="0P.svg"
|
6
|
-
width="100.00001"
|
7
|
-
height="71.625771"
|
8
|
-
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
13
|
-
<defs
|
14
|
-
id="defs3" />
|
15
|
-
<sodipodi:namedview
|
16
|
-
id="namedview3"
|
17
|
-
pagecolor="#ffffff"
|
18
|
-
bordercolor="#000000"
|
19
|
-
borderopacity="0.25"
|
20
|
-
inkscape:showpageshadow="2"
|
21
|
-
inkscape:pageopacity="0.0"
|
22
|
-
inkscape:pagecheckerboard="0"
|
23
|
-
inkscape:deskcolor="#d1d1d1"
|
24
|
-
inkscape:zoom="2.7933333"
|
25
|
-
inkscape:cx="39.02148"
|
26
|
-
inkscape:cy="88.603819"
|
27
|
-
inkscape:window-width="1920"
|
28
|
-
inkscape:window-height="1009"
|
29
|
-
inkscape:window-x="-8"
|
30
|
-
inkscape:window-y="-8"
|
31
|
-
inkscape:window-maximized="1"
|
32
|
-
inkscape:current-layer="glyph6" />
|
33
|
-
<g
|
34
|
-
transform="matrix(0,-0.07668712,-0.07668712,0,77.990801,71.62577)"
|
35
|
-
id="g3">
|
36
|
-
<path
|
37
|
-
fill="#ffffff"
|
38
|
-
d="m 48,-203 v 11 1125 c 0,30 17,36 37,36 h 765 c 30,0 36,-16 36,-36 V -202 c 0,-30 -15,-37 -35,-37 H 84 c -30,0 -36,16 -36,36 z"
|
39
|
-
id="path1" />
|
40
|
-
<path
|
41
|
-
fill="#e5007f"
|
42
|
-
d="m 467,860 c 13,0 24,-4 33,-12 10,-9 14,-20 14,-33 0,-19 -8,-32 -22,-42 -16,-9 -31,-9 -46,-1 -11,5 -18,13 -22,25 -5,12 -5,23 0,34 4,11 11,20 22,25 3,2 7,3 11,4 3,0 6,0 10,0 z M 272,803 c 23,0 45,-6 69,-17 24,-13 43,-29 58,-50 16,-20 25,-43 27,-67 3,-23 1,-46 -6,-68 -5,-22 -17,-43 -35,-62 -18,-19 -40,-32 -65,-41 -8,-2 -18,-4 -29,-5 -10,-1 -21,-1 -32,-1 -11,1 -21,2 -29,5 -39,10 -69,33 -90,69 -22,34 -28,71 -20,111 3,16 9,32 17,45 8,14 18,27 29,37 11,11 24,19 38,27 14,7 30,12 45,14 9,2 17,3 23,3 z m 386,0 c 7,0 13,0 18,-1 6,0 11,-2 17,-4 6,-1 12,-3 17,-5 6,-1 11,-5 18,-7 40,-21 67,-51 79,-91 13,-40 10,-80 -9,-117 -18,-39 -49,-65 -92,-80 -30,-10 -59,-10 -88,-1 -40,10 -71,33 -92,69 -22,34 -29,71 -20,111 7,33 22,61 45,83 25,22 52,36 85,40 8,2 16,3 22,3 z M 268,772 c -19,0 -34,-4 -47,-9 -34,-17 -59,-42 -71,-78 -10,-30 -8,-61 7,-92 12,-26 32,-46 58,-60 28,-14 55,-17 84,-12 34,8 61,28 80,59 20,30 25,62 16,96 -10,40 -33,68 -68,85 -14,7 -32,11 -55,11 z m 386,0 c -18,0 -33,-4 -47,-9 -17,-9 -32,-19 -43,-32 -13,-13 -20,-29 -26,-46 -10,-30 -9,-61 5,-92 12,-26 32,-46 59,-60 28,-14 55,-17 83,-12 34,8 62,28 80,59 20,30 26,62 17,96 -5,19 -13,36 -24,51 -13,15 -28,26 -46,36 -12,5 -29,9 -51,9 z M 271,761 c 20,0 37,-2 49,-8 12,-4 24,-13 36,-26 11,-14 20,-27 26,-42 5,-16 7,-30 6,-46 -1,-15 -4,-30 -11,-44 -6,-14 -16,-26 -28,-37 -16,-13 -34,-22 -54,-25 -21,-5 -40,-4 -59,3 -16,4 -30,12 -41,22 -12,9 -21,22 -29,38 -4,0 -5,5 -6,14 l -2,12 v 23 c 0,22 2,37 6,48 5,10 13,23 25,35 13,13 25,22 36,26 11,5 27,7 46,7 z m 386,0 c 21,0 38,-2 50,-8 12,-4 24,-13 37,-26 22,-26 33,-54 31,-88 -1,-34 -14,-60 -39,-81 -15,-13 -32,-22 -53,-25 -21,-5 -41,-4 -60,3 -31,10 -55,30 -72,60 -2,7 -4,14 -5,19 -1,6 -2,16 -2,30 0,11 1,21 2,28 1,7 2,14 5,20 3,7 6,13 9,18 4,5 9,10 15,17 13,13 25,22 36,26 12,5 26,7 46,7 z M 260,746 c -11,-1 -19,-4 -25,-7 -5,-5 -8,-11 -8,-19 0,-3 1,-7 5,-12 7,-15 13,-19 15,-12 0,2 -1,4 -3,7 -2,4 -3,7 -2,11 0,5 2,9 5,13 2,3 11,5 24,5 16,0 26,-2 30,-9 6,-5 6,-12 -1,-20 -3,-5 -4,-8 -4,-10 0,-1 4,2 12,8 5,7 10,12 11,18 1,5 -1,11 -7,16 -6,7 -20,11 -38,11 v 0 z m 386,0 c -21,-2 -32,-11 -32,-26 0,-3 1,-7 4,-12 8,-15 14,-19 16,-12 0,2 -1,4 -3,7 -2,4 -5,7 -3,11 0,5 2,9 5,13 3,3 12,5 24,5 10,0 18,-1 23,-3 6,-4 9,-7 10,-10 1,-5 0,-10 -4,-16 -3,-5 -4,-8 -4,-10 1,-1 5,2 14,8 3,5 6,9 8,12 2,4 2,7 1,10 -1,5 -4,8 -7,12 -5,7 -18,11 -36,11 v 0 z M 335,716 c -4,0 -7,-2 -11,-5 -3,-2 -5,-5 -9,-10 -4,-6 -6,-11 -6,-13 -1,-3 2,-2 8,3 5,5 10,8 13,8 3,1 8,0 11,-2 4,-4 9,-10 13,-20 3,-10 6,-18 6,-23 0,-5 -3,-9 -7,-12 -4,-3 -10,-4 -17,-3 h -5 c -9,0 -8,-3 2,-7 13,-8 24,-7 33,2 9,10 9,26 0,51 -10,21 -20,31 -31,31 z m 386,0 c -3,0 -6,-2 -10,-5 -3,-2 -6,-5 -10,-10 l -5,-13 c 0,-3 2,-2 6,3 6,5 10,8 15,8 4,1 8,0 12,-2 2,-2 4,-6 7,-10 3,-6 5,-11 6,-18 2,-6 3,-12 3,-15 0,-4 -1,-7 -3,-10 -1,-2 -4,-3 -8,-5 -3,-1 -7,-1 -12,0 h -5 c -8,0 -8,-3 3,-7 13,-7 24,-6 33,2 9,10 9,26 -1,51 -9,21 -19,31 -31,31 z m -122,-2 c -1,0 -1,0 -2,-1 h -7 c -18,-6 -28,-25 -31,-54 -1,-12 1,-21 6,-25 3,-4 10,-7 16,-7 8,0 15,3 20,7 l 8,7 -11,-2 c -17,-3 -25,2 -25,14 0,20 5,34 16,43 4,3 11,3 18,1 3,-1 5,-2 7,-5 2,-2 4,-3 5,-4 0,-1 1,-2 1,-2 0,-1 1,-1 2,-1 2,2 0,6 -6,14 -5,8 -9,13 -14,14 -1,1 -2,1 -3,1 z m -389,-1 c -3,0 -5,0 -8,-1 -17,-5 -27,-24 -29,-53 -1,-12 1,-21 5,-25 2,-2 5,-4 10,-6 4,-1 10,-1 14,0 4,2 9,4 12,6 l 8,7 -10,-2 c -18,-3 -27,2 -27,14 0,20 6,34 17,43 5,3 12,4 19,1 3,-2 5,-5 6,-6 3,-1 4,-2 5,-3 l 1,-2 1,-1 c 2,2 1,6 -4,14 -5,8 -9,13 -14,14 z m 61,-28 c -11,0 -21,-5 -27,-14 -14,-16 -14,-33 0,-49 4,-5 10,-9 15,-11 6,-2 12,-4 18,-2 7,1 12,3 19,7 12,9 16,22 12,38 -5,16 -15,26 -29,30 -2,1 -5,1 -8,1 z m 386,0 c -15,-1 -26,-9 -33,-23 -6,-15 -4,-28 7,-40 15,-17 32,-19 51,-6 12,9 16,22 13,38 -4,16 -13,26 -29,30 -3,1 -5,1 -9,1 z M 271,674 c 7,0 14,-3 20,-7 11,-11 12,-22 5,-35 -9,-13 -20,-18 -35,-11 -7,3 -13,9 -16,18 -3,9 -2,17 3,23 7,8 13,12 23,12 z m 387,0 c 7,0 13,-3 19,-7 11,-11 12,-22 5,-35 -8,-13 -19,-18 -32,-11 -8,3 -14,9 -17,18 -3,9 -2,17 3,23 6,8 14,12 22,12 z M 215,627 c -1,0 -3,-1 -5,-1 -3,-1 -4,-1 -6,-2 -9,-4 -15,-10 -16,-15 -3,-7 -1,-14 4,-21 6,-9 15,-17 28,-26 19,-13 35,-13 44,-1 4,7 6,13 5,20 l -5,13 -4,-6 c 0,-7 -2,-12 -6,-16 -4,-4 -9,-5 -15,-4 -6,1 -13,5 -21,12 -7,7 -12,12 -14,16 -2,10 2,18 12,24 l 5,1 c 6,4 5,6 -1,6 z m 113,0 c -3,0 -5,-1 -7,-2 -2,-1 0,-3 7,-5 21,-10 19,-24 -4,-42 -11,-8 -20,-11 -27,-10 -8,2 -12,8 -12,20 -1,4 -3,7 -4,8 -1,0 -3,-2 -4,-7 -3,-12 -2,-22 4,-29 12,-11 29,-9 52,9 6,4 10,9 14,13 5,5 7,8 9,11 2,8 1,14 -3,20 -2,4 -7,8 -12,9 -5,2 -9,4 -13,5 z m 277,0 c -4,0 -8,-1 -14,-3 -13,-5 -20,-13 -16,-25 2,-12 12,-23 30,-37 7,-3 14,-6 19,-7 6,-3 11,-3 16,-2 4,2 8,4 11,8 2,3 3,6 4,7 0,2 1,4 1,6 1,3 0,5 0,7 -2,8 -4,13 -6,14 l -2,-7 c 0,-7 -2,-12 -7,-16 -5,-4 -9,-5 -15,-4 0,-2 -3,-1 -10,4 l -11,8 -8,9 c -4,3 -6,5 -6,7 -2,10 1,18 12,24 l 6,1 c 4,4 3,6 -4,6 z m 108,0 c -2,0 -3,-1 -4,-2 -4,-1 -2,-3 7,-5 20,-10 18,-24 -4,-42 -12,-8 -22,-11 -29,-10 -8,2 -12,8 -12,20 0,6 -2,10 -3,8 -2,0 -4,-2 -4,-7 -3,-12 -2,-22 4,-29 11,-11 28,-9 52,9 2,2 6,4 8,5 3,3 4,5 6,8 2,2 4,5 5,7 1,2 2,3 3,4 3,8 3,14 -1,20 -7,8 -16,13 -28,14 z M 465,513 c 29,0 57,-8 82,-23 0,2 4,0 12,-9 8,-8 12,-12 13,-11 1,0 6,-5 14,-14 l 11,-13 6,-12 c 13,-24 19,-51 18,-80 -1,-30 -10,-56 -24,-76 -17,-27 -40,-47 -68,-59 -5,-3 -10,-4 -12,-5 -3,-2 -7,-3 -12,-4 -4,-1 -9,-2 -13,-2 -5,-1 -12,-1 -21,-1 -23,-1 -40,0 -49,3 -38,14 -68,36 -89,69 -21,32 -29,66 -22,103 4,27 14,51 30,71 14,20 33,36 55,46 21,11 44,17 69,17 z m 0,-30 c -14,0 -25,0 -30,-1 -7,-1 -14,-4 -22,-8 -28,-14 -49,-34 -61,-59 -7,-16 -11,-35 -11,-58 0,-23 3,-39 8,-53 8,-15 18,-29 29,-41 12,-11 26,-19 42,-25 16,-5 32,-8 50,-6 19,1 35,5 49,12 49,23 72,61 72,113 0,53 -23,91 -72,114 -15,9 -33,12 -54,12 z m 2,-10 c 8,0 16,-1 23,-2 5,-1 12,-2 17,-5 7,-2 12,-4 18,-7 4,-5 11,-9 18,-14 24,-22 37,-48 39,-81 3,-32 -7,-61 -31,-85 -11,-12 -23,-21 -35,-28 -13,-5 -29,-8 -46,-8 -19,-2 -31,-2 -35,1 -17,5 -31,13 -45,24 -13,11 -24,24 -30,38 -7,12 -9,29 -9,52 0,7 0,11 0,15 1,3 1,7 1,11 0,3 0,6 1,8 0,3 1,6 2,8 1,2 2,6 5,9 12,24 32,42 58,55 7,3 13,6 20,7 5,1 15,2 29,2 z m -3,-17 c -17,0 -29,-3 -34,-7 -12,-12 -12,-23 0,-36 6,-6 10,-9 12,-9 1,1 0,3 -3,6 -4,7 -6,13 -4,18 1,4 4,9 9,11 6,3 14,4 23,4 20,0 32,-4 32,-14 0,-3 -2,-9 -5,-16 -2,-4 -3,-6 -3,-7 0,-6 4,-2 12,9 11,13 10,24 -3,34 -6,4 -18,7 -36,7 z m -61,-30 c -4,0 -7,-2 -10,-4 -5,-2 -10,-9 -16,-21 -5,-11 -9,-23 -10,-34 -1,-11 1,-19 8,-24 3,-3 6,-5 7,-6 1,0 3,-1 5,-1 2,-1 3,0 6,1 1,0 4,1 10,3 l 10,7 c 0,2 -4,4 -12,2 -7,-1 -13,0 -17,3 -6,5 -7,16 -1,33 5,15 13,24 21,25 6,0 11,-2 15,-6 5,-6 7,-8 9,-7 1,0 0,4 -3,12 -6,11 -14,17 -22,17 z m 126,0 c -10,0 -16,-6 -22,-16 -3,-6 -5,-12 -5,-13 1,-2 3,-1 9,4 12,15 23,12 32,-6 8,-18 11,-31 6,-40 -2,-4 -7,-6 -17,-6 -8,2 -13,0 -13,-1 -1,-1 3,-4 8,-6 12,-8 23,-7 31,2 6,5 8,11 8,18 0,3 -1,8 -2,15 -3,7 -4,13 -7,20 -2,7 -4,12 -7,16 -5,8 -12,13 -21,13 z m -62,-31 c -5,0 -8,0 -13,-1 -11,-4 -18,-9 -23,-19 -4,-9 -4,-19 -1,-29 2,-10 9,-17 18,-21 5,-3 10,-5 13,-5 3,-1 7,-1 11,0 3,1 7,3 11,5 18,11 23,26 18,43 -6,18 -17,27 -34,27 z m 3,-9 c 6,-2 12,-6 16,-10 5,-4 6,-11 6,-19 0,-11 -5,-19 -12,-24 -9,-6 -18,-6 -28,-1 -3,2 -6,5 -9,8 -2,3 -3,6 -4,8 -1,3 -1,6 -1,9 0,5 1,8 2,10 2,3 6,7 8,10 3,2 5,4 8,7 2,1 4,2 7,2 z m -62,-51 c -7,0 -13,-2 -20,-6 -5,-5 -9,-10 -9,-15 0,-6 4,-13 11,-21 7,-7 16,-14 26,-21 9,-5 16,-9 23,-9 4,0 8,2 11,3 2,2 6,4 8,6 4,7 6,14 4,20 l -6,14 c -2,0 -2,-2 -2,-7 0,-10 -3,-17 -11,-19 -6,-3 -15,-1 -25,6 -12,6 -19,14 -20,22 -2,8 1,15 9,22 l 12,5 z m 114,-4 c 6,-4 11,-8 13,-13 1,-7 -3,-15 -12,-24 -12,-11 -22,-16 -31,-16 -8,1 -12,6 -13,17 l -1,7 c -3,10 -6,10 -8,-2 -3,-13 -2,-22 4,-29 11,-11 27,-10 48,5 8,6 16,13 22,22 6,7 9,14 6,20 -3,12 -12,17 -27,17 H 511 Z M 272,223 c 23,0 45,-6 69,-17 40,-21 66,-51 79,-91 13,-40 11,-80 -7,-117 -19,-39 -50,-65 -93,-80 -30,-10 -60,-11 -90,-2 -39,11 -69,34 -90,70 -22,34 -28,71 -20,111 6,33 21,60 46,82 23,22 51,36 83,42 9,1 17,2 23,2 z m 386,0 c 11,0 24,-2 35,-5 11,-3 22,-7 35,-12 30,-15 53,-37 67,-65 16,-29 21,-56 19,-86 -1,-29 -12,-56 -31,-83 -19,-25 -44,-43 -77,-54 -30,-10 -59,-11 -88,-2 -40,11 -71,34 -92,70 -22,34 -29,71 -20,111 7,33 22,61 45,83 25,22 52,36 85,41 8,1 16,2 22,2 z m -4,-31 c -18,-1 -33,-5 -47,-9 -35,-17 -58,-42 -69,-78 -10,-30 -9,-62 5,-93 6,-12 14,-24 25,-34 11,-11 22,-20 34,-25 12,-7 26,-10 40,-13 14,-2 29,-2 43,2 34,8 62,27 80,58 20,30 26,62 17,95 -10,40 -33,69 -70,86 -12,6 -29,10 -51,11 z m -386,-1 c -19,0 -34,-4 -47,-8 -34,-17 -59,-42 -71,-78 -10,-30 -8,-62 7,-93 12,-25 32,-45 58,-59 28,-14 55,-17 84,-11 22,5 42,15 58,30 17,17 29,36 36,58 7,22 7,43 2,65 -10,40 -33,69 -68,86 -14,6 -32,10 -55,10 z m 3,-10 c 36,0 64,-12 85,-37 23,-24 34,-52 32,-86 -2,-33 -15,-60 -39,-81 -16,-12 -34,-21 -54,-24 -21,-5 -41,-4 -59,3 -31,10 -54,30 -70,61 -4,0 -5,4 -6,13 l -2,12 v 23 c 0,21 2,36 6,47 4,11 13,24 25,36 9,9 17,15 25,21 8,4 16,7 24,10 9,1 20,2 33,2 z m 386,0 c 21,0 38,-2 50,-7 11,-5 24,-15 37,-30 22,-24 33,-52 31,-86 -1,-33 -14,-60 -41,-81 -13,-12 -30,-21 -51,-24 -21,-5 -41,-4 -60,3 -31,10 -55,30 -72,61 -1,5 -3,8 -4,13 -1,3 -1,7 -2,12 0,5 -1,13 -1,23 0,14 1,27 3,35 2,9 6,18 10,25 3,7 10,15 18,23 l 10,10 c 0,1 2,3 8,6 l 9,6 9,4 c -1,1 2,2 10,4 l 12,1 12,2 c 5,0 8,0 12,0 z M 274,166 c -4,0 -8,-1 -14,-2 -22,-1 -33,-9 -33,-24 l 5,-12 c 7,-14 13,-19 15,-12 0,2 0,4 -3,7 -7,6 -6,14 3,24 2,3 11,5 24,5 10,0 18,-1 24,-3 5,-3 8,-7 9,-11 2,-5 0,-10 -4,-17 l -4,-7 c 0,-3 4,0 12,7 12,12 13,23 4,34 -3,3 -5,4 -9,6 -3,1 -7,2 -12,3 -5,1 -11,2 -17,2 z m 378,0 c -1,0 -4,-1 -6,-2 -21,-1 -32,-9 -32,-24 l 4,-12 c 8,-14 14,-19 16,-12 0,1 0,2 -1,3 0,2 -1,3 -2,4 -2,3 -5,6 -3,10 0,5 2,9 5,14 3,3 12,5 24,5 10,0 18,-1 23,-3 6,-3 9,-7 10,-11 1,-5 0,-10 -4,-17 -3,-3 -4,-6 -4,-7 1,-3 5,0 14,7 3,4 6,7 8,11 2,5 2,8 1,11 -1,5 -4,8 -7,12 -5,7 -18,11 -36,11 v 0 z M 210,135 c -3,0 -5,-2 -8,-3 -17,-6 -27,-24 -29,-53 -1,-7 -1,-13 0,-16 1,-3 2,-7 5,-10 2,-2 5,-3 10,-4 4,-2 10,-2 14,0 4,1 9,2 12,4 l 8,8 -10,-1 c -18,-4 -27,1 -27,13 0,9 3,16 6,24 3,9 8,14 11,18 4,3 11,4 19,2 2,-2 4,-3 6,-6 4,-1 5,-2 5,-3 l 2,-3 c 2,2 1,6 -4,14 -5,8 -9,13 -14,16 z m 511,0 c -3,0 -6,-2 -10,-4 -3,-2 -6,-5 -10,-11 -4,-5 -5,-10 -5,-12 0,-3 2,-2 6,2 6,5 10,8 15,9 4,1 8,0 12,-2 3,-2 7,-9 11,-20 3,-10 5,-18 5,-22 -2,-3 -2,-6 0,-7 2,-1 0,-3 -3,-5 l -5,-3 -7,-2 c -1,0 -4,0 -7,0 -2,0 -4,2 -6,2 -8,0 -8,-4 3,-8 13,-8 24,-7 33,3 5,3 7,10 7,19 0,9 -4,19 -8,31 -9,21 -19,30 -31,30 z m -386,0 c -2,0 -4,-2 -6,-2 -2,-1 -4,-1 -6,-2 -1,-1 -2,-2 -4,-4 -1,-1 -2,-4 -4,-7 -4,-5 -6,-10 -6,-12 -1,-3 2,-2 8,2 5,5 10,8 13,9 3,1 8,0 11,-2 4,-3 9,-10 13,-20 3,-10 6,-18 6,-23 0,-6 -3,-10 -7,-13 -4,-4 -10,-5 -17,-4 -3,1 -4,3 -5,3 -9,0 -8,-4 2,-8 13,-8 24,-7 33,3 5,3 7,10 7,19 -1,9 -3,19 -7,31 -10,21 -20,30 -31,30 z m 262,0 c -3,0 -5,-2 -7,-3 -18,-6 -28,-25 -31,-53 0,-7 1,-13 1,-16 0,-3 2,-7 4,-10 4,-4 9,-6 17,-6 8,0 15,2 20,6 l 8,8 -11,-1 c -17,-4 -25,1 -25,13 0,4 0,9 2,12 1,4 2,9 4,12 1,4 2,8 4,11 2,3 4,6 6,8 1,2 3,3 7,3 h 4 l 7,-2 c 6,-3 9,-7 11,-10 1,-2 2,-3 3,-2 2,1 2,3 0,7 -2,5 -6,9 -9,14 -3,4 -7,7 -10,9 z M 271,104 c -5,0 -10,-1 -14,-3 -5,-2 -9,-4 -12,-7 -3,-4 -6,-8 -8,-12 -2,-4 -3,-8 -3,-13 0,-4 1,-9 3,-14 1,-4 4,-9 7,-13 4,-6 10,-10 15,-12 6,-1 12,-2 18,-1 7,1 12,3 19,7 12,9 16,22 12,38 -5,16 -15,26 -29,30 z m 386,0 c -9,0 -17,-4 -24,-10 -8,-7 -11,-15 -12,-25 0,-8 3,-17 10,-27 8,-8 15,-12 24,-13 9,-1 18,1 27,7 12,9 16,22 13,38 -4,16 -13,26 -29,30 z M 271,95 c 7,0 14,-3 20,-8 11,-11 12,-22 5,-35 -9,-13 -20,-17 -35,-11 -7,3 -13,9 -16,19 -3,8 -2,15 3,20 4,5 7,8 11,10 4,3 8,5 12,5 z m 387,0 c 7,0 13,-3 19,-8 11,-11 12,-22 5,-35 -8,-13 -19,-17 -32,-11 -8,3 -14,9 -17,19 -3,8 -2,16 3,22 3,4 6,7 10,10 4,2 8,3 12,3 z M 605,47 c -4,0 -8,-1 -14,-3 -6,-3 -12,-7 -14,-12 -4,-4 -5,-9 -2,-14 1,-5 4,-10 10,-17 4,-5 12,-12 20,-18 20,-14 36,-14 46,-2 5,7 6,13 5,20 -2,8 -4,13 -6,14 l -2,-7 c 0,-7 -2,-12 -7,-17 -5,-4 -9,-5 -15,-3 0,-2 -3,-1 -10,4 l -11,8 -8,9 c -4,3 -6,5 -6,8 -2,9 1,17 12,20 1,2 4,3 6,4 4,4 3,6 -4,6 z m -385,0 c -3,0 -5,-1 -7,-1 -3,-1 -6,-1 -9,-2 -14,-7 -20,-15 -16,-26 2,-11 13,-22 32,-36 19,-13 35,-13 44,-1 4,7 6,13 5,20 l -5,14 -4,-7 c 0,-7 -2,-12 -5,-17 -5,-4 -10,-5 -16,-3 -6,1 -13,4 -21,11 -7,7 -12,12 -14,18 0,3 0,5 1,8 0,4 1,6 4,8 2,2 4,3 7,4 2,2 4,3 5,4 6,4 5,6 -1,6 z m 101,-2 c 0,-1 2,-3 7,-8 21,-7 19,-20 -4,-39 -11,-8 -21,-11 -27,-10 -8,2 -12,8 -12,20 -1,3 -3,6 -4,9 -1,0 -3,-3 -4,-8 -2,-7 -2,-13 -2,-17 1,-4 3,-9 6,-12 12,-12 29,-10 52,9 13,9 20,18 23,24 2,8 1,15 -3,20 -2,3 -7,6 -12,9 -5,2 -9,3 -13,3 v 0 z m 388,0 c -1,-1 1,-3 7,-8 20,-7 18,-20 -4,-39 -12,-8 -22,-11 -29,-10 -8,2 -12,8 -12,20 0,3 -2,6 -3,9 -2,0 -4,-3 -4,-8 -3,-12 -2,-22 4,-29 11,-12 28,-10 52,9 3,2 8,4 10,8 3,3 6,5 8,9 2,3 3,5 4,7 3,8 3,15 -1,20 -7,8 -16,12 -28,12 z"
|
43
|
-
id="path2" />
|
44
|
-
<path
|
45
|
-
d="m 0,933 c 0,55 35,84 85,84 h 765 c 55,0 84,-34 84,-84 V -202 c 0,-55 -34,-85 -84,-85 H 84 c -55,0 -84,34 -84,84 z M 48,-203 c 0,-20 6,-36 36,-36 h 767 c 20,0 35,7 35,37 V 933 c 0,20 -6,36 -36,36 H 85 C 65,969 48,963 48,933 V -192 Z"
|
46
|
-
id="path3" />
|
47
|
-
</g>
|
48
|
-
</svg>
|
data/assets/tiles/c0s.svg
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
id="glyph8"
|
4
|
-
version="1.1"
|
5
|
-
sodipodi:docname="0S.svg"
|
6
|
-
width="100.00001"
|
7
|
-
height="71.625771"
|
8
|
-
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
13
|
-
<defs
|
14
|
-
id="defs3" />
|
15
|
-
<sodipodi:namedview
|
16
|
-
id="namedview3"
|
17
|
-
pagecolor="#ffffff"
|
18
|
-
bordercolor="#000000"
|
19
|
-
borderopacity="0.25"
|
20
|
-
inkscape:showpageshadow="2"
|
21
|
-
inkscape:pageopacity="0.0"
|
22
|
-
inkscape:pagecheckerboard="0"
|
23
|
-
inkscape:deskcolor="#d1d1d1"
|
24
|
-
inkscape:zoom="1.3966667"
|
25
|
-
inkscape:cx="92.362768"
|
26
|
-
inkscape:cy="128.52029"
|
27
|
-
inkscape:window-width="1920"
|
28
|
-
inkscape:window-height="1009"
|
29
|
-
inkscape:window-x="-8"
|
30
|
-
inkscape:window-y="-8"
|
31
|
-
inkscape:window-maximized="1"
|
32
|
-
inkscape:current-layer="glyph8" />
|
33
|
-
<g
|
34
|
-
transform="matrix(0,-0.07668712,-0.07668712,0,77.990801,71.62577)"
|
35
|
-
id="g3">
|
36
|
-
<path
|
37
|
-
fill="#ffffff"
|
38
|
-
d="m 48,-203 v 11 1125 c 0,30 17,36 37,36 h 765 c 30,0 36,-16 36,-36 V -202 c 0,-30 -15,-37 -35,-37 H 84 c -30,0 -36,16 -36,36 z"
|
39
|
-
id="path1" />
|
40
|
-
<path
|
41
|
-
fill="#e5007f"
|
42
|
-
d="m 229,894 c 36,0 59,-2 71,-5 11,-5 18,-14 20,-26 2,-18 -4,-31 -19,-41 L 286,812 V 703 l 12,-14 c 21,-26 20,-49 -1,-68 -4,-5 -8,-9 -9,-16 -1,-6 -2,-23 -2,-49 v -57 l 15,-11 c 9,-6 15,-13 17,-15 1,-2 2,-8 2,-16 0,-7 0,-11 -1,-13 -1,-5 -5,-8 -11,-12 L 298,422 H 163 l -12,10 c -7,6 -11,14 -12,25 1,8 2,14 4,16 1,2 6,9 15,15 l 14,11 v 57 c 0,26 0,43 -2,48 0,8 -2,12 -6,17 -10,8 -16,19 -16,31 -2,12 4,24 15,37 l 9,13 v 110 l -14,10 c -14,10 -19,23 -17,41 0,9 3,16 10,20 5,3 14,7 25,9 12,1 29,2 53,2 z m 479,0 c 23,0 41,-1 53,-2 20,-2 32,-12 35,-29 3,-18 -3,-31 -17,-41 L 764,812 V 702 l 11,-13 c 22,-26 20,-49 -1,-68 -5,-5 -6,-9 -8,-17 -1,-5 -2,-22 -2,-48 v -57 l 14,-11 c 4,-5 9,-8 10,-7 3,0 5,-2 7,-8 l 2,-6 v -10 c 0,-10 -4,-19 -11,-25 L 774,422 H 639 l -12,10 -4,4 -2,3 -5,11 c 0,1 -1,5 -1,7 0,8 1,14 5,16 2,2 8,8 16,15 l 13,11 v 57 c 0,26 0,43 -1,48 0,8 -2,12 -8,17 -8,8 -14,19 -15,31 0,12 4,24 14,37 l 10,13 v 110 l -14,10 c -14,10 -22,23 -18,41 2,9 6,16 10,20 7,3 15,7 27,9 10,1 29,2 54,2 z M 218,844 v -60 c -1,-42 -1,-63 0,-67 3,-1 4,-2 6,-3 2,-1 3,-1 5,0 h 12 v 130 z m 478,0 -1,-60 c -1,-42 0,-63 1,-67 2,-2 6,-3 12,-3 h 10 V 844 Z M 471,757 c 9,0 17,-3 25,-6 8,-5 13,-11 19,-19 4,-7 6,-16 6,-27 0,-13 -5,-23 -12,-32 -8,-9 -16,-14 -27,-17 -11,-2 -22,-1 -34,4 -19,8 -28,24 -27,45 0,23 9,37 27,46 3,1 7,3 11,5 4,1 8,1 12,1 z M 229,681 c -4,0 -6,-1 -8,-3 -3,-3 -3,-7 -3,-17 -1,-9 -2,-14 -1,-18 0,-5 4,-8 5,-10 2,-1 5,-2 7,-1 7,0 10,1 11,4 1,2 1,9 1,21 v 24 z m 479,0 c -6,0 -10,-1 -11,-3 -1,-2 -2,-7 -2,-17 0,-12 1,-21 2,-24 2,-4 5,-6 11,-5 2,4 5,4 6,1 1,-2 3,-1 3,4 l 1,6 v 38 z M 218,600 v -60 c -1,-42 -1,-65 0,-68 3,-2 6,-3 11,-2 l 12,1 v 129 z m 478,0 -1,-60 c -1,-42 0,-65 1,-68 1,-2 5,-3 12,-2 l 10,1 v 129 z m -226,-3 c 35,0 59,-1 70,-6 11,-3 17,-11 18,-24 5,-17 -1,-33 -15,-40 L 528,516 V 406 l 10,-13 c 20,-26 21,-49 -2,-69 -4,-4 -7,-9 -7,-15 -1,-6 -1,-23 -1,-49 v -57 l 13,-10 c 9,-7 14,-12 16,-15 4,-2 5,-9 5,-19 0,-7 -5,-16 -12,-25 L 538,124 H 403 l -11,10 c -9,9 -12,18 -12,25 0,10 1,17 2,19 1,3 8,9 18,15 l 14,10 v 57 c 0,26 -2,43 -3,49 -1,6 -3,12 -6,15 -23,21 -24,43 -3,69 l 12,13 v 110 l -16,11 c -15,7 -19,23 -17,40 2,13 10,21 19,24 11,5 34,6 70,6 z m -11,-49 -1,-61 v -43 c 0,-15 0,-21 1,-22 1,-4 6,-5 12,-4 l 10,2 v 128 z m 11,-161 c -5,0 -7,-1 -9,-4 -1,-2 -2,-8 -3,-17 -1,-13 -1,-21 1,-26 1,-4 6,-5 12,-4 8,2 10,10 10,26 v 25 z m -11,-82 -1,-63 c -1,-40 0,-62 1,-65 1,-4 6,-6 12,-4 l 10,3 v 129 z m -230,-2 c 36,0 59,-2 71,-6 11,-4 18,-12 20,-25 2,-19 -4,-32 -19,-43 l -15,-9 V 111 l 12,-14 c 10,-12 14,-24 14,-36 -1,-12 -5,-22 -15,-32 -5,-5 -8,-10 -9,-16 -1,-5 -2,-22 -2,-49 v -56 l 15,-10 c 9,-8 15,-12 17,-16 1,-4 2,-9 2,-18 0,-3 0,-6 -1,-10 0,-2 -1,-4 -3,-6 -2,-3 -4,-7 -8,-9 l -19,-10 H 154 l -3,10 c -2,7 -8,9 -10,12 -1,3 -2,7 -2,13 1,9 2,14 4,18 1,4 5,9 15,16 l 14,10 v 56 c 0,27 0,44 -2,49 0,6 -1,11 -6,16 -10,10 -16,20 -16,32 -2,12 4,24 15,36 l 9,14 v 109 l -14,9 c -10,6 -14,12 -16,19 -2,5 -3,14 -1,24 0,3 1,5 2,8 0,2 1,5 2,6 3,2 4,5 7,6 2,2 4,4 8,5 4,1 7,1 12,2 5,0 9,1 15,1 5,1 12,1 18,3 8,0 17,0 24,0 z m 479,0 c 23,-2 41,-3 53,-3 20,-2 32,-12 35,-28 3,-19 -3,-32 -17,-43 l -15,-9 V 111 l 11,-14 c 10,-12 13,-24 13,-36 0,-12 -4,-23 -14,-32 -5,-5 -6,-10 -8,-16 -1,-5 -2,-22 -2,-49 v -56 l 14,-10 c 10,-7 15,-12 17,-16 2,-4 2,-9 2,-18 0,-9 -4,-16 -11,-25 l -21,-10 H 630 l -3,10 c -6,9 -12,15 -12,25 0,6 1,10 1,12 1,1 2,3 4,6 2,2 3,5 4,7 2,3 5,5 12,9 l 13,10 v 56 c 0,27 0,44 -1,49 0,6 -2,11 -8,16 -8,9 -14,20 -15,32 0,12 4,24 14,36 l 10,14 v 109 l -14,9 c -9,7 -13,12 -15,19 -5,5 -6,14 -3,24 2,8 6,15 10,20 7,4 15,7 27,8 10,3 29,3 54,3 z M 218,251 v -59 c -1,-41 -1,-63 0,-68 3,-3 6,-4 11,-3 l 12,2 v 128 z m 478,0 -1,-59 c -1,-41 0,-63 1,-68 1,-3 5,-4 12,-3 l 10,2 V 251 Z M 229,90 c -4,0 -7,-2 -8,-4 -3,-1 -3,-6 -3,-15 -1,-14 -1,-23 0,-26 4,-5 7,-6 11,-5 5,0 7,0 7,0 1,2 1,2 2,3 1,0 2,2 2,4 0,2 0,4 0,7 1,3 1,6 1,10 v 26 z m 479,0 c -6,0 -10,-2 -11,-4 -1,-1 -2,-6 -2,-15 0,-14 0,-23 2,-26 1,-5 5,-7 11,-5 5,1 9,3 9,6 1,2 1,8 1,18 V 90 Z M 218,8 v -61 c -1,-39 -1,-61 0,-65 3,-2 4,-4 6,-4 2,-1 3,-1 5,-1 l 12,1 V 8 Z m 478,0 -1,-61 c -1,-39 0,-61 1,-65 0,-2 1,-4 3,-4 3,-1 6,-1 9,-1 l 10,1 V 8 Z"
|
43
|
-
id="path2" />
|
44
|
-
<path
|
45
|
-
d="m 0,933 c 0,55 35,84 85,84 h 765 c 55,0 84,-34 84,-84 V -202 c 0,-55 -34,-85 -84,-85 H 84 c -55,0 -84,34 -84,84 z M 48,-203 c 0,-20 6,-36 36,-36 h 767 c 20,0 35,7 35,37 V 933 c 0,20 -6,36 -36,36 H 85 C 65,969 48,963 48,933 V -192 Z"
|
46
|
-
id="path3" />
|
47
|
-
</g>
|
48
|
-
</svg>
|
data/assets/tiles/c1m.svg
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
id="glyph10"
|
4
|
-
version="1.1"
|
5
|
-
sodipodi:docname="1m.svg"
|
6
|
-
width="100.00001"
|
7
|
-
height="71.625771"
|
8
|
-
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
13
|
-
<defs
|
14
|
-
id="defs3" />
|
15
|
-
<sodipodi:namedview
|
16
|
-
id="namedview3"
|
17
|
-
pagecolor="#ffffff"
|
18
|
-
bordercolor="#000000"
|
19
|
-
borderopacity="0.25"
|
20
|
-
inkscape:showpageshadow="2"
|
21
|
-
inkscape:pageopacity="0.0"
|
22
|
-
inkscape:pagecheckerboard="0"
|
23
|
-
inkscape:deskcolor="#d1d1d1"
|
24
|
-
inkscape:zoom="1.9751849"
|
25
|
-
inkscape:cx="184.79282"
|
26
|
-
inkscape:cy="40.249396"
|
27
|
-
inkscape:window-width="1920"
|
28
|
-
inkscape:window-height="1009"
|
29
|
-
inkscape:window-x="-8"
|
30
|
-
inkscape:window-y="-8"
|
31
|
-
inkscape:window-maximized="1"
|
32
|
-
inkscape:current-layer="glyph10" />
|
33
|
-
<g
|
34
|
-
transform="matrix(0,-0.07668712,-0.07668712,0,77.990801,71.62577)"
|
35
|
-
id="g3">
|
36
|
-
<path
|
37
|
-
fill="#ffffff"
|
38
|
-
d="m 48,-203 v 11 1125 c 0,30 17,36 37,36 h 765 c 30,0 36,-16 36,-36 V -202 c 0,-30 -15,-37 -35,-37 H 84 c -30,0 -36,16 -36,36 z"
|
39
|
-
id="path1" />
|
40
|
-
<path
|
41
|
-
d="m 629,783 c 5,-1 9,-1 9,-1 0,1 3,1 9,0 l 10,-2 10,-2 11,-3 19,-6 c 3,-1 7,-2 10,-5 2,-1 6,-2 10,-3 17,-8 29,-15 40,-26 11,-11 15,-21 15,-32 0,-22 -14,-35 -42,-42 -21,-6 -40,-1 -54,9 -11,8 -22,12 -35,14 -11,4 -27,5 -46,5 -19,0 -37,-2 -55,-6 -19,-5 -61,-14 -127,-33 -46,-13 -82,-22 -104,-27 -23,-6 -43,-9 -61,-10 -15,0 -28,1 -36,5 -22,5 -36,15 -42,29 -3,7 -4,13 0,20 6,11 24,15 50,11 18,-5 38,-6 59,-5 20,3 42,6 62,12 21,7 50,18 87,32 7,3 18,8 30,13 13,6 25,10 34,15 23,9 43,18 59,25 11,5 22,9 33,10 11,2 24,3 36,3 z M 0,933 c 0,55 35,84 85,84 h 765 c 55,0 84,-34 84,-84 V -202 c 0,-55 -34,-85 -84,-85 H 84 c -55,0 -84,34 -84,84 z M 48,-203 c 0,-20 6,-36 36,-36 h 767 c 20,0 35,7 35,37 V 933 c 0,20 -6,36 -36,36 H 85 C 65,969 48,963 48,933 V -192 Z"
|
42
|
-
id="path2" />
|
43
|
-
<path
|
44
|
-
fill="#e5007f"
|
45
|
-
d="m 528,510 c 3,0 7,-1 10,-4 3,-3 7,-7 9,-10 3,-5 7,-10 10,-15 2,-6 4,-11 5,-17 1,-6 1,-14 1,-19 0,-6 -2,-17 -5,-30 -7,-24 -8,-37 -6,-40 2,-2 17,-3 44,-2 92,7 143,6 151,-1 4,-3 6,-9 6,-13 0,-5 -2,-9 -6,-13 -7,-7 -14,-10 -20,-12 -7,-2 -16,-4 -29,-5 -13,-1 -34,-3 -65,-4 l -81,-3 -35,-12 c -73,-29 -118,-45 -138,-50 -20,-5 -45,-7 -76,-9 -36,0 -58,2 -68,4 -10,2 -20,6 -27,14 -5,3 -7,6 -9,8 -1,2 -2,4 -4,8 -2,3 -2,6 -2,10 0,9 4,16 10,19 6,3 28,1 64,-8 40,-8 77,-11 107,-8 7,1 14,2 17,4 3,1 4,4 5,8 8,13 4,24 -13,29 -7,4 -12,7 -13,10 -1,2 7,13 21,34 6,9 12,18 19,28 6,8 11,15 14,19 4,7 6,10 9,12 2,3 3,4 5,5 2,1 6,1 11,1 8,1 13,-1 17,-9 2,-4 4,-10 5,-15 1,-6 1,-12 1,-22 -1,-8 -3,-18 -6,-29 -7,-28 -6,-41 -2,-41 2,0 4,4 7,11 10,28 17,48 21,59 4,11 4,20 3,25 -1,7 -6,13 -13,21 l -11,14 25,23 c 18,18 28,25 32,25 z m 38,-227 c 12,0 20,-2 25,-4 2,-3 5,-9 5,-18 0,-7 -3,-28 -8,-63 -3,-36 -5,-68 -5,-94 0,-23 1,-36 3,-39 4,-3 14,-7 32,-9 38,-4 74,-13 104,-29 30,-18 47,-34 52,-52 3,-24 -1,-42 -16,-55 -6,-5 -18,-12 -31,-20 -15,-6 -30,-14 -44,-19 -17,-7 -31,-10 -42,-12 -44,-8 -78,-6 -100,7 -15,8 -25,15 -33,18 -5,4 -12,10 -21,18 -9,9 -16,14 -17,14 -3,0 -11,-3 -24,-8 -36,-14 -60,-16 -67,-8 -7,9 -11,6 -11,-8 0,-6 0,-11 -1,-15 -1,-5 -2,-9 -6,-12 -1,-3 -3,-5 -4,-6 -3,-2 -8,0 -13,1 -7,1 -15,14 -24,39 -9,20 -14,31 -17,33 -3,2 -13,2 -29,0 -5,-1 -9,-1 -14,-1 -5,1 -10,1 -14,4 -5,3 -11,8 -21,16 -10,7 -18,16 -26,24 -9,10 -12,15 -13,20 -1,4 -2,7 -1,9 0,3 3,4 8,5 6,1 12,1 20,0 9,-1 20,-2 35,-5 23,-2 36,-2 38,-1 1,1 0,11 -4,31 -5,20 -7,40 -7,60 0,15 1,22 2,26 0,3 4,5 7,5 6,5 11,6 19,5 2,-2 4,-5 7,-7 1,-3 3,-9 5,-15 2,-9 6,-21 10,-41 4,-18 7,-34 11,-47 l 4,-20 20,3 c 12,2 21,4 31,8 5,2 10,5 11,6 2,2 2,9 2,20 0,12 0,18 -1,19 -1,2 -3,2 -7,1 -4,-1 -8,-1 -13,-1 -2,0 -5,-4 -7,-11 -3,-11 -8,-15 -16,-13 -6,2 -12,10 -15,24 -6,15 -9,33 -11,55 -3,22 -5,43 -5,62 0,19 3,32 5,40 2,7 4,10 8,11 3,1 10,2 24,3 15,1 34,6 55,13 63,22 112,33 145,33 z m -54,-53 c -7,0 -16,-3 -29,-5 l -19,-3 v -33 l 19,3 c 13,1 21,3 25,5 5,3 6,6 6,10 l 3,15 c 1,4 -1,8 -5,8 z M 407,209 c -8,0 -15,-2 -21,-6 -6,-4 -9,-9 -10,-13 -2,-4 1,-9 5,-14 2,-2 8,-2 14,-1 7,1 10,3 13,6 3,4 4,9 3,16 0,8 -1,12 -4,12 z m 105,-41 c -6,0 -15,-1 -28,-4 -13,-4 -21,-7 -22,-7 -1,-1 -2,-3 -3,-6 -1,-4 -1,-7 -1,-11 v -15 l 14,1 c 4,2 9,3 14,4 7,1 10,2 14,3 5,2 7,3 8,7 1,1 4,5 4,12 z M 393,143 c -1,0 -3,0 -4,-1 -7,-1 -10,-2 -11,-6 -1,-1 -2,-5 -2,-13 0,-6 3,-13 7,-15 7,0 11,1 13,4 5,5 8,8 9,14 2,6 2,9 -1,14 -1,1 -2,2 -2,2 -1,1 -3,1 -6,1 z M 506,92 c -2,0 -5,0 -9,-1 -3,0 -8,0 -12,-1 -4,0 -9,-1 -13,-3 -4,-1 -8,-2 -11,-2 -2,-1 -3,-2 -4,-4 0,0 -1,-3 -1,-8 -1,-5 -1,-10 -1,-15 0,-12 1,-18 3,-19 2,-1 10,0 25,3 6,1 11,2 15,3 5,2 8,4 9,5 5,1 6,8 5,22 0,14 -4,20 -6,20 z m 77,-78 c 0,-7 1,-18 4,-33 4,-16 5,-25 5,-30 -1,-7 -4,-12 -9,-18 l -10,-12 13,4 c 4,0 10,1 18,4 7,3 17,6 25,9 23,10 39,17 46,24 8,5 10,15 8,26 -1,7 -2,10 -6,13 -2,4 -5,7 -11,12 -6,5 -14,7 -19,9 -5,1 -16,2 -30,4 l -34,1 z m -80,8 c -1,0 -2,0 -5,0 -1,-1 -3,-2 -5,-3 -9,-2 -18,-6 -29,-9 -11,-2 -15,-6 -15,-12 -2,-3 -2,-7 1,-11 2,-2 6,-3 9,-3 1,0 3,0 5,1 2,1 6,2 10,4 5,2 8,5 12,7 12,5 19,10 22,12 4,4 4,8 -1,11 z m -106,-38 -7,-3 c -2,-2 -8,-2 -14,-5 -17,-7 -22,-19 -18,-33 l 4,-10 14,10 c 7,9 13,12 16,12 2,0 4,1 7,4 3,2 5,4 6,7 2,5 3,7 3,10 0,5 0,7 -1,8 0,1 -2,1 -4,1 z m 103,-33 c -9,-4 -15,-9 -13,-14 2,-6 8,-11 19,-15 0,-1 3,-1 12,-2 h 11 8 c 0,1 -6,8 -16,18 -7,7 -14,13 -17,13 z"
|
46
|
-
id="path3" />
|
47
|
-
</g>
|
48
|
-
</svg>
|
data/assets/tiles/c1p.svg
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
id="glyph12"
|
4
|
-
version="1.1"
|
5
|
-
sodipodi:docname="1p.svg"
|
6
|
-
width="100.00001"
|
7
|
-
height="71.625771"
|
8
|
-
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
13
|
-
<defs
|
14
|
-
id="defs4" />
|
15
|
-
<sodipodi:namedview
|
16
|
-
id="namedview4"
|
17
|
-
pagecolor="#ffffff"
|
18
|
-
bordercolor="#000000"
|
19
|
-
borderopacity="0.25"
|
20
|
-
inkscape:showpageshadow="2"
|
21
|
-
inkscape:pageopacity="0.0"
|
22
|
-
inkscape:pagecheckerboard="0"
|
23
|
-
inkscape:deskcolor="#d1d1d1"
|
24
|
-
inkscape:zoom="3.23"
|
25
|
-
inkscape:cx="48.142415"
|
26
|
-
inkscape:cy="48.142415"
|
27
|
-
inkscape:window-width="1920"
|
28
|
-
inkscape:window-height="1009"
|
29
|
-
inkscape:window-x="-8"
|
30
|
-
inkscape:window-y="-8"
|
31
|
-
inkscape:window-maximized="1"
|
32
|
-
inkscape:current-layer="glyph12" />
|
33
|
-
<g
|
34
|
-
transform="matrix(0,-0.07668712,-0.07668712,0,77.990801,71.62577)"
|
35
|
-
id="g4">
|
36
|
-
<path
|
37
|
-
d="M 0,933 V -203 c 0,-50 29,-84 84,-84 h 766 c 50,0 84,30 84,85 V 933 c 0,50 -29,84 -84,84 H 85 C 35,1017 0,988 0,933 Z M 48,-203 v 11 1125 c 0,30 17,36 37,36 h 765 c 30,0 36,-16 36,-36 V -202 c 0,-30 -15,-37 -35,-37 H 84 c -30,0 -36,16 -36,36 z"
|
38
|
-
id="path1" />
|
39
|
-
<path
|
40
|
-
fill="#ffffff"
|
41
|
-
d="m 48,-203 c 0,-20 6,-36 36,-36 h 767 c 20,0 35,7 35,37 V 933 c 0,20 -6,36 -36,36 H 85 C 65,969 48,963 48,933 V -192 Z"
|
42
|
-
id="path2" />
|
43
|
-
<path
|
44
|
-
d="m 465,689 h -1 c -13,0 -23,0 -34,-1 -46,-7 -87,-20 -122,-41 -16,-10 -30,-20 -44,-32 -15,-13 -28,-26 -40,-39 -12,-15 -23,-30 -31,-46 -9,-14 -18,-33 -25,-57 -9,-24 -13,-46 -16,-64 -3,-22 -4,-44 -2,-67 2,-22 8,-45 14,-69 8,-23 18,-44 29,-62 21,-37 48,-67 83,-93 34,-25 71,-43 111,-53 v -1 c 52,-13 105,-13 160,0 55,14 104,43 146,85 43,43 70,91 83,146 11,52 10,104 -2,155 -10,40 -27,76 -52,110 -24,33 -54,62 -89,84 -51,31 -106,45 -168,45 z m 2,-29 c 33,0 66,-5 97,-16 30,-11 59,-28 86,-49 26,-22 48,-47 66,-77 20,-34 33,-70 37,-110 6,-40 2,-78 -9,-116 -11,-38 -29,-73 -56,-105 -16,-21 -38,-40 -67,-58 -28,-17 -55,-29 -82,-36 -7,-3 -20,-4 -35,-6 -14,-1 -29,-2 -42,-2 -12,-1 -23,-1 -31,0 -32,7 -61,16 -89,30 -28,13 -52,29 -73,49 -21,19 -38,42 -54,69 -14,25 -25,54 -31,86 -7,33 -7,66 -1,100 7,34 18,65 34,94 16,29 37,55 63,78 27,23 55,40 87,51 32,12 65,18 100,18 z m 0,-7 c -11,0 -23,-1 -35,-4 -39,-5 -75,-17 -107,-36 -32,-18 -59,-42 -81,-72 -21,-29 -37,-63 -46,-100 -6,-23 -9,-49 -8,-76 1,-47 12,-88 31,-122 21,-40 50,-73 87,-99 36,-26 75,-41 116,-47 60,-8 116,1 169,26 70,36 117,93 143,171 5,17 8,42 8,79 0,36 -2,61 -7,76 -8,26 -19,52 -36,76 -16,24 -34,44 -53,60 -51,45 -112,67 -181,68 z m -3,-17 h 7 c 4,-1 8,-2 10,-3 2,-2 4,-5 6,-8 2,-4 3,-9 3,-15 1,-6 1,-15 0,-25 0,-14 -1,-23 -3,-26 -1,-3 -2,-6 -5,-6 -2,-1 -3,0 -3,4 l -1,27 c 0,9 -2,17 -2,21 -1,6 -1,9 -2,12 0,3 -1,5 -2,6 -5,4 -10,1 -12,-10 l -1,-25 c 0,-24 -2,-35 -7,-36 -1,0 -1,0 -2,1 -1,0 -2,2 -2,5 -1,2 -1,5 -1,10 v 37 l 1,12 2,10 3,6 c 3,3 5,4 6,2 1,-1 3,-1 5,1 z m 79,-9 c 5,0 10,-2 15,-7 6,-5 8,-9 8,-15 0,-1 -1,-3 -2,-6 0,-4 -3,-8 -4,-14 -1,-4 -3,-9 -5,-16 -8,-22 -13,-33 -16,-33 l -2,2 c -1,1 -1,4 0,9 0,4 2,10 3,17 2,7 5,17 9,29 1,5 1,8 1,11 0,3 0,6 -1,6 -6,6 -12,0 -19,-18 -2,-4 -3,-9 -4,-12 -8,-20 -12,-30 -15,-31 -5,-1 -7,0 -7,3 l 10,32 c 8,29 18,43 29,43 z m -150,-2 v 0 c 6,0 11,-2 14,-5 3,-4 7,-10 11,-21 3,-11 7,-21 10,-31 2,-11 2,-17 0,-19 -3,-5 -7,-1 -12,12 l -6,20 c -2,6 -4,10 -4,13 -1,4 -3,7 -5,9 -1,3 -3,4 -3,7 -1,1 -2,2 -3,3 -1,0 -2,0 -3,0 l -5,-3 c -2,-1 -2,-5 -1,-9 0,-5 3,-12 7,-25 7,-21 10,-32 7,-36 -1,-3 -2,-5 -5,-5 -2,-1 -3,1 -5,3 -1,3 -4,13 -9,30 -10,28 -10,46 -2,53 6,3 10,4 14,4 z m -66,-33 h 2 c 2,0 4,-1 6,-2 3,-1 5,-2 7,-5 2,-2 5,-4 8,-7 2,-5 6,-9 11,-16 17,-23 23,-35 15,-36 -2,0 -6,5 -15,14 -8,10 -15,20 -20,29 -3,5 -8,8 -12,9 -6,1 -9,0 -10,-5 -1,-3 1,-9 9,-17 18,-26 27,-39 25,-43 0,-4 -2,-5 -4,-5 -3,0 -10,9 -24,29 -14,20 -21,31 -21,33 0,3 3,8 7,14 4,5 10,8 16,8 z m 284,0 v 0 c 3,0 5,-1 8,-2 2,-1 4,-2 7,-6 7,-6 9,-12 7,-18 -2,-6 -10,-18 -23,-37 -16,-20 -24,-27 -27,-21 0,4 11,22 35,54 2,4 2,7 1,10 -3,5 -5,6 -8,6 -2,0 -11,-9 -24,-26 -17,-22 -26,-29 -29,-24 -1,1 0,5 4,11 5,7 9,14 16,22 5,9 11,15 15,20 7,8 14,11 18,11 z M 272,540 c 4,0 7,-1 9,-3 7,-3 15,-8 23,-14 9,-7 17,-14 24,-18 6,-8 8,-11 5,-12 -1,-1 -4,-1 -6,0 -4,1 -7,2 -10,4 -7,6 -17,11 -28,19 -11,8 -18,10 -22,7 -3,-4 -1,-9 7,-16 7,-6 16,-14 26,-21 10,-8 15,-13 15,-16 -1,-7 -8,-5 -23,6 -5,4 -10,8 -15,11 -5,4 -9,7 -10,9 -14,8 -19,19 -13,32 5,8 12,12 18,12 z m 394,-2 c 3,0 7,-1 10,-3 3,-2 7,-6 9,-9 2,-2 3,-7 3,-10 0,-4 -2,-9 -8,-14 -4,-5 -13,-12 -27,-24 -18,-13 -28,-16 -31,-12 -2,4 9,15 33,32 13,9 19,15 19,19 -2,9 -15,6 -38,-11 -22,-15 -33,-20 -34,-13 0,3 9,12 28,25 18,13 31,20 36,20 z m -198,-7 v -1 c 13,0 26,-1 39,-5 47,-12 80,-40 102,-83 23,-45 22,-93 -2,-140 -16,-32 -40,-55 -75,-72 -17,-8 -37,-13 -60,-14 -12,0 -22,1 -30,2 -9,1 -16,3 -24,6 -8,2 -17,5 -26,11 -17,8 -32,21 -47,40 -14,18 -24,36 -28,55 -6,23 -8,45 -5,67 3,21 11,41 22,59 12,19 27,35 45,48 8,5 18,11 28,14 10,5 20,8 31,10 10,2 20,3 30,3 z M 236,471 h 6 l 6,-1 c 20,-6 36,-9 43,-14 9,-3 13,-6 13,-9 0,-6 -4,-8 -13,-5 -4,1 -12,3 -23,8 -25,8 -38,8 -38,0 0,-2 1,-3 2,-6 1,-1 2,-2 4,-3 2,-1 5,-2 8,-2 34,-9 51,-17 49,-22 0,-5 -3,-7 -6,-6 -5,0 -15,4 -30,8 -16,7 -26,12 -32,15 -7,5 -9,10 -9,16 0,6 1,11 6,15 3,5 8,6 14,6 z m 465,-2 c 8,0 14,-4 17,-10 3,-6 3,-12 0,-18 -1,-3 -2,-6 -6,-7 -2,-2 -5,-4 -11,-6 -5,-2 -11,-5 -18,-7 -26,-10 -39,-12 -42,-9 -2,4 2,8 12,12 l 23,7 c 12,4 20,8 24,10 4,3 7,6 8,8 0,5 -2,9 -8,9 -5,0 -15,-3 -29,-8 -27,-9 -40,-10 -40,-3 0,3 9,7 24,13 17,5 30,9 40,9 z M 254,399 c 23,0 34,-1 35,-5 0,-3 1,-5 1,-6 0,-1 -1,-2 -3,-3 -3,0 -8,-1 -12,-1 -5,-1 -11,-1 -19,-1 -21,0 -32,0 -35,-2 -4,0 -5,-2 -5,-6 0,-2 0,-3 1,-6 1,-1 4,-2 7,-2 3,-1 8,-1 13,-2 6,0 12,0 22,0 20,-1 30,-3 30,-7 0,-3 -12,-5 -36,-6 -10,0 -18,-1 -25,0 -6,0 -10,1 -12,2 -2,1 -4,3 -6,5 -11,13 -10,22 2,32 5,6 20,8 42,8 z m 455,-47 c -1,0 -2,0 -3,0 -4,-1 -11,-1 -21,-1 -19,0 -30,1 -33,1 -4,1 -6,3 -6,6 0,4 2,5 6,6 3,0 13,1 28,1 22,0 36,1 38,5 5,6 2,9 -9,11 -5,2 -13,2 -26,2 -24,1 -35,3 -35,6 -1,2 -2,3 -1,3 0,2 3,2 6,3 h 56 l 11,-1 c 8,-2 10,-4 8,-7 8,-8 8,-17 0,-28 -1,-1 -2,-3 -5,-4 -1,-1 -3,-1 -6,-2 -1,0 -2,0 -3,0 z M 287,337 c 4,0 6,-2 6,-6 0,-2 -9,-6 -29,-12 -25,-7 -37,-14 -37,-19 l 3,-5 c 2,-2 5,-2 9,-2 5,1 14,4 27,7 22,8 34,10 35,6 5,-3 1,-6 -9,-11 l -24,-8 c -20,-7 -31,-9 -34,-9 -2,0 -6,1 -9,3 -3,2 -5,6 -8,9 -3,4 -4,8 -4,10 0,12 14,21 41,30 5,1 10,2 14,3 4,0 8,1 11,2 2,0 6,1 8,2 z m 359,0 c 7,0 19,-3 38,-10 18,-5 29,-9 32,-13 7,-9 7,-20 1,-31 -5,-3 -10,-5 -17,-5 -6,0 -18,3 -37,10 -20,6 -30,12 -30,15 0,1 0,2 0,2 1,1 2,1 3,1 h 5 l 7,-1 c 6,-1 10,-2 13,-3 3,-1 8,-2 16,-4 17,-6 25,-7 29,-4 7,6 2,11 -17,17 l -12,4 c -22,8 -34,14 -34,19 0,1 1,2 2,3 z M 311,283 v 0 c 1,0 2,-1 4,-3 3,-1 -2,-7 -14,-14 l -16,-12 c -16,-14 -24,-20 -24,-24 0,-3 3,-5 5,-6 2,-1 5,0 10,1 4,1 8,3 12,7 l 23,16 13,8 c 8,5 10,6 7,2 -4,-3 -3,-6 3,-3 0,-4 -7,-11 -26,-25 -8,-6 -15,-11 -20,-14 -6,-2 -10,-4 -13,-5 -5,-2 -8,-2 -11,-2 -4,2 -6,3 -8,6 -8,9 -9,19 -1,29 1,3 9,10 21,18 12,9 21,16 27,18 4,1 6,2 8,3 z m 318,0 v 0 c 1,0 10,-4 24,-15 15,-10 24,-18 29,-22 2,-2 3,-6 4,-8 1,-3 2,-6 2,-10 0,-2 -1,-5 -2,-7 -2,-4 -3,-5 -6,-6 -11,-8 -23,-6 -37,4 -10,8 -15,11 -17,14 -1,1 -5,4 -12,7 -7,5 -12,8 -12,11 0,3 1,5 2,6 3,1 4,2 6,1 2,0 4,-1 6,-2 37,-23 57,-33 60,-29 0,3 0,6 -3,9 -2,2 -11,10 -28,23 -22,17 -27,24 -16,24 z M 347,239 v 0 c 7,0 4,-10 -11,-31 l -8,-13 c -4,-5 -6,-10 -9,-14 -2,-3 -4,-7 -2,-9 4,-9 15,-1 34,23 13,19 21,26 24,23 2,-1 2,-2 2,-4 -1,-1 -2,-5 -4,-8 -2,-4 -7,-10 -10,-16 -5,-7 -9,-12 -12,-18 -5,-4 -8,-9 -10,-11 -2,-2 -8,-4 -14,-6 -7,-1 -12,-1 -15,2 -3,2 -5,6 -9,12 -2,5 -2,9 -1,12 1,2 5,6 9,13 3,7 8,13 13,20 6,7 10,13 15,18 4,5 7,7 8,7 z m 243,0 c 3,0 9,-5 17,-15 8,-11 15,-22 22,-33 6,-11 6,-22 -3,-31 -8,-11 -21,-8 -36,11 -26,33 -34,51 -24,52 l 3,-5 9,-10 c 5,-6 9,-11 11,-13 18,-25 29,-33 33,-21 1,2 -6,13 -19,32 -16,22 -21,33 -13,33 z M 395,208 h 1 c 1,0 2,-1 3,-2 1,0 1,-2 1,-5 0,-3 0,-7 -2,-11 -1,-5 -3,-10 -6,-18 -3,-8 -4,-14 -6,-18 -1,-3 -2,-6 -3,-10 0,-3 0,-4 0,-5 1,-1 2,-2 4,-3 6,-7 12,-1 19,16 0,5 2,10 4,17 3,4 4,7 5,11 1,3 2,5 3,9 1,2 1,4 2,5 1,2 2,3 2,3 2,0 3,1 3,1 3,0 5,-3 5,-7 0,-4 -2,-10 -5,-20 -3,-9 -6,-19 -10,-27 -4,-8 -6,-15 -8,-17 -1,-1 -3,-2 -7,-5 -2,-1 -5,-2 -10,-2 -3,0 -6,1 -8,2 -3,0 -5,3 -7,5 -2,2 -3,5 -4,10 0,5 0,12 2,20 1,7 4,15 8,23 2,7 4,13 6,16 l 5,10 z m 143,0 h 1 l 3,-1 c 2,-1 7,-12 14,-34 6,-22 9,-35 8,-38 -2,-5 -4,-8 -6,-10 -8,-7 -18,-8 -28,-4 -6,5 -11,14 -14,26 -3,13 -6,23 -10,32 -3,7 -4,13 -3,16 3,9 9,3 16,-16 l 4,-10 c 7,-26 14,-38 20,-38 3,0 4,0 5,2 0,2 1,4 1,7 0,3 -1,8 -2,12 -1,6 -3,12 -5,20 -8,24 -9,36 -4,36 z m -86,-13 v 0 c 1,0 2,-2 4,-8 1,-5 2,-14 2,-28 1,-18 1,-28 2,-32 0,-4 2,-6 8,-6 1,0 1,-1 2,0 1,0 2,1 2,2 1,2 2,3 2,5 1,2 1,4 2,9 0,3 2,6 2,11 0,4 0,10 1,16 0,20 1,30 3,30 2,-1 4,-13 4,-37 1,-16 1,-26 1,-31 -1,-6 -3,-10 -5,-11 -3,-4 -7,-6 -10,-7 -4,-1 -8,-1 -12,1 -3,1 -8,3 -10,7 -4,6 -7,20 -7,39 0,27 4,40 9,40 z"
|
45
|
-
id="path3" />
|
46
|
-
<path
|
47
|
-
fill="#e5007f"
|
48
|
-
d="m 470,517 c -11,0 -21,-1 -30,-3 -10,-2 -20,-5 -29,-8 -8,-4 -17,-9 -25,-15 -9,-6 -16,-13 -23,-20 -23,-26 -36,-54 -39,-87 -2,-33 7,-64 25,-92 18,-29 44,-47 77,-57 13,-3 28,-5 47,-5 19,2 34,4 46,9 34,12 58,34 75,66 18,32 22,65 16,97 -11,47 -38,80 -78,100 -18,8 -37,14 -54,15 z m 0,-23 v 0 c 15,0 27,-1 34,-3 7,-4 12,-8 15,-15 8,-12 5,-24 -8,-37 -8,-7 -12,-9 -12,-8 0,1 1,4 4,10 1,1 2,2 2,4 l 2,6 v 7 c 1,4 1,5 0,5 -1,-1 -2,1 -2,4 -1,4 -2,6 -5,6 -4,4 -15,5 -30,5 -11,0 -18,0 -22,-1 -6,-1 -9,-2 -10,-4 -11,-9 -11,-20 -2,-32 3,-6 4,-9 3,-10 -1,-1 -6,1 -12,8 -7,6 -10,12 -11,17 -2,5 -2,11 0,18 6,13 24,20 54,20 z m -78,-38 v 0 c 6,0 12,-3 18,-9 11,-13 16,-21 14,-28 -2,0 -5,3 -9,8 -19,22 -34,15 -47,-20 -5,-16 -6,-28 -2,-35 4,-8 12,-11 27,-9 5,1 8,1 10,-1 2,-1 1,-4 -4,-5 l -9,-5 c -14,-6 -26,-4 -35,6 -3,4 -5,6 -6,9 -3,2 -4,6 -4,10 -1,3 0,8 1,13 3,6 4,12 6,20 2,5 3,8 5,11 1,5 4,8 5,10 1,3 3,7 5,9 3,2 5,4 6,7 2,2 4,4 6,5 3,2 5,2 6,3 2,0 4,1 7,1 z m 155,0 c 8,0 14,-4 22,-13 7,-9 12,-20 17,-33 4,-15 7,-25 7,-31 0,-3 -1,-7 -3,-12 -2,-3 -4,-8 -8,-11 -3,-3 -5,-5 -7,-5 -6,-3 -11,-4 -15,-3 -3,0 -7,3 -13,6 -9,4 -13,7 -13,8 0,2 4,2 13,1 10,-1 18,0 21,4 3,3 5,11 5,22 -1,21 -7,35 -18,44 -11,8 -22,6 -32,-6 l -8,-9 v 8 c 0,5 4,12 12,19 8,7 15,11 20,11 z m -79,-37 v 0 c 7,-1 15,-2 23,-6 16,-8 24,-22 24,-40 0,-17 -7,-30 -21,-39 -8,-5 -15,-8 -24,-8 -9,0 -16,3 -22,7 -7,3 -12,9 -18,15 -4,7 -6,15 -6,22 0,15 4,27 12,36 8,9 18,13 32,13 z m 2,-10 v 0 c -7,0 -12,-2 -18,-4 -4,-4 -9,-8 -13,-15 -9,-15 -7,-28 7,-41 3,-4 7,-6 11,-8 3,-1 7,-3 13,-3 8,0 15,4 22,11 13,14 15,28 5,43 -1,2 -3,4 -4,5 -1,2 -3,3 -4,4 l -5,4 -4,2 c -4,1 -6,2 -6,1 -1,0 -2,0 -4,1 z m -75,-62 h 5 v 0 c 5,0 7,0 8,-1 2,-2 1,-3 -4,-4 -1,-1 -3,-2 -4,-2 -4,-2 -8,-5 -13,-10 -4,-7 -5,-12 -3,-18 0,-1 1,-3 4,-7 l 9,-8 11,-9 12,-8 10,-4 c 2,-1 6,-1 9,0 3,0 5,1 8,3 2,2 3,4 5,8 1,3 2,6 4,11 l 3,10 1,-3 c 5,-12 5,-23 2,-34 -2,-3 -6,-6 -12,-11 -9,-3 -18,-3 -30,2 -21,9 -37,22 -48,38 -4,4 -6,9 -6,13 -1,3 -1,8 0,11 2,3 4,7 6,11 2,3 5,6 9,8 4,2 8,3 14,4 z m 142,0 v 0 c 2,0 6,0 9,0 3,-1 5,-1 8,-2 l 5,-3 6,-4 c 3,-2 4,-3 3,-3 -1,-1 -1,-2 2,-5 3,-4 3,-6 1,-7 v -13 -5 c -1,-4 -2,-5 -3,-5 -1,0 -3,-2 -4,-6 -3,-3 -5,-5 -7,-6 -6,-4 -11,-8 -18,-12 -6,-6 -13,-9 -17,-13 -11,-4 -19,-7 -22,-7 -3,0 -6,2 -13,5 -5,4 -9,7 -9,10 -4,5 -5,12 -4,23 2,11 5,17 8,17 l 1,-3 2,-9 c 0,-8 1,-15 6,-19 4,-4 10,-7 16,-4 4,1 8,3 15,6 5,4 12,7 17,11 6,5 9,9 11,12 1,1 3,3 3,5 0,2 1,3 1,5 1,1 1,4 1,5 0,2 -1,4 -2,7 -2,3 -4,5 -6,7 -2,2 -4,3 -8,6 -2,1 -5,2 -7,2 0,0 -2,0 -3,1 -1,0 -2,1 -2,2 0,1 3,2 10,2 z"
|
49
|
-
id="path4" />
|
50
|
-
</g>
|
51
|
-
</svg>
|