pymdownx-mahjong 1.0.0__py3-none-any.whl

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.
Files changed (94) hide show
  1. pymdownx_mahjong/__init__.py +23 -0
  2. pymdownx_mahjong/assets/dark/0m.svg +333 -0
  3. pymdownx_mahjong/assets/dark/0p.svg +491 -0
  4. pymdownx_mahjong/assets/dark/0s.svg +678 -0
  5. pymdownx_mahjong/assets/dark/1m.svg +273 -0
  6. pymdownx_mahjong/assets/dark/1p.svg +551 -0
  7. pymdownx_mahjong/assets/dark/1s.svg +764 -0
  8. pymdownx_mahjong/assets/dark/1z.svg +242 -0
  9. pymdownx_mahjong/assets/dark/2m.svg +283 -0
  10. pymdownx_mahjong/assets/dark/2p.svg +396 -0
  11. pymdownx_mahjong/assets/dark/2s.svg +369 -0
  12. pymdownx_mahjong/assets/dark/2z.svg +270 -0
  13. pymdownx_mahjong/assets/dark/3m.svg +289 -0
  14. pymdownx_mahjong/assets/dark/3p.svg +356 -0
  15. pymdownx_mahjong/assets/dark/3s.svg +462 -0
  16. pymdownx_mahjong/assets/dark/3z.svg +248 -0
  17. pymdownx_mahjong/assets/dark/4m.svg +289 -0
  18. pymdownx_mahjong/assets/dark/4p.svg +403 -0
  19. pymdownx_mahjong/assets/dark/4s.svg +570 -0
  20. pymdownx_mahjong/assets/dark/4z.svg +236 -0
  21. pymdownx_mahjong/assets/dark/5m.svg +313 -0
  22. pymdownx_mahjong/assets/dark/5p.svg +450 -0
  23. pymdownx_mahjong/assets/dark/5s.svg +608 -0
  24. pymdownx_mahjong/assets/dark/5z.svg +214 -0
  25. pymdownx_mahjong/assets/dark/6m.svg +294 -0
  26. pymdownx_mahjong/assets/dark/6p.svg +473 -0
  27. pymdownx_mahjong/assets/dark/6s.svg +695 -0
  28. pymdownx_mahjong/assets/dark/6z.svg +324 -0
  29. pymdownx_mahjong/assets/dark/7m.svg +283 -0
  30. pymdownx_mahjong/assets/dark/7p.svg +516 -0
  31. pymdownx_mahjong/assets/dark/7s.svg +628 -0
  32. pymdownx_mahjong/assets/dark/7z.svg +232 -0
  33. pymdownx_mahjong/assets/dark/8m.svg +283 -0
  34. pymdownx_mahjong/assets/dark/8p.svg +566 -0
  35. pymdownx_mahjong/assets/dark/8s.svg +712 -0
  36. pymdownx_mahjong/assets/dark/9m.svg +289 -0
  37. pymdownx_mahjong/assets/dark/9p.svg +609 -0
  38. pymdownx_mahjong/assets/dark/9s.svg +762 -0
  39. pymdownx_mahjong/assets/dark/back.svg +285 -0
  40. pymdownx_mahjong/assets/dark/blank.svg +225 -0
  41. pymdownx_mahjong/assets/dark/front.svg +334 -0
  42. pymdownx_mahjong/assets/light/0m.svg +319 -0
  43. pymdownx_mahjong/assets/light/0p.svg +460 -0
  44. pymdownx_mahjong/assets/light/0s.svg +614 -0
  45. pymdownx_mahjong/assets/light/1m.svg +276 -0
  46. pymdownx_mahjong/assets/light/1p.svg +544 -0
  47. pymdownx_mahjong/assets/light/1s.svg +764 -0
  48. pymdownx_mahjong/assets/light/1z.svg +242 -0
  49. pymdownx_mahjong/assets/light/2m.svg +286 -0
  50. pymdownx_mahjong/assets/light/2p.svg +400 -0
  51. pymdownx_mahjong/assets/light/2s.svg +372 -0
  52. pymdownx_mahjong/assets/light/2z.svg +270 -0
  53. pymdownx_mahjong/assets/light/3m.svg +292 -0
  54. pymdownx_mahjong/assets/light/3p.svg +362 -0
  55. pymdownx_mahjong/assets/light/3s.svg +462 -0
  56. pymdownx_mahjong/assets/light/3z.svg +248 -0
  57. pymdownx_mahjong/assets/light/4m.svg +292 -0
  58. pymdownx_mahjong/assets/light/4p.svg +407 -0
  59. pymdownx_mahjong/assets/light/4s.svg +573 -0
  60. pymdownx_mahjong/assets/light/4z.svg +236 -0
  61. pymdownx_mahjong/assets/light/5m.svg +313 -0
  62. pymdownx_mahjong/assets/light/5p.svg +454 -0
  63. pymdownx_mahjong/assets/light/5s.svg +608 -0
  64. pymdownx_mahjong/assets/light/5z.svg +214 -0
  65. pymdownx_mahjong/assets/light/6m.svg +297 -0
  66. pymdownx_mahjong/assets/light/6p.svg +477 -0
  67. pymdownx_mahjong/assets/light/6s.svg +688 -0
  68. pymdownx_mahjong/assets/light/6z.svg +309 -0
  69. pymdownx_mahjong/assets/light/7m.svg +283 -0
  70. pymdownx_mahjong/assets/light/7p.svg +567 -0
  71. pymdownx_mahjong/assets/light/7s.svg +628 -0
  72. pymdownx_mahjong/assets/light/7z.svg +232 -0
  73. pymdownx_mahjong/assets/light/8m.svg +286 -0
  74. pymdownx_mahjong/assets/light/8p.svg +570 -0
  75. pymdownx_mahjong/assets/light/8s.svg +712 -0
  76. pymdownx_mahjong/assets/light/9m.svg +292 -0
  77. pymdownx_mahjong/assets/light/9p.svg +623 -0
  78. pymdownx_mahjong/assets/light/9s.svg +748 -0
  79. pymdownx_mahjong/assets/light/back.svg +285 -0
  80. pymdownx_mahjong/assets/light/blank.svg +224 -0
  81. pymdownx_mahjong/assets/light/front.svg +334 -0
  82. pymdownx_mahjong/css/mahjong.css +416 -0
  83. pymdownx_mahjong/extension.py +206 -0
  84. pymdownx_mahjong/inline.py +78 -0
  85. pymdownx_mahjong/parser.py +363 -0
  86. pymdownx_mahjong/renderer.py +468 -0
  87. pymdownx_mahjong/superfences.py +126 -0
  88. pymdownx_mahjong/tiles.py +85 -0
  89. pymdownx_mahjong/utils.py +90 -0
  90. pymdownx_mahjong-1.0.0.dist-info/METADATA +44 -0
  91. pymdownx_mahjong-1.0.0.dist-info/RECORD +94 -0
  92. pymdownx_mahjong-1.0.0.dist-info/WHEEL +4 -0
  93. pymdownx_mahjong-1.0.0.dist-info/entry_points.txt +2 -0
  94. pymdownx_mahjong-1.0.0.dist-info/licenses/LICENSE +352 -0
