@towsila/expo-ui-library 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +142 -0
- package/package.json +55 -0
- package/src/assets/customIcons/arrow.svg +3 -0
- package/src/assets/customIcons/arrow_back.svg +3 -0
- package/src/assets/customIcons/ban.svg +4 -0
- package/src/assets/customIcons/checkmark.svg +4 -0
- package/src/assets/customIcons/close.svg +5 -0
- package/src/assets/customIcons/dark_mode.svg +3 -0
- package/src/assets/customIcons/dark_suspended.svg +67 -0
- package/src/assets/customIcons/document.svg +4 -0
- package/src/assets/customIcons/email.svg +3 -0
- package/src/assets/customIcons/eye.svg +5 -0
- package/src/assets/customIcons/eye_off.svg +7 -0
- package/src/assets/customIcons/humberger.svg +5 -0
- package/src/assets/customIcons/information.svg +6 -0
- package/src/assets/customIcons/light_mode.svg +18 -0
- package/src/assets/customIcons/light_suspended.svg +67 -0
- package/src/assets/customIcons/lock_closed.svg +4 -0
- package/src/assets/customIcons/logout.svg +4 -0
- package/src/assets/customIcons/person.svg +4 -0
- package/src/assets/customIcons/phone.svg +3 -0
- package/src/assets/customIcons/phone_dark.svg +36 -0
- package/src/assets/customIcons/phone_light.svg +36 -0
- package/src/assets/customIcons/shield.svg +4 -0
- package/src/assets/customIcons/trash.svg +9 -0
- package/src/assets/customIcons/warning.svg +5 -0
- package/src/assets/icons/google.svg +9 -0
- package/src/assets/images/bg_dark.svg +5 -0
- package/src/assets/images/bg_dark_v1.svg +5 -0
- package/src/assets/images/bg_light.svg +5 -0
- package/src/assets/images/bg_light_v1.svg +5 -0
- package/src/assets/images/en.jpg +0 -0
- package/src/assets/images/fr.jpg +0 -0
- package/src/components/icons/ban.tsx +77 -0
- package/src/components/icons/chatIcon.tsx +19 -0
- package/src/components/icons/homeIcon.tsx +25 -0
- package/src/components/icons/profileIcon.tsx +29 -0
- package/src/components/icons/settingsIcon.tsx +22 -0
- package/src/components/reusable/templatePage.tsx +94 -0
- package/src/components/reusable/templateSubPage.tsx +66 -0
- package/src/components/screens/AccountStatusScreen.tsx +102 -0
- package/src/components/screens/AddReportScreen.tsx +135 -0
- package/src/components/screens/LegalScreen.tsx +41 -0
- package/src/components/screens/VerificationCodeScreen.tsx +66 -0
- package/src/components/screens/aboutScreen.tsx +139 -0
- package/src/components/screens/forgotPasswordScreen.tsx +60 -0
- package/src/components/screens/loginScreen.tsx +165 -0
- package/src/components/screens/onBoarding.tsx +178 -0
- package/src/components/screens/resetPassword.tsx +115 -0
- package/src/components/screens/settingScreen.tsx +85 -0
- package/src/components/screens/signUpScreen.tsx +119 -0
- package/src/components/screens/splashScreen.tsx +170 -0
- package/src/components/ui/OTPInput.tsx +73 -0
- package/src/components/ui/PageTopBar.tsx +41 -0
- package/src/components/ui/asidebar.tsx +151 -0
- package/src/components/ui/badge.tsx +21 -0
- package/src/components/ui/button.tsx +58 -0
- package/src/components/ui/customPopup.tsx +176 -0
- package/src/components/ui/dynamicForm.tsx +144 -0
- package/src/components/ui/error.tsx +23 -0
- package/src/components/ui/input.tsx +121 -0
- package/src/components/ui/languageSelect.tsx +99 -0
- package/src/components/ui/pageIndicator.tsx +58 -0
- package/src/components/ui/passwordRequirmentCard.tsx +55 -0
- package/src/components/ui/sharpButton.tsx +67 -0
- package/src/components/ui/sharpContainer.tsx +180 -0
- package/src/components/ui/sharpDynamicForm.tsx +148 -0
- package/src/components/ui/sharpInput.tsx +148 -0
- package/src/components/ui/sharpOtpInput.tsx +228 -0
- package/src/components/ui/sharpSelect.tsx +155 -0
- package/src/components/ui/successDialog.tsx +97 -0
- package/src/components/ui/termsPopup.tsx +56 -0
- package/src/components/ui/themeToggle.tsx +98 -0
- package/src/components/ui/toast.tsx +163 -0
- package/src/components/ui/warningModel.tsx +132 -0
- package/src/constants/language.ts +15 -0
- package/src/context/LanguageContext.tsx +49 -0
- package/src/context/LocationPermissionProvider.tsx +106 -0
- package/src/context/ThemeContext.tsx +70 -0
- package/src/hooks/useCountdown.ts +21 -0
- package/src/hooks/useForgotPasswordForm.ts +46 -0
- package/src/hooks/useForm.ts +52 -0
- package/src/hooks/useLoginForm.ts +25 -0
- package/src/hooks/useResetPasswordForm.ts +75 -0
- package/src/hooks/useSignup.tsx +34 -0
- package/src/hooks/useSubmitReport.ts +47 -0
- package/src/hooks/useUpdateUser.tsx +81 -0
- package/src/icons/index.ts +36 -0
- package/src/index.ts +62 -0
- package/src/service/createApi.ts +57 -0
- package/src/service/sendEmail.ts +11 -0
- package/src/tokens/themes.ts +19 -0
- package/src/tokens/typography.ts +16 -0
- package/src/types/formFields.ts +13 -0
- package/src/types/icon.ts +6 -0
- package/src/types/language.ts +7 -0
- package/src/types/menu.ts +9 -0
- package/src/types/settingsFields.tsx +9 -0
- package/src/types/svg.d.ts +6 -0
- package/src/types/validateForm.ts +8 -0
- package/src/utils/helpers/groupSettings.ts +21 -0
- package/src/utils/inputValidator/customValidator.ts +36 -0
- package/src/utils/inputValidator/generalTerms.ts +19 -0
- package/src/utils/inputValidator/registerValidator.ts +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
# UI Library
|
|
2
|
+
|
|
3
|
+
Shared React Native / Expo component library used across multiple apps. Published as a private package to the GitLab Package Registry.
|
|
4
|
+
|
|
5
|
+
## What's in here
|
|
6
|
+
|
|
7
|
+
- **Full screens** (`LoginScreen`, `RegisterScreen`, `ForgotPasswordScreen`) — ready-to-use, themed components for apps that share the same design
|
|
8
|
+
- **Headless hooks** (`useLoginForm`, `useRegisterForm`, `useForgotPassword`) — state, validation, and logic only, for apps that want their own UI
|
|
9
|
+
- **UI primitives** (`Button`, `Input`, `ErrorMessage`, `Navbar`)
|
|
10
|
+
- **Theming** — `ThemeProvider`, `useAppTheme`, and the `AppTheme` type. This library does **not** ship any colors — each consuming app defines its own theme object that satisfies `AppTheme`.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
This package is private and hosted on this project's GitLab Package Registry, not the public npm registry.
|
|
15
|
+
|
|
16
|
+
In the consuming app, add a `.npmrc` in the project root:
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
@yourscope:registry=https://gitlab.com/api/v4/projects/<project-id>/packages/npm/
|
|
20
|
+
//gitlab.com/api/v4/projects/<project-id>/packages/npm/:_authToken=YOUR_TOKEN
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Then install:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install @yourscope/ui-library
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
> `.npmrc` contains your token — make sure it's in `.gitignore` and never committed.
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
### Same design — use the full screen
|
|
34
|
+
|
|
35
|
+
```tsx
|
|
36
|
+
import { LoginScreen } from "@yourscope/ui-library";
|
|
37
|
+
|
|
38
|
+
export default function Login() {
|
|
39
|
+
const { login } = useAuth();
|
|
40
|
+
const router = useRouter();
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<LoginScreen
|
|
44
|
+
onLogin={async (email, password) => {
|
|
45
|
+
await login(email, password);
|
|
46
|
+
router.replace("/home");
|
|
47
|
+
}}
|
|
48
|
+
onForgotPassword={() => router.push("/forgot-password")}
|
|
49
|
+
onSignUp={() => router.push("/register")}
|
|
50
|
+
/>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Different design — use only the hook
|
|
56
|
+
|
|
57
|
+
```tsx
|
|
58
|
+
import { useLoginForm } from "@yourscope/ui-library";
|
|
59
|
+
|
|
60
|
+
export default function Login({ onLogin }) {
|
|
61
|
+
const form = useLoginForm({ onLogin });
|
|
62
|
+
|
|
63
|
+
return (
|
|
64
|
+
<View style={myStyles.container}>
|
|
65
|
+
<TextInput value={form.email} onChangeText={form.setEmail} placeholder="Email" />
|
|
66
|
+
<TextInput
|
|
67
|
+
value={form.password}
|
|
68
|
+
onChangeText={form.setPassword}
|
|
69
|
+
secureTextEntry={!form.showPassword}
|
|
70
|
+
/>
|
|
71
|
+
{form.errors.email && <Text>{form.errors.email}</Text>}
|
|
72
|
+
<Pressable onPress={form.handleSubmit}>
|
|
73
|
+
<Text>Login</Text>
|
|
74
|
+
</Pressable>
|
|
75
|
+
</View>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Theming an app
|
|
81
|
+
|
|
82
|
+
```tsx
|
|
83
|
+
// theme.ts
|
|
84
|
+
import { AppTheme } from "@yourscope/ui-library";
|
|
85
|
+
|
|
86
|
+
export const theme: AppTheme = {
|
|
87
|
+
button: { primary: "#3B82F6", secondary: "#6366F1" },
|
|
88
|
+
background: { main: "#F8FAFC", card: "#FFFFFF" },
|
|
89
|
+
text: { primary: "#111827", secondary: "#6B7280" },
|
|
90
|
+
};
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
```tsx
|
|
94
|
+
// app/_layout.tsx
|
|
95
|
+
import { ThemeProvider } from "@yourscope/ui-library";
|
|
96
|
+
import { theme } from "../theme";
|
|
97
|
+
|
|
98
|
+
export default function RootLayout() {
|
|
99
|
+
return (
|
|
100
|
+
<ThemeProvider theme={theme}>
|
|
101
|
+
{/* your existing layout */}
|
|
102
|
+
</ThemeProvider>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
## Project structure
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
src/
|
|
111
|
+
components/
|
|
112
|
+
screens/ # LoginScreen, RegisterScreen, ForgotPasswordScreen
|
|
113
|
+
ui/ # Button, Input, ErrorMessage, Navbar
|
|
114
|
+
hooks/ # useLoginForm, useRegisterForm, useForgotPassword
|
|
115
|
+
context/ # ThemeContext.tsx — ThemeProvider + useAppTheme
|
|
116
|
+
tokens/ # themes.ts — AppTheme type only, no color values
|
|
117
|
+
index.ts # single entry point, exports everything
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## Publishing a new version
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
npm version patch # bug fix: 1.0.0 → 1.0.1
|
|
124
|
+
npm version minor # new feature: 1.0.0 → 1.1.0
|
|
125
|
+
npm version major # breaking change:1.0.0 → 2.0.0
|
|
126
|
+
|
|
127
|
+
git push
|
|
128
|
+
npm publish
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Then in each consuming app:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
npm update @yourscope/ui-library
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
## Rules for contributing
|
|
138
|
+
|
|
139
|
+
- No hardcoded colors. Anything visual must come from `useAppTheme()`.
|
|
140
|
+
- Every screen component must have a matching hook that contains all of its logic, with zero UI.
|
|
141
|
+
- Use relative imports inside `src/` — no `@/` aliases (those only resolve inside an app, not inside this package).
|
|
142
|
+
- Bump the version on every change that gets published. Don't publish without bumping.
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@towsila/expo-ui-library",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"types": "src/index.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"src",
|
|
9
|
+
"assets"
|
|
10
|
+
],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"@react-native-async-storage/async-storage": "^3.1.1",
|
|
16
|
+
"expo": "*",
|
|
17
|
+
"expo-linear-gradient": "*",
|
|
18
|
+
"expo-location": "*",
|
|
19
|
+
"expo-secure-store": "*",
|
|
20
|
+
"expo-splash-screen": "^57.0.2",
|
|
21
|
+
"react": "*",
|
|
22
|
+
"react-native": "*",
|
|
23
|
+
"react-native-keyboard-aware-scroll-view": "*",
|
|
24
|
+
"react-native-reanimated": "^4.5.1",
|
|
25
|
+
"react-native-safe-area-context": "^5.8.0",
|
|
26
|
+
"react-native-svg": "*"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://gitlab.com/depanini/mobile/expo-ui-library.git"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [],
|
|
36
|
+
"author": "",
|
|
37
|
+
"license": "ISC",
|
|
38
|
+
"type": "commonjs",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://gitlab.com/depanini/mobile/expo-ui-library/issues"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://gitlab.com/depanini/mobile/expo-ui-library#readme",
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/react": "^19.2.17",
|
|
45
|
+
"@types/react-native": "^0.72.8",
|
|
46
|
+
"expo-location": "~17.0.0",
|
|
47
|
+
"typescript": "^6.0.3"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@expo/vector-icons": "^15.1.1",
|
|
51
|
+
"expo-linear-gradient": "*",
|
|
52
|
+
"expo-secure-store": "*",
|
|
53
|
+
"react-native-svg": "*"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 7.74219C0.594603 7.76936 1.18898 7.79321 1.78314 7.81373C3.70589 7.88015 5.62632 7.91173 7.54442 7.90848L8.12455 7.9075L8.16777 7.24219C8.28688 5.40885 8.37396 3.57552 8.42901 1.74219L6.97369 2.50773C8.24548 3.43952 9.53069 4.35181 10.8293 5.24461C12.1974 6.18515 13.5803 7.10405 14.9781 8.00131V6.48307C12.3694 8.40076 9.8173 10.4007 7.32169 12.4828L7.81475 12.7422C7.7749 12.3151 7.73332 11.8881 7.69 11.4611C7.63 10.8696 7.56667 10.2781 7.5 9.68663C7.43333 10.2781 7.37 10.8696 7.31 11.4611C7.26668 11.8881 7.2251 12.3151 7.18525 12.7422L7.23244 13.3609L7.67831 13.0016C10.516 11.417 13.2972 9.75028 16.0219 8.00131L17.1246 7.19315L16.0219 6.48307C14.6836 5.49925 13.3304 4.53706 11.9624 3.59652C10.6637 2.70373 9.35173 1.83044 8.02631 0.976642L6.52819 -1.93119e-05L6.57099 1.74219C6.62604 3.57552 6.71312 5.40885 6.83223 7.24219L7.45558 6.57589C5.55402 6.82729 3.65478 7.11352 1.75787 7.43457C1.17169 7.53379 0.585734 7.63632 0 7.74219Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.1245 7.74219C16.5299 7.76936 15.9355 7.79321 15.3414 7.81373C13.4186 7.88015 11.4982 7.91173 9.58009 7.90848L8.99996 7.9075L8.95674 7.24219C8.83763 5.40885 8.75055 3.57552 8.6955 1.74219L10.1508 2.50773C8.87903 3.43952 7.59383 4.35181 6.29522 5.24461C4.92716 6.18515 3.54422 7.10405 2.14641 8.00131V6.48307C4.75507 8.40076 7.30721 10.4007 9.80282 12.4828L9.30977 12.7422C9.34961 12.3151 9.39119 11.8881 9.43451 11.4611C9.49451 10.8696 9.55785 10.2781 9.62451 9.68663C9.69118 10.2781 9.75451 10.8696 9.81451 11.4611C9.85783 11.8881 9.89941 12.3151 9.93926 12.7422L9.89207 13.3609L9.4462 13.0016C6.60848 11.417 3.82728 9.75028 1.10262 8.00131L-8.01086e-05 7.19315L1.10262 6.48307C2.44092 5.49925 3.7941 4.53706 5.16216 3.59652C6.46077 2.70373 7.77278 1.83044 9.0982 0.976642L10.5963 -1.93119e-05L10.5535 1.74219C10.4985 3.57552 10.4114 5.40885 10.2923 7.24219L9.66893 6.57589C11.5705 6.82729 13.4697 7.11352 15.3666 7.43457C15.9528 7.53379 16.5388 7.63632 17.1245 7.74219Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.125 10C18.0719 10.8522 17.8886 11.6855 17.5848 12.4647C16.3896 15.6163 13.1679 17.6788 10 17.525C5.99445 17.4715 2.58662 13.888 2.675 10C2.675 10 2.675 10 2.675 10C2.58662 6.11204 5.99445 2.52846 10 2.475C13.1679 2.32123 16.3896 4.38375 17.5848 7.5353C17.8886 8.31454 18.0719 9.1478 18.125 10C18.1787 9.14796 18.0964 8.28097 17.8739 7.44141C17.0291 4.04995 13.6937 1.32738 10 1.275C5.3498 1.01107 0.952921 5.23221 1.075 10C1.075 10 1.075 10 1.075 10C0.952921 14.7678 5.3498 18.9889 10 18.725C13.6937 18.6726 17.0291 15.95 17.8739 12.5586C18.0964 11.719 18.1787 10.852 18.125 10ZM18.125 10" fill="currentColor"/>
|
|
3
|
+
<path d="M4.25391 4.25464C4.4077 4.48386 4.56339 4.7112 4.72096 4.93665C6.13908 6.96571 7.70994 8.84204 9.43353 10.5656C11.1571 12.2892 13.0335 13.8601 15.0625 15.2782C15.288 15.4358 15.5153 15.5915 15.7445 15.7453C15.5907 15.516 15.435 15.2887 15.2775 15.0633C13.8594 13.0342 12.2885 11.1579 10.5649 9.43427C8.84131 7.71067 6.96498 6.13981 4.93592 4.72169C4.71047 4.56412 4.48313 4.40844 4.25391 4.25464Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.5 10C17.5536 9.21356 17.4814 8.41199 17.2791 7.63477C16.5118 4.49558 13.43 1.95672 10 1.9C5.6827 1.64517 1.58702 5.56507 1.7 10C1.7 10 1.7 10 1.7 10C1.58702 14.4349 5.6827 18.3548 10 18.1C13.43 18.0433 16.5118 15.5044 17.2791 12.3652C17.4814 11.588 17.5536 10.7864 17.5 10C17.4469 10.7866 17.2736 11.5544 16.99 12.2713C15.8725 15.1705 12.9037 17.0496 10 16.9C6.32811 16.838 3.22018 13.5543 3.3 10C3.3 10 3.3 10 3.3 10C3.22018 6.44575 6.32811 3.16203 10 3.1C12.9037 2.95038 15.8725 4.8295 16.99 7.72872C17.2736 8.4456 17.4469 9.21339 17.5 10ZM17.5 10" fill="currentColor"/>
|
|
3
|
+
<path d="M13.75 6.875C13.5856 6.98779 13.4233 7.10229 13.2629 7.2185C11.8202 8.26445 10.5428 9.44933 9.43078 10.7731C8.91633 11.3856 8.43728 12.0277 7.99363 12.6997L8.99155 12.6826C8.29023 12.0639 7.54254 11.4869 6.7485 10.9517C6.58431 10.841 6.41815 10.7321 6.25 10.625C6.33886 10.8035 6.42971 10.9801 6.52254 11.155C6.97148 12.0009 7.46679 12.805 8.00845 13.5674C8.32853 13.8499 8.77101 13.9066 9.00637 13.5503C9.59161 12.9974 10.1415 12.4147 10.6559 11.8022C11.7679 10.4784 12.7145 9.0157 13.4957 7.41403C13.5825 7.23607 13.6673 7.05639 13.75 6.875Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.5 10C17.5536 9.21356 17.4814 8.41199 17.2791 7.63477C16.5118 4.49558 13.43 1.95672 10 1.9C5.6827 1.64517 1.58702 5.56507 1.7 10C1.7 10 1.7 10 1.7 10C1.58702 14.4349 5.6827 18.3548 10 18.1C13.43 18.0433 16.5118 15.5044 17.2791 12.3652C17.4814 11.588 17.5536 10.7864 17.5 10C17.4469 10.7866 17.2736 11.5544 16.99 12.2713C15.8725 15.1705 12.9037 17.0496 10 16.9C6.32811 16.838 3.22018 13.5543 3.3 10C3.3 10 3.3 10 3.3 10C3.22018 6.44575 6.32811 3.16203 10 3.1C12.9037 2.95038 15.8725 4.8295 16.99 7.72872C17.2736 8.4456 17.4469 9.21339 17.5 10ZM17.5 10" fill="currentColor"/>
|
|
3
|
+
<path d="M12.4343 12.5657C12.3887 12.4446 12.3412 12.3255 12.2918 12.2082C11.8473 11.1527 11.25 10.25 10.5 9.5C9.75 8.75 8.84727 8.15274 7.79179 7.7082C7.67452 7.65881 7.55536 7.61131 7.43431 7.56569C7.47994 7.68673 7.52744 7.80589 7.57683 7.92317C8.02136 8.97864 8.61863 9.88137 9.36863 10.6314C10.1186 11.3814 11.0214 11.9786 12.0768 12.4232C12.1941 12.4726 12.3133 12.5201 12.4343 12.5657Z" fill="currentColor"/>
|
|
4
|
+
<path d="M7.56569 12.5657C7.61131 12.4446 7.65881 12.3255 7.70821 12.2082C8.15274 11.1527 8.75 10.25 9.5 9.5C10.25 8.75 11.1527 8.15274 12.2082 7.7082C12.3255 7.65881 12.4446 7.61131 12.5657 7.56569C12.5201 7.68673 12.4726 7.80589 12.4232 7.92317C11.9786 8.97864 11.3814 9.88137 10.6314 10.6314C9.88137 11.3814 8.97864 11.9786 7.92317 12.4232C7.80589 12.4726 7.68673 12.5201 7.56569 12.5657Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.0508 0.0473633C9.8145 0.679921 9.6702 1.35395 9.62726 2.04053C9.60847 2.34078 9.60836 2.64078 9.62781 2.94283C9.7756 6.45055 12.9917 9.68006 16.7617 9.73652C17.5022 9.76246 18.2507 9.67763 18.9722 9.48674L17.9864 8.7748C17.9866 8.88062 17.9875 8.96913 17.9843 9.04053C17.9139 13.2703 14.2624 16.9106 10.1627 17.0307C10.0299 17.0372 9.89627 17.0406 9.76172 17.0408C5.51713 17.1422 1.58661 13.4336 1.50894 9.04053C1.32054 5.50005 3.66287 1.87828 7.23938 0.596856C8.04077 0.301239 8.8914 0.119572 9.76172 0.0603597C9.85759 0.0537756 9.95424 0.0509586 10.0508 0.0473633C9.95466 0.0376812 9.85863 0.0272727 9.76172 0.020695C8.88778 -0.0389836 7.99868 0.0299705 7.13076 0.23271C3.26274 1.07191 0.083602 4.8316 0.0145024 9.04053C-0.296306 14.2354 4.41841 19.172 9.76172 19.0403C9.92909 19.0404 10.0956 19.0364 10.2611 19.0283C15.4238 18.892 19.8188 14.0762 19.5392 9.04053C19.5359 8.91845 19.5273 8.81368 19.5214 8.72618C19.4862 8.1792 19.0558 7.84138 18.5356 8.01423C17.966 8.2066 17.3682 8.31912 16.7617 8.34453C13.7017 8.53896 10.5827 6.1757 10.0049 2.89561C9.95126 2.61391 9.91502 2.3297 9.89618 2.04053C9.85275 1.3797 9.90355 0.706457 10.0508 0.0473633ZM10.0508 0.0473633" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<svg width="506" height="486" viewBox="0 0 506 486" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1967_14831)">
|
|
3
|
+
<path d="M76.6816 145.767C76.6816 145.767 84.602 171.917 82.2261 175.088C79.8502 178.26 107.571 157.655 107.571 157.655C107.571 157.655 97.2749 150.523 101.233 140.222L76.6816 145.767Z" fill="#825347"/>
|
|
4
|
+
<path d="M504.679 459.439H1.32086C0.590913 459.439 0 459.119 0 458.726C0 458.333 0.591594 458.013 1.32086 458.013H504.68C505.409 458.013 506.001 458.333 506.001 458.726C506.001 459.119 505.409 459.439 504.679 459.439Z" fill="#6E6E6E"/>
|
|
5
|
+
<path d="M483.362 431.641C481.211 432.398 478.902 432.587 476.657 432.191C474.412 431.796 472.307 430.828 470.544 429.382C466.055 425.613 464.648 419.402 463.503 413.651L460.115 396.641L467.207 401.527C472.307 405.04 477.522 408.666 481.053 413.755C484.585 418.844 486.126 425.791 483.289 431.298" fill="#095324"/>
|
|
6
|
+
<path d="M482.266 453.419C483.158 446.912 484.076 440.322 483.45 433.747C482.894 427.907 481.113 422.203 477.487 417.525C475.563 415.048 473.221 412.925 470.567 411.252C469.876 410.815 469.238 411.912 469.927 412.347C474.519 415.251 478.07 419.538 480.07 424.591C482.278 430.211 482.632 436.336 482.251 442.305C482.02 445.915 481.533 449.501 481.041 453.079C481.003 453.241 481.027 453.411 481.109 453.556C481.191 453.701 481.326 453.809 481.484 453.859C481.647 453.902 481.819 453.88 481.965 453.797C482.111 453.714 482.219 453.577 482.264 453.415L482.266 453.419Z" fill="white"/>
|
|
7
|
+
<path d="M475.841 442.979C474.918 444.382 473.651 445.523 472.159 446.293C470.668 447.063 469.004 447.436 467.327 447.375C463.018 447.171 459.425 444.162 456.191 441.306L446.625 432.851L452.956 432.548C457.509 432.33 462.18 432.127 466.519 433.532C470.858 434.936 474.855 438.317 475.648 442.805" fill="#095324"/>
|
|
8
|
+
<path d="M484.788 457.159C480.494 449.552 475.506 441.097 466.6 438.395C464.124 437.646 461.528 437.378 458.951 437.604C458.138 437.673 458.341 438.927 459.155 438.857C463.475 438.498 467.786 439.639 471.363 442.088C474.806 444.433 477.486 447.692 479.754 451.148C481.144 453.262 482.388 455.472 483.633 457.676C484.028 458.38 485.191 457.872 484.788 457.159Z" fill="white"/>
|
|
9
|
+
<path d="M61.5176 284.576C62.4621 284.241 63.3218 283.704 64.0362 283.001C64.7506 282.298 65.3022 281.447 65.6523 280.508C66.0024 279.568 66.1425 278.564 66.0626 277.565C65.9827 276.565 65.6848 275.596 65.1898 274.724L81.248 256.406L68.7128 254.676L55.3829 272.337C53.9739 273.266 52.9545 274.679 52.5179 276.31C52.0813 277.941 52.2579 279.675 53.0141 281.184C53.7704 282.693 55.0537 283.872 56.6209 284.497C58.1881 285.123 59.9302 285.151 61.5169 284.577L61.5176 284.576Z" fill="#825347"/>
|
|
10
|
+
<path d="M80.886 446.92H69.6846L64.3555 403.692H80.888L80.886 446.92Z" fill="#825347"/>
|
|
11
|
+
<path d="M139.523 437.542L128.823 440.865L110.924 401.162L126.713 396.258L139.523 437.542Z" fill="#825347"/>
|
|
12
|
+
<path d="M72.3085 247.623L55.7188 266.632L68.7065 267.801L72.3085 247.623Z" fill="#065938"/>
|
|
13
|
+
<path d="M65.8271 272.125C65.8271 272.125 60.0645 275.007 59.3441 287.98C58.6237 300.952 61.5054 334.826 61.5054 334.826C61.5054 334.826 58.6244 349.96 61.5054 363.652C64.3863 377.344 58.6244 427.068 62.2258 427.068C65.8271 427.068 84.555 429.23 85.2754 427.068C85.9958 424.906 86.7162 392.476 86.7162 392.476C86.7162 392.476 92.4787 375.901 86.7162 365.814C86.7162 365.814 106.836 400.964 119.85 427.791C122.698 433.662 144.341 427.07 140.739 420.584C137.138 414.098 128.494 384.55 128.494 384.55C128.494 384.55 122.011 362.93 110.487 353.562L116.249 307.439C116.249 307.439 128.495 276.451 121.293 272.127C114.091 267.803 65.8271 272.125 65.8271 272.125Z" fill="white"/>
|
|
14
|
+
<path d="M87.4349 156.098C97.778 156.098 106.163 147.709 106.163 137.361C106.163 127.012 97.778 118.624 87.4349 118.624C77.0918 118.624 68.707 127.012 68.707 137.361C68.707 147.709 77.0918 156.098 87.4349 156.098Z" fill="#825347"/>
|
|
15
|
+
<path d="M108.323 156.098L85.0414 169.79C85.0414 169.79 76.1266 174.813 72.7965 183.482C69.247 192.722 71.31 205.731 72.7965 208.706C75.6774 214.471 71.5881 228.884 71.5881 228.884L67.9867 262.034C67.9867 262.034 55.0215 274.285 65.1058 275.727C75.1901 277.168 93.1976 275.006 104.002 275.727C114.807 276.447 127.052 277.889 123.451 270.681C119.849 263.472 115.527 258.429 119.849 244.019C123.231 232.74 123.085 190.57 122.861 172.761C122.831 170.315 122.175 167.917 120.957 165.796C119.739 163.675 117.999 161.901 115.902 160.643L108.323 156.098Z" fill="#065938"/>
|
|
16
|
+
<path opacity="0.1" d="M97.8834 178.8L100.044 222.76L79.1024 265.189L75.5508 263.837L97.1602 224.201L97.8834 178.8Z" fill="white"/>
|
|
17
|
+
<path opacity="0.1" d="M121.65 232.127V227.081L97.1621 267.44L121.65 232.127Z" fill="white"/>
|
|
18
|
+
<path d="M74.1437 120.003L71.0502 118.765C71.0502 118.765 77.525 111.634 86.5304 112.254L83.997 109.464C83.997 109.464 90.189 106.984 95.8186 113.494C98.778 116.916 102.201 120.939 104.338 125.47H107.654L106.27 128.519L111.113 131.568L106.142 131.022C106.613 133.654 106.452 136.361 105.672 138.918L105.808 141.328C105.808 141.328 100.043 132.403 100.043 131.168V134.263C100.043 134.263 96.9466 131.473 96.9466 129.613L95.2577 131.783L94.4133 128.374L83.9991 131.783L85.6866 128.992L79.2118 129.922L81.7452 126.512C81.7452 126.512 74.4273 130.542 74.1458 133.953C73.8643 137.364 70.2057 141.704 70.2057 141.704L68.5168 138.603C68.5168 138.603 65.9814 124.654 74.1437 120.003Z" fill="#260F02"/>
|
|
19
|
+
<path d="M86.2595 286.615C87.1297 286.118 87.8804 285.437 88.4587 284.618C89.037 283.799 89.429 282.864 89.6069 281.877C89.7848 280.891 89.7444 279.878 89.4884 278.908C89.2325 277.939 88.7673 277.038 88.1257 276.268L100.682 255.389L88.0364 255.912L78.0515 275.66C76.8301 276.824 76.0781 278.396 75.9379 280.078C75.7977 281.76 76.2792 283.435 77.291 284.786C78.3028 286.136 79.7747 287.069 81.4277 287.406C83.0807 287.743 84.7999 287.462 86.2595 286.616V286.615Z" fill="#825347"/>
|
|
20
|
+
<path d="M114.807 165.468L120.209 164.387C120.209 164.387 136.416 176.278 131.374 200.059C126.332 223.841 104.002 259.874 104.002 259.874C104.002 259.874 98.9588 266.36 97.5194 267.801C96.0799 269.242 93.1976 267.801 94.6384 269.963C96.0793 272.126 92.4772 273.566 92.4772 273.566C92.4772 273.566 76.6303 273.566 78.0711 267.801C79.5119 262.036 104.002 220.955 104.002 220.955L100.399 182.76C100.399 182.76 97.5187 164.026 114.807 165.468Z" fill="#065938"/>
|
|
21
|
+
<path d="M131.164 437.388C131.164 437.388 123.784 431.973 123.784 434.926C123.784 437.879 115.419 449.694 115.419 449.694C115.419 449.694 101.642 459.54 112.958 459.54C124.275 459.54 129.196 457.571 129.196 457.571L141.005 449.694C141.005 449.694 143.958 446.248 142.974 442.31C141.989 438.372 138.543 432.957 138.543 432.957C138.543 432.957 134.609 438.372 131.164 437.388Z" fill="white"/>
|
|
22
|
+
<path d="M68.8009 440.896C68.8009 440.896 67.7827 435.801 64.2188 438.349C60.655 440.897 50.9809 448.537 50.9809 448.537C50.9809 448.537 33.1603 452.612 44.3617 457.707C55.5631 462.801 81.0206 455.669 81.0206 455.669C81.0206 455.669 82.0388 439.368 81.0206 439.877C80.0023 440.387 69.3101 441.915 68.8009 440.896Z" fill="white"/>
|
|
23
|
+
<mask id="path-21-inside-1_1967_14831" fill="white">
|
|
24
|
+
<path d="M162 38.979L404 23L416 454L162 441.044V38.979Z"/>
|
|
25
|
+
</mask>
|
|
26
|
+
<path d="M162 38.979L404 23L416 454L162 441.044V38.979Z" fill="#0F1115"/>
|
|
27
|
+
<path d="M162 38.979C184.186 38.5162 206.368 38.0036 228.548 37.4411C287.251 35.9523 345.932 34.1139 404.589 31.926L395.058 23.249C394.943 164.146 396.845 304.987 400.765 445.772C400.845 448.653 400.926 451.535 401.008 454.417L416.764 439.022C332.095 434.753 247.388 431.214 162.645 428.406L174.655 441.044C172.659 329.191 169.391 217.337 164.85 105.483C163.95 83.3153 163 61.1472 162 38.979C161 61.1472 160.05 83.3153 159.15 105.483C154.609 217.337 151.341 329.191 149.345 441.044L149.564 453.291L161.355 453.682C245.945 459.511 330.572 464.61 415.236 468.978L431.453 469.796L430.992 453.583C430.913 450.701 430.834 447.819 430.753 444.937C426.834 304.152 420.897 163.423 412.942 22.751L412.403 13.2209L403.411 14.074C344.975 19.6176 286.562 25.5108 228.172 31.7535C206.112 34.1121 184.054 36.5206 162 38.979ZM162 38.979" fill="white" mask="url(#path-21-inside-1_1967_14831)"/>
|
|
28
|
+
<path d="M222.913 337.546C227.703 337.546 231.586 333.872 231.586 329.341C231.586 324.809 227.703 321.135 222.913 321.135C218.123 321.135 214.24 324.809 214.24 329.341C214.24 333.872 218.123 337.546 222.913 337.546Z" fill="#700707"/>
|
|
29
|
+
<mask id="path-24-inside-2_1967_14831" fill="white">
|
|
30
|
+
<path d="M209.137 316.817L356.137 314.657V346.183L209.137 342.728V316.817Z"/>
|
|
31
|
+
</mask>
|
|
32
|
+
<path d="M209.137 316.817C214.999 317.064 220.861 317.294 226.723 317.508C269.898 319.084 313.06 319.756 356.208 319.523L351.27 314.657C351.181 324.234 351.137 333.811 351.137 343.389C351.137 344.32 351.137 345.252 351.138 346.183L356.254 341.186C307.253 340.079 258.225 340.138 209.169 341.363L210.502 342.728C210.368 339.949 210.229 337.17 210.087 334.391C209.787 328.533 209.47 322.675 209.137 316.817C208.803 322.675 208.487 328.533 208.187 334.391C208.044 337.17 207.906 339.949 207.771 342.728L207.839 344.125L209.105 344.094C258.049 347.622 307.02 349.985 356.019 351.181L361.14 351.296L361.135 346.183C361.136 345.252 361.137 344.32 361.137 343.389C361.137 333.811 361.092 324.234 361.003 314.657L360.957 309.674L356.065 309.791C312.929 310.826 269.806 312.766 226.696 315.609C220.842 315.995 214.989 316.397 209.137 316.817ZM209.137 316.817" fill="#454646" mask="url(#path-24-inside-2_1967_14831)"/>
|
|
33
|
+
<path d="M217.303 329.136C217.456 329.236 217.609 329.331 217.762 329.421C219.14 330.231 220.518 330.636 221.896 330.636C223.275 330.636 224.653 330.231 226.031 329.421C226.184 329.331 226.337 329.236 226.49 329.136C226.337 329.036 226.184 328.941 226.031 328.851C224.653 328.041 223.275 327.636 221.896 327.636C220.518 327.636 219.14 328.041 217.762 328.851C217.609 328.941 217.456 329.036 217.303 329.136Z" fill="#454646"/>
|
|
34
|
+
<path d="M244.845 325.681C246.344 325.767 247.842 325.848 249.341 325.923C262.827 326.604 276.307 326.879 289.782 326.749C303.257 326.62 316.727 326.085 330.191 325.146C331.687 325.042 333.183 324.932 334.679 324.818C333.18 324.732 331.682 324.652 330.183 324.576C316.697 323.896 303.217 323.62 289.742 323.75C276.267 323.879 262.797 324.414 249.333 325.353C247.837 325.458 246.341 325.567 244.845 325.681Z" fill="#454646"/>
|
|
35
|
+
<path d="M244.906 333.455C246.4 333.584 247.895 333.708 249.39 333.827C262.843 334.896 276.307 335.56 289.782 335.819C303.257 336.078 316.743 335.932 330.24 335.381C331.739 335.32 333.239 335.254 334.739 335.183C333.244 335.054 331.75 334.93 330.255 334.812C316.802 333.743 303.337 333.079 289.862 332.82C276.387 332.561 262.902 332.706 249.405 333.257C247.905 333.318 246.405 333.384 244.906 333.455Z" fill="#454646"/>
|
|
36
|
+
<path d="M222.913 377.278C227.703 377.278 231.586 373.604 231.586 369.072C231.586 364.54 227.703 360.867 222.913 360.867C218.123 360.867 214.24 364.54 214.24 369.072C214.24 373.604 218.123 377.278 222.913 377.278Z" fill="#700707"/>
|
|
37
|
+
<mask id="path-33-inside-3_1967_14831" fill="white">
|
|
38
|
+
<path d="M209.137 356.548L356.137 354.389V385.915L209.137 382.46V356.548Z"/>
|
|
39
|
+
</mask>
|
|
40
|
+
<path d="M209.137 356.548C214.999 356.795 220.861 357.026 226.723 357.24C269.898 358.815 313.06 359.487 356.208 359.255L351.27 354.389C351.181 363.966 351.137 373.543 351.137 383.12C351.137 384.052 351.137 384.983 351.138 385.915L356.254 380.917C307.253 379.81 258.225 379.869 209.169 381.095L210.502 382.46C210.368 379.681 210.229 376.902 210.087 374.123C209.787 368.265 209.47 362.406 209.137 356.548C208.803 362.406 208.487 368.265 208.187 374.123C208.044 376.902 207.906 379.681 207.771 382.46L207.839 383.857L209.105 383.825C258.049 387.354 307.02 389.716 356.019 390.912L361.14 391.028L361.135 385.915C361.136 384.983 361.137 384.052 361.137 383.12C361.137 373.543 361.092 363.966 361.003 354.389L360.957 349.406L356.065 349.523C312.929 350.558 269.806 352.497 226.696 355.34C220.842 355.726 214.989 356.129 209.137 356.548ZM209.137 356.548" fill="#454646" mask="url(#path-33-inside-3_1967_14831)"/>
|
|
41
|
+
<path d="M217.303 368.868C217.456 368.968 217.609 369.063 217.762 369.153C219.14 369.963 220.518 370.368 221.896 370.368C223.275 370.368 224.653 369.963 226.031 369.153C226.184 369.063 226.337 368.968 226.49 368.868C226.337 368.768 226.184 368.673 226.031 368.583C224.653 367.773 223.275 367.368 221.896 367.368C220.518 367.368 219.14 367.773 217.762 368.583C217.609 368.673 217.456 368.768 217.303 368.868Z" fill="#454646"/>
|
|
42
|
+
<path d="M244.845 365.413C246.344 365.499 247.842 365.579 249.341 365.655C262.827 366.335 276.307 366.611 289.782 366.481C303.257 366.351 316.727 365.817 330.191 364.877C331.687 364.773 333.183 364.664 334.679 364.549C333.18 364.464 331.682 364.383 330.183 364.307C316.697 363.627 303.217 363.352 289.742 363.481C276.267 363.611 262.797 364.145 249.333 365.085C247.837 365.189 246.341 365.299 244.845 365.413Z" fill="#454646"/>
|
|
43
|
+
<path d="M244.906 373.187C246.4 373.316 247.895 373.439 249.39 373.558C262.843 374.627 276.307 375.291 289.782 375.55C303.257 375.809 316.743 375.663 330.24 375.113C331.739 375.052 333.239 374.986 334.739 374.914C333.244 374.786 331.75 374.662 330.255 374.543C316.802 373.474 303.337 372.81 289.862 372.551C276.387 372.292 262.902 372.438 249.405 372.988C247.905 373.05 246.405 373.116 244.906 373.187Z" fill="#454646"/>
|
|
44
|
+
<mask id="path-41-inside-4_1967_14831" fill="white">
|
|
45
|
+
<path d="M275.844 235C239.495 235 210.029 203.966 210.029 165.684C210.029 127.402 239.495 96.3687 275.844 96.3687C312.192 96.3687 341.658 127.402 341.658 165.684C341.658 203.966 312.192 235 275.844 235Z"/>
|
|
46
|
+
</mask>
|
|
47
|
+
<path d="M275.844 235C239.495 235 210.029 203.966 210.029 165.684C210.029 127.402 239.495 96.3687 275.844 96.3687C312.192 96.3687 341.658 127.402 341.658 165.684C341.658 203.966 312.192 235 275.844 235Z" fill="#700707"/>
|
|
48
|
+
<path d="M210.029 165.684C210.029 165.684 210.029 165.684 210.029 165.684C210.694 172.772 212.346 179.652 214.904 186.074C224.905 212.002 250.723 229.262 275.844 227.5C307.677 226.294 332.329 196.366 331.658 165.684C331.658 165.684 331.658 165.684 331.658 165.684C332.329 135.003 307.677 105.074 275.844 103.869C250.723 102.106 224.905 119.367 214.904 145.295C212.346 151.717 210.694 158.597 210.029 165.684C210.029 165.684 210.029 165.684 210.029 165.684C209.36 158.598 209.747 151.33 211.265 144.201C216.795 115.591 243.507 89.7788 275.844 88.8687C316.759 86.1899 352.87 125.133 351.658 165.684C351.658 165.684 351.658 165.684 351.658 165.684C352.87 206.235 316.759 245.179 275.844 242.5C243.507 241.59 216.795 215.777 211.265 187.168C209.747 180.038 209.36 172.77 210.029 165.684ZM210.029 165.684" fill="white" mask="url(#path-41-inside-4_1967_14831)"/>
|
|
49
|
+
<path d="M294.107 137.072C292.874 137.935 291.652 138.81 290.442 139.697C279.55 147.683 269.585 156.649 260.549 166.596C251.513 176.543 243.405 187.47 236.225 199.377C235.427 200.7 234.641 202.035 233.866 203.382C235.099 202.519 236.321 201.644 237.531 200.757C248.423 192.771 258.388 183.805 267.424 173.858C276.46 163.911 284.568 152.984 291.748 141.077C292.546 139.754 293.333 138.419 294.107 137.072Z" fill="white"/>
|
|
50
|
+
<path d="M235.775 135.718C237.009 136.581 238.23 137.457 239.441 138.344C250.333 146.33 260.297 155.296 269.334 165.243C278.37 175.189 286.478 186.116 293.658 198.024C294.456 199.347 295.242 200.682 296.017 202.029C294.784 201.166 293.562 200.291 292.352 199.403C281.459 191.418 271.495 182.451 262.459 172.505C253.422 162.558 245.314 151.631 238.134 139.724C237.337 138.401 236.55 137.065 235.775 135.718Z" fill="white"/>
|
|
51
|
+
<path d="M223.776 297.185C228.566 297.185 232.449 293.512 232.449 288.98C232.449 284.448 228.566 280.775 223.776 280.775C218.986 280.775 215.104 284.448 215.104 288.98C215.104 293.512 218.986 297.185 223.776 297.185Z" fill="#700707"/>
|
|
52
|
+
<mask id="path-48-inside-5_1967_14831" fill="white">
|
|
53
|
+
<path d="M210 276.456L357 274.297V305.823L210 302.368V276.456Z"/>
|
|
54
|
+
</mask>
|
|
55
|
+
<path d="M210 276.456C215.863 276.703 221.725 276.934 227.587 277.148C270.762 278.723 313.923 279.395 357.071 279.162L352.134 274.297C352.045 283.874 352 293.451 352 303.028C352 303.959 352 304.891 352.001 305.823L357.117 300.825C308.116 299.718 259.088 299.777 210.032 301.002L211.366 302.368C211.231 299.589 211.092 296.81 210.95 294.031C210.65 288.172 210.333 282.314 210 276.456C209.667 282.314 209.35 288.172 209.05 294.031C208.908 296.81 208.769 299.589 208.634 302.368L208.702 303.765L209.968 303.733C258.912 307.262 307.884 309.624 356.883 310.82L362.003 310.936L361.999 305.823C362 304.891 362 303.959 362 303.028C362 293.451 361.955 283.874 361.866 274.297L361.82 269.313L356.929 269.431C313.792 270.466 270.669 272.405 227.559 275.248C221.706 275.634 215.853 276.037 210 276.456ZM210 276.456" fill="#454646" mask="url(#path-48-inside-5_1967_14831)"/>
|
|
56
|
+
<path d="M218.166 288.776C218.319 288.876 218.472 288.971 218.625 289.061C220.004 289.871 221.382 290.276 222.76 290.276C224.138 290.276 225.516 289.871 226.894 289.061C227.047 288.971 227.2 288.876 227.354 288.776C227.2 288.676 227.047 288.581 226.894 288.491C225.516 287.681 224.138 287.276 222.76 287.276C221.382 287.276 220.004 287.681 218.625 288.491C218.472 288.581 218.319 288.676 218.166 288.776Z" fill="#454646"/>
|
|
57
|
+
<path d="M245.708 285.321C247.207 285.406 248.705 285.487 250.204 285.563C263.69 286.243 277.17 286.518 290.645 286.389C304.12 286.259 317.59 285.725 331.054 284.785C332.55 284.681 334.046 284.571 335.542 284.457C334.044 284.371 332.545 284.291 331.047 284.215C317.561 283.535 304.08 283.259 290.605 283.389C277.13 283.519 263.66 284.053 250.196 284.993C248.7 285.097 247.204 285.206 245.708 285.321Z" fill="#454646"/>
|
|
58
|
+
<path d="M245.769 293.095C247.263 293.223 248.758 293.347 250.253 293.466C263.706 294.535 277.17 295.199 290.645 295.458C304.12 295.717 317.606 295.571 331.103 295.021C332.602 294.96 334.102 294.893 335.602 294.822C334.108 294.693 332.613 294.57 331.118 294.451C317.665 293.382 304.201 292.718 290.726 292.459C277.251 292.2 263.765 292.346 250.268 292.896C248.768 292.957 247.269 293.024 245.769 293.095Z" fill="#454646"/>
|
|
59
|
+
<path d="M258.999 44.2909C259.21 44.3744 259.421 44.4529 259.631 44.5264C261.523 45.1881 263.382 45.446 265.209 45.3003C267.036 45.1545 268.831 44.6051 270.594 43.6519C270.79 43.546 270.985 43.4351 271.18 43.3192C270.969 43.2357 270.759 43.1572 270.548 43.0837C268.657 42.422 266.798 42.164 264.971 42.3098C263.143 42.4555 261.349 43.005 259.586 43.9582C259.39 44.0641 259.195 44.175 258.999 44.2909Z" fill="white"/>
|
|
60
|
+
<path d="M273 43.2706C273.556 43.3226 274.112 43.3696 274.667 43.4115C279.666 43.7894 284.629 43.7637 289.556 43.3346C294.484 42.9055 299.377 42.0729 304.234 40.8369C304.774 40.6996 305.313 40.5572 305.852 40.4099C305.296 40.358 304.74 40.311 304.185 40.269C299.187 39.8912 294.224 39.9168 289.296 40.3459C284.368 40.7751 279.476 41.6076 274.618 42.8437C274.078 42.981 273.539 43.1233 273 43.2706Z" fill="white"/>
|
|
61
|
+
</g>
|
|
62
|
+
<defs>
|
|
63
|
+
<clipPath id="clip0_1967_14831">
|
|
64
|
+
<rect width="506" height="486" fill="white"/>
|
|
65
|
+
</clipPath>
|
|
66
|
+
</defs>
|
|
67
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.25 8.64258C16.1967 9.49786 16.146 10.3531 16.098 11.2084C16.0037 12.8889 15.9197 14.5695 15.8459 16.25C15.8256 16.6358 15.6472 17.0004 15.3713 17.2463C15.0969 17.4944 14.7291 17.6216 14.375 17.6023C11.4583 17.4952 8.54167 17.4191 5.625 17.3741C5.33033 17.3675 5.04402 17.24 4.84437 17.0306C4.64318 16.8226 4.53077 16.5354 4.53587 16.25C4.54529 15.1131 4.55 13.9763 4.55 12.8394C4.55 9.8096 4.51654 6.7798 4.44961 3.75C4.43762 3.44213 4.55274 3.12663 4.76901 2.89401C4.98346 2.66006 5.29696 2.5123 5.625 2.49901C6.91081 2.4614 8.19661 2.41777 9.48242 2.36811C9.68046 2.35473 9.88839 2.42356 10.045 2.5621C11.5709 3.96782 13.108 5.3625 14.6561 6.74609C15.0505 7.09859 15.4457 7.45037 15.8415 7.80143C16.0765 8.00699 16.2306 8.31479 16.25 8.64258C16.2717 8.31533 16.1563 7.97255 15.9264 7.71654C15.5754 7.32068 15.2236 6.92555 14.8711 6.53113C13.4875 4.983 12.0928 3.44594 10.6871 1.91997C10.3821 1.59368 9.93942 1.39302 9.4825 1.38189C8.19661 1.33223 6.91081 1.2886 5.625 1.25099C4.97014 1.23417 4.3074 1.49078 3.82934 1.95434C3.3481 2.41424 3.05884 3.07498 3.05039 3.75C2.98346 6.7798 2.95 9.8096 2.95 12.8394C2.95 13.9763 2.95471 15.1131 2.96413 16.25C2.96569 16.9475 3.25767 17.6366 3.75398 18.121C4.24684 18.6092 4.93678 18.886 5.625 18.8759C8.54167 18.8309 11.4583 18.7548 14.375 18.6477C15.0038 18.6319 15.6123 18.3547 16.0304 17.9054C16.452 17.4588 16.6779 16.8471 16.6541 16.25C16.5803 14.5695 16.4963 12.8889 16.402 11.2084C16.354 10.3531 16.3033 9.49786 16.25 8.64258ZM16.25 8.64258" fill="currentColor"/>
|
|
3
|
+
<path d="M10 2.1875C9.94667 2.37647 9.896 2.56545 9.848 2.75442C9.49912 4.12795 9.29112 5.50147 9.22399 6.875C9.20562 7.40607 9.41867 7.94608 9.80043 8.32457C9.80043 8.32457 9.80043 8.32457 9.80043 8.32457C10.1789 8.70633 10.7189 8.91938 11.25 8.90101C12.6235 8.83388 13.9971 8.62588 15.3706 8.277C15.5596 8.229 15.7485 8.17833 15.9375 8.125C15.7485 8.07167 15.5596 8.021 15.3706 7.973C13.9971 7.62412 12.6235 7.41612 11.25 7.34899C11.1258 7.33297 11.015 7.27644 10.9318 7.1932C10.9318 7.1932 10.9318 7.1932 10.9318 7.1932C10.8486 7.11001 10.792 6.99919 10.776 6.875C10.7089 5.50147 10.5009 4.12795 10.152 2.75442C10.104 2.56545 10.0533 2.37647 10 2.1875Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="15" viewBox="0 0 20 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.1924 0.86377C15.9303 0.780436 14.6682 0.70127 13.4061 0.62627C9.33483 0.38434 5.26361 0.185766 1.19238 0.0305469L0.392091 3.51071e-05L0.35916 0.86377C0.200303 5.03044 0.0868574 9.1971 0.0188243 13.3638L-1.95503e-05 14.5179L1.19238 14.5373C4.31347 14.5883 7.43457 14.6138 10.5557 14.6138C13.1012 14.6138 15.6468 14.5968 18.1924 14.5629L19.3754 14.5787L19.3915 13.3638C19.3405 9.53044 19.251 5.6971 19.1231 1.86377L19.1702 0.180419L17.6868 1.08239C14.9146 3.01027 12.1587 4.96317 9.41887 6.94108L9.98502 6.95408C8.63109 6.08766 7.27325 5.22672 5.91149 4.37127C4.84088 3.69871 3.76784 3.02954 2.69238 2.36377C3.67097 3.16517 4.65197 3.96317 5.6354 4.75779C6.88627 5.7685 8.14105 6.77372 9.39975 7.77346L9.70941 7.97162L9.96589 7.78646C12.8928 6.0977 15.8035 4.38393 18.698 2.64515L17.2617 1.86377C17.1338 5.6971 17.0443 9.53044 16.9932 13.3638L18.1924 12.1646C15.6468 12.1307 13.1012 12.1138 10.5557 12.1138C7.43457 12.1138 4.31348 12.1392 1.19238 12.1902L2.36594 13.3638C2.29791 9.1971 2.18446 5.03044 2.02561 0.86377L1.19238 1.69699C5.26361 1.54177 9.33483 1.3432 13.4061 1.10127C14.6682 1.02627 15.9303 0.947103 17.1924 0.86377Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="21" height="14" viewBox="0 0 21 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="10.4997" cy="6.97877" r="3.86842" transform="rotate(90 10.4997 6.97877)" fill="currentColor"/>
|
|
3
|
+
<path d="M0 5.32095C0.339386 5.14388 0.69045 4.97075 1.03954 4.80202C4.16374 3.34651 7.40783 1.88228 10.5 1.7999C10.5 1.7999 10.5 1.7999 10.5 1.7999C13.5922 1.88228 16.8363 3.34651 19.9605 4.80202C20.3095 4.97075 20.6606 5.14388 21 5.32095C20.7317 5.04722 20.443 4.77848 20.1505 4.51769C17.5045 2.24747 14.4107 0.146495 10.5 -9.76324e-05C10.5 -9.76324e-05 10.5 -9.76324e-05 10.5 -9.76324e-05C6.58929 0.146495 3.49553 2.24747 0.849479 4.51769C0.556997 4.77848 0.26826 5.04722 0 5.32095Z" fill="currentColor"/>
|
|
4
|
+
<path d="M21 8.63656C20.6606 8.81364 20.3095 8.98677 19.9605 9.1555C16.8363 10.611 13.5922 12.0752 10.5 12.1576C10.5 12.1576 10.5 12.1576 10.5 12.1576C7.40784 12.0752 4.16374 10.611 1.03954 9.1555C0.690453 8.98677 0.339388 8.81364 0 8.63656C0.268261 8.9103 0.556999 9.17904 0.84948 9.43983C3.49553 11.7101 6.58929 13.811 10.5 13.9576C10.5 13.9576 10.5 13.9576 10.5 13.9576C14.4107 13.811 17.5045 11.7101 20.1505 9.43983C20.443 9.17904 20.7317 8.9103 21 8.63656Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="23" height="8" viewBox="0 0 23 8" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23 0.000195503C22.622 0.16407 22.2344 0.322078 21.8475 0.477051C18.3925 1.80824 14.8548 3.12768 11.5 3.2002C11.5 3.2002 11.5 3.2002 11.5 3.2002C8.14519 3.12768 4.6075 1.80825 1.15251 0.477051C0.7656 0.322078 0.377968 0.16407 0 0.000195503C0.30625 0.276485 0.631594 0.544936 0.962154 0.805935C3.9365 3.08026 7.37058 5.07852 11.5 5.2002C11.5 5.2002 11.5 5.2002 11.5 5.2002C15.6294 5.07852 19.0635 3.08026 22.0378 0.805935C22.3684 0.544936 22.6937 0.276485 23 0.000195503Z" fill="currentColor"/>
|
|
3
|
+
<path d="M4.39471 2.7499C3.88613 2.31887 3.37754 1.88784 2.86896 1.4568C2.85554 1.49829 2.82918 1.5541 2.80811 1.60343C2.39088 2.52307 1.93317 3.44608 1.31795 4.28361C1.28392 4.3292 1.24656 4.37621 1.21078 4.4209C1.21078 4.4209 1.21078 4.4209 1.21078 4.4209C1.26539 4.40371 1.32255 4.38355 1.37703 4.36429C2.37668 3.98933 3.31473 3.44243 4.2372 2.85551C4.28876 2.82191 4.33912 2.78947 4.39471 2.7499Z" fill="currentColor"/>
|
|
4
|
+
<path d="M9.39046 4.38933C8.77859 4.12464 8.16672 3.85995 7.55485 3.59526C7.55157 3.64459 7.54072 3.70999 7.53206 3.76979C7.3563 4.86086 7.16693 5.97325 6.73852 7.01386C6.71365 7.07044 6.68501 7.12914 6.65687 7.18408C6.70948 7.15177 6.76415 7.114 6.8158 7.07732C7.74787 6.36794 8.51249 5.46175 9.26454 4.54988C9.30668 4.49682 9.34742 4.44648 9.39046 4.38933Z" fill="currentColor"/>
|
|
5
|
+
<path d="M15.4448 3.59531C14.8329 3.85997 14.221 4.12462 13.6092 4.38927C13.6522 4.44643 13.6929 4.49678 13.7351 4.54984C14.4871 5.46177 15.2517 6.36802 16.1838 7.07733C16.2355 7.11401 16.2902 7.15178 16.3428 7.18408C16.3146 7.12914 16.286 7.07044 16.2611 7.01386C15.8326 5.97329 15.6433 4.8609 15.4676 3.76984C15.4589 3.71005 15.4481 3.64464 15.4448 3.59531Z" fill="currentColor"/>
|
|
6
|
+
<path d="M20.131 1.45677C19.6223 1.88774 19.1137 2.31871 18.6051 2.74967C18.6606 2.78927 18.711 2.82171 18.7626 2.85532C19.685 3.44239 20.6231 3.9894 21.6228 4.3643C21.6773 4.38356 21.7345 4.40372 21.7891 4.4209C21.7533 4.37621 21.7159 4.32921 21.6819 4.28362C21.0666 3.44612 20.6089 2.52307 20.1918 1.6034C20.1707 1.55407 20.1444 1.49825 20.131 1.45677Z" fill="currentColor"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="14" viewBox="0 0 24 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 1C0.4 1.06667 0.8 1.13 1.2 1.19C4.8 1.73 8.4 2 12 2C15.6 2 19.2 1.73 22.8 1.19C23.2 1.13 23.6 1.06667 24 1C23.6 0.933333 23.2 0.87 22.8 0.81C19.2 0.27 15.6 0 12 0C8.4 0 4.8 0.27 1.2 0.81C0.8 0.87 0.4 0.933333 0 1Z" fill="currentColor"/>
|
|
3
|
+
<path d="M0 7C0.4 7.06667 0.8 7.13 1.2 7.19C4.8 7.73 8.4 8 12 8C15.6 8 19.2 7.73 22.8 7.19C23.2 7.13 23.6 7.06667 24 7C23.6 6.93333 23.2 6.87 22.8 6.81C19.2 6.27 15.6 6 12 6C8.4 6 4.8 6.27 1.2 6.81C0.8 6.87 0.4 6.93333 0 7Z" fill="currentColor"/>
|
|
4
|
+
<path d="M0 13C0.4 13.0667 0.8 13.13 1.2 13.19C4.8 13.73 8.4 14 12 14C15.6 14 19.2 13.73 22.8 13.19C23.2 13.13 23.6 13.0667 24 13C23.6 12.9333 23.2 12.87 22.8 12.81C19.2 12.27 15.6 12 12 12C8.4 12 4.8 12.27 1.2 12.81C0.8 12.87 0.4 12.9333 0 13Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M9.6875 2.5C8.9338 2.44637 8.1649 2.51336 7.41876 2.7055C4.40494 3.43287 1.95835 6.38962 1.9 9.6875C1.64849 13.8383 5.41906 17.7847 9.6875 17.675C13.9559 17.7847 17.7265 13.8383 17.475 9.6875C17.4167 6.38962 14.9701 3.43287 11.9562 2.7055C11.2101 2.51336 10.4412 2.44637 9.6875 2.5C10.4414 2.55309 11.1765 2.72118 11.8623 2.99463C14.6362 4.07234 16.4229 6.91554 16.275 9.6875C16.2093 13.1935 13.0759 16.1511 9.6875 16.075C9.6875 16.075 9.6875 16.075 9.6875 16.075C6.29913 16.1511 3.16573 13.1935 3.1 9.6875C2.95215 6.91554 4.73878 4.07234 7.51267 2.99463C8.19849 2.72118 8.93363 2.55309 9.6875 2.5ZM9.6875 2.5" fill="currentColor"/>
|
|
3
|
+
<path d="M8.59375 8.59375C8.6901 8.64708 8.78646 8.69775 8.88281 8.74575C9.20312 8.90532 9.52344 9.03542 9.84375 9.13604L9.30146 8.59375C9.12965 9.14062 9.04375 9.6875 9.04375 10.2344C9.04375 11.1016 9.25975 11.9688 9.69175 12.8359C9.73975 12.9323 9.79042 13.0286 9.84375 13.125C9.89708 13.0286 9.94775 12.9323 9.99575 12.8359C10.4277 11.9688 10.6437 11.1016 10.6437 10.2344C10.6437 9.6875 10.5578 9.14062 10.386 8.59375C10.2941 8.30108 10.1364 7.95951 9.84375 8.05146C9.52344 8.15208 9.20312 8.28218 8.88281 8.44175C8.78646 8.48975 8.6901 8.54042 8.59375 8.59375Z" fill="currentColor"/>
|
|
4
|
+
<path d="M8.125 13.2812C8.18229 13.3346 8.23958 13.3853 8.29688 13.4332C8.8125 13.8652 9.32812 14.0813 9.84375 14.0813C10.3594 14.0813 10.875 13.8652 11.3906 13.4332C11.4479 13.3853 11.5052 13.3346 11.5625 13.2812C11.5052 13.2279 11.4479 13.1772 11.3906 13.1293C10.875 12.6973 10.3594 12.4812 9.84375 12.4812C9.32812 12.4812 8.8125 12.6973 8.29688 13.1293C8.23958 13.1772 8.18229 13.2279 8.125 13.2812Z" fill="currentColor"/>
|
|
5
|
+
<path d="M9.82188 5.07812C9.59443 5.07812 9.37209 5.14557 9.18297 5.27193C8.99385 5.3983 8.84645 5.5779 8.75941 5.78804C8.67237 5.99817 8.6496 6.2294 8.69397 6.45248C8.73835 6.67556 8.84787 6.88047 9.0087 7.0413C9.16953 7.20213 9.37444 7.31165 9.59752 7.35603C9.8206 7.4004 10.0518 7.37763 10.262 7.29059C10.4721 7.20355 10.6517 7.05615 10.7781 6.86703C10.9044 6.67791 10.9719 6.45557 10.9719 6.22812C10.9719 5.92313 10.8507 5.63062 10.635 5.41495C10.4194 5.19929 10.1269 5.07812 9.82188 5.07812Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1714_15036)">
|
|
3
|
+
<path d="M12 16C11.5804 15.9335 11.183 15.8049 10.8222 15.6245C9.36153 14.9033 8.5962 13.3604 8.75 12C8.89656 10.2723 10.4192 8.96925 12 9C13.5808 8.96925 15.1034 10.2723 15.25 12C15.4038 13.3604 14.6385 14.9033 13.1778 15.6245C12.817 15.8049 12.4196 15.9335 12 16C12.4194 16.0668 12.859 16.0646 13.2952 15.9859C15.0557 15.7028 16.6461 14.0176 16.75 12C17.0002 9.46645 14.6805 6.92713 12 7C12 7 12 7 12 7C9.31946 6.92713 6.99983 9.46645 7.25 12C7.35389 14.0176 8.94429 15.7028 10.7048 15.9859C11.141 16.0646 11.5806 16.0668 12 16ZM12 16" fill="currentColor"/>
|
|
4
|
+
<path d="M12 20V21" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
5
|
+
<path d="M12 3V4" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M4 12L3 12" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
<path d="M21 12L20 12" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
8
|
+
<path d="M6.34375 17.6567L5.63664 18.3638" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
9
|
+
<path d="M18.3633 5.63599L17.6562 6.34309" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
10
|
+
<path d="M6.34375 6.34326L5.63664 5.63615" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
11
|
+
<path d="M18.3633 18.364L17.6562 17.6569" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="clip0_1714_15036">
|
|
15
|
+
<rect width="24" height="24" fill="white" transform="matrix(0 1 -1 0 24 0)"/>
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<svg width="506" height="486" viewBox="0 0 506 486" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1967_14660)">
|
|
3
|
+
<path d="M76.6816 145.767C76.6816 145.767 84.602 171.917 82.2261 175.088C79.8502 178.26 107.571 157.655 107.571 157.655C107.571 157.655 97.2749 150.523 101.233 140.222L76.6816 145.767Z" fill="#EDC3B8"/>
|
|
4
|
+
<path d="M504.679 459.439H1.32086C0.590913 459.439 0 459.119 0 458.726C0 458.333 0.591594 458.013 1.32086 458.013H504.68C505.409 458.013 506.001 458.333 506.001 458.726C506.001 459.119 505.409 459.439 504.679 459.439Z" fill="#9AA0A6"/>
|
|
5
|
+
<path d="M483.362 431.641C481.211 432.398 478.902 432.587 476.657 432.191C474.412 431.796 472.307 430.828 470.544 429.382C466.055 425.613 464.648 419.402 463.503 413.651L460.115 396.641L467.207 401.527C472.307 405.04 477.522 408.666 481.053 413.755C484.585 418.844 486.126 425.791 483.289 431.298" fill="#22C55E"/>
|
|
6
|
+
<path d="M482.266 453.419C483.158 446.912 484.076 440.322 483.45 433.747C482.894 427.907 481.113 422.203 477.487 417.525C475.563 415.048 473.221 412.925 470.567 411.252C469.876 410.815 469.238 411.912 469.927 412.347C474.519 415.251 478.07 419.538 480.07 424.591C482.278 430.211 482.632 436.336 482.251 442.305C482.02 445.915 481.533 449.501 481.041 453.079C481.003 453.241 481.027 453.411 481.109 453.556C481.191 453.701 481.326 453.809 481.484 453.859C481.647 453.902 481.819 453.88 481.965 453.797C482.111 453.714 482.219 453.577 482.264 453.415L482.266 453.419Z" fill="#111111"/>
|
|
7
|
+
<path d="M475.841 442.979C474.918 444.382 473.651 445.523 472.159 446.293C470.668 447.063 469.004 447.436 467.327 447.375C463.018 447.171 459.425 444.162 456.191 441.306L446.625 432.851L452.956 432.548C457.509 432.33 462.18 432.127 466.519 433.532C470.858 434.936 474.855 438.317 475.648 442.805" fill="#22C55E"/>
|
|
8
|
+
<path d="M484.788 457.159C480.494 449.552 475.506 441.097 466.6 438.395C464.124 437.646 461.528 437.378 458.951 437.604C458.138 437.673 458.341 438.927 459.155 438.857C463.475 438.498 467.786 439.639 471.363 442.088C474.806 444.433 477.486 447.692 479.754 451.148C481.144 453.262 482.388 455.472 483.633 457.676C484.028 458.38 485.191 457.872 484.788 457.159Z" fill="#111111"/>
|
|
9
|
+
<path d="M61.5176 284.576C62.4621 284.241 63.3218 283.704 64.0362 283.001C64.7506 282.298 65.3022 281.447 65.6523 280.508C66.0024 279.568 66.1425 278.564 66.0626 277.565C65.9827 276.565 65.6848 275.596 65.1898 274.724L81.248 256.406L68.7128 254.676L55.3829 272.337C53.9739 273.266 52.9545 274.679 52.5179 276.31C52.0813 277.941 52.2579 279.675 53.0141 281.184C53.7704 282.693 55.0537 283.872 56.6209 284.497C58.1881 285.123 59.9302 285.151 61.5169 284.577L61.5176 284.576Z" fill="#EDC3B8"/>
|
|
10
|
+
<path d="M80.886 446.92H69.6846L64.3555 403.692H80.888L80.886 446.92Z" fill="#EDC3B8"/>
|
|
11
|
+
<path d="M139.523 437.542L128.823 440.865L110.924 401.162L126.713 396.258L139.523 437.542Z" fill="#EDC3B8"/>
|
|
12
|
+
<path d="M72.3085 247.623L55.7188 266.632L68.7065 267.801L72.3085 247.623Z" fill="#13AC6F"/>
|
|
13
|
+
<path d="M65.8271 272.125C65.8271 272.125 60.0645 275.007 59.3441 287.98C58.6237 300.952 61.5054 334.826 61.5054 334.826C61.5054 334.826 58.6244 349.959 61.5054 363.652C64.3863 377.344 58.6244 427.068 62.2258 427.068C65.8271 427.068 84.555 429.23 85.2754 427.068C85.9958 424.906 86.7162 392.476 86.7162 392.476C86.7162 392.476 92.4787 375.901 86.7162 365.814C86.7162 365.814 106.836 400.964 119.85 427.791C122.698 433.662 144.341 427.07 140.739 420.584C137.138 414.098 128.494 384.55 128.494 384.55C128.494 384.55 122.011 362.93 110.487 353.562L116.249 307.439C116.249 307.439 128.495 276.451 121.293 272.127C114.091 267.803 65.8271 272.125 65.8271 272.125Z" fill="#111111"/>
|
|
14
|
+
<path d="M87.4349 156.098C97.778 156.098 106.163 147.709 106.163 137.361C106.163 127.013 97.778 118.624 87.4349 118.624C77.0918 118.624 68.707 127.013 68.707 137.361C68.707 147.709 77.0918 156.098 87.4349 156.098Z" fill="#EDC3B8"/>
|
|
15
|
+
<path d="M108.323 156.098L85.0414 169.79C85.0414 169.79 76.1266 174.813 72.7965 183.482C69.247 192.722 71.31 205.731 72.7965 208.706C75.6774 214.471 71.5881 228.884 71.5881 228.884L67.9867 262.034C67.9867 262.034 55.0215 274.285 65.1058 275.727C75.1901 277.168 93.1976 275.006 104.002 275.727C114.807 276.447 127.052 277.889 123.451 270.681C119.849 263.472 115.527 258.429 119.849 244.019C123.231 232.74 123.085 190.57 122.861 172.761C122.831 170.315 122.175 167.917 120.957 165.796C119.739 163.675 117.999 161.901 115.902 160.643L108.323 156.098Z" fill="#13AC6F"/>
|
|
16
|
+
<path opacity="0.1" d="M97.8834 178.8L100.044 222.76L79.1024 265.189L75.5508 263.837L97.1602 224.201L97.8834 178.8Z" fill="#111111"/>
|
|
17
|
+
<path opacity="0.1" d="M121.65 232.127V227.081L97.1621 267.44L121.65 232.127Z" fill="#111111"/>
|
|
18
|
+
<path d="M74.1437 120.003L71.0502 118.765C71.0502 118.765 77.525 111.634 86.5304 112.254L83.997 109.464C83.997 109.464 90.189 106.984 95.8186 113.494C98.778 116.916 102.201 120.939 104.338 125.47H107.654L106.27 128.519L111.113 131.568L106.142 131.022C106.613 133.654 106.452 136.361 105.672 138.918L105.808 141.328C105.808 141.328 100.043 132.403 100.043 131.168V134.263C100.043 134.263 96.9466 131.473 96.9466 129.613L95.2577 131.783L94.4133 128.374L83.9991 131.783L85.6866 128.992L79.2118 129.922L81.7452 126.512C81.7452 126.512 74.4273 130.542 74.1458 133.953C73.8643 137.364 70.2057 141.704 70.2057 141.704L68.5168 138.603C68.5168 138.603 65.9814 124.654 74.1437 120.003Z" fill="#111111"/>
|
|
19
|
+
<path d="M86.2595 286.615C87.1297 286.118 87.8804 285.437 88.4587 284.618C89.037 283.799 89.429 282.864 89.6069 281.877C89.7848 280.891 89.7444 279.878 89.4884 278.908C89.2325 277.939 88.7673 277.038 88.1257 276.268L100.682 255.389L88.0364 255.912L78.0515 275.66C76.8301 276.824 76.0781 278.396 75.9379 280.078C75.7977 281.76 76.2792 283.435 77.291 284.786C78.3028 286.136 79.7747 287.069 81.4277 287.406C83.0807 287.743 84.7999 287.462 86.2595 286.616V286.615Z" fill="#EDC3B8"/>
|
|
20
|
+
<path d="M114.807 165.468L120.209 164.387C120.209 164.387 136.416 176.278 131.374 200.059C126.332 223.841 104.002 259.874 104.002 259.874C104.002 259.874 98.9588 266.36 97.5194 267.801C96.0799 269.242 93.1976 267.801 94.6384 269.963C96.0793 272.126 92.4772 273.566 92.4772 273.566C92.4772 273.566 76.6303 273.566 78.0711 267.801C79.5119 262.036 104.002 220.955 104.002 220.955L100.399 182.76C100.399 182.76 97.5187 164.026 114.807 165.468Z" fill="#13AC6F"/>
|
|
21
|
+
<path d="M131.164 437.388C131.164 437.388 123.784 431.973 123.784 434.926C123.784 437.879 115.419 449.694 115.419 449.694C115.419 449.694 101.642 459.54 112.958 459.54C124.275 459.54 129.196 457.571 129.196 457.571L141.005 449.694C141.005 449.694 143.958 446.248 142.974 442.31C141.989 438.372 138.543 432.957 138.543 432.957C138.543 432.957 134.609 438.372 131.164 437.388Z" fill="#111111"/>
|
|
22
|
+
<path d="M68.8009 440.896C68.8009 440.896 67.7827 435.801 64.2188 438.349C60.655 440.897 50.9809 448.537 50.9809 448.537C50.9809 448.537 33.1603 452.612 44.3617 457.707C55.5631 462.801 81.0206 455.669 81.0206 455.669C81.0206 455.669 82.0388 439.368 81.0206 439.877C80.0023 440.386 69.3101 441.915 68.8009 440.896Z" fill="#111111"/>
|
|
23
|
+
<mask id="path-21-inside-1_1967_14660" fill="white">
|
|
24
|
+
<path d="M162 38.979L404 23L416 454L162 441.044V38.979Z"/>
|
|
25
|
+
</mask>
|
|
26
|
+
<path d="M162 38.979L404 23L416 454L162 441.044V38.979Z" fill="white"/>
|
|
27
|
+
<path d="M162 38.979C184.186 38.5162 206.368 38.0036 228.548 37.4411C287.251 35.9523 345.932 34.1139 404.589 31.926L395.058 23.249C394.943 164.146 396.845 304.987 400.765 445.772C400.845 448.653 400.926 451.535 401.008 454.417L416.764 439.022C332.095 434.753 247.388 431.214 162.645 428.406L174.655 441.044C172.659 329.191 169.391 217.337 164.85 105.483C163.95 83.3153 163 61.1472 162 38.979C161 61.1472 160.05 83.3153 159.15 105.483C154.609 217.337 151.341 329.191 149.345 441.044L149.564 453.291L161.355 453.682C245.945 459.511 330.572 464.61 415.236 468.978L431.453 469.796L430.992 453.583C430.913 450.701 430.834 447.819 430.753 444.937C426.834 304.152 420.897 163.423 412.942 22.751L412.403 13.2209L403.411 14.074C344.975 19.6176 286.562 25.5108 228.172 31.7535C206.112 34.1121 184.054 36.5206 162 38.979ZM162 38.979" fill="black" mask="url(#path-21-inside-1_1967_14660)"/>
|
|
28
|
+
<path d="M222.913 337.546C227.703 337.546 231.586 333.872 231.586 329.341C231.586 324.809 227.703 321.135 222.913 321.135C218.123 321.135 214.24 324.809 214.24 329.341C214.24 333.872 218.123 337.546 222.913 337.546Z" fill="#C91C1C"/>
|
|
29
|
+
<mask id="path-24-inside-2_1967_14660" fill="white">
|
|
30
|
+
<path d="M209.137 316.817L356.137 314.657V346.183L209.137 342.728V316.817Z"/>
|
|
31
|
+
</mask>
|
|
32
|
+
<path d="M209.137 316.817C214.999 317.064 220.861 317.294 226.723 317.508C269.898 319.084 313.06 319.756 356.208 319.523L351.27 314.657C351.181 324.234 351.137 333.811 351.137 343.389C351.137 344.32 351.137 345.252 351.138 346.183L356.254 341.186C307.253 340.079 258.225 340.138 209.169 341.363L210.502 342.728C210.368 339.949 210.229 337.17 210.087 334.391C209.787 328.533 209.47 322.675 209.137 316.817C208.803 322.675 208.487 328.533 208.187 334.391C208.044 337.17 207.906 339.949 207.771 342.728L207.839 344.125L209.105 344.094C258.049 347.622 307.02 349.985 356.019 351.181L361.14 351.296L361.135 346.183C361.136 345.252 361.137 344.32 361.137 343.389C361.137 333.811 361.092 324.234 361.003 314.657L360.957 309.674L356.065 309.791C312.929 310.826 269.806 312.766 226.696 315.609C220.842 315.995 214.989 316.397 209.137 316.817ZM209.137 316.817" fill="#ECEFF1" mask="url(#path-24-inside-2_1967_14660)"/>
|
|
33
|
+
<path d="M217.303 329.136C217.456 329.236 217.609 329.331 217.762 329.421C219.14 330.231 220.518 330.636 221.896 330.636C223.275 330.636 224.653 330.231 226.031 329.421C226.184 329.331 226.337 329.236 226.49 329.136C226.337 329.036 226.184 328.941 226.031 328.851C224.653 328.041 223.275 327.636 221.896 327.636C220.518 327.636 219.14 328.041 217.762 328.851C217.609 328.941 217.456 329.036 217.303 329.136Z" fill="#ECEFF1"/>
|
|
34
|
+
<path d="M244.845 325.681C246.344 325.767 247.842 325.848 249.341 325.923C262.827 326.604 276.307 326.879 289.782 326.749C303.257 326.62 316.727 326.085 330.191 325.146C331.687 325.042 333.183 324.932 334.679 324.818C333.18 324.732 331.682 324.652 330.183 324.576C316.697 323.896 303.217 323.62 289.742 323.75C276.267 323.879 262.797 324.414 249.333 325.353C247.837 325.458 246.341 325.567 244.845 325.681Z" fill="#ECEFF1"/>
|
|
35
|
+
<path d="M244.906 333.455C246.4 333.584 247.895 333.708 249.39 333.827C262.843 334.896 276.307 335.56 289.782 335.819C303.257 336.078 316.743 335.932 330.24 335.381C331.739 335.32 333.239 335.254 334.739 335.183C333.244 335.054 331.75 334.93 330.255 334.812C316.802 333.743 303.337 333.079 289.862 332.82C276.387 332.561 262.902 332.706 249.405 333.257C247.905 333.318 246.405 333.384 244.906 333.455Z" fill="#ECEFF1"/>
|
|
36
|
+
<path d="M222.913 377.278C227.703 377.278 231.586 373.604 231.586 369.072C231.586 364.54 227.703 360.867 222.913 360.867C218.123 360.867 214.24 364.54 214.24 369.072C214.24 373.604 218.123 377.278 222.913 377.278Z" fill="#C91C1C"/>
|
|
37
|
+
<mask id="path-33-inside-3_1967_14660" fill="white">
|
|
38
|
+
<path d="M209.137 356.548L356.137 354.389V385.915L209.137 382.46V356.548Z"/>
|
|
39
|
+
</mask>
|
|
40
|
+
<path d="M209.137 356.548C214.999 356.795 220.861 357.026 226.723 357.24C269.898 358.815 313.06 359.487 356.208 359.255L351.27 354.389C351.181 363.966 351.137 373.543 351.137 383.12C351.137 384.052 351.137 384.983 351.138 385.915L356.254 380.917C307.253 379.81 258.225 379.869 209.169 381.095L210.502 382.46C210.368 379.681 210.229 376.902 210.087 374.123C209.787 368.265 209.47 362.406 209.137 356.548C208.803 362.406 208.487 368.265 208.187 374.123C208.044 376.902 207.906 379.681 207.771 382.46L207.839 383.857L209.105 383.825C258.049 387.354 307.02 389.716 356.019 390.912L361.14 391.028L361.135 385.915C361.136 384.983 361.137 384.052 361.137 383.12C361.137 373.543 361.092 363.966 361.003 354.389L360.957 349.406L356.065 349.523C312.929 350.558 269.806 352.497 226.696 355.34C220.842 355.726 214.989 356.129 209.137 356.548ZM209.137 356.548" fill="#ECEFF1" mask="url(#path-33-inside-3_1967_14660)"/>
|
|
41
|
+
<path d="M217.303 368.868C217.456 368.968 217.609 369.063 217.762 369.153C219.14 369.963 220.518 370.368 221.896 370.368C223.275 370.368 224.653 369.963 226.031 369.153C226.184 369.063 226.337 368.968 226.49 368.868C226.337 368.768 226.184 368.673 226.031 368.583C224.653 367.773 223.275 367.368 221.896 367.368C220.518 367.368 219.14 367.773 217.762 368.583C217.609 368.673 217.456 368.768 217.303 368.868Z" fill="#ECEFF1"/>
|
|
42
|
+
<path d="M244.845 365.413C246.344 365.499 247.842 365.579 249.341 365.655C262.827 366.335 276.307 366.611 289.782 366.481C303.257 366.351 316.727 365.817 330.191 364.877C331.687 364.773 333.183 364.664 334.679 364.549C333.18 364.464 331.682 364.383 330.183 364.307C316.697 363.627 303.217 363.352 289.742 363.481C276.267 363.611 262.797 364.145 249.333 365.085C247.837 365.189 246.341 365.299 244.845 365.413Z" fill="#ECEFF1"/>
|
|
43
|
+
<path d="M244.906 373.187C246.4 373.316 247.895 373.439 249.39 373.558C262.843 374.627 276.307 375.291 289.782 375.55C303.257 375.809 316.743 375.664 330.24 375.113C331.739 375.052 333.239 374.986 334.739 374.914C333.244 374.786 331.75 374.662 330.255 374.543C316.802 373.474 303.337 372.81 289.862 372.551C276.387 372.292 262.902 372.438 249.405 372.988C247.905 373.05 246.405 373.116 244.906 373.187Z" fill="#ECEFF1"/>
|
|
44
|
+
<mask id="path-41-inside-4_1967_14660" fill="white">
|
|
45
|
+
<path d="M275.842 235C239.493 235 210.027 203.966 210.027 165.684C210.027 127.402 239.493 96.3687 275.842 96.3687C312.19 96.3687 341.656 127.402 341.656 165.684C341.656 203.966 312.19 235 275.842 235Z"/>
|
|
46
|
+
</mask>
|
|
47
|
+
<path d="M275.842 235C239.493 235 210.027 203.966 210.027 165.684C210.027 127.402 239.493 96.3687 275.842 96.3687C312.19 96.3687 341.656 127.402 341.656 165.684C341.656 203.966 312.19 235 275.842 235Z" fill="#C91C1C"/>
|
|
48
|
+
<path d="M210.027 165.684C210.027 165.684 210.027 165.684 210.027 165.684C210.692 172.772 212.344 179.652 214.902 186.074C224.903 212.001 250.721 229.262 275.842 227.5C307.675 226.294 332.327 196.366 331.656 165.684C331.656 165.684 331.656 165.684 331.656 165.684C332.327 135.003 307.675 105.074 275.842 103.869C250.721 102.106 224.903 119.367 214.902 145.295C212.344 151.717 210.692 158.597 210.027 165.684C210.027 165.684 210.027 165.684 210.027 165.684C209.358 158.598 209.745 151.33 211.263 144.201C216.793 115.591 243.505 89.7787 275.842 88.8687C316.757 86.1898 352.868 125.133 351.656 165.684C351.656 165.684 351.656 165.684 351.656 165.684C352.868 206.235 316.757 245.179 275.842 242.5C243.505 241.59 216.793 215.777 211.263 187.168C209.745 180.038 209.358 172.77 210.027 165.684ZM210.027 165.684" fill="black" mask="url(#path-41-inside-4_1967_14660)"/>
|
|
49
|
+
<path d="M294.107 137.071C292.874 137.934 291.652 138.81 290.442 139.697C279.55 147.683 269.585 156.649 260.549 166.596C251.513 176.543 243.405 187.47 236.225 199.377C235.427 200.7 234.641 202.035 233.866 203.382C235.099 202.519 236.321 201.644 237.531 200.757C248.423 192.771 258.388 183.804 267.424 173.858C276.46 163.911 284.568 152.984 291.748 141.077C292.546 139.754 293.333 138.419 294.107 137.071Z" fill="black"/>
|
|
50
|
+
<path d="M235.775 135.718C237.009 136.581 238.23 137.456 239.441 138.344C250.333 146.33 260.297 155.296 269.334 165.243C278.37 175.189 286.478 186.116 293.658 198.024C294.456 199.347 295.242 200.682 296.017 202.029C294.784 201.166 293.562 200.291 292.352 199.403C281.459 191.417 271.495 182.451 262.459 172.504C253.422 162.558 245.314 151.631 238.134 139.724C237.337 138.4 236.55 137.065 235.775 135.718Z" fill="black"/>
|
|
51
|
+
<path d="M223.776 297.185C228.566 297.185 232.449 293.512 232.449 288.98C232.449 284.448 228.566 280.775 223.776 280.775C218.986 280.775 215.104 284.448 215.104 288.98C215.104 293.512 218.986 297.185 223.776 297.185Z" fill="#C91C1C"/>
|
|
52
|
+
<mask id="path-48-inside-5_1967_14660" fill="white">
|
|
53
|
+
<path d="M210 276.456L357 274.297V305.823L210 302.368V276.456Z"/>
|
|
54
|
+
</mask>
|
|
55
|
+
<path d="M210 276.456C215.863 276.703 221.725 276.934 227.587 277.148C270.762 278.723 313.923 279.395 357.071 279.162L352.134 274.297C352.045 283.874 352 293.451 352 303.028C352 303.96 352 304.891 352.001 305.823L357.117 300.825C308.116 299.718 259.088 299.777 210.032 301.002L211.366 302.368C211.231 299.589 211.092 296.81 210.95 294.031C210.65 288.172 210.333 282.314 210 276.456C209.667 282.314 209.35 288.172 209.05 294.031C208.908 296.81 208.769 299.589 208.634 302.368L208.702 303.765L209.968 303.733C258.912 307.262 307.884 309.624 356.883 310.82L362.003 310.936L361.999 305.823C362 304.891 362 303.96 362 303.028C362 293.451 361.955 283.874 361.866 274.297L361.82 269.313L356.929 269.431C313.792 270.466 270.669 272.405 227.559 275.248C221.706 275.634 215.853 276.037 210 276.456ZM210 276.456" fill="#ECEFF1" mask="url(#path-48-inside-5_1967_14660)"/>
|
|
56
|
+
<path d="M218.166 288.776C218.319 288.876 218.472 288.971 218.625 289.061C220.004 289.871 221.382 290.276 222.76 290.276C224.138 290.276 225.516 289.871 226.894 289.061C227.047 288.971 227.2 288.876 227.354 288.776C227.2 288.676 227.047 288.581 226.894 288.491C225.516 287.681 224.138 287.276 222.76 287.276C221.382 287.276 220.004 287.681 218.625 288.491C218.472 288.581 218.319 288.676 218.166 288.776Z" fill="#ECEFF1"/>
|
|
57
|
+
<path d="M245.708 285.321C247.207 285.406 248.705 285.487 250.204 285.563C263.69 286.243 277.17 286.518 290.645 286.389C304.12 286.259 317.59 285.725 331.054 284.785C332.55 284.681 334.046 284.571 335.542 284.457C334.044 284.371 332.545 284.291 331.047 284.215C317.561 283.535 304.08 283.26 290.605 283.389C277.13 283.519 263.66 284.053 250.196 284.993C248.7 285.097 247.204 285.206 245.708 285.321Z" fill="#ECEFF1"/>
|
|
58
|
+
<path d="M245.769 293.095C247.263 293.224 248.758 293.347 250.253 293.466C263.706 294.535 277.17 295.199 290.645 295.458C304.12 295.717 317.606 295.571 331.103 295.021C332.602 294.96 334.102 294.893 335.602 294.822C334.108 294.693 332.613 294.57 331.118 294.451C317.665 293.382 304.201 292.718 290.726 292.459C277.251 292.2 263.765 292.346 250.268 292.896C248.768 292.957 247.269 293.024 245.769 293.095Z" fill="#ECEFF1"/>
|
|
59
|
+
<path d="M258.999 44.2909C259.21 44.3744 259.421 44.4529 259.631 44.5264C261.523 45.1881 263.382 45.446 265.209 45.3003C267.036 45.1545 268.831 44.6051 270.594 43.6519C270.79 43.546 270.985 43.4351 271.18 43.3192C270.969 43.2357 270.759 43.1572 270.548 43.0837C268.657 42.422 266.798 42.164 264.971 42.3098C263.143 42.4555 261.349 43.005 259.586 43.9582C259.39 44.0641 259.195 44.175 258.999 44.2909Z" fill="black"/>
|
|
60
|
+
<path d="M273 43.2706C273.556 43.3226 274.112 43.3696 274.667 43.4115C279.666 43.7894 284.629 43.7637 289.556 43.3346C294.484 42.9055 299.377 42.0729 304.234 40.8369C304.774 40.6996 305.313 40.5572 305.852 40.4099C305.296 40.358 304.74 40.311 304.185 40.269C299.187 39.8912 294.224 39.9168 289.296 40.3459C284.368 40.7751 279.476 41.6076 274.618 42.8437C274.078 42.981 273.539 43.1233 273 43.2706Z" fill="black"/>
|
|
61
|
+
</g>
|
|
62
|
+
<defs>
|
|
63
|
+
<clipPath id="clip0_1967_14660">
|
|
64
|
+
<rect width="506" height="486" fill="white"/>
|
|
65
|
+
</clipPath>
|
|
66
|
+
</defs>
|
|
67
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="17" height="24" viewBox="0 0 17 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.1904 9.54541C10.1731 9.94323 10.3159 10.3248 10.5975 10.6061C10.8785 10.8874 11.2752 11.0454 11.6904 11.0454C12.1056 11.0454 12.5024 10.8874 12.7834 10.6061C13.065 10.3248 13.2078 9.94323 13.1904 9.54541C13.1748 9.1824 13.1592 8.81939 13.1436 8.45638C13.091 7.23605 13.0385 6.01573 12.986 4.79541C12.9482 3.47231 12.3631 2.19525 11.4185 1.31731C10.4797 0.432025 9.1959 -0.0435877 7.94043 0.00339949C6.68379 0.0414076 5.47272 0.599188 4.64161 1.49659C3.80348 2.38862 3.3552 3.6064 3.40196 4.79541C3.46166 6.1824 3.52135 7.56939 3.58105 8.95638C3.59668 9.31939 3.6123 9.6824 3.62793 10.0454C3.63417 10.1883 3.69889 10.3254 3.80428 10.4264C3.90987 10.5275 4.04748 10.5842 4.19043 10.5842C4.33338 10.5842 4.47099 10.5275 4.57658 10.4264C4.68197 10.3254 4.74669 10.1883 4.75293 10.0454C4.76855 9.6824 4.78418 9.31939 4.7998 8.95638C4.8595 7.56939 4.9192 6.1824 4.9789 4.79541C5.0186 4.01863 5.37906 3.28392 5.93595 2.79093C6.48987 2.29332 7.23128 2.04235 7.94043 2.08742C8.65074 2.12735 9.31947 2.46048 9.76563 2.97021C10.2161 3.47729 10.4397 4.15273 10.3949 4.79541C10.3424 6.01573 10.2898 7.23605 10.2373 8.45638C10.2217 8.81939 10.2061 9.1824 10.1904 9.54541Z" fill="currentColor"/>
|
|
3
|
+
<path d="M0.69043 10.1704C0.69043 10.4204 0.69043 10.6704 0.69043 10.9204C1.59043 11.0037 2.49043 11.0787 3.39043 11.1454C6.99043 11.4121 10.5904 11.5454 14.1904 11.5454C14.6904 11.5454 15.1904 11.5451 15.6904 11.5446L14.6913 10.5454C14.6959 14.5454 14.7187 18.5454 14.7599 22.5454L15.6904 21.6149C10.6904 21.6663 5.69043 21.7463 0.69043 21.8549L1.38093 22.5454C1.3136 19.4454 1.23529 16.3454 1.14599 13.2454C1.12006 12.3454 1.09321 11.4454 1.06543 10.5454C0.81543 10.5454 0.56543 10.5454 0.31543 10.5454C0.287652 11.4454 0.2608 12.3454 0.234874 13.2454C0.145574 16.3454 0.0672587 19.4454 -7.09891e-05 22.5454L0.0152447 23.2506L0.69043 23.2359C5.69043 23.3445 10.6904 23.4245 15.6904 23.476L16.6305 23.4663L16.621 22.5454C16.6621 18.5454 16.685 14.5454 16.6896 10.5454L16.6884 9.54513L15.6904 9.54627C15.1904 9.5457 14.6904 9.54541 14.1904 9.54541C10.5904 9.54541 6.99043 9.67874 3.39043 9.94541C2.49043 10.0121 1.59043 10.0871 0.69043 10.1704ZM0.69043 10.9204V10.1704L0.304957 10.2061L0.31543 10.5454H1.06543L0.69043 10.9204Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.1 11.5596C10 12.2626 9.905 12.9656 9.815 13.6687C9.73431 14.299 9.65764 14.9293 9.58499 15.5596L9.98518 15.0575C7.04295 15.3827 4.12022 15.7932 1.21699 16.2889L2.76943 17.5264C2.92314 14.77 3 12.0136 3 9.25727C3 6.6934 2.9335 4.12954 2.80051 1.56567L1.20627 2.83258C4.10741 3.34851 7.02834 3.7791 9.96906 4.12436L9.52023 3.55957C9.61167 4.38034 9.70993 5.20111 9.815 6.02189C9.905 6.72492 10 7.42796 10.1 8.131C10.2 7.42796 10.295 6.72492 10.385 6.02189C10.4901 5.20111 10.5883 4.38034 10.6798 3.55957L10.622 3.04069L10.2309 2.99478C7.43833 2.01077 4.62592 1.1121 1.79373 0.29877L0.11921 -5.3525e-05L0.199491 1.56567C0.0664971 4.12954 0 6.6934 0 9.25727C0 12.0136 0.0768576 14.77 0.230573 17.5264L0.32198 19.1838L1.78301 18.7638C4.61311 17.9484 7.42372 17.0476 10.2148 16.0616L10.655 15.9061L10.615 15.5596C10.5424 14.9293 10.4657 14.299 10.385 13.6687C10.295 12.9656 10.2 12.2626 10.1 11.5596Z" fill="currentColor"/>
|
|
3
|
+
<path d="M3.90039 9.55947C4.35631 9.62614 4.81223 9.68947 5.26815 9.74947C7.92802 10.0995 10.5879 10.3361 13.2478 10.4592L14.104 10.4989L14.1475 9.55947C14.2031 8.35947 14.2355 7.15947 14.2449 5.95947L12.6691 6.77157C12.8663 6.91437 13.064 7.0564 13.2622 7.19765C14.7482 8.2564 16.2651 9.27167 17.813 10.2435V8.87548C16.1991 10.174 14.6249 11.5284 13.0905 12.9387L13.5188 13.1595C13.4925 12.9487 13.4655 12.738 13.4378 12.5272C13.3778 12.0713 13.3144 11.6154 13.2478 11.1595C13.1811 11.6154 13.1178 12.0713 13.0578 12.5272C13.03 12.738 13.003 12.9487 12.9767 13.1595L13.0316 13.7071L13.4051 13.3802C15.2391 12.3905 17.0333 11.3449 18.7877 10.2435L19.7431 9.47799L18.7877 8.87548C17.3637 7.72978 15.9087 6.62756 14.4228 5.56881C14.2245 5.42756 14.0257 5.28708 13.8264 5.14737L12.2385 4.03098L12.2506 5.95947C12.26 7.15947 12.2924 8.35947 12.348 9.55947L13.2478 8.6597C10.5879 8.78284 7.92802 9.01943 5.26815 9.36947C4.81223 9.42947 4.35631 9.49281 3.90039 9.55947Z" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="14" height="19" viewBox="0 0 14 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.65723 11.7686C5.1714 11.8352 5.68557 11.8986 6.19974 11.9586C7.0189 12.0541 7.83807 12.1413 8.65723 12.2199C10.5526 12.3971 11.9014 14.1304 11.7683 15.7686C11.7334 16.3605 11.1937 16.8173 10.6572 16.7854C9.99056 16.7742 9.32389 16.7686 8.65723 16.7686C6.65723 16.7686 4.65723 16.819 2.65723 16.9199C2.05185 16.9914 1.37623 16.4915 1.30599 15.7686C1.16623 14.4433 1.88439 12.9731 3.22379 12.2373C3.6546 11.9972 4.14261 11.8349 4.65723 11.7686C4.14298 11.7014 3.60257 11.7376 3.08074 11.8853C1.46459 12.316 0.106846 13.9124 0.00846058 15.7686C-0.113588 17.1763 1.13196 18.5975 2.65723 18.6173C4.65723 18.7181 6.65723 18.7686 8.65723 18.7686C9.32389 18.7686 9.99056 18.763 10.6572 18.7517C12.2514 18.7716 13.6329 17.3073 13.5461 15.7686C13.5166 13.1454 11.0232 11.0364 8.65723 11.3172C7.83807 11.3958 7.0189 11.483 6.19974 11.5786C5.68557 11.6386 5.1714 11.7019 4.65723 11.7686ZM4.65723 11.7686" fill="currentColor"/>
|
|
3
|
+
<path d="M2.65723 4.76855C2.72377 4.34895 2.85236 3.95151 3.03272 3.59073C3.75388 2.13009 5.29682 1.36475 6.65723 1.51855C8.38497 1.66511 9.68797 3.1878 9.65723 4.76855C9.68797 6.34931 8.38497 7.87199 6.65723 8.01855C5.29682 8.17236 3.75388 7.40702 3.03272 5.94637C2.85236 5.5856 2.72377 5.18816 2.65723 4.76855C2.59038 5.18796 2.59258 5.62757 2.67129 6.06374C2.95446 7.82427 4.63961 9.41467 6.65723 9.51855C9.19078 9.76873 11.7301 7.44909 11.6572 4.76855C11.6572 4.76855 11.6572 4.76855 11.6572 4.76855C11.7301 2.08802 9.19078 -0.231619 6.65723 0.0185547C4.63961 0.122441 2.95446 1.71284 2.67129 3.47337C2.59258 3.90954 2.59038 4.34915 2.65723 4.76855ZM2.65723 4.76855" fill="currentColor"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6.65531 14.3008C6.02897 13.5817 5.42025 12.8543 4.86051 12.0947C3.85586 10.7458 3.0668 9.2794 2.33395 7.76558C1.64203 6.34473 1.0042 4.50345 1.4711 3.48392C1.72615 2.98383 2.14408 2.65741 2.72239 2.30143C3.07028 2.09082 3.4394 1.91043 3.82045 1.76482C3.95906 1.7104 4.12931 1.63789 4.09261 1.65811C4.07536 1.66853 3.94959 1.6865 3.86855 1.66553C3.7878 1.6472 3.77237 1.63174 3.78126 1.64078C3.84352 1.68616 4.05164 1.88824 4.21607 2.0616C4.96665 2.90819 5.73832 4.17788 6.25497 5.25938C6.40712 5.59043 6.57827 6.0168 6.55934 6.03898C6.54873 6.02884 6.58157 5.94124 6.53495 6.03706C6.49022 6.11746 6.3916 6.25713 6.28384 6.40016C6.11704 6.629 5.89785 6.86366 5.66011 7.27447C5.40989 7.67045 5.27828 8.38389 5.40841 8.87707C5.67254 9.86557 6.05397 10.4027 6.46511 11.0464C6.93025 11.7348 7.45578 12.3711 8.04827 12.9569C9.20596 14.0347 10.2744 14.9502 12.0997 15.4944C12.5829 15.616 13.2696 15.4906 13.6615 15.2436C14.0666 15.0083 14.3027 14.7839 14.5341 14.6086C14.6816 14.4939 14.8265 14.3847 14.925 14.323C15.0397 14.2559 14.9861 14.2867 14.9528 14.2751C14.9514 14.2438 15.4019 14.4352 15.7335 14.5966C16.8694 15.1561 18.1393 15.8719 19.0261 16.6285C19.2034 16.7932 19.4058 16.9929 19.4733 17.0811C19.488 17.0977 19.4822 17.0958 19.4707 17.0412C19.4571 16.9865 19.4717 16.8947 19.4781 16.8918C19.4902 16.8842 19.4209 17.0457 19.3682 17.1841C19.2242 17.5737 19.0432 17.9538 18.8284 18.316C18.4776 18.9016 18.1242 19.3638 17.5815 19.6448C16.3659 20.3096 14.5581 19.5169 13.078 18.8328C12.9368 18.7648 12.7956 18.6962 12.6548 18.627C11.8044 18.2095 10.9646 17.7692 10.1494 17.2779C10.8879 17.8784 11.6688 18.4315 12.466 18.9568C12.5981 19.0438 12.7305 19.1301 12.8634 19.2158C14.3128 20.0521 15.9183 21.2828 18.0079 20.5602C18.7911 20.2596 19.41 19.586 19.8375 18.9847C20.1283 18.5807 20.381 18.15 20.5919 17.6978C20.6382 17.5919 20.6966 17.522 20.7849 17.2638C20.8281 17.1358 20.8534 16.9095 20.8085 16.7271C20.7672 16.5456 20.6989 16.4249 20.6438 16.3323C20.4186 15.9846 20.2416 15.8178 20.0551 15.6084C18.9187 14.497 17.7874 13.8013 16.5037 13.0685C16.1282 12.8933 15.899 12.6494 15.1134 12.5118C14.6861 12.4569 14.2468 12.6363 14.0259 12.7663C13.7849 12.9027 13.6172 13.0252 13.4467 13.1453C13.1671 13.3459 12.9203 13.5378 12.7693 13.6108C12.6109 13.6799 12.632 13.6661 12.4947 13.6424C11.5841 13.3498 10.3307 12.4412 9.45109 11.5496C8.96215 11.0556 8.51363 10.5064 8.12372 9.92878C7.78823 9.43646 7.43665 8.79444 7.35377 8.45946C7.33768 8.33377 7.32213 8.38331 7.39049 8.23252C7.46335 8.09055 7.65987 7.84424 7.86487 7.56141C7.98698 7.38942 8.11394 7.21786 8.25405 6.95655C8.39285 6.71451 8.54242 6.23926 8.48511 5.8423C8.36044 5.09262 8.14107 4.83107 7.98038 4.45606C7.25736 3.08983 6.55838 1.99237 5.43331 0.82682C5.22354 0.637233 5.06419 0.459769 4.68979 0.213259C4.58919 0.152787 4.45444 0.0751002 4.24683 0.0274433C4.03771 -0.0244232 3.77745 0.00480568 3.63504 0.05193C3.3476 0.148447 3.28595 0.203068 3.18503 0.245009C2.71842 0.455905 2.27583 0.708237 1.86151 0.998552C1.24806 1.42354 0.524326 2.06225 0.194823 2.88666C-0.458046 5.175 0.670778 6.72319 1.49479 8.2275C2.38881 9.68045 3.38161 11.1065 4.56956 12.3391C5.23194 13.0342 5.93487 13.6761 6.65531 14.3008Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<svg width="148" height="177" viewBox="0 0 148 177" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M89.5996 0C82.3265 1.37235 75.0591 2.7673 67.7975 4.18487C49.1895 7.81741 30.6194 11.5984 12.0871 15.5279L7.58997 16.4821L9.32407 21.0963C26.0605 65.6477 43.6875 109.823 62.2052 153.621C62.8542 155.156 63.5043 156.69 64.1555 158.225L66.5481 163.906L72.5023 162.233C95.4931 155.7 118.417 148.932 141.275 141.929L147.585 140.294L145.383 133.874C130.425 95.7823 114.796 57.9377 98.4947 20.3402C95.5515 13.5521 92.5865 6.772 89.5996 0C91.7105 7.09406 93.8433 14.1801 95.998 21.2581C107.932 60.4611 120.539 99.4171 133.817 138.126L137.924 130.071C114.782 136.068 91.7061 142.3 68.6969 148.767L77.0438 152.775C76.3969 151.24 75.749 149.704 75.1 148.169C56.5824 104.371 37.1741 60.9489 16.8751 17.9037L14.1121 23.4721C32.2641 18.0507 50.3782 12.4808 68.4545 6.76245C75.5087 4.53091 82.557 2.27676 89.5996 0ZM89.5996 0" fill="#F6FFFC"/>
|
|
3
|
+
<g filter="url(#filter0_d_1714_15371)">
|
|
4
|
+
<path d="M139.6 136C117.433 142 72.5996 154.3 70.5996 155.5L13.0996 19.5L89.5996 0L139.6 136Z" fill="url(#paint0_linear_1714_15371)" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path d="M49.0996 14.5C49.2834 14.555 49.4659 14.6052 49.6471 14.6506C51.2783 15.0589 52.8063 15.0756 54.2313 14.7006C55.6564 14.3256 56.9783 13.5589 58.1971 12.4006C58.3326 12.2719 58.4667 12.1384 58.5996 12C58.4158 11.945 58.2333 11.8948 58.0521 11.8494C56.4209 11.4411 54.8929 11.4244 53.4679 11.7994C52.0429 12.1744 50.7209 12.9411 49.5021 14.0994C49.3666 14.2281 49.2325 14.3616 49.0996 14.5Z" fill="#F6FFFC"/>
|
|
7
|
+
<path d="M60.5996 11.5C60.6854 11.5795 60.7698 11.6542 60.8529 11.724C61.6004 12.3529 62.2367 12.5923 62.7617 12.4423C63.2867 12.2923 63.7004 11.7529 64.0029 10.824C64.0365 10.7208 64.0687 10.6128 64.0996 10.5C64.0138 10.4205 63.9294 10.3458 63.8463 10.276C63.0988 9.64713 62.4625 9.40771 61.9375 9.55771C61.4125 9.70771 60.9988 10.2471 60.6963 11.176C60.6627 11.2792 60.6305 11.3872 60.5996 11.5Z" fill="#F6FFFC"/>
|
|
8
|
+
<mask id="path-5-inside-1_1714_15371" fill="white">
|
|
9
|
+
<ellipse cx="78.0629" cy="75.0586" rx="23.5" ry="26.5" transform="rotate(-24.3175 78.0629 75.0586)"/>
|
|
10
|
+
</mask>
|
|
11
|
+
<ellipse cx="78.0629" cy="75.0586" rx="23.5" ry="26.5" transform="rotate(-24.3175 78.0629 75.0586)" fill="#065938"/>
|
|
12
|
+
<path d="M99.4779 65.3815C100.377 67.8552 100.951 70.4133 101.18 72.9771C102.24 83.2 96.9555 93.7555 88.0488 97.1571C76.8962 101.776 63.9741 94.2941 59.3817 83.5004C59.3817 83.5004 59.3817 83.5004 59.3817 83.5004C54.3158 72.9206 57.2404 58.2783 68.0769 52.9602C76.5159 48.5235 87.9301 51.5332 94.902 59.0847C96.6748 60.9509 98.2153 63.0723 99.4779 65.3815C98.5799 62.9078 97.3426 60.5347 95.7815 58.3593C89.7659 49.6259 77.2451 44.1973 66.2238 48.8594C52.0539 54.4883 47.6382 73.1305 53.914 85.9711C53.914 85.9711 53.914 85.9711 53.914 85.9711C59.4037 99.167 76.3131 108.173 89.9019 101.258C100.684 96.0672 104.884 83.0827 102.305 72.7964C101.704 70.1872 100.741 67.6902 99.4779 65.3815ZM99.4779 65.3815" fill="#F5F5F5" mask="url(#path-5-inside-1_1714_15371)"/>
|
|
13
|
+
<path d="M94.4429 40.7761C93.214 40.2587 91.9852 39.7413 90.7563 39.2239C90.7204 39.3952 90.6844 39.5664 90.6485 39.7377C90.0015 42.8205 89.3545 45.9034 88.7074 48.9862C88.6715 49.1575 88.6356 49.3287 88.5996 49.5C88.697 49.3546 88.7944 49.2092 88.8918 49.0638C90.6448 46.4466 92.3977 43.8295 94.1507 41.2123C94.2481 41.0669 94.3455 40.9215 94.4429 40.7761Z" fill="#065938"/>
|
|
14
|
+
<path d="M50.1203 46.4008C49.4398 47.1336 48.7594 47.8664 48.0789 48.5992C48.2126 48.6892 48.3463 48.7792 48.48 48.8692C50.8862 50.4895 53.2924 52.1097 55.6986 53.73C55.8323 53.82 55.9659 53.91 56.0996 54C56 53.8733 55.9003 53.7467 55.8006 53.62C54.0068 51.3403 52.213 49.0605 50.4193 46.7808C50.3196 46.6541 50.2199 46.5275 50.1203 46.4008Z" fill="#065938"/>
|
|
15
|
+
<path d="M74.0985 30.4334C72.7659 30.4778 71.4333 30.5222 70.1007 30.5666C70.1424 30.8155 70.184 31.0644 70.2257 31.3133C70.9753 35.7933 71.725 40.2733 72.4747 44.7533C72.5163 45.0022 72.558 45.2511 72.5996 45.5C72.6246 45.2489 72.6496 44.9978 72.6746 44.7467C73.1242 40.2267 73.5739 35.7067 74.0236 31.1867C74.0485 30.9356 74.0735 30.6845 74.0985 30.4334Z" fill="#065938"/>
|
|
16
|
+
<path d="M109.071 107.478C110.09 106.159 111.109 104.841 112.128 103.522C111.919 103.413 111.711 103.304 111.502 103.196C107.743 101.239 103.985 99.2826 100.226 97.3261C100.017 97.2174 99.8084 97.1087 99.5996 97C99.7575 97.1746 99.9153 97.3493 100.073 97.5239C102.915 100.667 105.756 103.811 108.597 106.954C108.755 107.129 108.913 107.304 109.071 107.478Z" fill="#065938"/>
|
|
17
|
+
<path d="M69.6292 115.657C70.9428 115.886 72.2564 116.114 73.57 116.343C73.5705 116.145 73.571 115.948 73.5715 115.751C73.5804 112.198 73.5893 108.645 73.5981 105.092C73.5986 104.895 73.5991 104.697 73.5996 104.5C73.5334 104.686 73.4673 104.872 73.4011 105.058C72.21 108.405 71.0188 111.752 69.8277 115.099C69.7615 115.285 69.6954 115.471 69.6292 115.657Z" fill="#065938"/>
|
|
18
|
+
<path d="M89.1766 111.474C90.1253 111.158 91.074 110.842 92.0226 110.526C91.9573 110.409 91.8919 110.291 91.8265 110.174C90.6496 108.067 89.4727 105.959 88.2958 103.851C88.2304 103.734 88.165 103.617 88.0996 103.5C88.1176 103.633 88.1355 103.766 88.1535 103.899C88.4766 106.291 88.7996 108.683 89.1227 111.076C89.1407 111.209 89.1586 111.341 89.1766 111.474Z" fill="#065938"/>
|
|
19
|
+
<path d="M67.0996 77C67.58 77.5123 68.0649 78.0176 68.5544 78.5159C71.3486 81.3604 74.2911 83.9775 77.3819 86.3671L79.5798 88.0605L80.7302 85.1556C81.5632 83.0624 82.3098 80.9427 82.9702 78.7964C84.7759 72.9281 85.9364 66.8612 86.4517 60.5958C86.509 59.8997 86.5583 59.2011 86.5996 58.5C86.2397 59.103 85.8877 59.7085 85.5437 60.3164C82.4478 65.7878 79.997 71.4576 78.1913 77.326C77.5309 79.4723 76.9568 81.6451 76.4691 83.8444L79.8173 82.6329C76.3843 80.7678 72.803 79.1303 69.0734 77.7201C68.42 77.4731 67.7621 77.2331 67.0996 77Z" fill="#F6FFFC"/>
|
|
20
|
+
<defs>
|
|
21
|
+
<filter id="filter0_d_1714_15371" x="-0.000391006" y="0" width="142.7" height="176.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
22
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
23
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
24
|
+
<feOffset dx="-5" dy="13"/>
|
|
25
|
+
<feGaussianBlur stdDeviation="4.05"/>
|
|
26
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
27
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.964706 0 0 0 0 1 0 0 0 0 0.988235 0 0 0 0.19 0"/>
|
|
28
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1714_15371"/>
|
|
29
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1714_15371" result="shape"/>
|
|
30
|
+
</filter>
|
|
31
|
+
<linearGradient id="paint0_linear_1714_15371" x1="76.3496" y1="0" x2="76.3496" y2="155.5" gradientUnits="userSpaceOnUse">
|
|
32
|
+
<stop stop-color="#0F1115" stop-opacity="0.84"/>
|
|
33
|
+
<stop offset="1" stop-color="#0F1115"/>
|
|
34
|
+
</linearGradient>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|