mkprompt 1.0.0 → 1.0.2
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/README.md +31 -26
- package/black-favicon.svg +42 -0
- package/package.json +13 -6
- package/white-favicon.svg +42 -0
- package/favicon.svg +0 -42
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<img src="favicon.svg" alt="mkprompt logo" width="120" height="120">
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
1
|
# mkprompt - Dynamic Prompt Generator
|
|
6
2
|
|
|
7
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<picture>
|
|
5
|
+
<source media="(prefers-color-scheme: dark)" srcset="./black-favicon.svg">
|
|
6
|
+
<source media="(prefers-color-scheme: light)" srcset="./white-favicon.svg">
|
|
7
|
+
<img src="./black-favicon.svg" alt="mkcommit logo" width="150">
|
|
8
|
+
</picture>
|
|
9
|
+
</p>
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
[](https://www.npmjs.com/package/mkprompt)
|
|
11
|
-
[](https://github.com/yourusername/mkprompt/blob/main/LICENSE)
|
|
11
|
+
A CLI tool that generates dynamic prompts from templates using variable substitution, perfect for AI assistants and repeatable workflows.
|
|
12
12
|
|
|
13
13
|
## Features
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
15
|
+
- 🚀 **Interactive CLI** - Select prompts and fill variables interactively
|
|
16
|
+
- 📝 **Dynamic Variables** - Use `<?variable_name?>` syntax for templating
|
|
17
|
+
- ⚙️ **Configurable** - Customize paths, comments, and output settings
|
|
18
|
+
- 🎯 **AI-Friendly** - Generate prompts ready for ChatGPT, Claude, and others
|
|
19
|
+
- 🔧 **Zero Dependencies** - Pure Node.js, no external dependencies
|
|
20
|
+
- 📁 **Organized Output** - Timestamped files for easy tracking
|
|
21
|
+
- 🎨 **Beautiful CLI** - Colorful and intuitive interface
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
@@ -35,6 +35,7 @@ mkprompt config
|
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
This creates:
|
|
38
|
+
|
|
38
39
|
- `mkprompt.config.json` - Configuration file
|
|
39
40
|
- `prompts/` - Directory for your prompt templates
|
|
40
41
|
- `mkprompt/` - Output directory (added to .gitignore)
|
|
@@ -117,11 +118,11 @@ The `mkprompt.config.json` file:
|
|
|
117
118
|
}
|
|
118
119
|
```
|
|
119
120
|
|
|
120
|
-
| Option
|
|
121
|
-
|
|
122
|
-
| `prompts_path`
|
|
123
|
-
| `first_comment` | Comment added at the beginning
|
|
124
|
-
| `last_comment`
|
|
121
|
+
| Option | Description | Default |
|
|
122
|
+
| --------------- | ------------------------------------- | -------------------------------------- |
|
|
123
|
+
| `prompts_path` | Directory containing prompt templates | `"./prompts"` |
|
|
124
|
+
| `first_comment` | Comment added at the beginning | `"/* Prompt Generated by mkprompt */"` |
|
|
125
|
+
| `last_comment` | Comment added at the end | `"/* End of Prompt */"` |
|
|
125
126
|
|
|
126
127
|
## Output Format
|
|
127
128
|
|
|
@@ -204,12 +205,12 @@ Constraints:
|
|
|
204
205
|
|
|
205
206
|
## Commands
|
|
206
207
|
|
|
207
|
-
| Command
|
|
208
|
-
|
|
209
|
-
| `mkprompt`
|
|
210
|
-
| `mkprompt config`
|
|
211
|
-
| `mkprompt help`
|
|
212
|
-
| `mkprompt --version` | Show version
|
|
208
|
+
| Command | Description |
|
|
209
|
+
| -------------------- | ------------------------------------ |
|
|
210
|
+
| `mkprompt` | Interactive prompt generation |
|
|
211
|
+
| `mkprompt config` | Create configuration and directories |
|
|
212
|
+
| `mkprompt help` | Show help message |
|
|
213
|
+
| `mkprompt --version` | Show version |
|
|
213
214
|
|
|
214
215
|
## Directory Structure
|
|
215
216
|
|
|
@@ -268,6 +269,10 @@ Contributions are welcome! Please feel free to submit pull requests or open issu
|
|
|
268
269
|
|
|
269
270
|
MIT License - see [LICENSE](LICENSE) file for details.
|
|
270
271
|
|
|
272
|
+
## Author
|
|
273
|
+
|
|
274
|
+
**David200197** - [GitHub](https://github.com/David200197)
|
|
275
|
+
|
|
271
276
|
## Related Projects
|
|
272
277
|
|
|
273
278
|
- [mkctx](https://github.com/David200197/mkctx) - Generate markdown context from your codebase
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="150px"
|
|
6
|
+
height="150px"
|
|
7
|
+
viewBox="0 0 185.34061 170.62704"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
12
|
+
sodipodi:docname="mkprompt.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#000000"
|
|
20
|
+
borderopacity="0.25"
|
|
21
|
+
inkscape:showpageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:deskcolor="#d1d1d1"
|
|
25
|
+
inkscape:document-units="mm"
|
|
26
|
+
inkscape:zoom="0.68862935"
|
|
27
|
+
inkscape:cx="337.6272"
|
|
28
|
+
inkscape:cy="289.70592"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="991"
|
|
31
|
+
inkscape:window-x="-9"
|
|
32
|
+
inkscape:window-y="-9"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1" /><defs
|
|
35
|
+
id="defs1" /><g
|
|
36
|
+
inkscape:label="Layer 1"
|
|
37
|
+
inkscape:groupmode="layer"
|
|
38
|
+
id="layer1"
|
|
39
|
+
transform="translate(-15.975855,-72.183293)"><path
|
|
40
|
+
style="fill:#000000"
|
|
41
|
+
d="m 71.009185,228.7874 v -14.02291 h 2.51354 2.51354 v 1.37314 1.37315 l 0.8599,-0.88409 c 1.33986,-1.37755 3.1888,-2.12115 5.28174,-2.1242 5.92197,-0.009 9.96332,5.24915 9.02753,11.74476 -0.51731,3.59083 -2.19426,5.91124 -5.33761,7.38575 -1.46589,0.68763 -2.07282,0.82389 -3.61385,0.81136 -2.26704,-0.0184 -3.50158,-0.40519 -5.03874,-1.57853 l -1.17897,-0.89993 v 5.42221 5.42221 h -2.51354 -2.51354 z m 12.3873,0.90047 c 2.01364,-1.00344 2.79284,-2.43143 2.78717,-5.10792 -0.007,-3.45528 -1.55828,-5.47119 -4.43801,-5.7684 -3.55142,-0.36654 -5.71794,1.8549 -5.70357,5.84815 0.01,2.67103 1.19709,4.56431 3.34254,5.32927 1.50631,0.53707 2.47591,0.4643 4.01187,-0.3011 z m 81.539775,-0.90047 v -14.02291 h 2.67247 2.67248 l -0.0947,1.19062 c -0.0521,0.65485 -0.0268,1.19063 0.0562,1.19063 0.083,0 0.48477,-0.34855 0.89291,-0.77455 0.40813,-0.426 1.34794,-1.03519 2.08846,-1.35375 1.70544,-0.73366 4.67503,-0.6378 6.58637,0.21263 1.84111,0.81918 3.7136,2.70272 4.60461,4.6318 0.69965,1.51478 0.76187,1.89798 0.76187,4.6922 0,2.78767 -0.0613,3.16749 -0.73135,4.53136 -0.90554,1.84322 -2.90899,3.75367 -4.88517,4.65839 -1.15198,0.52739 -1.93028,0.68799 -3.36499,0.69433 -2.2586,0.01 -3.48529,-0.37562 -5.0889,-1.59968 l -1.2148,-0.92728 0.15701,5.44956 0.15701,5.44957 h -2.63472 -2.63471 z m 12.31407,1.09018 c 1.984,-0.90121 3.02712,-2.74291 3.03028,-5.35017 0.007,-5.53814 -6.2449,-7.91505 -9.31788,-3.54274 -1.49674,2.1296 -1.20469,6.21742 0.56535,7.91322 1.49281,1.4302 3.84418,1.83277 5.72225,0.97969 z m -62.27922,4.3382 c -2.95772,-0.66649 -5.29832,-2.57899 -6.62872,-5.4163 -0.60739,-1.29537 -0.68672,-1.79279 -0.67709,-4.24541 0.009,-2.41912 0.0997,-2.97045 0.69821,-4.26642 1.76253,-3.8166 4.99129,-5.79127 9.45879,-5.78488 5.02798,0.007 8.46261,2.57894 9.71349,7.27318 1.04223,3.91122 -0.43069,8.51092 -3.4322,10.71825 -2.36284,1.73766 -6.01003,2.4252 -9.13248,1.72158 z m 5.62388,-4.84223 c 1.55043,-1.07646 2.14348,-2.42175 2.1246,-4.81948 -0.0228,-2.89486 -0.9506,-4.51813 -3.09441,-5.41387 -1.85938,-0.77689 -4.0424,-0.33711 -5.56477,1.12108 -2.01681,1.93178 -1.85054,6.94189 0.29476,8.88201 1.539,1.3918 4.41404,1.49789 6.23982,0.23026 z m 74.76045,4.88502 c -1.90698,-0.42373 -2.97853,-1.21504 -3.73888,-2.76103 -0.57657,-1.17232 -0.62334,-1.62504 -0.71048,-6.87732 l -0.0933,-5.6224 h -1.82577 -1.82577 v -2.11667 -2.11666 h 1.85209 1.85208 v -2.64584 -2.64583 h 2.64583 2.64584 v 2.63625 2.63626 l 2.53859,0.0757 2.53859,0.0757 0.0411,2.05064 0.0411,2.05063 -2.57969,-1.1e-4 -2.57968,-1.2e-4 v 4.83592 c 0,5.39021 0.0953,5.74046 1.70728,6.27245 0.65611,0.21654 1.19392,0.22263 1.9174,0.0217 0.55304,-0.15357 1.09482,-0.27989 1.20396,-0.2807 0.10914,-8.1e-4 0.19844,0.88691 0.19844,1.9727 v 1.97418 l -0.99219,0.25769 c -1.80815,0.46961 -3.35593,0.53579 -4.83654,0.20679 z M 15.975855,224.42178 v -9.65729 h 2.54018 2.54019 l -0.0947,1.19062 c -0.0521,0.65485 -0.0268,1.19063 0.0562,1.19063 0.083,0 0.48844,-0.35238 0.90107,-0.78307 1.18458,-1.23644 2.79123,-1.86277 4.77834,-1.86277 2.06724,0 3.35696,0.48675 4.66384,1.76014 l 0.96527,0.94054 1.31926,-1.04281 c 1.64081,-1.29699 3.19919,-1.74936 5.5657,-1.61564 2.56112,0.14471 4.10675,1.11134 5.20335,3.25412 l 0.7978,1.55892 0.0815,7.36195 0.0815,7.36195 h -2.51236 -2.51236 l -0.0827,-6.68073 c -0.0916,-7.40558 -0.17792,-7.79456 -1.85939,-8.38072 -2.02775,-0.70688 -3.86712,0.0358 -4.71513,1.9039 -0.45258,0.99699 -0.5086,1.77536 -0.51378,7.13828 l -0.006,6.01927 -2.4474,-3.8e-4 -2.44739,-3.8e-4 v -6.41577 c 0,-5.98722 -0.0362,-6.47762 -0.54168,-7.3418 -1.04226,-1.78182 -3.90654,-2.07478 -5.42631,-0.55501 -1.12741,1.1274 -1.30497,2.29054 -1.30658,8.55865 l -0.001,5.75469 h -2.51354 -2.51354 z m 33.60208,-4.23333 v -13.89063 h 2.52092 2.52092 l -0.0735,8.20223 c -0.0404,4.51122 -0.014,8.19782 0.0588,8.19246 0.0728,-0.005 1.68011,-1.7829 3.57188,-3.95005 l 3.43958,-3.94029 3.10886,-0.0188 c 1.70986,-0.0104 3.10885,0.0627 3.10885,0.16238 0,0.0997 -0.98227,1.20122 -2.18281,2.44789 -3.25631,3.38139 -5.49011,5.81896 -5.49011,5.99093 0,0.084 0.69124,1.00665 1.5361,2.05024 2.32876,2.87656 6.4014,8.26198 6.4014,8.46483 0,0.0987 -1.34025,0.17947 -2.97835,0.17947 h -2.97834 l -2.37947,-3.10362 c -1.3087,-1.70698 -2.97477,-3.92355 -3.70238,-4.92569 l -1.32292,-1.82207 -0.072,4.92569 -0.072,4.92569 h -2.5077 -2.5077 z m 44.97916,4.23333 v -9.65729 h 2.38125 2.38125 v 1.4949 1.49491 l 0.764265,-1.05503 c 1.02144,-1.41007 2.73339,-2.19937 4.77032,-2.19937 h 1.57161 l 0.0849,2.35744 0.0849,2.35745 -2.1636,0.0899 c -2.54144,0.10566 -3.33107,0.54097 -4.25254,2.34432 -0.562225,1.10031 -0.595305,1.47803 -0.595305,6.79753 v 5.63248 h -2.51354 -2.51355 z m 36.512495,0 v -9.65729 h 2.51354 2.51354 v 1.21311 1.21311 l 1.17497,-1.03425 c 1.3689,-1.20495 2.66416,-1.65656 4.75121,-1.65656 1.84348,0 3.16613,0.52688 4.44093,1.76904 l 0.97439,0.94945 1.04913,-0.83093 c 1.7454,-1.38238 3.12806,-1.87526 5.27881,-1.88174 3.06217,-0.009 5.05044,1.17163 6.22702,3.69835 0.51192,1.09934 0.56205,1.75357 0.65391,8.53281 l 0.0995,7.34219 h -2.53535 -2.53534 v -6.37616 c 0,-7.20968 -0.12158,-7.79666 -1.77769,-8.58254 -1.10791,-0.52574 -2.89769,-0.41386 -3.90153,0.24389 -1.46041,0.95689 -1.58963,1.60527 -1.68028,8.43096 l -0.0835,6.28385 h -2.34328 -2.34327 l -0.0868,-6.41615 c -0.0748,-5.52717 -0.15159,-6.53466 -0.55431,-7.27156 -1.24034,-2.26952 -4.75019,-2.14169 -6.14709,0.22388 -0.48178,0.81588 -0.53664,1.4588 -0.61262,7.17998 l -0.0834,6.28385 h -2.49624 -2.49623 z M 63.733145,190.30141 c -7.7072,-1.69227 -13.50513,-8.08761 -14.67622,-16.18843 -0.16415,-1.13546 -0.26422,-17.11835 -0.2675,-42.72373 -0.005,-34.758227 0.053,-41.243033 0.38232,-43.127073 1.30695,-7.477933 6.53077,-13.130524 14.30636,-15.480621 1.48584,-0.449082 4.00288,-0.482114 43.117525,-0.565849 43.1236,-0.09232 45.10845,-0.05117 48.1588,0.998303 5.16058,1.7755 9.2319,5.366506 11.54713,10.184864 1.90689,3.968521 1.8,1.115593 1.8051,48.177986 0.005,41.60785 -0.005,42.39417 -0.52878,44.44999 -1.71253,6.71962 -6.19796,11.65009 -12.5635,13.81004 l -2.11667,0.71822 -43.78853,0.0474 c -35.383705,0.0383 -44.093245,-0.0195 -45.376035,-0.30113 z m 32.96879,-12.18171 5.007765,-4.89479 h 17.04875 c 12.68284,0 17.23826,-0.0814 17.7888,-0.31783 1.47596,-0.63388 2.26865,-1.37541 2.88475,-2.69856 l 0.62825,-1.34924 0.003,-15.29023 c 0.002,-14.51204 -0.023,-15.34018 -0.50083,-16.27187 -0.5834,-1.13761 -1.3971,-1.93432 -2.5923,-2.5382 -0.7638,-0.38591 -3.55509,-0.42782 -28.49163,-0.42782 -18.889015,0 -27.880775,0.0891 -28.389695,0.28141 -1.05892,0.40009 -2.18643,1.52947 -2.75675,2.7613 -0.45869,0.99071 -0.49037,2.02668 -0.49581,16.21422 -0.006,16.5418 -0.0341,16.21664 1.52958,17.88424 1.33286,1.4214 2.46555,1.74033 6.20367,1.74677 l 3.37344,0.006 v 3.98614 c 0,5.05903 0.32314,5.77831 2.60343,5.79502 1.136,0.008 1.20152,-0.0437 6.15599,-4.88637 z m 12.711575,-9.79674 c -0.91671,-0.77136 -1.26384,-1.94193 -0.83674,-2.8216 0.16312,-0.33595 2.70113,-2.9586 5.64001,-5.8281 l 5.34344,-5.21728 -5.47668,-5.36606 c -5.7801,-5.66334 -5.97267,-5.93677 -5.41548,-7.6892 0.12865,-0.4046 0.57227,-0.91062 0.98583,-1.12448 1.63641,-0.84622 1.73296,-0.78092 8.47569,5.73126 7.4556,7.20069 7.64834,7.41522 7.64834,8.51277 0,0.73755 -0.78802,1.62194 -6.81869,7.65261 -6.42561,6.42561 -6.87439,6.81869 -7.7849,6.81869 -0.64738,0 -1.22843,-0.22063 -1.76082,-0.66861 z m -14.411315,-8.84503 -3.9574,-3.9574 0.14927,-1.11286 c 0.13436,-1.00173 0.50128,-1.46706 3.67438,-4.65978 3.65622,-3.67884 4.477,-4.30423 5.648985,-4.30423 1.01697,0 2.24175,1.32318 2.24175,2.42185 0,0.76032 -0.36428,1.23538 -2.778125,3.62307 -1.52797,1.51141 -2.77812,2.81691 -2.77812,2.90112 0,0.0842 1.25015,1.42175 2.77812,2.97232 2.904735,2.94771 3.183945,3.49406 2.470325,4.83393 -0.48863,0.91742 -1.06244,1.22193 -2.3196,1.23096 -1.161155,0.008 -1.209445,-0.0288 -5.129585,-3.94898 z m 35.141355,-30.991 c 2.5248,-0.67999 4.3658,-3.00732 4.36546,-5.51866 l -1.6e-4,-1.20482 1.27777,0.0886 c 1.79522,0.12451 3.13866,-0.48967 3.62687,-1.65811 0.45912,-1.09884 0.53203,-6.10105 0.11101,-7.61699 -0.3932,-1.41579 -1.0868,-1.79374 -3.29179,-1.79374 h -1.86289 l -0.3212,-1.35219 c -1.05554,-4.44357 -4.02416,-7.76286 -8.43494,-9.431327 -1.74316,-0.65939 -2.09705,-0.69322 -8.36857,-0.80009 l -6.54843,-0.11159 v -3.47896 l 1e-5,-3.47896 0.95402,-0.761211 c 1.7288,-1.379414 2.43894,-4.08431 1.59106,-6.060307 -0.44522,-1.037587 -1.88284,-2.438682 -2.89305,-2.819545 -1.82495,-0.688033 -4.31037,-0.09478 -5.65869,1.350697 -0.80598,0.864063 -1.40169,2.392159 -1.40169,3.595598 0,1.350915 0.99245,3.248435 2.04033,3.901018 l 0.84971,0.529167 0.0102,3.638023 0.0102,3.63802 -5.75469,0.004 c -4.163535,0.003 -6.217385,0.11299 -7.428155,0.39843 -4.069,0.959257 -7.31759,3.519307 -9.02813,7.114647 -0.56006,1.17716 -1.09538,2.58678 -1.1896,3.13249 l -0.17131,0.99218 h -1.86045 c -1.70351,0 -1.92569,0.0652 -2.63384,0.7734 l -0.7734,0.7734 v 3.87716 3.87716 l 0.75073,0.75074 c 0.78307,0.78307 2.58097,1.24411 3.88183,0.99544 0.63361,-0.12113 0.65911,-0.0731 0.65911,1.24057 0,2.62629 1.68265,4.88365 4.06352,5.4514 1.37094,0.32693 42.207415,0.29346 43.429175,-0.0356 z m -35.091405,-9.50319 c -2.78457,-1.47141 -3.60268,-4.90034 -1.77993,-7.46016 1.3952,-1.95937 4.97156,-2.41746 6.970455,-0.89283 1.83314,1.39821 2.43346,3.77476 1.48247,5.86882 -1.20456,2.65244 -4.225965,3.77722 -6.672995,2.48417 z m 23.054755,0.12546 c -1.97062,-0.88908 -2.9879,-2.41761 -2.9879,-4.4895 0,-2.84685 2.09032,-4.89479 4.99611,-4.89479 3.76039,0 5.97372,3.63644 4.30784,7.07767 -0.32282,0.66686 -0.98497,1.43975 -1.55877,1.81948 -1.28335,0.84928 -3.46047,1.07221 -4.75728,0.48714 z"
|
|
42
|
+
id="path1" /></g></svg>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mkprompt",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "A CLI tool that generates dynamic prompts from templates using variable substitution, perfect for AI assistants and repeatable workflows.",
|
|
5
5
|
"main": "bin/mkprompt.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"mkprompt": "./bin/mkprompt.js"
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
"llm",
|
|
25
25
|
"cli",
|
|
26
26
|
"markdown",
|
|
27
|
-
"dynamic-prompts"
|
|
27
|
+
"dynamic-prompts",
|
|
28
|
+
"prompt-generator",
|
|
29
|
+
"ai-prompts",
|
|
30
|
+
"templating"
|
|
28
31
|
],
|
|
29
32
|
"author": "David200197",
|
|
30
33
|
"license": "MIT",
|
|
@@ -33,6 +36,10 @@
|
|
|
33
36
|
},
|
|
34
37
|
"repository": {
|
|
35
38
|
"type": "git",
|
|
36
|
-
"url": ""
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
+
"url": "git+https://github.com/David200197/mkprompt.git"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/David200197/mkprompt/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/David200197/mkprompt#readme"
|
|
45
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="150px"
|
|
6
|
+
height="150px"
|
|
7
|
+
viewBox="0 0 185.34061 170.62704"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg1"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
12
|
+
sodipodi:docname="mkprompt.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
17
|
+
id="namedview1"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#000000"
|
|
20
|
+
borderopacity="0.25"
|
|
21
|
+
inkscape:showpageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
inkscape:deskcolor="#d1d1d1"
|
|
25
|
+
inkscape:document-units="mm"
|
|
26
|
+
inkscape:zoom="0.68862935"
|
|
27
|
+
inkscape:cx="337.6272"
|
|
28
|
+
inkscape:cy="289.70592"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="991"
|
|
31
|
+
inkscape:window-x="-9"
|
|
32
|
+
inkscape:window-y="-9"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="layer1" /><defs
|
|
35
|
+
id="defs1" /><g
|
|
36
|
+
inkscape:label="Layer 1"
|
|
37
|
+
inkscape:groupmode="layer"
|
|
38
|
+
id="layer1"
|
|
39
|
+
transform="translate(-15.975855,-72.183293)"><path
|
|
40
|
+
style="fill:#ffffff"
|
|
41
|
+
d="m 71.009185,228.7874 v -14.02291 h 2.51354 2.51354 v 1.37314 1.37315 l 0.8599,-0.88409 c 1.33986,-1.37755 3.1888,-2.12115 5.28174,-2.1242 5.92197,-0.009 9.96332,5.24915 9.02753,11.74476 -0.51731,3.59083 -2.19426,5.91124 -5.33761,7.38575 -1.46589,0.68763 -2.07282,0.82389 -3.61385,0.81136 -2.26704,-0.0184 -3.50158,-0.40519 -5.03874,-1.57853 l -1.17897,-0.89993 v 5.42221 5.42221 h -2.51354 -2.51354 z m 12.3873,0.90047 c 2.01364,-1.00344 2.79284,-2.43143 2.78717,-5.10792 -0.007,-3.45528 -1.55828,-5.47119 -4.43801,-5.7684 -3.55142,-0.36654 -5.71794,1.8549 -5.70357,5.84815 0.01,2.67103 1.19709,4.56431 3.34254,5.32927 1.50631,0.53707 2.47591,0.4643 4.01187,-0.3011 z m 81.539775,-0.90047 v -14.02291 h 2.67247 2.67248 l -0.0947,1.19062 c -0.0521,0.65485 -0.0268,1.19063 0.0562,1.19063 0.083,0 0.48477,-0.34855 0.89291,-0.77455 0.40813,-0.426 1.34794,-1.03519 2.08846,-1.35375 1.70544,-0.73366 4.67503,-0.6378 6.58637,0.21263 1.84111,0.81918 3.7136,2.70272 4.60461,4.6318 0.69965,1.51478 0.76187,1.89798 0.76187,4.6922 0,2.78767 -0.0613,3.16749 -0.73135,4.53136 -0.90554,1.84322 -2.90899,3.75367 -4.88517,4.65839 -1.15198,0.52739 -1.93028,0.68799 -3.36499,0.69433 -2.2586,0.01 -3.48529,-0.37562 -5.0889,-1.59968 l -1.2148,-0.92728 0.15701,5.44956 0.15701,5.44957 h -2.63472 -2.63471 z m 12.31407,1.09018 c 1.984,-0.90121 3.02712,-2.74291 3.03028,-5.35017 0.007,-5.53814 -6.2449,-7.91505 -9.31788,-3.54274 -1.49674,2.1296 -1.20469,6.21742 0.56535,7.91322 1.49281,1.4302 3.84418,1.83277 5.72225,0.97969 z m -62.27922,4.3382 c -2.95772,-0.66649 -5.29832,-2.57899 -6.62872,-5.4163 -0.60739,-1.29537 -0.68672,-1.79279 -0.67709,-4.24541 0.009,-2.41912 0.0997,-2.97045 0.69821,-4.26642 1.76253,-3.8166 4.99129,-5.79127 9.45879,-5.78488 5.02798,0.007 8.46261,2.57894 9.71349,7.27318 1.04223,3.91122 -0.43069,8.51092 -3.4322,10.71825 -2.36284,1.73766 -6.01003,2.4252 -9.13248,1.72158 z m 5.62388,-4.84223 c 1.55043,-1.07646 2.14348,-2.42175 2.1246,-4.81948 -0.0228,-2.89486 -0.9506,-4.51813 -3.09441,-5.41387 -1.85938,-0.77689 -4.0424,-0.33711 -5.56477,1.12108 -2.01681,1.93178 -1.85054,6.94189 0.29476,8.88201 1.539,1.3918 4.41404,1.49789 6.23982,0.23026 z m 74.76045,4.88502 c -1.90698,-0.42373 -2.97853,-1.21504 -3.73888,-2.76103 -0.57657,-1.17232 -0.62334,-1.62504 -0.71048,-6.87732 l -0.0933,-5.6224 h -1.82577 -1.82577 v -2.11667 -2.11666 h 1.85209 1.85208 v -2.64584 -2.64583 h 2.64583 2.64584 v 2.63625 2.63626 l 2.53859,0.0757 2.53859,0.0757 0.0411,2.05064 0.0411,2.05063 -2.57969,-1.1e-4 -2.57968,-1.2e-4 v 4.83592 c 0,5.39021 0.0953,5.74046 1.70728,6.27245 0.65611,0.21654 1.19392,0.22263 1.9174,0.0217 0.55304,-0.15357 1.09482,-0.27989 1.20396,-0.2807 0.10914,-8.1e-4 0.19844,0.88691 0.19844,1.9727 v 1.97418 l -0.99219,0.25769 c -1.80815,0.46961 -3.35593,0.53579 -4.83654,0.20679 z M 15.975855,224.42178 v -9.65729 h 2.54018 2.54019 l -0.0947,1.19062 c -0.0521,0.65485 -0.0268,1.19063 0.0562,1.19063 0.083,0 0.48844,-0.35238 0.90107,-0.78307 1.18458,-1.23644 2.79123,-1.86277 4.77834,-1.86277 2.06724,0 3.35696,0.48675 4.66384,1.76014 l 0.96527,0.94054 1.31926,-1.04281 c 1.64081,-1.29699 3.19919,-1.74936 5.5657,-1.61564 2.56112,0.14471 4.10675,1.11134 5.20335,3.25412 l 0.7978,1.55892 0.0815,7.36195 0.0815,7.36195 h -2.51236 -2.51236 l -0.0827,-6.68073 c -0.0916,-7.40558 -0.17792,-7.79456 -1.85939,-8.38072 -2.02775,-0.70688 -3.86712,0.0358 -4.71513,1.9039 -0.45258,0.99699 -0.5086,1.77536 -0.51378,7.13828 l -0.006,6.01927 -2.4474,-3.8e-4 -2.44739,-3.8e-4 v -6.41577 c 0,-5.98722 -0.0362,-6.47762 -0.54168,-7.3418 -1.04226,-1.78182 -3.90654,-2.07478 -5.42631,-0.55501 -1.12741,1.1274 -1.30497,2.29054 -1.30658,8.55865 l -0.001,5.75469 h -2.51354 -2.51354 z m 33.60208,-4.23333 v -13.89063 h 2.52092 2.52092 l -0.0735,8.20223 c -0.0404,4.51122 -0.014,8.19782 0.0588,8.19246 0.0728,-0.005 1.68011,-1.7829 3.57188,-3.95005 l 3.43958,-3.94029 3.10886,-0.0188 c 1.70986,-0.0104 3.10885,0.0627 3.10885,0.16238 0,0.0997 -0.98227,1.20122 -2.18281,2.44789 -3.25631,3.38139 -5.49011,5.81896 -5.49011,5.99093 0,0.084 0.69124,1.00665 1.5361,2.05024 2.32876,2.87656 6.4014,8.26198 6.4014,8.46483 0,0.0987 -1.34025,0.17947 -2.97835,0.17947 h -2.97834 l -2.37947,-3.10362 c -1.3087,-1.70698 -2.97477,-3.92355 -3.70238,-4.92569 l -1.32292,-1.82207 -0.072,4.92569 -0.072,4.92569 h -2.5077 -2.5077 z m 44.97916,4.23333 v -9.65729 h 2.38125 2.38125 v 1.4949 1.49491 l 0.764265,-1.05503 c 1.02144,-1.41007 2.73339,-2.19937 4.77032,-2.19937 h 1.57161 l 0.0849,2.35744 0.0849,2.35745 -2.1636,0.0899 c -2.54144,0.10566 -3.33107,0.54097 -4.25254,2.34432 -0.562225,1.10031 -0.595305,1.47803 -0.595305,6.79753 v 5.63248 h -2.51354 -2.51355 z m 36.512495,0 v -9.65729 h 2.51354 2.51354 v 1.21311 1.21311 l 1.17497,-1.03425 c 1.3689,-1.20495 2.66416,-1.65656 4.75121,-1.65656 1.84348,0 3.16613,0.52688 4.44093,1.76904 l 0.97439,0.94945 1.04913,-0.83093 c 1.7454,-1.38238 3.12806,-1.87526 5.27881,-1.88174 3.06217,-0.009 5.05044,1.17163 6.22702,3.69835 0.51192,1.09934 0.56205,1.75357 0.65391,8.53281 l 0.0995,7.34219 h -2.53535 -2.53534 v -6.37616 c 0,-7.20968 -0.12158,-7.79666 -1.77769,-8.58254 -1.10791,-0.52574 -2.89769,-0.41386 -3.90153,0.24389 -1.46041,0.95689 -1.58963,1.60527 -1.68028,8.43096 l -0.0835,6.28385 h -2.34328 -2.34327 l -0.0868,-6.41615 c -0.0748,-5.52717 -0.15159,-6.53466 -0.55431,-7.27156 -1.24034,-2.26952 -4.75019,-2.14169 -6.14709,0.22388 -0.48178,0.81588 -0.53664,1.4588 -0.61262,7.17998 l -0.0834,6.28385 h -2.49624 -2.49623 z M 63.733145,190.30141 c -7.7072,-1.69227 -13.50513,-8.08761 -14.67622,-16.18843 -0.16415,-1.13546 -0.26422,-17.11835 -0.2675,-42.72373 -0.005,-34.758227 0.053,-41.243033 0.38232,-43.127073 1.30695,-7.477933 6.53077,-13.130524 14.30636,-15.480621 1.48584,-0.449082 4.00288,-0.482114 43.117525,-0.565849 43.1236,-0.09232 45.10845,-0.05117 48.1588,0.998303 5.16058,1.7755 9.2319,5.366506 11.54713,10.184864 1.90689,3.968521 1.8,1.115593 1.8051,48.177986 0.005,41.60785 -0.005,42.39417 -0.52878,44.44999 -1.71253,6.71962 -6.19796,11.65009 -12.5635,13.81004 l -2.11667,0.71822 -43.78853,0.0474 c -35.383705,0.0383 -44.093245,-0.0195 -45.376035,-0.30113 z m 32.96879,-12.18171 5.007765,-4.89479 h 17.04875 c 12.68284,0 17.23826,-0.0814 17.7888,-0.31783 1.47596,-0.63388 2.26865,-1.37541 2.88475,-2.69856 l 0.62825,-1.34924 0.003,-15.29023 c 0.002,-14.51204 -0.023,-15.34018 -0.50083,-16.27187 -0.5834,-1.13761 -1.3971,-1.93432 -2.5923,-2.5382 -0.7638,-0.38591 -3.55509,-0.42782 -28.49163,-0.42782 -18.889015,0 -27.880775,0.0891 -28.389695,0.28141 -1.05892,0.40009 -2.18643,1.52947 -2.75675,2.7613 -0.45869,0.99071 -0.49037,2.02668 -0.49581,16.21422 -0.006,16.5418 -0.0341,16.21664 1.52958,17.88424 1.33286,1.4214 2.46555,1.74033 6.20367,1.74677 l 3.37344,0.006 v 3.98614 c 0,5.05903 0.32314,5.77831 2.60343,5.79502 1.136,0.008 1.20152,-0.0437 6.15599,-4.88637 z m 12.711575,-9.79674 c -0.91671,-0.77136 -1.26384,-1.94193 -0.83674,-2.8216 0.16312,-0.33595 2.70113,-2.9586 5.64001,-5.8281 l 5.34344,-5.21728 -5.47668,-5.36606 c -5.7801,-5.66334 -5.97267,-5.93677 -5.41548,-7.6892 0.12865,-0.4046 0.57227,-0.91062 0.98583,-1.12448 1.63641,-0.84622 1.73296,-0.78092 8.47569,5.73126 7.4556,7.20069 7.64834,7.41522 7.64834,8.51277 0,0.73755 -0.78802,1.62194 -6.81869,7.65261 -6.42561,6.42561 -6.87439,6.81869 -7.7849,6.81869 -0.64738,0 -1.22843,-0.22063 -1.76082,-0.66861 z m -14.411315,-8.84503 -3.9574,-3.9574 0.14927,-1.11286 c 0.13436,-1.00173 0.50128,-1.46706 3.67438,-4.65978 3.65622,-3.67884 4.477,-4.30423 5.648985,-4.30423 1.01697,0 2.24175,1.32318 2.24175,2.42185 0,0.76032 -0.36428,1.23538 -2.778125,3.62307 -1.52797,1.51141 -2.77812,2.81691 -2.77812,2.90112 0,0.0842 1.25015,1.42175 2.77812,2.97232 2.904735,2.94771 3.183945,3.49406 2.470325,4.83393 -0.48863,0.91742 -1.06244,1.22193 -2.3196,1.23096 -1.161155,0.008 -1.209445,-0.0288 -5.129585,-3.94898 z m 35.141355,-30.991 c 2.5248,-0.67999 4.3658,-3.00732 4.36546,-5.51866 l -1.6e-4,-1.20482 1.27777,0.0886 c 1.79522,0.12451 3.13866,-0.48967 3.62687,-1.65811 0.45912,-1.09884 0.53203,-6.10105 0.11101,-7.61699 -0.3932,-1.41579 -1.0868,-1.79374 -3.29179,-1.79374 h -1.86289 l -0.3212,-1.35219 c -1.05554,-4.44357 -4.02416,-7.76286 -8.43494,-9.431327 -1.74316,-0.65939 -2.09705,-0.69322 -8.36857,-0.80009 l -6.54843,-0.11159 v -3.47896 l 1e-5,-3.47896 0.95402,-0.761211 c 1.7288,-1.379414 2.43894,-4.08431 1.59106,-6.060307 -0.44522,-1.037587 -1.88284,-2.438682 -2.89305,-2.819545 -1.82495,-0.688033 -4.31037,-0.09478 -5.65869,1.350697 -0.80598,0.864063 -1.40169,2.392159 -1.40169,3.595598 0,1.350915 0.99245,3.248435 2.04033,3.901018 l 0.84971,0.529167 0.0102,3.638023 0.0102,3.63802 -5.75469,0.004 c -4.163535,0.003 -6.217385,0.11299 -7.428155,0.39843 -4.069,0.959257 -7.31759,3.519307 -9.02813,7.114647 -0.56006,1.17716 -1.09538,2.58678 -1.1896,3.13249 l -0.17131,0.99218 h -1.86045 c -1.70351,0 -1.92569,0.0652 -2.63384,0.7734 l -0.7734,0.7734 v 3.87716 3.87716 l 0.75073,0.75074 c 0.78307,0.78307 2.58097,1.24411 3.88183,0.99544 0.63361,-0.12113 0.65911,-0.0731 0.65911,1.24057 0,2.62629 1.68265,4.88365 4.06352,5.4514 1.37094,0.32693 42.207415,0.29346 43.429175,-0.0356 z m -35.091405,-9.50319 c -2.78457,-1.47141 -3.60268,-4.90034 -1.77993,-7.46016 1.3952,-1.95937 4.97156,-2.41746 6.970455,-0.89283 1.83314,1.39821 2.43346,3.77476 1.48247,5.86882 -1.20456,2.65244 -4.225965,3.77722 -6.672995,2.48417 z m 23.054755,0.12546 c -1.97062,-0.88908 -2.9879,-2.41761 -2.9879,-4.4895 0,-2.84685 2.09032,-4.89479 4.99611,-4.89479 3.76039,0 5.97372,3.63644 4.30784,7.07767 -0.32282,0.66686 -0.98497,1.43975 -1.55877,1.81948 -1.28335,0.84928 -3.46047,1.07221 -4.75728,0.48714 z"
|
|
42
|
+
id="path1" /></g></svg>
|
package/favicon.svg
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
width="202.94038mm"
|
|
6
|
-
height="178.27425mm"
|
|
7
|
-
viewBox="0 0 202.94038 178.27425"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
xml:space="preserve"
|
|
11
|
-
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
12
|
-
sodipodi:docname="mkprompt.svg"
|
|
13
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
-
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
17
|
-
id="namedview1"
|
|
18
|
-
pagecolor="#ffffff"
|
|
19
|
-
bordercolor="#000000"
|
|
20
|
-
borderopacity="0.25"
|
|
21
|
-
inkscape:showpageshadow="2"
|
|
22
|
-
inkscape:pageopacity="0.0"
|
|
23
|
-
inkscape:pagecheckerboard="0"
|
|
24
|
-
inkscape:deskcolor="#d1d1d1"
|
|
25
|
-
inkscape:document-units="mm"
|
|
26
|
-
inkscape:zoom="0.68862935"
|
|
27
|
-
inkscape:cx="387.00064"
|
|
28
|
-
inkscape:cy="445.08704"
|
|
29
|
-
inkscape:window-width="1920"
|
|
30
|
-
inkscape:window-height="991"
|
|
31
|
-
inkscape:window-x="-9"
|
|
32
|
-
inkscape:window-y="-9"
|
|
33
|
-
inkscape:window-maximized="1"
|
|
34
|
-
inkscape:current-layer="layer1" /><defs
|
|
35
|
-
id="defs1" /><g
|
|
36
|
-
inkscape:label="Layer 1"
|
|
37
|
-
inkscape:groupmode="layer"
|
|
38
|
-
id="layer1"
|
|
39
|
-
transform="translate(-2.8295136,-30.71086)"><path
|
|
40
|
-
style="fill:#000000"
|
|
41
|
-
d="m 64.062744,208.92977 c -0.0601,-0.0606 -0.10918,-6.90686 -0.10918,-15.21384 v -15.1036 l 2.77813,-0.0385 2.77812,-0.0385 v 1.59095 1.59094 l 1.04641,-0.94537 c 2.00537,-1.81173 2.9868,-2.15891 6.10291,-2.15891 2.6112,0 2.89293,0.0538 4.54681,0.86798 4.35446,2.1437 6.6286,7.0156 5.83058,12.49085 -0.57941,3.97528 -2.59639,6.80479 -6.06982,8.515 -1.6652,0.8199 -1.97,0.88034 -4.43961,0.88034 -2.94252,0 -4.17648,-0.43366 -5.90272,-2.07442 l -0.86982,-0.82675 0.0994,5.20517 0.0994,5.20517 -2.89074,0.0819 c -1.58991,0.045 -2.93987,0.0323 -2.99992,-0.0284 z m 13.45922,-13.07883 c 2.39291,-1.00276 3.6145,-2.9591 3.62371,-5.80328 0.0126,-3.90005 -2.27521,-6.52832 -5.68273,-6.52832 -2.45074,0 -4.79755,1.68534 -5.40805,3.88375 -0.72604,2.61447 -0.006,5.92101 1.61447,7.41059 1.36077,1.2511 4.15889,1.74701 5.8526,1.03726 z m 88.889326,-2.08423 0.0683,-15.14102 2.86606,-0.0386 2.86606,-0.0386 -0.0879,1.55406 c -0.0484,0.85474 -0.0459,1.55385 0.005,1.55358 0.0514,-2.7e-4 0.68,-0.52787 1.39694,-1.17246 1.76353,-1.58556 3.38121,-2.09837 6.1594,-1.95256 4.02316,0.21117 7.50204,2.56101 9.21846,6.22671 0.70191,1.49905 0.85658,2.18455 0.94445,4.1858 0.23858,5.43342 -2.02129,9.42492 -6.56787,11.60054 -1.56601,0.74936 -1.94456,0.82122 -4.23334,0.80369 -2.82459,-0.0216 -3.75346,-0.32664 -5.5397,-1.81901 -0.61872,-0.51692 -1.14345,-0.94 -1.16606,-0.94017 -0.0226,-1.7e-4 -0.004,2.32155 0.0408,5.15938 l 0.0819,5.15968 h -3.0606 -3.06059 z m 14.85041,1.47512 c 2.09619,-1.45226 3.08852,-4.69392 2.28963,-7.47949 -0.95162,-3.31812 -4.76762,-5.15374 -7.81131,-3.75751 -2.16041,0.99104 -3.30563,2.69183 -3.50771,5.20935 -0.17542,2.18526 0.46295,4.08953 1.80874,5.39558 1.28999,1.25189 2.33127,1.59938 4.44253,1.48252 1.32827,-0.0735 1.91671,-0.25366 2.77812,-0.85045 z m -69.14198,5.96854 c -2.8133,-0.55148 -6.13525,-3.01286 -7.39264,-5.47754 -3.04504,-5.96878 -0.82872,-13.27232 4.88444,-16.09592 1.76385,-0.87174 2.23735,-0.98522 4.58174,-1.09811 2.92007,-0.14062 4.72636,0.17822 6.747,1.19095 6.58231,3.299 7.86654,13.06028 2.42308,18.41746 -2.86408,2.81868 -6.89233,3.91612 -11.24362,3.06316 z m 4.82165,-5.28252 c 1.20975,-0.33596 2.72514,-1.7942 3.3932,-3.26525 1.00276,-2.20803 0.45704,-5.64117 -1.16114,-7.30471 -2.87285,-2.95337 -7.28238,-2.26 -9.26661,1.45712 -0.43258,0.81037 -0.56495,1.52326 -0.56495,3.04271 0,1.51945 0.13237,2.23234 0.56495,3.04271 1.45612,2.72778 4.06716,3.85148 7.03455,3.02742 z m 81.74379,5.19864 c -1.65801,-0.54112 -2.8243,-1.54818 -3.60321,-3.11124 -0.68521,-1.37505 -0.68881,-1.41583 -0.68881,-7.8126 v -6.43035 h -2.11666 -2.11667 v -2.59284 -2.59284 l 2.04971,0.0132 2.04971,0.0132 0.004,-2.32693 c 0.003,-1.7677 0.0989,-2.38671 0.39769,-2.57564 0.21634,-0.13679 1.55421,-0.25053 2.97304,-0.25275 l 2.57968,-0.004 v 2.48524 c 0,1.75286 0.0975,2.5178 0.33073,2.59574 0.1819,0.0608 1.43206,0.0816 2.77813,0.0464 l 2.44739,-0.0641 v 2.62778 2.62777 h -2.77812 -2.77813 v 5.05325 c 0,5.52015 0.2048,6.49972 1.48041,7.08093 0.84403,0.38456 1.58079,0.36589 2.80463,-0.0711 1.2134,-0.43326 1.27121,-0.32441 1.27121,2.39324 v 1.97762 l -1.25251,0.55404 c -1.56749,0.69338 -4.30373,0.86518 -5.83256,0.36622 z M 2.8981236,189.93188 l 0.069,-11.30293 2.84427,-0.0856 2.84427,-0.0856 v 1.77035 1.77036 l 0.6003,-0.89079 c 0.33017,-0.48994 1.1845304,-1.25169 1.8985804,-1.69278 1.21025,-0.74761 1.47002,-0.80175 3.83147,-0.7986 2.92219,0.004 4.04479,0.43923 5.61523,2.17752 l 0.92928,1.02861 1.2193,-1.10391 c 1.82445,-1.65178 2.89208,-2.07758 5.485,-2.18757 3.05149,-0.12944 4.79564,0.51085 6.47273,2.37617 2.02846,2.25614 2.23861,3.39583 2.32125,12.58881 l 0.0696,7.73925 -3.04271,-1.3e-4 -3.04271,-1.3e-4 v -7.20996 c 0,-6.68648 -0.0384,-7.28556 -0.52917,-8.25122 -0.78678,-1.54817 -1.7209,-2.12051 -3.42079,-2.09594 -1.63666,0.0237 -2.79373,0.69051 -3.52851,2.03358 -0.39791,0.72732 -0.47032,1.81671 -0.54384,8.18123 l -0.0848,7.34218 h -2.89175 -2.89174 l -0.006,-6.68073 c -0.003,-3.6744 -0.11463,-7.14776 -0.24702,-7.71858 -0.73962,-3.18903 -3.97628,-4.26035 -6.36135,-2.10558 -1.4406904,1.30158 -1.5874004,2.21425 -1.5874004,9.87518 v 6.62971 h -3.04555 -3.04555 z m 37.7721104,-4.70437 v -16.00729 l 2.57969,-0.004 c 1.41883,-0.002 2.84758,-0.0754 3.175,-0.16315 l 0.59531,-0.15954 v 9.55586 c 0,5.25572 0.0722,9.55586 0.16036,9.55586 0.0882,0 0.41554,-0.32742 0.72744,-0.72761 0.31189,-0.40018 2.01387,-2.46784 3.78217,-4.5948 l 3.21509,-3.8672 3.48486,-0.19273 c 1.91668,-0.10601 3.53139,-0.14622 3.58824,-0.0894 0.0569,0.0569 -1.11258,1.4745 -2.59874,3.15032 -4.1074,4.63154 -5.48025,6.24379 -5.48025,6.43592 0,0.0962 1.82041,2.93757 4.04536,6.31407 2.22495,3.3765 4.13698,6.28792 4.24895,6.46982 0.15884,0.25805 -0.5502,0.33073 -3.22629,0.33073 h -3.42988 l -2.96877,-4.49791 c -1.63282,-2.47386 -3.00688,-4.49792 -3.05347,-4.49792 -0.0466,0 -0.62429,0.56555 -1.28376,1.25677 l -1.19904,1.25677 -0.006,3.24115 -0.006,3.24114 h -3.175 -3.175 z m 48.90823,5.02709 c -0.0218,-6.03912 -0.0516,-11.12904 -0.0662,-11.31094 -0.0197,-0.24571 0.70463,-0.33073 2.81759,-0.33073 h 2.84405 l 0.009,1.71979 c 0.008,1.58384 0.0397,1.67796 0.4021,1.19063 1.67526,-2.25302 3.15018,-3.02852 5.775886,-3.0369 l 1.82055,-0.006 -0.164,0.99219 c -0.0902,0.5457 -0.16531,1.79025 -0.16691,2.76565 l -0.003,1.77348 -1.25677,-0.14836 c -2.810266,-0.33174 -4.961086,1.02307 -5.728926,3.60868 -0.33435,1.12587 -0.42263,2.71192 -0.42263,7.59284 v 6.16968 h -2.91042 -2.91042 z m 39.666686,-0.15787 c -0.0395,-6.12594 -0.002,-11.25018 0.0824,-11.3872 0.085,-0.1373 1.33198,-0.21489 2.77813,-0.17286 l 2.62396,0.0763 0.13229,1.5875 0.1323,1.5875 0.75402,-0.98565 c 0.42262,-0.55245 1.38437,-1.29406 2.1882,-1.68733 1.27395,-0.62329 1.66265,-0.68813 3.47931,-0.58038 1.13027,0.067 2.40904,0.31113 2.85864,0.54566 0.95298,0.49711 2.27828,1.69608 2.68401,2.42817 0.26589,0.47976 0.38369,0.42402 1.75778,-0.83182 0.85563,-0.782 1.9954,-1.52412 2.71994,-1.771 1.45574,-0.49602 4.64756,-0.55961 5.94205,-0.11839 1.50934,0.51444 3.09948,1.7648 3.83028,3.01182 1.31485,2.24362 1.41111,3.00445 1.44725,11.43902 l 0.0337,7.86448 -2.91836,0.0747 -2.91837,0.0747 -0.0813,-7.483 c -0.0713,-6.56247 -0.13895,-7.58848 -0.54984,-8.34041 -0.66889,-1.22408 -1.62108,-1.7579 -3.1356,-1.7579 -1.55546,0 -2.52607,0.61927 -3.2473,2.07186 -0.45498,0.91633 -0.50188,1.68082 -0.5062,8.25115 l -0.005,7.24125 h -2.99953 -2.99953 l -0.006,-7.20989 c -0.005,-6.57391 -0.0513,-7.3101 -0.52134,-8.34579 -0.40793,-0.89882 -0.77132,-1.24905 -1.74107,-1.67801 -1.95951,-0.86679 -3.8875,-0.28221 -5.15221,1.56218 -0.64567,0.94162 -0.64982,0.98879 -0.73084,8.30926 l -0.0815,7.36225 h -2.88943 -2.88944 z M 76.521274,166.72855 c -0.98603,-0.44012 -2.12488,-1.63466 -2.49671,-2.61878 -0.17769,-0.4703 -0.28141,-3.90087 -0.28141,-9.30756 v -8.56274 l -8.7974,-0.0895 -8.7974,-0.0895 -2.11666,-0.7433 c -5.49181,-1.92854 -9.2204,-5.15931 -11.60881,-10.05887 -2.32008,-4.75939 -2.12594,-0.79417 -2.22347,-45.413068 -0.0627,-28.702049 -0.003,-40.135885 0.21628,-41.671535 0.69055,-4.82733 2.46101,-8.432546 5.78708,-11.784315 2.28015,-2.297763 4.75063,-3.855247 7.82892,-4.935634 l 2.11666,-0.742888 h 47.492706 47.49271 l 1.98437,0.62536 c 6.64161,2.093053 11.37901,6.647617 13.67742,13.149557 l 0.74238,2.100082 0.0744,41.010415 c 0.0837,46.109026 0.21303,42.931736 -1.92799,47.360416 -2.40841,4.98177 -6.63902,8.5507 -12.43395,10.48923 l -1.85208,0.61956 -22.63278,0.13415 -22.63278,0.13414 -1.17972,0.92166 c -0.64884,0.50691 -4.989719,3.96334 -9.646379,7.68096 -11.53259,9.20697 -14.14531,11.23309 -15.13426,11.73631 -1.0165,0.51724 -2.56445,0.54092 -3.65116,0.0559 z m 21.58556,-24.16316 c 2.267686,-1.77245 4.448326,-3.3463 4.845866,-3.49744 0.4794,-0.18227 8.36089,-0.27481 23.40417,-0.27481 24.75342,0 24.24288,0.0288 27.12456,-1.53007 0.73091,-0.39539 2.02083,-1.3578 2.86649,-2.13869 1.87459,-1.73102 3.5024,-4.83183 3.9077,-7.44374 0.17019,-1.09682 0.26592,-15.32931 0.26427,-39.290626 -0.003,-41.177215 0.0556,-39.584326 -1.57185,-42.862499 -1.57812,-3.17887 -4.53769,-5.715602 -7.86862,-6.744421 -1.69551,-0.523691 -2.39876,-0.53162 -47.15362,-0.53162 -41.010876,0 -45.572296,0.0415 -46.869526,0.426382 -2.20837,0.655223 -3.75948,1.540749 -5.4493,3.110989 -1.9833,1.842961 -3.11996,3.752991 -3.78814,6.365535 -0.52356,2.04711 -0.53402,2.838046 -0.53402,40.397226 0,27.288344 0.0853,38.712594 0.29663,39.711324 1.0024,4.73811 4.46354,8.63268 8.88584,9.99859 1.59038,0.49121 2.45383,0.53162 11.36115,0.53162 9.08103,0 9.69942,0.0303 10.66547,0.52317 0.56404,0.28775 1.30343,0.91283 1.64311,1.38907 0.59951,0.84053 0.62226,1.07508 0.77685,8.00963 0.0876,3.92907 0.17689,7.17211 0.19844,7.20676 0.0216,0.0346 2.92644,-2.23127 6.45532,-5.03537 3.52888,-2.80411 8.27153,-6.54857 10.53921,-8.32101 z m -31.00941,-16.04378 c -2.37304,-0.84801 -4.33049,-2.68774 -5.48934,-5.15922 l -0.69723,-1.48696 -0.0696,-28.374489 c -0.0691,-28.132061 -0.065,-28.388447 0.48072,-30.008267 1.02074,-3.030025 2.8629,-5.01518 5.75944,-6.20653 l 1.50241,-0.617944 21.99869,-0.0063 c 21.294576,-0.0061 22.053786,0.01074 23.719876,0.525341 0.94665,0.292391 2.43777,1.010138 3.3136,1.594993 1.83179,1.22322 4.46926,3.95796 4.69865,4.871939 0.13529,0.539047 -0.75727,7.309629 -1.09569,8.311391 -0.0772,0.228561 -1.412,-0.891509 -3.6386,-3.053285 -1.93415,-1.87785 -4.10556,-3.7667 -4.82534,-4.197445 l -1.30869,-0.783172 -20.463726,-0.07248 c -20.17646,-0.07146 -20.47594,-0.06493 -21.33397,0.465361 -0.47864,0.295812 -1.0052,0.86421 -1.17015,1.263105 -0.21834,0.528028 -0.28078,8.00587 -0.22957,27.497004 l 0.0703,26.771738 0.78276,0.81698 c 0.43052,0.44934 1.20443,0.93937 1.71979,1.08896 0.62121,0.18031 9.40881,0.2452 26.07245,0.19253 l 25.135406,-0.0794 0.96402,-0.59949 c 1.81499,-1.12866 1.81411,-1.12227 1.81411,-13.20438 V 95.258077 l 3.60963,-3.897052 c 1.9853,-2.143379 3.71171,-3.897053 3.83646,-3.897053 0.33093,0 0.282,28.078018 -0.0525,30.139708 -0.68869,4.24455 -3.66885,7.70174 -7.64003,8.86298 -1.2734,0.37236 -4.57344,0.4189 -28.971879,0.40861 -21.82036,-0.009 -27.73344,-0.0826 -28.49197,-0.35366 z m 7.19997,-18.04276 c -1.17973,-0.99268 -1.53983,-2.40668 -0.93663,-3.67784 0.25978,-0.54744 0.83904,-1.21897 1.28725,-1.49229 0.77478,-0.47246 1.64643,-0.49699 17.69525,-0.49793 18.205316,-10e-4 17.836596,-0.0281 18.822366,1.37929 0.23717,0.33861 0.41293,1.13885 0.41293,1.88005 0,1.11486 -0.12244,1.41295 -0.89958,2.19009 l -0.89958,0.89958 H 92.443034 75.106664 Z M 111.64229,95.667484 c -1.74885,-1.066287 -2.37301,-3.110312 -1.47893,-4.843214 0.24029,-0.465716 2.4232,-2.93035 4.85092,-5.476964 2.42772,-2.546615 6.87783,-7.232928 9.88914,-10.414029 l 5.4751,-5.78382 -1.97605,-2.06831 c -2.62034,-2.742679 -2.93739,-4.254871 -1.27408,-6.076704 0.63296,-0.693284 1.52188,-1.017855 7.20434,-2.63052 3.56526,-1.011809 7.18554,-2.083751 8.04507,-2.382093 1.85244,-0.642983 3.5913,-0.695588 4.66359,-0.141086 0.84806,0.43855 1.57884,1.615567 1.57884,2.542936 0,1.330341 -3.21096,18.945939 -3.59021,19.696164 -0.22585,0.446781 -0.74921,1.012328 -1.16302,1.25677 -0.91936,0.54308 -2.95208,0.578099 -3.93879,0.06786 -0.53204,-0.275132 -3.5073,-3.564392 -4.15441,-4.592858 -0.0258,-0.04106 -0.92619,0.850388 -2.00079,1.980991 -1.0746,1.130603 -3.4421,3.607759 -5.26111,5.504791 -1.81901,1.897032 -4.2598,4.460628 -5.42396,5.69688 -7.56643,8.034944 -7.74445,8.187986 -9.525,8.188603 -0.59095,2.05e-4 -1.43915,-0.231822 -1.92065,-0.525393 z M 74.887594,93.42791 c -1.63309,-0.710359 -2.34232,-2.78338 -1.5346,-4.485515 0.91048,-1.918691 0.56166,-1.875298 15.07453,-1.875298 14.457816,0 14.168056,-0.03494 15.045566,1.814269 0.86638,1.825766 0.2986,3.507665 -1.47378,4.365659 -1.14771,0.555599 -1.42236,0.566739 -13.721466,0.55659 -10.075,-0.0083 -12.71598,-0.08241 -13.39025,-0.375705 z m -0.28683,-16.633321 c -2.04278,-1.13449 -2.03456,-3.966558 0.0151,-5.216328 0.8107,-0.494316 1.42375,-0.516519 14.28779,-0.517466 14.926946,-0.0011 14.685986,-0.0281 15.419676,1.727878 0.47622,1.139746 0.47217,1.56045 -0.0251,2.608397 -0.85218,1.795839 -0.43588,1.749183 -15.514666,1.738777 -10.38477,-0.0072 -13.726,-0.08756 -14.18281,-0.341258 z"
|
|
42
|
-
id="path1" /></g></svg>
|