@gsa-tts/graymatter-ui 0.2.8 → 0.3.1
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 +111 -0
- package/assets/images/ai-icons/check-circle.svg +3 -0
- package/assets/images/ai-icons/console-icon.svg +6 -6
- package/assets/images/ai-icons/pause-button.svg +5 -0
- package/assets/images/ai-icons/play-button.svg +4 -0
- package/assets/images/api-hero-image.webp +0 -0
- package/assets/images/api-icon-w.svg +3 -0
- package/assets/images/chat-hero-image.webp +0 -0
- package/assets/images/chat-icon-b.svg +4 -0
- package/assets/images/console-hero-image.webp +0 -0
- package/assets/images/console-icon-w.svg +6 -0
- package/assets/images/favicon-dark.ico +0 -0
- package/assets/images/favicon-dark.svg +7 -0
- package/assets/images/favicon-light.svg +7 -0
- package/assets/images/favicon.ico +0 -0
- package/assets/images/favicon.svg +5 -6
- package/assets/images/og-preview.webp +0 -0
- package/assets/images/partners/gemini-government-logo.svg +129 -0
- package/assets/images/partners/microsoft-logo.svg +14 -0
- package/dist/graymatter-ui.js +1864 -1790
- package/dist/graymatter-ui.umd.cjs +60 -34
- package/package.json +3 -4
- package/src/component-options/componentOptions.ts +27 -13
- package/src/components/Button.svelte +191 -37
- package/src/components/Button.webcomponent.svelte +13 -11
- package/src/components/DesktopHeader.svelte +70 -53
- package/src/components/DesktopHeader.webcomponent.svelte +13 -9
- package/src/components/DesktopSideNav.svelte +200 -158
- package/src/components/DesktopSideNav.webcomponent.svelte +9 -5
- package/src/components/GoogleTagManager.astro +1 -1
- package/src/components/Head.astro +62 -7
- package/src/components/Logo.svelte +48 -41
- package/src/components/Logo.webcomponent.svelte +16 -16
- package/src/components/MobileBottomNav.svelte +102 -69
- package/src/components/MobileBottomNav.webcomponent.svelte +13 -4
- package/src/components/MobileSideMenu.svelte +70 -42
- package/src/components/MobileSideMenu.webcomponent.svelte +6 -4
- package/src/components/MobileTopNav.svelte +24 -19
- package/src/components/MobileTopNav.webcomponent.svelte +6 -6
- package/src/components/NavigationInitializer.svelte +10 -2
- package/src/components/ProfileMenu.svelte +116 -27
- package/src/components/UsaSkipNav.svelte +23 -0
- package/src/components/icons/ApiIcon.svelte +182 -33
- package/src/components/icons/ChatIcon.svelte +10 -10
- package/src/components/icons/CloseIcon.svelte +10 -10
- package/src/components/icons/ConsoleIcon.svelte +68 -13
- package/src/components/icons/DiscoverIcon.svelte +14 -14
- package/src/components/icons/ExclamationIcon.svelte +24 -0
- package/src/components/icons/HelpIcon.svelte +2 -1
- package/src/components/icons/MenuIcon.svelte +47 -7
- package/src/components/icons/index.ts +1 -0
- package/src/components/index.ts +1 -1
- package/src/helpers/url.ts +13 -4
- package/src/layouts/BaseLayout.astro +3 -5
- package/src/layouts/GlobalAppLayout.astro +3 -1
- package/src/styles/base/theme.css +6 -1
- package/src/utils/getAppUrls.ts +27 -4
- package/assets/images/lp-bg-hero-1024.webp +0 -0
- package/assets/images/lp-bg-hero-1920.webp +0 -0
- package/assets/images/lp-bg-hero-640.webp +0 -0
- package/assets/images/lp-bg-hero.png +0 -0
- package/src/components/UsaSkipNav.astro +0 -5
- /package/assets/images/{api-icon.svg → api-icon-b.svg} +0 -0
- /package/assets/images/{chat-icon.svg → chat-icon-w.svg} +0 -0
- /package/assets/images/{console-icon.svg → console-icon-b.svg} +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# @gsa-tts/graymatter-ui
|
|
2
|
+
|
|
3
|
+
## Package Responsibilities
|
|
4
|
+
|
|
5
|
+
The GrayMatter UI package (`@gsa-tts/graymatter-ui`) is a UI component library. It provides reusable UI components, layouts, styles, and utilities.
|
|
6
|
+
|
|
7
|
+
### Primary Responsibilities:
|
|
8
|
+
|
|
9
|
+
- Provide a comprehensive set of reusable UI components
|
|
10
|
+
- Implement the design system using the tokens from `@gsa-tts/graymatter-style-tokens`
|
|
11
|
+
- Provide layouts for consistent page structures
|
|
12
|
+
- Offer utility functions for UI-related operations
|
|
13
|
+
- Export components as both Svelte components and web components
|
|
14
|
+
|
|
15
|
+
### Package Boundaries:
|
|
16
|
+
|
|
17
|
+
- **SHOULD** contain UI components, layouts, and styles
|
|
18
|
+
- **SHOULD** consume design tokens from the style-tokens package
|
|
19
|
+
- **SHOULD** be framework-agnostic where possible (via web components)
|
|
20
|
+
- **SHOULD NOT** contain application-specific business logic
|
|
21
|
+
- **SHOULD NOT** contain data fetching or API integration code
|
|
22
|
+
- **SHOULD NOT** depend on application-specific packages
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
The UI package can be used in two ways:
|
|
27
|
+
|
|
28
|
+
1. As Svelte components (for Svelte/Astro applications)
|
|
29
|
+
2. As web components (for any framework or vanilla JS)
|
|
30
|
+
|
|
31
|
+
## Component Documentation
|
|
32
|
+
|
|
33
|
+
### ProfileMenu Component - Event-Driven Architecture
|
|
34
|
+
|
|
35
|
+
The ProfileMenu component uses a custom event system to handle menu item actions, avoiding issues with function serialization in Astro apps.
|
|
36
|
+
|
|
37
|
+
### Usage
|
|
38
|
+
|
|
39
|
+
#### 1. Define Menu Items with Action Strings
|
|
40
|
+
|
|
41
|
+
```typescript
|
|
42
|
+
const profileMenuData = {
|
|
43
|
+
userMeta: {
|
|
44
|
+
initials: 'ZW',
|
|
45
|
+
},
|
|
46
|
+
menuItems: [
|
|
47
|
+
{
|
|
48
|
+
label: 'Settings',
|
|
49
|
+
icon: '/path/to/icon.svg',
|
|
50
|
+
action: 'settings', // String identifier
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
label: 'Log out',
|
|
54
|
+
icon: '/path/to/icon.svg',
|
|
55
|
+
action: 'logout', // String identifier
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
};
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
#### 2. Listen for Profile Menu Actions
|
|
62
|
+
|
|
63
|
+
```typescript
|
|
64
|
+
// In your app's main layout or component
|
|
65
|
+
window.addEventListener('profileMenuAction', (event) => {
|
|
66
|
+
const { action, userMeta, timestamp } = event.detail;
|
|
67
|
+
|
|
68
|
+
switch (action) {
|
|
69
|
+
case 'settings':
|
|
70
|
+
// Handle settings action
|
|
71
|
+
console.log('Settings clicked for user:', userMeta);
|
|
72
|
+
break;
|
|
73
|
+
case 'logout':
|
|
74
|
+
// Handle logout action
|
|
75
|
+
console.log('Logout clicked for user:', userMeta);
|
|
76
|
+
break;
|
|
77
|
+
default:
|
|
78
|
+
console.warn('Unknown profile menu action:', action);
|
|
79
|
+
}
|
|
80
|
+
});
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### Event Details
|
|
84
|
+
|
|
85
|
+
The `profileMenuAction` event includes:
|
|
86
|
+
|
|
87
|
+
- **action**: String identifier for the menu item action
|
|
88
|
+
- **userMeta**: User metadata object
|
|
89
|
+
- **timestamp**: When the action was triggered
|
|
90
|
+
|
|
91
|
+
### Benefits
|
|
92
|
+
|
|
93
|
+
- ✅ **No serialization issues** - Works with both Astro and Svelte apps
|
|
94
|
+
- ✅ **Type safe** - No runtime function evaluation
|
|
95
|
+
- ✅ **Secure** - No `new Function()` usage
|
|
96
|
+
- ✅ **Debuggable** - Clear event flow
|
|
97
|
+
- ✅ **Flexible** - Each app can handle actions differently
|
|
98
|
+
- ✅ **Shadow DOM compatible** - Events bubble through web component boundaries
|
|
99
|
+
|
|
100
|
+
### Shadow DOM & Web Component Support
|
|
101
|
+
|
|
102
|
+
The ProfileMenu component is designed to work in both regular DOM and Shadow DOM contexts:
|
|
103
|
+
|
|
104
|
+
- **Regular DOM**: Events bubble up to `window` as expected
|
|
105
|
+
- **Shadow DOM**: Events are configured with `bubbles: true` and `composed: true` to cross Shadow DOM boundaries
|
|
106
|
+
- **Web Components**: Events are dispatched from the component element to ensure proper bubbling
|
|
107
|
+
|
|
108
|
+
This makes the component compatible with:
|
|
109
|
+
- Astro apps using the component directly
|
|
110
|
+
- Svelte apps using the web component version
|
|
111
|
+
- Any other framework using the web component
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9 12.75L11.25 15L15 9.75M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" stroke="#0F172A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="22" viewBox="0 0 23 22" fill="none">
|
|
2
|
+
<rect x="1.75" y="4.19238" width="4.0082" height="13.6475" stroke="black" stroke-width="1.5"/>
|
|
3
|
+
<rect x="9.32373" y="8.32349" width="4.0082" height="9.51639" stroke="black" stroke-width="1.5"/>
|
|
4
|
+
<rect x="16.8975" y="0.749756" width="4.0082" height="17.0902" stroke="black" stroke-width="1.5"/>
|
|
5
|
+
<path d="M1.34399 20.9998H21.3112" stroke="black" stroke-width="1.5" stroke-linecap="square"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="18.8919" cy="18" r="16.4813" stroke="white" stroke-opacity="0.75" stroke-width="3"/>
|
|
3
|
+
<rect x="12.8982" y="11.2071" width="3.99584" height="13.5859" rx="1" fill="white" fill-opacity="0.75"/>
|
|
4
|
+
<rect x="20.8899" y="11.2071" width="3.99584" height="13.5859" rx="1" fill="white" fill-opacity="0.75"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.8 12.9343C12.8 11.6114 14.2444 10.7955 15.3774 11.4782L23.9475 16.6427C25.0527 17.3087 25.0422 18.9147 23.9284 19.5662L15.3583 24.5787C14.225 25.2416 12.8 24.4242 12.8 23.1113V12.9343Z" fill="white" fill-opacity="0.8"/>
|
|
3
|
+
<circle cx="18" cy="18" r="16.5" stroke="white" stroke-opacity="0.8" stroke-width="3"/>
|
|
4
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none">
|
|
2
|
+
<path d="M14.8672 0.910156C15.2814 0.910156 15.6172 1.24594 15.6172 1.66016V3.54297C15.6171 3.62523 15.6007 3.70327 15.5762 3.77734H18.4551C20.1118 3.77734 21.4549 5.12063 21.4551 6.77734V9.38086H23.3389C23.7527 9.38129 24.0889 9.71691 24.0889 10.1309C24.0887 10.5447 23.7526 10.8804 23.3389 10.8809L21.4551 10.8799V12.2041H23.3389C23.7527 12.2045 24.0889 12.5402 24.0889 12.9541C24.0889 13.3681 23.7527 13.7037 23.3389 13.7041H21.4561L21.4551 13.7031V15.0273H23.3389C23.7526 15.0278 24.0887 15.3635 24.0889 15.7773C24.0889 16.1913 23.7527 16.5269 23.3389 16.5273H21.4561L21.4551 16.5264V19.6006C21.4551 21.2574 20.1119 22.6006 18.4551 22.6006H15.6172V24.249C15.6168 24.6629 15.2811 24.999 14.8672 24.999C14.4534 24.9989 14.1176 24.6628 14.1172 24.249V22.6006H12.7939V24.249C12.7935 24.6629 12.4579 24.999 12.0439 24.999C11.63 24.999 11.2944 24.6629 11.2939 24.249V22.6006H9.9707V24.249C9.97027 24.6628 9.63453 24.9989 9.2207 24.999C8.80675 24.999 8.47113 24.6629 8.4707 24.249V22.6006H5.63184L5.47754 22.5967C3.89257 22.5162 2.63184 21.2056 2.63184 19.6006V16.5273H0.75C0.335786 16.5273 9.05293e-09 16.1916 0 15.7773C0.000160981 15.3633 0.335886 15.0273 0.75 15.0273H2.63184V13.7041H0.75C0.335786 13.7041 9.05293e-09 13.3683 0 12.9541C5.85806e-06 12.5399 0.33579 12.2041 0.75 12.2041H2.63184V10.8809H0.75C0.335879 10.8809 0.000149272 10.5449 0 10.1309C-9.05293e-09 9.71665 0.335786 9.38086 0.75 9.38086H2.63184V6.77734C2.632 5.12075 3.97524 3.77754 5.63184 3.77734H8.51172C8.48719 3.70327 8.47077 3.62522 8.4707 3.54297V1.66016C8.4707 1.24594 8.80649 0.910156 9.2207 0.910156C9.63479 0.910306 9.9707 1.24603 9.9707 1.66016V3.54297C9.97064 3.62527 9.95327 3.70324 9.92871 3.77734H11.335C11.3104 3.7033 11.294 3.62519 11.2939 3.54297V1.66016C11.2939 1.24595 11.6297 0.910162 12.0439 0.910156C12.4582 0.910156 12.7939 1.24594 12.7939 1.66016V3.54297C12.7939 3.62519 12.7774 3.7033 12.7529 3.77734H14.1592C14.1346 3.70324 14.1173 3.62527 14.1172 3.54297V1.66016C14.1172 1.24604 14.4531 0.910317 14.8672 0.910156ZM5.63184 5.27734C4.80367 5.27754 4.132 5.94917 4.13184 6.77734V19.6006C4.13184 20.4289 4.80357 21.1004 5.63184 21.1006H18.4551C19.2835 21.1006 19.9551 20.429 19.9551 19.6006V6.77734C19.9549 5.94905 19.2834 5.27734 18.4551 5.27734H5.63184ZM13.9043 8.25195C15.4892 8.33243 16.7499 9.64314 16.75 11.248V14.6602L16.7461 14.8145C16.6682 16.3482 15.4381 17.5784 13.9043 17.6562L13.75 17.6602H10.3379L10.1836 17.6562C8.64974 17.5785 7.41968 16.3483 7.3418 14.8145L7.33789 14.6602V11.248C7.33798 9.59133 8.68117 8.24814 10.3379 8.24805H13.75L13.9043 8.25195ZM10.3379 9.74805C9.5096 9.74814 8.83798 10.4198 8.83789 11.248V14.6602C8.83808 15.4884 9.50966 16.1601 10.3379 16.1602H13.75C14.5782 16.16 15.2498 15.4883 15.25 14.6602V11.248C15.2499 10.4198 14.5782 9.74823 13.75 9.74805H10.3379Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
2
|
+
<path d="M17.0508 3C19.6009 3.0004 21.6688 5.06803 21.6689 7.61816V13.2832C21.6689 15.8334 19.6009 17.901 17.0508 17.9014H13.2705L9.23926 21.7178C8.5885 22.333 7.5166 21.8714 7.5166 20.9756V17.8984C5.01292 17.8445 3 15.7998 3 13.2832V7.61816C3.00012 5.06785 5.06785 3.00012 7.61816 3H17.0508ZM7.61816 4.45898C5.87327 4.4591 4.4591 5.87327 4.45898 7.61816V13.2832C4.45898 15.0282 5.8732 16.4432 7.61816 16.4434H8.24707C8.6495 16.4437 8.97559 16.7703 8.97559 17.1729V19.959L12.4775 16.6436C12.6186 16.51 12.7994 16.4452 12.9795 16.4453V16.4434H17.0508C18.7955 16.443 20.21 15.028 20.21 13.2832V7.61816C20.2098 5.87344 18.7954 4.45938 17.0508 4.45898H7.61816Z" fill="black"/>
|
|
3
|
+
<path d="M17.0508 3C19.6009 3.0004 21.6688 5.06803 21.6689 7.61816V13.2832C21.6689 15.8334 19.6009 17.901 17.0508 17.9014H13.2705L9.23926 21.7178C8.5885 22.333 7.5166 21.8714 7.5166 20.9756V17.8984C5.01292 17.8445 3 15.7998 3 13.2832V7.61816C3.00012 5.06785 5.06785 3.00012 7.61816 3H17.0508ZM7.61816 4.45898C5.87327 4.4591 4.4591 5.87327 4.45898 7.61816V13.2832C4.45898 15.0282 5.8732 16.4432 7.61816 16.4434H8.24707C8.6495 16.4437 8.97559 16.7703 8.97559 17.1729V19.959L12.4775 16.6436C12.6186 16.51 12.7994 16.4452 12.9795 16.4453V16.4434H17.0508C18.7955 16.443 20.21 15.028 20.21 13.2832V7.61816C20.2098 5.87344 18.7954 4.45938 17.0508 4.45898H7.61816Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="22" viewBox="0 0 23 22" fill="none">
|
|
2
|
+
<rect x="1.75" y="4.19336" width="4.0082" height="13.6475" stroke="white" stroke-width="1.5"/>
|
|
3
|
+
<rect x="9.32422" y="8.32422" width="4.0082" height="9.51639" stroke="white" stroke-width="1.5"/>
|
|
4
|
+
<rect x="16.8984" y="0.75" width="4.0082" height="17.0902" stroke="white" stroke-width="1.5"/>
|
|
5
|
+
<path d="M1.34375 21H21.311" stroke="white" stroke-width="1.5" stroke-linecap="square"/>
|
|
6
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.0948 18.1253C18.0948 16.6694 16.8854 15.4856 15.3983 15.4856H12.6294C12.152 15.4856 11.7628 15.107 11.7628 14.6406C11.7628 14.1742 12.1511 13.7956 12.6294 13.7956H17.6731V12H12.217C10.7308 12 9.52148 13.1846 9.52148 14.6406C9.52148 16.0966 10.7308 17.2812 12.217 17.2812H14.9859C15.4634 17.2812 15.8525 17.6598 15.8525 18.1262C15.8525 18.5926 15.4643 18.9712 14.9859 18.9712H9.75091V20.7659H15.3983C16.8854 20.7659 18.0948 19.5813 18.0948 18.1262V18.1253Z" fill="white"/>
|
|
3
|
+
<path d="M25.8147 19.4146L25.8278 19.4305L26.295 20.7659H28.5001L25.4283 12H21.4798L18.4081 20.765H20.6132L21.086 19.4146H25.8147ZM21.7417 17.5445L23.0551 13.7956H23.8521L23.8577 13.8106L25.1766 17.5738H21.7315L21.7417 17.5445Z" fill="white"/>
|
|
4
|
+
<path d="M8.5473 12H6.46203V16.7447C6.46203 18.4303 5.33068 19.0306 4.27272 19.0306C2.84043 19.0306 2.08342 18.2397 2.08342 16.7447V12H0V17.1021C0 18.2096 0.459782 19.216 1.29389 19.936C2.08899 20.6223 3.14695 21 4.27365 21C6.39794 21 8.5473 19.6611 8.5473 17.1012V12Z" fill="white"/>
|
|
5
|
+
<path d="M31.9635 14.9368H29.4993V20.7659H31.9635V14.9368Z" fill="white"/>
|
|
6
|
+
<path d="M31.9997 12H29.4993V13.7947H31.9997V12Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.0948 18.1253C18.0948 16.6694 16.8854 15.4856 15.3984 15.4856H12.6294C12.152 15.4856 11.7628 15.107 11.7628 14.6406C11.7628 14.1742 12.1511 13.7956 12.6294 13.7956H17.6731V12H12.217C10.7309 12 9.52151 13.1846 9.52151 14.6406C9.52151 16.0966 10.7309 17.2812 12.217 17.2812H14.9859C15.4634 17.2812 15.8526 17.6598 15.8526 18.1262C15.8526 18.5926 15.4643 18.9712 14.9859 18.9712H9.75093V20.7659H15.3984C16.8854 20.7659 18.0948 19.5804 18.0948 18.1253Z" fill="black"/>
|
|
3
|
+
<path d="M25.8148 19.4146L25.8278 19.4305L26.295 20.7659H28.5001L25.4284 12H21.4798L18.4081 20.765H20.6132L21.086 19.4146H25.8148ZM21.7417 17.5445L23.0551 13.7956H23.8521L23.8577 13.8106L25.1766 17.5738H21.7315L21.7417 17.5445Z" fill="black"/>
|
|
4
|
+
<path d="M8.5473 12H6.46203V16.7447C6.46203 18.4303 5.33068 19.0306 4.27272 19.0306C2.84043 19.0306 2.08342 18.2397 2.08342 16.7447V12H0V17.1021C0 18.2096 0.459782 19.216 1.29389 19.936C2.08899 20.6223 3.14695 21 4.27365 21C6.39794 21 8.5473 19.6611 8.5473 17.1012V12Z" fill="black"/>
|
|
5
|
+
<path d="M31.9635 14.9368H29.4992V20.7659H31.9635V14.9368Z" fill="black"/>
|
|
6
|
+
<path d="M31.9997 12H29.4992V13.7947H31.9997V12Z" fill="black"/>
|
|
7
|
+
</svg>
|
|
Binary file
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<
|
|
3
|
-
<path d="
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="
|
|
6
|
-
<path d="
|
|
7
|
-
<path d="M30.2161 11.6181H27.9881V13.2933H30.2161V11.6181Z" fill="black"/>
|
|
2
|
+
<path d="M18.0948 18.1253C18.0948 16.6694 16.8854 15.4856 15.3984 15.4856H12.6294C12.152 15.4856 11.7628 15.107 11.7628 14.6406C11.7628 14.1742 12.1511 13.7956 12.6294 13.7956H17.6731V12H12.217C10.7309 12 9.52151 13.1846 9.52151 14.6406C9.52151 16.0966 10.7309 17.2812 12.217 17.2812H14.9859C15.4634 17.2812 15.8526 17.6598 15.8526 18.1262C15.8526 18.5926 15.4643 18.9712 14.9859 18.9712H9.75093V20.7659H15.3984C16.8854 20.7659 18.0948 19.5804 18.0948 18.1253Z" fill="black"/>
|
|
3
|
+
<path d="M25.8148 19.4146L25.8278 19.4305L26.295 20.7659H28.5001L25.4284 12H21.4798L18.4081 20.765H20.6132L21.086 19.4146H25.8148ZM21.7417 17.5445L23.0551 13.7956H23.8521L23.8577 13.8106L25.1766 17.5738H21.7315L21.7417 17.5445Z" fill="black"/>
|
|
4
|
+
<path d="M8.5473 12H6.46203V16.7447C6.46203 18.4303 5.33068 19.0306 4.27272 19.0306C2.84043 19.0306 2.08342 18.2397 2.08342 16.7447V12H0V17.1021C0 18.2096 0.459782 19.216 1.29389 19.936C2.08899 20.6223 3.14695 21 4.27365 21C6.39794 21 8.5473 19.6611 8.5473 17.1012V12Z" fill="black"/>
|
|
5
|
+
<path d="M31.9635 14.9368H29.4992V20.7659H31.9635V14.9368Z" fill="black"/>
|
|
6
|
+
<path d="M31.9997 12H29.4992V13.7947H31.9997V12Z" fill="black"/>
|
|
8
7
|
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
<svg width="308" height="26" viewBox="0 0 308 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1168_19495)">
|
|
3
|
+
<path d="M112.331 6.81636C111.788 6.81636 111.318 6.62768 110.921 6.25032C110.542 5.85504 110.352 5.38784 110.352 4.8488C110.352 4.30976 110.542 3.85154 110.921 3.4742C111.318 3.09686 111.788 2.9082 112.331 2.9082C112.873 2.9082 113.334 3.09686 113.713 3.4742C114.11 3.85154 114.309 4.30976 114.309 4.8488C114.309 5.38784 114.11 5.85504 113.713 6.25032C113.334 6.62768 112.873 6.81636 112.331 6.81636ZM110.867 22.5836V8.8378H113.794V22.5836H110.867Z" fill="black"/>
|
|
4
|
+
<path d="M96.418 22.5834V8.83749H99.1828V10.7242H99.3456C99.7429 10.0593 100.33 9.51129 101.107 9.08005C101.902 8.63085 102.77 8.40625 103.71 8.40625C105.408 8.40625 106.682 8.90937 107.531 9.91557C108.381 10.9218 108.805 12.2515 108.805 13.9046V22.5834H105.905V14.2819C105.905 13.1679 105.625 12.3593 105.065 11.8562C104.505 11.3351 103.773 11.0746 102.869 11.0746C102.164 11.0746 101.55 11.2722 101.026 11.6675C100.502 12.0448 100.086 12.548 99.779 13.1768C99.49 13.8058 99.3456 14.4796 99.3456 15.1983V22.5834H96.418Z" fill="black"/>
|
|
5
|
+
<path d="M92.813 6.81636C92.2708 6.81636 91.8008 6.62768 91.4031 6.25032C91.0237 5.85504 90.834 5.38784 90.834 4.8488C90.834 4.30976 91.0237 3.85154 91.4031 3.4742C91.8008 3.09686 92.2708 2.9082 92.813 2.9082C93.3547 2.9082 93.8156 3.09686 94.195 3.4742C94.5927 3.85154 94.7915 4.30976 94.7915 4.8488C94.7915 5.38784 94.5927 5.85504 94.195 6.25032C93.8156 6.62768 93.3547 6.81636 92.813 6.81636ZM91.3492 22.5836V8.8378H94.2764V22.5836H91.3492Z" fill="black"/>
|
|
6
|
+
<path d="M68.4561 22.5834V8.83749H71.2209V10.7242H71.3832C71.7809 10.0593 72.3592 9.51129 73.1181 9.08005C73.877 8.63085 74.7173 8.40625 75.6389 8.40625C76.6689 8.40625 77.5452 8.64881 78.268 9.13397C78.9908 9.61909 79.506 10.23 79.8132 10.9667C80.2648 10.248 80.8792 9.64605 81.6564 9.16093C82.4331 8.65781 83.3821 8.40625 84.5022 8.40625C86.1287 8.40625 87.3393 8.90037 88.1343 9.88865C88.9297 10.8589 89.327 12.1526 89.327 13.7698V22.5834H86.4268V14.255C86.4268 13.1589 86.1827 12.3593 85.6949 11.8562C85.225 11.3351 84.5657 11.0746 83.7163 11.0746C83.0476 11.0746 82.4605 11.2632 81.9545 11.6406C81.4484 11.9999 81.0511 12.494 80.7618 13.123C80.4907 13.7518 80.3553 14.4526 80.3553 15.2252V22.5834H77.4551V14.255C77.4551 13.1589 77.211 12.3593 76.7232 11.8562C76.235 11.3351 75.5484 11.0746 74.6633 11.0746C74.0128 11.0746 73.4432 11.2632 72.9554 11.6406C72.4676 12.0179 72.079 12.521 71.7901 13.1499C71.519 13.7788 71.3832 14.4796 71.3832 15.2522V22.5834H68.4561Z" fill="black"/>
|
|
7
|
+
<path d="M60.2653 23.0146C58.9098 23.0146 57.6993 22.7002 56.6328 22.0712C55.5667 21.4424 54.7264 20.5798 54.112 19.4838C53.5158 18.3877 53.2178 17.1389 53.2178 15.7374C53.2178 14.4256 53.5067 13.2128 54.085 12.0988C54.6633 10.9847 55.4674 10.0953 56.4974 9.43045C57.5456 8.74765 58.7471 8.40625 60.1025 8.40625C61.5298 8.40625 62.7408 8.71169 63.7346 9.32261C64.7463 9.93357 65.5144 10.7691 66.0387 11.8292C66.5626 12.8894 66.8245 14.0843 66.8245 15.4139C66.8245 15.6116 66.8154 15.7913 66.7976 15.953C66.7976 16.1147 66.7884 16.2405 66.7702 16.3303H56.091C56.2355 17.6959 56.7141 18.7201 57.5274 19.4029C58.3585 20.0858 59.2984 20.4272 60.3462 20.4272C61.2861 20.4272 62.0632 20.2204 62.6773 19.8072C63.2917 19.376 63.7799 18.8459 64.1411 18.217L66.5535 19.376C65.9573 20.454 65.144 21.3346 64.1141 22.0174C63.0841 22.6822 61.8009 23.0146 60.2653 23.0146ZM60.1295 10.8859C59.1539 10.8859 58.3224 11.1824 57.6357 11.7753C56.9491 12.3683 56.4883 13.1589 56.2533 14.1472H63.9243C63.8882 13.68 63.7346 13.1948 63.4635 12.6917C63.1924 12.1886 62.7769 11.7663 62.2169 11.4249C61.6747 11.0656 60.9789 10.8859 60.1295 10.8859Z" fill="black"/>
|
|
8
|
+
<path d="M42.3619 23.014C40.9703 23.014 39.6603 22.7626 38.4315 22.2594C37.2207 21.7564 36.1455 21.0556 35.2058 20.1572C34.2663 19.2407 33.5253 18.1716 32.9833 16.9498C32.4592 15.7099 32.1973 14.3713 32.1973 12.9338C32.1973 11.4963 32.4592 10.1667 32.9833 8.94482C33.5253 7.70498 34.2572 6.63586 35.1788 5.73746C36.1185 4.82106 37.2027 4.1113 38.4315 3.6082C39.6603 3.10508 40.9703 2.85352 42.3619 2.85352C43.8435 2.85352 45.2077 3.11406 46.4548 3.63514C47.7197 4.15622 48.7767 4.88394 49.6261 5.8183L47.5661 7.83978C46.9334 7.13898 46.1746 6.59994 45.2891 6.22262C44.4218 5.84526 43.4458 5.65658 42.3619 5.65658C41.0787 5.65658 39.8951 5.96206 38.8109 6.57298C37.7268 7.16594 36.8502 8.01046 36.1816 9.10654C35.5311 10.1847 35.2058 11.4604 35.2058 12.9338C35.2058 14.4072 35.5402 15.692 36.2088 16.7881C36.8774 17.8661 37.7538 18.7107 38.8379 19.3216C39.9221 19.9145 41.1056 20.211 42.3888 20.211C43.5633 20.211 44.6294 19.9954 45.5871 19.5642C46.5449 19.1149 47.3129 18.4861 47.8912 17.6775C48.4873 16.8689 48.8489 15.8986 48.9755 14.7666H42.3345V12.1522H51.7674C51.8757 12.6373 51.9297 13.1494 51.9297 13.6885V13.7155C51.9297 15.5842 51.5141 17.2193 50.683 18.6208C49.8698 20.0044 48.7406 21.0824 47.295 21.8552C45.8491 22.6278 44.2047 23.014 42.3619 23.014Z" fill="black"/>
|
|
9
|
+
<path d="M22.9668 11.6039C20.9825 10.743 19.2462 9.56201 17.7574 8.06225C16.2692 6.56253 15.0973 4.81197 14.2431 2.81209C13.9151 2.04563 13.6516 1.25777 13.4496 0.449993C13.3837 0.185899 13.1487 0 12.8786 0C12.6085 0 12.3735 0.185899 12.3077 0.449993C12.1056 1.25777 11.8421 2.04489 11.5142 2.81209C10.66 4.81197 9.48807 6.56253 7.9999 8.06225C6.51178 9.56201 4.77475 10.743 2.79034 11.6039C2.0298 11.9344 1.24804 12.2 0.446513 12.4036C0.184461 12.47 0 12.7068 0 12.979C0 13.2512 0.184461 13.488 0.446513 13.5544C1.24804 13.758 2.02907 14.0236 2.79034 14.354C4.77475 15.2149 6.51106 16.396 7.9999 17.8957C9.48878 19.3954 10.66 21.146 11.5142 23.1458C11.8421 23.9124 12.1056 24.7002 12.3077 25.508C12.3735 25.772 12.6085 25.958 12.8786 25.958C13.1487 25.958 13.3837 25.772 13.4496 25.508C13.6516 24.7002 13.9151 23.913 14.2431 23.1458C15.0973 21.146 16.2692 19.3962 17.7574 17.8957C19.2455 16.396 20.9825 15.2149 22.9668 14.354C23.7275 14.0236 24.5092 13.758 25.3108 13.5544C25.5727 13.488 25.7573 13.2512 25.7573 12.979C25.7573 12.7068 25.5727 12.47 25.3108 12.4036C24.5092 12.2 23.7281 11.9344 22.9668 11.6039Z" fill="black"/>
|
|
10
|
+
<mask id="mask0_1168_19495" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="26" height="26">
|
|
11
|
+
<path d="M12.8786 0C13.1487 0 13.3836 0.185913 13.4495 0.45C13.6515 1.25776 13.915 2.04566 14.2429 2.8121C15.0971 4.81196 16.2692 6.5624 17.7574 8.06212C19.2462 9.5618 20.9823 10.743 22.9668 11.6039C23.7279 11.9344 24.509 12.1999 25.3106 12.4035C25.5725 12.4699 25.7571 12.7067 25.7571 12.9789C25.7571 13.2511 25.5727 13.4879 25.3106 13.5543C24.509 13.7579 23.7273 14.0234 22.9668 14.3539C20.9823 15.2148 19.2454 16.396 17.7574 17.8957C16.2692 19.3962 15.0972 21.1458 14.2429 23.1458C13.915 23.9128 13.6515 24.7 13.4495 25.5078C13.3836 25.772 13.1487 25.9578 12.8786 25.9578C12.6085 25.9578 12.3735 25.7718 12.3076 25.5078C12.1056 24.7 11.8421 23.9122 11.5142 23.1458C10.66 21.1458 9.48858 19.3954 7.99978 17.8957C6.51091 16.396 4.77475 15.2148 2.79036 14.3539C2.02911 14.0234 1.24804 13.7579 0.446521 13.5543C0.184476 13.4879 0 13.2511 0 12.9789C3.44377e-05 12.7067 0.184493 12.4699 0.446521 12.4035C1.24804 12.1999 2.02984 11.9344 2.79036 11.6039C4.77479 10.743 6.51166 9.56184 7.99978 8.06212C9.48791 6.5624 10.6599 4.812 11.5142 2.8121C11.8421 2.04492 12.1056 1.25777 12.3076 0.45C12.3735 0.18593 12.6085 3.4706e-05 12.8786 0Z" fill="black"/>
|
|
12
|
+
<path d="M12.8786 0C13.1487 0 13.3836 0.185913 13.4495 0.45C13.6515 1.25776 13.915 2.04566 14.2429 2.8121C15.0971 4.81196 16.2692 6.5624 17.7574 8.06212C19.2462 9.5618 20.9823 10.743 22.9668 11.6039C23.7279 11.9344 24.509 12.1999 25.3106 12.4035C25.5725 12.4699 25.7571 12.7067 25.7571 12.9789C25.7571 13.2511 25.5727 13.4879 25.3106 13.5543C24.509 13.7579 23.7273 14.0234 22.9668 14.3539C20.9823 15.2148 19.2454 16.396 17.7574 17.8957C16.2692 19.3962 15.0972 21.1458 14.2429 23.1458C13.915 23.9128 13.6515 24.7 13.4495 25.5078C13.3836 25.772 13.1487 25.9578 12.8786 25.9578C12.6085 25.9578 12.3735 25.7718 12.3076 25.5078C12.1056 24.7 11.8421 23.9122 11.5142 23.1458C10.66 21.1458 9.48858 19.3954 7.99978 17.8957C6.51091 16.396 4.77475 15.2148 2.79036 14.3539C2.02911 14.0234 1.24804 13.7579 0.446521 13.5543C0.184476 13.4879 0 13.2511 0 12.9789C3.44377e-05 12.7067 0.184493 12.4699 0.446521 12.4035C1.24804 12.1999 2.02984 11.9344 2.79036 11.6039C4.77479 10.743 6.51166 9.56184 7.99978 8.06212C9.48791 6.5624 10.6599 4.812 11.5142 2.8121C11.8421 2.04492 12.1056 1.25777 12.3076 0.45C12.3735 0.18593 12.6085 3.4706e-05 12.8786 0Z" fill="url(#paint0_linear_1168_19495)"/>
|
|
13
|
+
</mask>
|
|
14
|
+
<g mask="url(#mask0_1168_19495)">
|
|
15
|
+
<g filter="url(#filter0_f_1168_19495)">
|
|
16
|
+
<path d="M-2.3259 20.2935C0.650148 21.3585 4.07072 19.3615 5.31417 15.8328C6.5576 12.3041 5.15304 8.58012 2.17699 7.515C-0.799044 6.44988 -4.21962 8.44698 -5.46305 11.9757C-6.7065 15.5043 -5.30195 19.2283 -2.3259 20.2935Z" fill="black"/>
|
|
17
|
+
</g>
|
|
18
|
+
<g filter="url(#filter1_f_1168_19495)">
|
|
19
|
+
<path d="M10.8883 8.65952C14.9768 8.65952 18.2913 5.24584 18.2913 1.03483C18.2913 -3.17616 14.9768 -6.58984 10.8883 -6.58984C6.79977 -6.58984 3.48535 -3.17616 3.48535 1.03483C3.48535 5.24584 6.79977 8.65952 10.8883 8.65952Z" fill="black"/>
|
|
20
|
+
</g>
|
|
21
|
+
<g filter="url(#filter2_f_1168_19495)">
|
|
22
|
+
<path d="M8.0113 33.043C12.2793 32.8328 15.52 28.1452 15.2498 22.5732C14.9795 17.0011 11.3005 12.6545 7.03253 12.8647C2.76456 13.075 -0.476212 17.7625 -0.20593 23.3346C0.0643518 28.9066 3.74334 33.2532 8.0113 33.043Z" fill="black"/>
|
|
23
|
+
</g>
|
|
24
|
+
<g filter="url(#filter3_f_1168_19495)">
|
|
25
|
+
<path d="M8.0113 33.043C12.2793 32.8328 15.52 28.1452 15.2498 22.5732C14.9795 17.0011 11.3005 12.6545 7.03253 12.8647C2.76456 13.075 -0.476212 17.7625 -0.20593 23.3346C0.0643518 28.9066 3.74334 33.2532 8.0113 33.043Z" fill="black"/>
|
|
26
|
+
</g>
|
|
27
|
+
<g filter="url(#filter4_f_1168_19495)">
|
|
28
|
+
<path d="M12.2855 29.6715C15.8635 27.4775 16.8212 22.4809 14.4245 18.5111C12.0279 14.5414 7.18441 13.1018 3.60639 15.2957C0.028372 17.4897 -0.9293 22.4863 1.46737 26.4561C3.86403 30.4259 8.70747 31.8655 12.2855 29.6715Z" fill="black"/>
|
|
29
|
+
</g>
|
|
30
|
+
<g filter="url(#filter5_f_1168_19495)">
|
|
31
|
+
<path d="M26.7476 17.1979C30.7693 17.1979 34.0295 14.034 34.0295 10.1312C34.0295 6.22833 30.7693 3.06445 26.7476 3.06445C22.7259 3.06445 19.4658 6.22833 19.4658 10.1312C19.4658 14.034 22.7259 17.1979 26.7476 17.1979Z" fill="black"/>
|
|
32
|
+
</g>
|
|
33
|
+
<g filter="url(#filter6_f_1168_19495)">
|
|
34
|
+
<path d="M-5.18585 16.3768C-1.48294 19.2146 3.92662 18.3243 6.89674 14.3882C9.86687 10.452 9.27282 4.9606 5.56992 2.12274C1.867 -0.715121 -3.54256 0.175207 -6.51267 4.11134C-9.48281 8.04748 -8.88876 13.5389 -5.18585 16.3768Z" fill="black"/>
|
|
35
|
+
</g>
|
|
36
|
+
<g filter="url(#filter7_f_1168_19495)">
|
|
37
|
+
<path d="M13.7876 20.5727C18.2075 23.6351 24.066 22.7819 26.8733 18.6671C29.6805 14.5523 28.373 8.73395 23.9531 5.67153C19.5333 2.60909 13.6747 3.46223 10.8676 7.57707C8.06041 11.6919 9.36776 17.5102 13.7876 20.5727Z" fill="black"/>
|
|
38
|
+
</g>
|
|
39
|
+
<g filter="url(#filter8_f_1168_19495)">
|
|
40
|
+
<path d="M21.8232 -0.934888C22.9476 0.605844 21.5027 3.60153 18.5958 5.75613C15.6891 7.91077 12.4211 8.40841 11.2966 6.86769C10.1722 5.32697 11.6171 2.33129 14.5238 0.176666C17.4306 -1.97796 20.6985 -2.47561 21.8232 -0.934888Z" fill="black"/>
|
|
41
|
+
</g>
|
|
42
|
+
<g filter="url(#filter9_f_1168_19495)">
|
|
43
|
+
<path d="M12.5925 6.44123C17.0878 2.23901 18.6307 -3.45055 16.0387 -6.26675C13.4467 -9.08295 7.70127 -7.95937 3.20594 -3.75715C-1.2894 0.445068 -2.83235 6.13463 -0.240323 8.95083C2.35169 11.767 8.09714 10.6434 12.5925 6.44123Z" fill="black"/>
|
|
44
|
+
</g>
|
|
45
|
+
<g filter="url(#filter10_f_1168_19495)">
|
|
46
|
+
<path d="M3.37724 21.5348C6.04904 23.4618 9.11648 23.7548 10.2285 22.1888C11.3406 20.623 10.0762 17.7912 7.4044 15.8641C4.7326 13.9369 1.66518 13.6441 0.553106 15.2099C-0.558967 16.7758 0.705442 19.6075 3.37724 21.5348Z" fill="black"/>
|
|
47
|
+
</g>
|
|
48
|
+
</g>
|
|
49
|
+
<path d="M305.797 22.8053C305.186 22.8053 304.61 22.7055 304.07 22.5061C303.531 22.3065 303.09 22.0437 302.747 21.7173C301.973 20.9375 301.588 19.8767 301.588 18.5348V11.354H299.185V8.71563H301.588V4.79883H304.557V8.71563H307.903V11.354H304.557V17.882C304.557 18.6255 304.7 19.1514 304.987 19.4596C305.257 19.8223 305.726 20.0037 306.39 20.0037C306.696 20.0037 306.966 19.9674 307.2 19.8948C307.434 19.8042 307.686 19.6682 307.956 19.4868V22.3973C307.363 22.6693 306.642 22.8053 305.797 22.8053Z" fill="black"/>
|
|
50
|
+
<path d="M286.212 8.71645H289.046V10.5388H289.181C289.578 9.88605 290.163 9.35113 290.935 8.93405C291.727 8.49885 292.564 8.28125 293.446 8.28125C295.119 8.28125 296.389 8.77993 297.252 9.77725C298.133 10.7565 298.574 12.0983 298.574 13.8029V22.5884H295.605V14.2109C295.605 13.1229 295.335 12.325 294.795 11.8172C294.273 11.3095 293.545 11.0556 292.61 11.0556C291.943 11.0556 291.35 11.246 290.828 11.6268C290.306 11.9895 289.901 12.4791 289.613 13.0956C289.326 13.7122 289.181 14.374 289.181 15.0812V22.5884H286.212V8.71645Z" fill="black"/>
|
|
51
|
+
<path d="M278.029 23.0236C276.68 23.0236 275.465 22.7064 274.386 22.0716C273.324 21.437 272.489 20.5666 271.875 19.4605C271.282 18.3362 270.986 17.0759 270.986 15.6797C270.986 14.3559 271.274 13.1319 271.85 12.0077C272.443 10.8653 273.263 9.95859 274.304 9.28765C275.348 8.61673 276.537 8.28125 277.869 8.28125C279.254 8.28125 280.451 8.58953 281.457 9.20605C282.483 9.82259 283.257 10.6658 283.779 11.7356C284.318 12.8055 284.588 14.0114 284.588 15.3532C284.588 15.6071 284.561 15.9244 284.507 16.3052H273.955C274.062 17.5927 274.513 18.59 275.305 19.2972C276.114 19.9863 277.049 20.3308 278.111 20.3308C278.956 20.3308 279.685 20.1404 280.298 19.7596C280.927 19.3607 281.431 18.8258 281.808 18.1549L284.318 19.3517C283.671 20.494 282.826 21.3916 281.782 22.0444C280.738 22.6972 279.488 23.0236 278.029 23.0236ZM281.566 14.0204C281.53 13.5308 281.377 13.0503 281.107 12.5788C280.838 12.0892 280.423 11.6813 279.865 11.3549C279.325 11.0285 278.661 10.8652 277.869 10.8652C276.914 10.8652 276.104 11.1554 275.44 11.7356C274.791 12.2978 274.342 13.0594 274.09 14.0204H281.566Z" fill="black"/>
|
|
52
|
+
<path d="M248.625 8.71645H251.459V10.5388H251.594C252.009 9.86793 252.592 9.32393 253.348 8.90685C254.104 8.48979 254.914 8.28125 255.777 8.28125C256.768 8.28125 257.631 8.51699 258.369 8.98845C259.107 9.44179 259.637 10.0492 259.961 10.8108C260.429 10.0492 261.05 9.44179 261.824 8.98845C262.616 8.51699 263.543 8.28125 264.602 8.28125C266.186 8.28125 267.383 8.77085 268.193 9.75005C269.02 10.7111 269.435 12.0258 269.435 13.6941V22.5884H266.466V14.2109C266.466 12.1074 265.575 11.0556 263.793 11.0556C262.84 11.0556 262.058 11.4455 261.445 12.2252C260.834 13.005 260.528 13.9661 260.528 15.1085V22.5884H257.559V14.2109C257.559 12.1074 256.641 11.0556 254.807 11.0556C253.87 11.0556 253.096 11.4455 252.485 12.2252C251.892 13.005 251.594 13.9661 251.594 15.1085V22.5884H248.625V8.71645Z" fill="black"/>
|
|
53
|
+
<path d="M233.997 8.71645H236.831V10.5388H236.966C237.361 9.88605 237.946 9.35113 238.72 8.93405C239.512 8.49885 240.348 8.28125 241.229 8.28125C242.904 8.28125 244.172 8.77993 245.035 9.77725C245.916 10.7565 246.357 12.0983 246.357 13.8029V22.5884H243.388V14.2109C243.388 13.1229 243.118 12.325 242.578 11.8172C242.056 11.3095 241.328 11.0556 240.393 11.0556C239.726 11.0556 239.133 11.246 238.611 11.6268C238.089 11.9895 237.684 12.4791 237.397 13.0956C237.109 13.7122 236.966 14.374 236.966 15.0812V22.5884H233.997V8.71645Z" fill="black"/>
|
|
54
|
+
<path d="M224.163 8.71659H226.997V10.7566H227.132C227.438 10.0494 227.969 9.46911 228.726 9.01579C229.48 8.54431 230.281 8.30859 231.127 8.30859C231.792 8.30859 232.351 8.39925 232.8 8.58059V11.6814C232.008 11.3913 231.297 11.2462 230.668 11.2462C229.984 11.2462 229.372 11.4275 228.833 11.7902C228.311 12.1529 227.898 12.6425 227.59 13.259C227.285 13.8574 227.132 14.5193 227.132 15.2446V22.5887H224.163V8.71659Z" fill="black"/>
|
|
55
|
+
<path d="M215.981 23.0236C214.631 23.0236 213.417 22.7064 212.337 22.0716C211.275 21.437 210.438 20.5666 209.827 19.4605C209.233 18.3362 208.936 17.0759 208.936 15.6797C208.936 14.3559 209.223 13.1319 209.801 12.0077C210.394 10.8653 211.212 9.95859 212.256 9.28765C213.3 8.61673 214.486 8.28125 215.818 8.28125C217.205 8.28125 218.4 8.58953 219.408 9.20605C220.434 9.82259 221.208 10.6658 221.73 11.7356C222.27 12.8055 222.54 14.0114 222.54 15.3532C222.54 15.6071 222.512 15.9244 222.458 16.3052H211.904C212.014 17.5927 212.462 18.59 213.254 19.2972C214.064 19.9863 215 20.3308 216.062 20.3308C216.907 20.3308 217.636 20.1404 218.247 19.7596C218.878 19.3607 219.382 18.8258 219.759 18.1549L222.27 19.3517C221.621 20.494 220.775 21.3916 219.731 22.0444C218.69 22.6972 217.437 23.0236 215.981 23.0236ZM219.517 14.0204C219.479 13.5308 219.327 13.0503 219.057 12.5788C218.787 12.0892 218.374 11.6813 217.816 11.3549C217.277 11.0285 216.61 10.8652 215.818 10.8652C214.865 10.8652 214.056 11.1554 213.389 11.7356C212.742 12.2978 212.291 13.0594 212.039 14.0204H219.517Z" fill="black"/>
|
|
56
|
+
<path d="M194.896 8.71484H198.215L202.02 18.7244H202.129L206.015 8.71484H209.254L203.532 22.5869H200.563L194.896 8.71484Z" fill="black"/>
|
|
57
|
+
<path d="M187.965 23.0236C186.58 23.0236 185.338 22.7064 184.24 22.0716C183.143 21.4188 182.288 20.5304 181.676 19.406C181.065 18.2818 180.759 17.0306 180.759 15.6524C180.759 14.2743 181.065 13.0231 181.676 11.8988C182.288 10.7746 183.143 9.89513 184.24 9.26045C185.338 8.60765 186.58 8.28125 187.965 8.28125C189.351 8.28125 190.592 8.60765 191.69 9.26045C192.787 9.91325 193.642 10.8018 194.254 11.926C194.865 13.0503 195.171 14.2924 195.171 15.6524C195.171 17.0306 194.865 18.2818 194.254 19.406C193.642 20.5304 192.787 21.4188 191.69 22.0716C190.592 22.7064 189.351 23.0236 187.965 23.0236ZM187.965 20.2764C188.721 20.2764 189.422 20.0952 190.07 19.7325C190.718 19.3517 191.231 18.8167 191.609 18.1276C192.005 17.4204 192.202 16.5954 192.202 15.6524C192.202 14.7095 192.005 13.8935 191.609 13.2045C191.231 12.5154 190.718 11.9895 190.07 11.6268C189.422 11.246 188.721 11.0556 187.965 11.0556C187.209 11.0556 186.508 11.246 185.86 11.6268C185.212 11.9895 184.69 12.5154 184.294 13.2045C183.917 13.8935 183.728 14.7095 183.728 15.6524C183.728 16.5954 183.917 17.4204 184.294 18.1276C184.69 18.8167 185.212 19.3517 185.86 19.7325C186.508 20.0952 187.209 20.2764 187.965 20.2764Z" fill="black"/>
|
|
58
|
+
<path d="M170.195 23.0234C168.36 23.0234 166.669 22.579 165.121 21.6906C163.574 20.802 162.341 19.5871 161.424 18.0457C160.524 16.4863 160.074 14.7545 160.074 12.8505C160.074 10.9465 160.524 9.22387 161.424 7.68253C162.341 6.12307 163.574 4.89907 165.121 4.01053C166.669 3.12201 168.36 2.67773 170.195 2.67773C171.653 2.67773 173.011 2.94067 174.271 3.46653C175.53 3.99241 176.583 4.72681 177.429 5.66973L175.323 7.79133C174.694 7.08413 173.938 6.54013 173.056 6.15933C172.193 5.77853 171.23 5.58813 170.168 5.58813C168.927 5.58813 167.766 5.88733 166.687 6.48573C165.607 7.08413 164.743 7.93641 164.096 9.04253C163.448 10.1487 163.124 11.418 163.124 12.8505C163.124 14.2831 163.448 15.5524 164.096 16.6585C164.743 17.7647 165.607 18.6169 166.687 19.2153C167.766 19.8137 168.936 20.113 170.195 20.113C171.347 20.113 172.309 19.9407 173.083 19.5961C173.857 19.2516 174.55 18.7892 175.161 18.2089C175.557 17.81 175.89 17.3113 176.16 16.7129C176.448 16.1145 176.637 15.4617 176.727 14.7545H170.168V12.0345H179.588C179.678 12.5423 179.723 13.0681 179.723 13.6121C179.723 14.8452 179.534 16.0329 179.156 17.1753C178.778 18.2996 178.175 19.2788 177.348 20.113C175.53 22.0532 173.146 23.0234 170.195 23.0234Z" fill="black"/>
|
|
59
|
+
<path d="M146.009 8.71659H148.843V10.7566H148.978C149.283 10.0494 149.814 9.46911 150.57 9.01579C151.326 8.54431 152.127 8.30859 152.972 8.30859C153.638 8.30859 154.196 8.39925 154.645 8.58059V11.6814C153.854 11.3913 153.143 11.2462 152.513 11.2462C151.83 11.2462 151.218 11.4275 150.678 11.7902C150.156 12.1529 149.742 12.6425 149.436 13.259C149.131 13.8574 148.978 14.5193 148.978 15.2446V22.5887H146.009V8.71659Z" fill="black"/>
|
|
60
|
+
<path d="M137.408 23.0236C136.023 23.0236 134.781 22.7064 133.684 22.0716C132.586 21.4188 131.731 20.5304 131.12 19.406C130.508 18.2818 130.202 17.0306 130.202 15.6524C130.202 14.2743 130.508 13.0231 131.12 11.8988C131.731 10.7746 132.586 9.89513 133.684 9.26045C134.781 8.60765 136.023 8.28125 137.408 8.28125C138.794 8.28125 140.035 8.60765 141.133 9.26045C142.23 9.91325 143.085 10.8018 143.697 11.926C144.309 13.0503 144.615 14.2924 144.615 15.6524C144.615 17.0306 144.309 18.2818 143.697 19.406C143.085 20.5304 142.23 21.4188 141.133 22.0716C140.035 22.7064 138.794 23.0236 137.408 23.0236ZM137.408 20.2764C138.164 20.2764 138.866 20.0952 139.514 19.7325C140.161 19.3517 140.674 18.8167 141.052 18.1276C141.448 17.4204 141.646 16.5954 141.646 15.6524C141.646 14.7095 141.448 13.8935 141.052 13.2045C140.674 12.5154 140.161 11.9895 139.514 11.6268C138.866 11.246 138.164 11.0556 137.408 11.0556C136.653 11.0556 135.951 11.246 135.303 11.6268C134.655 11.9895 134.134 12.5154 133.738 13.2045C133.36 13.8935 133.171 14.7095 133.171 15.6524C133.171 16.5954 133.36 17.4204 133.738 18.1276C134.134 18.8167 134.655 19.3517 135.303 19.7325C135.951 20.0952 136.653 20.2764 137.408 20.2764Z" fill="black"/>
|
|
61
|
+
<path d="M123.639 11.3537H121.129V8.71533H123.639V7.62733C123.639 6.17667 124.089 5.02519 124.988 4.17293C125.888 3.32067 127.04 2.89453 128.443 2.89453C129.253 2.89453 129.955 2.99427 130.548 3.19373V6.13133C130.224 6.00439 129.919 5.90467 129.631 5.83213C129.361 5.74147 129.046 5.69613 128.686 5.69613C128.092 5.69613 127.598 5.88653 127.202 6.26733C126.806 6.64813 126.608 7.17399 126.608 7.84493V8.71533H130.063V11.3537H126.608V22.5874H123.639V11.3537Z" fill="black"/>
|
|
62
|
+
</g>
|
|
63
|
+
<defs>
|
|
64
|
+
<filter id="filter0_f_1168_19495" x="-15.7546" y="-2.61008" width="31.3608" height="33.0288" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
65
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
66
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
67
|
+
<feGaussianBlur stdDeviation="4.9193" result="effect1_foregroundBlur_1168_19495"/>
|
|
68
|
+
</filter>
|
|
69
|
+
<filter id="filter1_f_1168_19495" x="-44.079" y="-54.1542" width="109.934" height="110.379" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
70
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
71
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
72
|
+
<feGaussianBlur stdDeviation="23.7822" result="effect1_foregroundBlur_1168_19495"/>
|
|
73
|
+
</filter>
|
|
74
|
+
<filter id="filter2_f_1168_19495" x="-40.6561" y="-27.577" width="96.3561" height="101.062" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
75
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
76
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
77
|
+
<feGaussianBlur stdDeviation="20.2172" result="effect1_foregroundBlur_1168_19495"/>
|
|
78
|
+
</filter>
|
|
79
|
+
<filter id="filter3_f_1168_19495" x="-40.6561" y="-27.577" width="96.3561" height="101.062" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
80
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
81
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
82
|
+
<feGaussianBlur stdDeviation="20.2172" result="effect1_foregroundBlur_1168_19495"/>
|
|
83
|
+
</filter>
|
|
84
|
+
<filter id="filter4_f_1168_19495" x="-40.2869" y="-26.1649" width="96.4655" height="97.2965" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
85
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
86
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
87
|
+
<feGaussianBlur stdDeviation="20.2172" result="effect1_foregroundBlur_1168_19495"/>
|
|
88
|
+
</filter>
|
|
89
|
+
<filter id="filter5_f_1168_19495" x="-18.9588" y="-35.3601" width="91.4127" height="90.982" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
90
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
91
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
92
|
+
<feGaussianBlur stdDeviation="19.2123" result="effect1_foregroundBlur_1168_19495"/>
|
|
93
|
+
</filter>
|
|
94
|
+
<filter id="filter6_f_1168_19495" x="-43.2269" y="-34.3607" width="86.8376" height="87.2214" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
95
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
96
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
97
|
+
<feGaussianBlur stdDeviation="17.4118" result="effect1_foregroundBlur_1168_19495"/>
|
|
98
|
+
</filter>
|
|
99
|
+
<filter id="filter7_f_1168_19495" x="-21.7103" y="-27.265" width="81.1619" height="80.7742" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
100
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
101
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
102
|
+
<feGaussianBlur stdDeviation="15.5495" result="effect1_foregroundBlur_1168_19495"/>
|
|
103
|
+
</filter>
|
|
104
|
+
<filter id="filter8_f_1168_19495" x="-16.9128" y="-29.6579" width="66.9456" height="65.2494" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
105
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
106
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
107
|
+
<feGaussianBlur stdDeviation="13.9139" result="effect1_foregroundBlur_1168_19495"/>
|
|
108
|
+
</filter>
|
|
109
|
+
<filter id="filter9_f_1168_19495" x="-25.002" y="-31.3224" width="65.8029" height="65.3283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
110
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
111
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
112
|
+
<feGaussianBlur stdDeviation="11.752" result="effect1_foregroundBlur_1168_19495"/>
|
|
113
|
+
</filter>
|
|
114
|
+
<filter id="filter10_f_1168_19495" x="-28.9408" y="-14.8871" width="68.6628" height="67.1726" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
115
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
116
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
117
|
+
<feGaussianBlur stdDeviation="14.5451" result="effect1_foregroundBlur_1168_19495"/>
|
|
118
|
+
</filter>
|
|
119
|
+
<linearGradient id="paint0_linear_1168_19495" x1="7.32191" y1="17.3681" x2="20.7861" y2="6.10441" gradientUnits="userSpaceOnUse">
|
|
120
|
+
<stop stop-color="#4893FC"/>
|
|
121
|
+
<stop offset="0.27" stop-color="#4893FC"/>
|
|
122
|
+
<stop offset="0.776981" stop-color="#969DFF"/>
|
|
123
|
+
<stop offset="1" stop-color="#BD99FE"/>
|
|
124
|
+
</linearGradient>
|
|
125
|
+
<clipPath id="clip0_1168_19495">
|
|
126
|
+
<rect width="308" height="26" fill="white"/>
|
|
127
|
+
</clipPath>
|
|
128
|
+
</defs>
|
|
129
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="124" height="26" viewBox="0 0 124 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_857_19538)">
|
|
3
|
+
<path d="M51.5689 5.20048V20.8005H48.8141V8.55881H48.7774L43.8556 20.8005H42.0191L36.9871 8.55881H36.9504V20.8005H34.416V5.20048H38.3828L42.9373 16.756H43.0108L47.8224 5.20048H51.5689ZM53.8461 6.39214C53.8461 5.95881 53.993 5.5977 54.3236 5.30881C54.6542 5.01992 55.0215 4.87548 55.4622 4.87548C55.9397 4.87548 56.3437 5.01992 56.6376 5.30881C56.9314 5.5977 57.1151 5.95881 57.1151 6.39214C57.1151 6.82548 56.9681 7.18659 56.6376 7.47548C56.307 7.76437 55.9397 7.90881 55.4622 7.90881C54.9847 7.90881 54.6174 7.76437 54.3236 7.47548C54.0298 7.15048 53.8461 6.78937 53.8461 6.39214ZM56.8212 9.60603V20.8005H54.1399V9.60603H56.8212ZM64.9385 18.8866C65.3426 18.8866 65.7833 18.8144 66.2608 18.5977C66.7383 18.4171 67.179 18.1644 67.5831 17.8755V20.331C67.1423 20.5838 66.6648 20.7644 66.1139 20.8727C65.5629 20.981 64.9753 21.0533 64.3141 21.0533C62.6245 21.0533 61.2655 20.5477 60.2371 19.5005C59.1719 18.4533 58.6577 17.1171 58.6577 15.5283C58.6577 13.7227 59.2087 12.2421 60.2738 11.0866C61.339 9.93103 62.8449 9.35326 64.8283 9.35326C65.3426 9.35326 65.8568 9.42548 66.3343 9.53381C66.8485 9.64214 67.2525 9.8227 67.5463 9.96714V12.4949C67.1423 12.206 66.7016 11.9533 66.2975 11.8088C65.8568 11.6644 65.416 11.556 64.9753 11.556C63.9101 11.556 63.0653 11.881 62.4042 12.5671C61.743 13.2533 61.4492 14.156 61.4492 15.3116C61.4492 16.431 61.7798 17.3338 62.4042 17.9477C63.0286 18.5616 63.8734 18.8866 64.9385 18.8866ZM75.1862 9.42548C75.4065 9.42548 75.5902 9.42548 75.7738 9.46159C75.9575 9.4977 76.1044 9.53381 76.2146 9.56992V12.2421C76.0677 12.1338 75.884 12.0255 75.5902 11.9533C75.2963 11.881 75.0025 11.8088 74.5985 11.8088C73.9373 11.8088 73.3864 12.0977 72.9456 12.6394C72.5049 13.181 72.2478 14.0116 72.2478 15.1671V20.8005H69.5665V9.60603H72.2478V11.3755H72.2845C72.5416 10.7616 72.9089 10.2921 73.3864 9.93103C73.9006 9.60603 74.4883 9.42548 75.1862 9.42548ZM76.3615 15.3838C76.3615 13.5421 76.9125 12.0616 77.9409 10.9783C79.0061 9.89492 80.4753 9.35326 82.3485 9.35326C84.1115 9.35326 85.5072 9.85881 86.499 10.906C87.4907 11.9533 88.0049 13.3616 88.0049 15.131C88.0049 16.9366 87.4539 18.381 86.4255 19.4644C85.3603 20.5477 83.9279 21.0894 82.0914 21.0894C80.3283 21.0894 78.9326 20.5838 77.9042 19.5727C76.8757 18.5255 76.3615 17.1171 76.3615 15.3838ZM79.153 15.2755C79.153 16.431 79.4101 17.3338 79.961 17.9477C80.512 18.5616 81.2833 18.8866 82.275 18.8866C83.23 18.8866 84.0013 18.5977 84.5155 17.9477C85.0298 17.3338 85.2869 16.431 85.2869 15.2033C85.2869 14.0116 85.0298 13.1088 84.5155 12.4588C84.0013 11.8449 83.23 11.5199 82.3117 11.5199C81.32 11.5199 80.5854 11.8449 80.0345 12.4949C79.4101 13.181 79.153 14.0838 79.153 15.2755ZM92.0084 12.5671C92.0084 12.9283 92.1186 13.2533 92.3757 13.4699C92.6328 13.6866 93.1471 13.9394 93.9918 14.2644C95.057 14.6977 95.8283 15.1671 96.2324 15.6727C96.6731 16.2144 96.8935 16.8283 96.8935 17.5866C96.8935 18.6338 96.4895 19.4644 95.6447 20.1144C94.8366 20.7644 93.698 21.0533 92.3023 21.0533C91.8248 21.0533 91.3106 20.981 90.7229 20.8727C90.1352 20.7644 89.6577 20.6199 89.2537 20.4394V17.8394C89.7312 18.1644 90.2821 18.4533 90.8331 18.6338C91.384 18.8144 91.8982 18.9227 92.3757 18.9227C92.9634 18.9227 93.4409 18.8505 93.698 18.6699C93.9918 18.4894 94.1388 18.2366 94.1388 17.8394C94.1388 17.4783 93.9918 17.1894 93.698 16.9005C93.4042 16.6477 92.8165 16.3588 92.0084 16.0338C91.0167 15.6366 90.3189 15.1671 89.9148 14.6616C89.5108 14.156 89.2904 13.506 89.2904 12.7116C89.2904 11.7005 89.6944 10.8699 90.5025 10.2199C91.3106 9.56992 92.3757 9.24492 93.6613 9.24492C94.0653 9.24492 94.5061 9.28103 94.9835 9.38937C95.461 9.4977 95.9018 9.60603 96.2324 9.71437V12.2783C95.8651 12.0616 95.461 11.8449 94.9835 11.6644C94.5061 11.4838 94.0286 11.4116 93.5878 11.4116C93.0736 11.4116 92.6696 11.5199 92.4125 11.7005C92.1553 11.9533 92.0084 12.206 92.0084 12.5671ZM98.0321 15.3838C98.0321 13.5421 98.5831 12.0616 99.6115 10.9783C100.677 9.89492 102.146 9.35326 104.019 9.35326C105.782 9.35326 107.178 9.85881 108.17 10.906C109.161 11.9533 109.675 13.3616 109.675 15.131C109.675 16.9366 109.125 18.381 108.096 19.4644C107.031 20.5477 105.598 21.0894 103.762 21.0894C101.999 21.0894 100.603 20.5838 99.5748 19.5727C98.5831 18.5255 98.0321 17.1171 98.0321 15.3838ZM100.824 15.2755C100.824 16.431 101.081 17.3338 101.632 17.9477C102.183 18.5616 102.954 18.8866 103.946 18.8866C104.901 18.8866 105.672 18.5977 106.186 17.9477C106.7 17.3338 106.957 16.431 106.957 15.2033C106.957 14.0116 106.7 13.1088 106.186 12.4588C105.672 11.8449 104.901 11.5199 103.982 11.5199C102.991 11.5199 102.256 11.8449 101.705 12.4949C101.117 13.181 100.824 14.0838 100.824 15.2755ZM118.601 11.7727H114.597V20.8005H111.879V11.7727H109.969V9.60603H111.879V8.05326C111.879 6.8977 112.283 5.9227 113.055 5.16437C113.826 4.40603 114.818 4.04492 116.03 4.04492C116.36 4.04492 116.654 4.08103 116.911 4.08103C117.168 4.08103 117.389 4.15326 117.572 4.22548V6.50048C117.499 6.46437 117.315 6.39214 117.095 6.31992C116.875 6.2477 116.617 6.21159 116.324 6.21159C115.773 6.21159 115.332 6.39214 115.038 6.71714C114.744 7.04214 114.597 7.58381 114.597 8.23381V9.56992H118.601V7.04214L121.282 6.2477V9.56992H124V11.7366H121.282V16.9727C121.282 17.6588 121.429 18.1283 121.649 18.4171C121.907 18.706 122.311 18.8505 122.862 18.8505C123.008 18.8505 123.192 18.8144 123.412 18.7421C123.633 18.6699 123.816 18.5977 123.963 18.4894V20.656C123.78 20.7644 123.523 20.8366 123.119 20.9088C122.715 20.981 122.347 21.0171 121.943 21.0171C120.805 21.0171 119.96 20.7283 119.409 20.1505C118.858 19.5727 118.564 18.6699 118.564 17.4783L118.601 11.7727Z" fill="black"/>
|
|
4
|
+
<path d="M12.5616 0H0V12.35H12.5616V0Z" fill="black"/>
|
|
5
|
+
<path d="M26.4454 0H13.8838V12.35H26.4454V0Z" fill="black"/>
|
|
6
|
+
<path d="M12.5616 13.6504H0V26.0004H12.5616V13.6504Z" fill="black"/>
|
|
7
|
+
<path d="M26.4454 13.6504H13.8838V26.0004H26.4454V13.6504Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id="clip0_857_19538">
|
|
11
|
+
<rect width="124" height="26" fill="white"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|