@plesk/ui-library 3.34.1 → 3.34.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/components/Drawer/Drawer.js +10 -143
- package/cjs/components/Drawer/Header.js +5 -12
- package/cjs/components/index.js +2 -30
- package/cjs/index.js +1 -1
- package/dist/plesk-ui-library-rtl.css.map +1 -1
- package/dist/plesk-ui-library.css.map +1 -1
- package/dist/plesk-ui-library.js +33 -201
- package/dist/plesk-ui-library.js.map +1 -1
- package/dist/plesk-ui-library.min.js +5 -5
- package/dist/plesk-ui-library.min.js.map +1 -1
- package/esm/components/Drawer/Drawer.js +10 -141
- package/esm/components/Drawer/Header.js +5 -10
- package/esm/components/index.js +2 -2
- package/esm/index.js +1 -1
- package/package.json +1 -1
- package/styleguide/build/bundle.70f167a3.js +2 -0
- package/styleguide/index.html +2 -2
- package/types/src/components/Button/Button.d.ts +4 -1
- package/types/src/components/Dialog/Dialog.d.ts +4 -1
- package/types/src/components/Drawer/Drawer.d.ts +108 -0
- package/types/src/components/Drawer/DrawerProgress.d.ts +1 -1
- package/types/src/components/Drawer/Header.d.ts +28 -0
- package/types/src/components/Drawer/index.d.ts +2 -0
- package/types/src/components/Form/Form.d.ts +3 -3
- package/types/src/components/index.d.ts +5 -2
- package/dist/.DS_Store +0 -0
- package/dist/images/default.svg +0 -1
- package/dist/images/filtered.svg +0 -1
- package/styleguide/build/bundle.c6ebacd7.js +0 -2
- /package/styleguide/build/{bundle.c6ebacd7.js.LICENSE.txt → bundle.70f167a3.js.LICENSE.txt} +0 -0
package/styleguide/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
7
|
-
<title>Plesk UI Library 3.34.
|
|
7
|
+
<title>Plesk UI Library 3.34.2</title>
|
|
8
8
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
9
9
|
<meta name="theme-color" content="#ffffff">
|
|
10
10
|
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KWST26V"
|
|
27
27
|
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
28
28
|
<!-- End Google Tag Manager (noscript) -->
|
|
29
|
-
<script src="build/bundle.
|
|
29
|
+
<script src="build/bundle.70f167a3.js"></script>
|
|
30
30
|
</body>
|
|
31
31
|
</html>
|
|
@@ -79,6 +79,9 @@ interface BaseButtonPops {
|
|
|
79
79
|
*/
|
|
80
80
|
baseClassName?: string;
|
|
81
81
|
}
|
|
82
|
+
declare type DataAttributes = {
|
|
83
|
+
[dataAttribute: `data-${string}`]: unknown;
|
|
84
|
+
};
|
|
82
85
|
export declare type ButtonProps<Component extends ElementType = 'button'> = {
|
|
83
86
|
/**
|
|
84
87
|
* Component to render as the root element. Useful when rendering a `Button` as `<a>` or `<Link>`.
|
|
@@ -87,7 +90,7 @@ export declare type ButtonProps<Component extends ElementType = 'button'> = {
|
|
|
87
90
|
* @default button
|
|
88
91
|
*/
|
|
89
92
|
component?: Component;
|
|
90
|
-
} & PolymorphicComponentPropsWithRef<Component, BaseButtonPops
|
|
93
|
+
} & PolymorphicComponentPropsWithRef<Component, BaseButtonPops> & DataAttributes;
|
|
91
94
|
declare type ButtonComponent<Component extends ElementType = 'button'> = {
|
|
92
95
|
defaultProps?: Partial<ButtonProps<Component>>;
|
|
93
96
|
displayName?: string;
|
|
@@ -74,7 +74,10 @@ export declare type DialogProps = {
|
|
|
74
74
|
* @type ComponentProps<typeof Form> | typeof Form
|
|
75
75
|
* @since 0.0.68
|
|
76
76
|
*/
|
|
77
|
-
form?: ComponentProps<typeof Form
|
|
77
|
+
form?: (Omit<ComponentProps<typeof Form>, 'values' | 'onSubmit'> & {
|
|
78
|
+
values?: any;
|
|
79
|
+
onSubmit?: any;
|
|
80
|
+
}) | typeof Form;
|
|
78
81
|
/**
|
|
79
82
|
* Dialog width
|
|
80
83
|
* @since 0.0.68
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { ReactNode, ReactElement, HTMLAttributes, FunctionComponent, ComponentProps, CSSProperties } from 'react';
|
|
2
|
+
import Form from '../Form';
|
|
3
|
+
import { DrawerProgressProps } from './DrawerProgress';
|
|
4
|
+
import '../../helpers/base.less';
|
|
5
|
+
import './Drawer.less';
|
|
6
|
+
export interface DrawerProps {
|
|
7
|
+
/**
|
|
8
|
+
* Toggles visibility.
|
|
9
|
+
* @since 0.0.65
|
|
10
|
+
*/
|
|
11
|
+
isOpen: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* The title of the `Drawer`.
|
|
14
|
+
* @since 0.0.65
|
|
15
|
+
*/
|
|
16
|
+
title: ReactNode;
|
|
17
|
+
/**
|
|
18
|
+
* The subtitle of the `Drawer`.
|
|
19
|
+
* @since 0.0.65
|
|
20
|
+
*/
|
|
21
|
+
subtitle?: ReactNode;
|
|
22
|
+
/**
|
|
23
|
+
* Show the minimize button and the inactive close button.
|
|
24
|
+
* @since 1.4.1
|
|
25
|
+
*/
|
|
26
|
+
hideButton?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Show back button in the header. If true the close button is not show.
|
|
29
|
+
* @deprecated Not recommended to use. Use default close button instead.
|
|
30
|
+
* @since 0.0.65
|
|
31
|
+
*/
|
|
32
|
+
backButton?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* A slot for `Tabs` component.
|
|
35
|
+
* @since 3.26.0
|
|
36
|
+
*/
|
|
37
|
+
tabs?: ReactNode;
|
|
38
|
+
/**
|
|
39
|
+
* Overlay placement.
|
|
40
|
+
* @since 0.0.65
|
|
41
|
+
*/
|
|
42
|
+
placement?: 'left' | 'right';
|
|
43
|
+
/**
|
|
44
|
+
* Overlay size.
|
|
45
|
+
* @since 0.0.65
|
|
46
|
+
*/
|
|
47
|
+
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
48
|
+
/**
|
|
49
|
+
* onClose handler.
|
|
50
|
+
* @since 0.0.65
|
|
51
|
+
*/
|
|
52
|
+
onClose?: () => void;
|
|
53
|
+
/**
|
|
54
|
+
* Whether show or not a confirmation dialog on close.
|
|
55
|
+
* @since 3.21.0
|
|
56
|
+
*/
|
|
57
|
+
closingConfirmation?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Wraps children into [Form](#!/Form) if not empty.<br>
|
|
60
|
+
* **Note:** in case of *element* you should take care of providing additional form props from [Drawer](#!/Drawer) through your custom component. See example below for more details
|
|
61
|
+
*
|
|
62
|
+
* @type ComponentProps<typeof Form> | typeof Form
|
|
63
|
+
* @since 0.0.66
|
|
64
|
+
*/
|
|
65
|
+
form?: (Omit<ComponentProps<typeof Form>, 'values' | 'onSubmit'> & {
|
|
66
|
+
values?: any;
|
|
67
|
+
onSubmit?: any;
|
|
68
|
+
}) | typeof Form;
|
|
69
|
+
/**
|
|
70
|
+
* Block with an image, placed at the side of the component
|
|
71
|
+
* @type string | ReactElement | HTMLAttributes<HTMLImageElement>
|
|
72
|
+
* @since 3.25.0
|
|
73
|
+
*/
|
|
74
|
+
sideBanner?: string | ReactElement | HTMLAttributes<HTMLImageElement>;
|
|
75
|
+
/**
|
|
76
|
+
* Additional properties for the sideBanner
|
|
77
|
+
* @since 3.25.0
|
|
78
|
+
*/
|
|
79
|
+
sideBannerContainer?: {
|
|
80
|
+
background: string;
|
|
81
|
+
align: CSSProperties['alignItems'];
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Content of the `Drawer`.
|
|
85
|
+
* @since 0.0.65
|
|
86
|
+
*/
|
|
87
|
+
children?: ReactNode;
|
|
88
|
+
/**
|
|
89
|
+
* Adds [Progress](#!/Progress) into footer.
|
|
90
|
+
* @since 1.11.0
|
|
91
|
+
*/
|
|
92
|
+
progress?: DrawerProgressProps;
|
|
93
|
+
/**
|
|
94
|
+
* @ignore
|
|
95
|
+
*/
|
|
96
|
+
className?: string;
|
|
97
|
+
/**
|
|
98
|
+
* @ignore
|
|
99
|
+
*/
|
|
100
|
+
baseClassName?: string;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* `Drawer` component is used for working with properties of an object (or system) without leaving the context of the object.
|
|
104
|
+
* [Read more when to use Drawer](#!/Drawers%2C%20pages%2C%20popovers).
|
|
105
|
+
* @since 0.0.65
|
|
106
|
+
*/
|
|
107
|
+
declare const Drawer: FunctionComponent<DrawerProps>;
|
|
108
|
+
export default Drawer;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Component, ReactNode } from 'react';
|
|
2
|
+
import './Header.less';
|
|
3
|
+
declare type HeaderProps = {
|
|
4
|
+
baseClassName?: string;
|
|
5
|
+
onClose?: () => void;
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
backButton?: boolean;
|
|
8
|
+
hideButton?: boolean;
|
|
9
|
+
tabs?: ReactNode;
|
|
10
|
+
};
|
|
11
|
+
export default class Header extends Component<HeaderProps> {
|
|
12
|
+
static defaultProps: {
|
|
13
|
+
onClose: null;
|
|
14
|
+
baseClassName: string;
|
|
15
|
+
backButton: boolean;
|
|
16
|
+
hideButton: boolean;
|
|
17
|
+
tabs: undefined;
|
|
18
|
+
};
|
|
19
|
+
componentDidMount(): void;
|
|
20
|
+
private isRtl;
|
|
21
|
+
renderBackButton(): JSX.Element;
|
|
22
|
+
renderHideButton(): JSX.Element;
|
|
23
|
+
renderCloseButton({ disabled }?: {
|
|
24
|
+
disabled?: boolean | undefined;
|
|
25
|
+
}): JSX.Element;
|
|
26
|
+
render(): JSX.Element;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -87,7 +87,7 @@ export declare type FormProps<FV extends FormValues> = {
|
|
|
87
87
|
* @ignore
|
|
88
88
|
*/
|
|
89
89
|
render?: (params: {
|
|
90
|
-
renderForm: (params
|
|
90
|
+
renderForm: (params?: {
|
|
91
91
|
actionButtons?: ReactNode;
|
|
92
92
|
}) => ReactElement;
|
|
93
93
|
renderActionButtons: () => ReactElement;
|
|
@@ -187,9 +187,9 @@ declare const RefForwardingForm: import("react").ForwardRefExoticComponent<{
|
|
|
187
187
|
* @ignore
|
|
188
188
|
*/
|
|
189
189
|
render?: ((params: {
|
|
190
|
-
renderForm: (params
|
|
190
|
+
renderForm: (params?: {
|
|
191
191
|
actionButtons?: ReactNode;
|
|
192
|
-
}) => ReactElement;
|
|
192
|
+
} | undefined) => ReactElement;
|
|
193
193
|
renderActionButtons: () => ReactElement;
|
|
194
194
|
}) => ReactNode) | undefined;
|
|
195
195
|
/**
|
|
@@ -4,7 +4,8 @@ export { default as AutoClosable } from './AutoClosable';
|
|
|
4
4
|
export { default as AuxiliaryActions } from './AuxiliaryActions';
|
|
5
5
|
export { default as Badge } from './Badge';
|
|
6
6
|
export { default as Breadcrumbs } from './Breadcrumbs';
|
|
7
|
-
export { default as Button
|
|
7
|
+
export { default as Button } from './Button';
|
|
8
|
+
export type { ButtonProps } from './Button';
|
|
8
9
|
export { default as ButtonGroup } from './ButtonGroup';
|
|
9
10
|
export { default as Card } from './Card';
|
|
10
11
|
export * from './Card';
|
|
@@ -22,6 +23,7 @@ export { default as ContentLoader } from './ContentLoader';
|
|
|
22
23
|
export { default as Cuttable } from './Cuttable';
|
|
23
24
|
export { default as Dialog } from './Dialog';
|
|
24
25
|
export { default as Drawer } from './Drawer';
|
|
26
|
+
export type { DrawerProps } from './Drawer';
|
|
25
27
|
export { default as Dropdown } from './Dropdown';
|
|
26
28
|
export { default as InPlaceEdit } from './InPlaceEdit';
|
|
27
29
|
export { default as ExtendedStatusMessage } from './ExtendedStatusMessage';
|
|
@@ -40,7 +42,8 @@ export { default as Grid } from './Grid';
|
|
|
40
42
|
export { default as GridCol } from './GridCol';
|
|
41
43
|
export { default as Heading } from './Heading';
|
|
42
44
|
export { default as Hint } from './Hint';
|
|
43
|
-
export { default as Icon
|
|
45
|
+
export { default as Icon } from './Icon';
|
|
46
|
+
export type { IconProps, IconName, IconSize } from './Icon';
|
|
44
47
|
export { default as Input } from './Input';
|
|
45
48
|
export { default as InputFile } from './InputFile';
|
|
46
49
|
export { default as InputNumber } from './InputNumber';
|
package/dist/.DS_Store
DELETED
|
Binary file
|
package/dist/images/default.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="320" height="192" viewBox="0 0 320 192"><path fill="#ECEFF4" d="M270.084 106.575c-10.901-36.887-50.05-15.762-71.138-36.52-7.776-7.629-13.63-17.428-21.956-24.427-14.064-11.942-34.556-13.898-49.46-4.803-8.762 5.359-15.344 13.889-23.612 20.144-16.193 12.161-32.564-1.563-46.987 14.26-6.593 7.28-9.818 18.485-6.392 28.377 4.21 12.035 16.632 19.204 21.117 31.098 2.564 6.846 2.15 14.346 3.676 21.48 2.398 11.289 10.06 21.418 19.892 26.39 9.834 4.973 21.699 4.721 30.877-.78 9.73-5.784 16.499-16.467 26.153-22.944a95.649 95.649 0 0131.724-13.767c9.348-2.172 20.574-4.014 30.037-1.467 10.089 2.749 18.538 8.151 29.217 7.147 18.999-1.708 32.663-24.394 26.852-44.188z"/><path fill="#A7ADB7" d="M88.48 35.22c.78-.42 1.5-.78 2.28-1.14 23.46-10.92 46.68 13.2 66.24 25.2 14.1 8.7 30.36 17.7 46.38 13.32 5.94-1.62 11.22-4.98 16.8-7.56 5.58-2.58 12-4.32 17.88-2.52 5.88 1.8 10.56 8.34 8.52 14.16-1.68 4.62-6.66 7.02-10.02 10.62-11.46 12.18 14.76 25.26 17.94 35.76 4.5 14.94-.72 32.4-12.72 42.36-12 10.02-30.06 12-43.98 4.86-18.66-9.54-29.1-20.76-51.9-14.7-17.46 4.62-31.86 16.26-50.16 20.04-5.22 1.08-10.62 1.8-15.84.78-5.22-1.02-10.26-4.14-12.54-9-3.3-7.08.24-15.48 4.98-21.6 4.8-6.12 10.98-11.34 14.22-18.42 7.32-15.96-13.44-31.02-19.5-44.34-9.18-19.86 4.02-38.7 21.42-47.82z"/><path fill="#DFE2E8" fill-rule="evenodd" d="M220.331 70.004L222.7 83.88s-.54 4.62-.9 6.6l-.052.296c-.494 2.822-3.281 18.744-6.728 21.904-4.32 3.96-7.8.6-3.06-5.1l1.86-9.84-.36-.42s-.06 2.34-1.68 5.28c-1.181 2.126-3.234 4.252-4.9 5.977l-.08.083c-4.14 4.26-6.42 1.2-6.42 1.2s-1.38-1.44 2.76-5.46c4.32-4.14 5.76-9.66 5.76-9.66s-4.56 4.92-8.28 5.82c-1.239.124-2.073.312-2.855.488-1.488.335-2.784.627-6.325.352-2.4.42-5.7-4.38.6-4.32l8.1-2.46 5.52-4.98-6.42 2.4s-6.96 3.12-8.22 3.72c-1.26.6-6.84.42-3.3-3.12 3.54-3.48 8.4-5.34 8.4-5.34s6.84-2.94 6.54-4.56c-.056-.335-.268-11.114 4.539-15.945-.776-2.262-1.372-5.529 1.041-6.735 3.84-1.86 12.96-2.22 13.98 1.38 1.02 3.6-.84 8.64-.84 8.64l-1.049-.076z" clip-rule="evenodd"/><path fill="#fff" d="M225.76 69.42c1.5 2.7-.42 6.18-.42 6.18.6 5.34.24 6.96.24 6.96s-1.2-8.22 0 .3c.42 3.18.3 4.8.06 5.64-.18.54-.78.84-1.32.6-7.44-2.82-6-12.48-6-12.48s-2.04.24-4.74-2.82c-2.7-3-2.76-6.9 1.2-11.94 3.96-5.04 7.98-1.44 8.16.84-.06.06-.36 1.02 2.82 6.72z"/><path fill="#00326D" d="M209.08 126.24c-2.4-8.64-22.02-11.76-25.68-12.18-8.52-.96-25.32-1.98-39.78 0-3.6.48-23.34 3.54-25.68 12.18-.36 1.44 0 3.48.84 4.8 4.56 7.08 16.8 12.18 29.64 12.3h30.12c12.9-.12 24.3-4.62 29.64-12.3.96-1.32 1.26-3.42.9-4.8z"/><path fill="#000" d="M207.7 127.14c-2.28-7.86-21.42-10.74-24.96-11.1-8.28-.9-24.54-1.8-38.58 0-3.54.48-22.62 3.24-24.96 11.1-.36 1.26 0 3.18.84 4.38 4.44 6.42 16.26 11.1 28.8 11.22h29.28c12.48-.06 23.58-4.2 28.8-11.22.9-1.2 1.2-3.12.78-4.38z"/><path fill="#fff" d="M186.04 185.1s.3-.12.78-.3c.54-.18 1.32-.48 2.28-.9.48-.24 1.02-.48 1.56-.78.24-.18.54-.36.78-.6s.48-.48.66-.78c.12-.3.18-.66.06-.96-.12-.3-.36-.66-.72-.9-.66-.54-1.5-.9-2.4-1.26-1.86-.66-3.96-1.14-6.24-1.56-2.28-.42-4.74-.66-7.32-.9-5.16-.42-10.8-.54-16.68-.24-5.82.24-11.34.84-16.2 1.92-1.2.24-2.34.54-3.48.9-1.08.36-2.16.78-3.06 1.26-.42.24-.84.54-1.2.9-.3.36-.48.78-.42 1.14.06.42.42.78.78 1.08.36.3.78.54 1.2.78.84.42 1.68.72 2.52 1.02.84.24 1.62.48 2.34.66 1.5.36 2.76.6 3.84.78 1.08.18 1.86.3 2.46.42.54.12.84.12.84.18 0 0-.3 0-.84-.06s-1.38-.12-2.46-.3c-1.08-.12-2.34-.36-3.84-.66-.72-.18-1.56-.36-2.4-.6-.84-.24-1.74-.54-2.64-.96-.42-.24-.9-.48-1.32-.78-.24-.18-.42-.36-.6-.6s-.3-.48-.42-.78c-.06-.3-.06-.6.06-.9.12-.3.24-.54.42-.72.36-.42.84-.72 1.32-1.02.96-.54 2.04-1.02 3.12-1.38 1.14-.36 2.28-.66 3.48-.96 4.86-1.14 10.44-1.74 16.32-1.98 5.88-.24 11.58-.12 16.8.3 2.58.24 5.04.54 7.38.96 2.28.42 4.44.96 6.3 1.68.96.36 1.8.78 2.58 1.38.36.3.66.66.84 1.14.18.42.06.96-.12 1.32-.18.36-.48.66-.78.9-.3.24-.6.42-.84.6-.6.36-1.14.54-1.62.78-1.02.42-1.8.6-2.4.78-.42 0-.66.06-.72 0z" opacity=".23"/><path fill="#000" d="M190.78 138.48c.6-4.08 1.26-9.24 1.08-10.38-.6-5.04-9.9-9.3-28.5-9-20.82-.12-27.6 4.02-28.2 9-.12 1.14.72 8.94 1.08 10.32.66 9.12 1.2 23.22-2.04 42.9 11.04 1.98 20.4 2.46 28.26 2.76v.06c.36 0 .72 0 1.08-.06.36 0 .72 0 1.14.06v-.06c7.86-.3 17.22-1.26 28.26-3.24-5.7-36.6-2.16-42.3-2.16-42.36z"/><path fill="#8A0030" d="M190.78 138.48c.6-4.08 1.26-9.24 1.08-10.38-.6-5.04-9.9-9.3-28.5-9-20.82-.12-27.6 4.02-28.2 9-.12 1.14.72 8.94 1.08 10.32 0 0 9.18-5.7 27.6-5.46 18.42.24 26.94 5.52 26.94 5.52z"/><path fill="#2F3235" d="M163.48 190.92c16.237 0 29.4-4.218 29.4-9.42 0-5.203-13.163-9.42-29.4-9.42s-29.4 4.217-29.4 9.42c0 5.202 13.163 9.42 29.4 9.42z"/><path fill="#fff" d="M186.4 171.66s-5.94-30.96.3-46.08l-2.94-1.56s-4.8 16.02-2.22 45.3l4.86 2.34z"/><path fill="#FFDC74" d="M171.7 66.9l-3.66-.24-1.92-3.12-1.32 3.48-3.54.78 2.88 2.28-.36 3.66 3.06-2.04 3.36 1.44-.9-3.48 2.4-2.76zM161.44 52.02l-1.68-2.34 1.08-2.7-2.76.78-2.28-1.68-.06 2.82-2.4 1.62 2.7.96.9 2.76 1.68-2.34 2.82.12zM148.36 65.58l-4.08-1.62-1.02-4.14-2.7 3.3-4.32-.42 2.28 3.72-1.68 3.96 4.14-1.14 3.3 2.94.36-4.32 3.72-2.28zM188.14 62.82l-1.68-1.74.36-2.34-2.16 1.14-2.16-1.2.42 2.52-1.86 1.68 2.52.3 1.02 2.28 1.08-2.22 2.46-.42zM172.96 86.7l-1.5-1.92.72-2.34-2.34.9-1.98-1.44.06 2.52-1.98 1.44 2.46.6.72 2.4 1.32-2.1 2.52-.06zM164.38 31.92l-1.5-1.2.06-1.92-1.56 1.14-1.74-.72.48 1.92-1.2 1.44 1.92.06 1.02 1.62.72-1.86 1.8-.48zM148.06 43.14l-1.38-.66-.18-1.56-1.14 1.08-1.5-.3.72 1.44-.78 1.32 1.56-.24 1.02 1.02.24-1.5 1.44-.6zM157.12 41.4l-.66-1.02.42-.96-1.02.3-.96-.72v1.08l-.9.6 1.08.48.24 1.02.6-.84 1.2.06zM180.88 68.4l-1.08-.24-.48-.96-.54.96-1.14.18.84.78-.24 1.08.96-.48 1.02.54-.12-1.14.78-.72zM157.84 61.02l-.84-.84.24-1.08-1.08.48-.9-.6.12 1.14-.78.78 1.08.12.48 1.08.54-.96 1.14-.12zM168.82 98.46l-1.14-.06-.6-.96-.3 1.08-1.14.18.84.78-.06 1.14.9-.6 1.02.42-.24-1.14.72-.84zM162.94 92.46v.84l-.66.42.78.24.18.84.54-.6h.84l-.48-.66.3-.78-.84.18-.66-.48z"/><path fill="#fff" d="M141.28 111.12c-1.08 0-1.98-.66-2.28-1.68L127.78 74.7c-.18-.6-.12-1.26.12-1.86.3-.6.78-1.02 1.38-1.2l24.42-7.92c.24-.06.48-.12.72-.12 1.08 0 1.98.66 2.28 1.68l11.22 34.74c.18.6.12 1.26-.12 1.86-.3.6-.78 1.02-1.38 1.2L142 111c-.24.06-.48.12-.72.12z"/><path fill="#53BCE7" d="M154.48 64.56c.66 0 1.26.42 1.44 1.08l11.22 34.74c.24.78-.18 1.68-.96 1.92l-24.42 7.92c-.18.06-.3.06-.48.06-.66 0-1.26-.42-1.44-1.08l-11.22-34.74c-.24-.78.18-1.68.96-1.92L154 64.62c.18-.06.3-.06.48-.06zm0-1.8c-.36 0-.66.06-1.02.18l-24.48 7.86c-1.74.54-2.7 2.46-2.16 4.2l11.22 34.74c.48 1.38 1.74 2.28 3.18 2.28.36 0 .66-.06 1.02-.18l24.42-7.92c1.74-.54 2.7-2.46 2.16-4.2L157.6 65.04c-.42-1.38-1.74-2.28-3.12-2.28z"/><path fill="#009BEC" d="M157.96 81.78c-.06 0-.72-.24-1.86.12-.3.12-.6.24-.84.36-.72-1.38-2.16-1.74-2.22-1.74l-.36-.06-.12.36c-.12.48-.18.96-.12 1.44.06.9.48 1.68 1.14 2.22-.42.48-1.2.78-1.38.9l-13.74 4.56c-.36.12-.54.48-.42.84.36 1.2.96 2.34 1.8 3.36.9 1.08 1.92 1.74 3 2.04 1.26.3 3 .06 4.92-.54.84-.3 1.68-.66 2.46-1.08 1.08-.6 2.1-1.38 2.94-2.34.66-.78 1.26-1.68 1.62-2.64.66-1.62.9-3.18.96-4.56.06 0 .12-.06.18-.06 1.2-.42 1.74-1.14 2.04-1.68.18-.36.3-.72.3-1.14v-.3l-.3-.06z"/><path fill="#009BEC" d="M139.54 89.04l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.18.18.24.12zM142.12 88.2l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.12.18.24.12zM144.7 87.36l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.06.12.12.24.12zM147.22 86.52l1.86-.6c.06 0 .12-.12.12-.24l-.6-1.68c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.12.12.24.18.3.18zM141.34 85.86l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.06.12.12.24.12zM143.92 84.96l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c0 .12.12.18.24.12zM146.44 84.12l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.18.18.24.12zM145.66 81.78l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.12.12.24.12zM149.8 85.62l1.86-.6c.06 0 .12-.12.12-.24l-.54-1.62c0-.06-.12-.12-.24-.12l-1.86.6c-.06 0-.12.12-.12.24l.54 1.62c.06.12.12.18.24.12zM132.609 74.048l-1.383.403 1.076 3.687 1.382-.404-1.075-3.686zM163.883 97.072l-1.374.43 1.15 3.664 1.374-.431-1.15-3.663z"/><path fill="#fff" d="M116.02 52.5c-.66 0-1.26-.42-1.5-1.08l-8.58-22.02c-.12-.42-.12-.84.06-1.2s.48-.66.9-.84l15.66-4.02c.18-.06.36-.12.54-.12.66 0 1.26.42 1.5 1.08l8.34 20.34c.12.36.12.84-.06 1.2-.18.42-.48.72-.9.84l-15.42 5.76c-.18 0-.36.06-.54.06z"/><path fill="#53BCE7" d="M123.16 23.82c.42 0 .78.24.96.66l8.28 20.28c.06.24.06.54-.06.78s-.3.42-.54.54l-15.42 5.76c-.12.06-.24.06-.36.06-.42 0-.78-.24-.96-.66l-8.58-22.02c-.12-.24-.06-.54 0-.78.12-.24.3-.42.54-.48l15.6-4.02h.12c.18-.12.3-.12.42-.12zm0-1.2c-.24 0-.54.06-.78.12l-15.66 4.02c-1.14.42-1.74 1.68-1.32 2.82l8.58 22.02c.36.9 1.2 1.44 2.1 1.44.24 0 .54-.06.78-.12l15.42-5.76c1.14-.42 1.74-1.68 1.32-2.82l-8.4-20.28c-.3-.9-1.14-1.44-2.04-1.44z"/><path fill="#009BEC" d="M126.16 39.84c-.42-.18-.48-.78-.9-.96-.3-2.1-1.8-3.6-3.24-4.38-1.26-.66-1.2-1.68-1.5-2.52-.42-1.26-1.38-2.46-2.94-1.98-1.68.54-1.74 2.1-1.5 2.94.6 1.98 1.2 2.34.48 4.14-.84 2.1-.48 3.84.12 4.62-.06.24-.24.48-.54.72-.84.72.12 1.26 0 1.86-.06.18 0 .36 0 .48.12.42.6.72 1.26.48.84-.36 1.86 0 2.4-.18.48-.12.78-.54.84-.96.78-.48 1.8-.78 2.7-.84.3.36.78.48 1.2.36.96-.3.84-1.5 1.8-2.22.36-.24.42-.72.3-1.08-.12-.18-.24-.42-.48-.48zm-7.44-4.56c-.18.06-.42-.06-.72-.18-.42-.12-.78-.18-.84-.42-.06-.18.18-.3.42-.6s.3-.54.6-.66.48 0 .96.06.78 0 .84.24c.06.24-.3.48-.54.72-.24.48-.36.78-.72.84zm0-3.42c.54-.06.9.84.78 1.38h-.24c0-.36-.18-.9-.54-.84-.24.06-.3.42-.24.66h-.36c-.12-.54.12-1.14.6-1.2zm-1.98.84c.36-.24.78.18.9.66l-.12.18c-.12-.18-.3-.48-.48-.36-.24.18 0 .72.18.78l-.18.18c-.36-.36-.66-1.2-.3-1.44zm2.4 11.94c-1.32-.18-1.68.06-1.92.18-.48.12-.72-.18-.66-.54.06-.3-.06-.6-.18-.84-.18-.36-.24-.48.06-.72.42-.36.54-.72.66-.96.3-.72 1.02.06 1.62.72.42.42.96.54 1.32 1.08.3.42-.12 1.2-.9 1.08zm5.76-5.82h-.18c-.24-.54-1.98-.84-1.8.24-.66.36-.06 1.38 0 2.16.06.36 0 .66 0 .96-.72.66-1.68 1.2-2.64 1.02-.24-.3-.48-.48-.78-.6.3-.18.42-.66 0-.96-.18-.18-.48-.24-.78-.36-1.08-.36-1.74-1.38-1.62-2.46.06-.42.18-.9.42-1.38.24-.72 0-1.5-.18-2.04l.48.12c.36.12.66.24.96.18.48-.18.66-.54.96-.84l.48-.48c.54.96 1.62 1.92 2.34 2.76.42.48 1.02.84 1.62 1.08.3.06.6.24.72.6zm.96 2.4c-.54.42-.78 1.02-.96 1.44-.36.72-1.14.66-1.38.18-.24-.54-.06-.96-.12-1.68-.06-.6-.48-1.5-.24-1.68.48 1.02 1.44.24 1.56-.12.42-.12.48 0 .66.36.12.24.24.36.54.54.36.18.42.6-.06.96zm-7.26-6.24c-.42.12-.78-.06-1.08-.18-.18-.06-.06-.3.12-.24.3.12.6.24.9.18.36-.12.6-.54.96-.84.12-.12.3.12.18.18-.42.3-.66.78-1.08.9zM109.347 28.883l-.906.318.835 2.377.906-.318-.835-2.377zM129.919 42.634l-.89.36.945 2.336.89-.36-.945-2.336z"/><path fill="#fff" d="M147.88 28.32c-.3 0-.6-.12-.78-.3l-11.04-9.18c-.24-.24-.42-.54-.42-.84 0-.3.06-.66.3-.9l13.08-15c.24-.3.6-.48.96-.48.3 0 .6.12.78.3l11.04 8.58c.54.42.6 1.2.12 1.74L148.84 27.9c-.24.3-.6.42-.96.42z"/><path fill="#53BCE7" d="M149.92 2.28c.12 0 .24 0 .42.18l10.98 8.52c.12.12.18.24.24.42 0 .18-.06.36-.12.48l-13.08 15.66c-.12.12-.3.24-.48.24-.12 0-.24 0-.42-.18l-11.04-9.18c-.12-.12-.24-.24-.24-.42s.06-.36.12-.48l13.08-15c.18-.18.36-.24.54-.24zm0-1.2c-.54 0-1.08.24-1.44.66l-13.08 15c-.66.78-.54 1.98.24 2.58l11.04 9.18c.36.3.78.42 1.2.42.54 0 1.08-.24 1.44-.66l13.08-15.6c.66-.78.54-1.98-.24-2.58L151.12 1.5c-.36-.3-.78-.42-1.2-.42z"/><path fill="#00ADEF" d="M147.22 8.7l3.42 2.22-2.52 2.94-3.06-2.58 2.16-2.58zm.6 5.46l-2.52 2.94-2.7-3 2.16-2.52 3.06 2.58zm3.18-3l4.56 2.88-3.06 3.54-4.08-3.42 2.58-3zm1.2 6.84l-3 3.54-3.54-4.02 2.52-2.94L152.2 18z"/><path fill="#009BEC" d="M150.756 4.705l-.557-.456-1.218 1.484.557.457 1.218-1.485zM149.074 24.46l-.557-.457-1.217 1.484.557.457 1.217-1.485z"/><path fill="#fff" d="M188.44 96c-.54 0-1.08-.24-1.38-.72l-11.64-16.44c-.54-.78-.36-1.8.42-2.34l23.28-15.18c.3-.24.66-.36 1.02-.36.54 0 1.08.24 1.38.72l11.7 15.12c.54.72.36 1.8-.42 2.34L189.4 95.7c-.3.24-.66.3-.96.3z"/><path fill="#53BCE7" d="M200.08 61.86c.24 0 .48.12.66.36l11.64 15.06c.24.36.12.84-.18 1.08l-23.34 16.56c-.18.12-.36.12-.48.12-.24 0-.48-.12-.66-.36l-11.64-16.44c-.18-.24-.18-.48-.12-.6 0-.12.06-.36.3-.48l23.28-15.18c.24-.06.42-.12.54-.12zm0-1.8c-.54 0-1.02.18-1.5.48l-23.34 15.24a2.54 2.54 0 00-.6 3.6l11.64 16.44c.48.72 1.32 1.08 2.1 1.08.54 0 1.02-.18 1.5-.48l23.34-16.56a2.54 2.54 0 00.6-3.6L202.18 61.2a2.516 2.516 0 00-2.1-1.14z"/><path fill="#00ADEF" fill-rule="evenodd" d="M200.86 73.56c1.2 1.68 1.68 3.72 1.38 5.64-.36-.6-1.14-.9-1.92-.36-1.62 1.08-.6 3.24-4.44 4.44l-3.24 1.02 5.22-7.2c.06-.12.18-.12.24 0l.48.66c0 .06.06.06.12 0l.42-.3c.06 0 .06-.06 0-.12-.96-1.2-1.8-2.46-2.64-3.72 0-.06-.06-.06-.12 0l-.42.3c-.06 0-.06.06 0 .12l.48.66c.12.12.06.24 0 .3l-1.92 2.82-5.4 1.62 5.28-7.32c.06-.12.12-.12.18 0l.54.78c0 .06.06.06.12 0l.42-.3c.06 0 .06-.06 0-.12-.6-.78-1.2-1.56-1.68-2.28 2.64-.12 5.28 1.02 6.9 3.36zm.66 8.1c-.54 1.14-1.44 2.16-2.52 3-2.46 1.74-5.58 1.92-8.1.66l7.2-2.04c1.08-.3 2.46-.84 3.42-1.62zm-11.76 3.06c-.72-.54-1.38-1.14-1.92-1.92a7.76 7.76 0 01-1.08-2.1l7.2-2.1-4.2 6.12zm-3.3-5.16c-.54-2.94.66-6.06 3.24-7.92.96-.66 2.04-1.14 3.12-1.32l-6.36 9.24z" clip-rule="evenodd"/><path fill="#009BEC" d="M200.498 64.302l-.68-.99-2.621 1.803.68.988 2.621-1.801zM191.107 91.658l-.68-.989-2.62 1.802.68.989 2.62-1.802z"/><path fill="#fff" d="M188.26 51.12h-.24l-14.58-2.7c-.36-.06-.66-.24-.84-.54-.18-.3-.3-.66-.18-.96l4.2-19.44c.12-.66.66-1.08 1.32-1.08h.24l14.28 1.44c.66.12 1.14.84 1.02 1.5l-3.84 20.7c-.24.66-.78 1.08-1.38 1.08z"/><path fill="#53BCE7" d="M177.82 26.94h.24l14.16 1.44c.18.06.3.12.42.3s.12.36.12.54l-3.84 20.7c-.06.36-.36.6-.72.6h-.12l-14.58-2.7c-.18-.06-.36-.12-.48-.3s-.12-.36-.12-.54l4.2-19.44c.12-.36.36-.6.72-.6zm0-1.2c-.9 0-1.68.66-1.86 1.56l-4.2 19.5c-.18 1.02.48 2.04 1.56 2.22l14.58 2.7c.12 0 .24.06.36.06.9 0 1.68-.66 1.86-1.56l3.84-20.7c.18-1.02-.48-2.04-1.56-2.22l-14.22-1.44c-.12-.12-.24-.12-.36-.12z"/><path fill="#00ADEF" d="M186.58 43.02c-5.22 1.5-7.92-.96-9.66-2.46-.12-.12-.3-.06-.18.18.54.9 2.28 3.12 5.04 3.6 2.76.48 4.62-.78 4.86-1.02.24-.18.12-.36-.06-.3zm1.5-.54c-.12-.18-.78-.36-1.2-.36-.42 0-1.08.12-1.08.3 0 .06.06.06.36.06s1.14.06 1.26.3c.12.24-.48 1.26-.6 1.38-.12.18 0 .24.18.12.18-.06.48-.36.72-.72s.42-.9.36-1.08z"/><path fill="#00ADEF" fill-rule="evenodd" d="M184.12 37.74c-.12.6-.18 1.14-.54 1.62-.3.42-.78.6-1.2.54-.6-.12-.84-.6-.78-1.26.24-1.32 1.44-1.38 2.58-1.2l-.06.3zm.9 4.08c-.12.06-.24.06-.36 0-.42-.54-.48-.72-.72-1.2-1.02.72-1.62.9-2.76.72-1.32-.24-2.22-1.2-1.92-2.82.24-1.26 1.02-1.98 2.1-2.28.9-.24 2.1-.12 3-.06l.06-.18c.06-.36.18-.78 0-1.14-.12-.3-.48-.48-.78-.54-.6-.12-1.2.12-1.38.72-.06.12-.18.24-.3.24l-1.56-.48c-.12-.06-.24-.18-.18-.36.66-1.8 2.4-2.04 3.9-1.8.78.12 1.74.48 2.22 1.14.66.84.42 1.74.24 2.82l-.42 2.4c-.12.72.12 1.08.36 1.56.06.18.06.3-.06.42-.42.24-1.08.6-1.44.84z" clip-rule="evenodd"/><path fill="#00ADEF" d="M186.58 43.02c-5.22 1.5-7.92-.96-9.66-2.46-.12-.12-.3-.06-.18.18.54.9 2.28 3.12 5.04 3.6 2.76.48 4.62-.78 4.86-1.02.24-.18.12-.36-.06-.3zm1.5-.54c-.12-.18-.78-.36-1.2-.36-.42 0-1.08.12-1.08.3 0 .06.06.06.36.06s1.14.06 1.26.3c.12.24-.48 1.26-.6 1.38-.12.18 0 .24.18.12.18-.06.48-.36.72-.72s.42-.9.36-1.08z"/><path fill="#00ADEF" fill-rule="evenodd" d="M184.12 37.74c-.12.6-.18 1.14-.54 1.62-.3.42-.78.6-1.2.54-.6-.12-.84-.6-.78-1.26.24-1.32 1.44-1.38 2.58-1.2l-.06.3zm.9 4.08c-.12.06-.24.06-.36 0-.42-.54-.48-.72-.72-1.2-1.02.72-1.62.9-2.76.72-1.32-.24-2.22-1.2-1.92-2.82.24-1.26 1.02-1.98 2.1-2.28.9-.24 2.1-.12 3-.06l.06-.18c.06-.36.18-.78 0-1.14-.12-.3-.48-.48-.78-.54-.6-.12-1.2.12-1.38.72-.06.12-.18.24-.3.24l-1.56-.48c-.12-.06-.24-.18-.18-.36.66-1.8 2.4-2.04 3.9-1.8.78.12 1.74.48 2.22 1.14.66.84.42 1.74.24 2.82l-.42 2.4c-.12.72.12 1.08.36 1.56.06.18.06.3-.06.42-.42.24-1.08.6-1.44.84z" clip-rule="evenodd"/><path fill="#009BEC" d="M178.966 28.366l-.703-.154-.41 1.876.703.154.41-1.876zM188.51 47.676l-.704-.154-.41 1.876.704.153.41-1.875z"/><path fill="#fff" d="M123.82 100.14c-5.7 9.3-9.54 9.9-13.56 10.26-1.86.18-2.58-1.08-2.52-1.62.06-.84-1.02-1.2-1.62-1.5-.12-.06-.24-.12-.3-.24s-.12-.24-.12-.36c-.06-.3-.12-.42-.36-.6-.24-.12-.36-.24-.54-.48-.12-.24-.24-.54-.42-.72-.42-.48-1.14-.66-1.56-1.14-.24-.3-.36-.66-.54-.96-.18-.3-.3-.42-.6-.6-.6-.42-1.08-1.26-1.56-1.8-.36-.48-.72-.96-1.14-1.44-.36-.36-.66-.78-1.08-1.02-.3-.18-.6-.3-.84-.6-.06-.06-.12-.18-.18-.24-.12-.24-.36-.42-.54-.66a.455.455 0 00-.24-.12c-.12 0-.24.06-.36.06s-.18-.12-.24-.18c-.42-.3-1.02 0-1.5-.12-.3-.06-.54-.36-.78-.54-.9-.78-2.22-.72-3.36-1.08-.24-.06-5.7-1.98-6.78-2.46-1.74-.84-3-.6-4.02-2.34-.48-.78-1.32-2.82-.9-3.6.48-.78 1.5-1.14 2.4-1.08.9.06 5.16 3.42 9.12 3 .9-.12 2.28-1.32 1.74-2.4-.36-.9-4.02-4.32-4.38-11.1-.06-1.02.9-3.78 1.8-4.26 1.14-.6 2.34.66 3.12 1.62 1.26 1.5 1.62 3.78 3.06 5.28-1.02-2.76-1.14-4.08-1.38-6.42-.06-.96-.78-4.5 2.34-6 1.02-.48 2.46.42 2.94 1.14 1.56 2.34 1.02 4.92 2.58 7.32.66.48 1.92.06 2.22-.12.66-.36 1.62-2.76 3.72-3.06 1.26-.18 4.68 1.08 5.82 1.68 1.2.66 2.52.9 2.52 2.46.78.18 1.98.48 2.64.06.96-.54 1.56-.54 2.28-.18.6.36 1.14 1.5 1.5 1.98.42.6.42.36 1.02.9.72.6.96 1.68.9 2.58-.06 1.56-.84 2.76-.54 4.38.48 2.7 1.92 5.58.84 8.34-.54 1.38-1.14 2.76-.96 4.26.36 1.14 1.14 2.58.36 3.72z"/><path fill="#DFE2E8" d="M123.16 89.76c.84-.12 1.56-.36 1.62-.84-.12 1.5.36 3 .54 4.5.18 1.38.3 2.28.12 3.66-.18 1.02-.3 1.98-.66 2.94-.36 1.02-1.02 1.74-1.5 2.64-.54.9-1.08 1.68-1.8 2.46-1.44 1.5-3 2.88-4.68 4.08-1.86 1.32-3.9 2.52-6.18 2.7-2.34.18-4.68-.78-6.24-2.52-.78-.9-1.38-1.98-2.22-2.82-1.5-1.44-3.6-2.04-5.34-3.12-1.5-.96-2.7-2.34-4.2-3.3-2.58-1.74-5.88-2.16-8.46-3.9-1.5-1.02-2.76-2.82-3.78-4.26-1.5-2.04-2.58-3.54-1.98-6.06 1.5 1.26 2.16 3.24 3.9 4.32 1.62 1.02 3.48 1.56 5.34 2.16 1.5.48 3.06.96 4.56 1.44.9.3 2.58 1.26 3.36.54.48-.48.72-1.2 1.2-1.68-.54.54-.66 2.58-.24 3.18.54.9 1.98 1.68 2.76 2.46 2.22 2.28 4.44 4.56 6.72 6.78.84.84 1.68 1.68 2.76 2.1 2.82 1.56 6.42-2.52 8.22-4.02 1.38-1.14 2.76-2.34 3.9-3.72 1.14-1.38 1.92-3.12 1.98-4.92.06-1.8-.78-3.66-2.28-4.62.3-.06 1.56 0 2.58-.18z"/><path fill="#DFE2E8" d="M117.28 78.66c0-.84.06-1.86-.3-1.92-.18-.06-.36.12-.48.3-.78 1.14-1.5 2.82-3.18 2.4-1.2-.3-2.16-1.26-3.12-1.98-.78-.6-1.38-1.74-2.46-1.8-.12.18-.12.42-.12.6.06.3.54.9.72 1.14.6 1.02 1.26 2.04 1.5 3.24.48 2.22.06 4.5-.42 6.72-.54 2.7-1.08 5.34-1.62 8.04-.24 1.08-.48 1.68-1.02 2.58-.12.18-1.32 1.98-1.26 2.16.3.6.96.96 1.62 1.02 1.5 0 2.22-1.98 2.94-3.06l2.7-4.14c1.26-1.92 3-4.02 3.84-6.12.66-1.74 1.98-3.6 1.74-5.58-.12-1.02-.78-1.62-1.08-2.46-.06-.24-.06-.66 0-1.14z"/><path fill="#FEC007" d="M98.44 112.5c-.06.18-.12.36-.06.54.06.36.24.84 1.02 1.14.78.3 1.44.3 1.8 0 .12-.06.18-.18.18-.24l3.36-7.86s-.42.42-1.8-.06c-.54-.18-1.32-.78-1.26-1.2l-3.24 7.68zM128.32 46.08c-1.62-.72-1.5-1.14-1.5-1.14l5.52-13.5c.24-.48 1.32-.48 2.46-.06 1.2.42 2.04 1.2 1.86 1.68 0 .06 0 .06-.06.12l-6 13.14c-.18.24-1.26.18-2.28-.24z"/><path fill="#000" d="M130.6 46.26c-.18.3-1.26.24-2.28-.18-1.38-.6-1.5-1.02-1.5-1.14l-25.08 59.82c0 .42.72 1.02 1.26 1.2 1.2.42 1.68.18 1.74.12l25.86-59.82z"/></svg>
|
package/dist/images/filtered.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="320" height="192" viewBox="0 0 320 192"><g clip-path="url(#clip0)"><path fill="#A7ADB7" d="M186.5 168.3c16.7-3.9 37-9.4 52.8-26.6 15.8-17.3 27.1-46.7 18.9-65.4-8.1-18.8-35.7-27.4-57.7-41.3C178.4 21 161.8 1.6 144.4.2c-17.6-1.4-36 15.4-52.7 35.1a170.2 170.2 0 00-38.8 71.2c-6.9 28.6-5.3 63.4 11.1 76 16.6 12.8 48.2 3.3 70.5-2.5 22.3-6 35.3-8.1 52-11.7z"/><path fill="url(#paint0_linear)" fill-rule="evenodd" d="M156.1 41.7l-33.9-1.8-.3-33.1c7.4-4.7 15-7.4 22.4-6.7 4 .3 8 1.6 12.2 3.6l-.4 38z" clip-rule="evenodd"/><path fill="#DFE2E8" d="M69.8 104.6a131 131 0 0126 26.2c10 13.5 17.3 28.9 28.4 41.4 23.6 27 71 28.6 86-8.5 3.8-9.3 6.5-12 14-18.6 8.3-7.4 20.7-5.4 31.7-6 16.1-1 24.6-11 26.3-21.4 2.1-13.1-6.2-23.5-9.7-35.5-3.8-12.6-1.6-27.7-14.5-35.3-10.9-6.4-24.8-3.3-36.8.7-12 4-24.8 9-36.9 5.5a57 57 0 01-21.6-14.5 89 89 0 00-63.9-22.1c-13.3 1.3-33 5.9-43.4 14.6-14 11.6-25.6 39.3-13 55.7 5.8 7.7 19.1 11.7 26.8 17.5.2 0 .4 0 .6.3z"/><path fill="#C4C9D3" fill-rule="evenodd" d="M211.4 160.7c-8.5 3.5-17 5.7-24.9 7.6l-14.6 3c-10.8 2.3-21.8 4.5-37.4 8.7l-1.6.4c-3.2-2.4-6.2-5-8.8-8-6.5-7.4-11.7-15.9-17-24.2a260 260 0 00-11.3-17.3c-7.4-10-16.2-18.7-26-26.2l-.4-.2-.3-.2c-3-2.3-6.8-4.2-10.7-6.3-1-.4-1.8-1-2.8-1.5a180 180 0 0136-61.3c5.8-6.7 11.6-13.1 17.7-18.5a88.4 88.4 0 0153.3 22.1c6.4 6 13.3 12.1 21.6 14.5 11.5 3.3 23.5-.8 35-4.8l2-.7 1.7-.5c15.5 8.2 30 16.2 35.4 29 8 18-2.2 45.8-17 63.3-6.4.3-12.3 1.5-17 5.7a37.5 37.5 0 00-12.9 15.4z" clip-rule="evenodd"/><path fill="#252628" d="M91.4 127a26.5 26.5 0 100-53 26.5 26.5 0 000 53z"/><path fill="#fff" d="M84 98.2A9 9 0 1084 80a9 9 0 100 18.2z"/><path fill="#53BCE7" d="M264.2 91.2c0-4.6-8.3-19-8.3-19s-8.3 14.3-8.3 19a8.3 8.3 0 0016.7 0z"/><path fill="#fff" d="M255.8 89.9c.6-2.2-.1-4.4-1.7-4.8-1.5-.5-3.1 1-3.8 3.3-.7 2.1.1 4.3 1.6 4.8 1.6.4 3.3-1 3.9-3.3z"/><path fill="#252628" d="M249.9 66c-7.6-.4-13 1-16.4 4.6-6.3 6.6-4.7 19-2.6 35v1.2c.7 5.2-.4 9.1-3.1 12-4.7 4.6-14.2 6.2-28 4.7h-17c-12.2 0-23.3.7-48 .7-4.5 0-14.1 1.8-20.7 1.3-4-.4-8.3-2.9-1.9-8.8l-18.5 1-.1 7.5c-6.5.1-13.8-.4-20.8-3.3-11.8-4.7-16.1-2.7-20.4.1-2.4 1.7-4 2.9-9.1 1.5-1-.4-2.1.2-2.4 1.3-.4 1 .2 2 1.3 2.4 6.8 2 9.8-.1 12.4-2 3-2 5.8-4 16.7.3 6.9 2.7 13.8 3.6 20 3.6 5.7 0 10.8-.7 14.9-1.2l3.8-.5h17.5l55-.2H199c5.6.7 22.8 2.5 31.1-5.8 3.6-3.6 5.2-8.7 4.3-15.2l-.2-1c-1.9-15-3.4-26.7 1.6-32.1 2.5-2.6 6.8-3.7 13.2-3.3 1 .1 2-.8 2-1.8.7-1-.2-2-1.1-2z"/><path fill="#666" d="M255.1 64.2l-7.8.3.3 6.8 7.8-.3-.3-6.8z"/><path fill="#fff" d="M250 63.3c-.5 0-.7.4-.7.7v7.3c0 .5.3.7.7.7.4 0 .6-.3.6-.7V64c0-.5-.2-.7-.6-.7zM253 63.3c-.5 0-.7.4-.7.7v7.3c0 .5.3.7.6.7.5 0 .7-.3.7-.7V64c.1-.5-.2-.7-.7-.7z"/><path fill="#9AD0E8" d="M122.3 61l33.5 1 .4-28.8a88 88 0 00-34.7-15l.8 42.8z"/><path fill="#00326D" d="M167.5 87s-9.4-12.6-11.3-16l-1.7-16.6-28.3-1-2.2 41 56.4 8.4-13-14.8.1-1z"/><path fill="#0053CC" d="M179.7 92.5s-26.4-10.3-28.2-13.4c-1.7-3 7.4-7.8 7.4-7.8l20.8 21.2z"/><path fill="#009BEC" d="M229.3 110.4c1-1 1.8-8.3-4.4-9.3a476 476 0 00-27.3-3.4c-13.6-1.1-26.2-17.4-31.7-19-5.6-1.8-10.9 4.8-14 7-3 2.1-14.2.5-16.3-2.8-4.7-7.6-7.6-7-11-7.4-3.3-.4-2.4 5.3-4.6 14-2 8.6-4 16 .7 20.7 4.7 4.7 28 5.4 28 5.4l31.9 4 33.4-.3 15.3-8.9z"/><path fill="#53BCE7" d="M191.4 97.7l-31.2-17.1-1-.6c-1.4.8-2.6 1.9-3.8 2.9L167 99.5l18.9.5 5.4-2.3z"/><path fill="#000" d="M165.3 77.7c5 1.4 24.8 17 33.4 22-2 1.3-5.3.7-8.6-.2-4.5-1.2-24.4-13.6-32.7-18.5 2.6-1.8 5-4 8-3.3z"/><path fill="#fff" d="M207.5 107.1l-11-9.5-11.4-7s-13.5 6.8-22 3.1c-8.5-3.6 4.3 16.4 4.3 16.4l39.8 3.4.3-6.4z"/><path fill="#0053CC" d="M201.7 119.4l16.1-2.4 11.5-6.6c.6-.5 1.1-3.3.5-5.7l-.9-.2c.1.3 0 .5-.1.8-.9 1.5-22.8.2-22.8.2l-3.1 1.4c-3.4 1.6-7.2 2-10.9 1.4l-4.6-.7-12-2.5-17.2-3.4a66 66 0 01-12.8-3.7L122.8 89l-1 4c-1.2 5.2-1 9-1 9l-1 .8v1.8l-2.1-.1c.3 2 1.1 4 2.7 5.6.5.4 1.3 1 2.1 1.4l66.1 8h13z"/><path fill="#9AD0E8" d="M120 89.2l.4-1.8c9.4 2.7 24.9 10 25.6 27l-5.7.4c-7.1-.7-16.8-2-19.6-5-4.8-4.4-2.9-11.9-.7-20.6z"/><path fill="#53BCE7" d="M118 105c10 4.8 42.6-5 43.5 12-2 .2-19.4-2-21.3-2-7.1-.6-14-4-17.9-4.4-2.5 0-4.6-5-4.4-5.6z"/><path fill="#666" d="M229.8 110s-10.5 6.3-26.8 7c-24.8 1-37.4-7-49.7-8.1-12.3-1.1-22.2 1.4-27.1 1.2-4.9-.2-6.4-1.6-7-2.1-1.4 2-1.8 11.9 0 14.7.7 1.4 7.4 2.3 19.2 2 26-.8 49 .8 57.2 1 8.3.2 20 1.6 27-4 4.7-3.6 7.2-11.7 7.2-11.7z"/><path fill="#00326D" d="M195.5 125.8c1.5 0 3 0 4.5.2-39.3-8.3-41.6-13.4-56.2-13-11 .2-20 7.3-25.9 5.1-.4 4.2 2.2 7.5 2.2 7.5 11.3-.5 6.3-.5 18.1-.8 26.2-.9 49 .8 57.3 1z"/><path fill="#000" d="M186 95.2c-.5.7-.2 1.7.5 2 .8.5 1.8.3 2.1-.5.5-.8.2-1.8-.5-2-.7-.5-1.7-.2-2.1.5zM181.5 92.5c-.5.8-.2 1.8.5 2.1.8.4 1.8.2 2.1-.5.5-.8.2-1.8-.5-2.1-.7-.5-1.7-.1-2.1.5z"/><path fill="#009BEC" d="M177 89.9c-.4.8-.1 1.7.6 2 .8.5 1.8.3 2.1-.5.5-.7.2-1.7-.5-2-.7-.5-1.7-.3-2.1.5zM172.7 87.3c-.4.7-.2 1.7.5 2 .8.5 1.8.3 2.1-.5.5-.8.3-1.8-.5-2-.7-.5-1.7-.3-2.1.5zM168.3 84.6c-.4.8-.2 1.8.6 2.1.7.4 1.7.2 2-.5.5-.8.3-1.8-.5-2.1-.7-.5-1.7-.2-2 .5zM164 82c-.5.8-.3 1.7.5 2 .7.5 1.7.3 2-.5.5-.7.3-1.7-.5-2-.7-.5-1.6-.3-2 .5z"/><path fill="#515151" d="M168.6 78.7l-2.5 4.3a1 1 0 01-.8.4.8.8 0 01-.4-.2c-.4-.2-.5-.8-.3-1.2l2.4-4c.6.1 1 .4 1.6.7zM170.6 85.6a1 1 0 01-.8.4c-.2 0-.3 0-.4-.2-.4-.2-.5-.7-.3-1.2l2.5-4.2 1.4 1-2.4 4.2zM174.9 88.2a1 1 0 01-.8.5.8.8 0 01-.4-.2c-.5-.3-.6-.8-.3-1.2l2.4-4 1.4 1.1-2.3 3.8zM179.4 90.9a1 1 0 01-.8.4.8.8 0 01-.4-.2c-.5-.2-.6-.8-.3-1.2l2-3.6c.2 0 .2 0 .3.2l1.2.9-2 3.5zM183.8 93.5a1 1 0 01-.8.4.8.8 0 01-.4-.2c-.5-.2-.6-.7-.4-1.2l2-3.2 1.4 1.1-1.8 3.1zM188.2 96.3a1 1 0 01-.8.4l-.4-.2c-.5-.2-.6-.8-.4-1.2l1.8-2.9 1.4 1-1.6 2.9z"/><path fill="#009BEC" d="M139.7 121.5a3 3 0 01-3.1-3.4c.2-1.4 1.5-2.7 5.1-3a34 34 0 0115.6 3.7c1.1.4 1 2.3-.5 2.3l-17.1.4z"/><path fill="#53BCE7" d="M122 69.5s25.1 1 35 .7l.2-18.6h-36.6l1.4 17.9z"/><path fill="#fff" d="M121.4 55.4c-.2 0-.2 0-.2-.2l.2-.2h1.8c.1 0 .2 0 .2.2s-.1.2-.2.2h-1.8zM126.7 55.4c-.2 0-.2 0-.2-.2 0-.1 0-.2.2-.2h3.4c.1 0 .2 0 .2.2 0 .1 0 .2-.2.2h-3.4c.1 0 .1 0 0 0zm7 0c-.2 0-.2-.2-.2-.3l.2-.2h3.4c.1 0 .3 0 .3.2l-.3.2h-3.4zm7 0c-.3 0-.3-.2-.3-.3l.2-.2h3.4c.2 0 .3 0 .3.2 0 .1-.1.2-.3.2h-3.4zm7-.2c-.3 0-.3-.1-.3-.2l.3-.2h3.4c.2 0 .2 0 .2.2s-.1.2-.2.2h-3.4zM154.7 55l-.2-.1c0-.2 0-.2.2-.2h1.8c.2 0 .2 0 .2.2l-.2.2h-1.8z"/><path fill="#0053CC" d="M229.4 126.8H71.1c-1.7 0-3.1 1.4-3.1 3 0 1.7 1.4 3.1 3 3.1h158.4c1.7 0 3.1-1.4 3.1-3a3 3 0 00-3-3.1z"/></g><defs><linearGradient id="paint0_linear" x1="139.5" x2="142.2" y1="20.9" y2="0" gradientUnits="userSpaceOnUse"><stop stop-color="#8D939C"/><stop offset="1" stop-color="#8D939C" stop-opacity="0"/></linearGradient><clipPath id="clip0"><path fill="#fff" d="M0 0h320v192H0z"/></clipPath></defs></svg>
|