@devtron-labs/devtron-fe-common-lib 1.20.5-alpha-9 → 1.20.5-beta-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{@code-editor-BFm6v6d7.js → @code-editor-V6OKDH8_.js} +7535 -7512
- package/dist/{@common-rjsf-Uu6GnL-J.js → @common-rjsf-Dhqt9x0E.js} +1 -1
- package/dist/Pages/ResourceBrowser/types.d.ts +2 -1
- package/dist/Shared/Components/Charts/types.d.ts +2 -1
- package/dist/Shared/Components/Charts/utils.d.ts +1 -1
- package/dist/Shared/Components/ContextSwitcher/ContextSwitcher.d.ts +1 -1
- package/dist/Shared/Components/ContextSwitcher/types.d.ts +1 -0
- package/dist/Shared/Components/Icon/Icon.d.ts +6 -0
- package/dist/Shared/Components/Illustration/Illustration.d.ts +1 -0
- package/dist/Shared/Components/Table/InternalTable.d.ts +1 -1
- package/dist/Shared/Components/Table/TableContent.d.ts +1 -1
- package/dist/Shared/Components/Table/types.d.ts +6 -3
- package/dist/Shared/constants.d.ts +1 -0
- package/dist/Shared/types.d.ts +0 -1
- package/dist/assets/ic-bg-cpu.15ec70f0.svg +11 -0
- package/dist/assets/ic-bg-memory.5373a125.svg +11 -0
- package/dist/assets/ic-check-circle.af18cd7e.svg +3 -0
- package/dist/assets/ic-folder-empty.8e898c33.svg +33 -0
- package/dist/assets/ic-gift-animated.9ca6ccb4.svg +38 -0
- package/dist/assets/ic-party.cfc7e7c6.svg +4 -0
- package/dist/assets/ic-warning-stroke.fc850a4a.svg +3 -0
- package/dist/assets/img-no-restores.f26cb7db.svg +114 -0
- package/dist/index.js +472 -471
- package/package.json +1 -1
- package/dist/assets/ic-gift-animated.d848dfa3.svg +0 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { j as n, aK as v, aM as J, aL as K } from "./@vendor-DceGoESd.js";
|
2
2
|
import V, { useState as q, useEffect as Y, forwardRef as G, useMemo as E } from "react";
|
3
3
|
import z, { getDefaultRegistry as Q } from "@rjsf/core";
|
4
|
-
import { T as O, j as F, c as S, b as N, S as X, i as Z, g as ee, a as te, d as R, e as ne } from "./@code-editor-
|
4
|
+
import { T as O, j as F, c as S, b as N, S as X, i as Z, g as ee, a as te, d as R, e as ne } from "./@code-editor-V6OKDH8_.js";
|
5
5
|
import { getUiOptions as B, getTemplate as $, getSubmitButtonOptions as re, ADDITIONAL_PROPERTY_FLAG as L, errorId as se, englishStringTranslator as ae, TranslatableString as oe, titleId as le, canExpand as ie, deepEquals as ce } from "@rjsf/utils";
|
6
6
|
import { ReactComponent as de } from "./assets/ic-add.cfaa779b.svg";
|
7
7
|
import { ReactComponent as ue } from "./assets/ic-warning.ecf7ff97.svg";
|
@@ -5,7 +5,8 @@ import { NodeActionRequest } from './ResourceBrowser.Types';
|
|
5
5
|
export declare enum ClusterFiltersType {
|
6
6
|
ALL_CLUSTERS = "all",
|
7
7
|
HEALTHY = "healthy",
|
8
|
-
UNHEALTHY = "unhealthy"
|
8
|
+
UNHEALTHY = "unhealthy",
|
9
|
+
CONNECTION_FAILED = "connectionFailed"
|
9
10
|
}
|
10
11
|
export declare enum InstallationClusterStatus {
|
11
12
|
Creating = "Creating",
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ReactNode } from 'react';
|
1
|
+
import { Dispatch, ReactNode, SetStateAction } from 'react';
|
2
2
|
import { TooltipOptions, TooltipPositionerFunction } from 'chart.js';
|
3
3
|
import { TooltipProps } from '../../../Common/Tooltip';
|
4
4
|
import { AppThemeType } from '../../Providers';
|
@@ -105,6 +105,7 @@ export interface GetDefaultOptionsParams {
|
|
105
105
|
chartProps: ChartProps;
|
106
106
|
appTheme: AppThemeType;
|
107
107
|
externalTooltipHandler: TooltipOptions['external'];
|
108
|
+
setTooltipVisible: Dispatch<SetStateAction<boolean>>;
|
108
109
|
}
|
109
110
|
declare module 'chart.js' {
|
110
111
|
interface TooltipPositionerMap {
|
@@ -44,7 +44,7 @@ export declare const getLegendsLabelConfig: (type: ChartType, appTheme: AppTheme
|
|
44
44
|
};
|
45
45
|
};
|
46
46
|
export declare const getChartJSType: (type: ChartType) => ChartJSChartType;
|
47
|
-
export declare const getDefaultOptions: ({ chartProps, appTheme, externalTooltipHandler, }: GetDefaultOptionsParams) => ChartOptions;
|
47
|
+
export declare const getDefaultOptions: ({ chartProps, appTheme, externalTooltipHandler, setTooltipVisible, }: GetDefaultOptionsParams) => ChartOptions;
|
48
48
|
export declare const transformDataForChart: (props: TransformDataForChartProps) => (ChartDataset<"line"> | {
|
49
49
|
backgroundColor?: string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern> | ((ctx: import('chart.js').ScriptableContext<"line">, options: import('chart.js/dist/types/basic').AnyObject) => import('chart.js').Color) | readonly (string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern>)[];
|
50
50
|
borderColor?: string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern> | ((ctx: import('chart.js').ScriptableContext<"line">, options: import('chart.js/dist/types/basic').AnyObject) => import('chart.js').Color) | readonly (string | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasGradient> | import('chart.js/dist/types/utils')._DeepPartialObject<CanvasPattern>)[];
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { ContextSwitcherTypes } from './types';
|
2
|
-
export declare const ContextSwitcher: ({ inputId, options, inputValue, onInputChange, isLoading, value, onChange, placeholder, filterOption, formatOptionLabel, optionListError, reloadOptionList, classNamePrefix, }: ContextSwitcherTypes) => JSX.Element;
|
2
|
+
export declare const ContextSwitcher: ({ inputId, options, inputValue, onInputChange, isLoading, value, onChange, placeholder, filterOption, formatOptionLabel, optionListError, reloadOptionList, classNamePrefix, resource, }: ContextSwitcherTypes) => JSX.Element;
|
@@ -3,6 +3,7 @@ import { SelectPickerOptionType, SelectPickerProps } from '../SelectPicker';
|
|
3
3
|
export interface ContextSwitcherTypes extends Pick<SelectPickerProps, 'placeholder' | 'onChange' | 'value' | 'isLoading' | 'onInputChange' | 'inputValue' | 'inputId' | 'formatOptionLabel' | 'filterOption' | 'optionListError' | 'reloadOptionList' | 'classNamePrefix'> {
|
4
4
|
options: GroupBase<SelectPickerOptionType<string | number>>[];
|
5
5
|
isAppDataAvailable?: boolean;
|
6
|
+
resource: 'Cluster' | 'Release' | 'Tenant' | 'Application' | 'Job' | 'Application Group' | 'Chart Store';
|
6
7
|
}
|
7
8
|
export interface RecentlyVisitedOptions extends SelectPickerOptionType<number> {
|
8
9
|
isDisabled?: boolean;
|
@@ -23,8 +23,10 @@ export declare const iconMap: {
|
|
23
23
|
'ic-azure': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
24
24
|
'ic-bg-build': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
25
25
|
'ic-bg-cluster': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
26
|
+
'ic-bg-cpu': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
26
27
|
'ic-bg-deploy': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
27
28
|
'ic-bg-environment': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
29
|
+
'ic-bg-memory': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
28
30
|
'ic-bg-production-pipelines': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
29
31
|
'ic-bg-project': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
30
32
|
'ic-bg-scan': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -48,6 +50,7 @@ export declare const iconMap: {
|
|
48
50
|
'ic-chat-circle-dots': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
49
51
|
'ic-chat-circle-online': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
50
52
|
'ic-check-all': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
53
|
+
'ic-check-circle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
51
54
|
'ic-check-square': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
52
55
|
'ic-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
53
56
|
'ic-checks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -119,6 +122,7 @@ export declare const iconMap: {
|
|
119
122
|
'ic-floppy-disk': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
120
123
|
'ic-fluxcd-app': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
121
124
|
'ic-folder-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
125
|
+
'ic-folder-empty': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
122
126
|
'ic-folder-user': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
123
127
|
'ic-folder': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
124
128
|
'ic-gavel': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -200,6 +204,7 @@ export declare const iconMap: {
|
|
200
204
|
'ic-out-of-sync': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
201
205
|
'ic-paper-plane-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
202
206
|
'ic-paper-plane': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
207
|
+
'ic-party': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
203
208
|
'ic-path': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
204
209
|
'ic-pause-circle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
205
210
|
'ic-pencil': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -264,6 +269,7 @@ export declare const iconMap: {
|
|
264
269
|
'ic-visibility-off': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
265
270
|
'ic-visibility-on': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
266
271
|
'ic-warning-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
272
|
+
'ic-warning-stroke': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
267
273
|
'ic-warning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
268
274
|
'ic-webhook': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
269
275
|
'ic-wifi-slash': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { IllustrationBaseProps } from './types';
|
2
2
|
export declare const illustrationMap: {
|
3
3
|
'img-mechanical-operation': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
4
|
+
'img-no-restores': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
4
5
|
'create-backup-schedule': string;
|
5
6
|
'create-backup-snapshot': string;
|
6
7
|
'img-code': string;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { FiltersTypeEnum, InternalTableProps } from './types';
|
2
|
-
declare const InternalTable: <RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>>({ filtersVariant, filterData, rows, getRows, columns, ViewWrapper, resizableConfig, emptyStateConfig, additionalProps, areColumnsConfigurable, filter, setVisibleColumns, visibleColumns, stylesConfig, loading, bulkSelectionConfig, bulkSelectionReturnValue, id, handleClearBulkSelection, handleToggleBulkSelectionOnRow, paginationVariant,
|
2
|
+
declare const InternalTable: <RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>>({ filtersVariant, filterData, rows, getRows, columns, ViewWrapper, resizableConfig, emptyStateConfig, additionalProps, areColumnsConfigurable, filter, setVisibleColumns, visibleColumns, stylesConfig, loading, bulkSelectionConfig, bulkSelectionReturnValue, id, handleClearBulkSelection, handleToggleBulkSelectionOnRow, paginationVariant, rowActionOnHoverConfig, pageSizeOptions, clearFilters: userGivenUrlClearFilters, }: InternalTableProps<RowData, FilterVariant, AdditionalProps>) => JSX.Element;
|
3
3
|
export default InternalTable;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { FiltersTypeEnum, TableContentProps } from './types';
|
2
|
-
declare const TableContent: <RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>>({ filterData, rows, resizableConfig, additionalProps, visibleColumns, stylesConfig, loading, bulkSelectionConfig, bulkSelectionReturnValue, handleClearBulkSelection, handleToggleBulkSelectionOnRow, paginationVariant,
|
2
|
+
declare const TableContent: <RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>>({ filterData, rows, resizableConfig, additionalProps, visibleColumns, stylesConfig, loading, bulkSelectionConfig, bulkSelectionReturnValue, handleClearBulkSelection, handleToggleBulkSelectionOnRow, paginationVariant, rowActionOnHoverConfig, pageSizeOptions, filteredRows, areFilteredRowsLoading, getRows, totalRows, }: TableContentProps<RowData, FilterVariant, AdditionalProps>) => JSX.Element;
|
3
3
|
export default TableContent;
|
@@ -160,7 +160,10 @@ export type InternalTableProps<RowData extends unknown, FilterVariant extends Fi
|
|
160
160
|
/**
|
161
161
|
* Use this component to display additional content at the end of a row when it is hovered over.
|
162
162
|
*/
|
163
|
-
|
163
|
+
rowActionOnHoverConfig?: {
|
164
|
+
Component: FunctionComponent<RowActionsOnHoverComponentProps<RowData, AdditionalProps>>;
|
165
|
+
width: number;
|
166
|
+
};
|
164
167
|
bulkSelectionReturnValue: BulkSelectionReturnValueType | null;
|
165
168
|
handleClearBulkSelection: () => void;
|
166
169
|
handleToggleBulkSelectionOnRow: (row: RowType<RowData>) => void;
|
@@ -192,7 +195,7 @@ export type UseResizableTableConfigWrapperProps<RowData extends unknown, FilterV
|
|
192
195
|
export type TableWithBulkSelectionProps<RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>> = Omit<UseResizableTableConfigWrapperProps<RowData, FilterVariant, AdditionalProps>, 'bulkSelectionReturnValue' | 'handleClearBulkSelection' | 'handleToggleBulkSelectionOnRow'>;
|
193
196
|
export type VisibleColumnsWrapperProps<RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>> = Omit<TableWithBulkSelectionProps<RowData, FilterVariant, AdditionalProps>, 'visibleColumns' | 'setVisibleColumns'>;
|
194
197
|
export type FilterWrapperProps<RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>> = Omit<VisibleColumnsWrapperProps<RowData, FilterVariant, AdditionalProps>, 'filterData'>;
|
195
|
-
export type TableProps<RowData extends unknown = unknown, FilterVariant extends FiltersTypeEnum = FiltersTypeEnum.NONE, AdditionalProps extends Record<string, any> = {}> = Pick<FilterWrapperProps<RowData, FilterVariant, AdditionalProps>, 'additionalFilterProps' | 'bulkSelectionConfig' | 'areColumnsConfigurable' | 'emptyStateConfig' | 'filtersVariant' | 'filter' | 'additionalProps' | 'columns' | 'getRows' | 'rows' | 'paginationVariant' | 'stylesConfig' | 'id' | '
|
198
|
+
export type TableProps<RowData extends unknown = unknown, FilterVariant extends FiltersTypeEnum = FiltersTypeEnum.NONE, AdditionalProps extends Record<string, any> = {}> = Pick<FilterWrapperProps<RowData, FilterVariant, AdditionalProps>, 'additionalFilterProps' | 'bulkSelectionConfig' | 'areColumnsConfigurable' | 'emptyStateConfig' | 'filtersVariant' | 'filter' | 'additionalProps' | 'columns' | 'getRows' | 'rows' | 'paginationVariant' | 'stylesConfig' | 'id' | 'rowActionOnHoverConfig' | 'loading' | 'ViewWrapper' | 'pageSizeOptions' | 'clearFilters'>;
|
196
199
|
export type BulkActionStateType = string | null;
|
197
200
|
export interface BulkSelectionActionWidgetProps extends Pick<BulkSelectionConfigType, 'BulkActionsComponent' | 'bulkActionsData'> {
|
198
201
|
count: number;
|
@@ -210,7 +213,7 @@ export interface RowsResultType<RowData extends unknown> {
|
|
210
213
|
filteredRows: RowsType<RowData>;
|
211
214
|
totalRows: number;
|
212
215
|
}
|
213
|
-
export interface TableContentProps<RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>> extends Pick<InternalTableProps<RowData, FilterVariant, AdditionalProps>, 'filterData' | 'rows' | 'resizableConfig' | 'additionalProps' | 'visibleColumns' | 'stylesConfig' | 'loading' | 'bulkSelectionConfig' | 'bulkSelectionReturnValue' | 'handleClearBulkSelection' | 'handleToggleBulkSelectionOnRow' | 'paginationVariant' | '
|
216
|
+
export interface TableContentProps<RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>> extends Pick<InternalTableProps<RowData, FilterVariant, AdditionalProps>, 'filterData' | 'rows' | 'resizableConfig' | 'additionalProps' | 'visibleColumns' | 'stylesConfig' | 'loading' | 'bulkSelectionConfig' | 'bulkSelectionReturnValue' | 'handleClearBulkSelection' | 'handleToggleBulkSelectionOnRow' | 'paginationVariant' | 'rowActionOnHoverConfig' | 'pageSizeOptions' | 'getRows'>, RowsResultType<RowData> {
|
214
217
|
areFilteredRowsLoading: boolean;
|
215
218
|
}
|
216
219
|
export {};
|
@@ -435,3 +435,4 @@ export declare const STRATEGY_TYPE_TO_TITLE_MAP: Record<DeploymentStrategyTypeWi
|
|
435
435
|
export declare const CUBIC_BEZIER_CURVE: [number, number, number, number];
|
436
436
|
export declare const ALLOW_ACTION_OUTSIDE_FOCUS_TRAP = "allow-action-outside-focus-trap";
|
437
437
|
export declare const REMOTE_CONNECTION_TYPE_LABEL_MAP: Record<RemoteConnectionType, string>;
|
438
|
+
export declare const TARGET_K8S_VERSION_SEARCH_KEY = "targetK8sVersion";
|
package/dist/Shared/types.d.ts
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
+
<g clip-path="url(#a)">
|
3
|
+
<path fill="#FFF5E5" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/>
|
4
|
+
<path stroke="#FFB549" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M18.154 10.154H20m-1.846 3.692H20M4 10.154h1.846M4 13.846h1.846m8 4.308V20m-3.692-1.846V20m3.692-16v1.846M10.154 4v1.846m-.308 4h4.308v4.308H9.846V9.846Zm-4-1.949v8.206c0 1.132.919 2.05 2.051 2.05h8.206a2.051 2.051 0 0 0 2.05-2.05V7.897a2.051 2.051 0 0 0-2.05-2.05H7.897a2.051 2.051 0 0 0-2.05 2.05Z" vector-effect="non-scaling-stroke"/>
|
5
|
+
</g>
|
6
|
+
<defs>
|
7
|
+
<clipPath id="a">
|
8
|
+
<path fill="#fff" d="M0 0h24v24H0z"/>
|
9
|
+
</clipPath>
|
10
|
+
</defs>
|
11
|
+
</svg>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
+
<g clip-path="url(#a)">
|
3
|
+
<path fill="#FCF3F0" d="M0 6a6 6 0 0 1 6-6h12a6 6 0 0 1 6 6v12a6 6 0 0 1-6 6H6a6 6 0 0 1-6-6V6Z"/>
|
4
|
+
<path stroke="#FF7E5B" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M7.2 17.5v-2.357m3.2 2.357v-2.357m3.2 2.357v-2.357m3.2 2.357v-2.357m-8-3.929V9.643m6.4 1.571V9.643M12 11.214V9.643m-8 4.714h16M4 8.071c0-.416.169-.816.469-1.11.3-.295.707-.461 1.131-.461h12.8c.424 0 .831.166 1.131.46.3.295.469.695.469 1.111v.865a1.6 1.6 0 0 0-.83.566 1.553 1.553 0 0 0 0 1.882 1.6 1.6 0 0 0 .83.566v3.979c0 .416-.169.816-.469 1.11-.3.295-.707.461-1.131.461H5.6c-.424 0-.831-.166-1.131-.46A1.557 1.557 0 0 1 4 15.929V11.92a1.6 1.6 0 0 0 .83-.566 1.553 1.553 0 0 0 0-1.882A1.6 1.6 0 0 0 4 8.907V8.07Z" vector-effect="non-scaling-stroke"/>
|
5
|
+
</g>
|
6
|
+
<defs>
|
7
|
+
<clipPath id="a">
|
8
|
+
<path fill="#fff" d="M0 0h24v24H0z"/>
|
9
|
+
</clipPath>
|
10
|
+
</defs>
|
11
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
+
<path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m17 9-6.667 6.666L7 12.333M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z" vector-effect="non-scaling-stroke"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="250" height="200" fill="none" viewBox="0 0 250 200">
|
2
|
+
<ellipse cx="187" cy="168" fill="#000A14" fill-opacity=".05" rx="30" ry="4"/>
|
3
|
+
<rect width="72" height="60" x="151" y="76" fill="#FDBF00" rx="4"/>
|
4
|
+
<path fill="#FFDA2D" d="M161 84a4 4 0 0 1 4-4h12.31a2 2 0 0 1 1.233.425l10.414 8.15a2 2 0 0 0 1.233.425H223v43a4 4 0 0 1-4 4h-54a4 4 0 0 1-4-4V84Z"/>
|
5
|
+
<path fill="#fff" d="M167 125h24v5h-24z"/>
|
6
|
+
<rect width="15" height="2" x="203" y="94" fill="#FDBF00" rx="1"/>
|
7
|
+
<rect width="21" height="2" x="197" y="99" fill="#FDBF00" rx="1"/>
|
8
|
+
<path fill="#80AEF2" d="M55.877 189.887c0-.113 1.132-3.227 2.49-6.963l2.491-6.792 6.34-.17 6.283-.17 2.717 2.264c2.264 1.925 12.557 7.406 13.868 8.151.875.497 2.028 1.762 3.46 3.793-25.1-.038-37.649-.075-37.649-.113Z"/>
|
9
|
+
<path fill="#94BBF8" d="M22.943 189.887c0-.113 1.133-3.227 2.491-6.963l2.49-6.792 6.34-.17 6.283-.17 2.718 2.264c2.264 1.925 12.556 7.406 13.868 8.151.874.497 2.027 1.762 3.46 3.793-25.1-.038-37.65-.075-37.65-.113Z"/>
|
10
|
+
<path fill="#1D225F" d="M65.785 109.936c1.07 3.098 1.792 5.787 2.166 8.065.374 2.279 2.47 21.742 6.292 58.39H56.6c-1.417-2.569-2.126-4.374-2.126-5.414 0-1.561.897-3.699.897-5.955 0-1.504-1.997-6.696-5.991-15.575l3.858-38.614 12.547-.897Z"/>
|
11
|
+
<path fill="url(#a)" fill-rule="evenodd" d="M41.151 176.391h-16.48c-.391-1.359-.776-3.193-1.152-5.502-.736-4.698-.176-7.811 2.994-14.264 3.17-6.397 4.774-9.885 4.774-13.508.057-5.66 1.2-11.104 4.2-16.991 2.32-4.642 3.43-4.992 3.656-7.822l.412-6.086h20.684c.503 1.407.684 3.999.54 7.777-.142 3.778-6.685 22.577-19.628 56.396Z" clip-rule="evenodd"/>
|
12
|
+
<path fill="#98BDF9" d="m85.69 52.019 16.526-20.442h19.815L104.917 52.02H85.69Z"/>
|
13
|
+
<path fill="#2174DB" d="M107.476 29.022a2.555 2.555 0 0 1 2.549 2.38l.006.175h-.568a1.987 1.987 0 1 0-2.15 1.98l.163.008v.567a2.555 2.555 0 0 1 0-5.11Zm6.814 0a2.555 2.555 0 0 1 2.549 2.38l.006.175h-.568a1.987 1.987 0 1 0-2.15 1.98l.163.008v.567a2.555 2.555 0 1 1 0-5.11Z"/>
|
14
|
+
<path fill="#F3A29D" d="M84.25 55.955c2.754-.944 5.45-2.256 8.087-3.936h6.743c-2.33 2.129-3.897 3.637-4.701 4.523-.805.887-2.462 2.59-4.974 5.11-1.07 5.672-2.211 8.055-3.422 7.148-1.815-1.36-7.79-10.694-1.734-12.845Z"/>
|
15
|
+
<path fill="#FAB6AF" d="M87.96 61.671c4.282-1.636 7.045-2.803 8.29-3.5 1.472-.85 2.038-1.642 3.736-5.208.226-.453.679-2.32 1.075-4.075.906-4.472 2.378-4.246 2.491.34.057 1.244.34 2.377.679 2.49.283.113 1.925-1.472 3.566-3.51 1.642-2.038 3.227-3.679 3.51-3.679.679 0 .679 5.208-.057 7.019-.283.85-4.641 5.604-9.679 10.642-3.359 3.358-8.274 7.917-14.746 13.677l1.136-14.196Z"/>
|
16
|
+
<path fill="#F3A29D" d="M68.656 37.255c.757-3.028 1.514-4.92 2.27-5.678-1.135-1.136-2.27-2.271-4.542-3.407-.757 1.514-2.27 3.028-4.542 4.543 0 2.271.757 3.785 2.271 4.542 1.514.757 3.028.757 4.543 0Z"/>
|
17
|
+
<path fill="url(#b)" d="M39.929 113.021c-2.321-.17-6.114-.962-8.321-1.698l-4.132-1.359-.114-4.245c-.283-11.717.566-20.265 3.227-31.19 3.623-15 14.038-30.34 26.66-39.34 4.869-3.51 4.982-3.51 6.397-1.132.623 1.132 1.925 2.264 2.83 2.604l2.121.583c-2.99 28.777-1.834 52.63 3.466 71.556-1.136 1.136-1.91 1.651-2.756 2.013-1.02.397-2.321.793-3 .849-.68.057-2.944.51-5.151 1.019-4.133.906-13.133 1.076-21.227.34Z"/>
|
18
|
+
<path fill="#D6D7D8" fill-rule="evenodd" d="m84.25 55.955 1.734 11.1-19.6 2.595 1.086-15.36c2.102 1.702 4.263 2.724 6.484 3.065 2.222.34 5.654-.126 10.296-1.4Z" clip-rule="evenodd"/>
|
19
|
+
<path fill="#E9E9E9" d="m87.961 61.672 4.812 22.712c-.558 1.136-1.973 1.893-4.244 2.271-5.11.568-10.22-1.703-16.467-1.703-6.246 0-5.977 3.975-15.062.568-6.056-2.271-8.517-12.492-7.381-30.662l17.716-1.697c-.076 5.673.643 9.078 2.157 10.214 1.484 1.113 7.428.59 17.83-1.57l.64-.133Z"/>
|
20
|
+
<path fill="#FAB6AF" d="M80.16 17.305c1.05 1.491 1.46 3.47 1.229 5.936-.06.643-.368.866-.368 2.014 0 1.1.069 2.46.207 4.08l-2.273.158c-2.181 2.366-4.49 3.415-6.924 3.146-2.434-.269-4.172-1.318-5.212-3.146-2.138-3.949-1.59-7.306 1.645-10.071 3.235-2.766 7.133-3.471 11.696-2.117Z"/>
|
21
|
+
<path fill="#E94A47" fill-rule="evenodd" d="M69.7 10c2.55 0 5.61.998 7.845 2.689 2.234 1.69 3.773 2.964 4.465 5.002.46 1.358.243 3.252-.652 5.683.127-2.301-.047-3.579-.522-3.833-.658 1.622-1.566 1.95-2.653 2.734-.609.44-2.74.509-4.826.88-2.579 1.69-4.222 3.27-4.775 4.77-.44 1.196-.395 2.559.145 4.099l.123.332-.529.207c-.701-1.799-.795-3.413-.272-4.833.512-1.39 1.815-2.785 3.82-4.24-1.068.3-2.012.74-2.584 1.421-1.255 1.498-1.99 3.695-2.204 6.591-2.714-.49-5.206-1.407-7.475-2.747-2.269-1.341-4.362-3.135-6.279-5.381.39-.82.887-1.496 1.494-2.031.658-.582 1.898-1.088 3.109-1.79l-.064.022-1.181.394c-1.237.416-1.92.699-2.351 1.012-.814.59-1.236 1.251-1.288 1.994l-.005.188-.568.006c-.012-1.019.506-1.907 1.527-2.648.42-.304.995-.563 1.947-.899l1.722-.58.6-.208a14.213 14.213 0 0 0 1.412-.573c1.272-1.373 2.13-3.897 4.012-5.572C65.771 10.839 67.151 10 69.7 10Z" clip-rule="evenodd"/>
|
22
|
+
<path fill="#222768" d="M74.327 23.322c.585-1.61 2.128-2.55 3.469-2.061 1.041.379 1.622 1.495 1.556 2.729a3.95 3.95 0 0 1 .97-.134l.204.008c.25.019.457.054.624.11.502-1.246 1.676-1.984 2.698-1.612 1.05.383 1.47 1.769.993 3.081s-1.69 2.104-2.741 1.721c-.935-.34-1.371-1.475-1.12-2.646a1.96 1.96 0 0 0-.497-.088c-.328-.025-.724.028-1.187.161l-.03.01a3.86 3.86 0 0 1-.137.468c-.586 1.61-2.129 2.55-3.47 2.061-1.34-.488-1.918-2.2-1.332-3.808Zm9.326-.426c-.717-.261-1.633.336-2.013 1.382-.38 1.045-.063 2.092.654 2.353.717.26 1.633-.337 2.014-1.382.38-1.046.063-2.092-.655-2.353Zm-6.051-1.102c-1.017-.37-2.255.384-2.742 1.722-.487 1.337-.023 2.71.994 3.08 1.016.37 2.254-.383 2.741-1.72.487-1.338.023-2.712-.993-3.082Z"/>
|
23
|
+
<defs>
|
24
|
+
<linearGradient id="a" x1="43.912" x2="29.088" y1="112.218" y2="174.104" gradientUnits="userSpaceOnUse">
|
25
|
+
<stop stop-color="#2A318C"/>
|
26
|
+
<stop offset="1" stop-color="#1D225F"/>
|
27
|
+
</linearGradient>
|
28
|
+
<linearGradient id="b" x1="49.687" x2="49.687" y1="32.395" y2="113.481" gradientUnits="userSpaceOnUse">
|
29
|
+
<stop stop-color="#EEE"/>
|
30
|
+
<stop offset="1" stop-color="#D6D7D8"/>
|
31
|
+
</linearGradient>
|
32
|
+
</defs>
|
33
|
+
</svg>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<!-- Bottom jump group -->
|
3
|
+
<g transform="translate(0 0)">
|
4
|
+
<animateTransform attributeName="transform" type="translate" values="0 0; 0 -5; 0 0; 0 0"
|
5
|
+
keyTimes="0;0.06;0.15;1" dur="5s" repeatCount="indefinite" calcMode="spline"
|
6
|
+
keySplines="0.25 0.1 0.25 1;0.42 0 0.58 1;0 0 1 1" />
|
7
|
+
<path d="M8 27.996h34v19a3 3 0 0 1-3 3H11a3 3 0 0 1-3-3z" fill="#D0DBF7" />
|
8
|
+
<path fill="#376CFB" d="M19 27.996h12v22H19z" />
|
9
|
+
</g>
|
10
|
+
|
11
|
+
<!-- Top group (translate + nested rotate) -->
|
12
|
+
<g transform="translate(0 0)">
|
13
|
+
<animateTransform attributeName="transform" type="translate" values="0 0; 0 -5; 0 0; 0 0" keyTimes="0;0.1;0.2;1"
|
14
|
+
dur="5s" repeatCount="indefinite" calcMode="spline" keySplines="0.25 0.1 0.25 1;0.42 0 0.58 1;0 0 1 1" />
|
15
|
+
|
16
|
+
<!-- Nested rotate: rotate(angle cx cy) values to keep center consistent -->
|
17
|
+
<g transform="rotate(0 25 18)">
|
18
|
+
<animateTransform attributeName="transform" type="rotate"
|
19
|
+
values="0 25 18; -8 25 18; 8 25 18; 0 25 18; 0 25 18" keyTimes="0;0.1;0.15;0.25;1" dur="5s"
|
20
|
+
repeatCount="indefinite" calcMode="spline" keySplines="
|
21
|
+
0.25 0.1 0.25 1;
|
22
|
+
0.42 0 0.58 1;
|
23
|
+
0.42 0 1 1;
|
24
|
+
0 0 1 1" />
|
25
|
+
|
26
|
+
|
27
|
+
<path
|
28
|
+
d="M12.49 12.819c1.226-2.666 4.074-3.172 6.21-2.619 1.97.512 3.69 1.925 4.93 3.37 1.227 1.428 2.146 3.078 2.354 4.252l.208 1.174H16.036c-1.625 0-2.904-.794-3.56-2.037-.642-1.213-.632-2.734.014-4.14m5.708-.683c-1.58-.41-3.214.048-3.89 1.519-.427.928-.373 1.787-.065 2.37.293.553.87.971 1.793.971h7.526a11.3 11.3 0 0 0-1.449-2.124c-1.106-1.289-2.498-2.369-3.915-2.736"
|
29
|
+
fill="#376CFB" />
|
30
|
+
<path
|
31
|
+
d="M37.51 12.819c-1.226-2.666-4.075-3.172-6.21-2.619-1.97.512-3.69 1.925-4.93 3.37-1.227 1.428-2.146 3.078-2.354 4.252l-.208 1.174h10.156c1.625 0 2.904-.794 3.56-2.037.642-1.213.632-2.734-.014-4.14m-5.708-.683c1.58-.41 3.214.048 3.89 1.519.427.928.373 1.787.065 2.37-.293.553-.87.971-1.793.971h-7.526a11.3 11.3 0 0 1 1.449-2.124c1.106-1.289 2.499-2.369 3.915-2.736"
|
32
|
+
fill="#376CFB" />
|
33
|
+
<path fill="#00173F" opacity=".15" d="M8 27.996h34v3H8z" />
|
34
|
+
<rect x="5" y="16.996" width="40" height="11" rx="3" fill="#E6ECFF" />
|
35
|
+
<path fill="#4294FF" d="M16 16.996h18v11H16z" />
|
36
|
+
</g>
|
37
|
+
</g>
|
38
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
+
<path fill="#1DAD70" d="m5.52 14.521 3.96 3.959-4.747 1.725a.73.73 0 0 1-.937-.937L5.52 14.52Zm13.015-.442L9.921 5.465a.73.73 0 0 0-1.202.267L7.322 9.576l7.108 7.108 3.844-1.397a.73.73 0 0 0 .261-1.208Z" opacity=".2"/>
|
3
|
+
<path fill="#1DAD70" d="M10.452 4.934a1.482 1.482 0 0 0-2.437.541L3.094 19.011A1.484 1.484 0 0 0 4.478 21c.174-.001.348-.033.511-.094l13.535-4.922a1.48 1.48 0 0 0 .542-2.437l-8.614-8.613Zm-.78 12.676L6.39 14.329l1.234-3.395 5.442 5.442-3.395 1.234Zm-5.157 1.875 1.313-3.6 2.292 2.291-3.605 1.309Zm10.11-3.675L8.19 9.375l1.22-3.363 8.571 8.572-3.355 1.226ZM15 6.75a3.543 3.543 0 0 1 .36-1.46c.497-.993 1.434-1.54 2.64-1.54.628 0 1.031-.215 1.28-.676.13-.258.206-.54.22-.83a.75.75 0 1 1 1.5.006c0 1.206-.799 3-3 3-.628 0-1.031.215-1.28.676-.13.258-.205.54-.22.83A.751.751 0 0 1 15 6.75Zm-2.25-3V1.5a.75.75 0 1 1 1.5 0v2.25a.75.75 0 1 1-1.5 0Zm9.53 7.72a.752.752 0 0 1-.53 1.28.75.75 0 0 1-.53-.22l-1.5-1.5a.75.75 0 0 1 1.06-1.062l1.5 1.501Zm.457-4.008-2.25.75a.75.75 0 0 1-.474-1.424l2.25-.75a.75.75 0 1 1 .474 1.424Z"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
2
|
+
<path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 16.5v.5m0-7.5v4m-1.298-9.751L2.454 17.998a1.5 1.5 0 0 0 1.298 2.251h16.496a1.5 1.5 0 0 0 1.298-2.251l-8.248-14.25a1.5 1.5 0 0 0-2.596 0Z" vector-effect="non-scaling-stroke"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<svg width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_7267_8715)">
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M237.48 120.187C237.374 120.608 236.947 120.863 236.527 120.757L234.001 120.12C233.58 120.014 233.325 119.587 233.431 119.167L234.109 116.478C234.215 116.057 234.642 115.802 235.062 115.908L237.588 116.545C238.009 116.651 238.264 117.078 238.158 117.498L237.48 120.187Z" fill="#383838"/>
|
4
|
+
<path d="M237.418 120.438L230.758 146.864L226.709 145.843L233.369 119.418L237.418 120.438Z" fill="#383838"/>
|
5
|
+
<path d="M237.418 120.438L233.369 119.418L233.498 118.907L237.547 119.928L237.418 120.438Z" fill="#ABABE2"/>
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M219.32 114.127L220.286 115.546L218.944 115.759L219.32 114.127Z" fill="#FC6A8E"/>
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M220.286 115.546L218.944 115.759L218.165 119.143L218.237 119.603L218.761 122.914L218.844 123.434L223.025 149.83L227.149 149.177L222.968 122.78L222.886 122.26L222.362 118.949L222.289 118.49L220.286 115.546Z" fill="#C5E706"/>
|
8
|
+
<path d="M231.442 134.318H224.319C223.018 134.318 221.963 135.373 221.963 136.674V160.397C221.963 161.699 223.018 162.754 224.319 162.754H231.442H234.878C236.179 162.754 237.234 161.699 237.234 160.397V136.674C237.234 135.373 236.179 134.318 234.878 134.318H231.442Z" fill="#FFF4CA"/>
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M219.606 134.318C220.907 134.318 221.962 135.373 221.962 136.674V160.397C221.962 161.699 220.907 162.754 219.606 162.754H218.526C217.225 162.754 216.17 161.699 216.17 160.397V136.674C216.17 135.373 217.225 134.318 218.526 134.318H219.606Z" fill="#FEE1A8"/>
|
10
|
+
<line x1="25.5905" y1="162.438" x2="239.089" y2="162.438" stroke="#EEE7FF" stroke-width="3.14203" stroke-linecap="round"/>
|
11
|
+
<rect x="89.6413" y="3.57101" width="146.309" height="88.5377" fill="#FBFAFF" stroke="#EEE7FE" stroke-width="3.14203"/>
|
12
|
+
<circle cx="230.047" cy="9.5388" r="2.11106" fill="#CABDF0"/>
|
13
|
+
<circle cx="95.5427" cy="9.5388" r="2.11106" fill="#CABDF0"/>
|
14
|
+
<circle cx="230.047" cy="86.1404" r="2.11106" fill="#CABDF0"/>
|
15
|
+
<circle cx="95.5427" cy="86.1404" r="2.11106" fill="#CABDF0"/>
|
16
|
+
<path d="M208.373 72.7404C191.526 73.0037 174.623 73.0115 157.773 72.7638C157.258 72.7562 156.744 72.7484 156.229 72.7404C149.918 71.9542 144.57 67.3418 142.797 60.9707C142.56 60.1208 142.436 59.2513 142.211 58.403C142.304 57.0922 142.087 55.6163 142.211 54.3283C142.313 53.279 142.853 51.437 143.233 50.4204C144.759 46.3277 147.979 42.9035 151.895 41.2675C151.82 31.3921 158.614 22.6593 167.894 20.68C167.906 20.6767 167.92 20.6751 167.933 20.6718C170.123 20.2076 172.372 20.1128 174.595 20.3449C175.059 20.3939 175.48 20.443 175.753 20.4904C181.745 21.4988 187.135 25.397 190.547 30.5275C197.065 27.7882 204.667 32.5673 205.323 39.8275C212.632 39.3666 219.492 43.7028 221.688 51.0692C222.221 52.8553 222.465 54.644 222.451 56.3862C222.384 64.5371 216.662 71.6684 208.373 72.7404Z" fill="url(#paint0_linear_7267_8715)"/>
|
17
|
+
<path d="M208.371 74.6115C191.524 74.8748 174.621 74.8825 157.771 74.6349C157.256 74.6273 156.742 74.6195 156.227 74.6115C149.917 73.8253 144.568 69.2129 142.795 62.8418C142.558 61.9919 142.434 61.1224 142.209 60.2741C142.302 58.9633 142.085 57.4874 142.209 56.1994C142.311 55.1501 142.851 53.3081 143.231 52.2915C144.757 48.1988 147.977 44.7746 151.894 43.1385C151.818 33.2632 158.612 24.5304 167.892 22.5511C167.904 22.5478 167.918 22.5461 167.931 22.5429C170.121 22.0787 172.37 21.9839 174.593 22.216C175.057 22.265 175.478 22.3141 175.751 22.3615C181.743 23.3699 187.133 27.2681 190.546 32.3986C197.063 29.6593 204.665 34.4384 205.321 41.6986C212.63 41.2377 219.49 45.5739 221.686 52.9403C222.219 54.7263 222.463 56.5151 222.449 58.2573C222.382 66.4082 216.66 73.5395 208.371 74.6115Z" fill="url(#paint1_linear_7267_8715)"/>
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.306 65.2547C104.32 66.1196 105.03 66.8111 105.895 66.8015L117.561 66.672L133.059 66.5C134.46 66.4844 135.142 64.7812 134.138 63.8036L126.454 56.3199C125.811 55.6943 125.819 54.6555 126.507 54.0794C131.686 49.7382 138.334 47.0889 145.608 46.9926C153.645 46.8863 160.998 49.9141 166.503 54.9462C166.801 55.2184 167.187 55.375 167.591 55.375L182.726 55.375C183.926 55.375 184.675 54.0868 184.027 53.0763C175.893 40.3822 161.594 32.0484 145.413 32.2625C134.019 32.4132 123.673 36.7749 115.826 43.8476C115.196 44.4156 114.23 44.4153 113.622 43.8234L106.556 36.9419C105.552 35.9643 103.868 36.6905 103.889 38.0915L104.231 60.3223L104.306 65.2547Z" fill="url(#paint2_linear_7267_8715)"/>
|
19
|
+
<path d="M188.115 74.2305C177.836 74.3912 167.524 74.3959 157.243 74.2448C156.929 74.2402 156.615 74.2354 156.301 74.2305C152.451 73.7509 149.187 70.9368 148.106 67.0497C147.961 66.5311 147.886 66.0006 147.749 65.4831C147.805 64.6833 147.673 63.7828 147.749 62.997C147.811 62.3568 148.14 61.233 148.372 60.6127C149.303 58.1158 151.268 56.0266 153.657 55.0284C153.611 49.0033 157.756 43.6753 163.418 42.4677C163.425 42.4657 163.434 42.4647 163.442 42.4627C164.778 42.1795 166.15 42.1216 167.506 42.2632C167.79 42.2932 168.046 42.3231 168.213 42.352C171.869 42.9673 175.157 45.3456 177.239 48.4758C181.216 46.8045 185.854 49.7203 186.254 54.1499C190.713 53.8687 194.899 56.5142 196.239 61.0086C196.564 62.0983 196.713 63.1897 196.704 64.2526C196.663 69.2256 193.172 73.5765 188.115 74.2305Z" fill="url(#paint3_linear_7267_8715)"/>
|
20
|
+
<rect x="24.0195" y="77.3535" width="113.03" height="73.2601" fill="#E9E7FD"/>
|
21
|
+
<rect width="108.844" height="60.1779" transform="translate(25.9023 79.8652)" fill="white"/>
|
22
|
+
<path d="M70.4858 119.395C70.4858 120.642 71.4967 121.653 72.7436 121.653H76.4502C77.6971 121.653 78.7079 120.642 78.7079 119.395V117.493C78.7079 116.246 77.6971 115.236 76.4502 115.236H70.4858V119.395Z" fill="#FFD586"/>
|
23
|
+
<path d="M70.4858 120.513C70.4858 121.3 71.1238 121.938 71.9107 121.938H77.2242C78.0112 121.938 78.6491 121.3 78.6491 120.513V119.595C78.6491 118.808 78.0112 118.17 77.2242 118.17H71.9107C71.1238 118.17 70.4858 118.808 70.4858 119.595V120.513Z" fill="#DEB15A"/>
|
24
|
+
<mask id="path-21-inside-1_7267_8715" fill="white">
|
25
|
+
<path d="M76.143 98.8671C75.4194 98.812 74.7881 99.354 74.733 100.078L73.237 119.715C73.1821 120.439 73.7235 121.07 74.4469 121.125L88.014 122.158C88.7375 122.214 89.3691 121.672 89.4244 120.949L90.9204 101.311C90.9755 100.588 90.436 99.9561 89.7125 99.9009L76.143 98.8671Z"/>
|
26
|
+
</mask>
|
27
|
+
<path d="M76.143 98.8671C75.4194 98.812 74.7881 99.354 74.733 100.078L73.237 119.715C73.1821 120.439 73.7235 121.07 74.4469 121.125L88.014 122.158C88.7375 122.214 89.3691 121.672 89.4244 120.949L90.9204 101.311C90.9755 100.588 90.436 99.9561 89.7125 99.9009L76.143 98.8671Z" fill="url(#paint4_linear_7267_8715)"/>
|
28
|
+
<path d="M73.237 119.715L72.9094 119.691L72.9094 119.69L73.237 119.715ZM74.4469 121.125L74.4219 121.452L74.4219 121.452L74.4469 121.125ZM89.4244 120.949L89.752 120.974L89.752 120.974L89.4244 120.949ZM90.9204 101.311L91.248 101.336L90.9204 101.311ZM89.7125 99.9009L89.7375 99.5733L89.7376 99.5733L89.7125 99.9009ZM74.733 100.078L75.0605 100.103L74.733 100.078ZM74.733 100.078L75.0605 100.103L73.5645 119.74L73.237 119.715L72.9094 119.69L74.4054 100.053L74.733 100.078ZM73.237 119.715L73.5645 119.74C73.5234 120.283 73.9294 120.756 74.4719 120.797L74.4469 121.125L74.4219 121.452C73.5176 121.383 72.8408 120.595 72.9094 119.691L73.237 119.715ZM74.4469 121.125L74.4718 120.797L88.039 121.831L88.014 122.158L87.9891 122.486L74.4219 121.452L74.4469 121.125ZM88.014 122.158L88.039 121.831C88.5818 121.872 89.0554 121.466 89.0969 120.924L89.4244 120.949L89.752 120.974C89.6828 121.878 88.8933 122.555 87.9891 122.486L88.014 122.158ZM89.4244 120.949L89.0969 120.924L90.5929 101.286L90.9204 101.311L91.248 101.336L89.752 120.974L89.4244 120.949ZM90.9204 101.311L90.5929 101.286C90.6343 100.743 90.2293 100.27 89.6875 100.228L89.7125 99.9009L89.7376 99.5733C90.6428 99.6425 91.3168 100.433 91.248 101.336L90.9204 101.311ZM89.7125 99.9009L89.6876 100.228L76.1181 99.1947L76.143 98.8671L76.168 98.5396L89.7375 99.5733L89.7125 99.9009ZM74.733 100.078L74.4054 100.053C74.4743 99.1481 75.2635 98.4707 76.168 98.5396L76.143 98.8671L76.1181 99.1947C75.5754 99.1534 75.1019 99.5598 75.0605 100.103L74.733 100.078Z" fill="url(#paint5_linear_7267_8715)" mask="url(#path-21-inside-1_7267_8715)"/>
|
29
|
+
<mask id="mask0_7267_8715" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="71" y="97" width="18" height="23">
|
30
|
+
<path d="M83.2733 97.4478L88.1437 103.13C88.1437 108.239 88.1437 113.347 88.1437 118.456C88.1437 119.182 87.5553 119.77 86.8296 119.77H73.2232C72.4975 119.77 71.9092 119.182 71.9092 118.456V98.7618C71.9092 98.0361 72.4951 97.4478 73.2208 97.4478C75.5578 97.4478 80.4601 97.4478 83.2733 97.4478Z" fill="white"/>
|
31
|
+
</mask>
|
32
|
+
<g mask="url(#mask0_7267_8715)">
|
33
|
+
<path d="M73.0533 97.6118H82.9713L87.9039 103.161V118.457C87.9037 119.091 87.3893 119.606 86.7545 119.606H73.0563C72.4214 119.606 71.9061 119.091 71.9059 118.457V98.7622C71.9059 98.1268 72.4188 97.6118 73.0533 97.6118Z" fill="url(#paint6_linear_7267_8715)" stroke="url(#paint7_linear_7267_8715)" stroke-width="0.328513"/>
|
34
|
+
<path d="M87.702 102.93H84.3593C83.7242 102.93 83.2089 102.415 83.2089 101.78C83.2089 100.481 83.2089 99.1801 83.2089 97.8794L87.702 102.93Z" fill="#E5F2FF" stroke="url(#paint8_linear_7267_8715)" stroke-width="0.328513"/>
|
35
|
+
<rect x="74.2535" y="101.215" width="4.13704" height="0.591006" rx="0.295503" fill="white"/>
|
36
|
+
<rect x="74.2535" y="103.099" width="6.90738" height="0.627944" rx="0.313972" fill="white"/>
|
37
|
+
<rect x="74.2535" y="104.983" width="5.91006" height="0.591006" rx="0.295503" fill="white"/>
|
38
|
+
<rect x="74.2535" y="106.867" width="9.41915" height="0.627944" rx="0.313972" fill="white"/>
|
39
|
+
<rect x="74.2535" y="108.75" width="4.43254" height="0.591006" rx="0.295503" fill="white"/>
|
40
|
+
</g>
|
41
|
+
<path d="M70.4861 113.943C70.4861 113.156 71.124 112.519 71.911 112.519H81.6201C82.407 112.519 83.045 113.156 83.045 113.943V116.745C83.045 117.532 82.407 118.17 81.6201 118.17H70.4861V113.943Z" fill="#FFD586"/>
|
42
|
+
<path d="M80.3624 116.459L79.8657 115.557H79.7261V116.459H79.1443V114.07H80.1209C80.3091 114.07 80.4691 114.103 80.6006 114.169C80.7345 114.235 80.8343 114.326 80.9001 114.441C80.9659 114.555 80.9987 114.682 80.9987 114.822C80.9987 114.981 80.9534 115.123 80.8626 115.248C80.7742 115.372 80.6426 115.461 80.4679 115.513L81.0192 116.459H80.3624ZM79.7261 115.146H80.0868C80.1934 115.146 80.2728 115.119 80.325 115.067C80.3795 115.015 80.4067 114.941 80.4067 114.846C80.4067 114.755 80.3795 114.684 80.325 114.632C80.2728 114.58 80.1934 114.553 80.0868 114.553H79.7261V115.146Z" fill="#C3832A"/>
|
43
|
+
<path d="M78.122 116.037H77.2305L77.0876 116.459H76.4785L77.3428 114.07H78.0165L78.8808 116.459H78.2649L78.122 116.037ZM77.9723 115.588L77.6763 114.713L77.3836 115.588H77.9723Z" fill="#C3832A"/>
|
44
|
+
<path d="M76.3435 114.07V114.536H75.7106V116.459H75.1287V114.536H74.4958V114.07H76.3435Z" fill="#C3832A"/>
|
45
|
+
<path d="M73.9365 116.486C73.8345 116.486 73.7505 116.456 73.6848 116.397C73.6212 116.336 73.5895 116.261 73.5895 116.173C73.5895 116.082 73.6212 116.006 73.6848 115.945C73.7505 115.884 73.8345 115.853 73.9365 115.853C74.0364 115.853 74.118 115.884 74.1815 115.945C74.2473 116.006 74.2802 116.082 74.2802 116.173C74.2802 116.261 74.2473 116.336 74.1815 116.397C74.118 116.456 74.0364 116.486 73.9365 116.486Z" fill="#C3832A"/>
|
46
|
+
<circle cx="128.677" cy="144.857" r="3.13972" fill="#CABDF0"/>
|
47
|
+
<rect x="68.498" y="150.613" width="26.1643" height="9.41915" fill="#D8C6F3"/>
|
48
|
+
<rect x="59.1836" y="157.73" width="77.2371" height="3.76766" rx="1.57101" fill="#947FE3"/>
|
49
|
+
<path d="M120.548 161.257C121.409 161.257 124.137 163.747 125.393 164.992C127.367 165.17 130.345 164.032 126.47 158.055C121.625 150.585 115.165 151.629 114.088 151.629C112.255 151.629 105.079 154.737 105.079 156.685C105.079 157.752 108.166 155.387 109.781 157.522C111.396 159.656 119.471 161.257 120.548 161.257Z" fill="#FFB894"/>
|
50
|
+
<path d="M180.293 164.499C180.293 145.357 174.344 133.738 171.369 128.491C169.49 127.652 157.472 130.957 155 137.254C149.561 151.106 150.875 162.547 143.361 162.547C136.973 162.547 133.708 160.671 129.168 156.893L122.992 177.092C124.557 179.611 127.219 183.389 130.507 185.278C133.237 186.846 134.264 187.166 137.552 187.166C140.84 187.166 148.355 197.241 156.809 197.241C171.846 197.241 180.293 188.426 180.293 164.499Z" fill="#FFD98B"/>
|
51
|
+
<path d="M104.174 163.588C105.225 163.588 108.552 166.653 110.085 168.185C112.493 168.404 116.126 167.003 111.398 159.648C105.488 150.454 97.6072 150.771 96.2937 150.771C94.9803 150.771 91.7287 150.606 89.1019 153.233C86.475 155.86 84.3496 155.942 85.0729 157.038C86.1855 158.724 94.3236 157.021 96.2937 159.648C98.2639 162.275 102.861 163.588 104.174 163.588Z" fill="#FDC4A7"/>
|
52
|
+
<path d="M185.096 168.518C185.096 148.554 176.777 132.617 172.618 127.145C169.991 126.269 161.627 130.428 158.171 136.995C150.566 151.443 152.26 167.861 141.753 167.861C132.822 167.861 121.137 161.356 114.789 157.415L102.5 176.503C104.853 182.255 110.888 188.219 115.484 190.189C119.302 191.825 120.738 192.159 125.335 192.159C129.932 192.159 140.613 202 152.434 202C173.459 202 185.096 193.472 185.096 168.518Z" fill="url(#paint9_linear_7267_8715)"/>
|
53
|
+
<path d="M172.617 127.145L168.677 118.607C164.518 116.199 156.725 112.96 158.826 119.264C160.928 125.569 161.453 131.523 161.453 133.712L172.617 127.145Z" fill="#FFB189"/>
|
54
|
+
<path d="M178.79 114.669C182.73 111.385 183.387 106.132 183.387 103.505C183.387 96.9377 179.446 91.0273 167.626 91.0273C158.169 91.0273 152.74 98.9079 151.208 102.848C149.676 105.256 146.611 110.466 146.611 112.042C146.611 113.618 148.8 114.45 149.895 114.669C151.208 120.579 157.118 122.549 161.715 122.549C166.312 122.549 174.849 117.952 178.79 114.669Z" fill="#FDC4A7"/>
|
55
|
+
<path d="M169.388 114.167C171.748 114.167 173.704 116.216 173.704 118.798C173.704 121.379 171.748 123.428 169.388 123.429C167.027 123.429 165.07 121.38 165.07 118.798C165.07 116.216 167.027 114.167 169.388 114.167Z" stroke="#D8915B" stroke-width="0.785507"/>
|
56
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M154.872 101.628C154.38 100.695 153.687 100.098 152.909 100.098C152.13 100.098 151.438 100.695 150.945 101.628C150.531 102.411 150.253 103.437 150.174 104.577C150.159 104.567 150.144 104.558 150.129 104.548C150.014 104.48 149.873 104.42 149.717 104.39C149.482 104.344 149.207 104.367 148.947 104.542C148.858 103.825 148.677 103.181 148.429 102.666C148.068 101.914 147.554 101.418 146.966 101.418C146.378 101.418 145.864 101.914 145.503 102.666C145.141 103.419 144.922 104.449 144.922 105.576C144.922 106.703 145.141 107.732 145.503 108.486C145.864 109.238 146.378 109.734 146.966 109.734C147.554 109.734 148.068 109.238 148.429 108.486C148.791 107.732 149.01 106.703 149.01 105.576C149.01 105.368 149.003 105.163 148.988 104.962C149.209 104.771 149.456 104.739 149.678 104.782C149.806 104.807 149.923 104.857 150.016 104.912C150.077 104.949 150.123 104.985 150.154 105.014C150.152 105.091 150.151 105.168 150.151 105.246C150.151 106.65 150.452 107.93 150.945 108.863C151.438 109.796 152.13 110.394 152.909 110.394C153.687 110.394 154.38 109.796 154.872 108.863C155.365 107.93 155.666 106.65 155.666 105.246C155.666 103.841 155.365 102.562 154.872 101.628ZM154.642 101.863C155.096 102.721 155.381 103.917 155.381 105.246C155.381 106.575 155.096 107.771 154.642 108.629C154.189 109.488 153.574 109.998 152.909 109.998C152.243 109.998 151.628 109.488 151.175 108.629C150.721 107.771 150.436 106.575 150.436 105.246C150.436 103.917 150.721 102.721 151.175 101.863C151.628 101.004 152.243 100.494 152.909 100.494C153.574 100.494 154.189 101.004 154.642 101.863ZM148.192 102.885C148.518 103.565 148.725 104.516 148.725 105.576C148.725 106.636 148.518 107.586 148.192 108.266C147.865 108.947 147.429 109.338 146.966 109.338C146.503 109.338 146.067 108.947 145.74 108.266C145.414 107.586 145.207 106.636 145.207 105.576C145.207 104.516 145.414 103.565 145.74 102.885C146.067 102.204 146.503 101.814 146.966 101.814C147.429 101.814 147.865 102.204 148.192 102.885Z" fill="#222768"/>
|
57
|
+
<path d="M142.013 90.6662C142.013 96.9692 146.726 100.025 151.854 101.422C152.681 101.647 153.519 101.83 154.35 101.975C151.759 101.709 149.184 101.086 147.017 99.9115C145.071 98.8576 143.456 97.3621 142.448 95.2846C141.439 93.2066 141.03 90.5321 141.519 87.1091L141.194 87.0626C140.698 90.5351 141.109 93.2785 142.153 95.428C143.196 97.578 144.866 99.1198 146.86 100.2C150.322 102.075 154.774 102.567 158.691 102.447C159.29 102.475 159.863 102.487 160.401 102.487C160.401 103.144 161.058 105.114 162.371 106.427C164.551 108.607 167.182 108.074 168.39 107.829C168.638 107.779 168.826 107.741 168.938 107.741C169.595 107.741 172.222 107.741 172.222 110.368C172.222 111.681 171.237 112.502 170.252 113.323C169.267 114.144 166.968 118.74 168.938 124.272C170.908 129.803 154.491 127.629 162.371 141.059C170.252 154.489 204.236 150.012 204.237 138.821C204.238 127.629 190.715 129.476 187.226 123.153C182.637 114.833 183.386 104.997 183.386 103.505C183.386 96.938 179.446 91.0276 167.625 91.0276C164.22 91.0276 161.338 92.049 158.971 93.5403C158.79 93.3519 158.603 93.1563 158.411 92.955C155.568 89.9776 151.555 85.7738 147.923 85.7738C147.886 85.7738 147.844 85.7735 147.797 85.7732C146.521 85.7651 142.013 85.7365 142.013 90.6662Z" fill="#513B31"/>
|
58
|
+
<rect x="176.607" y="112.519" width="8.79121" height="2.51177" rx="1.25589" fill="#F9CA5D"/>
|
59
|
+
<path d="M222.178 144.216C223.532 139.682 220.135 135.124 215.404 135.124H191.218C187.745 135.124 184.685 137.404 183.691 140.732L165.866 200.43H205.393L222.178 144.216Z" fill="url(#paint10_linear_7267_8715)"/>
|
60
|
+
</g>
|
61
|
+
<defs>
|
62
|
+
<linearGradient id="paint0_linear_7267_8715" x1="190.1" y1="29.8087" x2="156.55" y2="74.1421" gradientUnits="userSpaceOnUse">
|
63
|
+
<stop stop-color="#BEDAFF"/>
|
64
|
+
<stop offset="1" stop-color="#92C3FE"/>
|
65
|
+
</linearGradient>
|
66
|
+
<linearGradient id="paint1_linear_7267_8715" x1="190.098" y1="31.6798" x2="156.548" y2="76.0132" gradientUnits="userSpaceOnUse">
|
67
|
+
<stop stop-color="#BEDAFF"/>
|
68
|
+
<stop offset="1" stop-color="#92C3FE"/>
|
69
|
+
</linearGradient>
|
70
|
+
<linearGradient id="paint2_linear_7267_8715" x1="117.583" y1="59.7707" x2="190.111" y2="59.7707" gradientUnits="userSpaceOnUse">
|
71
|
+
<stop stop-color="#84B5FF"/>
|
72
|
+
<stop offset="1" stop-color="#5482FF"/>
|
73
|
+
</linearGradient>
|
74
|
+
<linearGradient id="paint3_linear_7267_8715" x1="176.966" y1="48.0373" x2="156.497" y2="75.0857" gradientUnits="userSpaceOnUse">
|
75
|
+
<stop stop-color="#BEDAFF"/>
|
76
|
+
<stop offset="1" stop-color="#92C3FE"/>
|
77
|
+
</linearGradient>
|
78
|
+
<linearGradient id="paint4_linear_7267_8715" x1="74.7852" y1="98.7637" x2="89.3247" y2="122.258" gradientUnits="userSpaceOnUse">
|
79
|
+
<stop stop-color="#B1D8FF"/>
|
80
|
+
<stop offset="0.357625" stop-color="#C5DFFD"/>
|
81
|
+
<stop offset="0.644375" stop-color="#E8F2FF"/>
|
82
|
+
<stop offset="1" stop-color="#E8F3FF"/>
|
83
|
+
</linearGradient>
|
84
|
+
<linearGradient id="paint5_linear_7267_8715" x1="82.9265" y1="99.3839" x2="81.2309" y2="121.642" gradientUnits="userSpaceOnUse">
|
85
|
+
<stop stop-color="#E5F2FF"/>
|
86
|
+
<stop offset="1" stop-color="white"/>
|
87
|
+
</linearGradient>
|
88
|
+
<linearGradient id="paint6_linear_7267_8715" x1="88.0241" y1="97.4478" x2="71.7418" y2="119.77" gradientUnits="userSpaceOnUse">
|
89
|
+
<stop stop-color="#B1D8FF"/>
|
90
|
+
<stop offset="0.357625" stop-color="#C5DFFD"/>
|
91
|
+
<stop offset="0.644375" stop-color="#E8F2FF"/>
|
92
|
+
<stop offset="1" stop-color="#E8F3FF"/>
|
93
|
+
</linearGradient>
|
94
|
+
<linearGradient id="paint7_linear_7267_8715" x1="79.8591" y1="97.4478" x2="79.8591" y2="119.77" gradientUnits="userSpaceOnUse">
|
95
|
+
<stop stop-color="#E5F2FF"/>
|
96
|
+
<stop offset="1" stop-color="white"/>
|
97
|
+
</linearGradient>
|
98
|
+
<linearGradient id="paint8_linear_7267_8715" x1="84.4177" y1="99.9426" x2="82.1855" y2="104.67" gradientUnits="userSpaceOnUse">
|
99
|
+
<stop stop-color="white"/>
|
100
|
+
<stop offset="1" stop-color="#E5F2FF"/>
|
101
|
+
</linearGradient>
|
102
|
+
<linearGradient id="paint9_linear_7267_8715" x1="143.329" y1="203.884" x2="143.798" y2="127.029" gradientUnits="userSpaceOnUse">
|
103
|
+
<stop stop-color="white"/>
|
104
|
+
<stop offset="1" stop-color="#FDD583"/>
|
105
|
+
</linearGradient>
|
106
|
+
<linearGradient id="paint10_linear_7267_8715" x1="195.379" y1="135.124" x2="195.379" y2="200.43" gradientUnits="userSpaceOnUse">
|
107
|
+
<stop stop-color="#CABDF0"/>
|
108
|
+
<stop offset="1" stop-color="white"/>
|
109
|
+
</linearGradient>
|
110
|
+
<clipPath id="clip0_7267_8715">
|
111
|
+
<rect width="250" height="200" fill="white"/>
|
112
|
+
</clipPath>
|
113
|
+
</defs>
|
114
|
+
</svg>
|