@@ -0,0 +1,369 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="300"
14
+ height="400"
15
+ viewBox="0 0 300 400"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ sodipodi:docname="Sou2.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Sou2.png"
21
+ inkscape:export-xdpi="180"
22
+ inkscape:export-ydpi="180">
23
+ <defs
24
+ id="defs4">
25
+ <inkscape:path-effect
26
+ effect="skeletal"
27
+ id="path-effect7963"
28
+ is_visible="true"
29
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
30
+ copytype="repeated_stretched"
31
+ prop_scale="1"
32
+ scale_y_rel="false"
33
+ spacing="0"
34
+ normal_offset="0"
35
+ tang_offset="0"
36
+ prop_units="false"
37
+ vertical_pattern="false"
38
+ fuse_tolerance="0"
39
+ pattern-nodetypes="cccc" />
40
+ <inkscape:path-effect
41
+ effect="skeletal"
42
+ id="path-effect7830"
43
+ is_visible="true"
44
+ pattern="M -12.828427,33.715729 -17,-11 l 9.0000001,0 z"
45
+ copytype="repeated_stretched"
46
+ prop_scale="-1"
47
+ scale_y_rel="false"
48
+ spacing="5.1"
49
+ normal_offset="0"
50
+ tang_offset="0"
51
+ prop_units="false"
52
+ vertical_pattern="false"
53
+ fuse_tolerance="0"
54
+ pattern-nodetypes="cccc" />
55
+ <linearGradient
56
+ id="linearGradient10055"
57
+ osb:paint="solid">
58
+ <stop
59
+ style="stop-color:#000000;stop-opacity:1;"
60
+ offset="0"
61
+ id="stop10057" />
62
+ </linearGradient>
63
+ <marker
64
+ inkscape:stockid="Arrow1Lstart"
65
+ orient="auto"
66
+ refY="0"
67
+ refX="0"
68
+ id="Arrow1Lstart"
69
+ style="overflow:visible"
70
+ inkscape:isstock="true">
71
+ <path
72
+ id="path4978"
73
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
74
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
75
+ transform="matrix(0.8,0,0,0.8,10,0)"
76
+ inkscape:connector-curvature="0" />
77
+ </marker>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ id="clipPath4243">
81
+ <circle
82
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
83
+ id="circle4245"
84
+ cx="-264.65997"
85
+ cy="-198.20665"
86
+ r="293.95438" />
87
+ </clipPath>
88
+ <clipPath
89
+ clipPathUnits="userSpaceOnUse"
90
+ id="clipPath7847">
91
+ <ellipse
92
+ style="opacity:1;fill:#822600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
93
+ id="ellipse7849"
94
+ cx="394"
95
+ cy="552.36218"
96
+ rx="349.49533"
97
+ ry="216" />
98
+ </clipPath>
99
+ <clipPath
100
+ clipPathUnits="userSpaceOnUse"
101
+ id="clipPath4243-1">
102
+ <circle
103
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
104
+ id="circle4245-4"
105
+ cx="-264.65997"
106
+ cy="-198.20665"
107
+ r="293.95438" />
108
+ </clipPath>
109
+ <clipPath
110
+ clipPathUnits="userSpaceOnUse"
111
+ id="clipPath7876">
112
+ <circle
113
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
114
+ id="circle7878"
115
+ cx="-264.65997"
116
+ cy="-198.20665"
117
+ r="293.95438" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath14693">
122
+ <rect
123
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
124
+ id="rect14695"
125
+ width="131.78395"
126
+ height="168.82127"
127
+ x="-332.59583"
128
+ y="383.49765"
129
+ rx="1.2551664"
130
+ ry="3.7514515"
131
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
132
+ </clipPath>
133
+ <clipPath
134
+ clipPathUnits="userSpaceOnUse"
135
+ id="clipPath14952">
136
+ <ellipse
137
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
138
+ id="ellipse14954"
139
+ cx="-271.34384"
140
+ cy="647.25604"
141
+ rx="69.057365"
142
+ ry="116.91089"
143
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
144
+ </clipPath>
145
+ </defs>
146
+ <sodipodi:namedview
147
+ id="base"
148
+ pagecolor="#000000"
149
+ bordercolor="#666666"
150
+ borderopacity="1"
151
+ inkscape:pageopacity="0"
152
+ inkscape:pageshadow="2"
153
+ inkscape:zoom="1.28"
154
+ inkscape:cx="160.76379"
155
+ inkscape:cy="259.86679"
156
+ inkscape:document-units="px"
157
+ inkscape:current-layer="layer1"
158
+ showgrid="true"
159
+ inkscape:window-width="1920"
160
+ inkscape:window-height="1017"
161
+ inkscape:window-x="1912"
162
+ inkscape:window-y="-8"
163
+ inkscape:window-maximized="1"
164
+ showguides="true"
165
+ inkscape:guide-bbox="true"
166
+ units="px"
167
+ inkscape:snap-bbox="true">
168
+ <inkscape:grid
169
+ type="xygrid"
170
+ id="grid4774"
171
+ visible="true"
172
+ dotted="false"
173
+ color="#3f3fff"
174
+ opacity="0.03921569"
175
+ empcolor="#3f3fff"
176
+ empopacity="0.07843137"
177
+ enabled="false" />
178
+ <sodipodi:guide
179
+ position="150,200"
180
+ orientation="0,1"
181
+ id="guide8231"
182
+ inkscape:label=""
183
+ inkscape:color="rgb(0,0,255)" />
184
+ <sodipodi:guide
185
+ position="384.48931,-167.93786"
186
+ orientation="1,0"
187
+ id="guide8233"
188
+ inkscape:label=""
189
+ inkscape:color="rgb(0,0,255)" />
190
+ </sodipodi:namedview>
191
+ <metadata
192
+ id="metadata7">
193
+ <rdf:RDF>
194
+ <cc:Work
195
+ rdf:about="">
196
+ <dc:format>image/svg+xml</dc:format>
197
+ <dc:type
198
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
199
+ <dc:title></dc:title>
200
+ </cc:Work>
201
+ </rdf:RDF>
202
+ </metadata>
203
+ <g
204
+ inkscape:label="Layer 1"
205
+ inkscape:groupmode="layer"
206
+ id="layer1"
207
+ transform="translate(0,-652.36216)">
208
+ <g
209
+ id="g4337"
210
+ transform="matrix(0.95915654,0,0,0.95915654,6.112593,26.80356)">
211
+ <ellipse
212
+ ry="19.097431"
213
+ rx="24.680117"
214
+ cy="680.42645"
215
+ cx="135.05489"
216
+ id="ellipse4339"
217
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
218
+ <ellipse
219
+ ry="19.097431"
220
+ rx="24.680117"
221
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
222
+ id="ellipse4341"
223
+ cx="164.01987"
224
+ cy="680.42645" />
225
+ <ellipse
226
+ ry="19.097431"
227
+ rx="24.680117"
228
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
229
+ id="ellipse4343"
230
+ cx="133.83817"
231
+ cy="829.79926" />
232
+ <path
233
+ inkscape:connector-curvature="0"
234
+ id="path4345"
235
+ d="m 149.58492,818.81626 0,-134.67362"
236
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
237
+ <ellipse
238
+ ry="19.097431"
239
+ rx="24.680117"
240
+ cy="829.79926"
241
+ cx="165.64214"
242
+ id="ellipse4347"
243
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
244
+ <ellipse
245
+ ry="25.370163"
246
+ rx="32.786533"
247
+ cy="748.83081"
248
+ cx="160.99481"
249
+ id="ellipse4349"
250
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
251
+ <ellipse
252
+ ry="25.370163"
253
+ rx="32.786533"
254
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
255
+ id="ellipse4351"
256
+ cx="138.32327"
257
+ cy="748.83081" />
258
+ <path
259
+ inkscape:connector-curvature="0"
260
+ id="path4353"
261
+ d="m 149.58492,685.72349 0,37.84241"
262
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
263
+ <path
264
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
265
+ d="m 149.58491,777.56215 0,46.73373"
266
+ id="path4355"
267
+ inkscape:connector-curvature="0" />
268
+ <ellipse
269
+ cy="683.5329"
270
+ cx="149.58495"
271
+ id="ellipse4357"
272
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
273
+ rx="8.9920015"
274
+ ry="8.6974945" />
275
+ <path
276
+ sodipodi:nodetypes="cc"
277
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
278
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
279
+ id="path4359"
280
+ inkscape:connector-curvature="0" />
281
+ <path
282
+ inkscape:connector-curvature="0"
283
+ id="path4361"
284
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
285
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
286
+ sodipodi:nodetypes="cc" />
287
+ </g>
288
+ <g
289
+ transform="matrix(0.95915654,0,0,0.95915654,6.112593,235.23614)"
290
+ id="g4213">
291
+ <ellipse
292
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
293
+ id="ellipse4215"
294
+ cx="135.05489"
295
+ cy="680.42645"
296
+ rx="24.680117"
297
+ ry="19.097431" />
298
+ <ellipse
299
+ cy="680.42645"
300
+ cx="164.01987"
301
+ id="ellipse4217"
302
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
303
+ rx="24.680117"
304
+ ry="19.097431" />
305
+ <ellipse
306
+ cy="829.79926"
307
+ cx="133.83817"
308
+ id="ellipse4219"
309
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
310
+ rx="24.680117"
311
+ ry="19.097431" />
312
+ <path
313
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:55.00000381;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
314
+ d="m 149.58492,818.81626 0,-134.67362"
315
+ id="path4221"
316
+ inkscape:connector-curvature="0" />
317
+ <ellipse
318
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
319
+ id="ellipse4223"
320
+ cx="165.64214"
321
+ cy="829.79926"
322
+ rx="24.680117"
323
+ ry="19.097431" />
324
+ <ellipse
325
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
326
+ id="ellipse4225"
327
+ cx="160.99481"
328
+ cy="748.83081"
329
+ rx="32.786533"
330
+ ry="25.370163" />
331
+ <ellipse
332
+ cy="748.83081"
333
+ cx="138.32327"
334
+ id="ellipse4227"
335
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
336
+ rx="32.786533"
337
+ ry="25.370163" />
338
+ <path
339
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
340
+ d="m 149.58492,685.72349 0,37.84241"
341
+ id="path4229"
342
+ inkscape:connector-curvature="0" />
343
+ <path
344
+ inkscape:connector-curvature="0"
345
+ id="path4231"
346
+ d="m 149.58491,777.56215 0,46.73373"
347
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:12.51099205;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
348
+ <ellipse
349
+ ry="8.6974945"
350
+ rx="8.9920015"
351
+ style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
352
+ id="ellipse4233"
353
+ cx="149.58495"
354
+ cy="683.5329" />
355
+ <path
356
+ inkscape:connector-curvature="0"
357
+ id="path4235"
358
+ d="m 140.22861,761.81761 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
359
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
360
+ sodipodi:nodetypes="cc" />
361
+ <path
362
+ sodipodi:nodetypes="cc"
363
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10.42582703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
364
+ d="m 140.22861,743.53117 c 4.22825,-6.44075 15.55968,-6.16314 19.11822,0"
365
+ id="path4237"
366
+ inkscape:connector-curvature="0" />
367
+ </g>
368
+ </g>
369
+ </svg>
@@ -0,0 +1,270 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="300"
14
+ height="400"
15
+ viewBox="0 0 300 400"
16
+ id="svg2"
17
+ version="1.1"
18
+ inkscape:version="0.91 r13725"
19
+ sodipodi:docname="Nan.svg"
20
+ inkscape:export-filename="C:\Users\Fluffy\Documents\Projects\ExtraRiichi\Nan.png"
21
+ inkscape:export-xdpi="180"
22
+ inkscape:export-ydpi="180">
23
+ <defs
24
+ id="defs4">
25
+ <inkscape:path-effect
26
+ effect="skeletal"
27
+ id="path-effect7963"
28
+ is_visible="true"
29
+ pattern="m -90.825902,-314.06958 23.03016,41.38503 13.798268,-41.38503 z"
30
+ copytype="repeated_stretched"
31
+ prop_scale="1"
32
+ scale_y_rel="false"
33
+ spacing="0"
34
+ normal_offset="0"
35
+ tang_offset="0"
36
+ prop_units="false"
37
+ vertical_pattern="false"
38
+ fuse_tolerance="0"
39
+ pattern-nodetypes="cccc" />
40
+ <inkscape:path-effect
41
+ effect="skeletal"
42
+ id="path-effect7830"
43
+ is_visible="true"
44
+ pattern="M -12.828427,33.715729 -17,-11 l 9.0000001,0 z"
45
+ copytype="repeated_stretched"
46
+ prop_scale="-1"
47
+ scale_y_rel="false"
48
+ spacing="5.1"
49
+ normal_offset="0"
50
+ tang_offset="0"
51
+ prop_units="false"
52
+ vertical_pattern="false"
53
+ fuse_tolerance="0"
54
+ pattern-nodetypes="cccc" />
55
+ <linearGradient
56
+ id="linearGradient10055"
57
+ osb:paint="solid">
58
+ <stop
59
+ style="stop-color:#000000;stop-opacity:1;"
60
+ offset="0"
61
+ id="stop10057" />
62
+ </linearGradient>
63
+ <marker
64
+ inkscape:stockid="Arrow1Lstart"
65
+ orient="auto"
66
+ refY="0"
67
+ refX="0"
68
+ id="Arrow1Lstart"
69
+ style="overflow:visible"
70
+ inkscape:isstock="true">
71
+ <path
72
+ id="path4978"
73
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
74
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ff5c00;stroke-width:1pt;stroke-opacity:1"
75
+ transform="matrix(0.8,0,0,0.8,10,0)"
76
+ inkscape:connector-curvature="0" />
77
+ </marker>
78
+ <clipPath
79
+ clipPathUnits="userSpaceOnUse"
80
+ id="clipPath4243">
81
+ <circle
82
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
83
+ id="circle4245"
84
+ cx="-264.65997"
85
+ cy="-198.20665"
86
+ r="293.95438" />
87
+ </clipPath>
88
+ <clipPath
89
+ clipPathUnits="userSpaceOnUse"
90
+ id="clipPath7847">
91
+ <ellipse
92
+ style="opacity:1;fill:#822600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
93
+ id="ellipse7849"
94
+ cx="394"
95
+ cy="552.36218"
96
+ rx="349.49533"
97
+ ry="216" />
98
+ </clipPath>
99
+ <clipPath
100
+ clipPathUnits="userSpaceOnUse"
101
+ id="clipPath4243-1">
102
+ <circle
103
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
104
+ id="circle4245-4"
105
+ cx="-264.65997"
106
+ cy="-198.20665"
107
+ r="293.95438" />
108
+ </clipPath>
109
+ <clipPath
110
+ clipPathUnits="userSpaceOnUse"
111
+ id="clipPath7876">
112
+ <circle
113
+ style="opacity:1;fill:#000000;fill-opacity:0.29670332;fill-rule:nonzero;stroke:#000000;stroke-width:19.13299942;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
114
+ id="circle7878"
115
+ cx="-264.65997"
116
+ cy="-198.20665"
117
+ r="293.95438" />
118
+ </clipPath>
119
+ <clipPath
120
+ clipPathUnits="userSpaceOnUse"
121
+ id="clipPath14693">
122
+ <rect
123
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
124
+ id="rect14695"
125
+ width="131.78395"
126
+ height="168.82127"
127
+ x="-332.59583"
128
+ y="383.49765"
129
+ rx="1.2551664"
130
+ ry="3.7514515"
131
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
132
+ </clipPath>
133
+ <clipPath
134
+ clipPathUnits="userSpaceOnUse"
135
+ id="clipPath14952">
136
+ <ellipse
137
+ style="opacity:1;fill:#a53c3c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
138
+ id="ellipse14954"
139
+ cx="-271.34384"
140
+ cy="647.25604"
141
+ rx="69.057365"
142
+ ry="116.91089"
143
+ transform="matrix(0.99939083,-0.03489951,0.03489951,0.99939083,0,0)" />
144
+ </clipPath>
145
+ </defs>
146
+ <sodipodi:namedview
147
+ id="base"
148
+ pagecolor="#000000"
149
+ bordercolor="#666666"
150
+ borderopacity="1"
151
+ inkscape:pageopacity="0"
152
+ inkscape:pageshadow="2"
153
+ inkscape:zoom="1.0109639"
154
+ inkscape:cx="-158.56206"
155
+ inkscape:cy="351.69723"
156
+ inkscape:document-units="px"
157
+ inkscape:current-layer="g4184"
158
+ showgrid="true"
159
+ inkscape:window-width="1920"
160
+ inkscape:window-height="1017"
161
+ inkscape:window-x="-8"
162
+ inkscape:window-y="-8"
163
+ inkscape:window-maximized="1"
164
+ showguides="true"
165
+ inkscape:guide-bbox="true"
166
+ units="px">
167
+ <inkscape:grid
168
+ type="xygrid"
169
+ id="grid4774"
170
+ visible="true"
171
+ dotted="false"
172
+ color="#3f3fff"
173
+ opacity="0.03921569"
174
+ empcolor="#3f3fff"
175
+ empopacity="0.07843137"
176
+ enabled="false" />
177
+ <sodipodi:guide
178
+ position="85.681178,200.03932"
179
+ orientation="0,1"
180
+ id="guide8231"
181
+ inkscape:label=""
182
+ inkscape:color="rgb(0,0,255)" />
183
+ <sodipodi:guide
184
+ position="150,200"
185
+ orientation="1,0"
186
+ id="guide8233"
187
+ inkscape:label=""
188
+ inkscape:color="rgb(0,0,255)" />
189
+ </sodipodi:namedview>
190
+ <metadata
191
+ id="metadata7">
192
+ <rdf:RDF>
193
+ <cc:Work
194
+ rdf:about="">
195
+ <dc:format>image/svg+xml</dc:format>
196
+ <dc:type
197
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
198
+ <dc:title></dc:title>
199
+ </cc:Work>
200
+ </rdf:RDF>
201
+ </metadata>
202
+ <g
203
+ inkscape:label="Layer 1"
204
+ inkscape:groupmode="layer"
205
+ id="layer1"
206
+ transform="translate(0,-652.36216)">
207
+ <g
208
+ id="g4184"
209
+ transform="matrix(1.0044125,0,0,1.0044125,-10.100723,-17.440744)">
210
+ <g
211
+ id="g4195"
212
+ transform="matrix(0.96971821,0,0,1,4.8296528,0)">
213
+ <path
214
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
215
+ d="m 180.01019,689.47005 c -6.60859,-0.48504 -30.38318,25.26489 -36.60586,34.32229 -5.69504,6.90501 4.79486,11.13002 8.86231,16.9841 5.13346,8.06071 1.22147,89.90666 -8.33752,135.13699 l 15.46785,-2.31045 c 10.15168,-37.07022 17.66151,-105.92002 25.26199,-112.07982 7.23438,-5.64883 23.67201,-5.05439 21.67531,-13.41661 -4.13317,-18.67217 -20.44655,-58.42532 -26.32408,-58.6365 z"
216
+ id="path4166"
217
+ inkscape:connector-curvature="0"
218
+ sodipodi:nodetypes="cccccccc" />
219
+ <path
220
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
221
+ d="m 122.01681,796.92731 c -18.91603,0.87973 -28.798248,10.69738 -1.04916,14.50033 32.69916,1.34438 100.914,-5.95887 100.99124,-15.21074 0.50007,-12.38604 -9.68021,-30.36115 -15.72706,-30.24973 -4.80999,0.0666 -14.60707,6.08199 -15.49735,13.35218 -0.7723,8.52441 -50.99279,16.5893 -68.71767,17.60796 z"
222
+ id="path4168"
223
+ inkscape:connector-curvature="0"
224
+ sodipodi:nodetypes="cccccc" />
225
+ <path
226
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
227
+ d="m 153.67205,848.84527 c 25.63242,-10.5633 45.92829,-20.43381 70.16669,-33.78515 8.50421,-4.39856 16.45949,4.65195 14.71585,10.49483 -1.13333,3.79775 -14.08578,26.76789 -2.69599,27.66397 -10.29756,8.02971 -38.07021,31.79678 -54.00467,67.80402 l -24.83006,-2.09832 c 10.65568,-26.66627 51.36933,-71.18083 48.61096,-74.10112 -4.70145,-5.08631 -42.1547,13.5402 -50.3375,11.1914 z"
228
+ id="path4170"
229
+ inkscape:connector-curvature="0"
230
+ sodipodi:nodetypes="ccscccccc" />
231
+ <path
232
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
233
+ d="M 58.289846,893.36579 C 98.37429,871.73604 187.21397,852.18031 258.85433,851.06873 c 9.11568,-0.5564 30.91343,52.37414 30.72079,61.51831 -0.59867,26.02805 -45.433,88.49816 -73.24718,126.11726 -5.79302,6.4227 -18.89804,4.8464 -27.69634,-0.6182 l -47.53702,-31.5645 c -4.80435,-4.0497 -3.00434,-12.59097 5.05004,-7.74355 10.64061,6.55005 32.405,14.85845 44.46529,16.43385 11.0746,1.4727 48.13752,-86.15338 50.35477,-100.92899 1.30281,-6.70884 -7.4831,-39.24423 -23.33301,-40.27292 -107.24408,3.99322 -143.146386,35.79646 -157.540505,37.24847 z"
234
+ id="path4172"
235
+ inkscape:connector-curvature="0"
236
+ sodipodi:nodetypes="cccccccccccc" />
237
+ <path
238
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
239
+ d="m 35.176769,856.0746 c -8.329143,2.47339 -5.543427,12.92357 -4.359061,19.23455 9.767401,43.24858 46.332868,125.35065 53.641585,130.24035 22.498047,12.4821 31.295027,4.1632 30.912857,-5.2458 -1.13661,-9.1203 -30.281081,-84.44338 -48.575803,-124.19996 -6.317716,-12.70167 -22.0543,-22.43785 -31.619578,-20.02914 z"
240
+ id="path4174"
241
+ inkscape:connector-curvature="0"
242
+ sodipodi:nodetypes="cccccc" />
243
+ <path
244
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
245
+ d="m 69.201953,835.83331 c -13.711354,-6.44835 -9.284101,-18.12879 9.262409,-11.09585 42.105238,15.7158 58.236628,41.97104 71.995068,93.68228 l -15.46785,4.19662 C 121.71411,873.69471 105.90056,855.54714 69.201953,835.83331 Z"
246
+ id="path4176"
247
+ inkscape:connector-curvature="0"
248
+ sodipodi:nodetypes="ccccc" />
249
+ <path
250
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
251
+ d="m 121.2172,943.33039 c -15.90514,5.90334 -13.03153,-18.01065 -2.259,-21.03137 74.13079,-23.14959 77.60464,-21.1582 89.99832,-16.23043 11.85218,4.7626 16.09417,21.95025 0.35075,21.09865 -31.18654,-1.96893 -55.58683,2.54929 -88.09007,16.16315 z"
252
+ id="path4178"
253
+ inkscape:connector-curvature="0"
254
+ sodipodi:nodetypes="ccccc" />
255
+ <path
256
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
257
+ d="m 124.2573,959.25452 c -10.22238,2.70755 -7.0172,18.26947 3.27761,15.95048 26.7444,-5.66326 45.57025,-9.03231 73.05055,-12.99668 8.28191,-1.37467 8.02256,-22.57795 0.5386,-25.88353 -10.0892,-3.02726 -11.21854,3.61802 -15.65202,6.11282 -12.14009,6.20765 -37.21982,10.4483 -61.21474,16.81691 z"
258
+ id="path4180"
259
+ inkscape:connector-curvature="0"
260
+ sodipodi:nodetypes="cccccc" />
261
+ <path
262
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
263
+ d="m 146.80164,925.40788 c 2.23284,25.80046 4.91455,54.74838 1.7486,80.54882 l 17.52265,9.6443 c 3.12723,-29.67464 6.5145,-63.19621 4.2514,-92.87087 z"
264
+ id="path4182"
265
+ inkscape:connector-curvature="0"
266
+ sodipodi:nodetypes="ccccc" />
267
+ </g>
268
+ </g>
269
+ </g>
270
+ </svg>