@exaudeus/workrail 0.8.0 → 0.8.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/dist/application/app.d.ts +0 -1
- package/dist/application/app.js +0 -6
- package/dist/application/services/workflow-service.js +56 -4
- package/dist/mcp-server.js +0 -35
- package/package.json +1 -1
- package/workflows/bug-investigation.agentic.json +112 -0
- package/workflows/document-creation-workflow.json +1 -1
- package/workflows/documentation-update-workflow.json +1 -1
- package/workflows/routines/plan-analysis.json +139 -0
- package/workflows/scoped-documentation-workflow.json +252 -0
- package/workflows/workflow-diagnose-environment.json +24 -0
- package/spec/mcp-compliance-summary.md +0 -211
- package/spec/mcp-protocol-handshake.md +0 -604
- package/web/DESIGN_SYSTEM_INTEGRATION.md +0 -305
- package/web/assets/images/favicon-amber-16.png +0 -0
- package/web/assets/images/favicon-amber-32.png +0 -0
- package/web/assets/images/favicon-white-16-clean.png +0 -0
- package/web/assets/images/favicon-white-32-clean.png +0 -0
- package/web/assets/images/icon-amber-192.png +0 -0
- package/web/assets/images/icon-amber-512.png +0 -0
- package/web/assets/images/icon-amber.svg +0 -27
- package/web/assets/images/icon-white-192-clean.png +0 -0
- package/web/assets/images/icon-white-512-clean.png +0 -0
- package/web/assets/images/icon-white.svg +0 -27
- package/web/examples/BEFORE_AFTER.md +0 -691
- package/workflows/IMPROVEMENTS-simplified.md +0 -122
- package/workflows/systematic-bug-investigation-simplified.backup-20251106-155300.json +0 -117
- package/workflows/systematic-bug-investigation-with-loops.backup-20251106-162241.json +0 -731
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
# Workrail Design System Integration
|
|
2
|
-
|
|
3
|
-
## ✅ Completed (2025-10-02)
|
|
4
|
-
|
|
5
|
-
### Design System Foundation
|
|
6
|
-
All pages now include the complete design system:
|
|
7
|
-
|
|
8
|
-
```html
|
|
9
|
-
<!-- Design System v1.2 -->
|
|
10
|
-
<link rel="stylesheet" href="/assets/design-system.css"> <!-- Tokens & variables -->
|
|
11
|
-
<link rel="stylesheet" href="/assets/components.css"> <!-- UI components -->
|
|
12
|
-
<link rel="stylesheet" href="/assets/animations.css"> <!-- Animation library -->
|
|
13
|
-
<link rel="stylesheet" href="/assets/styles.css"> <!-- Global styles -->
|
|
14
|
-
<link rel="stylesheet" href="/assets/theme-toggle.css"> <!-- Theme toggle UI -->
|
|
15
|
-
|
|
16
|
-
<!-- Theme Management -->
|
|
17
|
-
<script src="/assets/theme-manager.js"></script> <!-- Theme system -->
|
|
18
|
-
<script src="/assets/theme-toggle.js"></script> <!-- Theme toggle component -->
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
### Pages Updated
|
|
22
|
-
- ✅ **Homepage** (`index.html`) - Design system linked
|
|
23
|
-
- ✅ **Bug Investigation Dashboard** (`dashboard-v2.html`) - Design system linked
|
|
24
|
-
|
|
25
|
-
### Features Available
|
|
26
|
-
|
|
27
|
-
#### 1. **Design Tokens** (`design-system.css`)
|
|
28
|
-
- Golden ratio spacing system (`--space-xs` to `--space-3xl`)
|
|
29
|
-
- Golden ratio typography (`--text-xs` to `--text-4xl`)
|
|
30
|
-
- Comprehensive color palette (10 accent colors + workflow themes)
|
|
31
|
-
- Material Design shadow scale (`--shadow-sm` to `--shadow-2xl`)
|
|
32
|
-
- Expressive border radii (`--radius-sm` to `--radius-2xl`)
|
|
33
|
-
- Animation timing curves (`--ease-in`, `--ease-out`, `--ease-spring`, etc.)
|
|
34
|
-
|
|
35
|
-
#### 2. **Dark/Light Theme System**
|
|
36
|
-
- ✅ Automatic detection via `prefers-color-scheme`
|
|
37
|
-
- ✅ Manual toggle with sun/moon icon (top-right corner)
|
|
38
|
-
- ✅ `localStorage` persistence
|
|
39
|
-
- ✅ Smooth 600ms animated transitions between themes
|
|
40
|
-
- ✅ Theme-aware colors, shadows, and glassmorphism
|
|
41
|
-
|
|
42
|
-
#### 3. **Component Library** (`components.css`)
|
|
43
|
-
- Buttons (`.btn`, `.btn-primary`, `.btn-secondary`, `.btn-ghost`, `.btn-spring`)
|
|
44
|
-
- Cards (`.card`, `.card-glass`, `.card-float`, `.card-workflow`, `.card-3d`)
|
|
45
|
-
- Stat Cards (`.stat-card`, `.stat-card-gradient`)
|
|
46
|
-
- Input Fields, Code Blocks, Tooltips, Badges
|
|
47
|
-
- Glassmorphism effects with theme support
|
|
48
|
-
|
|
49
|
-
#### 4. **Animation Library** (`animations.css`)
|
|
50
|
-
- 16 animation patterns (entrance, state change, motion, data, special effects)
|
|
51
|
-
- Micro-interactions for buttons, cards, inputs, checkboxes
|
|
52
|
-
- Celebration moments (confetti, shimmer, glow pulse)
|
|
53
|
-
- Spring physics animations (bounce, elastic, jello)
|
|
54
|
-
|
|
55
|
-
#### 5. **Interaction Enhancements**
|
|
56
|
-
- ✅ Smooth hover transitions (no more choppy animations!)
|
|
57
|
-
- ✅ Float animation pauses on hover for smooth card lift
|
|
58
|
-
- ✅ No persistent focus borders after mouse clicks
|
|
59
|
-
- ✅ Theme transitions animate smoothly (600ms fade)
|
|
60
|
-
|
|
61
|
-
### Design Philosophy Applied
|
|
62
|
-
- **Universal & Accessible**: Works for all users, not just developers
|
|
63
|
-
- **Delightfully Engaging**: Fun but professional (6.5/10 personality)
|
|
64
|
-
- **Material Expressive**: Dynamic color, expressive motion, joyful micro-interactions
|
|
65
|
-
- **Golden Ratio**: Mathematical precision in spacing, typography, shadows
|
|
66
|
-
- **Performance First**: Optimized transitions, will-change hints, smart animation budgets
|
|
67
|
-
|
|
68
|
-
### Browser Support
|
|
69
|
-
- All modern browsers (Chrome, Firefox, Safari, Edge)
|
|
70
|
-
- CSS Custom Properties required
|
|
71
|
-
- `prefers-color-scheme` for automatic theme detection
|
|
72
|
-
- `:focus-visible` for accessible focus management
|
|
73
|
-
|
|
74
|
-
## 📋 Next Steps (Optional Enhancements)
|
|
75
|
-
|
|
76
|
-
### Potential Improvements:
|
|
77
|
-
1. **Background Effects** (currently on test page only)
|
|
78
|
-
- Floating orbs with theme-aware colors
|
|
79
|
-
- Workflow-themed particle trails
|
|
80
|
-
- Time-of-day theming
|
|
81
|
-
- Scroll parallax effects
|
|
82
|
-
|
|
83
|
-
2. **Additional Components**
|
|
84
|
-
- Progress bars with gradient animations
|
|
85
|
-
- Loading spinners with spring physics
|
|
86
|
-
- Toast notifications
|
|
87
|
-
- Modal dialogs with spring entrance
|
|
88
|
-
|
|
89
|
-
3. **Page-Specific Refinements**
|
|
90
|
-
- Replace remaining inline styles with design tokens
|
|
91
|
-
- Add entrance animations to session cards
|
|
92
|
-
- Add workflow-specific color theming
|
|
93
|
-
- Enhance empty states with delightful illustrations
|
|
94
|
-
|
|
95
|
-
4. **Performance Optimizations**
|
|
96
|
-
- Lazy load animations for off-screen elements
|
|
97
|
-
- Reduce motion for users with `prefers-reduced-motion`
|
|
98
|
-
- Progressive enhancement for older browsers
|
|
99
|
-
|
|
100
|
-
## 🎨 Usage Examples
|
|
101
|
-
|
|
102
|
-
### Using Design Tokens
|
|
103
|
-
```css
|
|
104
|
-
.my-component {
|
|
105
|
-
padding: var(--space-4);
|
|
106
|
-
font-size: var(--text-lg);
|
|
107
|
-
color: var(--text-primary);
|
|
108
|
-
background: var(--bg-secondary);
|
|
109
|
-
border-radius: var(--radius-lg);
|
|
110
|
-
box-shadow: var(--shadow-md);
|
|
111
|
-
transition: all var(--duration-base) var(--ease-spring);
|
|
112
|
-
}
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
### Using Components
|
|
116
|
-
```html
|
|
117
|
-
<button class="btn btn-primary btn-spring">
|
|
118
|
-
Click Me
|
|
119
|
-
</button>
|
|
120
|
-
|
|
121
|
-
<div class="card card-glass card-float">
|
|
122
|
-
<h3>Floating Glass Card</h3>
|
|
123
|
-
<p>Smooth animations and glassmorphism!</p>
|
|
124
|
-
</div>
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### Using Animations
|
|
128
|
-
```html
|
|
129
|
-
<div class="animate-spring-in">
|
|
130
|
-
I slide in with a spring!
|
|
131
|
-
</div>
|
|
132
|
-
|
|
133
|
-
<div class="animate-fade-in">
|
|
134
|
-
I gently fade in!
|
|
135
|
-
</div>
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
## 📚 Documentation
|
|
139
|
-
- Full design system: `/docs/DESIGN_SYSTEM.md`
|
|
140
|
-
- Component examples: `/web/test-design-system.html`
|
|
141
|
-
- Background effects: `/web/BACKGROUND_ENHANCEMENTS.md`
|
|
142
|
-
|
|
143
|
-
## 🚀 Testing
|
|
144
|
-
Visit `http://localhost:3456/test-design-system.html` to see all components, animations, and interactions in action.
|
|
145
|
-
|
|
146
|
-
---
|
|
147
|
-
|
|
148
|
-
**Last Updated**: October 2, 2025
|
|
149
|
-
**Design System Version**: 1.2
|
|
150
|
-
**Status**: ✅ Integrated and Ready to Use
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
## ✅ Completed (2025-10-02)
|
|
156
|
-
|
|
157
|
-
### Design System Foundation
|
|
158
|
-
All pages now include the complete design system:
|
|
159
|
-
|
|
160
|
-
```html
|
|
161
|
-
<!-- Design System v1.2 -->
|
|
162
|
-
<link rel="stylesheet" href="/assets/design-system.css"> <!-- Tokens & variables -->
|
|
163
|
-
<link rel="stylesheet" href="/assets/components.css"> <!-- UI components -->
|
|
164
|
-
<link rel="stylesheet" href="/assets/animations.css"> <!-- Animation library -->
|
|
165
|
-
<link rel="stylesheet" href="/assets/styles.css"> <!-- Global styles -->
|
|
166
|
-
<link rel="stylesheet" href="/assets/theme-toggle.css"> <!-- Theme toggle UI -->
|
|
167
|
-
|
|
168
|
-
<!-- Theme Management -->
|
|
169
|
-
<script src="/assets/theme-manager.js"></script> <!-- Theme system -->
|
|
170
|
-
<script src="/assets/theme-toggle.js"></script> <!-- Theme toggle component -->
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
### Pages Updated
|
|
174
|
-
- ✅ **Homepage** (`index.html`) - Design system linked
|
|
175
|
-
- ✅ **Bug Investigation Dashboard** (`dashboard-v2.html`) - Design system linked
|
|
176
|
-
|
|
177
|
-
### Features Available
|
|
178
|
-
|
|
179
|
-
#### 1. **Design Tokens** (`design-system.css`)
|
|
180
|
-
- Golden ratio spacing system (`--space-xs` to `--space-3xl`)
|
|
181
|
-
- Golden ratio typography (`--text-xs` to `--text-4xl`)
|
|
182
|
-
- Comprehensive color palette (10 accent colors + workflow themes)
|
|
183
|
-
- Material Design shadow scale (`--shadow-sm` to `--shadow-2xl`)
|
|
184
|
-
- Expressive border radii (`--radius-sm` to `--radius-2xl`)
|
|
185
|
-
- Animation timing curves (`--ease-in`, `--ease-out`, `--ease-spring`, etc.)
|
|
186
|
-
|
|
187
|
-
#### 2. **Dark/Light Theme System**
|
|
188
|
-
- ✅ Automatic detection via `prefers-color-scheme`
|
|
189
|
-
- ✅ Manual toggle with sun/moon icon (top-right corner)
|
|
190
|
-
- ✅ `localStorage` persistence
|
|
191
|
-
- ✅ Smooth 600ms animated transitions between themes
|
|
192
|
-
- ✅ Theme-aware colors, shadows, and glassmorphism
|
|
193
|
-
|
|
194
|
-
#### 3. **Component Library** (`components.css`)
|
|
195
|
-
- Buttons (`.btn`, `.btn-primary`, `.btn-secondary`, `.btn-ghost`, `.btn-spring`)
|
|
196
|
-
- Cards (`.card`, `.card-glass`, `.card-float`, `.card-workflow`, `.card-3d`)
|
|
197
|
-
- Stat Cards (`.stat-card`, `.stat-card-gradient`)
|
|
198
|
-
- Input Fields, Code Blocks, Tooltips, Badges
|
|
199
|
-
- Glassmorphism effects with theme support
|
|
200
|
-
|
|
201
|
-
#### 4. **Animation Library** (`animations.css`)
|
|
202
|
-
- 16 animation patterns (entrance, state change, motion, data, special effects)
|
|
203
|
-
- Micro-interactions for buttons, cards, inputs, checkboxes
|
|
204
|
-
- Celebration moments (confetti, shimmer, glow pulse)
|
|
205
|
-
- Spring physics animations (bounce, elastic, jello)
|
|
206
|
-
|
|
207
|
-
#### 5. **Interaction Enhancements**
|
|
208
|
-
- ✅ Smooth hover transitions (no more choppy animations!)
|
|
209
|
-
- ✅ Float animation pauses on hover for smooth card lift
|
|
210
|
-
- ✅ No persistent focus borders after mouse clicks
|
|
211
|
-
- ✅ Theme transitions animate smoothly (600ms fade)
|
|
212
|
-
|
|
213
|
-
### Design Philosophy Applied
|
|
214
|
-
- **Universal & Accessible**: Works for all users, not just developers
|
|
215
|
-
- **Delightfully Engaging**: Fun but professional (6.5/10 personality)
|
|
216
|
-
- **Material Expressive**: Dynamic color, expressive motion, joyful micro-interactions
|
|
217
|
-
- **Golden Ratio**: Mathematical precision in spacing, typography, shadows
|
|
218
|
-
- **Performance First**: Optimized transitions, will-change hints, smart animation budgets
|
|
219
|
-
|
|
220
|
-
### Browser Support
|
|
221
|
-
- All modern browsers (Chrome, Firefox, Safari, Edge)
|
|
222
|
-
- CSS Custom Properties required
|
|
223
|
-
- `prefers-color-scheme` for automatic theme detection
|
|
224
|
-
- `:focus-visible` for accessible focus management
|
|
225
|
-
|
|
226
|
-
## 📋 Next Steps (Optional Enhancements)
|
|
227
|
-
|
|
228
|
-
### Potential Improvements:
|
|
229
|
-
1. **Background Effects** (currently on test page only)
|
|
230
|
-
- Floating orbs with theme-aware colors
|
|
231
|
-
- Workflow-themed particle trails
|
|
232
|
-
- Time-of-day theming
|
|
233
|
-
- Scroll parallax effects
|
|
234
|
-
|
|
235
|
-
2. **Additional Components**
|
|
236
|
-
- Progress bars with gradient animations
|
|
237
|
-
- Loading spinners with spring physics
|
|
238
|
-
- Toast notifications
|
|
239
|
-
- Modal dialogs with spring entrance
|
|
240
|
-
|
|
241
|
-
3. **Page-Specific Refinements**
|
|
242
|
-
- Replace remaining inline styles with design tokens
|
|
243
|
-
- Add entrance animations to session cards
|
|
244
|
-
- Add workflow-specific color theming
|
|
245
|
-
- Enhance empty states with delightful illustrations
|
|
246
|
-
|
|
247
|
-
4. **Performance Optimizations**
|
|
248
|
-
- Lazy load animations for off-screen elements
|
|
249
|
-
- Reduce motion for users with `prefers-reduced-motion`
|
|
250
|
-
- Progressive enhancement for older browsers
|
|
251
|
-
|
|
252
|
-
## 🎨 Usage Examples
|
|
253
|
-
|
|
254
|
-
### Using Design Tokens
|
|
255
|
-
```css
|
|
256
|
-
.my-component {
|
|
257
|
-
padding: var(--space-4);
|
|
258
|
-
font-size: var(--text-lg);
|
|
259
|
-
color: var(--text-primary);
|
|
260
|
-
background: var(--bg-secondary);
|
|
261
|
-
border-radius: var(--radius-lg);
|
|
262
|
-
box-shadow: var(--shadow-md);
|
|
263
|
-
transition: all var(--duration-base) var(--ease-spring);
|
|
264
|
-
}
|
|
265
|
-
```
|
|
266
|
-
|
|
267
|
-
### Using Components
|
|
268
|
-
```html
|
|
269
|
-
<button class="btn btn-primary btn-spring">
|
|
270
|
-
Click Me
|
|
271
|
-
</button>
|
|
272
|
-
|
|
273
|
-
<div class="card card-glass card-float">
|
|
274
|
-
<h3>Floating Glass Card</h3>
|
|
275
|
-
<p>Smooth animations and glassmorphism!</p>
|
|
276
|
-
</div>
|
|
277
|
-
```
|
|
278
|
-
|
|
279
|
-
### Using Animations
|
|
280
|
-
```html
|
|
281
|
-
<div class="animate-spring-in">
|
|
282
|
-
I slide in with a spring!
|
|
283
|
-
</div>
|
|
284
|
-
|
|
285
|
-
<div class="animate-fade-in">
|
|
286
|
-
I gently fade in!
|
|
287
|
-
</div>
|
|
288
|
-
```
|
|
289
|
-
|
|
290
|
-
## 📚 Documentation
|
|
291
|
-
- Full design system: `/docs/DESIGN_SYSTEM.md`
|
|
292
|
-
- Component examples: `/web/test-design-system.html`
|
|
293
|
-
- Background effects: `/web/BACKGROUND_ENHANCEMENTS.md`
|
|
294
|
-
|
|
295
|
-
## 🚀 Testing
|
|
296
|
-
Visit `http://localhost:3456/test-design-system.html` to see all components, animations, and interactions in action.
|
|
297
|
-
|
|
298
|
-
---
|
|
299
|
-
|
|
300
|
-
**Last Updated**: October 2, 2025
|
|
301
|
-
**Design System Version**: 1.2
|
|
302
|
-
**Status**: ✅ Integrated and Ready to Use
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg width="100%" height="100%" viewBox="0 0 2021 1081" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
-
<g id="Artboard1" transform="matrix(1,0,0,0.637382,-465,-607.425118)">
|
|
5
|
-
<rect x="465" y="953" width="2021" height="1696" style="fill:none;"/>
|
|
6
|
-
<g transform="matrix(1,0,0,1.568918,1474.921541,2274.181449)">
|
|
7
|
-
<g transform="matrix(1,0,0,1,-996.300469,-814.404769)">
|
|
8
|
-
<clipPath id="_clip1">
|
|
9
|
-
<rect x="0" y="0" width="1992.601" height="1628.81"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
<g clip-path="url(#_clip1)">
|
|
12
|
-
<g transform="matrix(0.416667,0,0,-0.416667,-1136.565729,2841.542938)">
|
|
13
|
-
<path d="M7154,6805C7032,6778 6928,6704 6847,6586C6782,6490 6708,6322 6430,5645C6286,5293 6164,5002 6160,4997C6157,4993 6040,5175 5901,5402C5761,5629 5600,5893 5541,5987L5435,6160L5362,6160C5290,6160 5289,6160 5301,6138C5332,6081 6161,4736 6174,4722C6184,4712 6192,4724 6215,4782C6231,4822 6313,5024 6398,5230C6483,5436 6592,5702 6640,5820C6872,6385 6923,6491 7009,6583C7084,6664 7113,6674 7275,6678L7415,6682L7463,6745C7489,6779 7510,6810 7510,6814C7510,6826 7216,6819 7154,6805Z" style="fill-rule:nonzero;"/>
|
|
14
|
-
<path d="M2732,6782C2739,6772 2763,6741 2785,6712L2825,6661L2950,6660C3232,6658 3269,6611 3570,5885C3643,5709 3781,5374 3876,5141C3971,4908 4051,4715 4054,4712C4057,4709 4062,4709 4063,4711C4068,4716 4477,5385 4639,5652C4708,5766 4769,5859 4773,5857C4778,5856 4949,5524 5154,5120L5526,4385L5672,4379L5475,4767C4986,5730 4785,6120 4779,6120C4775,6120 4746,6076 4715,6023C4683,5969 4552,5754 4425,5545C4297,5336 4169,5126 4141,5078C4112,5029 4086,4990 4082,4990C4075,4990 4027,5104 3824,5600C3531,6319 3476,6443 3402,6556C3322,6680 3209,6765 3092,6789C3063,6795 2967,6800 2879,6800C2726,6800 2719,6799 2732,6782Z" style="fill-rule:nonzero;"/>
|
|
15
|
-
<path d="M6650,6779C6450,6750 6333,6657 6178,6405C6105,6285 5807,5739 5807,5725C5807,5706 5874,5600 5881,5608C5884,5612 5952,5734 6030,5880C6308,6396 6388,6521 6518,6641C6558,6678 6624,6726 6667,6748C6747,6790 6745,6793 6650,6779Z" style="fill-rule:nonzero;"/>
|
|
16
|
-
<path d="M3566,6737C3786,6616 3854,6525 4217,5860C4291,5725 4354,5612 4358,5608C4362,5604 4380,5629 4399,5664L4433,5728L4390,5806C4067,6396 3996,6513 3901,6607C3811,6697 3698,6749 3560,6765L3505,6771L3566,6737Z" style="fill-rule:nonzero;"/>
|
|
17
|
-
<path d="M6880,6741C6846,6722 6751,6629 6717,6581C6703,6559 6690,6556 6598,6547L6495,6537L6450,6472C6425,6436 6403,6402 6401,6397C6399,6391 6435,6389 6504,6392C6583,6396 6610,6395 6607,6386C6604,6380 6579,6322 6550,6257L6497,6139L6255,6143L6213,6065C6189,6022 6171,5985 6173,5984C6175,5982 6229,5975 6293,5969C6357,5962 6410,5953 6410,5948C6410,5937 6299,5678 6289,5667C6283,5660 6101,5688 6040,5705C6019,5711 5933,5551 5951,5540C5957,5535 6015,5517 6079,5499C6143,5481 6197,5465 6199,5464C6201,5462 6181,5411 6155,5351C6111,5249 6108,5238 6120,5210C6127,5194 6135,5180 6139,5180C6142,5180 6163,5224 6184,5278C6268,5486 6639,6349 6680,6430C6739,6547 6813,6652 6879,6711C6937,6763 6937,6771 6880,6741Z" style="fill-rule:nonzero;"/>
|
|
18
|
-
<path d="M3372,6681C3455,6604 3514,6516 3585,6368C3633,6265 3931,5568 4045,5290C4071,5227 4094,5173 4095,5172C4097,5170 4105,5181 4114,5198C4128,5226 4127,5232 4085,5333C4061,5392 4044,5441 4048,5443C4052,5446 4109,5464 4175,5485C4241,5505 4297,5524 4299,5526C4307,5534 4226,5690 4214,5690C4208,5690 4153,5679 4092,5665C4031,5651 3975,5640 3967,5640C3959,5640 3929,5696 3892,5784C3858,5864 3830,5931 3830,5933C3830,5936 3884,5944 3950,5950C4024,5958 4070,5967 4070,5974C4069,5980 4052,6016 4031,6054L3992,6122L3869,6121L3745,6120L3692,6237C3664,6302 3640,6361 3640,6368C3640,6377 3663,6379 3740,6374C3795,6370 3840,6371 3840,6375C3840,6379 3819,6414 3794,6451L3747,6519L3549,6533L3504,6592C3461,6647 3369,6730 3350,6730C3345,6730 3333,6733 3323,6737C3313,6741 3335,6716 3372,6681Z" style="fill-rule:nonzero;"/>
|
|
19
|
-
<path d="M4850,6155C4850,6153 4917,6024 4999,5868C5080,5712 5193,5495 5250,5385C5306,5275 5432,5030 5530,4840C5628,4650 5721,4469 5736,4438C5760,4388 5768,4380 5792,4380C5807,4380 5820,4382 5820,4385C5820,4388 5809,4413 5795,4439L5771,4488L5895,4574C5963,4622 6025,4663 6032,4665C6040,4668 6057,4649 6074,4617L6103,4565L6116,4595C6126,4621 6126,4629 6110,4655C5992,4852 5286,6024 5251,6082C5215,6143 5200,6160 5181,6160C5164,6160 5160,6156 5164,6145C5167,6137 5173,6123 5176,6115C5181,6102 5164,6100 5052,6100L4922,6100L4910,6130C4901,6151 4891,6160 4874,6160C4861,6160 4850,6158 4850,6155ZM5347,5843C5384,5778 5416,5723 5418,5719C5419,5716 5381,5710 5333,5706C5285,5702 5222,5696 5193,5693L5141,5687L5078,5811C5044,5879 5014,5938 5012,5942C5010,5946 5053,5951 5107,5953C5161,5954 5221,5957 5242,5958L5278,5960L5347,5843ZM5597,5420C5638,5352 5672,5292 5673,5287C5675,5277 5409,5199 5397,5207C5393,5209 5356,5279 5315,5360L5240,5509L5273,5515C5290,5518 5339,5527 5380,5535C5519,5560 5512,5563 5597,5420ZM5845,5003C5877,4949 5911,4891 5922,4873L5940,4842L5804,4766C5728,4724 5666,4691 5665,4692C5652,4711 5510,4991 5510,4998C5510,5008 5771,5110 5781,5104C5784,5102 5813,5057 5845,5003Z" style="fill-rule:nonzero;"/>
|
|
20
|
-
<path d="M4438,5173C4261,4877 4113,4632 4111,4627C4110,4623 4114,4606 4120,4589L4133,4559L4163,4612C4179,4641 4194,4666 4195,4668C4198,4672 4448,4501 4455,4490C4458,4485 4449,4458 4435,4430L4410,4380L4475,4380L4644,4713C4737,4895 4847,5108 4888,5184C4961,5321 4962,5324 4947,5354C4933,5383 4931,5383 4924,5365C4920,5354 4899,5313 4878,5274L4839,5202L4712,5236C4642,5255 4580,5272 4573,5274C4565,5278 4575,5305 4605,5357C4630,5400 4665,5461 4683,5493L4715,5552L4783,5546L4850,5540L4809,5622C4786,5668 4766,5706 4765,5708C4763,5710 4616,5469 4438,5173ZM4595,5054C4661,5029 4719,5005 4723,5001C4729,4995 4598,4723 4574,4692C4570,4687 4312,4829 4306,4839C4299,4850 4450,5100 4464,5100C4470,5100 4529,5079 4595,5054Z" style="fill-rule:nonzero;"/>
|
|
21
|
-
<path d="M5004,5241L4568,4379L4642,4382L4715,4385L5075,5099L5040,5170L5004,5241Z" style="fill-rule:nonzero;"/>
|
|
22
|
-
</g>
|
|
23
|
-
</g>
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
</g>
|
|
27
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
-
<svg width="100%" height="100%" viewBox="0 0 2021 1081" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
|
4
|
-
<g id="Artboard1" transform="matrix(1,0,0,0.637382,-465,-607.425118)">
|
|
5
|
-
<rect x="465" y="953" width="2021" height="1696" style="fill:none;"/>
|
|
6
|
-
<g transform="matrix(1,0,0,1.568918,1474.921541,2274.181449)">
|
|
7
|
-
<g transform="matrix(1,0,0,1,-996.300469,-814.404769)">
|
|
8
|
-
<clipPath id="_clip1">
|
|
9
|
-
<rect x="0" y="0" width="1992.601" height="1628.81"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
<g clip-path="url(#_clip1)">
|
|
12
|
-
<g transform="matrix(0.416667,0,0,-0.416667,-1136.565729,2841.542938)">
|
|
13
|
-
<path d="M7154,6805C7032,6778 6928,6704 6847,6586C6782,6490 6708,6322 6430,5645C6286,5293 6164,5002 6160,4997C6157,4993 6040,5175 5901,5402C5761,5629 5600,5893 5541,5987L5435,6160L5362,6160C5290,6160 5289,6160 5301,6138C5332,6081 6161,4736 6174,4722C6184,4712 6192,4724 6215,4782C6231,4822 6313,5024 6398,5230C6483,5436 6592,5702 6640,5820C6872,6385 6923,6491 7009,6583C7084,6664 7113,6674 7275,6678L7415,6682L7463,6745C7489,6779 7510,6810 7510,6814C7510,6826 7216,6819 7154,6805Z" style="fill-rule:nonzero;"/>
|
|
14
|
-
<path d="M2732,6782C2739,6772 2763,6741 2785,6712L2825,6661L2950,6660C3232,6658 3269,6611 3570,5885C3643,5709 3781,5374 3876,5141C3971,4908 4051,4715 4054,4712C4057,4709 4062,4709 4063,4711C4068,4716 4477,5385 4639,5652C4708,5766 4769,5859 4773,5857C4778,5856 4949,5524 5154,5120L5526,4385L5672,4379L5475,4767C4986,5730 4785,6120 4779,6120C4775,6120 4746,6076 4715,6023C4683,5969 4552,5754 4425,5545C4297,5336 4169,5126 4141,5078C4112,5029 4086,4990 4082,4990C4075,4990 4027,5104 3824,5600C3531,6319 3476,6443 3402,6556C3322,6680 3209,6765 3092,6789C3063,6795 2967,6800 2879,6800C2726,6800 2719,6799 2732,6782Z" style="fill-rule:nonzero;"/>
|
|
15
|
-
<path d="M6650,6779C6450,6750 6333,6657 6178,6405C6105,6285 5807,5739 5807,5725C5807,5706 5874,5600 5881,5608C5884,5612 5952,5734 6030,5880C6308,6396 6388,6521 6518,6641C6558,6678 6624,6726 6667,6748C6747,6790 6745,6793 6650,6779Z" style="fill-rule:nonzero;"/>
|
|
16
|
-
<path d="M3566,6737C3786,6616 3854,6525 4217,5860C4291,5725 4354,5612 4358,5608C4362,5604 4380,5629 4399,5664L4433,5728L4390,5806C4067,6396 3996,6513 3901,6607C3811,6697 3698,6749 3560,6765L3505,6771L3566,6737Z" style="fill-rule:nonzero;"/>
|
|
17
|
-
<path d="M6880,6741C6846,6722 6751,6629 6717,6581C6703,6559 6690,6556 6598,6547L6495,6537L6450,6472C6425,6436 6403,6402 6401,6397C6399,6391 6435,6389 6504,6392C6583,6396 6610,6395 6607,6386C6604,6380 6579,6322 6550,6257L6497,6139L6255,6143L6213,6065C6189,6022 6171,5985 6173,5984C6175,5982 6229,5975 6293,5969C6357,5962 6410,5953 6410,5948C6410,5937 6299,5678 6289,5667C6283,5660 6101,5688 6040,5705C6019,5711 5933,5551 5951,5540C5957,5535 6015,5517 6079,5499C6143,5481 6197,5465 6199,5464C6201,5462 6181,5411 6155,5351C6111,5249 6108,5238 6120,5210C6127,5194 6135,5180 6139,5180C6142,5180 6163,5224 6184,5278C6268,5486 6639,6349 6680,6430C6739,6547 6813,6652 6879,6711C6937,6763 6937,6771 6880,6741Z" style="fill-rule:nonzero;"/>
|
|
18
|
-
<path d="M3372,6681C3455,6604 3514,6516 3585,6368C3633,6265 3931,5568 4045,5290C4071,5227 4094,5173 4095,5172C4097,5170 4105,5181 4114,5198C4128,5226 4127,5232 4085,5333C4061,5392 4044,5441 4048,5443C4052,5446 4109,5464 4175,5485C4241,5505 4297,5524 4299,5526C4307,5534 4226,5690 4214,5690C4208,5690 4153,5679 4092,5665C4031,5651 3975,5640 3967,5640C3959,5640 3929,5696 3892,5784C3858,5864 3830,5931 3830,5933C3830,5936 3884,5944 3950,5950C4024,5958 4070,5967 4070,5974C4069,5980 4052,6016 4031,6054L3992,6122L3869,6121L3745,6120L3692,6237C3664,6302 3640,6361 3640,6368C3640,6377 3663,6379 3740,6374C3795,6370 3840,6371 3840,6375C3840,6379 3819,6414 3794,6451L3747,6519L3549,6533L3504,6592C3461,6647 3369,6730 3350,6730C3345,6730 3333,6733 3323,6737C3313,6741 3335,6716 3372,6681Z" style="fill-rule:nonzero;"/>
|
|
19
|
-
<path d="M4850,6155C4850,6153 4917,6024 4999,5868C5080,5712 5193,5495 5250,5385C5306,5275 5432,5030 5530,4840C5628,4650 5721,4469 5736,4438C5760,4388 5768,4380 5792,4380C5807,4380 5820,4382 5820,4385C5820,4388 5809,4413 5795,4439L5771,4488L5895,4574C5963,4622 6025,4663 6032,4665C6040,4668 6057,4649 6074,4617L6103,4565L6116,4595C6126,4621 6126,4629 6110,4655C5992,4852 5286,6024 5251,6082C5215,6143 5200,6160 5181,6160C5164,6160 5160,6156 5164,6145C5167,6137 5173,6123 5176,6115C5181,6102 5164,6100 5052,6100L4922,6100L4910,6130C4901,6151 4891,6160 4874,6160C4861,6160 4850,6158 4850,6155ZM5347,5843C5384,5778 5416,5723 5418,5719C5419,5716 5381,5710 5333,5706C5285,5702 5222,5696 5193,5693L5141,5687L5078,5811C5044,5879 5014,5938 5012,5942C5010,5946 5053,5951 5107,5953C5161,5954 5221,5957 5242,5958L5278,5960L5347,5843ZM5597,5420C5638,5352 5672,5292 5673,5287C5675,5277 5409,5199 5397,5207C5393,5209 5356,5279 5315,5360L5240,5509L5273,5515C5290,5518 5339,5527 5380,5535C5519,5560 5512,5563 5597,5420ZM5845,5003C5877,4949 5911,4891 5922,4873L5940,4842L5804,4766C5728,4724 5666,4691 5665,4692C5652,4711 5510,4991 5510,4998C5510,5008 5771,5110 5781,5104C5784,5102 5813,5057 5845,5003Z" style="fill-rule:nonzero;"/>
|
|
20
|
-
<path d="M4438,5173C4261,4877 4113,4632 4111,4627C4110,4623 4114,4606 4120,4589L4133,4559L4163,4612C4179,4641 4194,4666 4195,4668C4198,4672 4448,4501 4455,4490C4458,4485 4449,4458 4435,4430L4410,4380L4475,4380L4644,4713C4737,4895 4847,5108 4888,5184C4961,5321 4962,5324 4947,5354C4933,5383 4931,5383 4924,5365C4920,5354 4899,5313 4878,5274L4839,5202L4712,5236C4642,5255 4580,5272 4573,5274C4565,5278 4575,5305 4605,5357C4630,5400 4665,5461 4683,5493L4715,5552L4783,5546L4850,5540L4809,5622C4786,5668 4766,5706 4765,5708C4763,5710 4616,5469 4438,5173ZM4595,5054C4661,5029 4719,5005 4723,5001C4729,4995 4598,4723 4574,4692C4570,4687 4312,4829 4306,4839C4299,4850 4450,5100 4464,5100C4470,5100 4529,5079 4595,5054Z" style="fill-rule:nonzero;"/>
|
|
21
|
-
<path d="M5004,5241L4568,4379L4642,4382L4715,4385L5075,5099L5040,5170L5004,5241Z" style="fill-rule:nonzero;"/>
|
|
22
|
-
</g>
|
|
23
|
-
</g>
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
</g>
|
|
27
|
-
</svg>
|