meowji 2.1.1 → 3.0.0
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.
- package/CHANGELOG +35 -25
- package/README.md +43 -43
- package/package.json +22 -24
- package/src/assets/astroCat.svg +129 -0
- package/src/assets/attorneyCat.svg +127 -0
- package/src/assets/cat.svg +104 -0
- package/src/assets/dinoCat.svg +124 -0
- package/src/assets/hackerCat.svg +125 -0
- package/src/assets/hipsterCat.svg +154 -0
- package/src/assets/maskCat.svg +136 -0
- package/src/assets/ninjaCat.svg +104 -0
- package/src/assets/officeCat.svg +148 -0
- package/src/assets/shippingCat.svg +114 -0
- package/src/assets/stuntCat.svg +108 -0
- package/src/emojis.js +59 -0
- package/src/main.d.ts +1 -0
- package/src/main.js +43 -0
- package/webpack.config.js +47 -0
- package/index.js +0 -7
package/CHANGELOG
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
All notable changes to this project will be documented in this file.
|
|
3
|
-
|
|
4
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [Unreleased]
|
|
8
|
-
|
|
9
|
-
## [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
-
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [3.0.0] - 2024-12-21
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Add Shipping Cat, Office Cat, Mask Cat
|
|
13
|
+
- Add TS support
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Change node release to use source instead of bundle
|
|
17
|
+
- Upgrade deps
|
|
18
|
+
|
|
19
|
+
## [2.1.0] - 2021-09-06
|
|
20
|
+
### Added
|
|
21
|
+
- Add NPM distribution
|
|
22
|
+
|
|
23
|
+
## [2.0.0] - 2021-09-05
|
|
24
|
+
### Changed
|
|
25
|
+
- Fix string return in convertString
|
|
26
|
+
- Switch Meowji to module
|
|
27
|
+
|
|
28
|
+
## [1.0.0] - 2021-09-05
|
|
29
|
+
### Added
|
|
30
|
+
- Ninja Cat
|
|
31
|
+
- Astro Cat
|
|
32
|
+
- Hipster Cat
|
|
33
|
+
- Dino Cat
|
|
34
|
+
- Hacker Cat
|
|
35
|
+
- Stunt Cat
|
|
26
36
|
- Attorney Cat
|
package/README.md
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
# Meowji
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/meowji)
|
|
4
|
-
|
|
5
|
-
Non-standard cat emojis.
|
|
6
|
-
|
|
7
|
-
## Getting Started
|
|
8
|
-
|
|
9
|
-
Meowji can be added to your site by downloading and including `meowji.min.js` from the latest release:
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
<script src="./PATH/TO/meowji.min.js"></script>
|
|
13
|
-
...
|
|
14
|
-
<script>
|
|
15
|
-
window.onload = () => {
|
|
16
|
-
meowji.convertNode(document.body);
|
|
17
|
-
};
|
|
18
|
-
</script>
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Meowji can also be installed via NPM:
|
|
22
|
-
|
|
23
|
-
```
|
|
24
|
-
npm install meowji
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
...or Yarn:
|
|
28
|
-
|
|
29
|
-
```
|
|
30
|
-
yarn add meowji
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Development
|
|
34
|
-
|
|
35
|
-
Build production bundle with:
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
yarn install
|
|
39
|
-
yarn build
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## Licensing
|
|
43
|
-
|
|
1
|
+
# Meowji
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/meowji)
|
|
4
|
+
|
|
5
|
+
Non-standard cat emojis.
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
Meowji can be added to your site by downloading and including `meowji.min.js` from the latest release:
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
<script src="./PATH/TO/meowji.min.js"></script>
|
|
13
|
+
...
|
|
14
|
+
<script>
|
|
15
|
+
window.onload = () => {
|
|
16
|
+
meowji.convertNode(document.body);
|
|
17
|
+
};
|
|
18
|
+
</script>
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Meowji can also be installed via NPM:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
npm install meowji
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
...or Yarn:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
yarn add meowji
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Development
|
|
34
|
+
|
|
35
|
+
Build production bundle with:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
yarn install
|
|
39
|
+
yarn build
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Licensing
|
|
43
|
+
|
|
44
44
|
Code is licensed under MIT. Cat SVGs are licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "meowji",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "webpack",
|
|
8
|
-
"clean": "rimraf ./dist"
|
|
9
|
-
},
|
|
10
|
-
"devDependencies": {
|
|
11
|
-
"@babel/core": "^7.15.5",
|
|
12
|
-
"@babel/preset-env": "^7.
|
|
13
|
-
"babel-
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"dependencies": {}
|
|
24
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "meowji",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "src/main.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "webpack --mode=production",
|
|
8
|
+
"clean": "rimraf ./dist"
|
|
9
|
+
},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@babel/core": "^7.15.5",
|
|
12
|
+
"@babel/preset-env": "^7.26.0",
|
|
13
|
+
"babel-loader": "^9.2.1",
|
|
14
|
+
"mini-svg-data-uri": "^1.3.3",
|
|
15
|
+
"rimraf": "^3.0.2",
|
|
16
|
+
"svgo-loader": "^3.0.0",
|
|
17
|
+
"terser-webpack-plugin": "^5.3.11",
|
|
18
|
+
"webpack": "^5.52.0",
|
|
19
|
+
"webpack-cli": "^4.8.0"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {}
|
|
22
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="50mm"
|
|
6
|
+
height="50mm"
|
|
7
|
+
viewBox="0 0 50 50"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg5"
|
|
10
|
+
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
|
11
|
+
sodipodi:docname="astroCat.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview7"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:document-units="mm"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="0.81074258"
|
|
27
|
+
inkscape:cx="-28.764373"
|
|
28
|
+
inkscape:cy="128.41173"
|
|
29
|
+
inkscape:window-width="1536"
|
|
30
|
+
inkscape:window-height="801"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1"
|
|
35
|
+
units="mm"
|
|
36
|
+
inkscape:rotation="-1" />
|
|
37
|
+
<defs
|
|
38
|
+
id="defs2">
|
|
39
|
+
<marker
|
|
40
|
+
style="overflow:visible"
|
|
41
|
+
id="Arrow1Lstart"
|
|
42
|
+
refX="0"
|
|
43
|
+
refY="0"
|
|
44
|
+
orient="auto"
|
|
45
|
+
inkscape:stockid="Arrow1Lstart"
|
|
46
|
+
inkscape:isstock="true">
|
|
47
|
+
<path
|
|
48
|
+
transform="matrix(0.8,0,0,0.8,10,0)"
|
|
49
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
50
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
|
51
|
+
id="path1091" />
|
|
52
|
+
</marker>
|
|
53
|
+
</defs>
|
|
54
|
+
<g
|
|
55
|
+
inkscape:label="Layer 1"
|
|
56
|
+
inkscape:groupmode="layer"
|
|
57
|
+
id="layer1">
|
|
58
|
+
<ellipse
|
|
59
|
+
style="fill:#8ed1ff;fill-opacity:1;stroke:none;stroke-width:3.98618;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
60
|
+
id="path47346-7"
|
|
61
|
+
cx="24.880465"
|
|
62
|
+
cy="21.845392"
|
|
63
|
+
rx="22.783543"
|
|
64
|
+
ry="18.459076" />
|
|
65
|
+
<path
|
|
66
|
+
id="path21969"
|
|
67
|
+
style="fill:#f7d671;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
d="M 16.571085,8.9653255 C 8.5637309,17.579398 7.1478702,36.419533 3.6732668,47.525551 H 46.354022 C 42.879416,36.419533 41.464266,17.579398 33.456914,8.9653255 l -4.280042,6.7729935 c -2.381908,-0.985576 -5.171736,-1.053952 -8.325746,0 z"
|
|
69
|
+
sodipodi:nodetypes="ccccccc" />
|
|
70
|
+
<path
|
|
71
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
72
|
+
d="m 6.6596411,26.915599 5.3567909,2.292792"
|
|
73
|
+
id="path26660" />
|
|
74
|
+
<path
|
|
75
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 43.195616,26.915599 -5.35679,2.292792"
|
|
77
|
+
id="path26660-2" />
|
|
78
|
+
<ellipse
|
|
79
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.99937;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
80
|
+
id="path28034"
|
|
81
|
+
cx="19.004335"
|
|
82
|
+
cy="28.264273"
|
|
83
|
+
rx="2"
|
|
84
|
+
ry="3" />
|
|
85
|
+
<ellipse
|
|
86
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.99937;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
87
|
+
id="path28034-1"
|
|
88
|
+
cx="30.8407"
|
|
89
|
+
cy="28.129124"
|
|
90
|
+
rx="2"
|
|
91
|
+
ry="3" />
|
|
92
|
+
<path
|
|
93
|
+
id="path28549"
|
|
94
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
95
|
+
d="m 25.085702,35.607212 c 10e-7,0.820316 -0.546404,1.540203 -1.336495,1.76083 -0.79009,0.220626 -1.630409,-0.112029 -2.055404,-0.81367 -0.424994,-0.70164 -0.330602,-1.600464 0.230882,-2.198508"
|
|
96
|
+
sodipodi:nodetypes="cssc" />
|
|
97
|
+
<path
|
|
98
|
+
id="path28549-7"
|
|
99
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
100
|
+
d="m 25.085702,35.607212 c 0,0.820316 0.546405,1.540203 1.336496,1.76083 0.79009,0.220626 1.630409,-0.112029 2.055404,-0.81367 0.424994,-0.70164 0.330602,-1.600464 -0.230882,-2.198507"
|
|
101
|
+
sodipodi:nodetypes="cssc" />
|
|
102
|
+
<path
|
|
103
|
+
id="path21969-8-7"
|
|
104
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
105
|
+
d="M 6.927102,35.853084 C 5.824237,41.894333 4.907919,44.108347 3.673267,48.054717 H 46.354022 C 45.185821,44.32075 44.615062,41.526493 43.583651,35.853085 l -18.328275,5.771734 z"
|
|
106
|
+
sodipodi:nodetypes="cccccc" />
|
|
107
|
+
<rect
|
|
108
|
+
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
109
|
+
id="rect50498"
|
|
110
|
+
width="15.19492"
|
|
111
|
+
height="4.7218533"
|
|
112
|
+
x="18.168858"
|
|
113
|
+
y="42.905079"
|
|
114
|
+
ry="0" />
|
|
115
|
+
<circle
|
|
116
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.08197;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
117
|
+
id="path28034-5"
|
|
118
|
+
cx="39.612698"
|
|
119
|
+
cy="43.664246"
|
|
120
|
+
r="2" />
|
|
121
|
+
<ellipse
|
|
122
|
+
style="fill:none;fill-opacity:0.242991;stroke:#000000;stroke-width:3.90637;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
123
|
+
id="path47346"
|
|
124
|
+
cx="24.849548"
|
|
125
|
+
cy="21.675066"
|
|
126
|
+
rx="21.833164"
|
|
127
|
+
ry="18.49898" />
|
|
128
|
+
</g>
|
|
129
|
+
</svg>
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="50mm"
|
|
6
|
+
height="50mm"
|
|
7
|
+
viewBox="0 0 50 50"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg5"
|
|
10
|
+
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
|
11
|
+
sodipodi:docname="attorneyCat.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview7"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:document-units="mm"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="3.2429703"
|
|
27
|
+
inkscape:cx="133.6736"
|
|
28
|
+
inkscape:cy="169.02686"
|
|
29
|
+
inkscape:window-width="1536"
|
|
30
|
+
inkscape:window-height="801"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1"
|
|
35
|
+
units="mm"
|
|
36
|
+
inkscape:rotation="-1" />
|
|
37
|
+
<defs
|
|
38
|
+
id="defs2">
|
|
39
|
+
<marker
|
|
40
|
+
style="overflow:visible"
|
|
41
|
+
id="Arrow1Lstart"
|
|
42
|
+
refX="0"
|
|
43
|
+
refY="0"
|
|
44
|
+
orient="auto"
|
|
45
|
+
inkscape:stockid="Arrow1Lstart"
|
|
46
|
+
inkscape:isstock="true">
|
|
47
|
+
<path
|
|
48
|
+
transform="matrix(0.8,0,0,0.8,10,0)"
|
|
49
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
50
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
|
51
|
+
id="path1091" />
|
|
52
|
+
</marker>
|
|
53
|
+
</defs>
|
|
54
|
+
<g
|
|
55
|
+
inkscape:label="Layer 1"
|
|
56
|
+
inkscape:groupmode="layer"
|
|
57
|
+
id="layer1">
|
|
58
|
+
<path
|
|
59
|
+
id="path21969"
|
|
60
|
+
style="fill:#f7d671;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
61
|
+
d="M 16.571085,3.6736585 C 8.5637309,12.287728 7.1478702,36.948696 3.6732668,48.054714 c 23.2929232,0 23.3000572,0 42.6807552,0 C 42.879416,36.948696 41.464266,12.287728 33.456914,3.6736585 l -4.280042,6.7729905 c -2.381908,-0.9855754 -5.171736,-1.0539514 -8.325746,0 z"
|
|
62
|
+
sodipodi:nodetypes="ccccccc" />
|
|
63
|
+
<path
|
|
64
|
+
id="path21969-8"
|
|
65
|
+
style="fill:#280aad;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
66
|
+
d="M 6.9271021,33.207247 C 5.8242371,39.248496 4.9079188,44.108344 3.6732668,48.054714 H 46.354022 c -1.168201,-3.733967 -1.73896,-9.174058 -2.770371,-14.847466 l -18.328275,5.771734 z"
|
|
67
|
+
sodipodi:nodetypes="cccccc" />
|
|
68
|
+
<path
|
|
69
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
70
|
+
d="m 6.6596411,21.623929 5.3567909,2.292792"
|
|
71
|
+
id="path26660" />
|
|
72
|
+
<path
|
|
73
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
d="m 4.6055952,28.532349 5.8180298,0.32036"
|
|
75
|
+
id="path26660-5" />
|
|
76
|
+
<path
|
|
77
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
78
|
+
d="m 43.195616,21.623929 -5.35679,2.292792"
|
|
79
|
+
id="path26660-2" />
|
|
80
|
+
<path
|
|
81
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
82
|
+
d="m 45.249662,28.532349 -5.81803,0.32036"
|
|
83
|
+
id="path26660-5-5" />
|
|
84
|
+
<ellipse
|
|
85
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.99937;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
86
|
+
id="path28034"
|
|
87
|
+
cx="19.004335"
|
|
88
|
+
cy="22.972601"
|
|
89
|
+
rx="2"
|
|
90
|
+
ry="3" />
|
|
91
|
+
<ellipse
|
|
92
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.99937;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
93
|
+
id="path28034-1"
|
|
94
|
+
cx="30.8407"
|
|
95
|
+
cy="22.837452"
|
|
96
|
+
rx="2"
|
|
97
|
+
ry="3" />
|
|
98
|
+
<path
|
|
99
|
+
id="path28549"
|
|
100
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
101
|
+
d="m 25.085702,30.315542 c 10e-7,0.820316 -0.546404,1.540203 -1.336495,1.76083 -0.79009,0.220626 -1.630409,-0.112029 -2.055404,-0.81367 -0.424994,-0.70164 -0.330602,-1.600464 0.230882,-2.198508"
|
|
102
|
+
sodipodi:nodetypes="cssc" />
|
|
103
|
+
<path
|
|
104
|
+
id="path28549-7"
|
|
105
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
106
|
+
d="m 25.085702,30.315542 c 0,0.820316 0.546405,1.540203 1.336496,1.76083 0.79009,0.220626 1.630409,-0.112029 2.055404,-0.81367 0.424994,-0.70164 0.330602,-1.600464 -0.230882,-2.198507"
|
|
107
|
+
sodipodi:nodetypes="cssc" />
|
|
108
|
+
<path
|
|
109
|
+
style="fill:#fefeff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
|
110
|
+
d="M 25.255376,38.978982 30.64292,44.274316 43.583651,33.207248 Z"
|
|
111
|
+
id="path32866-8"
|
|
112
|
+
sodipodi:nodetypes="cccc" />
|
|
113
|
+
<path
|
|
114
|
+
style="fill:#fefeff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
|
115
|
+
d="M 25.255376,38.978982 19.867832,44.274316 6.9271019,33.207248 Z"
|
|
116
|
+
id="path32866" />
|
|
117
|
+
<path
|
|
118
|
+
id="path33579"
|
|
119
|
+
style="fill:#f10069;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
120
|
+
d="m 21.201792,38.367541 2.575554,3.763595 -2.575554,6.754109 h 3.941362 3.941878 l -2.575553,-6.754109 2.575553,-3.763595 -3.941878,0.195337 z" />
|
|
121
|
+
<path
|
|
122
|
+
id="path21969-8-7"
|
|
123
|
+
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
124
|
+
d="M 6.927102,33.207247 C 5.824237,39.248496 4.907919,44.108344 3.673267,48.054714 h 42.680755 c -1.168201,-3.733967 -1.73896,-9.174058 -2.770371,-14.847466 l -18.328275,5.771734 z"
|
|
125
|
+
sodipodi:nodetypes="cccccc" />
|
|
126
|
+
</g>
|
|
127
|
+
</svg>
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="50mm"
|
|
6
|
+
height="50mm"
|
|
7
|
+
viewBox="0 0 50 50"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg5"
|
|
10
|
+
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
|
11
|
+
sodipodi:docname="cat.svg"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
id="namedview7"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:document-units="mm"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="2"
|
|
27
|
+
inkscape:cx="91.797807"
|
|
28
|
+
inkscape:cy="55.360524"
|
|
29
|
+
inkscape:window-width="1536"
|
|
30
|
+
inkscape:window-height="801"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1"
|
|
35
|
+
units="mm"
|
|
36
|
+
inkscape:rotation="-1" />
|
|
37
|
+
<defs
|
|
38
|
+
id="defs2">
|
|
39
|
+
<marker
|
|
40
|
+
style="overflow:visible"
|
|
41
|
+
id="Arrow1Lstart"
|
|
42
|
+
refX="0"
|
|
43
|
+
refY="0"
|
|
44
|
+
orient="auto"
|
|
45
|
+
inkscape:stockid="Arrow1Lstart"
|
|
46
|
+
inkscape:isstock="true">
|
|
47
|
+
<path
|
|
48
|
+
transform="matrix(0.8,0,0,0.8,10,0)"
|
|
49
|
+
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
50
|
+
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
|
51
|
+
id="path1091" />
|
|
52
|
+
</marker>
|
|
53
|
+
</defs>
|
|
54
|
+
<g
|
|
55
|
+
inkscape:label="Layer 1"
|
|
56
|
+
inkscape:groupmode="layer"
|
|
57
|
+
id="layer1">
|
|
58
|
+
<path
|
|
59
|
+
id="path21969"
|
|
60
|
+
style="fill:#f7d671;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
61
|
+
d="M 16.571085,3.6736585 C 8.5637309,12.287728 7.1478702,36.948696 3.6732668,48.054714 c 23.2929232,0 23.3000572,0 42.6807552,0 C 42.879416,36.948696 41.464266,12.287728 33.456914,3.6736585 l -4.280042,6.7729905 c -2.381908,-0.9855754 -5.171736,-1.0539514 -8.325746,0 z"
|
|
62
|
+
sodipodi:nodetypes="ccccccc" />
|
|
63
|
+
<path
|
|
64
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
65
|
+
d="m 6.6596411,21.623929 5.3567909,2.292792"
|
|
66
|
+
id="path26660" />
|
|
67
|
+
<path
|
|
68
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
69
|
+
d="m 4.6055952,28.532349 5.8180298,0.32036"
|
|
70
|
+
id="path26660-5" />
|
|
71
|
+
<path
|
|
72
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
73
|
+
d="m 43.195616,21.623929 -5.35679,2.292792"
|
|
74
|
+
id="path26660-2" />
|
|
75
|
+
<path
|
|
76
|
+
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
77
|
+
d="m 45.249662,28.532349 -5.81803,0.32036"
|
|
78
|
+
id="path26660-5-5" />
|
|
79
|
+
<ellipse
|
|
80
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.99937;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
81
|
+
id="path28034"
|
|
82
|
+
cx="19.004335"
|
|
83
|
+
cy="22.972601"
|
|
84
|
+
rx="2"
|
|
85
|
+
ry="3" />
|
|
86
|
+
<ellipse
|
|
87
|
+
style="fill:#000000;fill-opacity:0.997669;stroke:none;stroke-width:4.99937;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
|
88
|
+
id="path28034-1"
|
|
89
|
+
cx="30.8407"
|
|
90
|
+
cy="22.837452"
|
|
91
|
+
rx="2"
|
|
92
|
+
ry="3" />
|
|
93
|
+
<path
|
|
94
|
+
id="path28549"
|
|
95
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
96
|
+
d="m 25.085702,30.315542 c 10e-7,0.820316 -0.546404,1.540203 -1.336495,1.76083 -0.79009,0.220626 -1.630409,-0.112029 -2.055404,-0.81367 -0.424994,-0.70164 -0.330602,-1.600464 0.230882,-2.198508"
|
|
97
|
+
sodipodi:nodetypes="cssc" />
|
|
98
|
+
<path
|
|
99
|
+
id="path28549-7"
|
|
100
|
+
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
|
101
|
+
d="m 25.085702,30.315542 c 0,0.820316 0.546405,1.540203 1.336496,1.76083 0.79009,0.220626 1.630409,-0.112029 2.055404,-0.81367 0.424994,-0.70164 0.330602,-1.600464 -0.230882,-2.198507"
|
|
102
|
+
sodipodi:nodetypes="cssc" />
|
|
103
|
+
</g>
|
|
104
|
+
</svg>
|