[SecuritySolution] Update get started page UI (#171078)
## Summary [Test env](https://p.elstc.co/paste/Y83spa-G#0BRN87aMZxLJfbVok3W0U-7D/sss9OGfH9IIqw4oHL6) 1. When landing on the page the first time, all the tasks are collapsed. If visited before, it keeps the last expanded task. 2. When clicking on the task, the url has the task id appended as `#{taskId}` 3. When visiting the page, if url has `#{taskId}`, the relevant task should be expanded. If no `#{taskId}` in the url, it expands the last expanded task according to **local storage**. 4. Tasks completion are checked automatically, users are not able to undo any tasks unless the **local storage** is cleanned. 5. Task completion criteria: https://github.com/elastic/security-team/issues/8032 `Onboarding tasks with success criteria`: - [x] "create first project" -> ~unexpandable~, already complete when user arrives - [x] "watch overview video" -> user clicks to expand (success == users opens section/clicks "Start") - [x] "add integrations" -> users clicks to expand and goes to integration page (success == query fleet to confirm an agent exists with an integration) `Update we use **indicesExist** from sourcerer to replace fleet api as some performance issue found when running locally, not sure how it will affect the production.` - [x] - after user clicks "Start" and expands, if success criteria is already met (e.g. agent is installed with an integration), notify user agent is installed and mark step as complete. - [x] "view and analyze dashboards" -> users clicks to expand (success == click action) - [x] "enable prebuilt rules" -> clicks to expand (success == at least one rule **enabled**, show enabled rules like integrations above) - [x] "view alerts" -> user clicks to expand (success == click action) 6. Design: https://github.com/elastic/kibana/pull/171078#issuecomment-1828562066 https://github.com/elastic/kibana/issues/170643 <img width="2556" alt="Screenshot 2023-12-04 at 16 47 48" src="c98eb2f5
-6b31-43f9-9db5-0829e78bb3c2"> <img width="2548" alt="Screenshot 2023-12-04 at 16 29 50" src="41cb329c
-417f-4b95-b19b-67663380a9a3"> <img width="2546" alt="Screenshot 2023-12-04 at 16 30 47" src="daa3cf3b
-9d2e-4c69-83f1-fcc4817f6b8f"> - Integration added:1f9aefe4
-c20b-4d46-b8b0-1aabf8bd7091 - Integration not added:8b0d6c6b
-0bae-4857-aeb1-715f9f4080b829432bfe
-f270-4e5e-a1c9-86ad806ea5bb ### Checklist Delete any items that are not applicable to this PR. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Sergi Massaneda <sergi.massaneda@gmail.com>
|
@ -124,7 +124,7 @@ pageLoadAssetSize:
|
|||
screenshotting: 22870
|
||||
searchprofiler: 67080
|
||||
security: 81771
|
||||
securitySolution: 67584
|
||||
securitySolution: 82780
|
||||
securitySolutionEss: 16573
|
||||
securitySolutionServerless: 62488
|
||||
serverless: 16573
|
||||
|
|
|
@ -17,8 +17,10 @@ export {
|
|||
MANAGE_PATH,
|
||||
ADD_DATA_PATH,
|
||||
SecurityPageName,
|
||||
DETECTION_ENGINE_RULES_URL_FIND,
|
||||
} from './constants';
|
||||
export { ELASTIC_SECURITY_RULE_ID } from './detection_engine/constants';
|
||||
export { ENABLED_FIELD } from './detection_engine/rule_management/rule_fields';
|
||||
export { allowedExperimentalValues, type ExperimentalFeatures } from './experimental_features';
|
||||
|
||||
// Careful of exporting anything from this file as any file(s) you export here will cause your page bundle size to increase.
|
||||
|
|
|
@ -12,6 +12,9 @@ const mockUseContractComponents = jest.fn(() => ({}));
|
|||
jest.mock('../../hooks/use_contract_component', () => ({
|
||||
useContractComponents: () => mockUseContractComponents(),
|
||||
}));
|
||||
jest.mock('../../containers/sourcerer', () => ({
|
||||
useSourcererDataView: jest.fn().mockReturnValue({ indicesExist: false }),
|
||||
}));
|
||||
|
||||
describe('LandingPageComponent', () => {
|
||||
beforeEach(() => {
|
||||
|
|
|
@ -6,11 +6,13 @@
|
|||
*/
|
||||
|
||||
import React, { memo } from 'react';
|
||||
import { useSourcererDataView } from '../../containers/sourcerer';
|
||||
import { useContractComponents } from '../../hooks/use_contract_component';
|
||||
|
||||
export const LandingPageComponent = memo(() => {
|
||||
const { GetStarted } = useContractComponents();
|
||||
return GetStarted ? <GetStarted /> : null;
|
||||
const { indicesExist } = useSourcererDataView();
|
||||
return GetStarted ? <GetStarted indicesExist={indicesExist} /> : null;
|
||||
});
|
||||
|
||||
LandingPageComponent.displayName = 'LandingPageComponent';
|
||||
|
|
|
@ -9,7 +9,7 @@ import { BehaviorSubject } from 'rxjs';
|
|||
import type { Observable } from 'rxjs';
|
||||
|
||||
export type ContractComponents = Partial<{
|
||||
GetStarted: React.ComponentType<{}>;
|
||||
GetStarted: React.ComponentType<{ indicesExist?: boolean }>;
|
||||
DashboardsLandingCallout: React.ComponentType<{}>;
|
||||
}>;
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ import { Plugin } from './plugin';
|
|||
import type { PluginSetup, PluginStart } from './types';
|
||||
export type { TimelineModel } from './timelines/store/timeline/model';
|
||||
export type { LinkItem } from './common/links';
|
||||
export type { FetchRulesResponse } from './detection_engine/rule_management/logic/types';
|
||||
|
||||
export const plugin = (context: PluginInitializerContext): Plugin => new Plugin(context);
|
||||
|
||||
|
|
|
@ -4,9 +4,4 @@
|
|||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
export const WelcomePanel = jest
|
||||
.fn()
|
||||
.mockImplementation(({ children }) => <div data-test-subj="welcome-panel">{children}</div>);
|
||||
export const useUserName = jest.fn().mockReturnValue('mocked_user_name');
|
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import { useEffect, useState } from 'react';
|
||||
import { useKibana } from '../services';
|
||||
|
||||
export const useUserName = () => {
|
||||
const [userName, setUserName] = useState<string>();
|
||||
const {
|
||||
services: {
|
||||
security: { authc },
|
||||
},
|
||||
} = useKibana();
|
||||
useEffect(() => {
|
||||
const getUser = async () => {
|
||||
const { username } = await authc.getCurrentUser();
|
||||
setUserName(username);
|
||||
};
|
||||
|
||||
getUser();
|
||||
});
|
||||
|
||||
return userName;
|
||||
};
|
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import type { FetchRulesResponse } from '@kbn/security-solution-plugin/public';
|
||||
import { DETECTION_ENGINE_RULES_URL_FIND } from '@kbn/security-solution-plugin/common';
|
||||
import type { HttpSetup } from '@kbn/core/public';
|
||||
|
||||
export const fetchRuleManagementFilters = async ({
|
||||
http,
|
||||
signal,
|
||||
query,
|
||||
}: {
|
||||
http: HttpSetup;
|
||||
signal?: AbortSignal;
|
||||
query?: {
|
||||
page: number;
|
||||
per_page: number;
|
||||
sort_field: string;
|
||||
sort_order: string;
|
||||
filter: string;
|
||||
};
|
||||
}): Promise<FetchRulesResponse> =>
|
||||
http.fetch<FetchRulesResponse>(DETECTION_ENGINE_RULES_URL_FIND, {
|
||||
method: 'GET',
|
||||
version: '2023-10-31',
|
||||
signal,
|
||||
query,
|
||||
});
|
|
@ -5,140 +5,55 @@
|
|||
* 2.0.
|
||||
*/
|
||||
import React from 'react';
|
||||
import { render, fireEvent } from '@testing-library/react';
|
||||
import { render } from '@testing-library/react';
|
||||
import { CardItem } from './card_item';
|
||||
import type { CardId, ExpandedCardSteps, StepId } from './types';
|
||||
import { GetSetUpCardId, IntroductionSteps, SectionId } from './types';
|
||||
import type { EuiThemeComputed } from '@elastic/eui';
|
||||
import { introductionSteps } from './sections';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import type { ExpandedCardSteps, StepId } from './types';
|
||||
|
||||
import { QuickStartSectionCardsId, SectionId, OverviewSteps } from './types';
|
||||
jest.mock('./card_step');
|
||||
|
||||
describe('CardItemComponent', () => {
|
||||
const finishedSteps = {} as Record<CardId, Set<StepId>>;
|
||||
const onCardStepClicked = jest.fn();
|
||||
const finishedSteps = new Set([]) as Set<StepId>;
|
||||
const onStepClicked = jest.fn();
|
||||
const onStepButtonClicked = jest.fn();
|
||||
const toggleTaskCompleteStatus = jest.fn();
|
||||
const expandedCardSteps = {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [] as StepId[],
|
||||
},
|
||||
} as ExpandedCardSteps;
|
||||
|
||||
const mockEuiTheme = { size: { xxs: '4px' }, base: 16 } as EuiThemeComputed;
|
||||
it('should render card', () => {
|
||||
const { getByText, queryByText } = render(
|
||||
const { getByTestId } = render(
|
||||
<CardItem
|
||||
activeProducts={new Set([ProductLine.security])}
|
||||
activeStepIds={introductionSteps.map((step) => step.id)}
|
||||
cardId={GetSetUpCardId.introduction}
|
||||
activeStepIds={[OverviewSteps.getToKnowElasticSecurity]}
|
||||
cardId={QuickStartSectionCardsId.watchTheOverviewVideo}
|
||||
expandedCardSteps={expandedCardSteps}
|
||||
euiTheme={mockEuiTheme}
|
||||
finishedSteps={finishedSteps}
|
||||
onCardClicked={onCardStepClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
toggleTaskCompleteStatus={toggleTaskCompleteStatus}
|
||||
onStepClicked={onStepClicked}
|
||||
sectionId={SectionId.getSetUp}
|
||||
shadow=""
|
||||
stepsLeft={1}
|
||||
timeInMins={30}
|
||||
sectionId={SectionId.quickStart}
|
||||
/>
|
||||
);
|
||||
|
||||
const cardTitle = getByText('Introduction');
|
||||
const cardTitle = getByTestId(QuickStartSectionCardsId.watchTheOverviewVideo);
|
||||
expect(cardTitle).toBeInTheDocument();
|
||||
|
||||
const step = getByText('1 step left');
|
||||
expect(step).toBeInTheDocument();
|
||||
|
||||
const step1 = queryByText('Step 1');
|
||||
expect(step1).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should not render card when no active steps', () => {
|
||||
const { queryByText } = render(
|
||||
<CardItem
|
||||
activeProducts={new Set([])}
|
||||
activeStepIds={[]}
|
||||
cardId={GetSetUpCardId.introduction}
|
||||
cardId={QuickStartSectionCardsId.watchTheOverviewVideo}
|
||||
expandedCardSteps={expandedCardSteps}
|
||||
euiTheme={mockEuiTheme}
|
||||
finishedSteps={finishedSteps}
|
||||
onCardClicked={onCardStepClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
finishedSteps={new Set([])}
|
||||
toggleTaskCompleteStatus={toggleTaskCompleteStatus}
|
||||
onStepClicked={onStepClicked}
|
||||
sectionId={SectionId.getSetUp}
|
||||
shadow=""
|
||||
stepsLeft={1}
|
||||
timeInMins={30}
|
||||
sectionId={SectionId.quickStart}
|
||||
/>
|
||||
);
|
||||
|
||||
const cardTitle = queryByText('Introduction');
|
||||
expect(cardTitle).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should not render steps left information when all steps are done', () => {
|
||||
const mockFinishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
} as Record<CardId, Set<StepId>>;
|
||||
|
||||
const { getByText, queryByText } = render(
|
||||
<CardItem
|
||||
activeProducts={new Set([ProductLine.security])}
|
||||
activeStepIds={introductionSteps.map((step) => step.id)}
|
||||
cardId={GetSetUpCardId.introduction}
|
||||
sectionId={SectionId.getSetUp}
|
||||
expandedCardSteps={expandedCardSteps}
|
||||
euiTheme={mockEuiTheme}
|
||||
shadow=""
|
||||
stepsLeft={0}
|
||||
timeInMins={0}
|
||||
onCardClicked={onCardStepClicked}
|
||||
onStepClicked={onStepClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
finishedSteps={mockFinishedSteps}
|
||||
/>
|
||||
);
|
||||
|
||||
const cardTitle = getByText('Introduction');
|
||||
expect(cardTitle).toBeInTheDocument();
|
||||
|
||||
const step = queryByText('1 step left');
|
||||
expect(step).not.toBeInTheDocument();
|
||||
|
||||
const time = queryByText('• About 30 mins');
|
||||
expect(time).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should toggle step expansion on click', () => {
|
||||
const testCardTitle = 'Introduction';
|
||||
const { getByText } = render(
|
||||
<CardItem
|
||||
activeProducts={new Set([ProductLine.security])}
|
||||
activeStepIds={introductionSteps.map((step) => step.id)}
|
||||
expandedCardSteps={expandedCardSteps}
|
||||
cardId={GetSetUpCardId.introduction}
|
||||
sectionId={SectionId.getSetUp}
|
||||
euiTheme={mockEuiTheme}
|
||||
shadow=""
|
||||
stepsLeft={0}
|
||||
timeInMins={0}
|
||||
onCardClicked={onCardStepClicked}
|
||||
onStepClicked={onStepClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
finishedSteps={finishedSteps}
|
||||
/>
|
||||
);
|
||||
|
||||
const stepTitle = getByText(testCardTitle);
|
||||
fireEvent.click(stepTitle);
|
||||
|
||||
expect(onCardStepClicked).toHaveBeenCalledTimes(1);
|
||||
expect(onCardStepClicked).toHaveBeenCalledWith({
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
isExpanded: true,
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -5,144 +5,98 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiPanel, EuiText, EuiTitle } from '@elastic/eui';
|
||||
import type { EuiThemeComputed } from '@elastic/eui';
|
||||
import React, { useCallback, useMemo } from 'react';
|
||||
import { css } from '@emotion/react';
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiPanel } from '@elastic/eui';
|
||||
import React, { useMemo, useCallback } from 'react';
|
||||
import classnames from 'classnames';
|
||||
import type {
|
||||
CardId,
|
||||
ExpandedCardSteps,
|
||||
OnCardClicked,
|
||||
OnStepButtonClicked,
|
||||
ToggleTaskCompleteStatus,
|
||||
OnStepClicked,
|
||||
SectionId,
|
||||
StepId,
|
||||
} from './types';
|
||||
import * as i18n from './translations';
|
||||
import { CardStep } from './card_step';
|
||||
import { getCard } from './helpers';
|
||||
import type { ProductLine } from '../../common/product';
|
||||
import { CardStep } from './card_step';
|
||||
import { useCardItemStyles } from './styles/card_item.styles';
|
||||
|
||||
const CardItemComponent: React.FC<{
|
||||
activeProducts: Set<ProductLine>;
|
||||
activeStepIds: StepId[] | undefined;
|
||||
cardId: CardId;
|
||||
euiTheme: EuiThemeComputed;
|
||||
expandedCardSteps: ExpandedCardSteps;
|
||||
finishedSteps: Record<CardId, Set<StepId>>;
|
||||
onCardClicked: OnCardClicked;
|
||||
onStepButtonClicked: OnStepButtonClicked;
|
||||
finishedSteps: Set<StepId>;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
onStepClicked: OnStepClicked;
|
||||
sectionId: SectionId;
|
||||
shadow?: string;
|
||||
stepsLeft?: number;
|
||||
timeInMins?: number;
|
||||
}> = ({
|
||||
activeProducts,
|
||||
activeStepIds,
|
||||
cardId,
|
||||
euiTheme,
|
||||
expandedCardSteps,
|
||||
finishedSteps,
|
||||
onCardClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
sectionId,
|
||||
shadow,
|
||||
stepsLeft,
|
||||
timeInMins,
|
||||
}) => {
|
||||
const isExpandedCard = expandedCardSteps[cardId].isExpanded;
|
||||
|
||||
const cardItem = useMemo(() => getCard({ cardId, sectionId }), [cardId, sectionId]);
|
||||
const expandCard = expandedCardSteps[cardId]?.isExpanded ?? false;
|
||||
const expandedSteps = useMemo(
|
||||
() => new Set(expandedCardSteps[cardId]?.expandedSteps ?? []),
|
||||
[cardId, expandedCardSteps]
|
||||
);
|
||||
const toggleCard = useCallback(
|
||||
(e) => {
|
||||
e.preventDefault();
|
||||
const isExpanded = !expandCard;
|
||||
onCardClicked({ cardId, isExpanded });
|
||||
},
|
||||
[cardId, expandCard, onCardClicked]
|
||||
|
||||
const cardClassNames = classnames('card-item', {
|
||||
'card-expanded': isExpandedCard,
|
||||
});
|
||||
|
||||
const cardItemPanelStyle = useCardItemStyles();
|
||||
const getCardStep = useCallback(
|
||||
(stepId: StepId) => cardItem?.steps?.find((step) => step.id === stepId),
|
||||
[cardItem?.steps]
|
||||
);
|
||||
const hasActiveSteps = activeStepIds != null && activeStepIds.length > 0;
|
||||
return cardItem && hasActiveSteps ? (
|
||||
const steps = useMemo(
|
||||
() =>
|
||||
activeStepIds?.reduce<React.ReactElement[]>((acc, stepId) => {
|
||||
const step = getCardStep(stepId);
|
||||
if (step && cardItem) {
|
||||
acc.push(
|
||||
<CardStep
|
||||
cardId={cardItem.id}
|
||||
expandedSteps={expandedSteps}
|
||||
finishedSteps={finishedSteps}
|
||||
key={stepId}
|
||||
toggleTaskCompleteStatus={toggleTaskCompleteStatus}
|
||||
onStepClicked={onStepClicked}
|
||||
sectionId={sectionId}
|
||||
step={step}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return acc;
|
||||
}, []),
|
||||
[
|
||||
activeStepIds,
|
||||
cardItem,
|
||||
expandedSteps,
|
||||
finishedSteps,
|
||||
getCardStep,
|
||||
onStepClicked,
|
||||
sectionId,
|
||||
toggleTaskCompleteStatus,
|
||||
]
|
||||
);
|
||||
|
||||
return cardItem && activeStepIds ? (
|
||||
<EuiPanel
|
||||
className={cardClassNames}
|
||||
hasBorder
|
||||
paddingSize="none"
|
||||
css={css`
|
||||
${shadow ?? ''};
|
||||
padding: ${euiTheme.size.base} ${euiTheme.size.l} ${euiTheme.size.l};
|
||||
margin-bottom: ${euiTheme.size.xs};
|
||||
border-radius: ${euiTheme.size.xs};
|
||||
`}
|
||||
data-test-subj={`card-${cardItem.id}`}
|
||||
css={cardItemPanelStyle}
|
||||
borderRadius="none"
|
||||
data-test-subj={cardId}
|
||||
>
|
||||
<EuiFlexGroup gutterSize="s" direction="column">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiFlexGroup
|
||||
onClick={toggleCard}
|
||||
css={css`
|
||||
cursor: pointer;
|
||||
`}
|
||||
gutterSize="m"
|
||||
>
|
||||
<EuiFlexItem grow={false}>
|
||||
{cardItem.icon && (
|
||||
<EuiIcon {...cardItem.icon} size="xl" className="eui-alignMiddle" />
|
||||
)}
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={true}>
|
||||
<EuiTitle
|
||||
size="xxs"
|
||||
css={css`
|
||||
line-height: ${euiTheme.base * 2}px;
|
||||
`}
|
||||
>
|
||||
<h4>{cardItem.title}</h4>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
{(timeInMins != null || stepsLeft != null) && (
|
||||
<EuiFlexItem
|
||||
css={css`
|
||||
align-items: end;
|
||||
`}
|
||||
>
|
||||
<EuiText
|
||||
size="s"
|
||||
css={css`
|
||||
line-height: ${euiTheme.base * 2}px;
|
||||
`}
|
||||
>
|
||||
{stepsLeft != null && stepsLeft > 0 && (
|
||||
<strong>{i18n.STEPS_LEFT(stepsLeft)}</strong>
|
||||
)}
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
{expandCard && hasActiveSteps && (
|
||||
<EuiFlexItem>
|
||||
{[...activeStepIds].map((stepId) => {
|
||||
return (
|
||||
<CardStep
|
||||
activeProducts={activeProducts}
|
||||
cardId={cardItem.id}
|
||||
expandedSteps={expandedSteps}
|
||||
finishedStepsByCard={finishedSteps[cardItem.id]}
|
||||
key={stepId}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
onStepClicked={onStepClicked}
|
||||
sectionId={sectionId}
|
||||
stepId={stepId}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
<EuiFlexItem>{steps}</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiPanel>
|
||||
) : null;
|
||||
|
|
|
@ -8,29 +8,59 @@ import React from 'react';
|
|||
import { render, fireEvent } from '@testing-library/react';
|
||||
import { CardStep } from '.';
|
||||
import type { StepId } from '../types';
|
||||
import { GetSetUpCardId, IntroductionSteps, SectionId } from '../types';
|
||||
import { ProductLine } from '../../../common/product';
|
||||
|
||||
import {
|
||||
EnablePrebuiltRulesSteps,
|
||||
GetStartedWithAlertsCardsId,
|
||||
QuickStartSectionCardsId,
|
||||
SectionId,
|
||||
OverviewSteps,
|
||||
CreateProjectSteps,
|
||||
} from '../types';
|
||||
import { ALL_DONE_TEXT } from '../translations';
|
||||
import { fetchRuleManagementFilters } from '../apis';
|
||||
import { createProjectSteps, enablePrebuildRuleSteps, overviewVideoSteps } from '../sections';
|
||||
|
||||
jest.mock('./step_content', () => ({
|
||||
StepContent: () => <div data-test-subj="mock-step-content" />,
|
||||
}));
|
||||
|
||||
jest.mock('../context/step_context');
|
||||
jest.mock('../apis');
|
||||
|
||||
jest.mock('../../common/services');
|
||||
|
||||
jest.mock('@kbn/security-solution-plugin/public', () => ({
|
||||
useSourcererDataView: jest.fn().mockReturnValue({ indicesExist: false }),
|
||||
}));
|
||||
|
||||
jest.mock('@kbn/security-solution-navigation', () => ({
|
||||
useNavigateTo: jest.fn().mockReturnValue({ navigateTo: jest.fn() }),
|
||||
SecurityPageName: {
|
||||
landing: 'landing',
|
||||
},
|
||||
}));
|
||||
|
||||
describe('CardStepComponent', () => {
|
||||
const step = {
|
||||
id: IntroductionSteps.getToKnowElasticSecurity,
|
||||
};
|
||||
|
||||
const onStepClicked = jest.fn();
|
||||
const onStepButtonClicked = jest.fn();
|
||||
const expandedSteps = new Set([IntroductionSteps.getToKnowElasticSecurity]);
|
||||
const toggleTaskCompleteStatus = jest.fn();
|
||||
const expandedSteps = new Set([]);
|
||||
|
||||
const props = {
|
||||
activeProducts: new Set([ProductLine.security]),
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
expandedSteps,
|
||||
finishedStepsByCard: new Set<StepId>(),
|
||||
onStepButtonClicked,
|
||||
finishedSteps: new Set<StepId>(),
|
||||
isExpandedCard: true,
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
sectionId: SectionId.getSetUp,
|
||||
stepId: step.id,
|
||||
sectionId: SectionId.quickStart,
|
||||
step: overviewVideoSteps[0],
|
||||
};
|
||||
const testStepTitle = 'Get to know Elastic Security';
|
||||
const testStepTitle = 'Watch the overview video';
|
||||
|
||||
beforeEach(() => {
|
||||
jest.clearAllMocks();
|
||||
});
|
||||
|
||||
it('should toggle step expansion on click', () => {
|
||||
const { getByText } = render(<CardStep {...props} />);
|
||||
|
@ -40,54 +70,64 @@ describe('CardStepComponent', () => {
|
|||
|
||||
expect(onStepClicked).toHaveBeenCalledTimes(1);
|
||||
expect(onStepClicked).toHaveBeenCalledWith({
|
||||
sectionId: SectionId.getSetUp,
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
isExpanded: false,
|
||||
sectionId: SectionId.quickStart,
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
isExpanded: true,
|
||||
});
|
||||
});
|
||||
|
||||
it('should render step title, badges, and description when expanded', () => {
|
||||
const { getByText, getByTestId } = render(<CardStep {...props} />);
|
||||
it('should render step content when expanded', () => {
|
||||
const mockProps = {
|
||||
...props,
|
||||
expandedSteps: new Set([
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
]) as unknown as Set<StepId>,
|
||||
};
|
||||
const { getByTestId } = render(<CardStep {...mockProps} />);
|
||||
|
||||
const stepTitle = getByText(testStepTitle);
|
||||
const content = getByTestId('mock-step-content');
|
||||
|
||||
expect(content).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should not toggle step expansion on click when there is no content', () => {
|
||||
const mockProps = {
|
||||
...props,
|
||||
stepId: CreateProjectSteps.createFirstProject,
|
||||
cardId: QuickStartSectionCardsId.createFirstProject,
|
||||
finishedSteps: new Set<StepId>([CreateProjectSteps.createFirstProject]),
|
||||
step: { ...createProjectSteps[0], description: undefined, splitPanel: undefined },
|
||||
};
|
||||
const { getByText } = render(<CardStep {...mockProps} />);
|
||||
|
||||
const stepTitle = getByText('Create your first project');
|
||||
fireEvent.click(stepTitle);
|
||||
|
||||
const badge1 = getByText('Analytics');
|
||||
const badge2 = getByText('Cloud');
|
||||
const badge3 = getByText('EDR');
|
||||
expect(badge1).toBeInTheDocument();
|
||||
expect(badge2).toBeInTheDocument();
|
||||
expect(badge3).toBeInTheDocument();
|
||||
|
||||
const description1 = getByTestId(`${IntroductionSteps.getToKnowElasticSecurity}-description-0`);
|
||||
const description2 = getByTestId(`${IntroductionSteps.getToKnowElasticSecurity}-description-1`);
|
||||
expect(description1).toBeInTheDocument();
|
||||
expect(description2).toBeInTheDocument();
|
||||
expect(onStepClicked).toHaveBeenCalledTimes(0);
|
||||
});
|
||||
|
||||
it('should render expended steps', () => {
|
||||
const { getByTestId } = render(<CardStep {...props} />);
|
||||
it('should not show the step as completed when it is not', () => {
|
||||
const { queryByText } = render(<CardStep {...props} />);
|
||||
|
||||
const splitPanel = getByTestId('split-panel');
|
||||
expect(splitPanel).toBeInTheDocument();
|
||||
const text = queryByText(ALL_DONE_TEXT);
|
||||
expect(text).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render collapsed steps', () => {
|
||||
const { queryByTestId } = render(<CardStep {...props} expandedSteps={new Set()} />);
|
||||
it('should show the step as completed when it is done', async () => {
|
||||
(fetchRuleManagementFilters as jest.Mock).mockResolvedValue({
|
||||
total: 1,
|
||||
});
|
||||
const mockProps = {
|
||||
...props,
|
||||
cardId: GetStartedWithAlertsCardsId.enablePrebuiltRules,
|
||||
finishedSteps: new Set<StepId>([EnablePrebuiltRulesSteps.enablePrebuiltRules]),
|
||||
sectionId: SectionId.getStartedWithAlerts,
|
||||
step: enablePrebuildRuleSteps[0],
|
||||
};
|
||||
const { queryByText } = render(<CardStep {...mockProps} />);
|
||||
|
||||
const splitPanel = queryByTestId('split-panel');
|
||||
expect(splitPanel).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render check icon when stepId is in finishedStepsByCard', () => {
|
||||
const finishedStepsByCard = new Set([IntroductionSteps.getToKnowElasticSecurity]);
|
||||
|
||||
const { getByTestId } = render(
|
||||
<CardStep {...props} finishedStepsByCard={finishedStepsByCard} />
|
||||
);
|
||||
|
||||
const checkIcon = getByTestId(`${step.id}-icon`);
|
||||
expect(checkIcon.getAttribute('data-euiicon-type')).toEqual('checkInCircleFilled');
|
||||
const text = queryByText(ALL_DONE_TEXT);
|
||||
expect(text).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -11,78 +11,103 @@ import {
|
|||
EuiFlexItem,
|
||||
EuiIcon,
|
||||
EuiBadge,
|
||||
useEuiTheme,
|
||||
EuiButtonEmpty,
|
||||
useEuiBackgroundColorCSS,
|
||||
EuiButtonIcon,
|
||||
} from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import React, { useCallback, useMemo } from 'react';
|
||||
import React, { useCallback } from 'react';
|
||||
|
||||
import classnames from 'classnames';
|
||||
import type { CardId, OnStepButtonClicked, OnStepClicked, SectionId, StepId } from '../types';
|
||||
import icon_step from '../images/icon_step.svg';
|
||||
import icon_cross from '../images/icon_cross.svg';
|
||||
import { UNDO_MARK_AS_DONE_TITLE, MARK_AS_DONE_TITLE } from '../translations';
|
||||
import { getStepsByActiveProduct } from '../helpers';
|
||||
import type { ProductLine } from '../../../common/product';
|
||||
import { getProductBadges } from '../badge';
|
||||
import { useNavigateTo, SecurityPageName } from '@kbn/security-solution-navigation';
|
||||
|
||||
import type {
|
||||
CardId,
|
||||
OnStepClicked,
|
||||
ToggleTaskCompleteStatus,
|
||||
SectionId,
|
||||
StepId,
|
||||
Step,
|
||||
} from '../types';
|
||||
import {
|
||||
ALL_DONE_TEXT,
|
||||
COLLAPSE_STEP_BUTTON_LABEL,
|
||||
EXPAND_STEP_BUTTON_LABEL,
|
||||
} from '../translations';
|
||||
|
||||
import { StepContent } from './step_content';
|
||||
import { useCheckStepCompleted } from '../hooks/use_check_step_completed';
|
||||
import { useStepContext } from '../context/step_context';
|
||||
import { useCardStepStyles } from '../styles/card_step.styles';
|
||||
|
||||
const CardStepComponent: React.FC<{
|
||||
activeProducts: Set<ProductLine>;
|
||||
cardId: CardId;
|
||||
expandedSteps: Set<StepId>;
|
||||
finishedStepsByCard: Set<StepId>;
|
||||
onStepButtonClicked: OnStepButtonClicked;
|
||||
finishedSteps: Set<StepId>;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
onStepClicked: OnStepClicked;
|
||||
sectionId: SectionId;
|
||||
stepId: StepId;
|
||||
step: Step;
|
||||
}> = ({
|
||||
activeProducts,
|
||||
cardId,
|
||||
expandedSteps,
|
||||
finishedStepsByCard = new Set(),
|
||||
onStepButtonClicked,
|
||||
finishedSteps = new Set(),
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
sectionId,
|
||||
stepId,
|
||||
step,
|
||||
}) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const backgroundColorStyles = useEuiBackgroundColorCSS();
|
||||
const isExpandedStep = expandedSteps.has(stepId);
|
||||
const steps = useMemo(
|
||||
() => getStepsByActiveProduct({ activeProducts, cardId, sectionId }),
|
||||
[activeProducts, cardId, sectionId]
|
||||
);
|
||||
const { title, productLineRequired, description, splitPanel } =
|
||||
steps?.find((step) => step.id === stepId) ?? {};
|
||||
const { navigateTo } = useNavigateTo();
|
||||
|
||||
const badges = useMemo(() => getProductBadges(productLineRequired), [productLineRequired]);
|
||||
const isExpandedStep = expandedSteps.has(step.id);
|
||||
|
||||
const { id: stepId, title, description, splitPanel, icon, autoCheckIfStepCompleted } = step;
|
||||
const hasStepContent = description != null || splitPanel != null;
|
||||
const { indicesExist } = useStepContext();
|
||||
|
||||
useCheckStepCompleted({
|
||||
autoCheckIfStepCompleted,
|
||||
cardId,
|
||||
indicesExist,
|
||||
sectionId,
|
||||
stepId,
|
||||
stepTitle: title,
|
||||
toggleTaskCompleteStatus,
|
||||
});
|
||||
|
||||
const isDone = finishedSteps.has(stepId);
|
||||
|
||||
const toggleStep = useCallback(
|
||||
(e) => {
|
||||
e.preventDefault();
|
||||
const newState = !isExpandedStep;
|
||||
onStepClicked({ stepId, cardId, sectionId, isExpanded: newState });
|
||||
|
||||
if (hasStepContent) {
|
||||
// Toggle step and sync the expanded card step to storage & reducer
|
||||
onStepClicked({ stepId, cardId, sectionId, isExpanded: !isExpandedStep });
|
||||
|
||||
navigateTo({
|
||||
deepLinkId: SecurityPageName.landing,
|
||||
path: `#${stepId}`,
|
||||
});
|
||||
}
|
||||
},
|
||||
[cardId, isExpandedStep, onStepClicked, sectionId, stepId]
|
||||
[hasStepContent, onStepClicked, stepId, cardId, sectionId, isExpandedStep, navigateTo]
|
||||
);
|
||||
|
||||
const isDone = finishedStepsByCard.has(stepId);
|
||||
|
||||
const hasStepContent = description != null || splitPanel != null;
|
||||
|
||||
const handleStepButtonClicked = useCallback(
|
||||
(e) => {
|
||||
e.preventDefault();
|
||||
onStepButtonClicked({ stepId, cardId, sectionId, undo: isDone ? true : false });
|
||||
},
|
||||
[cardId, isDone, onStepButtonClicked, sectionId, stepId]
|
||||
);
|
||||
const {
|
||||
stepPanelStyles,
|
||||
stepIconStyles,
|
||||
stepTitleStyles,
|
||||
allDoneTextStyles,
|
||||
toggleButtonStyles,
|
||||
getStepGroundStyles,
|
||||
stepItemStyles,
|
||||
} = useCardStepStyles();
|
||||
const stepGroundStyles = getStepGroundStyles({ hasStepContent });
|
||||
|
||||
const panelClassNames = classnames({
|
||||
'step-panel-collapsed': !isExpandedStep,
|
||||
'step-panel-expanded': isExpandedStep,
|
||||
});
|
||||
|
||||
const stepIconClassNames = classnames('step-icon', {
|
||||
'step-icon-done': isDone,
|
||||
});
|
||||
|
||||
return (
|
||||
|
@ -93,108 +118,54 @@ const CardStepComponent: React.FC<{
|
|||
borderRadius="none"
|
||||
paddingSize="none"
|
||||
className={panelClassNames}
|
||||
css={css`
|
||||
padding: ${euiTheme.size.base};
|
||||
margin: 0 ${euiTheme.size.s} 0;
|
||||
|
||||
&.step-panel-collapsed:hover {
|
||||
${backgroundColorStyles.primary};
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
}
|
||||
`}
|
||||
id={stepId}
|
||||
css={stepPanelStyles}
|
||||
>
|
||||
<EuiFlexGroup
|
||||
gutterSize="s"
|
||||
css={css`
|
||||
cursor: pointer;
|
||||
`}
|
||||
>
|
||||
<EuiFlexItem grow={false} onClick={toggleStep}>
|
||||
<EuiIcon
|
||||
data-test-subj={`${stepId}-icon`}
|
||||
type={isDone ? 'checkInCircleFilled' : icon_step}
|
||||
size="l"
|
||||
color={euiTheme.colors.success}
|
||||
/>
|
||||
<EuiFlexGroup gutterSize="none" css={stepGroundStyles}>
|
||||
<EuiFlexItem grow={false} onClick={toggleStep} css={stepItemStyles}>
|
||||
<span className={stepIconClassNames} css={stepIconStyles}>
|
||||
{icon && <EuiIcon {...icon} size="l" className="eui-alignMiddle" />}
|
||||
</span>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={1} onClick={toggleStep}>
|
||||
<strong>
|
||||
<span
|
||||
css={css`
|
||||
padding-right: ${euiTheme.size.m};
|
||||
line-height: ${euiTheme.size.l};
|
||||
font-size: ${euiTheme.size.m};
|
||||
vertical-align: middle;
|
||||
`}
|
||||
>
|
||||
{title}
|
||||
</span>
|
||||
{badges.map((badge) => (
|
||||
<EuiBadge
|
||||
key={`${stepId}-badge-${badge.id}`}
|
||||
color="hollow"
|
||||
css={css`
|
||||
margin: 0 ${euiTheme.size.s} 0 0;
|
||||
`}
|
||||
>
|
||||
{badge.name}
|
||||
</EuiBadge>
|
||||
))}
|
||||
</strong>
|
||||
<EuiFlexItem grow={1} onClick={toggleStep} css={stepItemStyles}>
|
||||
<span className="step-title" css={stepTitleStyles}>
|
||||
{title}
|
||||
</span>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem
|
||||
grow={false}
|
||||
css={css`
|
||||
align-items: end;
|
||||
`}
|
||||
>
|
||||
<EuiFlexItem grow={false} css={stepItemStyles}>
|
||||
<div>
|
||||
{isExpandedStep && (
|
||||
<EuiButtonEmpty
|
||||
color="primary"
|
||||
iconType={isDone ? icon_cross : 'checkInCircleFilled'}
|
||||
size="xs"
|
||||
css={css`
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
border: 1px solid ${euiTheme.colors.lightShade};
|
||||
.euiIcon {
|
||||
inline-size: ${euiTheme.size.m};
|
||||
}
|
||||
`}
|
||||
onClick={handleStepButtonClicked}
|
||||
>
|
||||
{isDone ? UNDO_MARK_AS_DONE_TITLE : MARK_AS_DONE_TITLE}
|
||||
</EuiButtonEmpty>
|
||||
{isDone && (
|
||||
<EuiBadge className="all-done-badge" css={allDoneTextStyles} color="success">
|
||||
{ALL_DONE_TEXT}
|
||||
</EuiBadge>
|
||||
)}
|
||||
{/* Use button here to avoid styles added by EUI*/}
|
||||
<button
|
||||
className="eui-displayInlineBlock"
|
||||
css={css`
|
||||
padding: ${euiTheme.size.xs} ${euiTheme.base * 0.375}px;
|
||||
margin-left: ${euiTheme.base * 0.375}px;
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
color: ${euiTheme.colors.darkShade};
|
||||
.step-panel-expanded &:hover,
|
||||
.step-panel-expanded &:active,
|
||||
.step-panel-expanded &:focus {
|
||||
${backgroundColorStyles.primary};
|
||||
}
|
||||
`}
|
||||
<EuiButtonIcon
|
||||
className="eui-displayInlineBlock toggle-button"
|
||||
color="primary"
|
||||
onClick={toggleStep}
|
||||
type="button"
|
||||
>
|
||||
<EuiIcon size="s" type={isExpandedStep ? 'arrowDown' : 'arrowRight'} />
|
||||
</button>
|
||||
iconType={isExpandedStep ? 'arrowUp' : 'arrowDown'}
|
||||
aria-label={isExpandedStep ? COLLAPSE_STEP_BUTTON_LABEL : EXPAND_STEP_BUTTON_LABEL}
|
||||
size="xs"
|
||||
css={toggleButtonStyles}
|
||||
isDisabled={!hasStepContent}
|
||||
/>
|
||||
</div>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<StepContent
|
||||
description={description}
|
||||
hasStepContent={hasStepContent}
|
||||
isExpandedStep={isExpandedStep}
|
||||
splitPanel={splitPanel}
|
||||
stepId={stepId}
|
||||
/>
|
||||
{hasStepContent && (
|
||||
<div className="stepContentWrapper">
|
||||
<div className="stepContent">
|
||||
<StepContent
|
||||
autoCheckIfStepCompleted={isExpandedStep ? autoCheckIfStepCompleted : undefined}
|
||||
cardId={cardId}
|
||||
indicesExist={indicesExist}
|
||||
sectionId={sectionId}
|
||||
step={step}
|
||||
toggleTaskCompleteStatus={toggleTaskCompleteStatus}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</EuiPanel>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { WATCH_VIDEO_DESCRIPTION1, WATCH_VIDEO_DESCRIPTION2 } from '../translations';
|
||||
|
||||
const OverviewVideoDescriptionComponent = () => (
|
||||
<>
|
||||
<span className="eui-displayInlineBlock">{WATCH_VIDEO_DESCRIPTION1}</span>
|
||||
<span className="eui-displayInlineBlock step-paragraph">{WATCH_VIDEO_DESCRIPTION2}</span>
|
||||
</>
|
||||
);
|
||||
|
||||
export const OverviewVideoDescription = React.memo(OverviewVideoDescriptionComponent);
|
|
@ -7,43 +7,38 @@
|
|||
import React from 'react';
|
||||
import { render } from '@testing-library/react';
|
||||
import { StepContent } from './step_content';
|
||||
import { QuickStartSectionCardsId, SectionId } from '../types';
|
||||
import { overviewVideoSteps } from '../sections';
|
||||
|
||||
jest.mock('../context/step_context');
|
||||
jest.mock('../../common/services');
|
||||
|
||||
describe('StepContent', () => {
|
||||
it('renders nothing when hasStepContent is false', () => {
|
||||
const { container } = render(
|
||||
<StepContent hasStepContent={false} isExpandedStep={true} stepId="test-step" />
|
||||
);
|
||||
const toggleTaskCompleteStatus = jest.fn();
|
||||
|
||||
expect(container.firstChild).toBeNull();
|
||||
});
|
||||
const props = {
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
indicesExist: false,
|
||||
sectionId: SectionId.quickStart,
|
||||
step: overviewVideoSteps[0],
|
||||
toggleTaskCompleteStatus,
|
||||
};
|
||||
|
||||
it('renders step content when hasStepContent is true and isExpandedStep is true', () => {
|
||||
const description = ['Description Line 1', 'Description Line 2'];
|
||||
const splitPanel = <div>{'Split Panel Content'}</div>;
|
||||
const { getByTestId, getByText } = render(
|
||||
<StepContent
|
||||
hasStepContent={true}
|
||||
isExpandedStep={true}
|
||||
stepId="test-step"
|
||||
description={description}
|
||||
splitPanel={splitPanel}
|
||||
/>
|
||||
);
|
||||
const mockProps = { ...props, hasStepContent: true, isExpandedStep: true };
|
||||
const { getByTestId, getByText } = render(<StepContent {...mockProps} />);
|
||||
|
||||
const splitPanelElement = getByTestId('split-panel');
|
||||
|
||||
expect(getByText('Description Line 1')).toBeInTheDocument();
|
||||
expect(getByText('Description Line 2')).toBeInTheDocument();
|
||||
expect(
|
||||
getByText(
|
||||
'Elastic Security unifies analytics, EDR, cloud security capabilities, and more into a SaaS solution that helps you improve your organization’s security posture, defend against a wide range of threats, and prevent breaches.'
|
||||
)
|
||||
).toBeInTheDocument();
|
||||
expect(
|
||||
getByText('To explore the platform’s core features, watch the video:')
|
||||
).toBeInTheDocument();
|
||||
|
||||
expect(splitPanelElement).toBeInTheDocument();
|
||||
expect(splitPanelElement).toHaveTextContent('Split Panel Content');
|
||||
});
|
||||
|
||||
it('renders nothing when hasStepContent is true but isExpandedStep is false', () => {
|
||||
const { container } = render(
|
||||
<StepContent hasStepContent={true} isExpandedStep={false} stepId="test-step" />
|
||||
);
|
||||
|
||||
expect(container.firstChild).toBeNull();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -5,97 +5,92 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiFlexGroup, EuiFlexItem, useEuiTheme, useEuiShadow, EuiText } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiText } from '@elastic/eui';
|
||||
import React from 'react';
|
||||
|
||||
const LEFT_CONTENT_PANEL_WIDTH = 486;
|
||||
const RIGHT_CONTENT_PANEL_WIDTH = 510;
|
||||
const RIGHT_CONTENT_HEIGHT = 270;
|
||||
const RIGHT_CONTENT_WIDTH = 480;
|
||||
import { useCheckStepCompleted } from '../hooks/use_check_step_completed';
|
||||
import { useStepContentStyles } from '../styles/step_content.styles';
|
||||
import type {
|
||||
CardId,
|
||||
CheckIfStepCompleted,
|
||||
SectionId,
|
||||
Step,
|
||||
ToggleTaskCompleteStatus,
|
||||
} from '../types';
|
||||
|
||||
const StepContentComponent = ({
|
||||
description,
|
||||
hasStepContent,
|
||||
isExpandedStep,
|
||||
splitPanel,
|
||||
stepId,
|
||||
autoCheckIfStepCompleted,
|
||||
cardId,
|
||||
indicesExist,
|
||||
sectionId,
|
||||
step,
|
||||
toggleTaskCompleteStatus,
|
||||
}: {
|
||||
description?: React.ReactNode[];
|
||||
hasStepContent: boolean;
|
||||
isExpandedStep: boolean;
|
||||
splitPanel?: React.ReactNode;
|
||||
stepId: string;
|
||||
autoCheckIfStepCompleted?: CheckIfStepCompleted;
|
||||
cardId: CardId;
|
||||
indicesExist: boolean;
|
||||
sectionId: SectionId;
|
||||
step: Step;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
}) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const shadow = useEuiShadow('s');
|
||||
const { id: stepId, splitPanel } = step;
|
||||
const {
|
||||
stepContentGroupStyles,
|
||||
leftContentStyles,
|
||||
descriptionStyles,
|
||||
rightPanelStyles,
|
||||
rightPanelContentStyles,
|
||||
} = useStepContentStyles();
|
||||
|
||||
return hasStepContent && isExpandedStep ? (
|
||||
<>
|
||||
<EuiFlexGroup
|
||||
color="plain"
|
||||
css={css`
|
||||
margin-top: 20px;
|
||||
margin-left: ${euiTheme.size.l};
|
||||
transition: opacity ${euiTheme.animation.normal};
|
||||
overflow: hidden;
|
||||
`}
|
||||
data-test-subj={`${stepId}-content`}
|
||||
direction="row"
|
||||
gutterSize="none"
|
||||
>
|
||||
{description && (
|
||||
<EuiFlexItem
|
||||
grow={false}
|
||||
css={css`
|
||||
padding: 0 ${euiTheme.size.l} 0 ${euiTheme.size.s};
|
||||
width: ${LEFT_CONTENT_PANEL_WIDTH}px;
|
||||
`}
|
||||
>
|
||||
<EuiText size="s">
|
||||
{description?.map((desc, index) => (
|
||||
<p
|
||||
data-test-subj={`${stepId}-description-${index}`}
|
||||
key={`${stepId}-description-${index}`}
|
||||
className="eui-displayBlock"
|
||||
css={css`
|
||||
margin-bottom: ${euiTheme.base * 2}px;
|
||||
margin-block-end: ${euiTheme.base * 2}px !important;
|
||||
line-height: ${euiTheme.size.l};
|
||||
`}
|
||||
>
|
||||
{desc}
|
||||
</p>
|
||||
))}
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
{splitPanel && (
|
||||
<EuiFlexItem
|
||||
grow={false}
|
||||
data-test-subj="split-panel"
|
||||
css={css`
|
||||
padding: 0 6px 0 ${euiTheme.size.l};
|
||||
width: ${RIGHT_CONTENT_PANEL_WIDTH}px;
|
||||
`}
|
||||
>
|
||||
{splitPanel && (
|
||||
useCheckStepCompleted({
|
||||
autoCheckIfStepCompleted,
|
||||
cardId,
|
||||
indicesExist,
|
||||
sectionId,
|
||||
stepId,
|
||||
stepTitle: step.title,
|
||||
toggleTaskCompleteStatus,
|
||||
});
|
||||
|
||||
return (
|
||||
<EuiFlexGroup
|
||||
color="plain"
|
||||
className="step-content-group"
|
||||
css={stepContentGroupStyles}
|
||||
data-test-subj={`${stepId}-content`}
|
||||
direction="row"
|
||||
gutterSize="none"
|
||||
>
|
||||
{step.description && (
|
||||
<EuiFlexItem grow={false} css={leftContentStyles} className="left-panel">
|
||||
<EuiText size="s">
|
||||
{step.description.map((desc, index) => (
|
||||
<div
|
||||
css={css`
|
||||
height: ${RIGHT_CONTENT_HEIGHT}px;
|
||||
width: ${RIGHT_CONTENT_WIDTH}px;
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
overflow: hidden;
|
||||
box-shadow: ${shadow};
|
||||
`}
|
||||
data-test-subj={`${stepId}-description-${index}`}
|
||||
key={`${stepId}-description-${index}`}
|
||||
className="eui-displayBlock step-content-description"
|
||||
css={descriptionStyles}
|
||||
>
|
||||
{splitPanel}
|
||||
{desc}
|
||||
</div>
|
||||
)}
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
</>
|
||||
) : null;
|
||||
))}
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
{splitPanel && (
|
||||
<EuiFlexItem
|
||||
grow={false}
|
||||
data-test-subj="split-panel"
|
||||
className="right-panel"
|
||||
css={rightPanelStyles}
|
||||
>
|
||||
{splitPanel && (
|
||||
<div className="right-content-panel" css={rightPanelContentStyles}>
|
||||
{splitPanel}
|
||||
</div>
|
||||
)}
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
);
|
||||
};
|
||||
export const StepContent = React.memo(StepContentComponent);
|
||||
|
|
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiIcon, useEuiTheme } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import React, { useCallback, useMemo } from 'react';
|
||||
import { useStepContext } from '../context/step_context';
|
||||
import { WATCH_VIDEO_BUTTON_TITLE } from '../translations';
|
||||
import { OverviewSteps, QuickStartSectionCardsId, SectionId } from '../types';
|
||||
|
||||
const VideoComponent: React.FC = () => {
|
||||
const { toggleTaskCompleteStatus, finishedSteps } = useStepContext();
|
||||
const ref = React.useRef<HTMLIFrameElement>(null);
|
||||
const [isVideoPlaying, setIsVideoPlaying] = React.useState(false);
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const cardId = QuickStartSectionCardsId.watchTheOverviewVideo;
|
||||
const isFinishedStep = useMemo(
|
||||
() => finishedSteps[cardId]?.has(OverviewSteps.getToKnowElasticSecurity),
|
||||
[finishedSteps, cardId]
|
||||
);
|
||||
|
||||
const onVideoClicked = useCallback(() => {
|
||||
toggleTaskCompleteStatus({
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
sectionId: SectionId.quickStart,
|
||||
undo: false,
|
||||
});
|
||||
setIsVideoPlaying(true);
|
||||
}, [toggleTaskCompleteStatus]);
|
||||
|
||||
return (
|
||||
<div
|
||||
css={css`
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
`}
|
||||
>
|
||||
{!isVideoPlaying && !isFinishedStep && (
|
||||
<EuiFlexGroup
|
||||
css={css`
|
||||
background-color: ${euiTheme.colors.fullShade};
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
`}
|
||||
gutterSize="none"
|
||||
justifyContent="center"
|
||||
alignItems="center"
|
||||
onClick={onVideoClicked}
|
||||
>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiIcon type="playFilled" size="xxl" color={euiTheme.colors.emptyShade} />
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
)}
|
||||
{(isVideoPlaying || isFinishedStep) && (
|
||||
<iframe
|
||||
ref={ref}
|
||||
allowFullScreen
|
||||
className="vidyard_iframe"
|
||||
frameBorder="0"
|
||||
height="100%"
|
||||
width="100%"
|
||||
referrerPolicy="no-referrer"
|
||||
sandbox="allow-scripts allow-same-origin"
|
||||
scrolling="no"
|
||||
allow={isVideoPlaying ? 'autoplay;' : undefined}
|
||||
src={`//play.vidyard.com/K6kKDBbP9SpXife9s2tHNP.html${
|
||||
isVideoPlaying ? '?autoplay=1' : ''
|
||||
}`}
|
||||
title={WATCH_VIDEO_BUTTON_TITLE}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export const Video = React.memo(VideoComponent);
|
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { defaultExpandedCards } from '../../storage';
|
||||
import { CreateProjectSteps, QuickStartSectionCardsId } from '../../types';
|
||||
|
||||
export const StepContextProvider = ({ children }: { children: React.ReactElement }) => (
|
||||
<>{children}</>
|
||||
);
|
||||
|
||||
export const useStepContext = () => {
|
||||
return {
|
||||
expandedCardSteps: defaultExpandedCards,
|
||||
finishedSteps: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
},
|
||||
onStepClicked: jest.fn(),
|
||||
toggleTaskCompleteStatus: jest.fn(),
|
||||
};
|
||||
};
|
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import type {
|
||||
ToggleTaskCompleteStatus,
|
||||
CardId,
|
||||
StepId,
|
||||
ExpandedCardSteps,
|
||||
OnStepClicked,
|
||||
} from '../types';
|
||||
|
||||
export interface StepContextType {
|
||||
expandedCardSteps: ExpandedCardSteps;
|
||||
finishedSteps: Record<CardId, Set<StepId>>;
|
||||
indicesExist: boolean;
|
||||
onStepClicked: OnStepClicked;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
}
|
||||
|
||||
const StepContext = React.createContext<StepContextType | null>(null);
|
||||
|
||||
export const StepContextProvider: React.FC<StepContextType> = ({ children, ...others }) => {
|
||||
return <StepContext.Provider value={others}>{children}</StepContext.Provider>;
|
||||
};
|
||||
|
||||
export const useStepContext = () => {
|
||||
const context = React.useContext(StepContext);
|
||||
if (!context) {
|
||||
throw new Error('useStepContext must be used within a StepContextProvider');
|
||||
}
|
||||
return context;
|
||||
};
|
|
@ -10,16 +10,33 @@ import { GetStartedComponent } from './get_started';
|
|||
import type { SecurityProductTypes } from '../../common/config';
|
||||
|
||||
jest.mock('./toggle_panel');
|
||||
jest.mock('./welcome_panel');
|
||||
jest.mock('../common/services');
|
||||
jest.mock('@elastic/eui', () => {
|
||||
const original = jest.requireActual('@elastic/eui');
|
||||
return {
|
||||
...original,
|
||||
useEuiTheme: jest.fn().mockReturnValue({
|
||||
euiTheme: { base: 16, size: { xs: '4px' } },
|
||||
euiTheme: {
|
||||
base: 16,
|
||||
size: { xs: '4px', m: '12px', l: '24px', xl: '32px', xxl: '40px' },
|
||||
colors: { lightestShade: '' },
|
||||
font: {
|
||||
weight: { bold: 700 },
|
||||
},
|
||||
},
|
||||
}),
|
||||
};
|
||||
});
|
||||
jest.mock('react-router-dom', () => ({
|
||||
useLocation: jest.fn().mockReturnValue({ hash: '#watch_the_overview_video' }),
|
||||
}));
|
||||
jest.mock('../common/hooks/use_user_name');
|
||||
jest.mock('@kbn/security-solution-navigation', () => ({
|
||||
useNavigateTo: jest.fn().mockReturnValue({ navigateTo: jest.fn() }),
|
||||
SecurityPageName: {
|
||||
landing: 'landing',
|
||||
},
|
||||
}));
|
||||
|
||||
const productTypes = [
|
||||
{ product_line: 'security', product_tier: 'essentials' },
|
||||
|
@ -31,10 +48,10 @@ describe('GetStartedComponent', () => {
|
|||
it('should render page title, subtitle, and description', () => {
|
||||
const { getByText } = render(<GetStartedComponent productTypes={productTypes} />);
|
||||
|
||||
const pageTitle = getByText('Welcome!');
|
||||
const subtitle = getByText(`Let's get started`);
|
||||
const pageTitle = getByText('Hi mocked_user_name!');
|
||||
const subtitle = getByText(`Get started with Security`);
|
||||
const description = getByText(
|
||||
`Set up your Elastic Security workspace. Use the toggles below to curate a list of tasks that best fits your environment`
|
||||
`This area shows you everything you need to know. Feel free to explore all content. You can always come back later at any time.`
|
||||
);
|
||||
|
||||
expect(pageTitle).toBeInTheDocument();
|
||||
|
@ -42,21 +59,13 @@ describe('GetStartedComponent', () => {
|
|||
expect(description).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render Product Switch', () => {
|
||||
it('should render welcomeHeader and TogglePanel', () => {
|
||||
const { getByTestId } = render(<GetStartedComponent productTypes={productTypes} />);
|
||||
|
||||
const productSwitch = getByTestId('product-switch');
|
||||
|
||||
expect(productSwitch).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render WelcomePanel and TogglePanel', () => {
|
||||
const { getByTestId } = render(<GetStartedComponent productTypes={productTypes} />);
|
||||
|
||||
const welcomePanel = getByTestId('welcome-panel');
|
||||
const welcomeHeader = getByTestId('welcome-header');
|
||||
const togglePanel = getByTestId('toggle-panel');
|
||||
|
||||
expect(welcomePanel).toBeInTheDocument();
|
||||
expect(welcomeHeader).toBeInTheDocument();
|
||||
expect(togglePanel).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -5,37 +5,30 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiTitle, useEuiTheme, useEuiShadow, EuiSpacer } from '@elastic/eui';
|
||||
import { useEuiTheme } from '@elastic/eui';
|
||||
import React from 'react';
|
||||
import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template';
|
||||
import { css } from '@emotion/react';
|
||||
import { WelcomePanel } from './welcome_panel';
|
||||
import { TogglePanel } from './toggle_panel';
|
||||
import {
|
||||
GET_STARTED_PAGE_DESCRIPTION,
|
||||
GET_STARTED_PAGE_SUBTITLE,
|
||||
GET_STARTED_PAGE_TITLE,
|
||||
} from './translations';
|
||||
import type { SecurityProductTypes } from '../../common/config';
|
||||
import { ProductSwitch } from './product_switch';
|
||||
import { useTogglePanel } from './use_toggle_panel';
|
||||
import { ProductLine } from '../../common/product';
|
||||
|
||||
const CONTENT_WIDTH = 1150;
|
||||
import type { SecurityProductTypes } from '../../common/config';
|
||||
import { useTogglePanel } from './hooks/use_toggle_panel';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import { Progress } from './progress_bar';
|
||||
import { StepContextProvider } from './context/step_context';
|
||||
import { CONTENT_WIDTH } from './helpers';
|
||||
import { WelcomeHeader } from './welcome_header';
|
||||
|
||||
export interface GetStartedProps {
|
||||
indicesExist?: boolean;
|
||||
productTypes: SecurityProductTypes;
|
||||
}
|
||||
|
||||
export const GetStartedComponent: React.FC<GetStartedProps> = ({ productTypes }) => {
|
||||
export const GetStartedComponent: React.FC<GetStartedProps> = ({ productTypes, indicesExist }) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const shadow = useEuiShadow('s');
|
||||
|
||||
const {
|
||||
onProductSwitchChanged,
|
||||
onCardClicked,
|
||||
onStepClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
state: {
|
||||
activeProducts,
|
||||
activeSections,
|
||||
|
@ -65,85 +58,54 @@ export const GetStartedComponent: React.FC<GetStartedProps> = ({ productTypes })
|
|||
position: absolute;
|
||||
`}
|
||||
>
|
||||
<KibanaPageTemplate.Header
|
||||
<KibanaPageTemplate.Section
|
||||
restrictWidth={CONTENT_WIDTH}
|
||||
paddingSize="xl"
|
||||
css={css`
|
||||
padding: 0 ${euiTheme.base * 2.25}px;
|
||||
padding: 0 ${euiTheme.size.xxl};
|
||||
`}
|
||||
pageTitle={
|
||||
<EuiTitle
|
||||
size="l"
|
||||
css={css`
|
||||
padding-left: ${euiTheme.size.xs};
|
||||
padding-bottom: ${euiTheme.size.l};
|
||||
`}
|
||||
>
|
||||
<span>{GET_STARTED_PAGE_TITLE}</span>
|
||||
</EuiTitle>
|
||||
}
|
||||
description={
|
||||
<>
|
||||
<strong
|
||||
css={css`
|
||||
font-size: ${euiTheme.base * 1.37}px;
|
||||
`}
|
||||
className="eui-displayBlock"
|
||||
>
|
||||
{GET_STARTED_PAGE_SUBTITLE}
|
||||
</strong>
|
||||
<EuiSpacer size="m" />
|
||||
<span className="eui-displayBlock">{GET_STARTED_PAGE_DESCRIPTION}</span>
|
||||
</>
|
||||
}
|
||||
>
|
||||
<WelcomePanel
|
||||
<WelcomeHeader productTier={productTier} />
|
||||
</KibanaPageTemplate.Section>
|
||||
<KibanaPageTemplate.Section
|
||||
restrictWidth={CONTENT_WIDTH}
|
||||
paddingSize="none"
|
||||
css={css`
|
||||
background-color: ${euiTheme.colors.lightestShade};
|
||||
padding: ${euiTheme.size.xxl} ${euiTheme.size.xxl} ${euiTheme.size.m};
|
||||
`}
|
||||
>
|
||||
<Progress
|
||||
totalActiveSteps={totalActiveSteps}
|
||||
totalStepsLeft={totalStepsLeft}
|
||||
productTier={productTier}
|
||||
/>
|
||||
</KibanaPageTemplate.Header>
|
||||
<KibanaPageTemplate.Section
|
||||
bottomBorder={false}
|
||||
grow={true}
|
||||
restrictWidth={CONTENT_WIDTH}
|
||||
paddingSize="none"
|
||||
css={css`
|
||||
${shadow};
|
||||
z-index: 1;
|
||||
flex-grow: 0;
|
||||
padding: 0 ${euiTheme.base * 2.25}px;
|
||||
`}
|
||||
>
|
||||
<ProductSwitch
|
||||
onProductSwitchChanged={onProductSwitchChanged}
|
||||
activeProducts={activeProducts}
|
||||
euiTheme={euiTheme}
|
||||
/>
|
||||
</KibanaPageTemplate.Section>
|
||||
|
||||
<KibanaPageTemplate.Section
|
||||
bottomBorder="extended"
|
||||
grow={true}
|
||||
restrictWidth={CONTENT_WIDTH}
|
||||
paddingSize="none"
|
||||
css={css`
|
||||
padding: 0 ${euiTheme.base * 2.25}px;
|
||||
padding: 0 ${euiTheme.size.xxl} ${euiTheme.base * 3.5}px;
|
||||
background-color: ${euiTheme.colors.lightestShade};
|
||||
`}
|
||||
>
|
||||
<TogglePanel
|
||||
finishedSteps={finishedSteps}
|
||||
activeSections={activeSections}
|
||||
activeProducts={activeProducts}
|
||||
<StepContextProvider
|
||||
expandedCardSteps={expandedCardSteps}
|
||||
finishedSteps={finishedSteps}
|
||||
indicesExist={!!indicesExist}
|
||||
onStepClicked={onStepClicked}
|
||||
onCardClicked={onCardClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
/>
|
||||
toggleTaskCompleteStatus={toggleTaskCompleteStatus}
|
||||
>
|
||||
<TogglePanel activeProducts={activeProducts} activeSections={activeSections} />
|
||||
</StepContextProvider>
|
||||
</KibanaPageTemplate.Section>
|
||||
</KibanaPageTemplate>
|
||||
);
|
||||
};
|
||||
|
||||
GetStartedComponent.displayName = 'GetStartedComponent';
|
||||
export const GetStarted = React.memo(GetStartedComponent);
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
|
|
|
@ -13,12 +13,18 @@ import {
|
|||
isStepActive,
|
||||
} from './helpers';
|
||||
import type { ActiveSections, Card, CardId, Section, Step, StepId } from './types';
|
||||
|
||||
import {
|
||||
ExploreSteps,
|
||||
ConfigureSteps,
|
||||
GetSetUpCardId,
|
||||
IntroductionSteps,
|
||||
AddAndValidateYourDataCardsId,
|
||||
AddIntegrationsSteps,
|
||||
CreateProjectSteps,
|
||||
EnablePrebuiltRulesSteps,
|
||||
OverviewSteps,
|
||||
QuickStartSectionCardsId,
|
||||
SectionId,
|
||||
GetStartedWithAlertsCardsId,
|
||||
ViewAlertsSteps,
|
||||
ViewDashboardSteps,
|
||||
} from './types';
|
||||
|
||||
import * as sectionsConfigs from './sections';
|
||||
|
@ -83,7 +89,7 @@ describe('isStepActive', () => {
|
|||
it('should return true if the step is active based on the active products', () => {
|
||||
const step = {
|
||||
productLineRequired: [ProductLine.cloud, ProductLine.endpoint],
|
||||
id: ConfigureSteps.learnAbout,
|
||||
id: OverviewSteps.getToKnowElasticSecurity,
|
||||
} as Step;
|
||||
const activeProducts = new Set([ProductLine.cloud]);
|
||||
|
||||
|
@ -94,7 +100,7 @@ describe('isStepActive', () => {
|
|||
|
||||
it('should return true if the card has no product type requirement', () => {
|
||||
const step = {
|
||||
id: ConfigureSteps.enablePrebuiltRules,
|
||||
id: EnablePrebuiltRulesSteps.enablePrebuiltRules,
|
||||
} as Step;
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
|
||||
|
@ -106,7 +112,7 @@ describe('isStepActive', () => {
|
|||
it('should return false if the card is not active based on the active products', () => {
|
||||
const step = {
|
||||
productLineRequired: [ProductLine.cloud, ProductLine.endpoint],
|
||||
id: ConfigureSteps.learnAbout,
|
||||
id: OverviewSteps.getToKnowElasticSecurity,
|
||||
} as Step;
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
|
||||
|
@ -125,37 +131,66 @@ describe('setupActiveSections', () => {
|
|||
it('should set up active steps based on active products', () => {
|
||||
const finishedSteps = {} as unknown as Record<CardId, Set<StepId>>;
|
||||
const activeProducts = new Set([ProductLine.cloud]);
|
||||
|
||||
const { activeSections } = setupActiveSections(finishedSteps, activeProducts);
|
||||
|
||||
expect(
|
||||
getCard(GetSetUpCardId.introduction, SectionId.getSetUp, activeSections).activeStepIds
|
||||
).toEqual([IntroductionSteps.getToKnowElasticSecurity]);
|
||||
getCard(QuickStartSectionCardsId.createFirstProject, SectionId.quickStart, activeSections)
|
||||
.activeStepIds
|
||||
).toEqual([CreateProjectSteps.createFirstProject]);
|
||||
|
||||
expect(
|
||||
getCard(GetSetUpCardId.configure, SectionId.getSetUp, activeSections).activeStepIds
|
||||
).toEqual([
|
||||
ConfigureSteps.learnAbout,
|
||||
ConfigureSteps.deployElasticAgent,
|
||||
ConfigureSteps.enablePrebuiltRules,
|
||||
]);
|
||||
getCard(QuickStartSectionCardsId.watchTheOverviewVideo, SectionId.quickStart, activeSections)
|
||||
.activeStepIds
|
||||
).toEqual([OverviewSteps.getToKnowElasticSecurity]);
|
||||
|
||||
expect(
|
||||
getCard(GetSetUpCardId.explore, SectionId.getSetUp, activeSections).activeStepIds
|
||||
).toEqual([ExploreSteps.viewAlerts, ExploreSteps.analyzeData]);
|
||||
getCard(
|
||||
AddAndValidateYourDataCardsId.addIntegrations,
|
||||
SectionId.addAndValidateYourData,
|
||||
activeSections
|
||||
).activeStepIds
|
||||
).toEqual([AddIntegrationsSteps.connectToDataSources]);
|
||||
|
||||
expect(
|
||||
getCard(
|
||||
AddAndValidateYourDataCardsId.viewDashboards,
|
||||
SectionId.addAndValidateYourData,
|
||||
activeSections
|
||||
).activeStepIds
|
||||
).toEqual([ViewDashboardSteps.analyzeData]);
|
||||
|
||||
expect(
|
||||
getCard(
|
||||
GetStartedWithAlertsCardsId.enablePrebuiltRules,
|
||||
SectionId.getStartedWithAlerts,
|
||||
activeSections
|
||||
).activeStepIds
|
||||
).toEqual([EnablePrebuiltRulesSteps.enablePrebuiltRules]);
|
||||
|
||||
expect(
|
||||
getCard(
|
||||
GetStartedWithAlertsCardsId.viewAlerts,
|
||||
SectionId.getStartedWithAlerts,
|
||||
activeSections
|
||||
).activeStepIds
|
||||
).toEqual([ViewAlertsSteps.viewAlerts]);
|
||||
});
|
||||
|
||||
it('should set up active cards based on finished steps', () => {
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
} as unknown as Record<CardId, Set<StepId>>;
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
|
||||
const { activeSections } = setupActiveSections(finishedSteps, activeProducts);
|
||||
|
||||
expect(getCard(GetSetUpCardId.introduction, SectionId.getSetUp, activeSections)).toEqual({
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
id: GetSetUpCardId.introduction,
|
||||
expect(
|
||||
getCard(QuickStartSectionCardsId.createFirstProject, SectionId.quickStart, activeSections)
|
||||
).toEqual({
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
stepsLeft: 0,
|
||||
timeInMins: 0,
|
||||
});
|
||||
|
@ -178,12 +213,14 @@ describe('setupActiveSections', () => {
|
|||
it('should handle null or empty cards in sections', () => {
|
||||
mockSections.mockImplementation(() => [
|
||||
{
|
||||
id: SectionId.getSetUp,
|
||||
id: SectionId.quickStart,
|
||||
} as unknown as Section,
|
||||
]);
|
||||
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
} as unknown as Record<CardId, Set<StepId>>;
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
|
||||
|
@ -201,40 +238,33 @@ describe('setupActiveSections', () => {
|
|||
|
||||
describe('updateActiveSections', () => {
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([CreateProjectSteps.createFirstProject]),
|
||||
} as unknown as Record<CardId, Set<StepId>>;
|
||||
|
||||
const activeSections = {
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
timeInMins: 3,
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
stepsLeft: 0,
|
||||
},
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
stepsLeft: 1,
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 4,
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 2,
|
||||
},
|
||||
},
|
||||
} as ActiveSections;
|
||||
|
||||
it('should update the active card based on finished steps and active products', () => {
|
||||
const activeProducts = new Set([ProductLine.cloud]);
|
||||
const sectionId = SectionId.getSetUp;
|
||||
const cardId = GetSetUpCardId.introduction;
|
||||
const sectionId = SectionId.quickStart;
|
||||
const cardId = QuickStartSectionCardsId.createFirstProject;
|
||||
const testActiveSections = {
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
timeInMins: 3,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
stepsLeft: 0,
|
||||
timeInMins: 0,
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
},
|
||||
};
|
||||
|
@ -249,13 +279,13 @@ describe('updateActiveSections', () => {
|
|||
expect(updatedSections).toEqual({
|
||||
activeSections: {
|
||||
...testActiveSections,
|
||||
[SectionId.getSetUp]: {
|
||||
...testActiveSections[SectionId.getSetUp],
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
[SectionId.quickStart]: {
|
||||
...testActiveSections[SectionId.quickStart],
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -266,8 +296,8 @@ describe('updateActiveSections', () => {
|
|||
|
||||
it('should return null if the card is inactive based on active products', () => {
|
||||
const activeProducts = new Set([ProductLine.cloud]);
|
||||
const sectionId = SectionId.getSetUp;
|
||||
const cardId = GetSetUpCardId.introduction;
|
||||
const sectionId = SectionId.quickStart;
|
||||
const cardId = QuickStartSectionCardsId.createFirstProject;
|
||||
|
||||
const updatedSections = updateActiveSections({
|
||||
activeProducts,
|
||||
|
@ -286,7 +316,7 @@ describe('updateActiveSections', () => {
|
|||
|
||||
it('should return null if the card or activeSections is not found', () => {
|
||||
const activeProducts = new Set([ProductLine.cloud]);
|
||||
const sectionId = SectionId.getSetUp;
|
||||
const sectionId = SectionId.quickStart;
|
||||
const cardId = 'test' as CardId;
|
||||
|
||||
const updatedSections = updateActiveSections({
|
||||
|
|
|
@ -7,7 +7,17 @@
|
|||
|
||||
import type { ProductLine } from '../../common/product';
|
||||
import { getSections } from './sections';
|
||||
import type { ActiveCard, ActiveSections, CardId, SectionId, Step, StepId } from './types';
|
||||
import type { ActiveCard, ActiveSections, Card, CardId, SectionId, Step, StepId } from './types';
|
||||
import { CreateProjectSteps, QuickStartSectionCardsId } from './types';
|
||||
|
||||
export const CONTENT_WIDTH = 1150;
|
||||
|
||||
export const defaultFinishedSteps: Partial<Record<CardId, StepId[]>> = {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [CreateProjectSteps.createFirstProject],
|
||||
};
|
||||
|
||||
export const isDefaultFinishedCardStep = (cardId: CardId, stepId: StepId) =>
|
||||
!!defaultFinishedSteps[cardId]?.includes(stepId);
|
||||
|
||||
export const getCardTimeInMinutes = (activeSteps: Step[] | undefined, stepsDone: Set<StepId>) =>
|
||||
activeSteps?.reduce(
|
||||
|
@ -43,6 +53,16 @@ const getfinishedActiveSteps = (
|
|||
return new Set(finishedActiveSteps);
|
||||
};
|
||||
|
||||
export const findCardByStepId = (
|
||||
stepId: string
|
||||
): { matchedCard: Card | null; matchedStep: Step | null } => {
|
||||
const cards = getSections().flatMap((s) => s.cards);
|
||||
const matchedStep: Step | null = null;
|
||||
const matchedCard = cards.find((c) => !!c.steps?.find((step) => stepId === step.id)) ?? null;
|
||||
|
||||
return { matchedCard, matchedStep };
|
||||
};
|
||||
|
||||
export const getCard = ({ cardId, sectionId }: { cardId: CardId; sectionId: SectionId }) => {
|
||||
const sections = getSections();
|
||||
const section = sections.find(({ id }) => id === sectionId);
|
||||
|
|
|
@ -0,0 +1,77 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useEffect, useRef } from 'react';
|
||||
import { useKibana } from '../../common/services';
|
||||
import type {
|
||||
StepId,
|
||||
CardId,
|
||||
SectionId,
|
||||
CheckIfStepCompleted,
|
||||
ToggleTaskCompleteStatus,
|
||||
} from '../types';
|
||||
|
||||
interface Props {
|
||||
autoCheckIfStepCompleted?: CheckIfStepCompleted;
|
||||
cardId: CardId;
|
||||
indicesExist: boolean;
|
||||
sectionId: SectionId;
|
||||
stepId: StepId;
|
||||
stepTitle?: string;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
}
|
||||
|
||||
export const useCheckStepCompleted = ({
|
||||
autoCheckIfStepCompleted,
|
||||
cardId,
|
||||
indicesExist,
|
||||
sectionId,
|
||||
stepId,
|
||||
stepTitle,
|
||||
toggleTaskCompleteStatus,
|
||||
}: Props) => {
|
||||
const {
|
||||
http: kibanaServicesHttp,
|
||||
notifications: { toasts },
|
||||
} = useKibana().services;
|
||||
const abortSignal = useRef(new AbortController());
|
||||
const addError = useRef(toasts.addError.bind(toasts)).current;
|
||||
|
||||
useEffect(() => {
|
||||
if (!autoCheckIfStepCompleted) {
|
||||
return;
|
||||
}
|
||||
|
||||
const autoCheckStepCompleted = async () => {
|
||||
const isDone = await autoCheckIfStepCompleted({
|
||||
indicesExist,
|
||||
abortSignal,
|
||||
kibanaServicesHttp,
|
||||
onError: (error: Error) => {
|
||||
addError(error, { title: `Failed to check ${stepTitle ?? stepId} completion.` });
|
||||
},
|
||||
});
|
||||
|
||||
toggleTaskCompleteStatus({ stepId, cardId, sectionId, undo: !isDone });
|
||||
};
|
||||
autoCheckStepCompleted();
|
||||
const currentAbortController = abortSignal.current;
|
||||
return () => {
|
||||
currentAbortController.abort();
|
||||
};
|
||||
}, [
|
||||
autoCheckIfStepCompleted,
|
||||
stepId,
|
||||
cardId,
|
||||
sectionId,
|
||||
toggleTaskCompleteStatus,
|
||||
kibanaServicesHttp,
|
||||
indicesExist,
|
||||
addError,
|
||||
stepTitle,
|
||||
]);
|
||||
};
|
|
@ -7,31 +7,36 @@
|
|||
|
||||
import { renderHook } from '@testing-library/react-hooks';
|
||||
import type { EuiThemeComputed } from '@elastic/eui';
|
||||
import { useSetUpSections } from './use_setup_cards';
|
||||
import type { ActiveSections, CardId, ExpandedCardSteps, StepId } from './types';
|
||||
import { GetSetUpCardId, IntroductionSteps, SectionId } from './types';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import { useSetUpSections } from './use_setup_sections';
|
||||
import type { ActiveSections, CardId, ExpandedCardSteps, StepId } from '../types';
|
||||
import { CreateProjectSteps, QuickStartSectionCardsId, SectionId } from '../types';
|
||||
|
||||
import { ProductLine } from '../../../common/product';
|
||||
|
||||
const mockEuiTheme: EuiThemeComputed = {
|
||||
size: {
|
||||
l: '16px',
|
||||
base: '20px',
|
||||
},
|
||||
colors: {},
|
||||
font: { weight: { bold: 700 } },
|
||||
} as EuiThemeComputed;
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set<StepId>([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set<StepId>([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
} as Record<CardId, Set<StepId>>;
|
||||
describe('useSetUpSections', () => {
|
||||
const onStepClicked = jest.fn();
|
||||
const onStepButtonClicked = jest.fn();
|
||||
const toggleTaskCompleteStatus = jest.fn();
|
||||
|
||||
it('should return the sections', () => {
|
||||
const { result } = renderHook(() => useSetUpSections({ euiTheme: mockEuiTheme }));
|
||||
|
||||
const activeSections = {
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 3,
|
||||
stepsLeft: 1,
|
||||
},
|
||||
|
@ -42,9 +47,8 @@ describe('useSetUpSections', () => {
|
|||
activeProducts: new Set([ProductLine.security]),
|
||||
activeSections,
|
||||
expandedCardSteps: {} as ExpandedCardSteps,
|
||||
onCardClicked: jest.fn(),
|
||||
onStepClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
finishedSteps,
|
||||
});
|
||||
|
||||
|
@ -60,9 +64,8 @@ describe('useSetUpSections', () => {
|
|||
activeSections,
|
||||
activeProducts: new Set([ProductLine.security]),
|
||||
expandedCardSteps: {} as ExpandedCardSteps,
|
||||
onCardClicked: jest.fn(),
|
||||
onStepClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
finishedSteps,
|
||||
});
|
||||
|
|
@ -6,39 +6,31 @@
|
|||
*/
|
||||
|
||||
import type { EuiThemeComputed } from '@elastic/eui';
|
||||
import { EuiSpacer, EuiFlexGroup, EuiFlexItem, EuiPanel, EuiTitle } from '@elastic/eui';
|
||||
import { EuiSpacer, EuiFlexGroup, EuiFlexItem, EuiPanel } from '@elastic/eui';
|
||||
import React, { useCallback } from 'react';
|
||||
import { css } from '@emotion/react';
|
||||
import type {
|
||||
ActiveSections,
|
||||
CardId,
|
||||
ExpandedCardSteps,
|
||||
OnCardClicked,
|
||||
OnStepButtonClicked,
|
||||
ToggleTaskCompleteStatus,
|
||||
OnStepClicked,
|
||||
SectionId,
|
||||
StepId,
|
||||
} from './types';
|
||||
} from '../types';
|
||||
|
||||
import { CardItem } from './card_item';
|
||||
import { getSections } from './sections';
|
||||
import type { ProductLine } from '../../common/product';
|
||||
import { CardItem } from '../card_item';
|
||||
import { getSections } from '../sections';
|
||||
import type { ProductLine } from '../../../common/product';
|
||||
|
||||
export const useSetUpSections = ({
|
||||
euiTheme,
|
||||
shadow = '',
|
||||
}: {
|
||||
euiTheme: EuiThemeComputed;
|
||||
shadow?: string;
|
||||
}) => {
|
||||
export const useSetUpSections = ({ euiTheme }: { euiTheme: EuiThemeComputed }) => {
|
||||
const setUpCards = useCallback(
|
||||
({
|
||||
activeProducts,
|
||||
activeSections,
|
||||
expandedCardSteps,
|
||||
finishedSteps,
|
||||
onCardClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
sectionId,
|
||||
}: {
|
||||
|
@ -46,8 +38,7 @@ export const useSetUpSections = ({
|
|||
activeSections: ActiveSections | null;
|
||||
expandedCardSteps: ExpandedCardSteps;
|
||||
finishedSteps: Record<CardId, Set<StepId>>;
|
||||
onCardClicked: OnCardClicked;
|
||||
onStepButtonClicked: OnStepButtonClicked;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
onStepClicked: OnStepClicked;
|
||||
sectionId: SectionId;
|
||||
}) => {
|
||||
|
@ -56,26 +47,20 @@ export const useSetUpSections = ({
|
|||
? Object.values(section)?.map<React.ReactNode>((cardItem) => (
|
||||
<EuiFlexItem key={cardItem.id}>
|
||||
<CardItem
|
||||
activeProducts={activeProducts}
|
||||
activeStepIds={cardItem.activeStepIds}
|
||||
cardId={cardItem.id}
|
||||
data-test-subj={cardItem.id}
|
||||
expandedCardSteps={expandedCardSteps}
|
||||
euiTheme={euiTheme}
|
||||
finishedSteps={finishedSteps}
|
||||
onCardClicked={onCardClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
finishedSteps={finishedSteps[cardItem.id]}
|
||||
toggleTaskCompleteStatus={toggleTaskCompleteStatus}
|
||||
onStepClicked={onStepClicked}
|
||||
sectionId={sectionId}
|
||||
shadow={shadow}
|
||||
stepsLeft={cardItem.stepsLeft}
|
||||
timeInMins={cardItem.timeInMins}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
))
|
||||
: null;
|
||||
},
|
||||
[euiTheme, shadow]
|
||||
[]
|
||||
);
|
||||
|
||||
const setUpSections = useCallback(
|
||||
|
@ -84,16 +69,14 @@ export const useSetUpSections = ({
|
|||
activeSections,
|
||||
expandedCardSteps,
|
||||
finishedSteps,
|
||||
onCardClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
}: {
|
||||
activeProducts: Set<ProductLine>;
|
||||
activeSections: ActiveSections | null;
|
||||
expandedCardSteps: ExpandedCardSteps;
|
||||
finishedSteps: Record<CardId, Set<StepId>>;
|
||||
onCardClicked: OnCardClicked;
|
||||
onStepButtonClicked: OnStepButtonClicked;
|
||||
toggleTaskCompleteStatus: ToggleTaskCompleteStatus;
|
||||
onStepClicked: OnStepClicked;
|
||||
}) =>
|
||||
getSections().reduce<React.ReactNode[]>((acc, currentSection) => {
|
||||
|
@ -102,8 +85,7 @@ export const useSetUpSections = ({
|
|||
activeSections,
|
||||
expandedCardSteps,
|
||||
finishedSteps,
|
||||
onCardClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
sectionId: currentSection.id,
|
||||
});
|
||||
|
@ -119,14 +101,21 @@ export const useSetUpSections = ({
|
|||
css={css`
|
||||
margin: ${euiTheme.size.l} 0;
|
||||
padding-top: 4px;
|
||||
background-color: ${euiTheme.colors.lightestShade};
|
||||
`}
|
||||
key={currentSection.id}
|
||||
id={currentSection.id}
|
||||
data-test-subj={`section-${currentSection.id}`}
|
||||
>
|
||||
<EuiTitle size="xxs">
|
||||
<span>{currentSection.title}</span>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="m" />
|
||||
<span
|
||||
css={css`
|
||||
font-size: ${euiTheme.base * 1.375}px;
|
||||
font-weight: ${euiTheme.font.weight.bold};
|
||||
`}
|
||||
>
|
||||
{currentSection.title}
|
||||
</span>
|
||||
<EuiSpacer size="l" />
|
||||
<EuiFlexGroup
|
||||
gutterSize="m"
|
||||
direction="column"
|
||||
|
@ -141,7 +130,14 @@ export const useSetUpSections = ({
|
|||
}
|
||||
return acc;
|
||||
}, []),
|
||||
[euiTheme.size.base, euiTheme.size.l, setUpCards]
|
||||
[
|
||||
euiTheme.base,
|
||||
euiTheme.colors.lightestShade,
|
||||
euiTheme.font.weight.bold,
|
||||
euiTheme.size.base,
|
||||
euiTheme.size.l,
|
||||
setUpCards,
|
||||
]
|
||||
);
|
||||
|
||||
return { setUpSections };
|
|
@ -0,0 +1,360 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import { renderHook, act } from '@testing-library/react-hooks';
|
||||
import { useTogglePanel } from './use_toggle_panel';
|
||||
import { getStartedStorage } from '../storage';
|
||||
import { ProductLine } from '../../../common/product';
|
||||
import type { SecurityProductTypes } from '../../../common/config';
|
||||
import {
|
||||
QuickStartSectionCardsId,
|
||||
SectionId,
|
||||
CreateProjectSteps,
|
||||
OverviewSteps,
|
||||
AddAndValidateYourDataCardsId,
|
||||
AddIntegrationsSteps,
|
||||
ViewDashboardSteps,
|
||||
GetStartedWithAlertsCardsId,
|
||||
ViewAlertsSteps,
|
||||
EnablePrebuiltRulesSteps,
|
||||
} from '../types';
|
||||
|
||||
jest.mock('../storage');
|
||||
jest.mock('../../common/services');
|
||||
jest.mock('react-router-dom', () => ({
|
||||
useLocation: jest.fn().mockReturnValue({ hash: '' }),
|
||||
}));
|
||||
|
||||
jest.mock('@kbn/security-solution-navigation', () => ({
|
||||
useNavigateTo: jest.fn().mockReturnValue({ navigateTo: jest.fn() }),
|
||||
SecurityPageName: {
|
||||
landing: 'landing',
|
||||
},
|
||||
}));
|
||||
|
||||
describe('useTogglePanel', () => {
|
||||
const productTypes = [
|
||||
{ product_line: 'security', product_tier: 'essentials' },
|
||||
{ product_line: 'endpoint', product_tier: 'complete' },
|
||||
] as SecurityProductTypes;
|
||||
|
||||
beforeEach(() => {
|
||||
jest.clearAllMocks();
|
||||
|
||||
(getStartedStorage.getAllFinishedStepsFromStorage as jest.Mock).mockReturnValue({
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
});
|
||||
(getStartedStorage.getActiveProductsFromStorage as jest.Mock).mockReturnValue([
|
||||
ProductLine.security,
|
||||
ProductLine.cloud,
|
||||
ProductLine.endpoint,
|
||||
]);
|
||||
});
|
||||
|
||||
test('should initialize state with correct initial values - when no active products from local storage', () => {
|
||||
(getStartedStorage.getActiveProductsFromStorage as jest.Mock).mockReturnValue([]);
|
||||
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { state } = result.current;
|
||||
|
||||
expect(state.activeProducts).toEqual(new Set([ProductLine.security, ProductLine.endpoint]));
|
||||
expect(state.finishedSteps).toEqual({
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
});
|
||||
|
||||
expect(state.activeSections).toEqual(
|
||||
expect.objectContaining({
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
},
|
||||
[SectionId.addAndValidateYourData]: {
|
||||
[AddAndValidateYourDataCardsId.addIntegrations]: {
|
||||
id: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [AddIntegrationsSteps.connectToDataSources],
|
||||
},
|
||||
[AddAndValidateYourDataCardsId.viewDashboards]: {
|
||||
id: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewDashboardSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
[SectionId.getStartedWithAlerts]: {
|
||||
[GetStartedWithAlertsCardsId.enablePrebuiltRules]: {
|
||||
id: EnablePrebuiltRulesSteps.enablePrebuiltRules,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [EnablePrebuiltRulesSteps.enablePrebuiltRules],
|
||||
},
|
||||
[GetStartedWithAlertsCardsId.viewAlerts]: {
|
||||
id: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewAlertsSteps.viewAlerts],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('should initialize state with correct initial values - when all products active', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { state } = result.current;
|
||||
|
||||
expect(state.activeProducts).toEqual(
|
||||
new Set([ProductLine.security, ProductLine.cloud, ProductLine.endpoint])
|
||||
);
|
||||
expect(state.finishedSteps).toEqual({
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
});
|
||||
|
||||
expect(state.activeSections).toEqual(
|
||||
expect.objectContaining({
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
},
|
||||
[SectionId.addAndValidateYourData]: {
|
||||
[AddAndValidateYourDataCardsId.addIntegrations]: {
|
||||
id: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [AddIntegrationsSteps.connectToDataSources],
|
||||
},
|
||||
[AddAndValidateYourDataCardsId.viewDashboards]: {
|
||||
id: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewDashboardSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
[SectionId.getStartedWithAlerts]: {
|
||||
[GetStartedWithAlertsCardsId.enablePrebuiltRules]: {
|
||||
id: EnablePrebuiltRulesSteps.enablePrebuiltRules,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [EnablePrebuiltRulesSteps.enablePrebuiltRules],
|
||||
},
|
||||
[GetStartedWithAlertsCardsId.viewAlerts]: {
|
||||
id: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewAlertsSteps.viewAlerts],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('should initialize state with correct initial values - when security product active', () => {
|
||||
(getStartedStorage.getActiveProductsFromStorage as jest.Mock).mockReturnValue([
|
||||
ProductLine.security,
|
||||
]);
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { state } = result.current;
|
||||
|
||||
expect(state.activeProducts).toEqual(new Set([ProductLine.security]));
|
||||
expect(state.finishedSteps).toEqual({
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
});
|
||||
|
||||
expect(state.activeSections).toEqual(
|
||||
expect.objectContaining({
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
},
|
||||
[SectionId.addAndValidateYourData]: {
|
||||
[AddAndValidateYourDataCardsId.addIntegrations]: {
|
||||
id: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [AddIntegrationsSteps.connectToDataSources],
|
||||
},
|
||||
[AddAndValidateYourDataCardsId.viewDashboards]: {
|
||||
id: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewDashboardSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
[SectionId.getStartedWithAlerts]: {
|
||||
[GetStartedWithAlertsCardsId.enablePrebuiltRules]: {
|
||||
id: EnablePrebuiltRulesSteps.enablePrebuiltRules,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [EnablePrebuiltRulesSteps.enablePrebuiltRules],
|
||||
},
|
||||
[GetStartedWithAlertsCardsId.viewAlerts]: {
|
||||
id: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewAlertsSteps.viewAlerts],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('should reset all the card steps in storage when a step is expanded. (As it allows only one step open at a time)', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepClicked({
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
sectionId: SectionId.quickStart,
|
||||
isExpanded: true,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.resetAllExpandedCardStepsToStorage).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
test('should add the current step to storage when it is expanded', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepClicked({
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
sectionId: SectionId.quickStart,
|
||||
isExpanded: true,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.addExpandedCardStepToStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.addExpandedCardStepToStorage).toHaveBeenCalledWith(
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
OverviewSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should remove the current step from storage when it is collapsed', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepClicked({
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
sectionId: SectionId.quickStart,
|
||||
isExpanded: false,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.removeExpandedCardStepFromStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.removeExpandedCardStepFromStorage).toHaveBeenCalledWith(
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
OverviewSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should call addFinishedStepToStorage when toggleTaskCompleteStatus is executed', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { toggleTaskCompleteStatus } = result.current;
|
||||
|
||||
act(() => {
|
||||
toggleTaskCompleteStatus({
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
sectionId: SectionId.quickStart,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.addFinishedStepToStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.addFinishedStepToStorage).toHaveBeenCalledWith(
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
OverviewSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should call removeFinishedStepToStorage when toggleTaskCompleteStatus is executed with undo equals to true', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { toggleTaskCompleteStatus } = result.current;
|
||||
|
||||
act(() => {
|
||||
toggleTaskCompleteStatus({
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
sectionId: SectionId.quickStart,
|
||||
undo: true,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.removeFinishedStepFromStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.removeFinishedStepFromStorage).toHaveBeenCalledWith(
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
OverviewSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should call toggleActiveProductsInStorage when onProductSwitchChanged is executed', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onProductSwitchChanged } = result.current;
|
||||
|
||||
act(() => {
|
||||
onProductSwitchChanged({ id: ProductLine.security, label: 'Analytics' });
|
||||
});
|
||||
|
||||
expect(getStartedStorage.toggleActiveProductsInStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.toggleActiveProductsInStorage).toHaveBeenCalledWith(
|
||||
ProductLine.security
|
||||
);
|
||||
});
|
||||
});
|
|
@ -5,29 +5,76 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useCallback, useMemo, useReducer } from 'react';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import type { SecurityProductTypes } from '../../common/config';
|
||||
import { getStartedStorage } from './storage';
|
||||
import { useCallback, useEffect, useMemo, useReducer } from 'react';
|
||||
import { useLocation } from 'react-router-dom';
|
||||
import { SecurityPageName } from '@kbn/security-solution-plugin/common';
|
||||
import { useNavigateTo } from '@kbn/security-solution-navigation';
|
||||
import { ProductLine } from '../../../common/product';
|
||||
import type { SecurityProductTypes } from '../../../common/config';
|
||||
import { getStartedStorage } from '../storage';
|
||||
import {
|
||||
getActiveSectionsInitialStates,
|
||||
getActiveProductsInitialStates,
|
||||
getFinishedStepsInitialStates,
|
||||
reducer,
|
||||
} from './reducer';
|
||||
import type { OnCardClicked, OnStepButtonClicked, OnStepClicked, Switch } from './types';
|
||||
import { GetStartedPageActions } from './types';
|
||||
} from '../reducer';
|
||||
import type {
|
||||
Card,
|
||||
ExpandedCardSteps,
|
||||
ToggleTaskCompleteStatus,
|
||||
OnStepClicked,
|
||||
Step,
|
||||
Switch,
|
||||
} from '../types';
|
||||
import { GetStartedPageActions } from '../types';
|
||||
import { findCardByStepId } from '../helpers';
|
||||
|
||||
const syncExpandedCardStepsToStorageFromURL = (maybeStepId: string) => {
|
||||
const { matchedCard, matchedStep } = findCardByStepId(maybeStepId);
|
||||
const hasStepContent = matchedStep && matchedStep.description;
|
||||
|
||||
if (matchedCard && matchedStep && hasStepContent) {
|
||||
getStartedStorage.resetAllExpandedCardStepsToStorage();
|
||||
getStartedStorage.addExpandedCardStepToStorage(matchedCard.id, matchedStep.id);
|
||||
}
|
||||
};
|
||||
|
||||
const syncExpandedCardStepsFromStorageToURL = (
|
||||
expandedCardSteps: ExpandedCardSteps,
|
||||
callback: ({
|
||||
matchedCard,
|
||||
matchedStep,
|
||||
}: {
|
||||
matchedCard: Card | null;
|
||||
matchedStep: Step | null;
|
||||
}) => void
|
||||
) => {
|
||||
const expandedCardStep = Object.values(expandedCardSteps).find(
|
||||
(expandedCard) => expandedCard.expandedSteps.length > 0
|
||||
);
|
||||
|
||||
if (expandedCardStep?.expandedSteps[0]) {
|
||||
const { matchedCard, matchedStep } = findCardByStepId(expandedCardStep?.expandedSteps[0]);
|
||||
|
||||
callback?.({ matchedCard, matchedStep });
|
||||
}
|
||||
};
|
||||
|
||||
export const useTogglePanel = ({ productTypes }: { productTypes: SecurityProductTypes }) => {
|
||||
const { navigateTo } = useNavigateTo();
|
||||
|
||||
const { hash: detailName } = useLocation();
|
||||
const stepIdFromHash = detailName.split('#')[1];
|
||||
|
||||
const {
|
||||
getAllFinishedStepsFromStorage,
|
||||
getActiveProductsFromStorage,
|
||||
toggleActiveProductsInStorage,
|
||||
resetAllExpandedCardStepsToStorage,
|
||||
addExpandedCardStepToStorage,
|
||||
addFinishedStepToStorage,
|
||||
removeFinishedStepFromStorage,
|
||||
addExpandedCardStepToStorage,
|
||||
removeExpandedCardStepFromStorage,
|
||||
resetAllExpandedCardStepsToStorage,
|
||||
getAllExpandedCardStepsFromStorage,
|
||||
} = getStartedStorage;
|
||||
|
||||
|
@ -59,10 +106,26 @@ export const useTogglePanel = ({ productTypes }: { productTypes: SecurityProduct
|
|||
[activeProductsInitialStates, finishedStepsInitialStates]
|
||||
);
|
||||
|
||||
const expandedCardsInitialStates = useMemo(
|
||||
() => getAllExpandedCardStepsFromStorage(),
|
||||
[getAllExpandedCardStepsFromStorage]
|
||||
);
|
||||
const expandedCardsInitialStates: ExpandedCardSteps = useMemo(() => {
|
||||
if (stepIdFromHash) {
|
||||
syncExpandedCardStepsToStorageFromURL(stepIdFromHash);
|
||||
}
|
||||
|
||||
return getAllExpandedCardStepsFromStorage();
|
||||
}, [getAllExpandedCardStepsFromStorage, stepIdFromHash]);
|
||||
|
||||
useEffect(() => {
|
||||
syncExpandedCardStepsFromStorageToURL(
|
||||
expandedCardsInitialStates,
|
||||
({ matchedStep }: { matchedStep: Step | null }) => {
|
||||
if (!matchedStep) return;
|
||||
navigateTo({
|
||||
deepLinkId: SecurityPageName.landing,
|
||||
path: `#${matchedStep.id}`,
|
||||
});
|
||||
}
|
||||
);
|
||||
}, [expandedCardsInitialStates, getAllExpandedCardStepsFromStorage, navigateTo]);
|
||||
|
||||
const [state, dispatch] = useReducer(reducer, {
|
||||
activeProducts: activeProductsInitialStates,
|
||||
|
@ -74,9 +137,9 @@ export const useTogglePanel = ({ productTypes }: { productTypes: SecurityProduct
|
|||
});
|
||||
|
||||
const onStepClicked: OnStepClicked = useCallback(
|
||||
({ stepId, cardId, sectionId, isExpanded }) => {
|
||||
({ stepId, cardId, isExpanded }) => {
|
||||
dispatch({
|
||||
type: GetStartedPageActions.ToggleExpandedCardStep,
|
||||
type: GetStartedPageActions.ToggleExpandedStep,
|
||||
payload: { stepId, cardId, isStepExpanded: isExpanded },
|
||||
});
|
||||
if (isExpanded) {
|
||||
|
@ -94,22 +157,7 @@ export const useTogglePanel = ({ productTypes }: { productTypes: SecurityProduct
|
|||
]
|
||||
);
|
||||
|
||||
const onCardClicked: OnCardClicked = useCallback(
|
||||
({ cardId, isExpanded }) => {
|
||||
dispatch({
|
||||
type: GetStartedPageActions.ToggleExpandedCardStep,
|
||||
payload: { cardId, isCardExpanded: isExpanded },
|
||||
});
|
||||
if (isExpanded) {
|
||||
addExpandedCardStepToStorage(cardId);
|
||||
} else {
|
||||
removeExpandedCardStepFromStorage(cardId);
|
||||
}
|
||||
},
|
||||
[addExpandedCardStepToStorage, removeExpandedCardStepFromStorage]
|
||||
);
|
||||
|
||||
const onStepButtonClicked: OnStepButtonClicked = useCallback(
|
||||
const toggleTaskCompleteStatus: ToggleTaskCompleteStatus = useCallback(
|
||||
({ stepId, cardId, sectionId, undo }) => {
|
||||
dispatch({
|
||||
type: undo
|
||||
|
@ -134,5 +182,5 @@ export const useTogglePanel = ({ productTypes }: { productTypes: SecurityProduct
|
|||
[toggleActiveProductsInStorage]
|
||||
);
|
||||
|
||||
return { state, onCardClicked, onStepClicked, onStepButtonClicked, onProductSwitchChanged };
|
||||
return { state, onStepClicked, toggleTaskCompleteStatus, onProductSwitchChanged };
|
||||
};
|
After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 65 KiB |
|
@ -1,12 +0,0 @@
|
|||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="icon-data-visualizer-32-color">
|
||||
<g id="Group 13">
|
||||
<path id="Fill 1" fill-rule="evenodd" clip-rule="evenodd" d="M22.9517 12.0537C22.9807 12.3657 22.9997 12.6807 22.9997 12.9997C22.9997 13.4897 22.9527 13.9657 22.8847 14.4357C24.1767 15.5367 24.9997 17.1737 24.9997 18.9997C24.9997 22.3087 22.3077 24.9997 18.9997 24.9997C17.1727 24.9997 15.5367 24.1767 14.4357 22.8847C13.9657 22.9527 13.4887 22.9997 12.9997 22.9997C12.6807 22.9997 12.3647 22.9817 12.0527 22.9517C13.4317 25.3667 16.0267 26.9997 18.9997 26.9997C23.4107 26.9997 26.9997 23.4107 26.9997 18.9997C26.9997 16.0267 25.3657 13.4327 22.9517 12.0537Z" fill="#00BFB3"/>
|
||||
<path id="Fill 3" fill-rule="evenodd" clip-rule="evenodd" d="M1 12H3V3H12V1H1V12Z" fill="#535766"/>
|
||||
<path id="Fill 5" fill-rule="evenodd" clip-rule="evenodd" d="M20 1V3H29V12H31V1H20Z" fill="#535766"/>
|
||||
<path id="Fill 7" fill-rule="evenodd" clip-rule="evenodd" d="M3 20H1V31H12V29H3V20Z" fill="#535766"/>
|
||||
<path id="Fill 9" fill-rule="evenodd" clip-rule="evenodd" d="M29 29H20V31H31V20H29V29Z" fill="#535766"/>
|
||||
<path id="Fill 11" fill-rule="evenodd" clip-rule="evenodd" d="M13 7C9.691 7 7 9.691 7 13C7 16.309 9.691 19 13 19C16.309 19 19 16.309 19 13C19 9.691 16.309 7 13 7ZM13 21C8.589 21 5 17.411 5 13C5 8.589 8.589 5 13 5C17.411 5 21 8.589 21 13C21 17.411 17.411 21 13 21Z" fill="#535766"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,10 +0,0 @@
|
|||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Icon left" clip-path="url(#clip0_188_36511)">
|
||||
<path id="Glyph" d="M6.55929 6L8.88417 3.67512C9.03861 3.52068 9.03861 3.27028 8.88417 3.11583C8.72972 2.96139 8.47932 2.96139 8.32488 3.11583L6 5.44071L3.67512 3.11583C3.52068 2.96139 3.27028 2.96139 3.11583 3.11583C2.96139 3.27028 2.96139 3.52068 3.11583 3.67512L5.44071 6L3.11583 8.32488C2.96139 8.47932 2.96139 8.72972 3.11583 8.88417C3.27028 9.03861 3.52068 9.03861 3.67512 8.88417L6 6.55929L8.32488 8.88417C8.47932 9.03861 8.72972 9.03861 8.88417 8.88417C9.03861 8.72972 9.03861 8.47932 8.88417 8.32488L6.55929 6ZM6 12C2.68629 12 0 9.31371 0 6C0 2.68629 2.68629 0 6 0C9.31371 0 12 2.68629 12 6C12 9.31371 9.31371 12 6 12Z" fill="#005EC4"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_188_36511">
|
||||
<rect width="12" height="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 910 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="1" y="1" width="22" height="22" rx="11" stroke="#D3DAE6" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 188 B |
|
@ -1,287 +0,0 @@
|
|||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1610_106430)">
|
||||
<path d="M20 40C31.0457 40 40 31.0457 40 20C40 8.95431 31.0457 0 20 0C8.95431 0 0 8.95431 0 20C0 31.0457 8.95431 40 20 40Z" fill="#ECF0F6"/>
|
||||
<path d="M28.8666 2.19334C28.8807 2.24397 28.913 2.28762 28.9573 2.31592C29.0016 2.34421 29.0548 2.35516 29.1066 2.34667C29.1066 2.34667 29.1233 2.34667 29.1333 2.34667C29.2049 2.36546 29.2808 2.35715 29.3466 2.32334C29.1433 2.21667 28.9366 2.11 28.73 2.01C28.7566 2.0832 28.8041 2.14696 28.8666 2.19334Z" fill="white"/>
|
||||
<path d="M29.8867 3.52667C29.7067 3.35334 29.5133 3.32667 29.3933 3.46C29.3755 3.48043 29.3619 3.50423 29.3533 3.53C29.3401 3.5125 29.3229 3.49829 29.3033 3.48847C29.2836 3.47864 29.262 3.47346 29.24 3.47334C29.1233 3.47334 29.1467 3.62667 29.1467 3.68667C29.1467 3.74667 29.2434 3.78667 29.2667 3.77667L29.31 3.75C29.2962 3.86664 29.3233 3.98447 29.3867 4.08334C29.4245 4.11648 29.4687 4.1415 29.5165 4.15684C29.5644 4.17218 29.6149 4.17752 29.6649 4.17251C29.7149 4.16751 29.7634 4.15228 29.8073 4.12776C29.8512 4.10325 29.8895 4.06997 29.92 4.03C30.0967 3.86334 30.0867 3.72334 29.8867 3.52667Z" fill="white"/>
|
||||
<path d="M29.65 4.94C29.6572 4.90728 29.6532 4.87308 29.6387 4.84288C29.6242 4.81267 29.6 4.78819 29.57 4.77333C29.5307 4.76577 29.49 4.76959 29.4528 4.78435C29.4156 4.79912 29.3834 4.82421 29.36 4.85667C29.33 4.91667 29.4066 5.00333 29.47 5.02667C29.5054 5.03612 29.543 5.03257 29.576 5.01667C29.609 5.00077 29.6353 4.97357 29.65 4.94Z" fill="white"/>
|
||||
<path d="M29.7833 7.32C29.9 7.27667 29.9999 7.2 29.9466 7.07667C29.8933 6.95333 29.7533 6.77334 29.6433 6.79334C29.5333 6.81334 29.5199 7.09 29.5299 7.19C29.5399 7.29 29.6466 7.37 29.7833 7.32Z" fill="white"/>
|
||||
<path d="M26.97 1.72C26.9743 1.75848 26.9866 1.79563 27.0061 1.82906C27.0256 1.86249 27.0519 1.89146 27.0834 1.91408C27.1148 1.9367 27.1506 1.95247 27.1885 1.96038C27.2264 1.96829 27.2655 1.96816 27.3034 1.96C27.3703 1.94523 27.43 1.90747 27.472 1.85327C27.514 1.79907 27.5357 1.73187 27.5334 1.66333C27.5266 1.62646 27.5125 1.5913 27.492 1.55989C27.4716 1.52848 27.445 1.50146 27.414 1.48037C27.383 1.45929 27.3481 1.44457 27.3114 1.43707C27.2747 1.42956 27.2368 1.42943 27.2 1.43666C27.1643 1.43426 27.1286 1.44046 27.0958 1.45474C27.063 1.46902 27.0341 1.49097 27.0116 1.51874C26.9891 1.5465 26.9735 1.57928 26.9663 1.6143C26.9591 1.64932 26.9603 1.68557 26.97 1.72Z" fill="white"/>
|
||||
<path d="M29.2734 8.75333C29.1967 8.81666 29.2934 8.93666 29.32 8.94666C29.3467 8.95666 29.45 9 29.51 8.94666C29.5208 8.93698 29.5293 8.92515 29.5352 8.91194C29.5411 8.89873 29.5441 8.88445 29.5441 8.87C29.5441 8.85555 29.5411 8.84126 29.5352 8.82805C29.5293 8.81485 29.5208 8.80302 29.51 8.79333C29.4534 8.75 29.3534 8.69 29.2734 8.75333Z" fill="white"/>
|
||||
<path d="M28.7 3.77C28.7152 3.66355 28.6929 3.55511 28.637 3.46328C28.581 3.37145 28.4949 3.30194 28.3933 3.26666C28.2887 3.2446 28.1796 3.26498 28.09 3.32333C27.9726 3.40549 27.8921 3.53047 27.8659 3.67136C27.8397 3.81226 27.8699 3.95781 27.95 4.07666C28.0688 4.09797 28.1892 4.10912 28.31 4.11C28.4034 4.10442 28.4924 4.06803 28.563 4.00651C28.6335 3.94499 28.6817 3.86182 28.7 3.77Z" fill="white"/>
|
||||
<path d="M26.2733 1.00667C26.3079 1.04962 26.347 1.08874 26.39 1.12333C26.4329 1.16721 26.4699 1.21652 26.5 1.27C26.62 1.44333 26.7567 1.49667 26.87 1.42C26.8988 1.40069 26.9228 1.37502 26.9401 1.34497C26.9575 1.31492 26.9677 1.28129 26.97 1.24667C26.73 1.16 26.4966 1.08333 26.2733 1.00667Z" fill="white"/>
|
||||
<path d="M28.2334 4.69C28.2181 4.69745 28.205 4.70853 28.195 4.72227C28.1851 4.73601 28.1787 4.75198 28.1764 4.76878C28.1741 4.78558 28.1759 4.80269 28.1818 4.8186C28.1877 4.83451 28.1974 4.84873 28.21 4.86C28.2185 4.8748 28.2304 4.88736 28.2447 4.89661C28.2591 4.90586 28.2754 4.91154 28.2924 4.91317C28.3094 4.91481 28.3265 4.91234 28.3423 4.90599C28.3581 4.89964 28.3722 4.88959 28.3834 4.87667C28.44 4.82667 28.4534 4.77667 28.4034 4.71667C28.3962 4.7012 28.3854 4.68773 28.3718 4.67746C28.3582 4.66718 28.3423 4.66043 28.3255 4.65779C28.3087 4.65515 28.2915 4.65671 28.2754 4.66233C28.2593 4.66795 28.2449 4.67746 28.2334 4.69Z" fill="white"/>
|
||||
<path d="M32.1166 13.3167C32.0911 13.337 32.0714 13.3638 32.0597 13.3943C32.048 13.4247 32.0446 13.4578 32.0499 13.49C32.0674 13.5157 32.0915 13.5361 32.1197 13.549C32.1479 13.5619 32.1791 13.5669 32.2099 13.5633C32.2566 13.5467 32.3799 13.45 32.3366 13.3767C32.3099 13.3462 32.2748 13.3242 32.2356 13.3136C32.1965 13.3029 32.1551 13.304 32.1166 13.3167Z" fill="white"/>
|
||||
<path d="M35.7067 17.3233C35.59 17.3233 35.6134 17.4767 35.6134 17.5367C35.6134 17.5967 35.71 17.6367 35.7334 17.6267C35.7567 17.6167 35.8534 17.54 35.8567 17.4867C35.86 17.4333 35.8233 17.32 35.7067 17.3233Z" fill="white"/>
|
||||
<path d="M36.1966 12.18H36.2233C36.2719 12.1965 36.3246 12.1965 36.3733 12.18C36.4511 12.1574 36.5171 12.1056 36.5575 12.0353C36.5979 11.9651 36.6095 11.8819 36.59 11.8033C36.563 11.7319 36.5125 11.6719 36.4466 11.6333C36.4418 11.5944 36.4317 11.5563 36.4166 11.52C36.3932 11.4825 36.3626 11.4501 36.3265 11.4246C36.2904 11.3991 36.2497 11.381 36.2066 11.3714C36.1635 11.3618 36.1189 11.3608 36.0754 11.3686C36.0319 11.3764 35.9904 11.3927 35.9533 11.4167C35.9025 11.4349 35.8563 11.4638 35.8175 11.5013C35.7788 11.5388 35.7485 11.5841 35.7286 11.6343C35.7088 11.6844 35.6998 11.7382 35.7023 11.792C35.7048 11.8459 35.7188 11.8986 35.7433 11.9467C35.8333 12.1367 36.06 12.2533 36.1966 12.18Z" fill="white"/>
|
||||
<path d="M39.25 19.0033C39.4567 18.9433 39.8667 18.7667 39.71 18.4C39.658 18.3082 39.5775 18.2357 39.4807 18.1937C39.3839 18.1516 39.276 18.1421 39.1734 18.1667C39.2112 18.0911 39.2309 18.0078 39.2309 17.9233C39.2309 17.8389 39.2112 17.7555 39.1734 17.68C39.0992 17.5702 38.9879 17.4908 38.8599 17.4565C38.7319 17.4222 38.5958 17.4353 38.4767 17.4933C38.3772 17.5479 38.3015 17.6373 38.2639 17.7444C38.2264 17.8514 38.2298 17.9686 38.2734 18.0733C38.3464 18.1694 38.4423 18.2456 38.5523 18.2951C38.6624 18.3446 38.7831 18.3657 38.9034 18.3567C38.8772 18.3853 38.8572 18.419 38.8445 18.4557C38.8319 18.4924 38.827 18.5313 38.83 18.57C38.85 18.7333 38.4667 18.67 38.4767 18.9033C38.4867 19.1367 38.2334 19.2367 38.28 19.5167C38.3267 19.7967 38.55 20.0333 38.77 19.91C38.9579 19.7821 39.0967 19.594 39.1634 19.3767C39.2234 19.2067 39.04 19.06 39.25 19.0033Z" fill="white"/>
|
||||
<path d="M35.5167 12.5367C35.4748 12.4663 35.4085 12.4139 35.3305 12.3893C35.2524 12.3647 35.168 12.3697 35.0934 12.4033C35.047 12.4262 35.0087 12.4627 34.9836 12.508C34.9586 12.5533 34.948 12.6052 34.9534 12.6567C34.926 12.7158 34.9136 12.7807 34.9171 12.8458C34.9206 12.9109 34.9399 12.9741 34.9734 13.03C35.0149 13.087 35.0765 13.1262 35.1457 13.1398C35.2149 13.1534 35.2867 13.1404 35.3467 13.1033C35.4121 13.0798 35.4661 13.0322 35.4977 12.9703C35.5293 12.9084 35.5361 12.8368 35.5167 12.77C35.5339 12.7335 35.5429 12.6937 35.5429 12.6533C35.5429 12.613 35.5339 12.5731 35.5167 12.5367Z" fill="white"/>
|
||||
<path d="M31.6367 5.77333C31.6367 5.70666 31.46 5.55666 31.3833 5.57666C31.3066 5.59666 31.2333 5.82666 31.26 5.86333C31.2866 5.9 31.4566 6.05333 31.5233 6.01666C31.5596 5.98752 31.5887 5.95041 31.6084 5.90822C31.628 5.86602 31.6377 5.81987 31.6367 5.77333Z" fill="white"/>
|
||||
<path d="M30.85 7.62333C30.9406 7.68456 31.0462 7.72 31.1554 7.72587C31.2646 7.73174 31.3734 7.70782 31.47 7.65666C31.6167 7.5 31.5934 7.32333 31.3967 7.14C31.3628 7.10579 31.3212 7.08033 31.2753 7.06581C31.2294 7.0513 31.1807 7.04816 31.1334 7.05666C31.1449 7.01522 31.1449 6.97143 31.1334 6.93C31.1088 6.85295 31.057 6.78747 30.9877 6.74577C30.9184 6.70407 30.8363 6.68898 30.7567 6.70333C30.6896 6.71846 30.6312 6.75958 30.5943 6.81769C30.5574 6.8758 30.5451 6.94615 30.56 7.01333C30.5666 7.08408 30.5993 7.14985 30.6516 7.19789C30.704 7.24593 30.7723 7.27281 30.8434 7.27333C30.8027 7.32295 30.7811 7.38542 30.7823 7.44956C30.7835 7.51369 30.8075 7.57529 30.85 7.62333Z" fill="white"/>
|
||||
<path d="M26.89 4.17334C26.97 4.25 27.07 4.31334 27.1833 4.21667C27.2375 4.16019 27.2677 4.08494 27.2677 4.00667C27.2677 3.9284 27.2375 3.85315 27.1833 3.79667C27.0824 3.80898 26.9844 3.83828 26.8933 3.88334C26.869 3.89882 26.849 3.9201 26.835 3.94526C26.8211 3.97042 26.8136 3.99866 26.8132 4.02744C26.8129 4.05621 26.8198 4.08462 26.8332 4.11009C26.8465 4.13556 26.8661 4.1573 26.89 4.17334Z" fill="white"/>
|
||||
<path d="M35.6566 11.36C35.561 11.3031 35.4561 11.2636 35.3466 11.2433C35.1866 11.2433 35.09 11.4467 35.1366 11.6167C35.1464 11.6503 35.163 11.6816 35.1853 11.7087C35.2077 11.7357 35.2353 11.7579 35.2665 11.7738C35.2978 11.7897 35.3319 11.7991 35.3669 11.8013C35.4019 11.8035 35.437 11.7985 35.47 11.7867C35.5506 11.754 35.6153 11.6911 35.6502 11.6113C35.6851 11.5316 35.6874 11.4414 35.6566 11.36Z" fill="white"/>
|
||||
<path d="M33.14 8.41333C33.2038 8.44103 33.2753 8.44518 33.3419 8.42503C33.4084 8.40488 33.4656 8.36175 33.5033 8.30333C33.5222 8.27846 33.5353 8.2497 33.5416 8.21914C33.548 8.18858 33.5474 8.15699 33.54 8.12666C33.47 8.00333 33.3767 7.89666 33.2867 7.77C33.37 7.43666 33.2867 7.16333 33.09 7.10333C32.9738 7.09795 32.8586 7.12663 32.7585 7.18585C32.6585 7.24507 32.5779 7.33225 32.5267 7.43666C32.5115 7.40866 32.4911 7.38378 32.4667 7.36333C32.4078 7.31683 32.335 7.29153 32.26 7.29153C32.185 7.29153 32.1122 7.31683 32.0533 7.36333C32.0073 7.42921 31.981 7.50681 31.9775 7.58709C31.9739 7.66737 31.9933 7.74699 32.0333 7.81666C32.1077 7.86227 32.1946 7.88299 32.2816 7.87579C32.3685 7.8686 32.4508 7.83387 32.5167 7.77666C32.5185 7.76786 32.5185 7.7588 32.5167 7.75C32.6494 7.86943 32.8117 7.95115 32.9867 7.98666C32.9633 8.15 32.8967 8.33666 33.14 8.41333Z" fill="white"/>
|
||||
<path d="M37.1967 16.17C37.25 16.17 37.3934 16.08 37.3734 16.0133C37.3551 15.9827 37.3284 15.958 37.2965 15.942C37.2646 15.9261 37.2288 15.9196 37.1934 15.9233C37.1334 15.9233 37.0167 15.9833 37.04 16.05C37.0533 16.082 37.0747 16.11 37.1022 16.1311C37.1297 16.1521 37.1623 16.1656 37.1967 16.17Z" fill="white"/>
|
||||
<path d="M37.8401 15.5033C37.8758 15.4551 37.8951 15.3967 37.8951 15.3367C37.8951 15.2767 37.8758 15.2182 37.8401 15.17C37.7994 15.1073 37.7389 15.06 37.6681 15.0358C37.5974 15.0116 37.5206 15.0119 37.4501 15.0367C37.2534 15.1467 37.2801 15.34 37.2867 15.5167C37.6067 15.65 37.7334 15.65 37.8401 15.5033Z" fill="white"/>
|
||||
<path d="M38.2733 11.8833C38.2 11.7167 38.1266 11.55 38.05 11.3867L37.9933 11.4067C37.9364 11.4397 37.8928 11.4916 37.8699 11.5533C37.7719 11.5255 37.668 11.5255 37.57 11.5533C37.3533 11.5967 37.2366 11.7433 37.2633 11.9033C37.2899 12.0633 37.6333 12.32 37.76 12.3C37.8442 12.2839 37.9203 12.2394 37.9755 12.1738C38.0308 12.1083 38.0617 12.0257 38.0633 11.94C38.1273 11.956 38.195 11.9477 38.2533 11.9167C38.2533 11.9167 38.2733 11.89 38.2733 11.8833Z" fill="white"/>
|
||||
<path d="M24.6333 0.890001C24.6701 0.963294 24.7325 1.02047 24.8088 1.0506C24.8851 1.08074 24.9697 1.08171 25.0467 1.05333C25.1082 1.02611 25.1572 0.976625 25.1838 0.914803C25.2103 0.852982 25.2126 0.783395 25.19 0.720001L25.17 0.683334L24.7333 0.573334C24.6904 0.612772 24.6586 0.662765 24.6411 0.718328C24.6235 0.77389 24.6209 0.833082 24.6333 0.890001Z" fill="white"/>
|
||||
<path d="M39.9933 19.81C39.9799 19.8158 39.9676 19.8236 39.9567 19.8333C39.9149 19.8931 39.894 19.965 39.897 20.0378C39.9 20.1107 39.9268 20.1805 39.9733 20.2367H39.9933C39.9933 20.15 39.9933 20.0667 39.9933 19.9833C39.9933 19.9 39.9933 19.8733 39.9933 19.81Z" fill="white"/>
|
||||
<path d="M20.21 2.94C20.2564 3.04467 20.3345 3.13211 20.4333 3.19C20.4566 3.24864 20.4931 3.30111 20.54 3.34333C20.6572 3.41731 20.7981 3.444 20.9343 3.41801C21.0704 3.39202 21.1916 3.31529 21.2733 3.20333C21.3095 3.16331 21.3369 3.11616 21.3538 3.06492C21.3706 3.01367 21.3766 2.95947 21.3713 2.90578C21.3659 2.8521 21.3494 2.80012 21.3228 2.7532C21.2962 2.70628 21.26 2.66545 21.2167 2.63333C21.1195 2.54186 20.99 2.4927 20.8567 2.49667C20.8047 2.43353 20.7324 2.39039 20.6522 2.37458C20.5719 2.35878 20.4887 2.37129 20.4167 2.41C20.3662 2.4286 20.3203 2.45769 20.2819 2.49535C20.2435 2.53302 20.2136 2.5784 20.1941 2.62849C20.1745 2.67859 20.1658 2.73226 20.1686 2.78596C20.1713 2.83966 20.1854 2.89216 20.21 2.94Z" fill="white"/>
|
||||
<path d="M22.8033 0.583331C22.8026 0.644296 22.8239 0.703472 22.8633 0.749997C22.93 0.796203 23.0078 0.82367 23.0887 0.829533C23.1696 0.835396 23.2506 0.819441 23.3233 0.783331C23.3233 0.783331 23.3233 0.753331 23.3466 0.736664C23.4123 0.689395 23.4652 0.626606 23.5007 0.553901C23.5362 0.481196 23.5531 0.400837 23.5499 0.319997C23.3166 0.276664 23.0799 0.236664 22.8433 0.203331C22.8018 0.242117 22.7718 0.291536 22.7566 0.3462C22.7413 0.400865 22.7413 0.458676 22.7566 0.51333C22.7686 0.538856 22.7843 0.56245 22.8033 0.583331Z" fill="white"/>
|
||||
<path d="M38.87 13.4233C38.8616 13.4618 38.8616 13.5016 38.87 13.54C38.8711 13.5799 38.8837 13.6187 38.9061 13.6518C38.9286 13.6848 38.9599 13.7108 38.9966 13.7267C38.87 13.3433 38.73 12.9667 38.5833 12.5933C38.4869 12.6455 38.4116 12.7295 38.3703 12.8311C38.3289 12.9326 38.3241 13.0453 38.3566 13.15C38.4005 13.2455 38.4745 13.3239 38.5672 13.3733C38.6599 13.4226 38.7663 13.4402 38.87 13.4233Z" fill="white"/>
|
||||
<path d="M36.89 13.3C36.8884 13.3266 36.8884 13.3534 36.89 13.38C36.9369 13.4969 37.0212 13.595 37.1298 13.6589C37.2383 13.7229 37.365 13.749 37.49 13.7333C37.75 13.6833 37.8867 13.4 37.8233 13.0667C37.8092 12.9581 37.7531 12.8593 37.6672 12.7915C37.5813 12.7236 37.4722 12.692 37.3633 12.7033C37.2904 12.6354 37.2008 12.588 37.1037 12.5657C37.0065 12.5435 36.9052 12.5473 36.81 12.5767C36.7323 12.6388 36.6755 12.7231 36.6469 12.8184C36.6183 12.9137 36.6194 13.0154 36.65 13.11C36.674 13.1571 36.7078 13.1984 36.7492 13.2312C36.7906 13.264 36.8387 13.2875 36.89 13.3Z" fill="white"/>
|
||||
<path d="M20.4034 0.640002C20.4934 0.693336 20.6767 0.850002 20.7967 0.726669C20.9167 0.603336 20.7734 0.413336 20.7234 0.313336C20.6734 0.213336 20.5034 0.220002 20.39 0.313336C20.2767 0.406669 20.2734 0.560002 20.4034 0.640002Z" fill="white"/>
|
||||
<path d="M38.0167 14.6067C38.0568 14.5897 38.0929 14.5645 38.1227 14.5326C38.1524 14.5008 38.1751 14.463 38.1892 14.4218C38.2034 14.3806 38.2087 14.3369 38.2048 14.2935C38.2009 14.2501 38.188 14.208 38.1667 14.17C38.1478 14.138 38.1224 14.1103 38.0922 14.0886C38.0619 14.067 38.0275 14.0519 37.9911 14.0444C37.9547 14.0369 37.9171 14.037 37.8807 14.0449C37.8444 14.0527 37.8101 14.0681 37.7801 14.09C37.6667 14.1633 37.5434 14.2433 37.6 14.3733C37.7134 14.6067 37.8767 14.6833 38.0167 14.6067Z" fill="white"/>
|
||||
<path d="M23.4967 3.07334C23.4938 3.09434 23.4938 3.11566 23.4967 3.13667C23.4077 3.13262 23.3187 3.14646 23.2352 3.17738C23.1516 3.20829 23.075 3.25566 23.01 3.31667C22.9871 3.34606 22.9703 3.37973 22.9605 3.41572C22.9508 3.4517 22.9483 3.48927 22.9533 3.52622C22.9583 3.56316 22.9706 3.59875 22.9895 3.63088C23.0084 3.66301 23.0335 3.69104 23.0634 3.71333C23.0981 3.75347 23.1405 3.78635 23.1879 3.81009C23.2354 3.83383 23.2871 3.84796 23.3401 3.85168C23.393 3.8554 23.4462 3.84862 23.4965 3.83175C23.5469 3.81487 23.5934 3.78822 23.6334 3.75333C23.678 3.70223 23.7112 3.64219 23.7307 3.57724C23.7503 3.51228 23.7557 3.4439 23.7467 3.37667C23.7985 3.38086 23.8503 3.36985 23.8959 3.34498C23.9415 3.32011 23.9789 3.28246 24.0034 3.23667C24.1067 3.06667 23.9867 2.93333 23.8734 2.79C23.7034 2.83333 23.5034 2.84334 23.4967 3.07334Z" fill="white"/>
|
||||
<path d="M21.03 0.389999C21.0777 0.487117 21.1592 0.563435 21.2593 0.604572C21.3594 0.645709 21.4711 0.648825 21.5733 0.613332C21.6181 0.5977 21.659 0.572699 21.6933 0.539998C21.7082 0.580646 21.7308 0.618008 21.76 0.649998C21.87 0.753332 22.28 0.673332 22.4066 0.519999C22.4364 0.462884 22.452 0.399417 22.452 0.334998C22.452 0.27058 22.4364 0.207113 22.4066 0.149998C21.9666 0.096665 21.5233 0.0533321 21.0733 0.0299988C21.0152 0.140639 20.9998 0.268742 21.03 0.389999Z" fill="white"/>
|
||||
<path d="M24.0467 4.60666C23.9699 4.52491 23.869 4.46983 23.7586 4.44944C23.6483 4.42906 23.5344 4.44443 23.4334 4.49333C23.3475 4.58113 23.2965 4.69714 23.2897 4.81977C23.283 4.9424 23.321 5.06331 23.3967 5.16C23.4337 5.19583 23.4776 5.22376 23.5258 5.24209C23.5739 5.26043 23.6252 5.26879 23.6767 5.26666C23.6526 5.30259 23.6378 5.34397 23.6338 5.38704C23.6297 5.43011 23.6364 5.47352 23.6534 5.51333C23.6851 5.58867 23.7452 5.64845 23.8208 5.67966C23.8963 5.71088 23.9811 5.711 24.0567 5.68C24.1132 5.65997 24.1621 5.62294 24.1967 5.574C24.2312 5.52505 24.2498 5.46659 24.2498 5.40667C24.2498 5.34674 24.2312 5.28828 24.1967 5.23933C24.1621 5.19039 24.1132 5.15336 24.0567 5.13333H24.0834C24.1178 5.09743 24.1443 5.05473 24.1612 5.00799C24.1781 4.96124 24.185 4.91148 24.1816 4.86189C24.1781 4.8123 24.1643 4.76397 24.1411 4.72002C24.1179 4.67607 24.0857 4.63746 24.0467 4.60666Z" fill="white"/>
|
||||
<path d="M39.3733 15.0267C39.3166 14.8067 39.2533 14.5867 39.19 14.36C39.1493 14.3956 39.1174 14.4401 39.0966 14.49C39.0376 14.4894 38.9792 14.5032 38.9266 14.53C38.9266 14.53 38.9266 14.53 38.9033 14.53C38.5133 14.5567 38.4166 14.8167 38.6233 15.27C38.606 15.3015 38.5847 15.3307 38.56 15.3567C38.5136 15.3978 38.4842 15.4547 38.4775 15.5163C38.4707 15.5779 38.487 15.6398 38.5233 15.69C38.5491 15.7401 38.59 15.7809 38.6403 15.8067C38.6905 15.8324 38.7475 15.8417 38.8033 15.8333C39.11 15.8333 39.21 15.7267 39.1866 15.42C39.1866 15.3267 39.1866 15.2367 39.1866 15.1467C39.2076 15.1501 39.229 15.1501 39.25 15.1467C39.3009 15.1182 39.3434 15.0768 39.3733 15.0267Z" fill="white"/>
|
||||
<path d="M37.3534 10.2533C37.361 10.2908 37.3824 10.3241 37.4134 10.3467C37.3518 10.366 37.2995 10.4072 37.2663 10.4625C37.2332 10.5178 37.2214 10.5833 37.2334 10.6467C37.2334 10.6467 37.2334 10.6633 37.2334 10.67C37.1486 10.7333 37.0818 10.8177 37.0397 10.9147C36.9976 11.0118 36.9816 11.1182 36.9934 11.2233C37.0153 11.2725 37.0478 11.3163 37.0884 11.3516C37.129 11.3869 37.1769 11.4129 37.2286 11.4279C37.2804 11.4428 37.3347 11.4462 37.3879 11.438C37.4412 11.4297 37.4919 11.4099 37.5367 11.38C37.5914 11.3559 37.6372 11.3153 37.6676 11.2639C37.6981 11.2125 37.7118 11.1529 37.7067 11.0933C37.7748 11.1077 37.8439 11.1167 37.9134 11.12C37.7367 10.7667 37.5534 10.42 37.3567 10.08C37.3462 10.1372 37.3451 10.1958 37.3534 10.2533Z" fill="white"/>
|
||||
<path d="M32.8967 5.66666C32.65 5.71666 32.5633 5.82666 32.5867 6C32.6367 6.24333 32.8133 6.38333 33.0067 6.33333C33.0883 6.27946 33.156 6.20693 33.2041 6.12173C33.2522 6.03653 33.2794 5.9411 33.2833 5.84333C33.2733 5.68666 33.12 5.60666 32.8967 5.66666Z" fill="white"/>
|
||||
<path d="M36.5033 9.91C36.433 9.90764 36.3642 9.93005 36.3087 9.97331C36.2533 10.0166 36.2148 10.0779 36.2 10.1467C36.1914 10.192 36.1924 10.2386 36.2028 10.2835C36.2132 10.3284 36.2328 10.3707 36.2603 10.4077C36.2879 10.4447 36.3229 10.4755 36.363 10.4983C36.4031 10.5211 36.4474 10.5353 36.4933 10.54C36.5405 10.5305 36.5854 10.5117 36.6253 10.4847C36.6652 10.4577 36.6993 10.423 36.7257 10.3826C36.7521 10.3423 36.7701 10.2972 36.7789 10.2498C36.7876 10.2024 36.7869 10.1537 36.7766 10.1067C36.7718 10.0757 36.7609 10.0461 36.7444 10.0194C36.728 9.99269 36.7065 9.96953 36.6811 9.95124C36.6556 9.93294 36.6268 9.91988 36.5963 9.9128C36.5658 9.90572 36.5342 9.90477 36.5033 9.91Z" fill="white"/>
|
||||
<path d="M32.06 5.47333C32.2467 5.47333 32.4267 5.55667 32.5167 5.36C32.5463 5.29696 32.5524 5.22546 32.5341 5.15828C32.5158 5.09111 32.4742 5.03264 32.4167 4.99333C32.3915 4.97269 32.3634 4.95584 32.3334 4.94333C32.3667 4.84724 32.3667 4.74276 32.3334 4.64667C32.2712 4.59654 32.1956 4.56599 32.1161 4.55887C32.0366 4.55175 31.9568 4.56838 31.8867 4.60667C31.8598 4.62429 31.8372 4.64779 31.8206 4.6754C31.804 4.703 31.7939 4.734 31.791 4.76607C31.7881 4.79814 31.7925 4.83045 31.8039 4.86057C31.8153 4.89069 31.8333 4.91785 31.8567 4.94C31.9069 5.0051 31.9664 5.06239 32.0334 5.11C31.9938 5.22986 32.0034 5.36053 32.06 5.47333Z" fill="white"/>
|
||||
<path d="M33.0501 7.02333C33.07 7.04834 33.0954 7.06854 33.1243 7.08241C33.1531 7.09629 33.1847 7.1035 33.2167 7.1035C33.2487 7.1035 33.2803 7.09629 33.3092 7.08241C33.338 7.06854 33.3634 7.04834 33.3834 7.02333C33.4548 6.96189 33.5012 6.87651 33.5141 6.78322C33.527 6.68994 33.5054 6.59516 33.4534 6.51666C33.3815 6.45807 33.2933 6.42311 33.2008 6.41654C33.1084 6.40998 33.0161 6.43214 32.9367 6.48C32.81 6.58666 32.8667 6.85 33.0501 7.02333Z" fill="white"/>
|
||||
<path d="M16.2733 0.976669L16.1533 1.03334C16.1495 0.984002 16.1309 0.936959 16.1 0.89832C16.0691 0.859681 16.0272 0.831232 15.9799 0.816669C15.8533 0.763335 15.7133 0.780002 15.6633 0.913336C15.6145 1.01803 15.6085 1.13763 15.6466 1.24667C15.6691 1.2854 15.7028 1.31636 15.7433 1.33541C15.7838 1.35447 15.8291 1.36073 15.8733 1.35334C15.856 1.46221 15.8606 1.57345 15.887 1.68049C15.9133 1.78754 15.9608 1.88824 16.0266 1.97667C16.0971 2.09125 16.2057 2.17738 16.3333 2.22C16.4193 2.24655 16.5101 2.25404 16.5993 2.24195C16.6886 2.22987 16.7741 2.19849 16.8499 2.15C17.0333 2.05334 17.2333 2.11667 17.3599 1.95334C17.4811 1.81019 17.5519 1.63126 17.5615 1.444C17.5711 1.25674 17.5191 1.07149 17.4133 0.916669C17.3521 0.81864 17.2678 0.737038 17.1679 0.678948C17.068 0.620858 16.9554 0.588037 16.8399 0.583336C16.6066 0.586669 16.5033 0.883336 16.2733 0.976669Z" fill="white"/>
|
||||
<path d="M22.3467 2.89333C22.3151 2.92527 22.2916 2.96436 22.2782 3.0073C22.2649 3.05023 22.2621 3.09575 22.2701 3.14C22.2934 3.20667 22.4267 3.36 22.5167 3.34C22.6067 3.32 22.6401 3.11333 22.6367 3.03333C22.6334 2.95333 22.4334 2.82 22.3467 2.89333Z" fill="white"/>
|
||||
<path d="M22.7467 2.63667C22.8429 2.58351 22.9229 2.50518 22.9781 2.41006C23.0333 2.31495 23.0616 2.20662 23.06 2.09667C23.124 1.99353 23.1468 1.87011 23.1239 1.75092C23.1011 1.63173 23.0342 1.5255 22.9367 1.45333C22.8368 1.37067 22.7113 1.32545 22.5817 1.32545C22.452 1.32545 22.3265 1.37067 22.2267 1.45333C22.1897 1.39128 22.1316 1.34464 22.063 1.32198C21.9944 1.29932 21.92 1.30217 21.8533 1.33C21.8205 1.34746 21.7914 1.3713 21.7679 1.40013C21.7443 1.42895 21.7268 1.46218 21.7162 1.49788C21.7056 1.53357 21.7023 1.57101 21.7064 1.608C21.7105 1.64499 21.7219 1.6808 21.74 1.71333C21.7509 1.74565 21.7687 1.77519 21.7923 1.79987C21.8159 1.82455 21.8445 1.84376 21.8763 1.85615C21.9081 1.86855 21.9422 1.87382 21.9762 1.87161C22.0103 1.86939 22.0434 1.85974 22.0733 1.84333C22.085 2.01874 22.1568 2.18475 22.2767 2.31333C22.3033 2.33839 22.3323 2.36073 22.3633 2.38C22.3648 2.39106 22.3648 2.40227 22.3633 2.41333C22.4467 2.60666 22.6067 2.68667 22.7467 2.63667Z" fill="white"/>
|
||||
<path d="M23.6067 8.05C23.6128 8.09328 23.6305 8.1341 23.6579 8.16819C23.6852 8.20227 23.7213 8.22836 23.7622 8.2437C23.8031 8.25905 23.8474 8.26309 23.8904 8.2554C23.9335 8.24771 23.9736 8.22857 24.0067 8.2C24.0324 8.16386 24.0483 8.12168 24.0528 8.07756C24.0574 8.03345 24.0504 7.98891 24.0326 7.94829C24.0148 7.90767 23.9868 7.87235 23.9513 7.84578C23.9158 7.81921 23.874 7.80229 23.83 7.79667C23.769 7.80602 23.7132 7.83652 23.6724 7.88282C23.6316 7.92912 23.6083 7.9883 23.6067 8.05Z" fill="white"/>
|
||||
<path d="M24.47 6.17667C24.4318 6.09898 24.3648 6.03921 24.2833 6.01C24.155 5.96311 24.0135 5.96824 23.8889 6.0243C23.7644 6.08035 23.6667 6.18288 23.6167 6.31L23.54 6.48C23.43 6.43 23.33 6.37334 23.2267 6.33334C23.1909 6.31236 23.151 6.29967 23.1097 6.2962C23.0685 6.29273 23.0269 6.29857 22.9882 6.31329C22.9495 6.328 22.9146 6.35122 22.8861 6.38123C22.8575 6.41124 22.8361 6.44727 22.8233 6.48667C22.7785 6.56384 22.7587 6.65296 22.7664 6.74186C22.7742 6.83075 22.8092 6.91508 22.8667 6.98334C22.9026 7.02992 22.9502 7.06618 23.0046 7.08842C23.059 7.11067 23.1184 7.11811 23.1767 7.11C23.1812 7.14226 23.1921 7.1733 23.2087 7.20134C23.2253 7.22937 23.2472 7.25384 23.2733 7.27333C23.4467 7.34334 23.6067 7.16 23.6067 7.06C23.6064 7.03693 23.6016 7.01413 23.5924 6.99296C23.5833 6.97178 23.57 6.95264 23.5533 6.93667C23.5765 6.91919 23.601 6.90359 23.6267 6.89C23.68 6.91333 23.7367 6.94333 23.7933 6.96333C23.8996 7.00095 24.0145 7.0068 24.124 6.98016C24.2335 6.95352 24.3329 6.89555 24.41 6.81333C24.4726 6.72074 24.5108 6.61392 24.5213 6.50267C24.5318 6.39142 24.5142 6.27932 24.47 6.17667Z" fill="white"/>
|
||||
<path d="M22.1833 4.43C22.1161 4.36761 22.031 4.32796 21.94 4.31667L21.8933 4.28C21.4467 4.24666 21.5833 3.94666 21.27 3.82666C21.2214 3.81182 21.1708 3.80507 21.12 3.80666C21.0508 3.80486 20.9825 3.82286 20.9232 3.85855C20.8639 3.89424 20.816 3.94614 20.7852 4.00812C20.7544 4.07011 20.7419 4.13961 20.7492 4.20844C20.7566 4.27728 20.7835 4.34258 20.8267 4.39666C20.9434 4.56063 21.08 4.70954 21.2333 4.84C21.3196 4.90083 21.4251 4.92809 21.53 4.91666C21.5415 4.94446 21.5573 4.97032 21.5767 4.99333C21.7233 5.15111 21.8967 5.13444 22.0967 4.94333C22.1634 4.87784 22.2077 4.79292 22.2233 4.70073C22.2389 4.60853 22.2249 4.51377 22.1833 4.43Z" fill="white"/>
|
||||
<path d="M16.0933 5.33C16.1756 5.36967 16.2673 5.38539 16.3581 5.37537C16.4489 5.36535 16.535 5.32999 16.6066 5.27333C16.6613 5.21197 16.6942 5.13429 16.7002 5.05232C16.7063 4.97036 16.6851 4.88869 16.64 4.82C16.7515 4.76542 16.8405 4.67362 16.8916 4.56044C16.9428 4.44725 16.9528 4.31978 16.92 4.2C16.8879 4.10221 16.829 4.01539 16.7501 3.94939C16.6711 3.88339 16.5752 3.84087 16.4733 3.82666C16.5175 3.78392 16.5516 3.73176 16.573 3.67406C16.5943 3.61635 16.6024 3.55459 16.5966 3.49333C16.5966 3.11 16.37 2.88666 16.13 2.88C16.0317 2.89059 15.9372 2.92378 15.854 2.97699C15.7707 3.03019 15.7009 3.10196 15.65 3.18666C15.6198 3.12813 15.5691 3.08281 15.5076 3.05942C15.446 3.03604 15.378 3.03624 15.3166 3.06C15.2497 3.09258 15.1971 3.14862 15.1689 3.21746C15.1406 3.2863 15.1386 3.36313 15.1633 3.43333C15.1863 3.50507 15.2366 3.56487 15.3034 3.5998C15.3701 3.63473 15.4479 3.64199 15.52 3.62L15.57 3.59666C15.6017 3.6903 15.6592 3.7731 15.7359 3.83558C15.8125 3.89807 15.9052 3.93772 16.0033 3.95H16.0433C15.9775 4.02248 15.9352 4.11324 15.9221 4.21026C15.909 4.30728 15.9257 4.406 15.97 4.49333C15.9955 4.57164 16.0363 4.64413 16.09 4.70666C16.0546 4.71084 16.0206 4.72252 15.9901 4.74092C15.9596 4.75931 15.9335 4.784 15.9133 4.81333C15.8898 4.85881 15.8757 4.9086 15.8721 4.95968C15.8684 5.01076 15.8753 5.06204 15.8921 5.1104C15.909 5.15876 15.9355 5.20317 15.9701 5.24093C16.0047 5.27868 16.0466 5.30899 16.0933 5.33Z" fill="white"/>
|
||||
<path d="M15.57 4.87666C15.5586 4.83745 15.5394 4.80092 15.5137 4.76921C15.488 4.7375 15.4561 4.71125 15.4201 4.692C15.3841 4.67275 15.3446 4.66089 15.3039 4.65711C15.2633 4.65333 15.2223 4.65771 15.1833 4.67C15.1153 4.70368 15.0635 4.76294 15.0391 4.8348C15.0147 4.90665 15.0199 4.98524 15.0533 5.05333C15.0769 5.11874 15.1244 5.17273 15.1863 5.20431C15.2483 5.23589 15.3199 5.24269 15.3867 5.22333C15.4231 5.21536 15.4574 5.19954 15.4872 5.17695C15.5169 5.15437 15.5414 5.12557 15.5588 5.09256C15.5763 5.05955 15.5863 5.02313 15.5882 4.98585C15.5902 4.94856 15.584 4.9113 15.57 4.87666Z" fill="white"/>
|
||||
<path d="M15.1933 9.60667C15.1685 9.62149 15.1486 9.64332 15.1361 9.66942C15.1237 9.69551 15.1192 9.72471 15.1233 9.75333C15.14 9.80333 15.2433 9.82 15.3033 9.81667C15.3633 9.81333 15.4366 9.73 15.4133 9.65333C15.39 9.57667 15.2466 9.60667 15.1933 9.60667Z" fill="white"/>
|
||||
<path d="M6.94003 6.71334C6.86669 6.74667 6.69669 6.87 6.76336 7.02667C6.83003 7.18334 7.01669 7.11 7.07669 7.08C7.11269 7.05415 7.14203 7.02012 7.16232 6.98072C7.1826 6.94131 7.19324 6.89766 7.19336 6.85334C7.18966 6.82543 7.17946 6.79879 7.16359 6.77554C7.14772 6.75229 7.12662 6.73309 7.10198 6.71947C7.07735 6.70586 7.04986 6.69821 7.02173 6.69714C6.9936 6.69608 6.96562 6.70162 6.94003 6.71334Z" fill="white"/>
|
||||
<path d="M24.4566 2.01667C24.5541 1.92524 24.6126 1.79979 24.6201 1.66634C24.6275 1.5329 24.5833 1.40171 24.4966 1.3C24.3678 1.22067 24.2195 1.17866 24.0683 1.17866C23.917 1.17866 23.7687 1.22067 23.6399 1.3C23.5564 1.40401 23.5155 1.53583 23.5254 1.66884C23.5353 1.80186 23.5953 1.92617 23.6933 2.01667C23.802 2.10237 23.9365 2.14897 24.0749 2.14897C24.2134 2.14897 24.3478 2.10237 24.4566 2.01667Z" fill="white"/>
|
||||
<path d="M25.2733 6.60667C25.2733 6.75333 25.3733 6.79 25.6733 6.75667C25.6991 6.72105 25.7152 6.67932 25.72 6.63559C25.7248 6.59186 25.7181 6.54764 25.7006 6.50727C25.6832 6.46691 25.6554 6.43179 25.6203 6.40538C25.5851 6.37898 25.5436 6.36219 25.5 6.35667C25.4384 6.36391 25.3815 6.39322 25.3398 6.43918C25.2981 6.48514 25.2745 6.54464 25.2733 6.60667Z" fill="white"/>
|
||||
<path d="M32.1634 15.9933C32.1891 15.9744 32.2103 15.9498 32.2253 15.9215C32.2403 15.8933 32.2488 15.862 32.25 15.83C32.25 15.7867 32.11 15.6867 32.0667 15.7033C32.0234 15.72 32.01 15.8733 32.0234 15.9333C32.0367 15.9933 32.1434 16.01 32.1634 15.9933Z" fill="white"/>
|
||||
<path d="M32.4666 15.21C32.4666 15.2333 32.5233 15.2667 32.56 15.25C32.58 15.2399 32.5956 15.2227 32.6036 15.2017C32.6116 15.1808 32.6115 15.1576 32.6033 15.1367C32.5947 15.1237 32.5827 15.1134 32.5685 15.1069C32.5544 15.1004 32.5387 15.098 32.5233 15.1C32.5194 15.0323 32.5194 14.9644 32.5233 14.8967C32.62 14.6467 32.47 14.3167 32.2533 14.29C32.1652 14.2776 32.0754 14.2936 31.9969 14.3355C31.9185 14.3774 31.8553 14.4432 31.8166 14.5233C31.7741 14.5947 31.7598 14.6794 31.7764 14.7608C31.7931 14.8422 31.8395 14.9144 31.9066 14.9633C32.0166 15.0567 32.1866 15.2967 32.3833 15.2333C32.4124 15.2315 32.4408 15.2236 32.4666 15.21Z" fill="white"/>
|
||||
<path d="M30.3899 6.35334C30.4916 6.40392 30.6077 6.41761 30.7184 6.39207C30.829 6.36654 30.9274 6.30336 30.9966 6.21333C31.1366 6.05333 31.1033 5.88 30.9233 5.70333C30.9282 5.6568 30.9282 5.60987 30.9233 5.56333C30.87 5.34667 30.6899 5.26333 30.4133 5.33667C30.3321 5.36637 30.263 5.42196 30.2166 5.49487C30.1702 5.56777 30.1492 5.65391 30.1566 5.74C30.191 5.83363 30.251 5.91566 30.3299 5.97667C30.3015 6.10529 30.323 6.23991 30.3899 6.35334Z" fill="white"/>
|
||||
<path d="M31.8133 17.94C31.8265 17.9752 31.8467 18.0074 31.8727 18.0346C31.8987 18.0617 31.93 18.0833 31.9646 18.0979C31.9992 18.1126 32.0365 18.1201 32.0741 18.1198C32.1117 18.1196 32.1488 18.1117 32.1833 18.0967C32.2429 18.0668 32.2906 18.0175 32.3185 17.9569C32.3464 17.8963 32.3528 17.828 32.3366 17.7633C32.3215 17.7286 32.2996 17.6973 32.2721 17.6712C32.2447 17.6451 32.2123 17.6248 32.1769 17.6114C32.1415 17.5981 32.1037 17.592 32.0659 17.5934C32.0281 17.5949 31.9909 17.6039 31.9566 17.62C31.9243 17.6288 31.8943 17.6447 31.8688 17.6665C31.8433 17.6883 31.8229 17.7155 31.8092 17.7461C31.7955 17.7767 31.7888 17.81 31.7895 17.8435C31.7902 17.877 31.7983 17.91 31.8133 17.94Z" fill="white"/>
|
||||
<path d="M27.5767 6.18333C27.5815 6.15688 27.5815 6.12978 27.5767 6.10333C27.5467 6.01667 27.4067 5.82 27.33 5.84C27.33 5.84 27.33 5.84 27.3133 5.84C27.2802 5.81593 27.2538 5.7838 27.2367 5.74667C27.1733 5.60333 27.07 5.59333 26.9033 5.62C26.7367 5.64667 26.49 5.70333 26.5367 5.93333C26.5833 6.16333 26.7433 6.16 26.81 6.13667C26.8766 6.11333 27.0067 6.18667 26.9433 6.23333C26.88 6.28 26.8667 6.38 26.98 6.54333C26.998 6.58087 27.0237 6.61416 27.0555 6.64098C27.0874 6.6678 27.1245 6.68754 27.1646 6.69889C27.2046 6.71024 27.2466 6.71294 27.2878 6.70681C27.3289 6.70068 27.3683 6.68586 27.4033 6.66333C27.4809 6.61346 27.5399 6.53943 27.5713 6.45268C27.6026 6.36593 27.6045 6.27127 27.5767 6.18333Z" fill="white"/>
|
||||
<path d="M27.35 9.98C27.3167 9.98 27.2033 10.0433 27.2167 10.1233C27.23 10.2033 27.37 10.21 27.4267 10.2033C27.4534 10.1924 27.4764 10.1741 27.493 10.1504C27.5095 10.1268 27.5189 10.0988 27.52 10.07C27.51 10.02 27.41 9.98333 27.35 9.98Z" fill="white"/>
|
||||
<path d="M26.6899 3.79333C26.7347 3.66604 26.7347 3.5273 26.6899 3.4C26.6635 3.32689 26.6227 3.25977 26.5701 3.20254C26.5174 3.14532 26.4539 3.09913 26.3833 3.06667C26.3499 2.99333 26.2733 2.89667 26.2133 2.9C26.196 2.90142 26.1796 2.90844 26.1666 2.92C26.0733 2.83333 25.9966 2.74333 25.8566 2.74333C25.6704 2.73264 25.4859 2.78323 25.3311 2.88737C25.1764 2.99151 25.0601 3.14347 24.9999 3.32C24.9546 3.42804 24.9373 3.54578 24.9495 3.66231C24.9617 3.77883 25.0032 3.8904 25.0699 3.98667C25.2133 4.18 25.5066 4.07667 25.7199 4.20667C26.2466 4.51 26.5466 4.17 26.6899 3.79333Z" fill="white"/>
|
||||
<path d="M25.8367 7.65C25.8067 7.69667 25.7434 7.76334 25.8067 7.83334C25.8164 7.84461 25.8284 7.85366 25.8419 7.85986C25.8554 7.86607 25.8701 7.86928 25.885 7.86928C25.8999 7.86928 25.9146 7.86607 25.9281 7.85986C25.9416 7.85366 25.9537 7.84461 25.9634 7.83334C26 7.79 26.0867 7.68 26.03 7.61667C25.9734 7.55334 25.8534 7.60667 25.8367 7.65Z" fill="white"/>
|
||||
<path d="M28.57 8.37667C28.62 8.37667 28.7567 8.29 28.7433 8.22333C28.73 8.15667 28.5833 8.10667 28.5333 8.12L28.49 8.14C28.4649 8.10337 28.4267 8.07776 28.3833 8.06845C28.3399 8.05915 28.2946 8.06686 28.2567 8.09C28.09 8.19333 27.8733 8.25667 27.7933 8.48667L27.9 8.74667C27.7667 8.97667 27.7467 9.23 27.87 9.32C27.9173 9.35787 27.9761 9.3785 28.0367 9.3785C28.0973 9.3785 28.156 9.35787 28.2033 9.32C28.3967 9.18 28.4167 9.08 28.3133 8.81333C28.3833 8.65 28.4567 8.50667 28.5067 8.36C28.5266 8.36938 28.5481 8.37503 28.57 8.37667Z" fill="white"/>
|
||||
<path d="M21.8534 5.91667C21.82 5.91667 21.78 5.98 21.8034 6.02667C21.8144 6.04488 21.8313 6.05878 21.8513 6.06605C21.8713 6.07333 21.8932 6.07354 21.9134 6.06667C21.94 6.06667 21.9534 5.98667 21.9434 5.96333C21.9334 5.94 21.89 5.90333 21.8534 5.91667Z" fill="white"/>
|
||||
<path d="M9.33336 5.68334C9.43336 5.73334 9.72336 5.33 9.69003 5.21C9.65669 5.09 9.37336 5.09 9.21669 5.24334C9.06002 5.39667 9.23336 5.63334 9.33336 5.68334Z" fill="white"/>
|
||||
<path d="M11.9967 10.11C12.1221 10.0279 12.2217 9.91206 12.2842 9.77586C12.3467 9.63965 12.3695 9.48858 12.35 9.34C12.2917 9.21327 12.1866 9.11403 12.0567 9.06308C11.9269 9.01213 11.7823 9.01341 11.6534 9.06666C11.5307 9.12836 11.4325 9.22989 11.375 9.35462C11.3174 9.47936 11.304 9.61993 11.3367 9.75333C11.3805 9.88575 11.4732 9.99644 11.5959 10.0627C11.7186 10.129 11.862 10.146 11.9967 10.11Z" fill="white"/>
|
||||
<path d="M11.3467 6.44667C11.4333 6.58667 11.4867 6.78 11.7167 6.72334C11.7861 6.71184 11.8483 6.6737 11.89 6.61705C11.9317 6.56039 11.9496 6.48969 11.94 6.42C11.9304 6.37452 11.9119 6.33138 11.8856 6.29306C11.8593 6.25473 11.8257 6.22198 11.7867 6.19667C11.6367 6.11667 11.5267 6.18667 11.3467 6.44667Z" fill="white"/>
|
||||
<path d="M9.82667 3.46667C9.77001 3.34667 9.68333 3.27333 9.56 3.30666C9.24289 3.37236 8.95268 3.5314 8.72667 3.76333C8.69761 3.80522 8.67513 3.85131 8.66001 3.9C8.59334 4.23333 8.82001 4.45 9.13001 4.36333C9.32259 4.30483 9.50645 4.22074 9.67667 4.11333C9.76736 4.03563 9.83084 3.93096 9.85782 3.81462C9.88481 3.69828 9.8739 3.57636 9.82667 3.46667Z" fill="white"/>
|
||||
<path d="M11.4867 4.79667C11.415 4.82114 11.3551 4.87188 11.3193 4.93866C11.2834 5.00545 11.2742 5.08334 11.2934 5.15667C11.3207 5.23328 11.3751 5.29726 11.4463 5.33655C11.5175 5.37585 11.6007 5.38774 11.68 5.37C11.7147 5.35608 11.7462 5.33544 11.7729 5.30929C11.7995 5.28313 11.8207 5.25196 11.8353 5.21758C11.8499 5.18319 11.8575 5.14627 11.8577 5.10893C11.858 5.07159 11.8508 5.03457 11.8367 5C11.8164 4.92717 11.7684 4.86515 11.7031 4.82717C11.6377 4.78919 11.56 4.77824 11.4867 4.79667Z" fill="white"/>
|
||||
<path d="M7.66 5.48667C7.6661 5.55413 7.69589 5.61726 7.7441 5.66485C7.7923 5.71244 7.8558 5.74143 7.92334 5.74667C8.09667 5.74667 8.21666 5.36333 8.12333 5.27667C8.02999 5.19 7.65333 5.31667 7.66 5.48667Z" fill="white"/>
|
||||
<path d="M8.24998 4.51333C8.22331 4.57666 8.30998 4.66 8.35998 4.68C8.40998 4.7 8.54665 4.68 8.56999 4.59C8.59332 4.5 8.46999 4.43 8.42332 4.42333C8.38914 4.42226 8.35527 4.42998 8.32492 4.44573C8.29457 4.46149 8.26877 4.48476 8.24998 4.51333Z" fill="white"/>
|
||||
<path d="M9.97995 7.73334C10.0895 7.68289 10.1763 7.59358 10.2238 7.48273C10.2712 7.37188 10.2758 7.24738 10.2366 7.13334C10.2155 7.06382 10.1802 6.99946 10.1329 6.94434C10.0855 6.88923 10.0272 6.84457 9.96171 6.81322C9.89618 6.78186 9.82483 6.76449 9.75222 6.76222C9.67961 6.75994 9.60732 6.77281 9.53995 6.8C9.48588 6.81526 9.43542 6.84121 9.39155 6.87632C9.34769 6.91143 9.31132 6.95499 9.28459 7.00441C9.25786 7.05383 9.24131 7.10811 9.23594 7.16403C9.23056 7.21996 9.23646 7.2764 9.25329 7.33C9.31084 7.46958 9.41407 7.58549 9.54608 7.65876C9.67808 7.73203 9.83106 7.75833 9.97995 7.73334Z" fill="white"/>
|
||||
<path d="M9.51004 9.12667C9.57004 9.06667 9.48004 8.88333 9.43338 8.85333C9.39619 8.8437 9.35719 8.84354 9.31992 8.85285C9.28266 8.86217 9.24831 8.88067 9.22004 8.90667C9.20604 8.94232 9.20145 8.98098 9.2067 9.01892C9.21196 9.05687 9.22687 9.09282 9.25004 9.12333C9.2889 9.14768 9.33372 9.16087 9.37957 9.16146C9.42543 9.16205 9.47056 9.15001 9.51004 9.12667Z" fill="white"/>
|
||||
<path d="M12.6734 5.66C12.6234 5.67798 12.5776 5.70599 12.5388 5.74229C12.5001 5.77859 12.4691 5.82244 12.4479 5.87112C12.4267 5.91981 12.4156 5.97232 12.4154 6.02544C12.4152 6.07855 12.4258 6.13115 12.4467 6.18C12.5 6.35333 12.71 6.42 12.9534 6.34333C13.1434 6.28 13.2334 6.13 13.1734 5.97333C13.1134 5.81667 12.8067 5.60667 12.6734 5.66Z" fill="white"/>
|
||||
<path d="M16.56 9.17666C16.62 9.01666 16.62 9.07666 16.7934 9.04666C16.9667 9.01666 17.1867 8.87 17.0367 8.59666C16.9571 8.47907 16.8369 8.39499 16.6991 8.36054C16.5613 8.3261 16.4156 8.34371 16.29 8.41C16.1501 8.50624 16.0521 8.65229 16.0162 8.81832C15.9803 8.98434 16.0091 9.15782 16.0967 9.30333C16.2367 9.49 16.5034 9.33666 16.56 9.17666Z" fill="white"/>
|
||||
<path d="M17.52 0.550003C17.5335 0.517075 17.5379 0.481077 17.5326 0.445852C17.5274 0.410627 17.5126 0.377498 17.49 0.350003C17.44 0.313337 17.3366 0.243337 17.2933 0.300003C17.2754 0.329665 17.2659 0.363671 17.2659 0.398337C17.2659 0.433003 17.2754 0.467008 17.2933 0.49667C17.3233 0.53667 17.4766 0.60667 17.52 0.550003Z" fill="white"/>
|
||||
<path d="M14.1867 0.920001L14.2433 0.890001C14.2032 0.964787 14.1803 1.04759 14.1763 1.13236C14.1722 1.21714 14.1872 1.30174 14.22 1.38C14.2433 1.43798 14.2772 1.49111 14.32 1.53667C14.1958 1.53908 14.0742 1.57271 13.9665 1.63446C13.8587 1.6962 13.7682 1.78409 13.7033 1.89C13.6687 2.00497 13.6732 2.12816 13.716 2.24033C13.7588 2.3525 13.8376 2.44733 13.94 2.51C14.09 2.60667 14.2333 2.66667 14.23 2.89C14.23 3.05667 14.39 3.09333 14.5633 3.08C14.7 2.91 14.6867 2.74667 14.5367 2.65333C14.6248 2.49707 14.6985 2.33305 14.7567 2.16333C14.7612 2.07139 14.7467 1.9795 14.714 1.89344C14.6813 1.80739 14.6312 1.72904 14.5667 1.66333C14.6918 1.6801 14.819 1.65676 14.93 1.59667C15.2933 1.42 15.36 1.26333 15.2467 0.946667C15.2215 0.877838 15.1816 0.815331 15.1298 0.763514C15.078 0.711697 15.0155 0.671819 14.9467 0.646667C14.64 0.726667 14.3367 0.813334 14.0367 0.906667C14.0835 0.928903 14.1367 0.933634 14.1867 0.920001Z" fill="white"/>
|
||||
<path d="M16.86 6.37667C16.7634 6.33366 16.6567 6.31837 16.552 6.3325C16.4472 6.34662 16.3484 6.38962 16.2667 6.45667C16.16 6.57667 16.0367 6.69334 16.1633 6.88334C16.2533 7.02 16.3266 7.17 16.4066 7.31334C16.4066 7.35088 16.4153 7.38791 16.4322 7.42146C16.449 7.45501 16.4735 7.48414 16.5036 7.50651C16.5338 7.52888 16.5688 7.54387 16.6058 7.55026C16.6428 7.55666 16.6807 7.55429 16.7166 7.54334C16.793 7.5188 16.858 7.46754 16.8996 7.39896C16.9413 7.33039 16.9568 7.24909 16.9433 7.17C16.9216 7.06669 16.9216 6.95998 16.9433 6.85667C16.9815 6.77803 16.9941 6.68937 16.9791 6.60322C16.9642 6.51707 16.9225 6.43782 16.86 6.37667Z" fill="white"/>
|
||||
<path d="M17.4366 3.85667C17.5096 3.83287 17.5705 3.78173 17.6065 3.71398C17.6426 3.64623 17.651 3.56714 17.6299 3.49333C17.5997 3.42363 17.5452 3.36728 17.4765 3.33478C17.4078 3.30228 17.3297 3.29585 17.2566 3.31667C17.2224 3.32544 17.1904 3.34146 17.1629 3.36366C17.1354 3.38585 17.113 3.41369 17.0972 3.4453C17.0814 3.47691 17.0726 3.51154 17.0713 3.54686C17.0701 3.58218 17.0764 3.61735 17.0899 3.65C17.098 3.68695 17.1136 3.72184 17.1357 3.75253C17.1579 3.78321 17.186 3.80904 17.2185 3.82841C17.251 3.84777 17.2871 3.86028 17.3246 3.86514C17.3621 3.87 17.4003 3.86712 17.4366 3.85667Z" fill="white"/>
|
||||
<path d="M13.2733 4.27334C13.2572 4.23908 13.2345 4.20837 13.2064 4.18304C13.1783 4.1577 13.1455 4.13825 13.1097 4.12582C13.074 4.11339 13.0362 4.10824 12.9984 4.11068C12.9607 4.11312 12.9238 4.12309 12.89 4.14C12.8845 4.04463 12.8534 3.95249 12.7999 3.87334C12.7132 3.76763 12.6692 3.63323 12.6766 3.49667C12.6775 3.39609 12.6525 3.29697 12.6041 3.20883C12.5556 3.12069 12.4853 3.04648 12.4 2.99334C12.3162 2.93688 12.2176 2.90671 12.1166 2.90671C12.0156 2.90671 11.917 2.93688 11.8333 2.99334L11.7899 3.02334C11.8401 2.90958 11.846 2.78124 11.8066 2.66334C11.7366 2.49667 11.5266 2.44667 11.2866 2.53667C11.1033 2.60334 10.9533 2.83 11.0099 2.96667C11.058 3.06924 11.1377 3.15372 11.2373 3.20771C11.3368 3.2617 11.4511 3.28236 11.5633 3.26667C11.591 3.25809 11.617 3.24454 11.64 3.22667C11.6195 3.30649 11.6195 3.39018 11.64 3.47C11.6855 3.67844 11.8037 3.86392 11.9733 3.99334C12.0326 4.04691 12.0754 4.11629 12.0966 4.19334C12.1002 4.25457 12.119 4.31393 12.1514 4.36599C12.1839 4.41805 12.2288 4.46114 12.2822 4.49132C12.3356 4.5215 12.3958 4.53781 12.4571 4.53874C12.5184 4.53967 12.579 4.52521 12.6333 4.49667C12.6285 4.53417 12.6343 4.57227 12.65 4.60667C12.697 4.66618 12.7629 4.70786 12.8369 4.72483C12.9108 4.7418 12.9883 4.73304 13.0566 4.7C13.0992 4.6868 13.1388 4.66518 13.1729 4.6364C13.207 4.60763 13.235 4.5723 13.2552 4.53251C13.2754 4.49272 13.2874 4.44928 13.2905 4.40476C13.2936 4.36024 13.2878 4.31555 13.2733 4.27334Z" fill="white"/>
|
||||
<path d="M14.71 7.60667C14.7748 7.54372 14.8289 7.47052 14.87 7.39C14.8558 7.35442 14.8346 7.32208 14.8075 7.29493C14.7805 7.26779 14.7483 7.2464 14.7127 7.23207C14.6772 7.21774 14.6392 7.21076 14.6009 7.21155C14.5626 7.21234 14.5249 7.22088 14.49 7.23667C14.37 7.29667 14.3866 7.39333 14.42 7.49C14.4533 7.58667 14.6066 7.67667 14.71 7.60667Z" fill="white"/>
|
||||
<path d="M14.4734 6.31667C14.5382 6.25372 14.5923 6.18052 14.6334 6.1C14.6192 6.06442 14.598 6.03208 14.571 6.00493C14.5439 5.97779 14.5117 5.9564 14.4762 5.94207C14.4407 5.92774 14.4026 5.92076 14.3643 5.92155C14.326 5.92234 14.2883 5.93088 14.2534 5.94667C14.1334 6.00667 14.1501 6.10333 14.1834 6.2C14.2167 6.29667 14.3701 6.4 14.4734 6.31667Z" fill="white"/>
|
||||
<path d="M14.6067 4.47666C14.7133 4.40643 14.7941 4.30333 14.8368 4.18302C14.8795 4.0627 14.8818 3.93174 14.8433 3.81C14.8265 3.7668 14.8008 3.72759 14.7679 3.69489C14.735 3.66219 14.6957 3.63671 14.6524 3.62008C14.6091 3.60346 14.5628 3.59605 14.5165 3.59833C14.4701 3.60061 14.4248 3.61253 14.3833 3.63333C14.3278 3.6453 14.2759 3.67037 14.232 3.70645C14.1881 3.74253 14.1535 3.78858 14.131 3.84075C14.1085 3.89293 14.0988 3.94973 14.1026 4.00642C14.1065 4.06311 14.1239 4.11805 14.1533 4.16666C14.2367 4.40333 14.4533 4.54333 14.6067 4.47666Z" fill="white"/>
|
||||
<path d="M34.4433 7.68666C34.5438 7.66447 34.6329 7.6067 34.6941 7.524C34.7554 7.44131 34.7847 7.33926 34.7767 7.23666C34.7619 7.15754 34.721 7.08566 34.6606 7.03249C34.6002 6.97931 34.5237 6.94792 34.4433 6.94333C34.1533 6.98 33.95 7.15333 33.98 7.34333C34.0091 7.44331 34.0702 7.53101 34.1539 7.59301C34.2375 7.65501 34.3392 7.68791 34.4433 7.68666Z" fill="white"/>
|
||||
<path d="M33.3534 15.4767C33.4231 15.4237 33.4764 15.3521 33.5071 15.2701C33.5377 15.1881 33.5445 15.099 33.5267 15.0133C33.4878 14.948 33.4248 14.9005 33.3512 14.8812C33.2776 14.8618 33.1994 14.8722 33.1334 14.91C33.1 14.9279 33.0707 14.9525 33.0474 14.9823C33.024 15.0121 33.0071 15.0464 32.9977 15.083C32.9883 15.1197 32.9866 15.1579 32.9928 15.1953C32.9989 15.2326 33.0127 15.2683 33.0334 15.3C33.1134 15.4667 33.2434 15.54 33.3534 15.4767Z" fill="white"/>
|
||||
<path d="M33.0566 13.2733C33.0719 13.3414 33.1123 13.4013 33.1698 13.4408C33.2273 13.4804 33.2976 13.4968 33.3667 13.4867C33.4021 13.4834 33.4366 13.4732 33.4681 13.4565C33.4996 13.4399 33.5275 13.4173 33.5503 13.3899C33.573 13.3625 33.5901 13.3309 33.6007 13.2969C33.6112 13.2629 33.6149 13.2271 33.6117 13.1917C33.6084 13.1562 33.5981 13.1217 33.5815 13.0902C33.5649 13.0587 33.5423 13.0308 33.5149 13.0081C33.4875 12.9853 33.4559 12.9682 33.4219 12.9577C33.3879 12.9471 33.3521 12.9434 33.3167 12.9467C33.2447 12.9673 33.1811 13.0099 33.1345 13.0685C33.0879 13.127 33.0607 13.1986 33.0566 13.2733Z" fill="white"/>
|
||||
<path d="M33.22 9.82C33.3511 9.80813 33.4735 9.74933 33.5648 9.65441C33.656 9.55949 33.71 9.43483 33.7166 9.30333C33.7066 9.25715 33.6909 9.21237 33.67 9.17C33.72 9.20666 33.78 9.24 33.8266 9.27333C33.8386 9.28426 33.8528 9.29249 33.8683 9.29745C33.8838 9.30241 33.9001 9.304 33.9162 9.3021C33.9323 9.30021 33.9478 9.29487 33.9617 9.28646C33.9756 9.27804 33.9875 9.26675 33.9966 9.25333C34.0367 9.1833 34.0499 9.10114 34.034 9.02207C34.0181 8.943 33.974 8.87239 33.91 8.82333C33.8746 8.80564 33.8357 8.79636 33.7961 8.79621C33.7566 8.79607 33.7175 8.80506 33.682 8.82248C33.6465 8.8399 33.6156 8.86529 33.5915 8.89666C33.5674 8.92803 33.5509 8.96454 33.5433 9.00333C33.4847 8.93347 33.4111 8.87771 33.328 8.8402C33.2449 8.80269 33.1545 8.78439 33.0633 8.78667C32.9346 8.81895 32.822 8.89696 32.7466 9.00613C32.6711 9.1153 32.638 9.24818 32.6533 9.38C32.6768 9.51034 32.7477 9.62738 32.8523 9.7086C32.9569 9.78983 33.0879 9.82951 33.22 9.82Z" fill="white"/>
|
||||
<path d="M33.3066 22.32C33.3345 22.3137 33.3603 22.3004 33.3817 22.2814C33.4031 22.2625 33.4194 22.2384 33.429 22.2115C33.4387 22.1846 33.4414 22.1557 33.4369 22.1275C33.4324 22.0992 33.4208 22.0726 33.4033 22.05C33.3533 21.97 33.17 21.8133 33.1 21.8467C33.03 21.88 33 22.11 33.0066 22.2067C33.0133 22.3033 33.16 22.3733 33.3066 22.32Z" fill="white"/>
|
||||
<path d="M33.7834 10.7C33.8634 10.6567 34.0667 10.5333 34.04 10.4267C34.0134 10.32 33.7567 10.31 33.6767 10.33C33.5967 10.35 33.5701 10.4867 33.5734 10.5667C33.5722 10.5919 33.5778 10.617 33.5894 10.6394C33.6011 10.6617 33.6184 10.6807 33.6397 10.6942C33.6611 10.7077 33.6856 10.7154 33.7108 10.7164C33.736 10.7174 33.7611 10.7118 33.7834 10.7Z" fill="white"/>
|
||||
<path d="M33.5734 16.0567C33.6236 16.0299 33.6652 15.9895 33.6934 15.94C33.7131 15.9449 33.7337 15.9449 33.7534 15.94C33.8218 15.9243 33.8824 15.8849 33.9245 15.8288C33.9666 15.7727 33.9875 15.7034 33.9834 15.6333C33.9801 15.5994 33.97 15.5664 33.9536 15.5364C33.9373 15.5065 33.9151 15.4801 33.8883 15.4589C33.8615 15.4377 33.8308 15.4222 33.7978 15.4132C33.7649 15.4042 33.7305 15.402 33.6967 15.4067C33.6285 15.421 33.5679 15.4598 33.5261 15.5156C33.4844 15.5714 33.4645 15.6405 33.47 15.71C33.4736 15.749 33.4861 15.7867 33.5067 15.82C33.4534 15.8533 33.3567 15.92 33.39 15.98C33.4108 16.0082 33.4388 16.0302 33.4711 16.0437C33.5034 16.0572 33.5387 16.0617 33.5734 16.0567Z" fill="white"/>
|
||||
<path d="M34.5233 19.3933C34.5489 19.3742 34.5699 19.3496 34.5849 19.3214C34.5999 19.2931 34.6085 19.2619 34.61 19.23C34.61 19.1867 34.5366 19.0733 34.4266 19.1033C34.3166 19.1333 34.37 19.2733 34.3833 19.33C34.3966 19.3867 34.5033 19.4067 34.5233 19.3933Z" fill="white"/>
|
||||
<path d="M30.0533 12.8133C30.0828 12.7503 30.089 12.6788 30.0707 12.6116C30.0524 12.5444 30.0107 12.486 29.9533 12.4467C29.9124 12.4077 29.8581 12.386 29.8016 12.386C29.7452 12.386 29.6908 12.4077 29.6499 12.4467C29.4766 12.5833 29.5233 12.7467 29.5966 12.9367C29.7866 12.94 29.9633 13.01 30.0533 12.8133Z" fill="white"/>
|
||||
<path d="M34.0367 18.04C34.0947 18.0084 34.141 17.9589 34.1687 17.8988C34.1963 17.8387 34.2038 17.7713 34.19 17.7067C34.1467 17.61 33.9667 17.5933 33.82 17.6633C33.7962 17.6709 33.7744 17.6839 33.7565 17.7014C33.7387 17.7189 33.7251 17.7403 33.717 17.764C33.7089 17.7877 33.7065 17.8129 33.7099 17.8377C33.7133 17.8624 33.7225 17.8861 33.7367 17.9067C33.8 18.01 33.89 18.0967 34.0367 18.04Z" fill="white"/>
|
||||
<path d="M31.7233 9.07999C31.7902 9.07855 31.8544 9.05377 31.905 9.00994C31.9555 8.96611 31.9891 8.90599 32 8.84C32.0383 8.84371 32.0769 8.8384 32.1128 8.82451C32.1487 8.81062 32.1808 8.78853 32.2066 8.76C32.227 8.74068 32.2432 8.71743 32.2543 8.69164C32.2654 8.66585 32.2712 8.63807 32.2712 8.61C32.2712 8.58192 32.2654 8.55414 32.2543 8.52836C32.2432 8.50257 32.227 8.47931 32.2066 8.46C32.1894 8.43285 32.1664 8.40988 32.1392 8.39274C32.112 8.3756 32.0814 8.36472 32.0495 8.36089C32.0176 8.35706 31.9852 8.36038 31.9547 8.3706C31.9243 8.38082 31.8965 8.39769 31.8733 8.42C31.8466 8.44496 31.8261 8.47577 31.8133 8.51C31.7337 8.44686 31.6349 8.41276 31.5333 8.41333C31.4521 8.42794 31.3792 8.47217 31.3287 8.53743C31.2782 8.6027 31.2537 8.68438 31.26 8.76666C31.2832 8.86784 31.3439 8.95645 31.4299 9.01461C31.5159 9.07276 31.6208 9.09613 31.7233 9.07999Z" fill="white"/>
|
||||
<path d="M30.6267 8.13334C30.638 8.13183 30.6488 8.12793 30.6584 8.12191C30.6681 8.11589 30.6763 8.10788 30.6826 8.09842C30.6889 8.08895 30.6932 8.07825 30.695 8.06703C30.6969 8.05581 30.6963 8.04432 30.6934 8.03333C30.6852 8.01366 30.6704 7.9975 30.6515 7.98774C30.6325 7.97797 30.6108 7.97523 30.59 7.98C30.5634 7.98 30.54 8.05334 30.5467 8.07334C30.5533 8.09334 30.6067 8.14334 30.6267 8.13334Z" fill="white"/>
|
||||
<path d="M30.2933 4.60667C30.2577 4.69378 30.2475 4.78922 30.2641 4.88187C30.2806 4.97452 30.3231 5.06057 30.3866 5.13C30.4495 5.17151 30.5246 5.19048 30.5997 5.18383C30.6748 5.17717 30.7454 5.14527 30.8 5.09333C30.9866 4.87 31.02 4.64333 30.88 4.52333C30.7862 4.47234 30.6785 4.45292 30.5728 4.46793C30.4672 4.48294 30.3692 4.53158 30.2933 4.60667Z" fill="white"/>
|
||||
<path d="M30.6667 3.91C30.7601 3.89537 30.8464 3.85125 30.913 3.78408C30.9795 3.71691 31.0229 3.63022 31.0367 3.53667C31.0605 3.60686 31.1031 3.66914 31.16 3.71667C31.1857 3.73382 31.215 3.74507 31.2455 3.74961C31.2761 3.75416 31.3074 3.7519 31.337 3.74298C31.3666 3.73407 31.3939 3.71872 31.4169 3.69803C31.4399 3.67735 31.458 3.65184 31.47 3.62333C31.1067 3.37 30.7367 3.12 30.3567 2.89C30.2458 2.94314 30.1542 3.02942 30.0944 3.13691C30.0347 3.24439 30.0099 3.36778 30.0233 3.49C30.0677 3.62214 30.1554 3.73545 30.2721 3.81166C30.3888 3.88786 30.5278 3.92251 30.6667 3.91Z" fill="white"/>
|
||||
<path d="M31.1667 10.7067C31.2819 10.6733 31.3793 10.5957 31.4374 10.4907C31.4955 10.3858 31.5096 10.262 31.4767 10.1467C31.4355 10.0401 31.3571 9.952 31.256 9.89869C31.1549 9.84539 31.0379 9.83046 30.9267 9.85667C30.8231 9.89604 30.738 9.9728 30.6882 10.0718C30.6384 10.1708 30.6274 10.2849 30.6576 10.3915C30.6877 10.4982 30.7567 10.5897 30.8509 10.648C30.9451 10.7064 31.0578 10.7273 31.1667 10.7067Z" fill="white"/>
|
||||
<path d="M32.7833 11.8533C32.74 11.7567 32.59 11.52 32.49 11.5667C32.39 11.6133 32.3433 11.8433 32.3366 11.95C32.3299 12.0567 32.5033 12.1433 32.6299 12.1033C32.7566 12.0633 32.84 11.9733 32.7833 11.8533Z" fill="white"/>
|
||||
<path d="M32.8533 11.12C32.8333 11.04 32.57 10.8267 32.44 10.8867C32.31 10.9467 32.35 11.29 32.4033 11.4C32.4416 11.4547 32.4954 11.4967 32.5578 11.5205C32.6202 11.5442 32.6883 11.5487 32.7533 11.5333C32.8833 11.4767 32.88 11.2433 32.8533 11.12Z" fill="white"/>
|
||||
<path d="M34.9133 10.63C35.0056 10.5915 35.0812 10.5214 35.1264 10.4322C35.1717 10.343 35.1835 10.2405 35.16 10.1433C35.1 9.87 34.9733 9.75667 34.7666 9.81C34.652 9.83621 34.5511 9.90388 34.4833 10C34.4863 9.97453 34.4863 9.9488 34.4833 9.92333C34.4693 9.88831 34.4485 9.8564 34.4222 9.8294C34.3959 9.80241 34.3645 9.78087 34.3298 9.76601C34.2951 9.75116 34.2579 9.74327 34.2202 9.74281C34.1824 9.74235 34.145 9.74933 34.11 9.76333C34.075 9.77734 34.043 9.79811 34.0161 9.82445C33.9891 9.85079 33.9675 9.88219 33.9527 9.91686C33.9378 9.95153 33.9299 9.98878 33.9295 10.0265C33.929 10.0642 33.936 10.1016 33.95 10.1367C33.9914 10.2003 34.0533 10.2478 34.1254 10.2714C34.1976 10.2951 34.2756 10.2934 34.3466 10.2667C34.3663 10.2545 34.3852 10.2411 34.4033 10.2267C34.4 10.251 34.4 10.2757 34.4033 10.3C34.4434 10.4012 34.5141 10.4874 34.6055 10.5466C34.6969 10.6057 34.8045 10.6349 34.9133 10.63Z" fill="white"/>
|
||||
<path d="M31.2067 12.94C31.23 12.94 31.32 12.86 31.3133 12.8333C31.3067 12.8067 31.2767 12.6567 31.18 12.6567C31.0833 12.6567 31.06 12.79 31.07 12.8167C31.099 12.8731 31.1476 12.9169 31.2067 12.94Z" fill="white"/>
|
||||
<path d="M31.4967 19.6467C31.57 19.6167 31.6034 19.4167 31.5767 19.3767C31.55 19.3367 31.4234 19.2167 31.36 19.2333C31.2967 19.25 31.2367 19.3967 31.25 19.4633C31.2634 19.53 31.4234 19.6767 31.4967 19.6467Z" fill="white"/>
|
||||
<path d="M34.3733 12.18C34.33 12.0633 34.04 12.0033 33.97 12.0733C33.9471 12.1194 33.9352 12.1702 33.9352 12.2217C33.9352 12.2731 33.9471 12.3239 33.97 12.37C33.9756 12.398 33.988 12.4242 34.0061 12.4462C34.0242 12.4683 34.0475 12.4855 34.0739 12.4964C34.1003 12.5073 34.1289 12.5114 34.1573 12.5086C34.1857 12.5057 34.213 12.4959 34.2367 12.48C34.3367 12.4133 34.43 12.3333 34.3733 12.18Z" fill="white"/>
|
||||
<path d="M39.9133 21.7767C39.9133 21.7033 39.9133 21.63 39.93 21.5533C39.9105 21.5869 39.8989 21.6244 39.896 21.6631C39.8931 21.7018 39.899 21.7406 39.9133 21.7767Z" fill="white"/>
|
||||
<path d="M39.12 22.6067C39.12 22.7967 39.12 22.9933 39.36 23.0133C39.4295 23.0261 39.5012 23.0136 39.5624 22.9782C39.6235 22.9427 39.6699 22.8866 39.6934 22.82C39.706 22.7923 39.7125 22.7621 39.7125 22.7317C39.7125 22.7012 39.706 22.6711 39.6934 22.6433C39.5882 22.5401 39.4769 22.4432 39.36 22.3533C39.36 22.02 39.23 21.76 39.0267 21.7533C38.9033 21.7742 38.7899 21.834 38.703 21.924C38.616 22.014 38.5601 22.1293 38.5434 22.2533C38.5167 22.4933 38.6333 22.5667 39.12 22.6067Z" fill="white"/>
|
||||
<path d="M38.7499 21.0167C38.8175 20.9458 38.8669 20.8598 38.8942 20.7658C38.9215 20.6718 38.9257 20.5726 38.9066 20.4767C38.85 20.3267 38.6966 20.2967 38.49 20.3933C38.2833 20.49 38.1899 20.63 38.2666 20.7933C38.3699 21.0167 38.5766 21.1133 38.7499 21.0167Z" fill="white"/>
|
||||
<path d="M38.3434 23.6367C38.2979 23.5388 38.2199 23.4598 38.1226 23.413C38.0254 23.3662 37.9149 23.3545 37.8101 23.38C37.7354 23.4131 37.6755 23.4725 37.6417 23.5468C37.6079 23.6212 37.6026 23.7053 37.6267 23.7833C37.6716 23.8743 37.7485 23.9454 37.8427 23.983C37.9369 24.0205 38.0416 24.0218 38.1367 23.9867C38.1736 23.9778 38.2082 23.9615 38.2387 23.939C38.2692 23.9164 38.2948 23.888 38.3141 23.8554C38.3333 23.8227 38.3459 23.7865 38.3509 23.749C38.3559 23.7114 38.3534 23.6732 38.3434 23.6367Z" fill="white"/>
|
||||
<path d="M25.8333 2.09333C25.9538 2.11558 26.0783 2.09427 26.1846 2.03321C26.2908 1.97215 26.3719 1.87532 26.4133 1.76C26.4173 1.6708 26.399 1.58201 26.36 1.50169C26.321 1.42137 26.2626 1.35204 26.19 1.3C26.1934 1.25562 26.1934 1.21104 26.19 1.16667C26.1865 1.13846 26.1761 1.11154 26.1598 1.08828C26.1435 1.06502 26.1216 1.04614 26.0963 1.0333C26.0709 1.02045 26.0428 1.01404 26.0144 1.01463C25.986 1.01522 25.9581 1.02279 25.9333 1.03667C25.8433 1.08 25.7633 1.13667 25.7533 1.23C25.6745 1.2536 25.6028 1.29642 25.5446 1.3546C25.4864 1.41278 25.4436 1.48451 25.42 1.56333C25.32 1.75 25.56 1.99 25.8333 2.09333Z" fill="white"/>
|
||||
<path d="M38.4367 27.6067C38.34 27.6267 38.3501 27.7633 38.3667 27.7867C38.3779 27.8023 38.3928 27.8149 38.41 27.8233L38.4967 27.6133C38.4878 27.608 38.4778 27.6047 38.4674 27.6035C38.4571 27.6024 38.4466 27.6035 38.4367 27.6067Z" fill="white"/>
|
||||
<path d="M39.3734 23.39C39.257 23.4513 39.1665 23.5522 39.1182 23.6745C39.0699 23.7968 39.067 23.9324 39.11 24.0567C39.1471 24.1372 39.2026 24.2078 39.2721 24.2629C39.3416 24.3179 39.4231 24.3557 39.51 24.3733C39.5834 24.04 39.6467 23.7233 39.7034 23.3967C39.598 23.3534 39.4803 23.351 39.3734 23.39Z" fill="white"/>
|
||||
<path d="M34.2734 25.92C34.2534 25.87 34.1467 25.86 34.09 25.87C34.0334 25.88 33.96 25.9667 33.9933 26.04C34.0267 26.1133 34.16 26.0867 34.2134 26.07C34.2376 26.0543 34.2564 26.0314 34.2672 26.0045C34.2779 25.9777 34.2801 25.9481 34.2734 25.92Z" fill="white"/>
|
||||
<path d="M37.97 25.6967C38.0222 25.6678 38.0681 25.6289 38.1051 25.5822C38.1421 25.5355 38.1695 25.4819 38.1856 25.4246C38.2017 25.3672 38.2063 25.3072 38.199 25.248C38.1918 25.1889 38.1729 25.1318 38.1434 25.08C38.0783 24.9858 37.9816 24.9181 37.8709 24.8894C37.7601 24.8606 37.6426 24.8727 37.54 24.9233C37.4453 24.9843 37.3773 25.079 37.3499 25.1883C37.3225 25.2976 37.3377 25.4132 37.3924 25.5116C37.4472 25.6101 37.5373 25.684 37.6446 25.7184C37.7519 25.7528 37.8683 25.745 37.97 25.6967Z" fill="white"/>
|
||||
<path d="M36.94 22.41C37.0031 22.3711 37.0515 22.3123 37.0774 22.2429C37.1034 22.1735 37.1054 22.0974 37.0833 22.0267C37.0415 21.9571 36.9758 21.9052 36.8985 21.8807C36.8212 21.8562 36.7376 21.8606 36.6633 21.8933C36.6054 21.924 36.5611 21.9752 36.5389 22.0368C36.5167 22.0984 36.5183 22.1661 36.5433 22.2267C36.5545 22.2667 36.5742 22.3039 36.6011 22.3355C36.628 22.3672 36.6615 22.3927 36.6992 22.4101C36.737 22.4275 36.7781 22.4366 36.8196 22.4365C36.8612 22.4365 36.9023 22.4275 36.94 22.41Z" fill="white"/>
|
||||
<path d="M37.3734 28.0033C37.3874 27.935 37.3767 27.864 37.3431 27.8029C37.3095 27.7418 37.2552 27.6947 37.19 27.67C37.1425 27.6393 37.0849 27.6284 37.0295 27.6396C36.9741 27.6508 36.9252 27.6833 36.8934 27.73C36.7567 27.9033 36.8367 28.0633 36.9534 28.22C37.1434 28.19 37.3334 28.2167 37.3734 28.0033Z" fill="white"/>
|
||||
<path d="M35.3699 17.44C35.4044 17.432 35.4365 17.4161 35.4638 17.3936C35.4911 17.3711 35.5128 17.3427 35.5273 17.3104C35.5419 17.2782 35.5487 17.243 35.5475 17.2077C35.5462 17.1723 35.5368 17.1378 35.5199 17.1067C35.4948 17.049 35.4492 17.0028 35.3919 16.9769C35.3346 16.951 35.2698 16.9474 35.2099 16.9667C35.0966 16.9967 34.9999 17.3 35.0866 17.37C35.1254 17.4024 35.1711 17.4255 35.2202 17.4377C35.2693 17.4498 35.3205 17.4506 35.3699 17.44Z" fill="white"/>
|
||||
<path d="M35.9166 19.2C35.9813 19.1681 36.0387 19.123 36.0849 19.0676C36.1311 19.0121 36.1652 18.9476 36.185 18.8782C36.2048 18.8088 36.2098 18.7361 36.1998 18.6646C36.1897 18.5931 36.1648 18.5246 36.1266 18.4633C36.1038 18.4026 36.0686 18.3472 36.0234 18.3007C35.9781 18.2542 35.9237 18.2176 35.8636 18.1932C35.8034 18.1688 35.7389 18.1571 35.674 18.1588C35.6092 18.1606 35.5454 18.1757 35.4866 18.2033C35.3582 18.2693 35.2582 18.3798 35.2055 18.5142C35.1527 18.6486 35.1508 18.7976 35.2 18.9333C35.2724 19.0515 35.3824 19.142 35.5123 19.1903C35.6422 19.2386 35.7845 19.2421 35.9166 19.2Z" fill="white"/>
|
||||
<path d="M35.2933 14.8733C35.3745 14.9072 35.4641 14.9153 35.55 14.8967C35.6452 14.8659 35.7254 14.8005 35.7747 14.7135C35.8241 14.6265 35.8391 14.5242 35.8167 14.4267C35.7734 14.2233 35.66 14.13 35.4834 14.1633C35.4357 14.1735 35.3897 14.1903 35.3467 14.2133C35.3061 14.1938 35.2617 14.1837 35.2167 14.1837C35.1717 14.1837 35.1272 14.1938 35.0867 14.2133C34.9948 14.269 34.9223 14.3517 34.8793 14.4502C34.8364 14.5487 34.8249 14.6581 34.8467 14.7633C34.8967 14.8567 35.1067 14.9067 35.2933 14.8733Z" fill="white"/>
|
||||
<path d="M35.24 15.9967C35.1666 16.06 35.0833 16.1333 35.0966 16.2233C35.11 16.3133 35.3666 16.42 35.4866 16.35C35.6066 16.28 35.5766 16.1867 35.5366 16.0933C35.4966 16 35.3366 15.9067 35.24 15.9967Z" fill="white"/>
|
||||
<path d="M34.9067 24.03C34.9533 24.03 35.0667 23.9 35.0367 23.8367C35.0067 23.7733 34.8567 23.7633 34.81 23.7867C34.7633 23.81 34.7 23.8933 34.7267 23.96C34.7457 23.9889 34.7732 24.0112 34.8055 24.0237C34.8378 24.0363 34.8731 24.0385 34.9067 24.03Z" fill="white"/>
|
||||
<path d="M35.8433 22.72C35.9466 22.6533 36.0266 22.5533 35.9433 22.4467C35.86 22.34 35.69 22.1967 35.5866 22.24C35.4833 22.2833 35.5333 22.5567 35.5666 22.6533C35.6 22.75 35.72 22.8033 35.8433 22.72Z" fill="white"/>
|
||||
<path d="M36.85 23.32C36.8605 23.3157 36.87 23.3092 36.878 23.3011C36.8859 23.293 36.8921 23.2833 36.8961 23.2727C36.9002 23.2621 36.902 23.2507 36.9016 23.2394C36.9011 23.228 36.8983 23.2169 36.8933 23.2067C36.8816 23.1884 36.8635 23.1752 36.8425 23.1696C36.8215 23.164 36.7992 23.1666 36.78 23.1767C36.7567 23.1767 36.7467 23.26 36.76 23.28C36.7692 23.295 36.7827 23.3069 36.7988 23.314C36.8148 23.3212 36.8327 23.3233 36.85 23.32Z" fill="white"/>
|
||||
<path d="M36.4333 21.3667C36.5183 21.2918 36.5747 21.1897 36.593 21.0779C36.6112 20.9661 36.5901 20.8514 36.5333 20.7533C36.43 20.55 36.2366 20.5133 35.9866 20.6467C35.9136 20.6939 35.8583 20.764 35.8293 20.846C35.8004 20.9281 35.7994 21.0174 35.8266 21.1C35.9066 21.2733 36.3066 21.4367 36.4333 21.3667Z" fill="white"/>
|
||||
<path d="M20.38 8.4C20.4833 8.37 20.46 8.06666 20.4267 8.05C20.33 7.97333 20.22 7.84666 20.0933 7.88333C19.9667 7.92 19.9933 8.09666 20.0267 8.14333C20.06 8.19 20.2733 8.43333 20.38 8.4Z" fill="white"/>
|
||||
<path d="M37.2333 21.05C37.2628 21.0137 37.283 20.9707 37.2923 20.9249C37.3016 20.879 37.2996 20.8316 37.2866 20.7867C37.26 20.7267 37.0666 20.6167 36.9966 20.6533C36.9266 20.69 36.91 20.9333 36.9433 20.9633C36.9766 20.9933 37.1766 21.1033 37.2333 21.05Z" fill="white"/>
|
||||
<path d="M37.9934 18.8867C38.0298 18.776 38.029 18.6565 37.9911 18.5463C37.9531 18.4362 37.8802 18.3415 37.7834 18.2767C37.6134 18.1633 37.3234 18.3367 37.1567 18.5767C37.105 18.6877 37.0947 18.8136 37.1277 18.9316C37.1608 19.0496 37.2349 19.1519 37.3367 19.22C37.468 19.2587 37.6092 19.2457 37.7312 19.1837C37.8533 19.1218 37.9471 19.0155 37.9934 18.8867Z" fill="white"/>
|
||||
<path d="M36.7934 18.3067C36.8378 18.2928 36.8786 18.2692 36.9126 18.2374C36.9467 18.2057 36.9731 18.1667 36.9901 18.1233C37.0267 17.9267 36.86 17.8867 36.7167 17.84C36.5667 17.94 36.4834 18.06 36.58 18.22C36.6051 18.2517 36.6379 18.2763 36.6753 18.2915C36.7127 18.3067 36.7534 18.3119 36.7934 18.3067Z" fill="white"/>
|
||||
<path d="M36.8566 15C36.8645 14.9405 36.8597 14.8801 36.8424 14.8226C36.8252 14.7651 36.7959 14.712 36.7566 14.6667C36.5899 14.52 36.4699 14.6867 36.3199 14.79C36.3699 15 36.4366 15.17 36.6533 15.16C36.7299 15.16 36.8533 15.0633 36.8566 15Z" fill="white"/>
|
||||
<path d="M38.1033 17.1267C37.9598 16.9816 37.8073 16.8458 37.6466 16.72C37.6188 16.6982 37.5867 16.6824 37.5524 16.6738C37.5181 16.6651 37.4824 16.6637 37.4476 16.6697C37.4127 16.6756 37.3795 16.6888 37.3501 16.7084C37.3206 16.728 37.2956 16.7535 37.2766 16.7833C37.232 16.8374 37.2104 16.907 37.2166 16.9769C37.2229 17.0467 37.2564 17.1113 37.31 17.1567C37.3711 17.2162 37.4229 17.2848 37.4633 17.36C37.5009 17.4507 37.5694 17.5252 37.6566 17.5703C37.7438 17.6154 37.8442 17.6283 37.94 17.6067C38.16 17.5667 38.2366 17.4133 38.1033 17.1267Z" fill="white"/>
|
||||
<path d="M39.4933 15.7667C39.454 15.8519 39.391 15.924 39.3118 15.9743C39.2325 16.0246 39.1404 16.0509 39.0466 16.05C38.9589 16.0831 38.8836 16.1425 38.8311 16.2201C38.7786 16.2977 38.7514 16.3896 38.7533 16.4833C38.801 16.5785 38.873 16.6593 38.962 16.7179C39.0509 16.7764 39.1537 16.8104 39.2599 16.8167C39.3933 16.8167 39.5766 16.7967 39.5933 16.6267C39.6 16.545 39.6263 16.4661 39.6699 16.3967C39.6266 16.17 39.5833 15.9467 39.5366 15.73C39.5197 15.739 39.5049 15.7515 39.4933 15.7667Z" fill="white"/>
|
||||
<path d="M38.3567 16.5567C38.3885 16.54 38.416 16.516 38.4367 16.4867H38.47C38.5534 16.4533 38.6634 16.3233 38.6534 16.2533C38.6434 16.1833 38.59 16.1467 38.54 16.1033C38.5343 16.0794 38.5265 16.056 38.5167 16.0333C38.4448 15.9637 38.3549 15.9156 38.2571 15.8944C38.1594 15.8732 38.0576 15.8798 37.9634 15.9133C37.9295 15.9302 37.8995 15.954 37.8755 15.9834C37.8516 16.0127 37.8341 16.0467 37.8243 16.0833C37.8146 16.1199 37.8127 16.1581 37.8189 16.1955C37.825 16.2329 37.839 16.2685 37.86 16.3C38 16.57 38.1567 16.6533 38.3567 16.5567Z" fill="white"/>
|
||||
<path d="M36.1467 17.5533C36.2057 17.5481 36.263 17.5309 36.3152 17.5028C36.3673 17.4748 36.4132 17.4364 36.4501 17.39C36.4623 17.3737 36.4706 17.3548 36.4743 17.3347C36.4781 17.3147 36.4772 17.294 36.4717 17.2744C36.4662 17.2548 36.4563 17.2367 36.4427 17.2214C36.4292 17.2062 36.4123 17.1943 36.3934 17.1867C36.3521 17.1778 36.3095 17.1777 36.2681 17.1863C36.2268 17.1949 36.1877 17.2121 36.1534 17.2367C36.0801 17.2767 35.9967 17.2967 35.9601 17.38C35.9234 17.4633 36.0234 17.56 36.1467 17.5533Z" fill="white"/>
|
||||
<path d="M38.0466 20.18C38.0616 20.1121 38.0516 20.0411 38.0186 19.9799C37.9856 19.9187 37.9316 19.8714 37.8667 19.8467C37.818 19.8169 37.7598 19.8069 37.7041 19.8187C37.6483 19.8305 37.5991 19.8632 37.5666 19.91C37.4333 20.0833 37.5133 20.2433 37.63 20.4C37.8166 20.37 38.0066 20.3933 38.0466 20.18Z" fill="white"/>
|
||||
<path d="M36.1399 16.3633C36.1036 16.38 36.0742 16.4086 36.0566 16.4445C36.039 16.4803 36.0343 16.5211 36.0433 16.56C36.0506 16.5986 36.0721 16.633 36.1036 16.6565C36.1351 16.6799 36.1742 16.6907 36.2133 16.6867C36.2376 16.6849 36.2611 16.6775 36.2821 16.6653C36.3031 16.653 36.3211 16.6361 36.3346 16.6159C36.3481 16.5956 36.3568 16.5725 36.36 16.5484C36.3633 16.5243 36.361 16.4998 36.3533 16.4767C36.3486 16.4541 36.3391 16.4327 36.3252 16.4143C36.3114 16.3958 36.2937 16.3806 36.2733 16.3698C36.2529 16.3589 36.2304 16.3527 36.2073 16.3516C36.1843 16.3505 36.1613 16.3545 36.1399 16.3633Z" fill="white"/>
|
||||
<path d="M31.8699 6.68C31.9758 6.59527 32.1076 6.54939 32.2433 6.55C32.3066 6.55 32.3866 6.40334 32.3899 6.32334C32.3865 6.27558 32.3728 6.22913 32.3498 6.18714C32.3268 6.14515 32.295 6.10861 32.2566 6.08C32.2173 6.06825 32.1757 6.06575 32.1352 6.07269C32.0948 6.07963 32.0565 6.09582 32.0233 6.12C31.9027 6.20895 31.791 6.30943 31.6899 6.42C31.6033 6.51 31.6266 6.6 31.7299 6.69C31.7766 6.68667 31.8433 6.70334 31.8699 6.68Z" fill="white"/>
|
||||
<path d="M33.7633 5.49667C33.48 5.22667 33.19 4.96667 32.89 4.71333C32.8884 4.72885 32.8884 4.74449 32.89 4.76C32.87 5.03667 33.03 5.31667 33.2667 5.25667C33.2925 5.2976 33.3226 5.3356 33.3567 5.37C33.4104 5.42056 33.475 5.45824 33.5454 5.48019C33.6159 5.50213 33.6904 5.50777 33.7633 5.49667Z" fill="white"/>
|
||||
<path d="M32.4067 4.32C32.2434 4.19 32.0734 4.05667 31.91 3.93333C31.9086 3.99531 31.92 4.05691 31.9436 4.11427C31.9671 4.17163 32.0022 4.22352 32.0467 4.26667C32.1559 4.32872 32.2843 4.34775 32.4067 4.32Z" fill="white"/>
|
||||
<path d="M27.9634 1.66666H27.9867L27.7467 1.56C27.7717 1.59377 27.8044 1.62108 27.8421 1.63963C27.8798 1.65819 27.9214 1.66746 27.9634 1.66666Z" fill="white"/>
|
||||
<path d="M39.8367 17.48L39.7933 17.5167C39.8167 17.57 39.84 17.6267 39.8633 17.6767L39.8367 17.48Z" fill="white"/>
|
||||
<path d="M35.76 8.39667C35.74 8.65667 35.74 8.96334 36.0133 9.11667C36.1266 9.17455 36.2546 9.19753 36.381 9.1827C36.5074 9.16786 36.6265 9.11589 36.7233 9.03334C36.3298 8.43347 35.9048 7.85488 35.45 7.3L35.3533 7.33667C35.2926 7.35795 35.2381 7.39393 35.1946 7.4414C35.1512 7.48887 35.1201 7.54636 35.1043 7.60874C35.0884 7.67111 35.0883 7.73644 35.1038 7.7989C35.1194 7.86135 35.1501 7.91899 35.1933 7.96667C35.3666 8.12952 35.5565 8.27365 35.76 8.39667Z" fill="white"/>
|
||||
<path d="M35.7967 10.7633C35.8679 10.7364 35.9257 10.6824 35.9575 10.6132C35.9893 10.5439 35.9926 10.465 35.9667 10.3933C35.9611 10.3574 35.9467 10.3234 35.9248 10.2944C35.9029 10.2654 35.8742 10.2423 35.8412 10.2271C35.8082 10.2119 35.7719 10.2052 35.7356 10.2074C35.6994 10.2096 35.6642 10.2208 35.6333 10.24C35.596 10.2471 35.5606 10.2619 35.5293 10.2835C35.498 10.305 35.4716 10.3329 35.4517 10.3652C35.4318 10.3976 35.4188 10.4337 35.4137 10.4714C35.4085 10.509 35.4112 10.5473 35.4217 10.5838C35.4322 10.6203 35.4501 10.6543 35.4744 10.6835C35.4988 10.7126 35.5289 10.7364 35.5629 10.7533C35.5969 10.7702 35.6341 10.7798 35.6721 10.7816C35.71 10.7833 35.7479 10.7771 35.7833 10.7633H35.7967Z" fill="white"/>
|
||||
<path d="M34.7933 8.65C34.8666 8.65 34.96 8.54333 34.9933 8.46667C35.002 8.42789 35.0011 8.38755 34.9907 8.3492C34.9802 8.31085 34.9605 8.27565 34.9333 8.24667C34.7866 8.13667 34.6533 8.2 34.5333 8.34333C34.57 8.49 34.6066 8.65667 34.7933 8.65Z" fill="white"/>
|
||||
<path d="M35.3133 7.14C35.0266 6.80667 34.7299 6.47333 34.4233 6.14C34.4124 6.17504 34.4035 6.21065 34.3966 6.24667C34.3962 6.38042 34.4258 6.51256 34.4833 6.63333C34.5234 6.71058 34.5764 6.78046 34.6399 6.84C34.7015 6.90218 34.7672 6.96009 34.8366 7.01333C34.8929 7.0816 34.9691 7.13053 35.0546 7.15325C35.1401 7.17597 35.2306 7.17134 35.3133 7.14Z" fill="white"/>
|
||||
<path d="M13.7067 8.16C13.7533 8.14 13.8233 8.06 13.8033 7.99333C13.787 7.96289 13.7614 7.93842 13.7302 7.92345C13.6991 7.90847 13.664 7.90376 13.63 7.91C13.58 7.91 13.46 8.02666 13.4833 8.09C13.5067 8.15333 13.66 8.18 13.7067 8.16Z" fill="white"/>
|
||||
<path d="M20.0234 4.2C20.1334 4.09334 20.0034 3.75667 19.88 3.76C19.7567 3.76334 19.58 4.05334 19.6834 4.17C19.7272 4.21456 19.7855 4.24205 19.8478 4.24755C19.9101 4.25304 19.9724 4.23619 20.0234 4.2Z" fill="white"/>
|
||||
<path d="M20.7466 6.91333C20.8582 6.85293 20.9458 6.75621 20.9949 6.63921C21.044 6.52221 21.0517 6.39195 21.0166 6.27C20.9633 6.1839 20.88 6.1206 20.7827 6.09229C20.6855 6.06398 20.5812 6.07266 20.49 6.11667C20.4384 6.13438 20.3913 6.16306 20.352 6.20074C20.3126 6.23841 20.2819 6.28418 20.2619 6.33488C20.2419 6.38559 20.2332 6.44002 20.2363 6.49442C20.2395 6.54883 20.2543 6.60191 20.28 6.65C20.37 6.87667 20.5766 6.99333 20.7466 6.91333Z" fill="white"/>
|
||||
<path d="M19.29 6.27333C19.3264 6.26428 19.3604 6.24776 19.39 6.22484C19.4197 6.20191 19.4442 6.17307 19.4621 6.14015C19.4799 6.10723 19.4908 6.07096 19.4938 6.03363C19.4969 5.99631 19.4922 5.95874 19.48 5.92333C19.4695 5.88734 19.4517 5.85387 19.4278 5.82496C19.4039 5.79604 19.3744 5.77229 19.341 5.75514C19.3077 5.738 19.2712 5.72781 19.2337 5.72521C19.1963 5.7226 19.1588 5.72764 19.1234 5.74C19.0545 5.76963 18.9976 5.8216 18.9619 5.88752C18.9263 5.95345 18.9138 6.02948 18.9267 6.10333C18.939 6.13865 18.9582 6.17114 18.9832 6.19891C19.0083 6.22667 19.0386 6.24914 19.0725 6.26498C19.1064 6.28083 19.143 6.28973 19.1804 6.29116C19.2178 6.2926 19.255 6.28653 19.29 6.27333Z" fill="white"/>
|
||||
<path d="M19.7467 1.97666C19.756 1.91396 19.7427 1.84999 19.7091 1.79624C19.6755 1.74248 19.6238 1.70245 19.5634 1.68333C19.34 1.60333 19.26 1.78333 19.1767 1.94L18.8834 1.86666C18.8834 1.84 18.8834 1.81333 18.9 1.78666C18.945 1.76199 18.9874 1.73296 19.0267 1.7C19.2067 1.55 19.39 1.41 19.57 1.26666C19.86 1.57666 19.9034 1.57666 20.1167 1.26666C20.2 1.29461 20.2901 1.29461 20.3734 1.26666C20.4055 1.25521 20.4351 1.23738 20.4602 1.21423C20.4852 1.19108 20.5054 1.1631 20.5194 1.13197C20.5334 1.10083 20.541 1.06719 20.5417 1.03305C20.5424 0.998918 20.5361 0.964998 20.5234 0.93333C20.4962 0.842907 20.4366 0.765691 20.356 0.716482C20.2755 0.667274 20.1796 0.649534 20.0867 0.666664C20.0079 0.687113 19.9403 0.737727 19.8986 0.807577C19.8568 0.877427 19.8441 0.960909 19.8634 1.04C19.8047 1.03854 19.7462 1.04641 19.69 1.06333C19.4167 0.609997 19.11 0.64333 18.83 1.13333C18.7934 1.13333 18.7567 1.13333 18.72 1.13333C18.6743 1.11845 18.6249 1.11921 18.5796 1.13551C18.5344 1.15181 18.4958 1.1827 18.47 1.22333C18.3682 1.22424 18.2692 1.25686 18.1867 1.31666C18.1393 1.39879 18.121 1.49455 18.135 1.58836C18.1489 1.68218 18.1941 1.76852 18.2634 1.83333C18.31 1.89 18.3634 1.94333 18.4167 2C18.3381 2.16251 18.3069 2.34389 18.3267 2.52333C18.2868 2.54244 18.2478 2.56358 18.21 2.58666C18.1195 2.66998 18.0615 2.78267 18.0463 2.90473C18.031 3.02679 18.0595 3.1503 18.1267 3.25333C18.2328 3.33946 18.3677 3.38189 18.5039 3.37198C18.6402 3.36207 18.7676 3.30056 18.86 3.2C18.9553 3.08555 19.0019 2.9384 18.99 2.79L19.0634 2.77C19.3534 2.68 19.3967 2.43666 19.37 2.19333C19.53 2.17333 19.7267 2.21333 19.7467 1.97666Z" fill="white"/>
|
||||
<path d="M20.6066 6.02667C20.74 5.91334 20.7033 5.64667 20.53 5.45334C20.4708 5.406 20.3974 5.38021 20.3216 5.38021C20.2459 5.38021 20.1724 5.406 20.1133 5.45334C20.0451 5.51772 20.0015 5.60386 19.9899 5.69694C19.9783 5.79002 19.9996 5.88422 20.05 5.96334C20.1234 6.03273 20.2174 6.07641 20.3177 6.08783C20.4181 6.09925 20.5195 6.07779 20.6066 6.02667Z" fill="white"/>
|
||||
<path d="M29.2133 6.77333C29.2462 6.74457 29.2718 6.70843 29.288 6.66787C29.3042 6.62732 29.3106 6.5835 29.3066 6.54C29.325 6.44986 29.3133 6.35617 29.2733 6.27333C29.2298 6.19443 29.1686 6.12663 29.0946 6.07518C29.0206 6.02373 28.9358 5.99002 28.8466 5.97666C28.7647 5.96855 28.6821 5.98324 28.608 6.01912C28.5339 6.05501 28.4711 6.11068 28.4266 6.18C28.392 6.23855 28.3738 6.30532 28.3738 6.37333C28.3738 6.44134 28.392 6.50811 28.4266 6.56666C28.4581 6.63166 28.5049 6.68806 28.5629 6.73102C28.621 6.77398 28.6886 6.80223 28.76 6.81333C28.94 6.80666 29.12 6.87 29.2133 6.77333Z" fill="white"/>
|
||||
<path d="M27.94 2.47C27.9053 2.40496 27.858 2.34754 27.8007 2.30116C27.7434 2.25478 27.6775 2.22038 27.6066 2.2C27.5712 2.15558 27.5239 2.12203 27.4703 2.10317C27.4166 2.08431 27.3588 2.0809 27.3033 2.09333C27.22 2.12 27.1866 2.22333 27.1766 2.32667C27.0685 2.40237 26.9921 2.51528 26.9619 2.64381C26.9318 2.77233 26.9501 2.90745 27.0133 3.02333C27.1159 3.1272 27.2497 3.19453 27.3942 3.215C27.5387 3.23548 27.6859 3.20796 27.8133 3.13667C27.9125 3.06043 27.9803 2.95038 28.0036 2.82746C28.027 2.70453 28.0043 2.57731 27.94 2.47Z" fill="white"/>
|
||||
<path d="M24.7001 4.75667C24.8967 4.83 25.0334 4.70333 25.1201 4.52667C25.0634 4.37 24.9934 4.21333 24.7867 4.22333C24.7517 4.22364 24.7171 4.23122 24.6851 4.24559C24.6531 4.25996 24.6245 4.28081 24.601 4.30681C24.5775 4.33281 24.5597 4.36341 24.5486 4.39666C24.5375 4.42991 24.5335 4.4651 24.5367 4.5C24.5416 4.55267 24.559 4.60342 24.5874 4.64805C24.6158 4.69268 24.6544 4.72991 24.7001 4.75667Z" fill="white"/>
|
||||
<path d="M24.5466 2.82333C24.525 2.75579 24.4786 2.69896 24.4167 2.66432C24.3549 2.62967 24.2822 2.61979 24.2133 2.63666C24.1405 2.65761 24.0789 2.70653 24.042 2.77274C24.0052 2.83896 23.9961 2.91707 24.0166 2.99C24.0206 3.02461 24.0325 3.05781 24.0516 3.08697C24.0707 3.11612 24.0963 3.14042 24.1264 3.15791C24.1565 3.1754 24.1903 3.1856 24.2251 3.1877C24.2598 3.1898 24.2946 3.18373 24.3266 3.17C24.3648 3.16348 24.4011 3.14903 24.4333 3.12759C24.4655 3.10615 24.4929 3.0782 24.5136 3.04553C24.5344 3.01286 24.548 2.9762 24.5537 2.93793C24.5594 2.89965 24.557 2.86061 24.5466 2.82333Z" fill="white"/>
|
||||
<path d="M18.6433 8.68333C18.7133 8.66333 18.71 8.52 18.7033 8.46C18.6967 8.4 18.62 8.36667 18.57 8.39C18.5413 8.40567 18.5168 8.42814 18.4988 8.45546C18.4808 8.48277 18.4698 8.51409 18.4667 8.54667C18.4733 8.60667 18.5733 8.70667 18.6433 8.68333Z" fill="white"/>
|
||||
<path d="M18.5333 0.570003C18.66 0.652954 18.8134 0.684643 18.9626 0.658647C19.1118 0.632651 19.2455 0.550914 19.3366 0.430003C19.4208 0.307948 19.4618 0.161333 19.4533 0.0133362C19.0733 0.0133362 18.6966 0.0433363 18.32 0.0733363C18.3167 0.166734 18.3341 0.259702 18.371 0.345572C18.4079 0.431442 18.4633 0.508085 18.5333 0.570003Z" fill="white"/>
|
||||
<path d="M12.5767 1.68C12.8234 1.59 12.9634 1.43666 12.9567 1.27666C12.7267 1.36333 12.4967 1.45333 12.27 1.54667C12.2811 1.57582 12.2978 1.60246 12.3193 1.62503C12.3408 1.6476 12.3666 1.66563 12.3952 1.67806C12.4238 1.69049 12.4546 1.69706 12.4858 1.6974C12.5169 1.69773 12.5478 1.69181 12.5767 1.68Z" fill="white"/>
|
||||
<path d="M29.5 9.85C29.6367 9.72667 29.6634 9.46667 29.54 9.38667C29.4167 9.30667 29.0034 9.52667 28.9934 9.69333C28.9834 9.86 29.3634 9.97333 29.5 9.85Z" fill="white"/>
|
||||
<path d="M12.94 2.24333C13.0108 2.20811 13.0667 2.14888 13.0979 2.07622C13.129 2.00356 13.1333 1.9222 13.11 1.84666C13.0711 1.77576 13.0077 1.72145 12.9316 1.69385C12.8556 1.66625 12.7721 1.66725 12.6967 1.69666C12.6275 1.72687 12.5725 1.7823 12.5428 1.85166C12.5131 1.92101 12.5109 1.99909 12.5367 2.07C12.5715 2.14284 12.6316 2.20056 12.7058 2.23244C12.78 2.26432 12.8632 2.26819 12.94 2.24333Z" fill="white"/>
|
||||
<path d="M18.13 6.87333C18.1583 6.87337 18.1863 6.86683 18.2117 6.85423C18.2372 6.84162 18.2593 6.82328 18.2764 6.80066C18.2935 6.77805 18.3052 6.75177 18.3104 6.72389C18.3157 6.69601 18.3144 6.66729 18.3066 6.64C18.2766 6.50666 18.11 6.38 18.0066 6.44666C17.9033 6.51333 17.7333 6.65333 17.79 6.78C17.8466 6.90666 18.0433 6.88666 18.13 6.87333Z" fill="white"/>
|
||||
<path d="M10.8466 4.86C10.8986 4.86764 10.9517 4.86286 11.0015 4.84606C11.0514 4.82926 11.0965 4.80092 11.1333 4.76334C11.16 4.72221 11.1773 4.67569 11.1839 4.62711C11.1906 4.57853 11.1865 4.52908 11.1718 4.48229C11.1572 4.43549 11.1324 4.3925 11.0992 4.35638C11.0661 4.32026 11.0253 4.29191 10.9799 4.27334C10.9328 4.26137 10.8835 4.26143 10.8364 4.27352C10.7893 4.28561 10.746 4.30934 10.7105 4.34253C10.675 4.37572 10.6484 4.4173 10.6332 4.46346C10.6179 4.50961 10.6145 4.55886 10.6233 4.60667C10.6389 4.66304 10.6671 4.71513 10.7058 4.75901C10.7445 4.80289 10.7927 4.83742 10.8466 4.86Z" fill="white"/>
|
||||
<path d="M18.0733 1.73C18.1367 1.66667 18.1233 1.52333 18.1333 1.45C17.98 1.30333 17.87 1.34333 17.8 1.42333C17.73 1.50333 17.67 1.64 17.8 1.71333C17.8418 1.73531 17.8878 1.74816 17.9349 1.75103C17.982 1.7539 18.0292 1.74673 18.0733 1.73Z" fill="white"/>
|
||||
<path d="M18.5067 5.24334C18.4948 5.20471 18.4747 5.16909 18.4478 5.13886C18.421 5.10864 18.388 5.0845 18.3511 5.06808C18.3141 5.05166 18.2741 5.04334 18.2337 5.04367C18.1932 5.044 18.1534 5.05298 18.1167 5.07C18.0469 5.11241 17.9952 5.17893 17.9712 5.25696C17.9473 5.33499 17.9528 5.4191 17.9867 5.49334C18.0245 5.55812 18.0845 5.60699 18.1556 5.6309C18.2267 5.6548 18.3041 5.65212 18.3733 5.62334C18.4075 5.60764 18.4381 5.58524 18.4634 5.55746C18.4887 5.52967 18.5082 5.49708 18.5206 5.46162C18.5331 5.42616 18.5383 5.38856 18.5359 5.35106C18.5335 5.31356 18.5235 5.27692 18.5067 5.24334Z" fill="white"/>
|
||||
<path d="M18.86 3.94C18.8719 3.95181 18.8853 3.96191 18.9 3.97C18.9408 3.99415 18.9863 4.00933 19.0334 4.0145C19.0805 4.01967 19.1282 4.01473 19.1733 4C19.37 3.89333 19.3433 3.71667 19.2467 3.50667C19.1494 3.49175 19.0505 3.49175 18.9533 3.50667H18.9166C18.8785 3.50383 18.8402 3.51058 18.8052 3.52629C18.7703 3.54201 18.7399 3.5662 18.7166 3.59667C18.6997 3.64516 18.6933 3.69672 18.6979 3.74789C18.7025 3.79906 18.718 3.84865 18.7433 3.89333C18.7746 3.92351 18.8165 3.94026 18.86 3.94Z" fill="white"/>
|
||||
<path d="M13.09 13.0967L8.80334 8.46333" stroke="#CED5E1" stroke-width="3" stroke-miterlimit="10"/>
|
||||
<path d="M26.47 13.0967L30.7566 8.46333" stroke="#CED5E1" stroke-width="3" stroke-miterlimit="10"/>
|
||||
<path d="M13.09 27.13L8.80334 31.7633" stroke="#CED5E1" stroke-width="3" stroke-miterlimit="10"/>
|
||||
<path d="M26.47 27.13L30.7566 31.7633" stroke="#CED5E1" stroke-width="3" stroke-miterlimit="10"/>
|
||||
<path d="M20.1066 34.44C28.0227 34.44 34.44 28.0227 34.44 20.1067C34.44 12.1906 28.0227 5.77333 20.1066 5.77333C12.1906 5.77333 5.77332 12.1906 5.77332 20.1067C5.77332 28.0227 12.1906 34.44 20.1066 34.44Z" stroke="#CED5E1" stroke-width="3" stroke-miterlimit="10"/>
|
||||
<path d="M20.2667 28.5467C24.9667 28.5467 28.7767 24.7366 28.7767 20.0367C28.7767 15.3367 24.9667 11.5267 20.2667 11.5267C15.5668 11.5267 11.7567 15.3367 11.7567 20.0367C11.7567 24.7366 15.5668 28.5467 20.2667 28.5467Z" fill="#7DE2D1"/>
|
||||
<path d="M14.53 23.3167C14.53 23.27 14.3967 23.22 14.3333 23.23C14.2956 23.2382 14.2602 23.2548 14.2296 23.2784C14.199 23.302 14.1741 23.3322 14.1567 23.3667C14.1519 23.3993 14.1548 23.4326 14.1652 23.4638C14.1756 23.4951 14.1933 23.5235 14.2167 23.5467C14.3034 23.628 14.3971 23.7017 14.4967 23.7667C14.58 23.8233 14.6467 23.7967 14.7034 23.7C14.7034 23.67 14.7034 23.6167 14.68 23.5967C14.5999 23.5229 14.547 23.4242 14.53 23.3167Z" fill="#42D4C6"/>
|
||||
<path d="M18.52 27.3267C18.52 27.2567 18.5367 27.1867 18.54 27.1133C18.5418 27.0851 18.5378 27.0568 18.5283 27.0301C18.5187 27.0035 18.5038 26.9791 18.4844 26.9585C18.465 26.9379 18.4416 26.9215 18.4156 26.9102C18.3896 26.899 18.3616 26.8933 18.3333 26.8933C18.2768 26.8877 18.2204 26.9044 18.1762 26.94C18.1319 26.9755 18.1034 27.027 18.0967 27.0833C18.0856 27.1506 18.0642 27.2158 18.0333 27.2767C17.9873 27.3431 17.967 27.4241 17.9762 27.5044C17.9854 27.5847 18.0234 27.659 18.0833 27.7133H18.1033C18.1517 27.7874 18.2208 27.8455 18.302 27.8805C18.3832 27.9154 18.473 27.9257 18.56 27.91C18.624 27.8697 18.6725 27.8088 18.6973 27.7373C18.7221 27.6658 18.7219 27.588 18.6967 27.5167C18.6833 27.4738 18.6605 27.4345 18.6299 27.4016C18.5993 27.3687 18.5618 27.3431 18.52 27.3267Z" fill="#42D4C6"/>
|
||||
<path d="M14.6934 25.3633C14.6974 25.3081 14.6906 25.2526 14.6734 25.2C14.62 25.02 14.4567 24.8967 14.34 24.9367C14.2528 24.9856 14.1834 25.0612 14.142 25.1523C14.1006 25.2434 14.0894 25.3454 14.11 25.4433C14.1179 25.4724 14.1315 25.4996 14.15 25.5233C14.1105 25.5858 14.093 25.6597 14.1 25.7333C14.1038 25.7992 14.1257 25.8627 14.1633 25.9168C14.201 25.971 14.2529 26.0136 14.3134 26.04C14.3644 26.0594 14.4196 26.065 14.4734 26.0562C14.5273 26.0474 14.5778 26.0246 14.62 25.99C14.6689 25.9555 14.7084 25.9094 14.7352 25.8559C14.7619 25.8024 14.775 25.7431 14.7734 25.6833C14.74 25.5667 14.76 25.4333 14.6934 25.3633Z" fill="#42D4C6"/>
|
||||
<path d="M18.3233 28.17C18.243 28.1748 18.1676 28.2107 18.1133 28.27C18.3366 28.33 18.5666 28.3767 18.7966 28.4167C18.7666 28.2733 18.5399 28.1733 18.3233 28.17Z" fill="#42D4C6"/>
|
||||
<path d="M13.0666 23.2733C13.0445 23.2872 13.0263 23.3063 13.0135 23.329C13.0007 23.3517 12.9937 23.3773 12.9933 23.4033C12.9933 23.4367 13.0866 23.5233 13.1433 23.5033C13.1999 23.4833 13.1866 23.3667 13.1766 23.32C13.1666 23.2733 13.1066 23.2733 13.0666 23.2733Z" fill="#42D4C6"/>
|
||||
<path d="M14.6367 24.0567C14.6225 24.0031 14.5883 23.957 14.5412 23.9279C14.4941 23.8988 14.4376 23.8888 14.3833 23.9C14.3536 23.9036 14.3249 23.9137 14.2994 23.9295C14.2739 23.9453 14.2522 23.9665 14.2357 23.9915C14.2192 24.0166 14.2084 24.0449 14.2039 24.0746C14.1995 24.1043 14.2016 24.1345 14.21 24.1633C14.2167 24.1954 14.2298 24.2259 14.2484 24.2529C14.267 24.2799 14.2908 24.303 14.3184 24.3206C14.3461 24.3383 14.377 24.3503 14.4093 24.356C14.4416 24.3616 14.4747 24.3607 14.5067 24.3533C14.5631 24.331 14.6084 24.2873 14.6328 24.2318C14.6571 24.1762 14.6585 24.1133 14.6367 24.0567Z" fill="#42D4C6"/>
|
||||
<path d="M17.53 27.4267C17.4466 27.4267 17.44 27.55 17.5 27.63C17.5292 27.6672 17.566 27.6977 17.608 27.7195C17.6499 27.7414 17.6961 27.754 17.7433 27.7567C17.7595 27.7573 17.7757 27.7544 17.7907 27.7481C17.8057 27.7418 17.819 27.7322 17.8299 27.7201C17.8407 27.708 17.8488 27.6936 17.8534 27.6781C17.858 27.6625 17.8591 27.6461 17.8566 27.63C17.8366 27.56 17.7766 27.5267 17.7133 27.4933C17.6617 27.4506 17.5969 27.4271 17.53 27.4267Z" fill="#42D4C6"/>
|
||||
<path d="M11.8267 21.1233C11.8267 21.2333 11.8567 21.34 11.8733 21.4567C11.8925 21.4409 11.9068 21.42 11.9145 21.3963C11.9222 21.3727 11.9229 21.3474 11.9167 21.3233C11.9101 21.2484 11.8784 21.1779 11.8267 21.1233Z" fill="#42D4C6"/>
|
||||
<path d="M15.7899 26.7067C15.729 26.7266 15.6781 26.7692 15.6477 26.8257C15.6173 26.8822 15.6097 26.9481 15.6266 27.01C15.6538 27.0716 15.7031 27.1208 15.7648 27.148C15.8265 27.1751 15.8961 27.1782 15.9599 27.1567C16.0171 27.1375 16.0647 27.097 16.0927 27.0435C16.1207 26.9901 16.1268 26.9279 16.1099 26.87C16.1001 26.8379 16.084 26.8082 16.0624 26.7825C16.0409 26.7568 16.0144 26.7358 15.9845 26.7205C15.9547 26.7053 15.9221 26.6962 15.8886 26.6938C15.8552 26.6914 15.8216 26.6958 15.7899 26.7067Z" fill="#42D4C6"/>
|
||||
<path d="M15.6967 27.18C15.6865 27.1727 15.6743 27.1687 15.6617 27.1687C15.6492 27.1687 15.6369 27.1727 15.6267 27.18L15.7334 27.2467C15.7287 27.2211 15.7158 27.1977 15.6967 27.18Z" fill="#42D4C6"/>
|
||||
<path d="M22.6067 23.4667C22.5791 23.4493 22.5481 23.4378 22.5159 23.4331C22.4836 23.4284 22.4507 23.4305 22.4193 23.4393C22.3879 23.4481 22.3587 23.4634 22.3335 23.4842C22.3084 23.505 22.2879 23.5308 22.2733 23.56C22.2479 23.6137 22.2429 23.675 22.2595 23.7321C22.2761 23.7892 22.313 23.8383 22.3633 23.87C22.3893 23.8885 22.4187 23.9014 22.4499 23.9081C22.481 23.9147 22.5132 23.915 22.5444 23.9087C22.5756 23.9025 22.6052 23.8899 22.6314 23.8718C22.6576 23.8537 22.6798 23.8304 22.6967 23.8033C22.7276 23.7464 22.7355 23.6797 22.7187 23.6171C22.702 23.5544 22.6619 23.5006 22.6067 23.4667Z" fill="#42D4C6"/>
|
||||
<path d="M22.66 25.5067C22.66 25.5633 22.7867 25.5733 22.8333 25.5733C22.88 25.5733 22.9133 25.5167 22.9 25.4733C22.89 25.4488 22.8742 25.4272 22.8538 25.4103C22.8335 25.3934 22.8092 25.3819 22.7833 25.3767C22.75 25.3767 22.6467 25.4467 22.66 25.5067Z" fill="#42D4C6"/>
|
||||
<path d="M22.8567 24.9633C22.8404 24.9824 22.8288 25.0048 22.8226 25.0291C22.8164 25.0533 22.8159 25.0787 22.821 25.1031C22.8262 25.1276 22.8369 25.1506 22.8523 25.1703C22.8677 25.19 22.8875 25.2058 22.91 25.2167C22.946 25.2197 22.9822 25.2144 23.0157 25.2011C23.0493 25.1878 23.0793 25.1669 23.1034 25.14C23.1367 25.0933 23.1667 24.9333 23.1034 24.8867C23.04 24.84 22.9034 24.92 22.8567 24.9633Z" fill="#42D4C6"/>
|
||||
<path d="M22.1533 25.6933C22.1307 25.73 22.1164 25.7711 22.1113 25.8138C22.1062 25.8565 22.1105 25.8998 22.1238 25.9407C22.1371 25.9816 22.1592 26.0191 22.1885 26.0507C22.2177 26.0822 22.2535 26.107 22.2933 26.1233C22.4333 26.21 22.5833 26.15 22.6933 25.97C22.7141 25.9443 22.7295 25.9146 22.7387 25.8829C22.7479 25.8511 22.7508 25.8178 22.7471 25.785C22.7433 25.7521 22.7331 25.7203 22.717 25.6914C22.701 25.6625 22.6793 25.6371 22.6533 25.6167C22.5709 25.5824 22.4807 25.5714 22.3925 25.5849C22.3044 25.5985 22.2216 25.636 22.1533 25.6933Z" fill="#42D4C6"/>
|
||||
<path d="M21.8766 26.3067C21.8522 26.3611 21.8489 26.4226 21.8674 26.4793C21.8859 26.536 21.9248 26.5838 21.9766 26.6133C22.01 26.6299 22.0474 26.6368 22.0845 26.6333C22.1216 26.6297 22.1569 26.6159 22.1866 26.5933C22.2422 26.5893 22.2949 26.567 22.3366 26.53C22.3484 26.5016 22.3525 26.4706 22.3484 26.4402C22.3443 26.4097 22.3322 26.3809 22.3133 26.3567C22.3053 26.328 22.2913 26.3013 22.2724 26.2784C22.2534 26.2554 22.2299 26.2367 22.2033 26.2233C22.1481 26.1947 22.0843 26.1874 22.0241 26.2028C21.9638 26.2181 21.9114 26.2551 21.8766 26.3067Z" fill="#42D4C6"/>
|
||||
<path d="M23.14 26.0633C23.1072 26.1119 23.0877 26.1683 23.0836 26.2269C23.0795 26.2854 23.0909 26.344 23.1167 26.3967C23.0844 26.4268 23.0553 26.4604 23.03 26.4967C22.9841 26.4758 22.932 26.4728 22.884 26.4882C22.8359 26.5036 22.7953 26.5363 22.77 26.58C22.7261 26.6422 22.7066 26.7183 22.7152 26.7939C22.7239 26.8695 22.76 26.9393 22.8167 26.99C22.8569 27.0144 22.903 27.0273 22.95 27.0273C22.9971 27.0273 23.0432 27.0144 23.0834 26.99C23.1276 27.0247 23.1788 27.0492 23.2335 27.0619C23.2883 27.0746 23.3451 27.0751 23.4 27.0633C23.4579 27.0534 23.5131 27.0314 23.5619 26.9988C23.6108 26.9662 23.6523 26.9237 23.6837 26.874C23.7151 26.8244 23.7358 26.7687 23.7443 26.7106C23.7529 26.6525 23.7491 26.5932 23.7334 26.5367C23.7195 26.4908 23.6993 26.447 23.6734 26.4067L23.6967 26.38C23.7326 26.3071 23.7432 26.2243 23.727 26.1446C23.7107 26.065 23.6684 25.993 23.6067 25.94C23.5254 25.9128 23.4379 25.9101 23.3549 25.932C23.272 25.9539 23.1973 25.9995 23.14 26.0633Z" fill="#42D4C6"/>
|
||||
<path d="M25.1567 26.1533C25.1159 26.1466 25.0742 26.1466 25.0334 26.1533C24.9585 26.1617 24.8898 26.1986 24.8414 26.2563C24.793 26.314 24.7686 26.3882 24.7734 26.4633C24.7447 26.4469 24.7129 26.4367 24.68 26.4333C24.6143 26.4302 24.5494 26.4483 24.4948 26.4849C24.4402 26.5215 24.3988 26.5747 24.3767 26.6367C24.2874 26.5939 24.1861 26.5835 24.09 26.6072C23.994 26.6309 23.9091 26.6873 23.85 26.7667C23.8045 26.8353 23.7788 26.9153 23.7758 26.9977C23.7729 27.08 23.7928 27.1616 23.8334 27.2333C23.7868 27.2276 23.7396 27.2318 23.6948 27.2456C23.65 27.2594 23.6086 27.2825 23.5734 27.3133C23.474 27.373 23.4019 27.4692 23.3727 27.5814C23.3434 27.6935 23.3592 27.8127 23.4167 27.9133C23.4167 27.9133 23.4167 27.9133 23.4367 27.9333C23.6967 27.83 23.9467 27.7133 24.1934 27.6C24.1818 27.5542 24.1662 27.5096 24.1467 27.4667C24.1404 27.4583 24.1348 27.4493 24.13 27.44C24.1587 27.445 24.188 27.445 24.2167 27.44C24.225 27.4594 24.2363 27.4774 24.25 27.4933C24.2705 27.5111 24.2943 27.5246 24.32 27.5333C24.4367 27.47 24.5567 27.4033 24.67 27.3333C24.6693 27.2928 24.6582 27.2531 24.6378 27.2181C24.6174 27.1831 24.5883 27.1539 24.5534 27.1333C24.5664 27.1021 24.5764 27.0698 24.5834 27.0367C24.6033 27.0568 24.6273 27.0726 24.6537 27.0829C24.6801 27.0932 24.7084 27.0979 24.7367 27.0967C24.812 27.0828 24.879 27.0404 24.9237 26.9783C24.9684 26.9161 24.9874 26.8391 24.9767 26.7633C25.0502 26.8341 25.1293 26.8988 25.2134 26.9567C25.39 26.83 25.5467 26.6967 25.7267 26.56C25.58 26.3722 25.382 26.231 25.1567 26.1533Z" fill="#42D4C6"/>
|
||||
<path d="M21.9967 24.4633C21.9738 24.4409 21.9462 24.4238 21.9159 24.4133C21.8855 24.4028 21.8533 24.3992 21.8214 24.4027C21.7895 24.4062 21.7587 24.4168 21.7314 24.4336C21.7041 24.4504 21.6809 24.4731 21.6634 24.5C21.6314 24.5454 21.6177 24.6012 21.6251 24.6562C21.6326 24.7112 21.6605 24.7614 21.7034 24.7967C21.7279 24.8169 21.7564 24.8317 21.787 24.8402C21.8177 24.8487 21.8498 24.8506 21.8812 24.8459C21.9126 24.8412 21.9427 24.8299 21.9695 24.8128C21.9963 24.7957 22.0192 24.7732 22.0367 24.7467C22.0568 24.7273 22.072 24.7034 22.0811 24.677C22.0902 24.6506 22.0929 24.6224 22.089 24.5948C22.0851 24.5671 22.0747 24.5408 22.0587 24.518C22.0426 24.4951 22.0214 24.4764 21.9967 24.4633Z" fill="#42D4C6"/>
|
||||
<path d="M25.1033 24.2733C25.0652 24.2567 25.0247 24.2466 24.9833 24.2433C24.94 24.1267 24.8799 24.0767 24.7933 24.09C24.6333 24.1167 24.6033 24.2333 24.6133 24.3733C24.5939 24.3882 24.5761 24.405 24.5599 24.4233C24.5337 24.4998 24.5361 24.5832 24.5668 24.658C24.5974 24.7328 24.6542 24.794 24.7266 24.83C24.8004 24.8799 24.8911 24.8985 24.9786 24.8817C25.0661 24.8648 25.1433 24.8138 25.1933 24.74C25.2432 24.6662 25.2618 24.5755 25.2449 24.488C25.2281 24.4005 25.1771 24.3233 25.1033 24.2733Z" fill="#42D4C6"/>
|
||||
<path d="M24.08 26.1767C24.18 26.1767 24.2034 25.9367 24.0967 25.7967C23.99 25.6567 23.7834 25.7767 23.7334 25.8533C23.6834 25.93 23.9834 26.1933 24.08 26.1767Z" fill="#42D4C6"/>
|
||||
<path d="M25.3767 23.2933C25.3544 23.307 25.336 23.3261 25.3231 23.3488C25.3103 23.3716 25.3035 23.3972 25.3033 23.4233C25.3033 23.46 25.3867 23.48 25.4567 23.5233C25.48 23.45 25.52 23.39 25.5067 23.35C25.492 23.3298 25.4722 23.314 25.4494 23.304C25.4265 23.294 25.4014 23.2903 25.3767 23.2933Z" fill="#42D4C6"/>
|
||||
<path d="M24.9734 25.39C24.9034 25.4767 24.9067 25.6467 25 25.6767C25.0934 25.7067 25.2634 25.7467 25.3334 25.6467C25.4034 25.5467 25.2734 25.4367 25.22 25.3867C25.2065 25.3662 25.188 25.3495 25.1663 25.338C25.1446 25.3265 25.1203 25.3207 25.0958 25.321C25.0712 25.3214 25.0472 25.3278 25.0258 25.3399C25.0044 25.352 24.9864 25.3692 24.9734 25.39Z" fill="#42D4C6"/>
|
||||
<path d="M24.5034 26.32C24.58 26.3 24.5834 26.19 24.5734 26.1567C24.5634 26.1233 24.5067 26.05 24.45 26.06C24.3934 26.07 24.3634 26.1533 24.3667 26.1967C24.37 26.24 24.4234 26.34 24.5034 26.32Z" fill="#42D4C6"/>
|
||||
<path d="M24.5267 23.6567C24.5323 23.641 24.5324 23.6238 24.5269 23.6081C24.5215 23.5923 24.5108 23.5789 24.4967 23.57C24.4767 23.57 24.4267 23.57 24.4167 23.6C24.4067 23.63 24.4167 23.6633 24.4334 23.68C24.441 23.6848 24.4495 23.688 24.4584 23.6894C24.4672 23.6908 24.4763 23.6904 24.485 23.6882C24.4937 23.6861 24.5019 23.6821 24.5091 23.6767C24.5162 23.6713 24.5223 23.6645 24.5267 23.6567Z" fill="#42D4C6"/>
|
||||
<path d="M24.2034 25.3467C24.2034 25.4833 24.47 25.6133 24.56 25.5467C24.65 25.48 24.56 25.17 24.4334 25.1567C24.3787 25.1558 24.3255 25.1745 24.2834 25.2093C24.2412 25.2441 24.2129 25.2928 24.2034 25.3467Z" fill="#42D4C6"/>
|
||||
<path d="M25.8467 24.11C25.8067 24.0833 25.7433 24.11 25.7033 24.16C25.6667 24.2133 25.6 24.27 25.6067 24.3167C25.6133 24.3633 25.6467 24.51 25.7633 24.4833C25.88 24.4567 25.8633 24.3567 25.8533 24.2967C25.87 24.2733 25.8933 24.1467 25.8467 24.11Z" fill="#42D4C6"/>
|
||||
<path d="M23.6433 23.8933C23.6712 23.8697 23.6932 23.84 23.7077 23.8064C23.7221 23.7729 23.7286 23.7365 23.7266 23.7C23.6866 23.5533 23.4966 23.5533 23.43 23.5933C23.4099 23.615 23.3947 23.6407 23.3854 23.6688C23.3761 23.6968 23.3729 23.7265 23.3761 23.7559C23.3792 23.7853 23.3886 23.8137 23.4037 23.8391C23.4187 23.8645 23.4391 23.8864 23.4633 23.9033C23.492 23.9159 23.5232 23.9215 23.5545 23.9198C23.5858 23.918 23.6162 23.909 23.6433 23.8933Z" fill="#42D4C6"/>
|
||||
<path d="M25.47 25.2533C25.5066 25.42 25.61 25.5067 25.69 25.4567C25.7678 25.4055 25.8237 25.327 25.8466 25.2367C25.8466 25.15 25.69 25.06 25.5966 25.1067C25.5033 25.1533 25.4966 25.22 25.47 25.2533Z" fill="#42D4C6"/>
|
||||
<path d="M12.3467 21.3367C12.3795 21.3922 12.4316 21.4337 12.4931 21.4534C12.5545 21.473 12.621 21.4695 12.68 21.4433C12.7292 21.4183 12.7668 21.3751 12.7849 21.3228C12.8029 21.2706 12.8 21.2134 12.7767 21.1633C12.7665 21.1323 12.7499 21.1038 12.728 21.0797C12.706 21.0556 12.6791 21.0365 12.6492 21.0236C12.6192 21.0106 12.5869 21.0042 12.5543 21.0048C12.5216 21.0053 12.4895 21.0128 12.46 21.0267C12.4081 21.0572 12.3685 21.1048 12.3478 21.1614C12.3272 21.2179 12.3268 21.2799 12.3467 21.3367Z" fill="#42D4C6"/>
|
||||
<path d="M23.32 24.6667C23.3373 24.6975 23.3618 24.7236 23.3914 24.7427C23.421 24.7619 23.4549 24.7736 23.49 24.7767C23.5246 24.7764 23.5579 24.7633 23.5834 24.74C23.578 24.7675 23.578 24.7958 23.5834 24.8233C23.7834 25.1233 23.5334 25.1833 23.6034 25.4433C23.6191 25.4808 23.6404 25.5157 23.6667 25.5467C23.6998 25.5915 23.7451 25.6259 23.7972 25.6457C23.8493 25.6654 23.906 25.6698 23.9605 25.6582C24.015 25.6466 24.065 25.6195 24.1045 25.5802C24.1441 25.5409 24.1714 25.4911 24.1834 25.4367C24.2302 25.283 24.2571 25.1239 24.2634 24.9633C24.2504 24.8686 24.2081 24.7803 24.1423 24.711C24.0765 24.6416 23.9906 24.5946 23.8967 24.5767C23.8499 24.5714 23.8026 24.5761 23.7578 24.5905C23.713 24.6049 23.6717 24.6285 23.6367 24.66C23.6417 24.6358 23.6417 24.6109 23.6367 24.5867C23.6167 24.5267 23.47 24.3933 23.4034 24.42C23.3367 24.4467 23.3034 24.6067 23.32 24.6667Z" fill="#42D4C6"/>
|
||||
<path d="M18.3133 23.43C18.3279 23.4028 18.3355 23.3725 18.3355 23.3417C18.3355 23.3108 18.3279 23.2805 18.3133 23.2533C18.2819 23.2335 18.2455 23.223 18.2083 23.223C18.1712 23.223 18.1347 23.2335 18.1033 23.2533C18.0333 23.3 18.1033 23.4467 18.1467 23.4733C18.1758 23.4813 18.2065 23.4814 18.2358 23.4738C18.265 23.4662 18.2917 23.4511 18.3133 23.43Z" fill="#42D4C6"/>
|
||||
<path d="M17.8634 24.07C17.7721 24.1027 17.6965 24.1684 17.6514 24.2542C17.6063 24.3401 17.5951 24.4397 17.62 24.5333C17.633 24.5896 17.6575 24.6425 17.6919 24.6889C17.7263 24.7353 17.7698 24.7741 17.8199 24.8029C17.8699 24.8316 17.9254 24.8498 17.9827 24.8562C18.0401 24.8626 18.0982 24.8571 18.1534 24.84C18.2006 24.8239 18.2455 24.8015 18.2867 24.7733C18.2738 24.7863 18.2626 24.8008 18.2534 24.8167C18.1767 24.9433 18.1867 25.0633 18.2767 25.1067C18.3723 25.138 18.4763 25.1308 18.5667 25.0867C18.5458 25.1184 18.5343 25.1554 18.5334 25.1933C18.5534 25.29 18.78 25.31 18.9167 25.1933C19.0534 25.0767 18.9167 24.88 18.85 24.8333C18.7834 24.7867 18.75 24.86 18.6867 24.9233C18.6868 24.8784 18.6748 24.8342 18.6519 24.7955C18.629 24.7567 18.5961 24.7249 18.5567 24.7033C18.5216 24.6844 18.4817 24.6762 18.442 24.6798C18.4023 24.6833 18.3645 24.6985 18.3334 24.7233C18.3722 24.6863 18.4004 24.6396 18.4151 24.588C18.4297 24.5365 18.4303 24.4819 18.4167 24.43C18.35 24.2033 18.05 24.0033 17.8634 24.07Z" fill="#42D4C6"/>
|
||||
<path d="M21.0934 24.2733C21.1162 24.2888 21.1419 24.2995 21.169 24.3049C21.1961 24.3102 21.224 24.3101 21.251 24.3045C21.278 24.2989 21.3037 24.288 21.3264 24.2723C21.3491 24.2567 21.3685 24.2366 21.3834 24.2133C21.4167 24.16 21.4286 24.0961 21.4169 24.0343C21.4052 23.9725 21.3706 23.9174 21.32 23.88C21.2655 23.8545 21.2038 23.8492 21.1458 23.8651C21.0877 23.881 21.0373 23.917 21.0034 23.9667C20.9838 24.0207 20.9819 24.0796 20.9981 24.1347C21.0143 24.1899 21.0477 24.2385 21.0934 24.2733Z" fill="#42D4C6"/>
|
||||
<path d="M12.94 20.3433C12.9936 20.2698 13.0188 20.1792 13.0108 20.0885C13.0028 19.9979 12.9623 19.9131 12.8966 19.85C12.8173 19.8051 12.725 19.7889 12.6352 19.8041C12.5453 19.8193 12.4635 19.8649 12.4033 19.9333C12.3233 20.0367 12.4033 20.2667 12.54 20.3833C12.5686 20.4075 12.6018 20.4257 12.6376 20.4368C12.6735 20.4479 12.7111 20.4517 12.7484 20.448C12.7857 20.4442 12.8219 20.4331 12.8548 20.4151C12.8877 20.3971 12.9167 20.3727 12.94 20.3433Z" fill="#42D4C6"/>
|
||||
<path d="M20.9666 25.52C21.0599 25.5595 21.1637 25.5662 21.2612 25.5389C21.3587 25.5117 21.4441 25.4521 21.5033 25.37C21.5297 25.3048 21.5303 25.2319 21.5049 25.1663C21.4795 25.1006 21.4301 25.0471 21.3666 25.0167C21.2995 24.988 21.2247 24.9821 21.1539 25C21.0831 25.0179 21.0202 25.0586 20.9747 25.1158C20.9293 25.173 20.9039 25.2435 20.9024 25.3165C20.901 25.3896 20.9235 25.461 20.9666 25.52Z" fill="#42D4C6"/>
|
||||
<path d="M17.8967 26.8667C17.98 26.9333 18.07 26.9567 18.1434 26.8867C18.2978 26.7621 18.4259 26.608 18.52 26.4333C18.5561 26.4933 18.6051 26.5445 18.6634 26.5833C18.7229 26.6077 18.7892 26.6101 18.8503 26.5899C18.9115 26.5697 18.9634 26.5284 18.9967 26.4733C19.0316 26.4068 19.043 26.3305 19.0291 26.2567C19.0152 26.1828 18.9768 26.1159 18.92 26.0667C18.8621 26.0396 18.799 26.0255 18.735 26.0255C18.6711 26.0255 18.6079 26.0396 18.55 26.0667C18.5337 26.0204 18.5058 25.9792 18.4688 25.9471C18.4318 25.9149 18.3871 25.8929 18.3391 25.8831C18.2911 25.8734 18.2414 25.8763 18.1948 25.8915C18.1482 25.9067 18.1064 25.9338 18.0734 25.97C17.9553 26.0805 17.8522 26.206 17.7667 26.3433C17.7295 26.433 17.722 26.5322 17.7454 26.6264C17.7688 26.7206 17.8218 26.8048 17.8967 26.8667Z" fill="#42D4C6"/>
|
||||
<path d="M12.6933 23.8233C12.6949 23.8168 12.6949 23.8099 12.6933 23.8033C12.6709 23.761 12.6343 23.728 12.59 23.71C12.6633 23.8633 12.7433 24.0133 12.8233 24.16C12.8249 24.1512 12.8249 24.1421 12.8233 24.1333C12.9 24.0833 12.9833 24.0033 12.9566 23.92C12.93 23.8367 12.77 23.82 12.6933 23.8233Z" fill="#42D4C6"/>
|
||||
<path d="M18.5667 25.6833C18.6067 25.6833 18.67 25.6167 18.66 25.5567C18.65 25.4967 18.5667 25.4733 18.5234 25.4767C18.48 25.48 18.3801 25.54 18.4034 25.6167C18.4267 25.6933 18.5334 25.6933 18.5667 25.6833Z" fill="#42D4C6"/>
|
||||
<path d="M18.2 25.84C18.2061 25.8122 18.204 25.7832 18.194 25.7566C18.1839 25.7299 18.1663 25.7068 18.1433 25.69C18.1 25.67 18.0067 25.6333 17.9833 25.69C17.9741 25.7159 17.9721 25.7438 17.9773 25.7708C17.9826 25.7978 17.995 25.8228 18.0133 25.8433C18.0433 25.8633 18.1767 25.8933 18.2 25.84Z" fill="#42D4C6"/>
|
||||
<path d="M21.86 27.4967C21.9056 27.4006 21.9148 27.2913 21.886 27.189C21.8572 27.0867 21.7923 26.9982 21.7034 26.94C21.6072 26.8871 21.4956 26.8694 21.3879 26.8901C21.2801 26.9108 21.183 26.9685 21.1134 27.0533C21.0535 27.1466 21.0294 27.2582 21.0453 27.3678C21.0612 27.4775 21.1162 27.5776 21.2 27.65C21.3133 27.6896 21.4354 27.6962 21.5523 27.669C21.6691 27.6419 21.7758 27.5821 21.86 27.4967Z" fill="#42D4C6"/>
|
||||
<path d="M12.1633 21.81C12.1391 21.758 12.1029 21.7124 12.0577 21.6771C12.0125 21.6418 11.9596 21.6176 11.9033 21.6067C11.94 21.8067 11.9833 22.0067 12.0333 22.2033L12.0766 22.1733C12.078 22.2364 12.0923 22.2986 12.1186 22.3559C12.145 22.4133 12.1829 22.4646 12.23 22.5067C12.2159 22.5018 12.2007 22.5018 12.1866 22.5067C12.16 22.5067 12.1433 22.54 12.1366 22.5767C12.2033 22.79 12.28 23 12.3633 23.21C12.3873 23.1959 12.4087 23.1779 12.4266 23.1567C12.4431 23.1316 12.4544 23.1036 12.4598 23.0741C12.4652 23.0446 12.4646 23.0144 12.4581 22.9852C12.4515 22.9559 12.4392 22.9283 12.4218 22.9039C12.4043 22.8796 12.3822 22.859 12.3566 22.8433C12.3235 22.8223 12.2858 22.8097 12.2467 22.8067C12.2375 22.7898 12.2263 22.7741 12.2133 22.76C12.2376 22.7493 12.2589 22.7327 12.2751 22.7118C12.2914 22.6908 12.3023 22.6662 12.3067 22.64C12.295 22.5999 12.2704 22.5647 12.2367 22.54C12.3012 22.5752 12.3729 22.5951 12.4464 22.5979C12.5198 22.6008 12.5929 22.5867 12.66 22.5567C12.6459 22.5846 12.6386 22.6154 12.6386 22.6467C12.6386 22.6779 12.6459 22.7088 12.66 22.7367C12.686 22.7971 12.7335 22.8458 12.7933 22.8733C12.7699 22.9211 12.7664 22.9762 12.7836 23.0265C12.8008 23.0768 12.8372 23.1182 12.885 23.1417C12.9327 23.1651 12.9878 23.1686 13.0381 23.1514C13.0885 23.1342 13.1299 23.0977 13.1533 23.05C13.1767 22.93 13.1866 22.8133 13.0833 22.7533C13.0966 22.724 13.1034 22.6922 13.1034 22.66C13.1034 22.6278 13.0966 22.596 13.0833 22.5667C13.0566 22.5276 13.02 22.4962 12.9773 22.4758C12.9346 22.4553 12.8872 22.4464 12.84 22.45C12.84 22.45 12.84 22.45 12.86 22.43C13.0033 22.2567 12.9266 21.99 12.6866 21.8067C12.609 21.7469 12.511 21.72 12.4137 21.7318C12.3164 21.7437 12.2277 21.7933 12.1666 21.87C12.1713 21.8501 12.1702 21.8293 12.1633 21.81Z" fill="#42D4C6"/>
|
||||
<path d="M22.9167 27.94C22.9061 27.9183 22.8926 27.8981 22.8767 27.88C22.9138 27.877 22.9499 27.8663 22.9826 27.8485C23.0154 27.8307 23.044 27.8062 23.0667 27.7767C23.1433 27.6667 23.0967 27.5733 22.9034 27.4067C22.8945 27.4079 22.8855 27.4079 22.8767 27.4067C22.8635 27.3647 22.8401 27.3267 22.8086 27.296C22.7772 27.2653 22.7386 27.2429 22.6964 27.2307C22.6542 27.2185 22.6096 27.2169 22.5666 27.2261C22.5236 27.2353 22.4836 27.2549 22.45 27.2833L22.42 27.2333L22.0567 27.2533L22.01 27.3367C22.0833 27.4133 22.1134 27.62 22.2567 27.5967C22.2754 27.5943 22.2933 27.5881 22.3094 27.5783C22.3255 27.5686 22.3393 27.5555 22.35 27.54C22.35 27.54 22.35 27.5567 22.35 27.5633C22.3669 27.6155 22.3998 27.661 22.4441 27.6934C22.4884 27.7257 22.5418 27.7432 22.5967 27.7433C22.539 27.7441 22.4818 27.753 22.4267 27.77C22.4093 27.7788 22.3926 27.7888 22.3767 27.8C22.3244 27.7424 22.2587 27.6986 22.1855 27.6724C22.1122 27.6463 22.0336 27.6386 21.9567 27.65C21.8491 27.6762 21.7553 27.7417 21.6936 27.8337C21.632 27.9256 21.6069 28.0372 21.6233 28.1467C21.6669 28.2456 21.7403 28.3284 21.8333 28.3833C22.2059 28.3133 22.5733 28.2186 22.9334 28.1C22.9446 28.0462 22.9388 27.9903 22.9167 27.94ZM22.6433 27.7567H22.6867C22.6722 27.7566 22.6577 27.7577 22.6433 27.76V27.7567Z" fill="#42D4C6"/>
|
||||
<path d="M14.1267 21.9033C14.2334 21.8567 14.1967 21.57 14.1534 21.4933C14.1246 21.4475 14.0818 21.4121 14.0315 21.3923C13.9811 21.3725 13.9257 21.3693 13.8734 21.3833C13.77 21.4267 13.7734 21.6167 13.7934 21.7167C13.8134 21.8167 14.02 21.94 14.1267 21.9033Z" fill="#42D4C6"/>
|
||||
<path d="M16.5633 27.3C16.6067 27.3 16.6667 27.36 16.7133 27.3C16.7215 27.2913 16.7277 27.2809 16.7313 27.2696C16.735 27.2582 16.7361 27.2462 16.7345 27.2343C16.7329 27.2225 16.7286 27.2112 16.7221 27.2012C16.7156 27.1912 16.7069 27.1829 16.6967 27.1767C16.66 27.15 16.56 27.0967 16.52 27.1467C16.48 27.1967 16.54 27.2733 16.5633 27.3Z" fill="#42D4C6"/>
|
||||
<path d="M13.1934 21.9767C13.167 22.0105 13.148 22.0497 13.1379 22.0914C13.1277 22.1331 13.1265 22.1765 13.1344 22.2188C13.1423 22.261 13.159 22.3011 13.1836 22.3363C13.2081 22.3716 13.2398 22.4013 13.2767 22.4233C13.3181 22.4571 13.3663 22.4815 13.418 22.4949C13.4698 22.5082 13.5238 22.5102 13.5764 22.5007C13.629 22.4912 13.6789 22.4705 13.7226 22.4398C13.7664 22.4092 13.8031 22.3695 13.83 22.3233C13.886 22.2448 13.9111 22.1484 13.9007 22.0525C13.8902 21.9567 13.8449 21.868 13.7734 21.8033C13.6724 21.7549 13.5571 21.7458 13.4499 21.7779C13.3426 21.8099 13.2512 21.8808 13.1934 21.9767Z" fill="#42D4C6"/>
|
||||
<path d="M16.2934 27.33C16.2889 27.3033 16.2787 27.2779 16.2636 27.2554C16.2485 27.233 16.2287 27.214 16.2057 27.1998C16.1827 27.1856 16.1569 27.1765 16.13 27.1731C16.1032 27.1697 16.0759 27.172 16.05 27.18C15.967 27.2023 15.8897 27.2421 15.8234 27.2967C16.4178 27.6612 17.0548 27.9512 17.72 28.16C17.7385 28.098 17.7385 28.032 17.72 27.97C17.65 27.72 17.4034 27.53 17.2134 27.58C17.1518 27.6028 17.0955 27.6379 17.0479 27.6832C17.0003 27.7285 16.9625 27.7829 16.9367 27.8433C16.9452 27.7722 16.9331 27.7001 16.9018 27.6357C16.8704 27.5713 16.8212 27.5172 16.76 27.48C16.6872 27.4375 16.6044 27.4152 16.52 27.4152C16.4357 27.4152 16.3529 27.4375 16.28 27.48C16.2959 27.4317 16.3004 27.3804 16.2934 27.33Z" fill="#42D4C6"/>
|
||||
<path d="M13.3933 24.4733C13.3688 24.4481 13.3387 24.4289 13.3054 24.4173C13.2721 24.4057 13.2366 24.402 13.2016 24.4065C13.1667 24.4111 13.1333 24.4237 13.1041 24.4434C13.0748 24.4631 13.0506 24.4893 13.0333 24.52C13.2073 24.8009 13.3976 25.0714 13.6033 25.33C13.6247 25.2964 13.6391 25.2589 13.6458 25.2196C13.6525 25.1804 13.6513 25.1402 13.6423 25.1014C13.6333 25.0626 13.6167 25.026 13.5934 24.9937C13.5701 24.9614 13.5406 24.9341 13.5067 24.9133H13.4867C13.5126 24.8794 13.5308 24.8402 13.5402 24.7986C13.5495 24.7569 13.5498 24.7137 13.5409 24.6719C13.5321 24.6301 13.5143 24.5908 13.4888 24.5565C13.4633 24.5222 13.4308 24.4939 13.3933 24.4733Z" fill="#42D4C6"/>
|
||||
<path d="M13.82 24.43C13.795 24.4655 13.7777 24.5059 13.7692 24.5485C13.7606 24.591 13.761 24.6349 13.7704 24.6774C13.7797 24.7198 13.7977 24.7598 13.8233 24.7949C13.8489 24.8299 13.8816 24.8593 13.9191 24.8811C13.9567 24.9029 13.9984 24.9166 14.0415 24.9215C14.0847 24.9263 14.1284 24.9221 14.1699 24.9092C14.2113 24.8962 14.2496 24.8748 14.2824 24.8462C14.3151 24.8177 14.3415 24.7826 14.36 24.7433C14.388 24.6872 14.3953 24.6231 14.3806 24.5621C14.366 24.5011 14.3304 24.4473 14.28 24.41C14.08 24.3 13.8967 24.3033 13.82 24.43Z" fill="#42D4C6"/>
|
||||
<path d="M13.7767 20.5833C13.7367 20.5833 13.64 20.6767 13.6734 20.7367C13.6953 20.7605 13.7236 20.7775 13.7549 20.7858C13.7862 20.794 13.8192 20.7932 13.85 20.7833C13.8699 20.767 13.8852 20.7459 13.8946 20.722C13.9039 20.698 13.9069 20.6721 13.9034 20.6467C13.8893 20.6263 13.8703 20.6098 13.8482 20.5987C13.826 20.5876 13.8015 20.5823 13.7767 20.5833Z" fill="#42D4C6"/>
|
||||
<path d="M13.37 21.2733C13.3502 21.2639 13.3286 21.2589 13.3067 21.2589C13.2847 21.2589 13.2631 21.2639 13.2433 21.2733C13.1533 21.3233 13.0767 21.39 13.12 21.5133C13.1633 21.6367 13.3933 21.6567 13.4533 21.5967C13.4717 21.5623 13.4813 21.524 13.4813 21.485C13.4813 21.446 13.4717 21.4077 13.4533 21.3733C13.5477 21.4203 13.6553 21.4337 13.7583 21.4113C13.8614 21.3889 13.9537 21.332 14.02 21.25C14.0469 21.1805 14.0496 21.1039 14.0279 21.0326C14.0061 20.9613 13.9611 20.8994 13.9 20.8567C13.8627 20.8266 13.8194 20.8048 13.773 20.793C13.7266 20.7811 13.6782 20.7794 13.6311 20.7879C13.5839 20.7965 13.5392 20.8151 13.4999 20.8425C13.4606 20.8699 13.4277 20.9054 13.4033 20.9467C13.3728 20.9948 13.3538 21.0493 13.348 21.1061C13.3423 21.1628 13.3498 21.22 13.37 21.2733Z" fill="#42D4C6"/>
|
||||
<path d="M13.0866 19.15C13.1068 19.17 13.1321 19.1841 13.1598 19.1905C13.1874 19.197 13.2163 19.1957 13.2433 19.1867C13.2866 19.1633 13.37 19.1067 13.34 19.06C13.3237 19.037 13.3014 19.0189 13.2755 19.0077C13.2496 18.9965 13.2212 18.9927 13.1933 18.9967C13.1533 19.0067 13.0566 19.1 13.0866 19.15Z" fill="#42D4C6"/>
|
||||
<path d="M12.75 18.03C12.8433 18.0067 12.92 17.77 12.85 17.6967C12.8185 17.6717 12.7816 17.6544 12.7422 17.6463C12.7028 17.6382 12.6621 17.6395 12.6233 17.65C12.5968 17.6563 12.572 17.6685 12.5507 17.6856C12.5295 17.7027 12.5123 17.7244 12.5005 17.749C12.4887 17.7735 12.4825 17.8005 12.4824 17.8278C12.4823 17.855 12.4883 17.882 12.5 17.9067C12.5181 17.9552 12.5541 17.995 12.6005 18.0179C12.647 18.0408 12.7005 18.0452 12.75 18.03Z" fill="#42D4C6"/>
|
||||
<path d="M13.0733 18.54L12.8066 18.7867C12.8066 18.82 12.8066 18.85 12.8066 18.8833C12.9133 18.8833 13.07 19.03 13.1633 18.9233C13.2566 18.8167 13.1366 18.6667 13.1266 18.5633L13.0733 18.54Z" fill="#42D4C6"/>
|
||||
<path d="M12.4867 18.7367C12.5334 18.8433 12.6467 18.8867 12.7234 18.8167C12.8 18.7467 12.85 18.7067 12.8367 18.6367C12.8234 18.5667 12.6234 18.4767 12.5267 18.5333C12.4301 18.59 12.4534 18.6633 12.4867 18.7367Z" fill="#42D4C6"/>
|
||||
<path d="M13.3067 16.0967C13.27 16.1267 13.2267 16.1867 13.2334 16.2267C13.24 16.2667 13.2933 16.3533 13.3833 16.3267C13.4733 16.3 13.4267 16.19 13.4167 16.1433C13.4067 16.0967 13.3234 16.0833 13.3067 16.0967Z" fill="#42D4C6"/>
|
||||
<path d="M13.51 19.9967C13.5412 20.0485 13.5914 20.0861 13.6498 20.1016C13.7083 20.1172 13.7705 20.1094 13.8233 20.08C13.8503 20.0659 13.8741 20.0463 13.8931 20.0224C13.9122 19.9986 13.926 19.9711 13.9339 19.9417C13.9417 19.9122 13.9433 19.8814 13.9386 19.8513C13.934 19.8212 13.9231 19.7924 13.9067 19.7667C13.8433 19.6333 13.7367 19.5733 13.65 19.6267C13.594 19.6688 13.5512 19.7259 13.5264 19.7914C13.5016 19.8569 13.4959 19.9281 13.51 19.9967Z" fill="#42D4C6"/>
|
||||
<path d="M14.45 19.96C14.434 19.9679 14.4217 19.9817 14.4155 19.9984C14.4093 20.0151 14.4097 20.0336 14.4167 20.05C14.4267 20.0637 14.4411 20.0735 14.4575 20.0778C14.4739 20.082 14.4913 20.0804 14.5067 20.0733C14.5267 20.0733 14.5333 20.0067 14.5233 19.99C14.5159 19.9778 14.5048 19.9683 14.4916 19.9629C14.4784 19.9575 14.4638 19.9565 14.45 19.96Z" fill="#42D4C6"/>
|
||||
<path d="M14.3233 19.05C14.3025 19.0657 14.2855 19.0858 14.2734 19.1088C14.2613 19.1319 14.2544 19.1573 14.2533 19.1833C14.2533 19.2167 14.3633 19.2967 14.4 19.2833C14.4366 19.27 14.4466 19.1467 14.4333 19.1C14.42 19.0533 14.34 19.0367 14.3233 19.05Z" fill="#42D4C6"/>
|
||||
<path d="M13.94 18.0467C13.8906 18.0705 13.8512 18.1109 13.8286 18.1609C13.8061 18.2109 13.8019 18.2672 13.8167 18.32C13.8286 18.3479 13.846 18.373 13.8678 18.3941C13.8896 18.4151 13.9154 18.4315 13.9437 18.4424C13.972 18.4533 14.0022 18.4584 14.0324 18.4574C14.0627 18.4564 14.0925 18.4494 14.12 18.4367C14.1473 18.4304 14.1727 18.4179 14.1942 18.4001C14.2158 18.3823 14.2329 18.3597 14.2442 18.3342C14.2555 18.3086 14.2607 18.2808 14.2594 18.2529C14.2581 18.225 14.2503 18.1977 14.2367 18.1733C14.2261 18.1451 14.2098 18.1194 14.189 18.0976C14.1681 18.0758 14.1431 18.0585 14.1154 18.0467C14.0877 18.0348 14.0578 18.0287 14.0277 18.0287C13.9976 18.0287 13.9677 18.0348 13.94 18.0467Z" fill="#42D4C6"/>
|
||||
<path d="M13.6933 17.18C13.6443 17.2053 13.6052 17.2463 13.5822 17.2965C13.5592 17.3466 13.5538 17.403 13.5666 17.4567C13.6033 17.5333 13.7466 17.5467 13.8633 17.4933C13.8827 17.4874 13.9004 17.477 13.9151 17.463C13.9298 17.449 13.9409 17.4317 13.9477 17.4126C13.9546 17.3935 13.9568 17.373 13.9543 17.3529C13.9518 17.3328 13.9446 17.3135 13.9333 17.2967C13.8833 17.2067 13.8099 17.1367 13.6933 17.18Z" fill="#42D4C6"/>
|
||||
<path d="M11.8734 20.5867C11.8467 20.5348 11.8106 20.4884 11.7667 20.45C11.7667 20.5567 11.7667 20.6667 11.79 20.7833C11.8567 20.7233 11.91 20.6667 11.8734 20.5867Z" fill="#42D4C6"/>
|
||||
<path d="M20.0266 24.17C19.95 24.17 19.8766 24.23 19.8233 24.2933C19.8074 24.3097 19.7958 24.3297 19.7894 24.3516C19.783 24.3735 19.7821 24.3967 19.7867 24.419C19.7913 24.4413 19.8013 24.4622 19.8158 24.4798C19.8303 24.4974 19.8489 24.5112 19.87 24.52L19.9233 24.5433C19.9233 24.5433 19.9233 24.5433 19.9233 24.5667C19.924 24.5894 19.9301 24.6117 19.9411 24.6316C19.9521 24.6516 19.9677 24.6686 19.9866 24.6813C20.0055 24.694 20.0271 24.702 20.0497 24.7047C20.0724 24.7074 20.0953 24.7046 20.1166 24.6967C20.1766 24.6767 20.3066 24.53 20.2766 24.46C20.2466 24.39 20.21 24.4033 20.1566 24.3933C20.1433 24.2967 20.08 24.18 20.0266 24.17Z" fill="#42D4C6"/>
|
||||
<path d="M12.2134 19.1167C12.159 19.1506 12.1189 19.2031 12.1005 19.2645C12.0821 19.3258 12.0866 19.3918 12.1134 19.45C12.1485 19.5166 12.2053 19.5694 12.2743 19.5997C12.3433 19.6299 12.4205 19.6359 12.4934 19.6167C12.5476 19.5827 12.5939 19.5375 12.629 19.4839C12.6641 19.4304 12.6872 19.3699 12.6967 19.3067C12.6967 19.3067 12.72 19.3067 12.7267 19.3067C12.7364 19.2943 12.7417 19.2791 12.7417 19.2633C12.7417 19.2476 12.7364 19.2323 12.7267 19.22H12.7034C12.7034 19.22 12.7034 19.2 12.7034 19.1933C12.6367 19.0767 12.3767 19.04 12.2134 19.1167Z" fill="#42D4C6"/>
|
||||
<path d="M14.1766 16.58C14.2099 16.6367 14.3 16.71 14.35 16.6967C14.4 16.6833 14.4499 16.5633 14.4399 16.51C14.4299 16.4567 14.2999 16.34 14.2433 16.3633C14.1866 16.3867 14.1566 16.5467 14.1766 16.58Z" fill="#42D4C6"/>
|
||||
<path d="M12.53 17.0467C12.6338 16.9942 12.7148 16.9056 12.7578 16.7975C12.8007 16.6894 12.8027 16.5694 12.7634 16.46C12.7287 16.3959 12.6767 16.3427 12.6134 16.3067C12.4934 16.5533 12.3867 16.8067 12.28 17.0667C12.3632 17.0887 12.4514 17.0817 12.53 17.0467Z" fill="#42D4C6"/>
|
||||
<path d="M27.0899 23.3433C27.0043 23.3731 26.9314 23.4314 26.8835 23.5085C26.8355 23.5855 26.8155 23.6766 26.8266 23.7667C26.8499 23.8933 27.0799 23.9967 27.2533 23.96C27.2914 23.9554 27.3281 23.9428 27.361 23.923C27.3939 23.9033 27.4223 23.8768 27.4443 23.8454C27.4663 23.814 27.4815 23.7782 27.4888 23.7405C27.496 23.7029 27.4953 23.6641 27.4866 23.6267C27.4399 23.45 27.2366 23.2967 27.0899 23.3433Z" fill="#42D4C6"/>
|
||||
<path d="M26.2433 22.6933L26.3266 22.7433C26.4066 22.67 26.6133 22.6467 26.5933 22.5033C26.5733 22.36 26.3833 22.3533 26.2966 22.2933L26.2333 22.33L26.2433 22.6933Z" fill="#42D4C6"/>
|
||||
<path d="M12.14 18.6667C12.1583 18.6454 12.1722 18.6207 12.1808 18.5939C12.1894 18.5672 12.1926 18.539 12.1901 18.511C12.1876 18.4831 12.1795 18.4559 12.1663 18.4311C12.1532 18.4063 12.1351 18.3844 12.1134 18.3667C12.065 18.3181 12.0235 18.2632 11.99 18.2033C11.99 18.2033 11.99 18.18 11.9634 18.1633C11.9234 18.35 11.8867 18.5333 11.8567 18.7233C11.879 18.7383 11.904 18.7488 11.9303 18.7541C11.9567 18.7593 11.9838 18.7593 12.0102 18.7541C12.0365 18.7488 12.0616 18.7384 12.0838 18.7234C12.1061 18.7084 12.1252 18.6891 12.14 18.6667Z" fill="#42D4C6"/>
|
||||
<path d="M26.58 23.0933C26.58 23.0567 26.53 23.0467 26.5067 23.0467C26.4833 23.0467 26.46 23.09 26.4633 23.0967C26.4842 23.1214 26.5077 23.1437 26.5333 23.1633C26.5467 23.14 26.5833 23.13 26.58 23.0933Z" fill="#42D4C6"/>
|
||||
<path d="M12.15 17.7033C12.1544 17.6937 12.1569 17.6833 12.1573 17.6727C12.1577 17.6621 12.156 17.6516 12.1523 17.6416C12.1486 17.6317 12.1429 17.6226 12.1356 17.6149C12.1284 17.6072 12.1197 17.601 12.11 17.5967C12.0933 17.66 12.0733 17.7233 12.0566 17.7867C12.097 17.7715 12.1303 17.7418 12.15 17.7033Z" fill="#42D4C6"/>
|
||||
<path d="M26.6066 24.8833C26.38 24.8067 26.1366 24.8833 26.0833 25.11C26.0575 25.2098 26.0657 25.3154 26.1066 25.41C26.0898 25.4192 26.0741 25.4304 26.06 25.4433C26.0052 25.5083 25.937 25.5606 25.86 25.5967C25.7912 25.6118 25.729 25.6484 25.6823 25.7011C25.6356 25.7538 25.6068 25.8199 25.6 25.89C25.6 26.0067 25.81 26.2233 25.9333 26.2233C25.9875 26.23 26.0424 26.23 26.0966 26.2233L26.2566 26.07C26.2966 25.95 26.3533 25.8333 26.4033 25.7167C26.4235 25.6955 26.4393 25.6706 26.45 25.6433C26.63 25.6433 26.7033 25.5233 26.7833 25.4867C26.8833 25.37 26.9766 25.25 27.07 25.1233C27.0619 25.1317 27.0519 25.1378 27.0408 25.1413C27.0298 25.1448 27.018 25.1455 27.0066 25.1433C26.9166 25.1133 26.7666 24.94 26.6066 24.8833Z" fill="#42D4C6"/>
|
||||
<path d="M14.52 20.8933C14.5 20.8933 14.48 21.0167 14.52 21.05C14.56 21.0833 14.6534 21.0133 14.6834 20.9767C14.7134 20.94 14.6834 20.8933 14.6634 20.85C14.6133 20.8552 14.5646 20.8699 14.52 20.8933Z" fill="#42D4C6"/>
|
||||
<path d="M15.5867 21.6433C15.5534 21.7633 15.6467 21.9367 15.7967 21.91C15.8634 21.91 15.9067 21.7467 15.95 21.6533C15.95 21.63 15.95 21.5833 15.9167 21.52C15.81 21.56 15.6067 21.5233 15.5867 21.6433Z" fill="#42D4C6"/>
|
||||
<path d="M19.5167 26.94C19.6067 26.94 19.69 26.78 19.64 26.6867C19.59 26.5933 19.5234 26.59 19.49 26.5633C19.3267 26.6067 19.2434 26.71 19.2934 26.79C19.3477 26.8649 19.4268 26.9181 19.5167 26.94Z" fill="#42D4C6"/>
|
||||
<path d="M19.6501 27.1667C19.5589 27.147 19.464 27.1539 19.3767 27.1867C19.3497 27.0965 19.2949 27.0172 19.2201 26.96C19.1932 26.9462 19.1635 26.9391 19.1334 26.9391C19.1032 26.9391 19.0735 26.9462 19.0467 26.96C18.9967 26.82 18.9101 26.7667 18.8167 26.79C18.7645 26.809 18.7213 26.847 18.696 26.8965C18.6706 26.9459 18.6649 27.0032 18.6801 27.0567C18.6904 27.0981 18.7162 27.1339 18.7521 27.1569C18.7881 27.1798 18.8315 27.1881 18.8734 27.18C18.81 27.3367 18.8367 27.45 18.9667 27.5133C19.0186 27.5382 19.0776 27.544 19.1334 27.53C19.1258 27.5705 19.1266 27.6121 19.1358 27.6522C19.1449 27.6924 19.1623 27.7302 19.1867 27.7633C19.1323 27.8655 19.1169 27.984 19.1434 28.0967C19.0883 28.095 19.034 28.11 18.9876 28.1398C18.9412 28.1695 18.9049 28.2126 18.8834 28.2633C18.8558 28.3108 18.8366 28.3627 18.8267 28.4167C19.151 28.4721 19.4782 28.5089 19.8067 28.5267C19.8177 28.4911 19.8207 28.4535 19.8155 28.4166C19.8103 28.3798 19.7971 28.3445 19.7767 28.3133C19.8284 28.3216 19.8796 28.3327 19.9301 28.3467C19.956 28.3578 19.9841 28.3627 20.0123 28.3609C20.0404 28.3591 20.0678 28.3508 20.0921 28.3365C20.1164 28.3222 20.1371 28.3024 20.1524 28.2787C20.1676 28.255 20.1771 28.228 20.1801 28.2C20.2167 28.0633 20.1267 27.89 20.0001 27.9067C19.9254 27.9186 19.8488 27.9081 19.7801 27.8767C19.8256 27.8153 19.8627 27.748 19.8901 27.6767C19.9601 27.4567 19.8967 27.2167 19.6501 27.1667Z" fill="#42D4C6"/>
|
||||
<path d="M19.8966 23.4367C19.8 23.3733 19.59 23.5567 19.54 23.6433C19.5198 23.6932 19.5154 23.748 19.5273 23.8005C19.5392 23.8529 19.5669 23.9004 19.6066 23.9367C19.7033 23.9967 19.8566 23.89 19.94 23.8167C20.0233 23.7433 19.9933 23.4967 19.8966 23.4367Z" fill="#42D4C6"/>
|
||||
<path d="M19.3667 25.2933C19.341 25.2963 19.3162 25.3051 19.2943 25.3189C19.2724 25.3328 19.2538 25.3514 19.24 25.3733C19.1234 25.5 19.04 25.6233 19.1467 25.76C19.1717 25.7869 19.2034 25.8066 19.2386 25.8171C19.2737 25.8277 19.311 25.8287 19.3467 25.82C19.4251 25.7762 19.4844 25.705 19.5134 25.62C19.5307 25.6095 19.5456 25.5955 19.5571 25.5788C19.5686 25.5621 19.5764 25.5432 19.58 25.5233C19.5794 25.4653 19.5572 25.4097 19.5178 25.3671C19.4783 25.3246 19.4245 25.2983 19.3667 25.2933Z" fill="#42D4C6"/>
|
||||
<path d="M20.07 26.99C20.1169 26.9936 20.1637 26.9824 20.2038 26.9578C20.2439 26.9333 20.2753 26.8967 20.2934 26.8533C20.316 26.8803 20.3464 26.8996 20.3804 26.9086C20.4144 26.9175 20.4504 26.9157 20.4834 26.9033C20.5334 26.9033 20.56 26.8067 20.5967 26.7533C20.5434 26.72 20.4867 26.6533 20.4367 26.66C20.3945 26.6654 20.3543 26.6814 20.32 26.7067C20.3198 26.6694 20.3101 26.6328 20.2921 26.6002C20.274 26.5676 20.2481 26.54 20.2167 26.52C20.0534 26.44 19.9367 26.5433 19.8234 26.6267C19.8634 26.8933 19.94 26.9833 20.07 26.99Z" fill="#42D4C6"/>
|
||||
<path d="M19.17 23.7533C19.1133 23.7533 19.1066 23.88 19.11 23.93C19.1133 23.98 19.1666 24.01 19.21 23.9933C19.2339 23.9836 19.2549 23.9676 19.2707 23.9471C19.2865 23.9266 19.2966 23.9023 19.3 23.8767C19.3 23.84 19.23 23.74 19.17 23.7533Z" fill="#42D4C6"/>
|
||||
<path d="M20.5633 26.9867C20.46 26.9333 20.36 26.9867 20.29 27.0933C20.1866 27.2767 20.18 27.4267 20.29 27.4767C20.3647 27.5071 20.4472 27.5132 20.5256 27.4941C20.604 27.4749 20.6744 27.4315 20.7266 27.37C20.7766 27.2733 20.6933 27.0567 20.5633 26.9867Z" fill="#42D4C6"/>
|
||||
<path d="M20.3067 28.3333C20.2692 28.3977 20.2562 28.4735 20.27 28.5467C20.5987 28.5469 20.9271 28.5268 21.2534 28.4867C21.3197 28.4562 21.3742 28.4048 21.4086 28.3404C21.4429 28.276 21.4551 28.202 21.4434 28.13C21.4099 28.0454 21.349 27.9744 21.2704 27.9285C21.1919 27.8826 21.1002 27.8643 21.01 27.8767C20.9615 27.899 20.9194 27.9334 20.8879 27.9766C20.8564 28.0198 20.8365 28.0703 20.83 28.1233C20.7325 28.0847 20.6239 28.085 20.5265 28.1241C20.4292 28.1631 20.3505 28.238 20.3067 28.3333Z" fill="#42D4C6"/>
|
||||
<path d="M21.1433 25.99C21.1171 26.0448 21.1088 26.1065 21.1196 26.1663C21.1303 26.2261 21.1596 26.2811 21.2033 26.3233C21.23 26.3233 21.2566 26.35 21.2833 26.3633C21.31 26.3767 21.2466 26.44 21.2233 26.4833C21.2966 26.5067 21.3533 26.5433 21.3966 26.53C21.4136 26.5157 21.4272 26.4978 21.4364 26.4777C21.4456 26.4575 21.4503 26.4355 21.45 26.4133C21.4982 26.4253 21.5488 26.4228 21.5957 26.4062C21.6425 26.3897 21.6834 26.3597 21.7133 26.32C21.7425 26.235 21.7444 26.1431 21.7187 26.057C21.693 25.9709 21.641 25.895 21.57 25.84C21.4921 25.8181 21.4093 25.8207 21.3329 25.8475C21.2566 25.8744 21.1903 25.9241 21.1433 25.99Z" fill="#42D4C6"/>
|
||||
<path d="M18.98 24.3233C18.9708 24.3471 18.9681 24.373 18.9722 24.3982C18.9763 24.4234 18.9871 24.447 19.0034 24.4667C19.0367 24.49 19.1534 24.5267 19.1834 24.4667C19.1919 24.4351 19.1907 24.4017 19.18 24.3708C19.1693 24.3399 19.1496 24.3129 19.1234 24.2933C19.0989 24.2857 19.0729 24.2844 19.0478 24.2896C19.0227 24.2949 18.9994 24.3065 18.98 24.3233Z" fill="#42D4C6"/>
|
||||
<path d="M20.3499 25.68C20.3127 25.7263 20.2897 25.7825 20.2837 25.8417C20.2778 25.9009 20.2892 25.9605 20.3166 26.0133C20.2233 25.9767 20.1266 25.9433 20.0699 26.03C19.9766 26.2033 19.9966 26.3467 20.0999 26.41C20.1292 26.4294 20.1622 26.4424 20.1968 26.4482C20.2314 26.4539 20.2668 26.4524 20.3007 26.4436C20.3347 26.4348 20.3664 26.4189 20.3938 26.3971C20.4213 26.3752 20.4438 26.3478 20.4599 26.3167C20.4798 26.2749 20.4853 26.2278 20.4757 26.1826C20.4661 26.1374 20.4418 26.0967 20.4066 26.0667C20.5866 26.02 20.6666 25.95 20.6466 25.8433C20.6066 25.6867 20.4933 25.6633 20.3499 25.68Z" fill="#42D4C6"/>
|
||||
<path d="M20.3267 24.8867C20.2783 24.8597 20.2213 24.8527 20.1678 24.867C20.1143 24.8813 20.0685 24.9158 20.04 24.9633C20.0209 24.9889 20.0073 25.0182 20.0002 25.0492C19.993 25.0803 19.9924 25.1126 19.9983 25.1439C20.0043 25.1753 20.0167 25.2051 20.0348 25.2314C20.0529 25.2576 20.0762 25.2799 20.1033 25.2967C20.1584 25.3278 20.2232 25.3373 20.2849 25.3231C20.3466 25.3089 20.4007 25.2721 20.4367 25.22C20.4618 25.1605 20.4645 25.094 20.4443 25.0327C20.424 24.9714 20.3823 24.9195 20.3267 24.8867Z" fill="#42D4C6"/>
|
||||
<path d="M15.23 24.31C15.2769 24.3514 15.3383 24.3726 15.4008 24.3688C15.4633 24.3651 15.5217 24.3367 15.5633 24.29C15.6014 24.2106 15.6168 24.1223 15.608 24.0347C15.5992 23.9471 15.5664 23.8636 15.5133 23.7933C15.37 23.6967 15.2267 23.74 15.1133 23.9167C15 24.0933 15.0533 24.2 15.23 24.31Z" fill="#42D4C6"/>
|
||||
<path d="M15.38 22.91H15.3633C15.3186 22.908 15.2742 22.9177 15.2344 22.9382C15.1947 22.9587 15.161 22.9892 15.1366 23.0267C15.1045 23.0788 15.0913 23.1403 15.0991 23.201C15.107 23.2617 15.1356 23.3179 15.1799 23.36C15.2374 23.3887 15.302 23.4003 15.3659 23.3932C15.4297 23.3861 15.4902 23.3607 15.5399 23.32C15.5605 23.2799 15.5686 23.2347 15.5633 23.19C15.5893 23.1697 15.6074 23.141 15.6147 23.1088C15.622 23.0766 15.618 23.0429 15.6033 23.0133C15.5733 22.91 15.47 22.85 15.38 22.91Z" fill="#42D4C6"/>
|
||||
<path d="M14.3433 22.3667C14.3035 22.4315 14.2871 22.5079 14.2967 22.5833C14.2534 22.6633 14.24 22.6333 14.1167 22.6433C14.0827 22.6479 14.0492 22.6557 14.0167 22.6667C13.9574 22.6308 13.8894 22.6118 13.82 22.6118C13.7507 22.6118 13.6827 22.6308 13.6233 22.6667C13.5633 22.72 13.57 22.8867 13.6233 23C13.5905 22.9915 13.5561 22.9915 13.5233 23C13.4589 23.0099 13.4009 23.0449 13.3622 23.0973C13.3235 23.1498 13.3071 23.2155 13.3167 23.28C13.3218 23.3432 13.3218 23.4068 13.3167 23.47C13.3041 23.4785 13.2938 23.4899 13.2867 23.5033C13.276 23.5358 13.276 23.5709 13.2867 23.6033C13.2667 23.6568 13.2621 23.7147 13.2733 23.7707C13.2845 23.8266 13.3111 23.8783 13.35 23.92C13.4242 23.96 13.508 23.9786 13.5921 23.9739C13.6762 23.9692 13.7574 23.9413 13.8267 23.8933C13.9234 23.8067 14.0267 23.72 13.94 23.56C13.8533 23.4 13.83 23.32 13.7733 23.2C13.7735 23.1602 13.7631 23.1212 13.7434 23.0867C13.7752 23.0942 13.8084 23.0928 13.8395 23.0828C13.8707 23.0729 13.8985 23.0546 13.92 23.03C13.9779 23.1269 14.0686 23.1997 14.1757 23.2352C14.2828 23.2707 14.3991 23.2665 14.5033 23.2233C14.59 23.1732 14.6609 23.0998 14.7081 23.0114C14.7552 22.923 14.7766 22.8233 14.77 22.7233C14.7928 22.7028 14.814 22.6805 14.8333 22.6567C14.849 22.6368 14.8602 22.6138 14.8661 22.5892C14.8719 22.5646 14.8723 22.539 14.8673 22.5142C14.8622 22.4895 14.8517 22.4661 14.8367 22.4458C14.8216 22.4255 14.8023 22.4087 14.78 22.3967C14.7255 22.3357 14.6494 22.2984 14.5678 22.2928C14.4862 22.2872 14.4057 22.3137 14.3433 22.3667Z" fill="#42D4C6"/>
|
||||
<path d="M14.7133 20.3067C14.69 20.3433 14.69 20.44 14.7133 20.4633C14.739 20.4723 14.7666 20.4746 14.7934 20.4699C14.8203 20.4652 14.8455 20.4538 14.8666 20.4367C14.8933 20.4067 14.9133 20.2867 14.8666 20.25C14.82 20.2133 14.7333 20.2733 14.7133 20.3067Z" fill="#42D4C6"/>
|
||||
<path d="M14.9 26.01C14.8194 26.1282 14.7492 26.2531 14.69 26.3833C14.6865 26.4077 14.6865 26.4323 14.69 26.4567C14.87 26.6122 15.0566 26.7622 15.25 26.9067C15.25 26.8767 15.2833 26.86 15.3066 26.88C15.33 26.9 15.43 26.9233 15.5466 26.8133C15.5736 26.794 15.5962 26.7693 15.6131 26.7409C15.63 26.7124 15.6409 26.6807 15.6449 26.6478C15.649 26.6149 15.6462 26.5816 15.6368 26.5498C15.6273 26.5181 15.6114 26.4886 15.59 26.4633C15.572 26.4421 15.5506 26.4241 15.5266 26.41C15.5161 26.3788 15.5027 26.3487 15.4866 26.32C15.4866 26.2633 15.4866 26.1967 15.4666 26.17C15.4322 26.1572 15.3944 26.1572 15.36 26.17C15.2466 26.0833 15.14 26.0267 15.1533 25.8367C15.1533 25.7067 15.04 25.6667 14.9133 25.6667C14.7866 25.7933 14.7866 25.9167 14.9 26.01Z" fill="#42D4C6"/>
|
||||
<path d="M21.6067 23.42C21.5962 23.4396 21.5927 23.4623 21.597 23.4842C21.6012 23.506 21.6129 23.5257 21.63 23.54C21.6525 23.5523 21.6778 23.5587 21.7034 23.5587C21.729 23.5587 21.7542 23.5523 21.7767 23.54C21.8034 23.5167 21.8267 23.3967 21.7767 23.3633C21.7267 23.33 21.6434 23.3833 21.6067 23.42Z" fill="#42D4C6"/>
|
||||
<path d="M17.4033 24.7533C17.401 24.7609 17.401 24.7691 17.4033 24.7767C17.4033 24.7767 17.4033 24.76 17.3866 24.7567C17.2733 24.6633 17.0533 24.6767 17.0166 24.7833C17.0106 24.807 17.0096 24.8317 17.0136 24.8558C17.0176 24.8799 17.0266 24.9029 17.04 24.9233C17.0135 24.9012 16.9824 24.8853 16.9489 24.8766C16.9155 24.868 16.8806 24.8668 16.8466 24.8733C16.7897 24.8918 16.7422 24.9317 16.7141 24.9846C16.6861 25.0375 16.6799 25.0992 16.6966 25.1567C16.707 25.1997 16.7284 25.2393 16.7589 25.2714C16.7893 25.3036 16.8276 25.3272 16.87 25.34C16.8209 25.3537 16.7791 25.386 16.7533 25.43C16.7325 25.4547 16.7173 25.4837 16.709 25.515C16.7006 25.5462 16.6993 25.5789 16.705 25.6108C16.7107 25.6426 16.7234 25.6728 16.7421 25.6991C16.7608 25.7255 16.7851 25.7474 16.8133 25.7633C16.8133 25.7633 16.8366 25.7633 16.85 25.7633C16.8039 25.7808 16.7593 25.802 16.7166 25.8267H16.66C16.6236 25.775 16.5714 25.7366 16.5112 25.7174C16.451 25.6981 16.3862 25.699 16.3266 25.72C16.335 25.6917 16.335 25.6616 16.3266 25.6333C16.2933 25.5784 16.2409 25.5376 16.1795 25.5185C16.1181 25.4995 16.0519 25.5036 15.9933 25.53C15.9574 25.5374 15.9233 25.552 15.8932 25.5731C15.8631 25.5941 15.8376 25.621 15.8182 25.6522C15.7989 25.6834 15.7861 25.7182 15.7807 25.7545C15.7752 25.7908 15.7773 25.8278 15.7866 25.8633C15.797 25.8918 15.813 25.918 15.8336 25.9402C15.8542 25.9624 15.8791 25.9803 15.9068 25.9927C15.9344 26.0052 15.9643 26.0119 15.9946 26.0126C16.025 26.0133 16.0551 26.0079 16.0833 25.9967C16.0815 26.0738 16.1011 26.15 16.14 26.2167L16.1733 26.2833C16.1639 26.3124 16.163 26.3435 16.1706 26.373C16.1783 26.4025 16.1943 26.4292 16.2166 26.45C16.2198 26.4743 16.2198 26.499 16.2166 26.5233C16.2099 26.6042 16.2239 26.6855 16.2571 26.7595C16.2903 26.8335 16.3418 26.8979 16.4066 26.9467C16.4689 26.9976 16.545 27.0289 16.6251 27.0366C16.7052 27.0443 16.7858 27.0281 16.8566 26.99L16.8966 26.9667C16.8475 27.0538 16.8343 27.1567 16.86 27.2533C16.9033 27.39 17.0666 27.4467 17.2666 27.39C17.4166 27.35 17.5433 27.18 17.5133 27.0567C17.5404 27.0145 17.5506 26.9636 17.542 26.9142C17.5333 26.8649 17.5064 26.8205 17.4666 26.79C17.4262 26.7714 17.3817 26.7634 17.3374 26.7669C17.293 26.7704 17.2503 26.7853 17.2133 26.81C17.1687 26.7971 17.1213 26.7971 17.0766 26.81L17.0166 26.8367C17.0394 26.7749 17.0463 26.7084 17.0366 26.6433C17.0193 26.4946 16.9523 26.3561 16.8466 26.25C16.9933 26.2767 17.1233 26.25 17.18 26.1667C17.2045 26.1254 17.214 26.0769 17.2067 26.0295C17.1994 25.982 17.1758 25.9386 17.14 25.9067C17.1064 25.8675 17.0642 25.8367 17.0166 25.8167C17.0566 25.8066 17.0919 25.783 17.1166 25.75C17.1358 25.724 17.1492 25.6942 17.156 25.6626C17.1627 25.6309 17.1626 25.5983 17.1557 25.5667C17.1487 25.5351 17.1351 25.5054 17.1157 25.4795C17.0963 25.4536 17.0716 25.4322 17.0433 25.4167C17.0192 25.4008 16.9935 25.3873 16.9666 25.3767C17.0254 25.3631 17.0767 25.3276 17.1102 25.2774C17.1437 25.2272 17.1567 25.1661 17.1466 25.1067C17.1914 25.1649 17.2572 25.2032 17.33 25.2133C17.4266 25.2133 17.4733 25.0367 17.45 24.91C17.4709 24.9196 17.4936 24.9246 17.5166 24.9246C17.5397 24.9246 17.5624 24.9196 17.5833 24.91C17.6066 24.8867 17.6166 24.7533 17.5833 24.7333C17.55 24.7133 17.4366 24.72 17.4033 24.7533Z" fill="#42D4C6"/>
|
||||
<path d="M17.4733 25.3333C17.432 25.3238 17.3889 25.3242 17.3477 25.3347C17.3066 25.3451 17.2685 25.3652 17.2367 25.3933C17.2134 25.4248 17.1971 25.461 17.1889 25.4993C17.1808 25.5377 17.181 25.5773 17.1895 25.6156C17.1981 25.6538 17.2147 25.6898 17.2384 25.721C17.2621 25.7523 17.2922 25.7781 17.3267 25.7967C17.3633 25.8089 17.4023 25.8119 17.4403 25.8054C17.4784 25.7988 17.5142 25.7829 17.5446 25.7592C17.575 25.7354 17.599 25.7044 17.6145 25.6691C17.63 25.6338 17.6364 25.5951 17.6333 25.5567C17.6254 25.5097 17.6069 25.4652 17.5791 25.4265C17.5514 25.3878 17.5152 25.356 17.4733 25.3333Z" fill="#42D4C6"/>
|
||||
<path d="M16.6866 25.0067C16.6952 24.9542 16.6833 24.9005 16.6533 24.8567C16.6533 24.8567 16.5433 24.8567 16.5333 24.8867C16.5233 24.9167 16.4966 25.03 16.5333 25.07C16.5699 25.11 16.6833 25.03 16.6866 25.0067Z" fill="#42D4C6"/>
|
||||
<path d="M16.49 22.79C16.3775 22.8436 16.2869 22.9342 16.2333 23.0467C16.1999 23.0357 16.1638 23.0355 16.1302 23.0463C16.0967 23.0571 16.0674 23.0782 16.0467 23.1067C16.0286 23.1235 16.0142 23.1439 16.0043 23.1665C15.9945 23.1892 15.9894 23.2136 15.9894 23.2383C15.9894 23.263 15.9945 23.2875 16.0043 23.3101C16.0142 23.3328 16.0286 23.3532 16.0467 23.37C16.0793 23.392 16.1173 23.4047 16.1566 23.4067C16.2012 23.5039 16.2794 23.5817 16.3768 23.6258C16.4742 23.6699 16.5842 23.6773 16.6866 23.6467C16.7887 23.6046 16.8738 23.5296 16.9282 23.4335C16.9826 23.3374 17.0032 23.2258 16.9867 23.1167C16.9597 23.01 16.8938 22.9172 16.8018 22.8568C16.7099 22.7963 16.5986 22.7725 16.49 22.79Z" fill="#42D4C6"/>
|
||||
<path d="M15.68 24.2333C15.5233 24.27 15.4433 24.3867 15.48 24.5133C15.4893 24.5332 15.5005 24.5522 15.5133 24.57C15.36 24.48 15.2133 24.5333 15.1 24.7267C15.0695 24.7894 15.0608 24.8605 15.0753 24.9287C15.0898 24.997 15.1266 25.0584 15.18 25.1033C15.2663 25.1384 15.3603 25.1503 15.4526 25.1381C15.545 25.1258 15.6325 25.0897 15.7067 25.0333C15.727 24.9829 15.7337 24.928 15.726 24.8742C15.7184 24.8204 15.6968 24.7695 15.6633 24.7267C15.7104 24.7707 15.7718 24.7962 15.8363 24.7984C15.9007 24.8007 15.9637 24.7795 16.0137 24.7388C16.0638 24.6982 16.0974 24.6408 16.1083 24.5773C16.1193 24.5137 16.1068 24.4484 16.0733 24.3933C16.0433 24.2733 15.8767 24.1867 15.68 24.2333Z" fill="#42D4C6"/>
|
||||
<path d="M16.9967 23.8133C16.9407 23.8176 16.8886 23.8438 16.8518 23.8862C16.8149 23.9287 16.7963 23.9839 16.8 24.04C16.803 24.0775 16.8141 24.1139 16.8325 24.1467C16.8509 24.1795 16.8762 24.2079 16.9067 24.23C17.02 24.3033 17.1134 24.2533 17.2734 24.06C17.2134 23.94 17.1834 23.7833 16.9967 23.8133Z" fill="#42D4C6"/>
|
||||
<path d="M31.54 12.5633C33.9553 12.5633 35.9133 10.6053 35.9133 8.19C35.9133 5.77467 33.9553 3.81667 31.54 3.81667C29.1246 3.81667 27.1666 5.77467 27.1666 8.19C27.1666 10.6053 29.1246 12.5633 31.54 12.5633Z" fill="#20377D"/>
|
||||
<path d="M31.54 36.1833C33.9553 36.1833 35.9133 34.2253 35.9133 31.81C35.9133 29.3947 33.9553 27.4367 31.54 27.4367C29.1246 27.4367 27.1666 29.3947 27.1666 31.81C27.1666 34.2253 29.1246 36.1833 31.54 36.1833Z" fill="#20377D"/>
|
||||
<path d="M8.46 36.1833C10.8753 36.1833 12.8333 34.2253 12.8333 31.81C12.8333 29.3947 10.8753 27.4367 8.46 27.4367C6.04468 27.4367 4.08667 29.3947 4.08667 31.81C4.08667 34.2253 6.04468 36.1833 8.46 36.1833Z" fill="#20377D"/>
|
||||
<path d="M20.2533 19.52C21.4923 19.52 22.4967 18.5156 22.4967 17.2767C22.4967 16.0377 21.4923 15.0333 20.2533 15.0333C19.0144 15.0333 18.01 16.0377 18.01 17.2767C18.01 18.5156 19.0144 19.52 20.2533 19.52Z" fill="#20377D"/>
|
||||
<path d="M16.2367 23.2733C16.2367 22.2076 16.6601 21.1855 17.4136 20.4319C18.1672 19.6784 19.1893 19.255 20.255 19.255C21.3208 19.255 22.3428 19.6784 23.0964 20.4319C23.85 21.1855 24.2734 22.2076 24.2734 23.2733" fill="#20377D"/>
|
||||
<path d="M8.46 12.5633C10.8753 12.5633 12.8333 10.6053 12.8333 8.19C12.8333 5.77467 10.8753 3.81667 8.46 3.81667C6.04468 3.81667 4.08667 5.77467 4.08667 8.19C4.08667 10.6053 6.04468 12.5633 8.46 12.5633Z" fill="#20377D"/>
|
||||
<path d="M8.50338 7.94C9.12562 7.94 9.63004 7.43558 9.63004 6.81334C9.63004 6.19109 9.12562 5.68667 8.50338 5.68667C7.88114 5.68667 7.37671 6.19109 7.37671 6.81334C7.37671 7.43558 7.88114 7.94 8.50338 7.94Z" fill="#7DE2D1"/>
|
||||
<path d="M6.48669 9.82667C6.48669 9.29226 6.69899 8.77973 7.07687 8.40185C7.45476 8.02396 7.96728 7.81167 8.50169 7.81167C9.0361 7.81167 9.54863 8.02396 9.92651 8.40185C10.3044 8.77973 10.5167 9.29226 10.5167 9.82667" fill="#7DE2D1"/>
|
||||
<path d="M31.3934 7.94C32.0156 7.94 32.5201 7.43558 32.5201 6.81334C32.5201 6.19109 32.0156 5.68667 31.3934 5.68667C30.7711 5.68667 30.2667 6.19109 30.2667 6.81334C30.2667 7.43558 30.7711 7.94 31.3934 7.94Z" fill="#7DE2D1"/>
|
||||
<path d="M29.3733 9.82666C29.3733 9.29181 29.5858 8.77886 29.964 8.40067C30.3422 8.02247 30.8551 7.81 31.39 7.81C31.9248 7.81 32.4378 8.02247 32.816 8.40067C33.1942 8.77886 33.4066 9.29181 33.4066 9.82666" fill="#7DE2D1"/>
|
||||
<path d="M8.50338 31.6767C9.12562 31.6767 9.63004 31.1722 9.63004 30.55C9.63004 29.9278 9.12562 29.4233 8.50338 29.4233C7.88114 29.4233 7.37671 29.9278 7.37671 30.55C7.37671 31.1722 7.88114 31.6767 8.50338 31.6767Z" fill="#7DE2D1"/>
|
||||
<path d="M6.48669 33.5633C6.48669 33.0289 6.69899 32.5164 7.07687 32.1385C7.45476 31.7606 7.96728 31.5483 8.50169 31.5483C9.0361 31.5483 9.54863 31.7606 9.92651 32.1385C10.3044 32.5164 10.5167 33.0289 10.5167 33.5633" fill="#7DE2D1"/>
|
||||
<path d="M31.3934 31.6767C32.0156 31.6767 32.5201 31.1722 32.5201 30.55C32.5201 29.9278 32.0156 29.4233 31.3934 29.4233C30.7711 29.4233 30.2667 29.9278 30.2667 30.55C30.2667 31.1722 30.7711 31.6767 31.3934 31.6767Z" fill="#7DE2D1"/>
|
||||
<path d="M29.3733 33.5633C29.3733 33.0285 29.5858 32.5155 29.964 32.1373C30.3422 31.7591 30.8551 31.5467 31.39 31.5467C31.9248 31.5467 32.4378 31.7591 32.816 32.1373C33.1942 32.5155 33.4066 33.0285 33.4066 33.5633" fill="#7DE2D1"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1610_106430">
|
||||
<rect width="40" height="40" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 128 KiB |
After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 47 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg width="32" height="28" viewBox="0 0 32 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 14V12H26V14H20Z" fill="#00BFB3"/>
|
||||
<path d="M12 14V12H18V14H12Z" fill="#00BFB3"/>
|
||||
<path d="M1 7V5H31V7H1Z" fill="#535766"/>
|
||||
<path d="M10.7275 15.3139L9.27247 16.6861L5.79651 13L9.27247 9.31393L10.7275 10.6861L8.54551 13L10.7275 15.3139Z" fill="#535766"/>
|
||||
<path d="M12 19V21H6V19H12Z" fill="#00BFB3"/>
|
||||
<path d="M20 19V21H14V19H20Z" fill="#00BFB3"/>
|
||||
<path d="M21.2929 17.7071L22.7071 16.2929L26.4142 20L22.7071 23.7071L21.2929 22.2929L23.5858 20L21.2929 17.7071Z" fill="#535766"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M29 0H3C1.34315 0 0 1.34315 0 3V25C0 26.6569 1.34315 28 3 28H29C30.6569 28 32 26.6569 32 25V3C32 1.34315 30.6569 0 29 0ZM2 3C2 2.44772 2.44772 2 3 2H29C29.5523 2 30 2.44772 30 3V25C30 25.5523 29.5523 26 29 26H3C2.44772 26 2 25.5523 2 25V3Z" fill="#535766"/>
|
||||
</svg>
|
After Width: | Height: | Size: 901 B |
|
@ -1,872 +0,0 @@
|
|||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.9876 1.45312C20.8876 1.62812 20.9219 1.74687 21.1032 1.85625C21.1606 1.89943 21.232 1.91981 21.3035 1.91346C21.3751 1.90711 21.4418 1.87448 21.4907 1.82187C21.5271 1.73135 21.5324 1.6313 21.5058 1.53741C21.4793 1.44353 21.4223 1.36112 21.3438 1.30312H21.1844C21.1029 1.32773 21.0329 1.38101 20.9876 1.45312V1.45312Z" fill="white"/>
|
||||
<path d="M20.1781 1.43438C20.1694 1.4047 20.1568 1.37633 20.1406 1.35C20.1671 1.32353 20.1874 1.29151 20.2 1.25625L20 1.25H19.8687C19.8687 1.25 19.8687 1.27187 19.8687 1.28125C19.859 1.28681 19.8505 1.29425 19.8437 1.30313C19.7991 1.39814 19.7615 1.49632 19.7312 1.59688C19.4906 1.67813 19.3594 1.82813 19.4187 1.975C19.4606 2.05364 19.5266 2.11674 19.6071 2.155C19.6876 2.19326 19.7782 2.20465 19.8656 2.1875C20.0344 2.13437 20.0562 2.0375 19.9594 1.7C20.0875 1.64375 20.225 1.60938 20.1781 1.43438Z" fill="white"/>
|
||||
<path d="M22.2656 2.21562C22.3656 2.19062 22.4812 2.19687 22.5406 2.10625C22.6 2.01562 22.7781 1.75937 22.6718 1.5875C22.5656 1.41562 22.4437 1.55 22.3312 1.53437C22.2815 1.52787 22.231 1.53522 22.1852 1.55563C22.1395 1.57603 22.1002 1.60869 22.0718 1.65C21.9962 1.66309 21.9264 1.69908 21.8718 1.75312C21.8277 1.81179 21.8041 1.88335 21.8046 1.95678C21.8052 2.0302 21.8299 2.10139 21.875 2.15937C21.8563 2.16134 21.8375 2.15929 21.8197 2.15336C21.8019 2.14743 21.7856 2.13776 21.7718 2.125C21.6875 2.04687 21.5031 2.04687 21.3562 2.23437C21.2093 2.42187 21.3062 2.7125 21.4812 2.72187C21.6562 2.73125 21.7031 2.6375 21.7468 2.68125C21.7906 2.725 21.8312 2.86875 21.9468 2.86562C22.0625 2.8625 22.1875 2.53437 22.1875 2.47812C22.1875 2.42187 22.1218 2.32187 22.1687 2.25937C22.2028 2.24916 22.2354 2.23445 22.2656 2.21562V2.21562Z" fill="white"/>
|
||||
<path d="M25.6406 2.1875C25.575 2.16069 25.503 2.15321 25.4332 2.16594C25.3635 2.17868 25.2988 2.21109 25.2469 2.25937C25.2265 2.33278 25.2284 2.41059 25.2523 2.48292C25.2762 2.55526 25.3211 2.61885 25.3812 2.66562C25.4009 2.67818 25.4228 2.6867 25.4458 2.69067C25.4687 2.69465 25.4922 2.69399 25.5149 2.68876C25.5376 2.68352 25.5591 2.6738 25.578 2.66016C25.5969 2.64653 25.6129 2.62926 25.625 2.60937C25.7562 2.425 25.7594 2.25625 25.6406 2.1875Z" fill="white"/>
|
||||
<path d="M22.7812 2.1875C22.7312 2.2625 22.7812 2.36562 22.8125 2.43437C22.8437 2.50312 22.9812 2.47812 23.0343 2.40625C23.0875 2.33437 23.0781 2.22187 23.0031 2.1875C22.9281 2.15312 22.8343 2.12187 22.7812 2.1875Z" fill="white"/>
|
||||
<path d="M25.7875 2.84688C25.8119 2.86227 25.8391 2.87269 25.8676 2.87757C25.896 2.88244 25.9252 2.88166 25.9533 2.87528C25.9814 2.8689 26.0081 2.85703 26.0316 2.84036C26.0552 2.82369 26.0752 2.80254 26.0906 2.77813C26.106 2.75371 26.1164 2.7265 26.1213 2.69805C26.1262 2.6696 26.1254 2.64047 26.119 2.61232C26.1126 2.58418 26.1008 2.55756 26.0841 2.534C26.0674 2.51044 26.0463 2.49039 26.0219 2.475C25.9679 2.44824 25.9058 2.44271 25.848 2.45949C25.7901 2.47627 25.7407 2.51414 25.7094 2.56563C25.684 2.61362 25.678 2.66949 25.6925 2.72179C25.707 2.77409 25.741 2.81884 25.7875 2.84688V2.84688Z" fill="white"/>
|
||||
<path d="M19.025 2.58438C19.0484 2.55406 19.0651 2.51909 19.0739 2.48181C19.0827 2.44453 19.0834 2.4058 19.076 2.36821C19.0686 2.33063 19.0532 2.29507 19.031 2.2639C19.0087 2.23273 18.98 2.20668 18.9469 2.1875C18.9092 2.15799 18.8655 2.137 18.8189 2.12598C18.7723 2.11497 18.7239 2.11418 18.677 2.12369C18.63 2.13319 18.5857 2.15276 18.5471 2.18104C18.5084 2.20932 18.4764 2.24564 18.4531 2.2875C18.4046 2.35927 18.3842 2.44636 18.3957 2.53221C18.4072 2.61807 18.4499 2.69669 18.5156 2.75313C18.5561 2.77798 18.6019 2.79267 18.6493 2.79594C18.6966 2.7992 18.744 2.79095 18.7875 2.77188C18.8159 2.77849 18.8456 2.77701 18.8732 2.76762C18.9008 2.75824 18.9253 2.74131 18.9438 2.71875C18.9809 2.6809 19.0088 2.63488 19.025 2.58438V2.58438Z" fill="white"/>
|
||||
<path d="M17.8625 1.375C17.8365 1.42364 17.8196 1.47657 17.8125 1.53125C17.8024 1.49625 17.7842 1.46413 17.7594 1.4375L17.7094 1.39375L17.3969 1.4375C17.4449 1.50041 17.479 1.57286 17.4969 1.65C17.5191 1.67558 17.5472 1.69545 17.5787 1.70795C17.6103 1.72046 17.6443 1.72523 17.6781 1.72188C17.7066 1.71343 17.7332 1.69942 17.7562 1.68064C17.7793 1.66187 17.7984 1.63871 17.8125 1.6125C17.8084 1.64904 17.8137 1.68603 17.8279 1.71994C17.8421 1.75385 17.8648 1.78356 17.8937 1.80625C17.9447 1.81843 17.9982 1.8141 18.0465 1.79387C18.0948 1.77365 18.1354 1.73859 18.1625 1.69375C18.2 1.54688 18.3062 1.56875 18.3969 1.52188C18.4302 1.50345 18.4598 1.47909 18.4844 1.45C18.4844 1.45 18.4844 1.45 18.4844 1.45C18.5379 1.4813 18.5989 1.4978 18.6609 1.4978C18.723 1.4978 18.7839 1.4813 18.8375 1.45C18.8685 1.40772 18.8819 1.35509 18.875 1.30313C18.9937 1.4 19.1312 1.425 19.2125 1.35C19.2402 1.32583 19.2608 1.29447 19.2719 1.25938C18.7969 1.2875 18.325 1.32188 17.8625 1.375Z" fill="white"/>
|
||||
<path d="M21.1344 2.025C21.1196 2.002 21.1003 1.98223 21.0776 1.96687C21.055 1.95152 21.0295 1.94089 21.0026 1.93564C20.9758 1.93039 20.9481 1.93061 20.9214 1.9363C20.8946 1.94199 20.8693 1.95303 20.8469 1.96875C20.7927 2.02427 20.7589 2.09647 20.751 2.17363C20.743 2.25079 20.7614 2.32836 20.8031 2.39375C20.8429 2.43577 20.8969 2.46157 20.9546 2.46619C21.0123 2.47081 21.0696 2.45391 21.1156 2.41875C21.167 2.36713 21.1974 2.29825 21.2009 2.22549C21.2043 2.15273 21.1806 2.08128 21.1344 2.025V2.025Z" fill="white"/>
|
||||
<path d="M20.175 2.20625C20.1972 2.2219 20.2223 2.23288 20.2488 2.23854C20.2753 2.24419 20.3027 2.24439 20.3293 2.23913C20.3559 2.23387 20.3811 2.22326 20.4035 2.20793C20.4259 2.19261 20.4449 2.1729 20.4594 2.15C20.4716 2.12825 20.4793 2.10421 20.4818 2.07938C20.4843 2.05455 20.4817 2.02946 20.474 2.0057C20.4664 1.98194 20.4539 1.96 20.4374 1.94128C20.4209 1.92255 20.4008 1.90743 20.3781 1.89687C20.3299 1.87098 20.2735 1.86499 20.221 1.88017C20.1684 1.89536 20.1239 1.93052 20.0969 1.97812C20.0854 1.99788 20.0782 2.0199 20.076 2.04266C20.0737 2.06542 20.0764 2.08841 20.0838 2.11005C20.0912 2.13169 20.1032 2.15149 20.1189 2.16809C20.1347 2.18469 20.1538 2.1977 20.175 2.20625V2.20625Z" fill="white"/>
|
||||
<path d="M17.1875 1.475L16.9094 1.52187C17.0048 1.53941 17.1032 1.52282 17.1875 1.475V1.475Z" fill="white"/>
|
||||
<path d="M20.9375 1.34688C20.9562 1.32549 20.973 1.30248 20.9875 1.27813C20.7844 1.27813 20.5782 1.27813 20.3625 1.25938C20.3726 1.28674 20.3875 1.31212 20.4063 1.33438C20.4776 1.40177 20.5714 1.44035 20.6695 1.44266C20.7676 1.44497 20.8631 1.41085 20.9375 1.34688V1.34688Z" fill="white"/>
|
||||
<path d="M16.9406 1.90625C16.9681 1.86024 16.9788 1.8061 16.9708 1.75309C16.9628 1.70008 16.9367 1.65148 16.8968 1.61562C16.8125 1.5625 16.6125 1.5875 16.5843 1.65625C16.5599 1.71432 16.5553 1.7788 16.5711 1.83977C16.5869 1.90075 16.6223 1.95485 16.6718 1.99375C16.7194 2.01612 16.7736 2.01953 16.8236 2.00327C16.8735 1.98701 16.9154 1.95231 16.9406 1.90625V1.90625Z" fill="white"/>
|
||||
<path d="M26.25 2.55625C26.25 2.57812 26.25 2.6125 26.2906 2.61562C26.2985 2.61744 26.3066 2.61756 26.3145 2.61595C26.3224 2.61434 26.3299 2.61106 26.3364 2.60632C26.3429 2.60158 26.3484 2.59549 26.3523 2.58847C26.3563 2.58145 26.3587 2.57366 26.3594 2.56562C26.3594 2.525 26.3219 2.50625 26.3031 2.50312C26.2844 2.5 26.25 2.54062 26.25 2.55625Z" fill="white"/>
|
||||
<path d="M26.7313 2.5L26.4813 2.4C26.5517 2.45935 26.6393 2.49442 26.7313 2.5V2.5Z" fill="white"/>
|
||||
<path d="M13.8937 2.58437C13.9363 2.62397 13.9863 2.65476 14.0408 2.67495C14.0953 2.69514 14.1533 2.70433 14.2114 2.70201C14.2695 2.69969 14.3266 2.68589 14.3793 2.6614C14.4321 2.63692 14.4794 2.60225 14.5187 2.55937C14.5876 2.49439 14.6321 2.40766 14.6446 2.31376C14.6571 2.21987 14.6369 2.12452 14.5875 2.04375C14.3187 2.125 14.05 2.2125 13.7875 2.30625C13.7822 2.35768 13.7891 2.40962 13.8076 2.45792C13.826 2.50621 13.8555 2.54952 13.8937 2.58437V2.58437Z" fill="white"/>
|
||||
<path d="M25.0406 1.99375C25.0629 2.01476 25.0897 2.03045 25.1189 2.03965C25.1482 2.04885 25.1791 2.05132 25.2094 2.04687C25.2436 2.04358 25.2766 2.03292 25.3063 2.01562C24.9938 1.92187 24.6813 1.84062 24.35 1.7625C24.3073 1.83163 24.2932 1.91466 24.3107 1.994C24.3282 2.07334 24.376 2.14274 24.4438 2.1875C24.5492 2.25837 24.6782 2.28528 24.8031 2.2625C24.8151 2.2748 24.8302 2.28347 24.8469 2.2875C24.8813 2.2875 24.9906 2.2875 25 2.225C24.9998 2.21291 24.9969 2.20103 24.9914 2.19022C24.986 2.1794 24.9783 2.16993 24.9688 2.1625C24.9796 2.1581 24.99 2.15287 25 2.14687C25.0251 2.09961 25.039 2.04722 25.0406 1.99375V1.99375Z" fill="white"/>
|
||||
<path d="M23.925 2.05625C23.945 2.02362 23.9587 1.9876 23.9657 1.95V1.95C24.1157 2 24.1969 1.90937 24.2782 1.7875L24.2563 1.74062C23.9438 1.66875 23.6532 1.60625 23.3469 1.55312C23.3176 1.5721 23.2921 1.59649 23.2719 1.625C23.2427 1.66536 23.2228 1.71161 23.2135 1.76051C23.2041 1.80941 23.2056 1.85976 23.2178 1.90803C23.23 1.95629 23.2527 2.00129 23.2842 2.03985C23.3156 2.07842 23.3552 2.10962 23.4 2.13125C23.4375 2.16539 23.482 2.19082 23.5305 2.20573C23.5789 2.22064 23.63 2.22466 23.6802 2.21749C23.7304 2.21032 23.7783 2.19215 23.8207 2.16428C23.863 2.1364 23.8986 2.09951 23.925 2.05625V2.05625Z" fill="white"/>
|
||||
<path d="M13.4531 2.6125C13.4657 2.58394 13.4722 2.55308 13.4722 2.52188C13.4722 2.49067 13.4657 2.45981 13.4531 2.43125C13.1406 2.54688 12.8281 2.67188 12.5406 2.80313C12.6075 2.88206 12.6952 2.94054 12.7938 2.97188C12.9264 2.98004 13.0586 2.95066 13.1752 2.88709C13.2918 2.82352 13.3882 2.72835 13.4531 2.6125V2.6125Z" fill="white"/>
|
||||
<path d="M16.3562 2.47813L16.575 2.26875C16.5461 2.21061 16.5137 2.15426 16.4781 2.1C16.4544 2.07055 16.4236 2.04763 16.3886 2.03341C16.3536 2.0192 16.3156 2.01415 16.2781 2.01875C16.2784 1.98171 16.2713 1.94497 16.2574 1.91065C16.2435 1.87633 16.2229 1.8451 16.1968 1.81875L16.1687 1.79063C16.1771 1.76537 16.1784 1.73825 16.1723 1.71232C16.1663 1.68638 16.1531 1.66265 16.1343 1.64375L15.575 1.77188C15.5797 1.78059 15.5875 1.78726 15.5968 1.79063C15.7656 1.84063 15.7468 1.9875 15.775 2.10313C15.7778 2.13815 15.7896 2.17185 15.8092 2.20104C15.8288 2.23022 15.8555 2.25392 15.8868 2.26988C15.9181 2.28585 15.953 2.29355 15.9881 2.29226C16.0232 2.29097 16.0574 2.28072 16.0875 2.2625L16.1281 2.24375C16.1341 2.27738 16.1493 2.30872 16.1718 2.33438C16.2267 2.39019 16.2887 2.43852 16.3562 2.47813V2.47813Z" fill="white"/>
|
||||
<g clip-path="url(#clip0_1610_107866)">
|
||||
<path d="M20 38.75C30.3553 38.75 38.75 30.3553 38.75 20C38.75 9.64466 30.3553 1.25 20 1.25C9.64466 1.25 1.25 9.64466 1.25 20C1.25 30.3553 9.64466 38.75 20 38.75Z" fill="#ECF0F6"/>
|
||||
<path d="M35.9906 15.4813C36.0406 15.3969 35.9688 15.3312 35.8875 15.3C35.8063 15.2687 35.6813 15.3 35.675 15.3875C35.6688 15.475 35.6406 15.6062 35.7563 15.6312C35.8719 15.6562 35.9531 15.5406 35.9906 15.4813Z" fill="white"/>
|
||||
<path d="M35.6563 15.8937C35.6573 15.8605 35.6517 15.8274 35.6399 15.7963C35.6281 15.7652 35.6103 15.7367 35.5875 15.7125C35.5188 15.6594 35.3688 15.7344 35.3563 15.8281C35.3594 15.8802 35.3755 15.9307 35.4031 15.975C35.5344 16.025 35.65 15.9812 35.6563 15.8937Z" fill="white"/>
|
||||
<path d="M36.3 14.8562C36.3608 14.8843 36.4298 14.889 36.4938 14.8694C36.5578 14.8498 36.6123 14.8073 36.6469 14.75C36.6746 14.6591 36.6709 14.5616 36.6363 14.4731C36.6017 14.3846 36.5383 14.3104 36.4563 14.2625C36.403 14.2499 36.3473 14.253 36.2958 14.2712C36.2442 14.2895 36.199 14.3223 36.1656 14.3656C36.1175 14.3335 36.0631 14.3119 36.006 14.3022C35.9489 14.2925 35.8905 14.295 35.8344 14.3094C35.7488 14.3514 35.6814 14.423 35.6446 14.5109C35.6079 14.5988 35.6042 14.6971 35.6344 14.7875C35.6701 14.8755 35.7371 14.9472 35.8225 14.9888C35.9079 15.0303 36.0056 15.0388 36.0969 15.0125C36.1775 14.9797 36.2477 14.9257 36.3 14.8562V14.8562Z" fill="white"/>
|
||||
<path d="M33.1688 6.70625C33.1787 6.69973 33.1881 6.69241 33.1969 6.68438L32.9031 6.40001C32.8891 6.42761 32.8818 6.45811 32.8818 6.48906C32.8818 6.52001 32.8891 6.55052 32.9031 6.57812C32.9115 6.60441 32.9252 6.62871 32.9433 6.64955C32.9614 6.67038 32.9836 6.68732 33.0084 6.69931C33.0333 6.7113 33.0603 6.71811 33.0879 6.7193C33.1154 6.72049 33.143 6.71605 33.1688 6.70625V6.70625Z" fill="white"/>
|
||||
<path d="M35.0312 14.9062C34.9875 14.9969 35.0687 15.15 35.2375 15.2375C35.275 15.2187 35.3594 15.2031 35.3937 15.1531C35.4301 15.1009 35.4449 15.0366 35.435 14.9737C35.4251 14.9108 35.3913 14.8542 35.3406 14.8156C35.2866 14.7918 35.226 14.7878 35.1694 14.8044C35.1127 14.821 35.0638 14.8571 35.0312 14.9062V14.9062Z" fill="white"/>
|
||||
<path d="M35.8344 14.0344C35.8836 14.0444 35.9347 14.0368 35.9787 14.0127C36.0228 13.9887 36.0569 13.9499 36.075 13.9031C36.0845 13.8831 36.0894 13.8612 36.0894 13.8391C36.0894 13.8169 36.0845 13.795 36.075 13.775C36.0043 13.6987 35.928 13.6277 35.8469 13.5625C35.8469 13.3094 35.7625 13.1312 35.6094 13.1219C35.5535 13.1277 35.4995 13.1459 35.4514 13.1751C35.4034 13.2043 35.3623 13.2437 35.3313 13.2906C35.3032 13.2906 35.2657 13.2906 35.2563 13.3313C35.2513 13.342 35.2487 13.3538 35.2487 13.3656C35.2487 13.3775 35.2513 13.3892 35.2563 13.4C35.2563 13.425 35.2563 13.45 35.2563 13.4719C35.2563 13.6469 35.3282 13.7031 35.6782 13.7375C35.6719 13.875 35.6532 14.0156 35.8344 14.0344Z" fill="white"/>
|
||||
<path d="M35.2625 12.1375C35.0969 12.2094 35.0406 12.3 35.0938 12.4187C35.1469 12.5375 35.3094 12.6562 35.4344 12.5906C35.4846 12.5413 35.5222 12.4806 35.5439 12.4137C35.5657 12.3468 35.571 12.2756 35.5594 12.2062C35.5219 12.0969 35.4125 12.0719 35.2625 12.1375Z" fill="white"/>
|
||||
<path d="M34.3687 9.79375C34.4016 9.80158 34.4358 9.80158 34.4687 9.79375C34.51 9.8363 34.5448 9.88474 34.5718 9.93748C34.5961 10.0055 34.6445 10.0623 34.7079 10.0969C34.7713 10.1315 34.8453 10.1415 34.9156 10.125C35.0687 10.1 35.1281 9.99061 35.0375 9.78123C34.9687 9.71561 34.8656 9.60311 34.7468 9.50623C34.7482 9.50006 34.7482 9.49366 34.7468 9.48748C34.7538 9.41995 34.7337 9.3524 34.691 9.29967C34.6482 9.24693 34.5862 9.21334 34.5187 9.20625C34.3593 9.17187 34.1375 9.27499 34.1125 9.39374C34.0985 9.48026 34.1169 9.56889 34.1642 9.64268C34.2115 9.71648 34.2843 9.77027 34.3687 9.79375V9.79375Z" fill="white"/>
|
||||
<path d="M35.2406 9.37812C35.2927 9.34584 35.3315 9.29594 35.35 9.23749C35.2094 9.03749 35.0656 8.8375 34.9156 8.64062C34.8819 8.64417 34.8501 8.6584 34.825 8.68125C34.8043 8.69571 34.7869 8.7143 34.7739 8.73586C34.7608 8.75742 34.7524 8.78147 34.7492 8.80647C34.7459 8.83147 34.748 8.85687 34.7551 8.88105C34.7622 8.90522 34.7743 8.92763 34.7906 8.94687C34.815 8.97231 34.8435 8.99345 34.875 9.00937C34.863 9.03644 34.8568 9.06572 34.8568 9.09532C34.8568 9.12492 34.863 9.15417 34.875 9.18124C34.9937 9.38124 35.0969 9.4375 35.2406 9.37812Z" fill="white"/>
|
||||
<path d="M36.5813 11.4344C36.571 11.4913 36.581 11.5499 36.6096 11.6002C36.6381 11.6504 36.6834 11.6891 36.7375 11.7094C36.7632 11.7156 36.79 11.7156 36.8156 11.7094C36.7625 11.6 36.7062 11.4906 36.65 11.3969C36.6361 11.3958 36.6223 11.3988 36.6101 11.4054C36.5979 11.4121 36.5879 11.4221 36.5813 11.4344V11.4344Z" fill="white"/>
|
||||
<path d="M37.6344 13.6219C37.5469 13.375 37.45 13.1281 37.35 12.8844C37.3092 12.9033 37.2705 12.9263 37.2344 12.9531C37.1944 12.9765 37.161 13.0096 37.137 13.0492C37.1131 13.0888 37.0994 13.1338 37.0972 13.18C37.0951 13.2262 37.1045 13.2723 37.1246 13.314C37.1447 13.3557 37.1749 13.3917 37.2125 13.4187C37.3449 13.5024 37.4864 13.5706 37.6344 13.6219V13.6219Z" fill="white"/>
|
||||
<path d="M36.5219 12.5937C36.5604 12.6431 36.6082 12.6845 36.6625 12.7156C36.7144 12.7516 36.7687 12.7839 36.825 12.8125C37.0094 12.9094 37.1375 12.8906 37.2375 12.7594C37.2508 12.7363 37.2623 12.7123 37.2719 12.6875C37.2031 12.5281 37.1281 12.375 37.0531 12.2094C36.9343 12.1156 36.8244 12.011 36.725 11.8969C36.6219 11.7687 36.4125 11.6938 36.325 11.7688C36.293 11.8111 36.2758 11.8626 36.2758 11.9156C36.2758 11.9686 36.293 12.0202 36.325 12.0625C36.4469 12.1469 36.3875 12.2406 36.3969 12.3406C36.4195 12.4331 36.4622 12.5195 36.5219 12.5937V12.5937Z" fill="white"/>
|
||||
<path d="M34.5 8.6C34.7125 8.70938 34.8125 8.71563 34.8906 8.6C34.8031 8.48438 34.7094 8.36874 34.6187 8.25624C34.4844 8.34062 34.4969 8.475 34.5 8.6Z" fill="white"/>
|
||||
<path d="M34.0563 8.34376C34.1094 8.34376 34.2 8.27501 34.2031 8.22813C34.2084 8.18666 34.2054 8.14455 34.1941 8.10429C34.1828 8.06403 34.1636 8.02645 34.1375 7.99376C34.0219 7.88438 33.9313 7.99376 33.825 8.07188C33.8469 8.22501 33.8906 8.35001 34.0563 8.34376Z" fill="white"/>
|
||||
<path d="M14.1469 5.66874C14.1841 5.62639 14.2069 5.57327 14.212 5.51709C14.2171 5.4609 14.2041 5.40457 14.175 5.35624C14.0219 5.19374 13.8281 5.14687 13.7281 5.24687C13.6848 5.31289 13.663 5.39074 13.6658 5.46967C13.6686 5.5486 13.6958 5.62471 13.7437 5.68749C13.8047 5.72636 13.8761 5.74542 13.9483 5.74206C14.0205 5.7387 14.0898 5.7131 14.1469 5.66874Z" fill="white"/>
|
||||
<path d="M20.9876 1.45313C20.8876 1.625 20.9219 1.74687 21.1032 1.85625C21.1609 1.89876 21.2321 1.91873 21.3034 1.9124C21.3748 1.90607 21.4414 1.87388 21.4907 1.82188C21.5271 1.73135 21.5324 1.6313 21.5058 1.53741C21.4793 1.44353 21.4223 1.36112 21.3438 1.30312H21.1844C21.1023 1.32666 21.0321 1.38021 20.9876 1.45313Z" fill="white"/>
|
||||
<path d="M36.0156 16.7063C36.0938 16.6594 36.1438 16.5844 36.0875 16.5063C36.0313 16.4281 35.9063 16.3125 35.8375 16.3469C35.7688 16.3813 35.7781 16.5219 35.7844 16.6063C35.7 16.5625 35.6125 16.6063 35.5719 16.7156C35.5627 16.734 35.5581 16.7544 35.5585 16.775C35.5589 16.7956 35.5642 16.8157 35.574 16.8338C35.5838 16.8519 35.5978 16.8674 35.6148 16.8789C35.6319 16.8904 35.6514 16.8976 35.6719 16.9C35.7375 16.9 35.9094 16.9438 35.9344 16.8531C35.9403 16.809 35.9291 16.7643 35.9031 16.7281C35.942 16.7318 35.981 16.7242 36.0156 16.7063Z" fill="white"/>
|
||||
<path d="M19.1781 3.375C19.1437 3.40937 19.1156 3.56563 19.1593 3.60313C19.2031 3.64063 19.3687 3.60314 19.3812 3.56564C19.3937 3.52814 19.4187 3.37188 19.3812 3.34688C19.3478 3.33345 19.3115 3.32898 19.2759 3.33391C19.2403 3.33885 19.2065 3.353 19.1781 3.375V3.375Z" fill="white"/>
|
||||
<path d="M20.1781 1.43126C20.1696 1.40251 20.1569 1.37515 20.1406 1.35C20.1662 1.32161 20.1863 1.28878 20.2 1.25313H19.8687C19.8687 1.25313 19.8687 1.27189 19.8687 1.28126L19.8437 1.30312C19.8001 1.39858 19.7625 1.49669 19.7312 1.59687C19.4906 1.68125 19.3594 1.83125 19.4187 1.975C19.4632 2.05325 19.5313 2.11538 19.6133 2.15244C19.6953 2.18951 19.7869 2.19961 19.875 2.18126C20.0437 2.12814 20.0656 2.03124 19.9687 1.69374C20.0875 1.64374 20.225 1.62501 20.1781 1.43126Z" fill="white"/>
|
||||
<path d="M22.2657 2.21251C22.3657 2.18751 22.4813 2.2125 22.5376 2.10625C22.5938 2 22.7782 1.75626 22.6688 1.58751C22.5594 1.41876 22.4438 1.55002 22.3313 1.53439C22.2819 1.5279 22.2317 1.53493 22.186 1.55474C22.1404 1.57456 22.1009 1.60641 22.0719 1.64689C21.9956 1.65982 21.9254 1.69708 21.8719 1.75313C21.8271 1.81074 21.8027 1.88168 21.8027 1.95469C21.8027 2.02771 21.8271 2.09865 21.8719 2.15626C21.8532 2.15971 21.834 2.15836 21.8159 2.15235C21.7979 2.14634 21.7817 2.13587 21.7688 2.12189C21.6844 2.04689 21.5001 2.04376 21.3501 2.23126C21.2001 2.41876 21.3032 2.71251 21.475 2.72189C21.6469 2.73126 21.7 2.63439 21.7438 2.68126C21.7875 2.72814 21.8282 2.86877 21.9438 2.86252C22.0594 2.85627 22.1844 2.53437 22.1782 2.475C22.1719 2.41562 22.1125 2.31877 22.1594 2.25627C22.1972 2.24837 22.2333 2.23354 22.2657 2.21251Z" fill="white"/>
|
||||
<path d="M25.6407 2.17502C25.5747 2.14861 25.5026 2.14164 25.4328 2.15493C25.363 2.16822 25.2985 2.20121 25.2469 2.25001C25.2268 2.32296 25.2288 2.40024 25.2527 2.47203C25.2766 2.54382 25.3214 2.60686 25.3813 2.65313C25.4003 2.6688 25.4225 2.6802 25.4464 2.68653C25.4702 2.69286 25.4951 2.69398 25.5194 2.68983C25.5437 2.68568 25.5668 2.67636 25.5872 2.66248C25.6076 2.6486 25.6248 2.63049 25.6375 2.60939C25.7563 2.42502 25.7594 2.25002 25.6407 2.17502Z" fill="white"/>
|
||||
<path d="M22.7812 2.19375C22.7312 2.26875 22.7812 2.37499 22.8125 2.44374C22.8437 2.51249 22.9812 2.48437 23.0343 2.4125C23.051 2.39812 23.0638 2.37978 23.0715 2.35917C23.0792 2.33857 23.0816 2.31635 23.0785 2.29457C23.0754 2.27279 23.0669 2.25214 23.0537 2.23453C23.0405 2.21691 23.0231 2.20288 23.0031 2.19375C22.9437 2.16562 22.8343 2.12187 22.7812 2.19375Z" fill="white"/>
|
||||
<path d="M19.4 4.29064C19.4494 4.32815 19.5098 4.34845 19.5719 4.34845C19.634 4.34845 19.6943 4.32815 19.7438 4.29064C19.7908 4.22149 19.8187 4.14115 19.8248 4.05775C19.8308 3.97434 19.8147 3.89082 19.7781 3.81563C19.7068 3.77551 19.6236 3.76167 19.5431 3.77651C19.4626 3.79135 19.3899 3.83395 19.3375 3.89688C19.2281 4.01251 19.25 4.15314 19.4 4.29064Z" fill="white"/>
|
||||
<path d="M13.7969 4.07812C13.723 4.03148 13.6374 4.00673 13.55 4.00673C13.4626 4.00673 13.377 4.03148 13.3031 4.07812C13.2504 4.13573 13.2212 4.21099 13.2212 4.28907C13.2212 4.36715 13.2504 4.4424 13.3031 4.50001C13.3582 4.56383 13.4365 4.60313 13.5205 4.60928C13.6046 4.61543 13.6878 4.58793 13.7516 4.53281C13.8154 4.4777 13.8547 4.39949 13.8608 4.3154C13.867 4.2313 13.8395 4.1482 13.7844 4.08438L13.7969 4.07812Z" fill="white"/>
|
||||
<path d="M25.7875 2.84686C25.837 2.87234 25.8943 2.87829 25.9479 2.86353C26.0016 2.84877 26.0477 2.81439 26.0772 2.76719C26.1067 2.72 26.1174 2.66345 26.1072 2.60875C26.0969 2.55404 26.0665 2.50519 26.0219 2.47188C25.9673 2.44682 25.9055 2.44251 25.848 2.45976C25.7904 2.47702 25.7412 2.51466 25.7094 2.56562C25.696 2.58921 25.6875 2.6152 25.6842 2.64211C25.6809 2.66902 25.6829 2.69632 25.6901 2.72245C25.6974 2.74857 25.7097 2.773 25.7264 2.79435C25.7431 2.8157 25.7639 2.83354 25.7875 2.84686V2.84686Z" fill="white"/>
|
||||
<path d="M36.6469 13.3313C36.7112 13.2985 36.7623 13.2445 36.7913 13.1785C36.8204 13.1124 36.8257 13.0383 36.8063 12.9688C36.7843 12.9145 36.7444 12.8694 36.6932 12.841C36.6421 12.8126 36.5827 12.8025 36.525 12.8125C36.325 12.8813 36.2125 13.0312 36.2563 13.1594C36.2929 13.2275 36.3513 13.2814 36.422 13.3125C36.4928 13.3436 36.5719 13.3502 36.6469 13.3313V13.3313Z" fill="white"/>
|
||||
<path d="M19.025 2.58125C19.0482 2.55028 19.0645 2.51471 19.0728 2.47692C19.0812 2.43914 19.0814 2.4 19.0734 2.36214C19.0654 2.32427 19.0494 2.28854 19.0265 2.25735C19.0036 2.22615 18.9743 2.20023 18.9406 2.18126C18.9029 2.15134 18.8591 2.13008 18.8122 2.11899C18.7654 2.1079 18.7167 2.10726 18.6695 2.1171C18.6224 2.12694 18.578 2.14703 18.5396 2.17594C18.5011 2.20485 18.4694 2.24186 18.4468 2.28438C18.3985 2.35566 18.3782 2.44224 18.3898 2.52756C18.4013 2.61289 18.4439 2.69098 18.5093 2.74689C18.5495 2.77253 18.5954 2.78767 18.6429 2.79095C18.6904 2.79422 18.738 2.78552 18.7812 2.76564C18.8094 2.77191 18.8387 2.77059 18.8661 2.7618C18.8936 2.75302 18.9182 2.73707 18.9375 2.71563C18.9778 2.67921 19.008 2.63289 19.025 2.58125Z" fill="white"/>
|
||||
<path d="M18.5844 3.00937C18.5346 3.01544 18.4888 3.0394 18.4555 3.07678C18.4221 3.11416 18.4035 3.16241 18.4031 3.2125C18.3944 3.25221 18.4012 3.29373 18.4221 3.32859C18.443 3.36344 18.4765 3.38898 18.5156 3.4C18.6656 3.45 18.7469 3.35624 18.8281 3.23749C18.7687 3.11874 18.7437 2.98437 18.5844 3.00937Z" fill="white"/>
|
||||
<path d="M17.8625 1.37188C17.839 1.41795 17.8232 1.46756 17.8157 1.51874C17.8056 1.48281 17.7874 1.44967 17.7625 1.42187L17.7125 1.38124L17.4 1.42187C17.4481 1.48478 17.4822 1.55724 17.5 1.63438C17.5 1.67813 17.6219 1.71876 17.6813 1.70938C17.7307 1.69498 17.7744 1.66547 17.8063 1.625C17.8011 1.66116 17.806 1.69805 17.8203 1.73166C17.8346 1.76526 17.8579 1.7943 17.8875 1.81562C17.9385 1.82883 17.9923 1.82499 18.0409 1.80467C18.0894 1.78435 18.1299 1.74868 18.1563 1.70312C18.1906 1.55937 18.3 1.57813 18.3906 1.53438C18.4227 1.51295 18.4521 1.48776 18.4782 1.45937V1.45937C18.5314 1.49164 18.5925 1.50871 18.6547 1.50871C18.717 1.50871 18.778 1.49164 18.8313 1.45937C18.8465 1.43843 18.8574 1.41465 18.8633 1.38942C18.8692 1.3642 18.87 1.33804 18.8657 1.3125C18.9875 1.40625 19.1219 1.43126 19.2063 1.35938C19.2331 1.33319 19.2534 1.30107 19.2656 1.26562C18.7938 1.28437 18.325 1.3125 17.8625 1.37188Z" fill="white"/>
|
||||
<path d="M14.1438 2.875C14.073 2.8137 13.9818 2.78109 13.8882 2.78362C13.7946 2.78615 13.7053 2.82362 13.6379 2.88866C13.5705 2.9537 13.5299 3.0416 13.524 3.13507C13.5182 3.22854 13.5475 3.32081 13.6063 3.39374C13.6424 3.43194 13.6863 3.46191 13.735 3.48162C13.7837 3.50132 13.8361 3.51029 13.8886 3.50792C13.9411 3.50555 13.9924 3.49188 14.0392 3.46786C14.0859 3.44385 14.1269 3.41006 14.1594 3.36876C14.2171 3.29853 14.2473 3.20975 14.2444 3.11893C14.2415 3.02812 14.2058 2.94144 14.1438 2.875V2.875Z" fill="white"/>
|
||||
<path d="M36.4938 15.3031C36.4563 15.3219 36.4406 15.4281 36.4563 15.4875C36.459 15.5053 36.4665 15.5221 36.4779 15.536C36.4894 15.5499 36.5044 15.5605 36.5214 15.5666C36.5384 15.5726 36.5567 15.574 36.5744 15.5706C36.592 15.5671 36.6085 15.5589 36.6219 15.5469C36.6719 15.5062 36.7969 15.3906 36.7625 15.3188C36.7281 15.2469 36.5563 15.2781 36.4938 15.3031Z" fill="white"/>
|
||||
<path d="M29.1813 5.16563C29.2688 5.22188 29.375 5.20314 29.4 5.10939C29.4094 5.04619 29.4094 4.98194 29.4 4.91875C29.3766 4.9037 29.3505 4.8936 29.3231 4.88907C29.2957 4.88454 29.2676 4.88569 29.2407 4.89242C29.2137 4.89916 29.1885 4.91135 29.1664 4.92824C29.1444 4.94514 29.126 4.96637 29.1125 4.99063C29.0562 5.07813 29.1219 5.12501 29.1813 5.16563Z" fill="white"/>
|
||||
<path d="M29.0094 3.94375C29.0431 3.94535 29.0767 3.93913 29.1076 3.92558C29.1385 3.91202 29.1658 3.89151 29.1875 3.86563C29.2006 3.84056 29.2075 3.81268 29.2075 3.78438C29.2075 3.75607 29.2006 3.72821 29.1875 3.70314C29.1125 3.59377 29.0094 3.60626 28.8937 3.67814C28.8937 3.78439 28.8719 3.90313 29.0094 3.94375Z" fill="white"/>
|
||||
<path d="M28.3375 7.10001C28.3884 7.09927 28.4371 7.07912 28.4737 7.0437C28.5103 7.00828 28.532 6.96023 28.5344 6.90937C28.5344 6.74374 28.3438 6.63438 28.275 6.63438C28.2125 6.66049 28.1609 6.70741 28.129 6.76721C28.0971 6.82701 28.0869 6.89602 28.1 6.96251C28.1158 7.01057 28.1488 7.05114 28.1926 7.07649C28.2364 7.10184 28.288 7.11021 28.3375 7.10001V7.10001Z" fill="white"/>
|
||||
<path d="M21.1344 2.02188C21.1193 1.99913 21.0998 1.97964 21.0771 1.96459C21.0543 1.94953 21.0287 1.93922 21.0019 1.93426C20.9751 1.9293 20.9475 1.9298 20.9209 1.93573C20.8942 1.94165 20.8691 1.95287 20.8469 1.96874C20.7929 2.02376 20.7593 2.09543 20.7513 2.17205C20.7434 2.24867 20.7616 2.32572 20.8031 2.39063C20.8426 2.43328 20.8966 2.45953 20.9545 2.46416C21.0124 2.46879 21.0699 2.45148 21.1156 2.41564C21.167 2.36401 21.1974 2.29512 21.2009 2.22236C21.2043 2.1496 21.1806 2.07816 21.1344 2.02188V2.02188Z" fill="white"/>
|
||||
<path d="M27.6625 4.36876C27.7552 4.39147 27.8531 4.37913 27.9373 4.33415C28.0215 4.28916 28.0861 4.2147 28.1188 4.125C28.1271 4.01879 28.1012 3.9127 28.045 3.82219C27.9888 3.73169 27.9052 3.66151 27.8063 3.62188C27.7103 3.61377 27.6147 3.64109 27.5376 3.69867C27.4604 3.75626 27.407 3.84011 27.3875 3.93438C27.3716 4.02797 27.3909 4.12411 27.4417 4.20431C27.4925 4.28451 27.5711 4.34309 27.6625 4.36876V4.36876Z" fill="white"/>
|
||||
<path d="M27.5219 2.975C27.495 3.00577 27.4758 3.04253 27.466 3.08221C27.4562 3.1219 27.4561 3.16336 27.4655 3.20312C27.475 3.24288 27.4939 3.27978 27.5205 3.31077C27.5472 3.34176 27.5809 3.36593 27.6188 3.38125C27.6667 3.41627 27.7236 3.43692 27.7828 3.4408C27.842 3.44467 27.9011 3.4316 27.9531 3.40313C27.9901 3.43361 28.0365 3.45028 28.0844 3.45028C28.1323 3.45028 28.1787 3.43361 28.2156 3.40313C28.2469 3.37813 28.2844 3.32501 28.2782 3.29063C28.2696 3.24411 28.2582 3.19818 28.2438 3.15313C28.0438 3.05625 27.8375 2.9625 27.6344 2.87187C27.588 2.89508 27.5491 2.93081 27.5219 2.975V2.975Z" fill="white"/>
|
||||
<path d="M29.7188 5.62813C29.753 5.6325 29.7879 5.63006 29.8212 5.62095C29.8545 5.61185 29.8857 5.59626 29.913 5.57506C29.9403 5.55387 29.9632 5.52749 29.9802 5.49745C29.9973 5.46741 30.0083 5.4343 30.0125 5.40001C30.0166 5.37804 30.0162 5.35548 30.0115 5.33365C30.0067 5.31182 29.9977 5.29116 29.9849 5.27284C29.9721 5.25453 29.9558 5.23892 29.9369 5.22695C29.9181 5.21499 29.897 5.2069 29.875 5.20313C29.8279 5.18461 29.7759 5.18323 29.7279 5.19922C29.6799 5.21522 29.6391 5.24756 29.6125 5.29062C29.5969 5.31966 29.5872 5.35155 29.5841 5.38439C29.581 5.41722 29.5845 5.45035 29.5944 5.48181C29.6043 5.51327 29.6204 5.54242 29.6418 5.56755C29.6631 5.59268 29.6893 5.61328 29.7188 5.62813Z" fill="white"/>
|
||||
<path d="M28.5094 3.5C28.5504 3.5276 28.6005 3.53846 28.6493 3.53032C28.6981 3.52219 28.742 3.49568 28.7719 3.45624C28.7719 3.45624 28.7719 3.45624 28.7719 3.43436L28.4 3.24687C28.3852 3.29518 28.388 3.3472 28.4081 3.39359C28.4281 3.43998 28.464 3.4777 28.5094 3.5V3.5Z" fill="white"/>
|
||||
<path d="M32.1812 6.06874C32.1647 6.10173 32.1561 6.13812 32.1561 6.175C32.1561 6.21188 32.1647 6.24827 32.1812 6.28126C32.1842 6.30154 32.1922 6.32076 32.2045 6.33712C32.2169 6.35349 32.2331 6.36648 32.2518 6.37489C32.2705 6.3833 32.291 6.38687 32.3115 6.38525C32.3319 6.38363 32.3516 6.37687 32.3687 6.36562C32.45 6.32187 32.5187 6.26562 32.4812 6.15312C32.4437 6.04062 32.2281 6.01874 32.1812 6.06874Z" fill="white"/>
|
||||
<path d="M32.2438 7.44688C32.3019 7.44644 32.3588 7.4306 32.4087 7.40095C32.4587 7.3713 32.4999 7.32892 32.5281 7.27813C32.5271 7.21967 32.5079 7.16296 32.4732 7.11591C32.4385 7.06887 32.39 7.03381 32.3344 7.01562C32.3059 7.0098 32.2766 7.00995 32.2482 7.01608C32.2198 7.02221 32.193 7.03419 32.1695 7.05123C32.146 7.06828 32.1263 7.09004 32.1116 7.11511C32.097 7.14019 32.0877 7.16803 32.0844 7.19688C32.0768 7.25071 32.0887 7.30546 32.1179 7.3513C32.1471 7.39713 32.1918 7.43103 32.2438 7.44688V7.44688Z" fill="white"/>
|
||||
<path d="M32.6406 6.28436C32.6806 6.29482 32.7225 6.29482 32.7625 6.28436C32.6531 6.18124 32.5406 6.08124 32.4281 5.97186C32.4327 6.0381 32.4548 6.10193 32.4921 6.15684C32.5294 6.21174 32.5807 6.25575 32.6406 6.28436V6.28436Z" fill="white"/>
|
||||
<path d="M20.9937 3.125C21.0007 3.11431 21.0045 3.10183 21.0045 3.08906C21.0045 3.0763 21.0007 3.06381 20.9937 3.05313C20.982 3.04168 20.9663 3.03526 20.95 3.03526C20.9336 3.03526 20.9179 3.04168 20.9062 3.05313C20.8963 3.06495 20.8909 3.07989 20.8909 3.09532C20.8909 3.11075 20.8963 3.12569 20.9062 3.13751C20.9062 3.13751 20.9812 3.14062 20.9937 3.125Z" fill="white"/>
|
||||
<path d="M30.5063 4.46563C30.2344 4.28438 29.9594 4.10626 29.6781 3.93751L29.725 3.99999C29.6709 4.08148 29.642 4.17715 29.642 4.27499C29.642 4.37284 29.6709 4.4685 29.725 4.55C29.778 4.59954 29.8409 4.63733 29.9095 4.66091C29.9781 4.68449 30.0509 4.69334 30.1232 4.68685C30.1955 4.68036 30.2655 4.65868 30.3289 4.62326C30.3922 4.58783 30.4473 4.53945 30.4906 4.48125L30.5063 4.46563Z" fill="white"/>
|
||||
<path d="M30.1719 7.1125C30.2113 7.11549 30.251 7.11038 30.2884 7.09751C30.3258 7.08464 30.3602 7.06428 30.3894 7.03766C30.4187 7.01104 30.4422 6.97872 30.4585 6.94269C30.4748 6.90666 30.4837 6.86769 30.4844 6.82814C30.4844 6.68439 30.4032 6.5875 30.2094 6.55937C30.0157 6.53125 29.9281 6.60938 29.9156 6.72813C29.9273 6.80716 29.9564 6.8826 30.0007 6.94906C30.045 7.01552 30.1034 7.07134 30.1719 7.1125V7.1125Z" fill="white"/>
|
||||
<path d="M28.7187 4.475C28.7298 4.41089 28.7298 4.34536 28.7187 4.28125C28.6954 4.26638 28.6693 4.25651 28.642 4.25224C28.6147 4.24797 28.5868 4.24939 28.5601 4.25644C28.5334 4.26348 28.5084 4.27599 28.4868 4.29317C28.4651 4.31035 28.4473 4.33183 28.4344 4.35625C28.3906 4.44062 28.4343 4.4875 28.5031 4.53125C28.5199 4.54508 28.5397 4.55475 28.5609 4.55944C28.5822 4.56412 28.6042 4.56371 28.6253 4.55822C28.6463 4.55273 28.6658 4.54232 28.682 4.52785C28.6983 4.51339 28.7108 4.49527 28.7187 4.475Z" fill="white"/>
|
||||
<path d="M20.6187 3.10625C20.6655 3.13255 20.7204 3.14072 20.7728 3.1292C20.8253 3.11767 20.8716 3.08725 20.9031 3.04375C20.9281 3.00018 20.935 2.94849 20.9221 2.89991C20.9092 2.85134 20.8777 2.80983 20.8343 2.78438C20.8152 2.76832 20.7928 2.75646 20.7688 2.74959C20.7447 2.74273 20.7195 2.74102 20.6947 2.74456C20.67 2.7481 20.6462 2.75681 20.6251 2.77014C20.6039 2.78346 20.5857 2.80109 20.5718 2.82188C20.5553 2.84328 20.5434 2.86786 20.5367 2.89408C20.5301 2.9203 20.529 2.94758 20.5334 2.97426C20.5378 3.00094 20.5476 3.02644 20.5623 3.04914C20.577 3.07185 20.5962 3.09129 20.6187 3.10625V3.10625Z" fill="white"/>
|
||||
<path d="M37.025 17.1906C37.15 17.2594 37.3375 17.2437 37.4 17.15C37.5156 16.9625 37.3625 16.7937 37.2781 16.7094C37.1937 16.625 36.9656 16.7625 36.9125 16.9437C36.8982 16.9915 36.9017 17.0429 36.9224 17.0883C36.9431 17.1337 36.9796 17.17 37.025 17.1906V17.1906Z" fill="white"/>
|
||||
<path d="M37.9656 16.0687C38.0162 16.0327 38.0516 15.9792 38.0649 15.9186C38.0782 15.8579 38.0684 15.7945 38.0375 15.7406C37.9626 15.7128 37.8829 15.7001 37.8031 15.7031C37.6906 15.725 37.65 15.8844 37.7094 15.9969C37.7214 16.0185 37.7376 16.0375 37.757 16.0528C37.7764 16.0682 37.7987 16.0795 37.8225 16.0862C37.8463 16.0928 37.8712 16.0948 37.8958 16.0918C37.9204 16.0888 37.9441 16.0809 37.9656 16.0687V16.0687Z" fill="white"/>
|
||||
<path d="M37.45 14.0656C37.3687 14.2125 37.4875 14.4563 37.6875 14.55C37.7259 14.5725 37.7696 14.5844 37.8141 14.5844C37.8586 14.5844 37.9022 14.5725 37.9406 14.55C37.8781 14.3344 37.8062 14.1219 37.7312 13.925C37.6763 13.923 37.6218 13.9349 37.5727 13.9594C37.5235 13.984 37.4813 14.0205 37.45 14.0656V14.0656Z" fill="white"/>
|
||||
<path d="M36.4 16.4344C36.4708 16.4483 36.5442 16.4388 36.609 16.4072C36.6739 16.3756 36.7267 16.3237 36.7594 16.2594C36.776 16.2082 36.7759 16.153 36.759 16.1018C36.7422 16.0507 36.7094 16.0063 36.6656 15.975C36.4812 15.8844 36.2875 15.9156 36.2312 16.0406C36.2153 16.1156 36.223 16.1938 36.2532 16.2642C36.2834 16.3347 36.3347 16.3942 36.4 16.4344V16.4344Z" fill="white"/>
|
||||
<path d="M37.0313 13.9563C37.0813 13.9563 37.1344 13.8594 37.1469 13.8C37.1475 13.7717 37.1409 13.7436 37.1278 13.7185C37.1147 13.6934 37.0955 13.672 37.0719 13.6562C36.9532 13.6 36.8688 13.6563 36.8063 13.7813C36.8688 13.8781 36.8938 13.9938 37.0313 13.9563Z" fill="white"/>
|
||||
<path d="M36.7375 17.5625C36.7882 17.5428 36.8299 17.5052 36.8546 17.4568C36.8794 17.4084 36.8855 17.3526 36.8719 17.3C36.8484 17.2565 36.811 17.2222 36.7657 17.2023C36.7204 17.1825 36.6698 17.1784 36.6219 17.1906C36.5741 17.2156 36.5353 17.255 36.5112 17.3032C36.487 17.3515 36.4788 17.4061 36.4875 17.4594C36.5087 17.5047 36.5462 17.5405 36.5924 17.5596C36.6387 17.5787 36.6905 17.5797 36.7375 17.5625Z" fill="white"/>
|
||||
<path d="M37.6781 15.4094C37.7139 15.3108 37.7152 15.203 37.6817 15.1037C37.6482 15.0043 37.5819 14.9193 37.4937 14.8625L37.4437 14.8438C37.4171 14.8009 37.3757 14.7692 37.3273 14.7548C37.2789 14.7404 37.227 14.7443 37.1812 14.7656C37.1204 14.7962 37.0692 14.8431 37.0333 14.901C36.9975 14.9589 36.9784 15.0256 36.9781 15.0937V15.0937C36.9569 15.1331 36.9437 15.1762 36.9393 15.2207C36.9349 15.2652 36.9393 15.3101 36.9524 15.3528C36.9655 15.3956 36.9869 15.4353 37.0155 15.4697C37.044 15.5041 37.0791 15.5324 37.1187 15.5531C37.2137 15.6005 37.3225 15.6121 37.4253 15.5857C37.528 15.5593 37.6178 15.4967 37.6781 15.4094V15.4094Z" fill="white"/>
|
||||
<path d="M20.1719 2.20624C20.1944 2.22182 20.2199 2.23268 20.2468 2.23814C20.2737 2.24359 20.3014 2.24353 20.3283 2.23798C20.3552 2.23243 20.3806 2.2215 20.4031 2.20584C20.4257 2.19019 20.4448 2.17012 20.4593 2.14687C20.4715 2.12536 20.4791 2.10155 20.4816 2.07695C20.4841 2.05234 20.4814 2.02749 20.4738 2.00397C20.4661 1.98045 20.4537 1.9588 20.4372 1.94036C20.4207 1.92192 20.4006 1.90711 20.3781 1.89687C20.3298 1.87056 20.2732 1.86401 20.2201 1.87858C20.1671 1.89315 20.1218 1.92771 20.0937 1.975C20.0827 1.99511 20.0759 2.01729 20.0739 2.04015C20.0719 2.06301 20.0746 2.08606 20.082 2.10781C20.0893 2.12955 20.1011 2.14953 20.1166 2.16648C20.132 2.18342 20.1509 2.19696 20.1719 2.20624V2.20624Z" fill="white"/>
|
||||
<path d="M38.2906 15.8844C38.2718 15.7938 38.25 15.7063 38.2281 15.6156C38.202 15.6599 38.1939 15.7125 38.2056 15.7625C38.2172 15.8125 38.2477 15.8562 38.2906 15.8844V15.8844Z" fill="white"/>
|
||||
<path d="M17.1813 1.47501L16.9 1.52187C16.9964 1.53963 17.0959 1.52305 17.1813 1.47501V1.47501Z" fill="white"/>
|
||||
<path d="M20.95 1.34374C20.9701 1.32352 20.987 1.30034 21 1.275C20.7969 1.275 20.5906 1.275 20.375 1.275C20.3851 1.30143 20.3999 1.32579 20.4188 1.34687C20.4914 1.41344 20.5865 1.4501 20.685 1.44952C20.7835 1.44894 20.8782 1.41116 20.95 1.34374V1.34374Z" fill="white"/>
|
||||
<path d="M16.9406 1.90626C16.9684 1.85978 16.9792 1.80511 16.9712 1.75156C16.9633 1.69801 16.937 1.64889 16.8969 1.61251C16.8456 1.59142 16.7896 1.58436 16.7347 1.59205C16.6798 1.59973 16.6279 1.62188 16.5844 1.65625C16.5616 1.71433 16.5581 1.7782 16.5745 1.83842C16.5908 1.89863 16.626 1.952 16.675 1.99062C16.7218 2.01233 16.7751 2.01572 16.8242 2.0001C16.8734 1.98448 16.9149 1.951 16.9406 1.90626V1.90626Z" fill="white"/>
|
||||
<path d="M38.7188 18.95C38.7027 19.0104 38.7027 19.074 38.7188 19.1344V18.95Z" fill="white"/>
|
||||
<path d="M30.1625 11.1625C30.1156 11.1625 30.0687 11.2781 30.0781 11.325C30.0875 11.3719 30.2 11.4812 30.25 11.4625C30.3 11.4437 30.3312 11.3 30.3156 11.2687C30.3 11.2375 30.2062 11.15 30.1625 11.1625Z" fill="white"/>
|
||||
<path d="M24.8688 5.51876C24.9207 5.43461 24.9667 5.34688 25.0063 5.25625C25.0244 5.17221 25.0155 5.08457 24.9807 5.00595C24.9458 4.92733 24.887 4.86178 24.8125 4.81874C24.78 4.79266 24.7386 4.78034 24.6971 4.78443C24.6557 4.78852 24.6174 4.80869 24.5907 4.84062C24.4341 5.01491 24.3348 5.23308 24.3063 5.46562C24.3075 5.50276 24.3138 5.53957 24.325 5.57501C24.3373 5.61248 24.3578 5.64672 24.3851 5.67518C24.4123 5.70364 24.4457 5.72559 24.4826 5.7394C24.5195 5.75321 24.5591 5.75852 24.5984 5.75495C24.6376 5.75137 24.6756 5.739 24.7094 5.71875C24.7489 5.71399 24.7848 5.69376 24.8094 5.6625C24.8282 5.64361 24.8432 5.62121 24.8534 5.59654C24.8636 5.57188 24.8688 5.54545 24.8688 5.51876Z" fill="white"/>
|
||||
<path d="M24.6813 6.93751C24.775 6.85626 24.6813 6.5875 24.5969 6.57812C24.5125 6.56875 24.3438 6.80312 24.4156 6.89062C24.4473 6.92849 24.4913 6.95397 24.5399 6.96255C24.5885 6.97113 24.6386 6.96225 24.6813 6.93751V6.93751Z" fill="white"/>
|
||||
<path d="M24.7625 8.0875C24.7726 8.05775 24.7753 8.026 24.7704 7.99497C24.7655 7.96394 24.7531 7.93455 24.7343 7.90937C24.7206 7.89447 24.7035 7.88306 24.6844 7.87607C24.6654 7.86907 24.645 7.8667 24.6248 7.86914C24.6047 7.87158 24.5854 7.87876 24.5686 7.8901C24.5518 7.90145 24.5379 7.91662 24.5281 7.93437C24.5 7.98437 24.4531 8.12813 24.5593 8.19063C24.6656 8.25313 24.7406 8.13125 24.7625 8.0875Z" fill="white"/>
|
||||
<path d="M24.5688 6C24.55 5.94375 24.4406 5.95001 24.4125 5.96876C24.3921 5.98234 24.3756 6.00102 24.3646 6.02295C24.3537 6.04487 24.3486 6.06927 24.35 6.09375C24.35 6.14062 24.4469 6.15313 24.4844 6.14376C24.5219 6.13438 24.5875 6.05938 24.5688 6Z" fill="white"/>
|
||||
<path d="M27.475 10.1719C27.475 10.1937 27.5187 10.2656 27.5375 10.2625C27.5605 10.2612 27.5829 10.2546 27.603 10.2432C27.623 10.2318 27.6402 10.216 27.6531 10.1969C27.6636 10.1691 27.6629 10.1383 27.6513 10.1109C27.6396 10.0836 27.6179 10.0618 27.5906 10.05C27.5093 10.0281 27.4937 10.1344 27.475 10.1719Z" fill="white"/>
|
||||
<path d="M27.9969 9.6125C27.9923 9.64063 27.9989 9.66944 28.0153 9.69279C28.0316 9.71613 28.0564 9.73218 28.0844 9.73751C28.1013 9.74239 28.119 9.74325 28.1363 9.74003C28.1535 9.73681 28.1698 9.7296 28.1838 9.71897C28.1978 9.70834 28.209 9.69458 28.2167 9.6788C28.2244 9.66303 28.2284 9.64568 28.2281 9.62813C28.2299 9.61166 28.2282 9.59501 28.223 9.57928C28.2178 9.56355 28.2093 9.54912 28.198 9.53697C28.1868 9.52482 28.173 9.51524 28.1577 9.50886C28.1424 9.50248 28.126 9.49946 28.1094 9.50001C28.0375 9.50001 28 9.57813 27.9969 9.6125Z" fill="white"/>
|
||||
<path d="M28.3437 8.10937C28.3656 7.95937 28.3063 7.87187 28.1781 7.84999C27.9969 7.82187 27.7906 7.94062 27.775 8.08437C27.7594 8.22812 27.9062 8.35 28.0531 8.36563C28.125 8.36756 28.1949 8.3422 28.2488 8.29465C28.3028 8.24711 28.3367 8.18091 28.3437 8.10937V8.10937Z" fill="white"/>
|
||||
<path d="M26.2594 2.5625C26.2582 2.57559 26.2616 2.5887 26.269 2.59954C26.2764 2.61039 26.2874 2.61829 26.3 2.62188C26.3149 2.62188 26.3292 2.61595 26.3398 2.6054C26.3503 2.59485 26.3563 2.58055 26.3563 2.56563C26.3563 2.55071 26.3503 2.53639 26.3398 2.52584C26.3292 2.5153 26.3149 2.50938 26.3 2.50938C26.2907 2.50001 26.2594 2.5375 26.2594 2.5625Z" fill="white"/>
|
||||
<path d="M18.775 5.56562C18.75 5.56562 18.6875 5.65312 18.7375 5.71875C18.7875 5.78437 18.8656 5.71876 18.9 5.69376C18.909 5.67694 18.9137 5.65814 18.9137 5.63906C18.9137 5.61997 18.909 5.60119 18.9 5.58437C18.8815 5.57306 18.8609 5.56556 18.8394 5.56234C18.8179 5.55912 18.796 5.56024 18.775 5.56562V5.56562Z" fill="white"/>
|
||||
<path d="M19.1281 4.01873C19.1698 3.96071 19.1878 3.88903 19.1785 3.81823C19.1692 3.74743 19.1333 3.68282 19.0782 3.63749C18.9923 3.59711 18.8953 3.58686 18.8028 3.60841C18.7104 3.62996 18.6279 3.68204 18.5688 3.75625C18.5475 3.82791 18.5527 3.90481 18.5833 3.973C18.6139 4.04118 18.668 4.09614 18.7356 4.12789C18.8033 4.15965 18.8801 4.16609 18.9521 4.14607C19.0241 4.12605 19.0866 4.08086 19.1281 4.01873Z" fill="white"/>
|
||||
<path d="M18.4313 4.69062C18.3943 4.65448 18.3503 4.6265 18.3018 4.60849C18.2534 4.59049 18.2017 4.58286 18.1502 4.5861C18.0986 4.58934 18.0483 4.60339 18.0025 4.62732C17.9567 4.65124 17.9165 4.68451 17.8844 4.72499C17.8486 4.75506 17.8194 4.79225 17.7987 4.83419C17.778 4.87613 17.7663 4.9219 17.7642 4.96862C17.7622 5.01534 17.7699 5.06197 17.7868 5.10557C17.8037 5.14916 17.8295 5.18878 17.8625 5.22188C17.9404 5.29128 18.041 5.32962 18.1453 5.32962C18.2496 5.32962 18.3503 5.29128 18.4281 5.22188C18.4854 5.14531 18.5166 5.05238 18.5172 4.95675C18.5178 4.86113 18.4877 4.76785 18.4313 4.69062V4.69062Z" fill="white"/>
|
||||
<path d="M22.9938 4.55937C22.8563 4.29687 22.6125 4.48437 22.5875 4.28749C22.5625 4.09062 22.7531 4.15623 22.7031 3.88436C22.6531 3.61248 22.3906 3.49062 22.2406 3.625C22.0906 3.75937 22.1531 3.9375 22.1094 3.9375C22.0656 3.9375 21.8656 3.99999 21.8938 4.14999C21.8563 4.13437 21.8125 4.12187 21.7906 4.14999C21.7688 4.17812 21.7906 4.29373 21.8094 4.31561C21.83 4.33014 21.8545 4.33794 21.8797 4.33794C21.9049 4.33794 21.9294 4.33014 21.95 4.31561C21.9517 4.30736 21.9517 4.29887 21.95 4.29062C22.0563 4.41562 22.2313 4.34999 22.2625 4.42187C22.2938 4.49374 22.2875 4.71562 22.35 4.85625C22.4344 5.04687 22.6219 5.16873 22.8156 5.05936C22.8614 5.03964 22.9025 5.01071 22.9366 4.97437C22.9706 4.93803 22.9969 4.89505 23.0136 4.84814C23.0303 4.80123 23.0371 4.75138 23.0337 4.70169C23.0303 4.65201 23.0167 4.60356 22.9938 4.55937Z" fill="white"/>
|
||||
<path d="M22.5501 6.675C22.5282 6.7125 22.5001 6.79689 22.5657 6.84064C22.5921 6.85548 22.6229 6.86049 22.6527 6.85477C22.6824 6.84905 22.7092 6.83297 22.7282 6.80939C22.7563 6.77814 22.8126 6.66563 22.7282 6.60313C22.6438 6.54063 22.5751 6.625 22.5501 6.675Z" fill="white"/>
|
||||
<path d="M21.5563 3.60937C21.6438 3.49687 21.6563 3.29688 21.5563 3.23438C21.3875 3.09376 21.1969 3.23438 21.1 3.29376C21.0031 3.35313 21.1 3.60624 21.2813 3.68749C21.3044 3.70071 21.3299 3.70918 21.3563 3.7124C21.3828 3.71562 21.4096 3.71354 21.4352 3.70626C21.4608 3.69898 21.4847 3.68668 21.5055 3.67004C21.5263 3.6534 21.5436 3.63276 21.5563 3.60937V3.60937Z" fill="white"/>
|
||||
<path d="M21.275 5.87499C21.275 5.90624 21.275 5.93438 21.275 5.95C21.2844 5.95404 21.2945 5.95613 21.3047 5.95613C21.3149 5.95613 21.325 5.95404 21.3344 5.95C21.3344 5.925 21.3594 5.88437 21.3344 5.86562C21.3094 5.84687 21.3031 5.86874 21.275 5.87499Z" fill="white"/>
|
||||
<path d="M27.85 5.1375C27.8602 5.12293 27.8686 5.10721 27.875 5.09064C27.95 5.09064 28.0719 5.04374 28.0781 4.97499C28.0844 4.90624 27.9156 4.82812 27.8531 4.825C27.8531 4.825 27.8344 4.825 27.8219 4.825C27.7549 4.79292 27.6808 4.77893 27.6068 4.78441C27.5328 4.78989 27.4615 4.81467 27.4 4.85626C27.3781 4.88771 27.363 4.92339 27.3557 4.96101C27.3483 4.99864 27.3489 5.03738 27.3575 5.07475C27.366 5.11212 27.3823 5.14729 27.4052 5.17801C27.4281 5.20873 27.4572 5.23431 27.4906 5.25312C27.5906 5.34062 27.7437 5.2875 27.85 5.1375Z" fill="white"/>
|
||||
<path d="M35.9719 26.575C35.9969 26.5219 35.9187 26.4594 35.8812 26.4406C35.8613 26.4352 35.8403 26.4359 35.8208 26.4426C35.8013 26.4493 35.7842 26.4617 35.7719 26.4781C35.7719 26.5125 35.8 26.575 35.8312 26.6031C35.8625 26.6313 35.9312 26.625 35.9719 26.575Z" fill="white"/>
|
||||
<path d="M29.5531 9.95314C29.5375 10.0344 29.5531 10.1344 29.6625 10.1281C29.7718 10.1219 29.8344 10.0625 29.8437 10.0125C29.8531 9.96252 29.7875 9.87188 29.7656 9.82501C29.6125 9.80001 29.5656 9.87189 29.5531 9.95314Z" fill="white"/>
|
||||
<path d="M36.2969 20.5938C36.3188 20.5577 36.3255 20.5144 36.3155 20.4734C36.3056 20.4324 36.2797 20.397 36.2437 20.375C36.0505 20.2461 35.8229 20.1786 35.5906 20.1813C35.5547 20.1874 35.5199 20.199 35.4875 20.2156C35.4424 20.2368 35.4043 20.2704 35.3776 20.3125C35.351 20.3546 35.3368 20.4033 35.3368 20.4531C35.3368 20.5029 35.351 20.5517 35.3776 20.5938C35.4043 20.6358 35.4424 20.6694 35.4875 20.6906C35.6148 20.7585 35.7503 20.81 35.8906 20.8437C35.9761 20.8507 36.0616 20.8303 36.1347 20.7853C36.2077 20.7403 36.2646 20.6732 36.2969 20.5938V20.5938Z" fill="white"/>
|
||||
<path d="M36.0031 24.9156C36.0093 24.8913 36.0079 24.8656 35.9989 24.8421C35.99 24.8186 35.974 24.7984 35.9531 24.7844C35.925 24.7656 35.8094 24.7562 35.7875 24.7844C35.7656 24.8125 35.8344 24.9219 35.8656 24.9344C35.8969 24.9469 35.9781 24.9594 36.0031 24.9156Z" fill="white"/>
|
||||
<path d="M37.725 22.0656C37.7763 22.0146 37.814 21.9516 37.8347 21.8823C37.8555 21.813 37.8586 21.7396 37.8438 21.6688C37.831 21.597 37.7971 21.5308 37.7465 21.4784C37.6958 21.4261 37.6307 21.3901 37.5594 21.375H37.5219C37.6055 21.3432 37.6737 21.2806 37.7125 21.2C37.7625 21.0813 37.6813 20.95 37.5156 20.8875C37.4558 20.8577 37.3876 20.8492 37.3222 20.8634C37.2569 20.8776 37.1983 20.9137 37.1563 20.9656C37.1289 21.0423 37.1265 21.1256 37.1496 21.2037C37.1726 21.2818 37.2198 21.3505 37.2844 21.4C37.3023 21.4086 37.3212 21.4149 37.3406 21.4188C37.2886 21.4469 37.2445 21.4877 37.2125 21.5375C37.128 21.6655 37.0935 21.8201 37.1156 21.9719C37.1187 22.0295 37.1057 22.0868 37.0781 22.1375C37.049 22.1704 37.0286 22.2101 37.0185 22.2529C37.0085 22.2957 37.0093 22.3403 37.0207 22.3827C37.0322 22.4251 37.054 22.464 37.0842 22.496C37.1144 22.5279 37.152 22.5518 37.1938 22.5656C37.1714 22.5804 37.1548 22.6025 37.1469 22.6281C37.1384 22.682 37.1494 22.7372 37.1781 22.7837C37.2068 22.8301 37.2511 22.8647 37.3031 22.8813C37.3309 22.897 37.3616 22.9071 37.3933 22.9107C37.425 22.9144 37.4572 22.9116 37.4878 22.9026C37.5184 22.8935 37.5469 22.8784 37.5716 22.8581C37.5962 22.8378 37.6165 22.8127 37.6313 22.7844C37.6411 22.759 37.6456 22.7319 37.6446 22.7047C37.6436 22.6775 37.637 22.6508 37.6253 22.6262C37.6136 22.6016 37.597 22.5797 37.5765 22.5618C37.5561 22.5438 37.5322 22.5302 37.5063 22.5219V22.5219C37.5523 22.4707 37.5836 22.4081 37.5969 22.3406C37.6018 22.2357 37.6479 22.1369 37.725 22.0656V22.0656Z" fill="white"/>
|
||||
<path d="M38.6563 21.1687C38.6061 21.1479 38.5497 21.1477 38.4994 21.1682C38.4491 21.1887 38.4089 21.2282 38.3875 21.2781C38.3661 21.3322 38.3662 21.3924 38.3877 21.4464C38.4092 21.5004 38.4505 21.5442 38.5031 21.5688C38.5306 21.5812 38.5605 21.5876 38.5906 21.5876C38.6208 21.5876 38.6506 21.5812 38.6781 21.5688C38.6781 21.45 38.7 21.3281 38.7063 21.2062C38.6921 21.1907 38.6751 21.178 38.6563 21.1687Z" fill="white"/>
|
||||
<path d="M38.1344 24.0656C38.1131 24.1102 38.1096 24.1613 38.1248 24.2083C38.1399 24.2554 38.1724 24.2949 38.2156 24.3188H38.2406C38.2719 24.1844 38.3063 24.05 38.3344 23.9156C38.29 23.9181 38.2472 23.9336 38.2116 23.9603C38.176 23.987 38.1492 24.0237 38.1344 24.0656V24.0656Z" fill="white"/>
|
||||
<path d="M35.8969 22.9781C35.8625 22.8594 35.7687 22.8406 35.5469 22.8813C35.5219 22.9938 35.4469 23.1188 35.5937 23.2094C35.6347 23.2383 35.6852 23.2502 35.7347 23.2426C35.7843 23.235 35.8289 23.2086 35.8594 23.1687C35.8784 23.1412 35.8915 23.1101 35.8979 23.0773C35.9044 23.0445 35.904 23.0108 35.8969 22.9781Z" fill="white"/>
|
||||
<path d="M32.5469 8.60313C32.5924 8.61146 32.6392 8.60959 32.6838 8.59766C32.7285 8.58573 32.77 8.56403 32.8052 8.53414C32.8405 8.50425 32.8687 8.4669 32.8878 8.42479C32.9069 8.38268 32.9164 8.33686 32.9156 8.29063C32.9254 8.22746 32.9254 8.16316 32.9156 8.09999C33.0034 8.11794 33.0945 8.11036 33.1782 8.07813C33.2182 8.05465 33.2505 8.01992 33.2711 7.97826C33.2917 7.93661 33.2995 7.88985 33.2938 7.84376C33.3869 7.84109 33.4768 7.80959 33.5513 7.75362C33.6257 7.69764 33.681 7.61995 33.7094 7.53126C33.7284 7.43698 33.7105 7.339 33.6593 7.25757C33.6081 7.17615 33.5276 7.1175 33.4344 7.09375C33.3257 7.10034 33.2209 7.13719 33.132 7.20014C33.0431 7.26309 32.9736 7.34963 32.9313 7.45C32.9202 7.50781 32.9302 7.56765 32.9594 7.61875H32.9407C32.8927 7.64648 32.8514 7.68433 32.8195 7.72966C32.7877 7.77499 32.7661 7.82673 32.7563 7.88126C32.702 7.85427 32.6441 7.83533 32.5844 7.82501C32.4799 7.81621 32.376 7.84848 32.2949 7.915C32.2138 7.98151 32.1619 8.07702 32.15 8.18124C32.1282 8.35312 32.3344 8.56563 32.5469 8.60313Z" fill="white"/>
|
||||
<path d="M30.5312 9.125C30.8437 9.1875 30.8437 9.16562 30.8437 8.90312C30.7156 8.80937 30.6093 8.84375 30.5125 8.96875C30.1656 8.81563 30 8.96876 30.0375 9.36876C30.0172 9.38479 29.9952 9.3984 29.9719 9.40937C29.8687 9.45312 29.8562 9.53438 29.8687 9.63438C29.8812 9.73438 29.9375 9.76876 30.025 9.79688C30.2343 9.86876 30.3375 9.82187 30.3812 9.60624C30.4344 9.43749 30.4843 9.27813 30.5312 9.125Z" fill="white"/>
|
||||
<path d="M30.0312 7.66563C30.0388 7.62408 30.0379 7.58141 30.0285 7.54023C30.0191 7.49904 30.0015 7.46019 29.9766 7.42601C29.9518 7.39184 29.9203 7.36306 29.884 7.3414C29.8478 7.31974 29.8075 7.30565 29.7656 7.29999C29.6612 7.29109 29.5574 7.32287 29.4759 7.38867C29.3944 7.45447 29.3414 7.54921 29.3281 7.65312C29.3317 7.74199 29.3642 7.82727 29.4206 7.89606C29.4769 7.96485 29.5542 8.01341 29.6406 8.03438C29.8406 8.06251 29.9938 7.90938 30.0312 7.66563Z" fill="white"/>
|
||||
<path d="M32.225 10.1125C32.1969 10.0437 32.0687 10.0281 31.9625 10.075C31.9451 10.0796 31.9291 10.0883 31.9157 10.1002C31.9023 10.1121 31.8918 10.127 31.8851 10.1437C31.8784 10.1604 31.8757 10.1784 31.8772 10.1963C31.8787 10.2142 31.8844 10.2315 31.8938 10.2469C31.9375 10.3312 32 10.3969 32.1094 10.3562C32.1531 10.3344 32.1883 10.2985 32.2092 10.2543C32.2302 10.2101 32.2357 10.1602 32.225 10.1125Z" fill="white"/>
|
||||
<path d="M31.9906 16C31.9656 16 31.8969 16.0656 31.9156 16.1219C31.9344 16.1781 32.0375 16.1594 32.075 16.1469C32.0926 16.1359 32.1064 16.1199 32.1148 16.101C32.1232 16.082 32.1256 16.061 32.1219 16.0406C32.1062 16 32.0312 15.9781 31.9906 16Z" fill="white"/>
|
||||
<path d="M32.0656 9.2375C32.0183 9.22701 31.9693 9.22639 31.9217 9.23566C31.8741 9.24494 31.8289 9.2639 31.789 9.2914C31.7491 9.31889 31.7152 9.35431 31.6896 9.39546C31.6639 9.43661 31.647 9.48261 31.6399 9.53058C31.6328 9.57854 31.6357 9.62745 31.6483 9.67426C31.6609 9.72107 31.6831 9.76478 31.7133 9.80266C31.7436 9.84055 31.7814 9.8718 31.8242 9.89446C31.8671 9.91712 31.9142 9.93071 31.9625 9.93438C32.1375 9.95626 32.3094 9.77812 32.3344 9.54687C32.3387 9.50858 32.3351 9.46983 32.3236 9.43304C32.3122 9.39624 32.2933 9.36222 32.268 9.33313C32.2427 9.30404 32.2117 9.28053 32.1768 9.26407C32.142 9.2476 32.1041 9.23855 32.0656 9.2375Z" fill="white"/>
|
||||
<path d="M17.8406 6.22189C17.7875 6.27502 17.8187 6.4 17.9031 6.48125C17.9135 6.49608 17.9273 6.5082 17.9433 6.51656C17.9594 6.52492 17.9772 6.52928 17.9953 6.52928C18.0134 6.52928 18.0312 6.52492 18.0473 6.51656C18.0633 6.5082 18.0771 6.49608 18.0875 6.48125C18.15 6.40938 18.1875 6.32814 18.1125 6.24377C18.0761 6.21037 18.0296 6.19007 17.9803 6.18611C17.9311 6.18215 17.8819 6.19474 17.8406 6.22189V6.22189Z" fill="white"/>
|
||||
<path d="M36.5031 18.3156C36.6938 18.2656 36.6594 18.4625 36.9219 18.3719C37.1844 18.2812 37.2625 18 37.1094 17.8781C36.9563 17.7562 36.7969 17.8344 36.775 17.7969C36.7531 17.7594 36.6781 17.5594 36.5313 17.6125C36.2188 17.725 36.3938 17.975 36.3094 18.0375C36.225 18.1 36.0219 18.1031 35.8938 18.1844C35.7156 18.2969 35.6156 18.4969 35.7563 18.675C35.7868 18.7132 35.8226 18.7468 35.8625 18.775C35.8848 18.7971 35.91 18.8161 35.9375 18.8312C36.0281 18.8812 36.1875 19.0312 36.3156 18.95C36.4438 18.8687 36.3531 18.7656 36.3625 18.6937C36.4875 18.5312 36.3375 18.3625 36.5031 18.3156Z" fill="white"/>
|
||||
<path d="M10.5062 4.525C10.6093 4.56563 10.7937 4.38125 10.7562 4.30312C10.7187 4.225 10.475 4.19062 10.4281 4.30312C10.4155 4.34359 10.4163 4.38703 10.4304 4.427C10.4444 4.46698 10.471 4.50135 10.5062 4.525V4.525Z" fill="white"/>
|
||||
<path d="M34.9656 20.3219C34.9218 20.3219 34.9219 20.425 34.9375 20.4594C34.9531 20.4938 35.0375 20.55 35.0906 20.5219C35.1437 20.4937 35.1187 20.3906 35.0906 20.3656C35.0753 20.3482 35.0558 20.335 35.0339 20.3273C35.012 20.3196 34.9884 20.3178 34.9656 20.3219V20.3219Z" fill="white"/>
|
||||
<path d="M35.2468 19.4562C35.2541 19.3737 35.2307 19.2914 35.1812 19.225C35.1281 19.1656 34.9718 19.225 34.95 19.325C34.9474 19.3839 34.9581 19.4426 34.9812 19.4969C35.1187 19.5656 35.2375 19.5406 35.2468 19.4562Z" fill="white"/>
|
||||
<path d="M7.9156 5.6875C7.87498 5.75938 7.80312 5.94375 7.85312 6C7.90312 6.05625 8.09061 5.95939 8.09686 5.92814C8.12186 5.84376 8.17186 5.73438 8.09686 5.65313C8.02186 5.57188 7.93748 5.6375 7.9156 5.6875Z" fill="white"/>
|
||||
<path d="M38.4312 18.5C38.4482 18.5137 38.4682 18.5232 38.4896 18.5275C38.5109 18.5318 38.533 18.5308 38.5539 18.5247C38.5749 18.5185 38.594 18.5074 38.6096 18.4922C38.6252 18.477 38.637 18.4582 38.6437 18.4375C38.6625 18.375 38.6906 18.2594 38.6094 18.2187C38.5888 18.214 38.5674 18.214 38.5469 18.2187C38.5822 18.1815 38.6069 18.1355 38.6185 18.0855C38.63 18.0355 38.6279 17.9833 38.6125 17.9344C38.6212 17.9435 38.6306 17.9518 38.6406 17.9594C38.6219 17.775 38.5969 17.5906 38.5719 17.4062C38.557 17.3985 38.544 17.3875 38.5339 17.374C38.5238 17.3606 38.5168 17.345 38.5135 17.3285C38.5102 17.312 38.5107 17.295 38.5148 17.2787C38.519 17.2624 38.5267 17.2473 38.5375 17.2344C38.5375 17.2344 38.5375 17.2344 38.5375 17.2125L38.4906 16.95C38.4561 16.904 38.4125 16.8657 38.3625 16.8375C38.2988 16.7991 38.2234 16.7847 38.15 16.7969C38.1513 16.7875 38.1513 16.7781 38.15 16.7687C38.1094 16.7139 38.0521 16.6738 37.9866 16.6546C37.9212 16.6355 37.8512 16.6382 37.7875 16.6625C37.7503 16.7183 37.7321 16.7846 37.7354 16.8515C37.7388 16.9185 37.7636 16.9826 37.8062 17.0344C37.8362 17.0626 37.8747 17.0801 37.9156 17.0844C37.9469 17.2062 38.0187 17.2469 37.9844 17.2906C37.95 17.3344 37.8094 17.3969 37.8312 17.5125C37.8531 17.6281 38.1906 17.7062 38.2469 17.6906C38.3031 17.675 38.4344 17.5719 38.4969 17.6719C38.52 17.714 38.5368 17.7593 38.5469 17.8062C38.5218 17.7749 38.4866 17.7531 38.4474 17.7445C38.4081 17.736 38.3671 17.7412 38.3312 17.7594C38.1594 17.8281 38.0406 18.0375 38.1031 18.1656C38.1326 18.2094 38.1736 18.2442 38.2215 18.2663C38.2695 18.2883 38.3226 18.2967 38.375 18.2906V18.2906C38.2937 18.325 38.3437 18.4469 38.4312 18.5Z" fill="white"/>
|
||||
<path d="M37.1625 19.9375C37.188 19.8508 37.184 19.7581 37.1512 19.6738C37.1184 19.5896 37.0586 19.5186 36.9813 19.4719C36.9161 19.4665 36.8509 19.4817 36.7949 19.5154C36.7388 19.549 36.6947 19.5994 36.6688 19.6594C36.6505 19.6937 36.6402 19.7316 36.6385 19.7704C36.6369 19.8092 36.644 19.8478 36.6593 19.8835C36.6746 19.9192 36.6977 19.951 36.7269 19.9766C36.7561 20.0022 36.7907 20.0209 36.8281 20.0313C36.9719 20.0969 37.1188 20.0625 37.1625 19.9375Z" fill="white"/>
|
||||
<path d="M36.7406 24.875C36.65 24.8438 36.6094 24.9031 36.5781 24.9687C36.5469 25.0344 36.5781 25.1656 36.6656 25.1781C36.7294 25.1785 36.7928 25.1679 36.8531 25.1469C36.8647 25.1218 36.871 25.0946 36.8716 25.0669C36.8722 25.0393 36.867 25.0118 36.8565 24.9863C36.8459 24.9607 36.8301 24.9376 36.8102 24.9185C36.7902 24.8993 36.7666 24.8845 36.7406 24.875V24.875Z" fill="white"/>
|
||||
<path d="M26.5906 3.1875C26.5845 3.25882 26.6046 3.32994 26.6472 3.38748C26.6897 3.44503 26.7519 3.48503 26.8219 3.5C26.8477 3.50869 26.875 3.51208 26.9022 3.50999C26.9294 3.5079 26.9559 3.50037 26.9801 3.48783C27.0043 3.47529 27.0257 3.45801 27.0431 3.43702C27.0605 3.41602 27.0734 3.39174 27.0813 3.36562C27.0911 3.28895 27.074 3.21123 27.033 3.14571C26.992 3.08019 26.9295 3.0309 26.8563 3.00624C26.7971 2.99609 26.7363 3.00933 26.6868 3.04315C26.6372 3.07697 26.6027 3.12873 26.5906 3.1875V3.1875Z" fill="white"/>
|
||||
<path d="M28.5437 6.04062C28.5429 6.0655 28.547 6.0903 28.5559 6.11357C28.5647 6.13684 28.5782 6.15812 28.5953 6.17615C28.6125 6.19419 28.6331 6.20862 28.6559 6.21861C28.6787 6.22861 28.7032 6.23397 28.7281 6.23437C28.7898 6.22967 28.8474 6.20202 28.8896 6.15689C28.9319 6.11176 28.9556 6.05242 28.9562 5.99061C28.9067 5.92795 28.845 5.87588 28.775 5.83749C28.6656 5.79686 28.55 5.91249 28.5437 6.04062Z" fill="white"/>
|
||||
<path d="M26.7313 2.5C26.6469 2.46562 26.5656 2.43124 26.4781 2.39999C26.55 2.45902 26.6385 2.494 26.7313 2.5V2.5Z" fill="white"/>
|
||||
<path d="M28.7219 4.71563C28.6412 4.70689 28.5601 4.72641 28.4922 4.77087C28.4244 4.81533 28.3741 4.88195 28.35 4.95937C28.3509 5.04011 28.3779 5.11841 28.4268 5.18259C28.4758 5.24678 28.5442 5.29343 28.6218 5.31563C28.7406 5.3375 28.8844 5.19688 28.9031 5.04688C28.9312 4.84688 28.8719 4.75001 28.7219 4.71563Z" fill="white"/>
|
||||
<path d="M31.325 7.46876C31.3134 7.54886 31.3301 7.63051 31.3724 7.69957C31.4146 7.76862 31.4796 7.82073 31.5563 7.84687C31.6656 7.8625 31.8688 7.64375 31.8688 7.50313C31.8633 7.44516 31.8403 7.39022 31.8029 7.34558C31.7655 7.30094 31.7155 7.2687 31.6594 7.25313C31.6233 7.24532 31.586 7.24471 31.5496 7.25132C31.5133 7.25793 31.4786 7.27164 31.4475 7.29166C31.4165 7.31169 31.3897 7.33763 31.3687 7.36801C31.3476 7.3984 31.3328 7.43264 31.325 7.46876V7.46876Z" fill="white"/>
|
||||
<path d="M31.775 8.75C31.7344 8.77188 31.6594 8.82188 31.6844 8.86563C31.6988 8.88571 31.7182 8.90173 31.7407 8.91213C31.7631 8.92253 31.7878 8.92697 31.8125 8.925C31.85 8.925 31.9406 8.83438 31.9125 8.7875C31.8954 8.76899 31.8734 8.75566 31.8491 8.74903C31.8248 8.7424 31.7991 8.74273 31.775 8.75Z" fill="white"/>
|
||||
<path d="M12.7343 7.09062C12.7704 7.05722 12.793 7.01191 12.7982 6.96307C12.8034 6.91424 12.7907 6.86519 12.7625 6.825C12.745 6.80427 12.7237 6.78718 12.6996 6.7747C12.6756 6.76223 12.6493 6.75461 12.6223 6.75229C12.5953 6.74997 12.5682 6.753 12.5423 6.76118C12.5165 6.76936 12.4926 6.78255 12.4718 6.79999C12.4503 6.81239 12.432 6.82976 12.4185 6.85065C12.4049 6.87155 12.3966 6.89536 12.3942 6.92012C12.3917 6.94488 12.3952 6.96987 12.4044 6.993C12.4136 7.01613 12.4281 7.03674 12.4468 7.05312C12.4625 7.0754 12.4827 7.09418 12.506 7.10828C12.5293 7.12237 12.5553 7.13148 12.5824 7.135C12.6094 7.13853 12.6369 7.1364 12.663 7.12876C12.6892 7.12112 12.7135 7.10813 12.7343 7.09062V7.09062Z" fill="white"/>
|
||||
<path d="M14.5 4.3875C14.4826 4.40786 14.4697 4.43164 14.4621 4.45731C14.4546 4.48298 14.4525 4.50995 14.456 4.53649C14.4596 4.56302 14.4686 4.5885 14.4827 4.61129C14.4967 4.63408 14.5154 4.65365 14.5375 4.66874C14.6156 4.72812 14.7 4.79374 14.7719 4.72186C14.8938 4.59374 14.9063 4.4625 14.8313 4.38437C14.8102 4.36122 14.7845 4.34277 14.7559 4.33024C14.7272 4.31772 14.6962 4.31139 14.6649 4.31169C14.6337 4.31198 14.6028 4.3189 14.5744 4.33196C14.5459 4.34503 14.5206 4.36396 14.5 4.3875V4.3875Z" fill="white"/>
|
||||
<path d="M12.7813 8.24062C12.8145 8.19827 12.8325 8.14601 12.8325 8.09219C12.8325 8.03838 12.8145 7.9861 12.7813 7.94374C12.7644 7.92597 12.744 7.91183 12.7214 7.90216C12.6989 7.8925 12.6746 7.8875 12.65 7.8875C12.6255 7.8875 12.6012 7.8925 12.5787 7.90216C12.5561 7.91183 12.5357 7.92597 12.5188 7.94374C12.4983 7.9616 12.4815 7.98331 12.4693 8.00766C12.4572 8.032 12.45 8.0585 12.4481 8.08563C12.4462 8.11276 12.4497 8.14001 12.4584 8.1658C12.467 8.19159 12.4806 8.21543 12.4985 8.23595C12.5163 8.25647 12.5381 8.27326 12.5624 8.28539C12.5867 8.29751 12.6132 8.30473 12.6404 8.30662C12.6675 8.3085 12.6947 8.30502 12.7205 8.29638C12.7463 8.28773 12.7702 8.2741 12.7907 8.25624L12.7813 8.24062Z" fill="white"/>
|
||||
<path d="M13.8937 2.58125C13.9363 2.62085 13.9863 2.65164 14.0408 2.67183C14.0953 2.69202 14.1533 2.70122 14.2114 2.6989C14.2695 2.69657 14.3266 2.68277 14.3793 2.65829C14.4321 2.63381 14.4794 2.59912 14.5187 2.55625C14.5876 2.49126 14.6321 2.40454 14.6446 2.31064C14.6571 2.21674 14.6369 2.12141 14.5875 2.04063C14.3187 2.12188 14.05 2.2125 13.7875 2.30312C13.7822 2.35456 13.7891 2.4065 13.8076 2.4548C13.826 2.50309 13.8555 2.5464 13.8937 2.58125V2.58125Z" fill="white"/>
|
||||
<path d="M10.725 7.28436C10.7042 7.30473 10.6877 7.32904 10.6764 7.35587C10.6651 7.3827 10.6593 7.41151 10.6593 7.44061C10.6593 7.46972 10.6651 7.49853 10.6764 7.52536C10.6877 7.55219 10.7042 7.5765 10.725 7.59686C10.744 7.61981 10.7679 7.63828 10.7949 7.65096C10.8219 7.66363 10.8514 7.6702 10.8812 7.6702C10.9111 7.6702 10.9405 7.66363 10.9675 7.65096C10.9945 7.63828 11.0184 7.61981 11.0375 7.59686C11.0737 7.55714 11.0938 7.50533 11.0938 7.45156C11.0938 7.3978 11.0737 7.34596 11.0375 7.30624C11.0194 7.28278 10.9966 7.26342 10.9705 7.24942C10.9444 7.23542 10.9157 7.22711 10.8861 7.22504C10.8566 7.22298 10.827 7.2272 10.7992 7.23742C10.7714 7.24765 10.7461 7.26364 10.725 7.28436V7.28436Z" fill="white"/>
|
||||
<path d="M16.7219 6.99688C16.7105 7.01984 16.7059 7.04557 16.7087 7.07104C16.7114 7.0965 16.7214 7.12066 16.7375 7.14063C16.7718 7.16876 16.8437 7.21876 16.8781 7.18126C16.8911 7.16011 16.898 7.13576 16.898 7.11094C16.898 7.08611 16.8911 7.06179 16.8781 7.04063C16.8687 7.00938 16.7531 6.95625 16.7219 6.99688Z" fill="white"/>
|
||||
<path d="M15.6188 6.07813C15.5727 6.04386 15.5158 6.02723 15.4585 6.03124C15.4012 6.03525 15.3472 6.05965 15.3063 6.1C15.2587 6.14847 15.2303 6.21251 15.2263 6.28029C15.2223 6.34806 15.2429 6.415 15.2844 6.46875C15.3437 6.51795 15.417 6.54716 15.4939 6.55222C15.5708 6.55727 15.6473 6.5379 15.7125 6.49688C15.7657 6.42188 15.7188 6.19375 15.6188 6.07813Z" fill="white"/>
|
||||
<path d="M15.3719 8.52813C15.3563 8.55235 15.348 8.58054 15.348 8.60936C15.348 8.63818 15.3563 8.66639 15.3719 8.69062C15.3919 8.70214 15.4145 8.7082 15.4376 8.7082C15.4606 8.7082 15.4832 8.70214 15.5032 8.69062C15.5139 8.67095 15.5194 8.64894 15.5194 8.62657C15.5194 8.60419 15.5139 8.58217 15.5032 8.5625C15.5063 8.54062 15.4126 8.48125 15.3719 8.52813Z" fill="white"/>
|
||||
<path d="M14.9093 3.425C14.8518 3.3814 14.7816 3.3578 14.7094 3.3578C14.6371 3.3578 14.5669 3.3814 14.5094 3.425C14.4741 3.48132 14.4592 3.54802 14.4672 3.61398C14.4751 3.67994 14.5055 3.74117 14.5531 3.78749C14.5719 3.80387 14.5939 3.81615 14.6177 3.8235C14.6415 3.83085 14.6666 3.83312 14.6913 3.83018C14.716 3.82723 14.7399 3.81913 14.7613 3.80639C14.7827 3.79366 14.8012 3.77658 14.8156 3.75625C14.9468 3.62187 14.9937 3.5 14.9093 3.425Z" fill="white"/>
|
||||
<path d="M11.7938 4.25937C11.7668 4.23201 11.7342 4.21071 11.6984 4.19685C11.6625 4.18298 11.6241 4.17687 11.5857 4.17894C11.5473 4.181 11.5098 4.19121 11.4757 4.20884C11.4415 4.22648 11.4115 4.25115 11.3875 4.28125C11.3297 4.33248 11.293 4.40332 11.2843 4.48007C11.2757 4.55682 11.2957 4.63405 11.3407 4.69688C11.4069 4.74243 11.4853 4.76682 11.5657 4.76682C11.646 4.76682 11.7245 4.74243 11.7907 4.69688C11.8251 4.67185 11.8531 4.63908 11.8726 4.60122C11.8921 4.56337 11.9024 4.52147 11.9027 4.4789C11.903 4.43634 11.8933 4.39432 11.8744 4.35619C11.8554 4.31805 11.8279 4.28489 11.7938 4.25937V4.25937Z" fill="white"/>
|
||||
<path d="M11.1562 3.47812C11.3 3.64374 11.4687 3.60311 11.625 3.51249C11.6937 3.60624 11.725 3.74687 11.8843 3.69374C11.9293 3.68196 11.9684 3.65419 11.9942 3.61564C12.0201 3.57709 12.0311 3.53041 12.025 3.48438C12.025 3.31562 11.8718 3.31875 11.7437 3.30938C11.7437 3.2625 11.7281 3.21875 11.7187 3.175C11.5281 3.26875 11.3375 3.36563 11.1469 3.46875L11.1562 3.47812Z" fill="white"/>
|
||||
<path d="M16.8688 3.70314C16.7875 3.56877 16.6656 3.55314 16.5031 3.70314C16.4417 3.83551 16.3874 3.97112 16.3406 4.10939C16.333 4.13359 16.3304 4.15909 16.333 4.18433C16.3355 4.20957 16.3432 4.23403 16.3554 4.25623C16.3677 4.27844 16.3843 4.29791 16.4044 4.31349C16.4244 4.32908 16.4474 4.34044 16.4719 4.34689C16.52 4.36402 16.5729 4.36148 16.6191 4.33983C16.6653 4.31818 16.7012 4.27917 16.7188 4.23127C16.745 4.17594 16.7787 4.12442 16.8188 4.07813C16.867 4.02968 16.8979 3.96679 16.907 3.89906C16.916 3.83134 16.9026 3.76252 16.8688 3.70314Z" fill="white"/>
|
||||
<path d="M11.0875 5.12812C11.0687 5.082 11.037 5.04226 10.9963 5.01366C10.9555 4.98506 10.9074 4.9688 10.8576 4.96682C10.8079 4.96484 10.7586 4.97723 10.7156 5.0025C10.6727 5.02778 10.638 5.06489 10.6156 5.10937C10.5403 5.23349 10.4814 5.36689 10.4406 5.50624C10.4311 5.59176 10.4486 5.67811 10.4907 5.7532C10.5327 5.82829 10.5971 5.88836 10.675 5.92499C10.7625 5.95937 10.9875 5.96561 11.0031 5.77811C10.8937 5.46561 11.125 5.46561 11.1187 5.23436C11.1144 5.19744 11.1038 5.16153 11.0875 5.12812V5.12812Z" fill="white"/>
|
||||
<path d="M12.0375 5.89687C12.0556 5.8835 12.0703 5.86608 12.0805 5.846C12.0906 5.82592 12.0959 5.80374 12.0959 5.78124C12.0959 5.75875 12.0906 5.73657 12.0805 5.71649C12.0703 5.69641 12.0556 5.67899 12.0375 5.66562C12.0074 5.6558 11.9754 5.65295 11.944 5.65729C11.9126 5.66162 11.8826 5.67301 11.8563 5.69063C11.8157 5.725 11.7563 5.85625 11.7938 5.90938C11.8313 5.9625 11.9875 5.92499 12.0375 5.89687Z" fill="white"/>
|
||||
<path d="M12.7531 5.49375C12.6531 5.3875 12.5093 5.40625 12.3749 5.54063C12.2406 5.675 12.2531 5.77188 12.3312 5.85313C12.3948 5.90135 12.4706 5.93097 12.55 5.93869C12.6295 5.94642 12.7095 5.93193 12.7812 5.89686C12.8086 5.86995 12.8299 5.83742 12.8435 5.8015C12.8571 5.76558 12.8628 5.72715 12.8601 5.68883C12.8574 5.65051 12.8465 5.61322 12.828 5.57954C12.8095 5.54586 12.784 5.51659 12.7531 5.49375V5.49375Z" fill="white"/>
|
||||
<path d="M9.8281 6.22811C9.81818 6.23993 9.81274 6.25487 9.81274 6.2703C9.81274 6.28573 9.81818 6.30067 9.8281 6.31249C9.8281 6.31249 9.89061 6.31249 9.90311 6.31249C9.91011 6.30181 9.91381 6.28932 9.91381 6.27656C9.91381 6.26379 9.91011 6.25131 9.90311 6.24062C9.89373 6.23058 9.88129 6.2239 9.86773 6.22165C9.85417 6.21939 9.84023 6.22166 9.8281 6.22811V6.22811Z" fill="white"/>
|
||||
<path d="M26.7281 7.21563C26.7696 7.13953 26.7814 7.05074 26.7612 6.96645C26.741 6.88216 26.6902 6.80838 26.6188 6.75937C26.5768 6.72897 26.5289 6.70762 26.4783 6.69664C26.4276 6.68565 26.3753 6.68527 26.3245 6.69555C26.2737 6.70583 26.2256 6.72653 26.1832 6.75634C26.1408 6.78615 26.105 6.82443 26.0781 6.86876C26.0313 6.9344 26.0117 7.01558 26.0233 7.09537C26.0349 7.17515 26.077 7.24736 26.1406 7.29688C26.2331 7.35256 26.3418 7.37487 26.4487 7.36009C26.5556 7.3453 26.6543 7.29431 26.7281 7.21563V7.21563Z" fill="white"/>
|
||||
<path d="M26.5875 8.65312C26.6378 8.65793 26.6882 8.64494 26.7299 8.61638C26.7716 8.58782 26.802 8.54552 26.8156 8.49687C26.8212 8.47305 26.8219 8.44839 26.8178 8.42429C26.8137 8.40019 26.8049 8.37715 26.7918 8.3565C26.7787 8.33586 26.7616 8.31801 26.7416 8.30401C26.7215 8.29002 26.6989 8.28017 26.675 8.275C26.6253 8.26886 26.5751 8.28101 26.5337 8.30918C26.4923 8.33736 26.4625 8.37964 26.45 8.42813C26.4425 8.45196 26.4402 8.47711 26.4433 8.5019C26.4463 8.5267 26.4546 8.55055 26.4676 8.57186C26.4807 8.59318 26.4981 8.61146 26.5188 8.62548C26.5394 8.63949 26.5629 8.64891 26.5875 8.65312V8.65312Z" fill="white"/>
|
||||
<path d="M27.1532 6.7375C27.1559 6.68833 27.142 6.63967 27.1136 6.59941C27.0852 6.55914 27.0441 6.52963 26.9969 6.51564C26.9431 6.51084 26.8892 6.52383 26.8435 6.55262C26.7977 6.58141 26.7627 6.62439 26.7438 6.675C26.7381 6.7248 26.7513 6.77492 26.7809 6.81544C26.8104 6.85595 26.854 6.88389 26.9032 6.89375C26.9567 6.90284 27.0118 6.89196 27.0579 6.86316C27.1039 6.83436 27.1378 6.78964 27.1532 6.7375V6.7375Z" fill="white"/>
|
||||
<path d="M26.9031 8.33126C26.9375 8.33126 27.0438 8.28125 27.0531 8.22188C27.0625 8.1625 26.9313 8.09376 26.8938 8.09689C26.8674 8.10592 26.8441 8.12209 26.8265 8.14362C26.8088 8.16514 26.7975 8.19116 26.7938 8.21875C26.7938 8.25937 26.8688 8.32189 26.9031 8.33126Z" fill="white"/>
|
||||
<path d="M25.825 4.79063C25.7935 4.8041 25.7659 4.82507 25.7444 4.85172C25.7229 4.87838 25.7083 4.90991 25.7018 4.94352C25.6953 4.97714 25.6972 5.01183 25.7072 5.04456C25.7173 5.07729 25.7352 5.10705 25.7594 5.13125C25.792 5.15827 25.8304 5.17741 25.8716 5.18717C25.9128 5.19693 25.9557 5.19705 25.9969 5.18751C26.0312 5.17007 26.0605 5.14435 26.0824 5.11271C26.1042 5.08106 26.1178 5.04448 26.1219 5.00626C26.1198 4.97124 26.11 4.93712 26.0931 4.90635C26.0763 4.87558 26.0528 4.84894 26.0244 4.82832C25.996 4.8077 25.9634 4.79362 25.9289 4.7871C25.8945 4.78059 25.859 4.7818 25.825 4.79063V4.79063Z" fill="white"/>
|
||||
<path d="M25.8312 7.87499C25.9844 7.87499 25.9594 7.73437 26.0062 7.68124C26.0356 7.64747 26.0579 7.60814 26.0718 7.5656C26.0856 7.52306 26.0908 7.47818 26.087 7.43359C26.0833 7.38901 26.0706 7.34564 26.0497 7.30605C26.0288 7.26646 26.0003 7.23145 25.9656 7.20311C25.9097 7.17541 25.8468 7.16508 25.785 7.17343C25.7232 7.18179 25.6653 7.20845 25.6188 7.24999C25.5737 7.2873 25.5445 7.34027 25.537 7.39825C25.5294 7.45623 25.5441 7.51492 25.5781 7.56249C25.6187 7.65624 25.6812 7.87499 25.8312 7.87499Z" fill="white"/>
|
||||
<path d="M25.4781 6.31251C25.5375 6.31251 25.55 6.1 25.5219 5.97813C25.5319 5.99647 25.5458 6.01246 25.5625 6.02501C25.5625 6.02501 25.6562 5.99688 25.6594 5.97813C25.6625 5.95938 25.6594 5.85001 25.6094 5.82814C25.5594 5.80626 25.4969 5.88751 25.4969 5.90939C25.4921 5.8991 25.4858 5.8896 25.4781 5.88126C25.4062 5.82813 25.2437 5.95002 25.2187 6.10627C25.1937 6.26252 25.3969 6.31251 25.4781 6.31251Z" fill="white"/>
|
||||
<path d="M30.8031 8.85C30.822 8.8369 30.8377 8.8197 30.8491 8.79968C30.8605 8.77966 30.8672 8.75734 30.8687 8.73437C30.8687 8.70312 30.7718 8.62813 30.7406 8.64063C30.7093 8.65313 30.6969 8.76249 30.7031 8.80311C30.7154 8.81773 30.7307 8.8295 30.7479 8.8376C30.7652 8.8457 30.784 8.84992 30.8031 8.85V8.85Z" fill="white"/>
|
||||
<path d="M26.6312 4.84374C26.5883 4.81003 26.5339 4.79442 26.4796 4.80026C26.4253 4.8061 26.3754 4.83293 26.3406 4.87501C26.3102 4.91987 26.2975 4.97443 26.305 5.02813C26.3125 5.08183 26.3397 5.13084 26.3812 5.16563C26.4295 5.19757 26.4877 5.21105 26.5451 5.20359C26.6025 5.19612 26.6552 5.16823 26.6937 5.125C26.7082 5.10246 26.718 5.07727 26.7227 5.0509C26.7274 5.02454 26.7268 4.99752 26.721 4.97138C26.7152 4.94525 26.7043 4.9205 26.6889 4.8986C26.6735 4.8767 26.6539 4.85805 26.6312 4.84374V4.84374Z" fill="white"/>
|
||||
<path d="M29.2532 6.71251C29.3108 6.71518 29.3673 6.69557 29.4109 6.65776C29.4546 6.61996 29.482 6.56683 29.4875 6.50937C29.4873 6.4561 29.4679 6.40467 29.4329 6.36451C29.3979 6.32435 29.3497 6.29812 29.2969 6.29062C29.2432 6.29209 29.1916 6.31223 29.1511 6.34759C29.1106 6.38295 29.0837 6.43132 29.075 6.48437C29.0688 6.53816 29.084 6.59225 29.1174 6.63493C29.1507 6.67761 29.1995 6.70548 29.2532 6.71251V6.71251Z" fill="white"/>
|
||||
<path d="M30.775 10.35C30.8201 10.3296 30.8566 10.294 30.8783 10.2495C30.9 10.205 30.9054 10.1543 30.8938 10.1062C30.8832 10.0811 30.8677 10.0584 30.8483 10.0392C30.8289 10.0201 30.8059 10.005 30.7806 9.99488C30.7553 9.98471 30.7283 9.97964 30.7011 9.97998C30.6738 9.98032 30.6469 9.98606 30.6219 9.99686C30.5975 10.0017 30.5746 10.0122 30.555 10.0276C30.5354 10.0429 30.5197 10.0625 30.5091 10.085C30.4984 10.1075 30.4932 10.1321 30.4938 10.157C30.4944 10.1818 30.5008 10.2062 30.5125 10.2281C30.5216 10.2535 30.5356 10.2768 30.5537 10.2967C30.5719 10.3166 30.5938 10.3327 30.6182 10.344C30.6427 10.3553 30.6691 10.3617 30.696 10.3627C30.7229 10.3638 30.7498 10.3594 30.775 10.35V10.35Z" fill="white"/>
|
||||
<path d="M29.0562 5.72813C29.0339 5.71733 29.0086 5.71423 28.9843 5.71932C28.96 5.72441 28.938 5.73738 28.9219 5.75625C28.8969 5.78437 28.8719 5.89376 28.9219 5.92188C28.9719 5.95001 29.0625 5.89689 29.0813 5.86876C29.0919 5.84557 29.0953 5.81967 29.0908 5.79453C29.0863 5.76939 29.0743 5.74621 29.0562 5.72813V5.72813Z" fill="white"/>
|
||||
<path d="M28.9094 7.725C28.947 7.62385 28.9552 7.51413 28.9331 7.40851C28.911 7.30289 28.8594 7.20567 28.7844 7.12811C28.6964 7.08071 28.5935 7.06888 28.497 7.09504C28.4005 7.1212 28.3177 7.18336 28.2656 7.26874C28.2212 7.35716 28.2079 7.45795 28.2277 7.55488C28.2475 7.65182 28.2994 7.73927 28.375 7.80312C28.4573 7.86067 28.5584 7.88463 28.6577 7.87011C28.757 7.85559 28.8471 7.80368 28.9094 7.725V7.725Z" fill="white"/>
|
||||
<path d="M27.3 5.88751C27.3347 5.85141 27.3541 5.80325 27.3541 5.75314C27.3541 5.70302 27.3347 5.65486 27.3 5.61876C27.2755 5.59574 27.2464 5.57824 27.2146 5.56746C27.1828 5.55667 27.149 5.55286 27.1156 5.55626C26.9968 5.55626 26.9625 5.66251 26.9719 5.88751C27.0781 5.93126 27.1812 6.01876 27.3 5.88751Z" fill="white"/>
|
||||
<path d="M28.875 9.61563C28.9094 9.61563 29.0281 9.61563 29.0281 9.55313C29.0281 9.49063 28.9563 9.45001 28.9282 9.44689C28.9 9.44376 28.7938 9.44688 28.7938 9.50001C28.7945 9.52512 28.8026 9.54947 28.817 9.57002C28.8315 9.59058 28.8516 9.60645 28.875 9.61563V9.61563Z" fill="white"/>
|
||||
<path d="M23.575 5.10313C23.557 5.08954 23.5361 5.08036 23.514 5.07633C23.4918 5.0723 23.4691 5.07353 23.4475 5.07991C23.4259 5.0863 23.4061 5.09765 23.3897 5.11308C23.3733 5.12851 23.3608 5.14759 23.3531 5.16876C23.3389 5.20073 23.3315 5.23531 23.3315 5.2703C23.3315 5.30529 23.3389 5.3399 23.3531 5.37187C23.3875 5.41875 23.5812 5.4375 23.6312 5.37187C23.6457 5.35068 23.6557 5.3268 23.6606 5.30166C23.6656 5.27652 23.6655 5.25063 23.6602 5.22554C23.655 5.20045 23.6447 5.17669 23.6301 5.15565C23.6154 5.13462 23.5967 5.11675 23.575 5.10313Z" fill="white"/>
|
||||
<path d="M23.1656 2.81563C23.1133 2.77296 23.0468 2.7518 22.9794 2.75644C22.9121 2.76109 22.8491 2.7912 22.8031 2.84063C22.764 2.90236 22.7462 2.97518 22.7524 3.04798C22.7586 3.12078 22.7885 3.18954 22.8375 3.24375C22.9122 3.28751 22.9999 3.30336 23.0852 3.28848C23.1705 3.2736 23.2477 3.22896 23.3031 3.1625C23.3594 3.075 23.2906 2.90313 23.1656 2.81563Z" fill="white"/>
|
||||
<path d="M23.3657 5.97187C23.4222 5.98484 23.481 5.98484 23.5376 5.97187C23.6251 5.84999 23.6188 5.72813 23.5376 5.70625C23.4979 5.69558 23.4564 5.69286 23.4157 5.69822C23.3749 5.70358 23.3356 5.71692 23.3001 5.73749C23.2313 5.77187 23.275 5.93749 23.3657 5.97187Z" fill="white"/>
|
||||
<path d="M31.025 8.29377C31.0438 8.16877 30.8781 8.11875 30.8094 8.08125C30.7406 8.04375 30.6406 8.11875 30.6219 8.22188C30.6031 8.325 30.6469 8.41251 30.7563 8.40626C30.8656 8.40001 31.0031 8.41564 31.025 8.29377Z" fill="white"/>
|
||||
<path d="M23.225 7.3C23.3 7.125 23.0594 6.9875 22.9781 7.02812C22.8969 7.06875 22.8375 7.29375 22.9219 7.3625C23.0062 7.43125 23.1469 7.47187 23.225 7.3Z" fill="white"/>
|
||||
<path d="M21.9812 5.42499C22.0499 5.32812 21.9812 5.1125 21.85 5.025C21.8238 5.00374 21.7937 4.98791 21.7614 4.97843C21.7291 4.96895 21.6952 4.966 21.6617 4.96979C21.6283 4.97357 21.5959 4.984 21.5665 5.00046C21.5371 5.01691 21.5113 5.03907 21.4906 5.06563C21.4443 5.13273 21.4239 5.21432 21.4331 5.29531C21.4423 5.37631 21.4804 5.45122 21.5406 5.50625C21.6124 5.5446 21.6951 5.55746 21.7751 5.5427C21.8552 5.52794 21.9278 5.48643 21.9812 5.42499V5.42499Z" fill="white"/>
|
||||
<path d="M21.9218 8.05313C21.9445 8.06029 21.9687 8.06117 21.9918 8.05567C22.0149 8.05016 22.0361 8.03847 22.0531 8.02187C22.062 8.00965 22.0683 7.99577 22.0717 7.98105C22.0751 7.96633 22.0755 7.9511 22.0728 7.93623C22.0702 7.92135 22.0646 7.90716 22.0564 7.89449C22.0482 7.88183 22.0375 7.87095 22.025 7.86251C21.9468 7.82188 21.9 7.9 21.8781 7.93438C21.8751 7.95624 21.8775 7.97852 21.8851 7.99923C21.8927 8.01994 21.9053 8.03845 21.9218 8.05313Z" fill="white"/>
|
||||
<path d="M23.5343 4.325C23.5781 4.28438 23.5343 4.2 23.4999 4.16875C23.4829 4.1572 23.4627 4.15102 23.4421 4.15102C23.4215 4.15102 23.4014 4.1572 23.3843 4.16875C23.3562 4.19688 23.3843 4.26876 23.3843 4.30626C23.3843 4.34376 23.4906 4.3625 23.5343 4.325Z" fill="white"/>
|
||||
<path d="M23.9407 4.32814C23.9714 4.35171 24.0072 4.3679 24.0451 4.37548C24.0831 4.38307 24.1224 4.38182 24.1598 4.37186C24.1972 4.3619 24.2319 4.34348 24.2611 4.31801C24.2902 4.29255 24.3132 4.26074 24.3282 4.22501C24.4157 4.07814 24.3969 3.91251 24.2844 3.86876C24.2026 3.83121 24.1107 3.82188 24.023 3.84225C23.9354 3.86261 23.8569 3.9115 23.8 3.98125C23.7829 4.0465 23.7873 4.11555 23.8127 4.17807C23.838 4.2406 23.8829 4.29325 23.9407 4.32814V4.32814Z" fill="white"/>
|
||||
<path d="M25.0406 1.99062C25.0624 2.01245 25.0891 2.02868 25.1185 2.03794C25.1479 2.04719 25.1791 2.0492 25.2094 2.04375C25.2423 2.04108 25.2742 2.03149 25.3031 2.01562C24.9906 1.92187 24.6781 1.8375 24.3656 1.7625C24.3207 1.83177 24.305 1.91601 24.322 1.99681C24.339 2.07762 24.3873 2.14842 24.4563 2.19375C24.5087 2.22956 24.5678 2.25461 24.63 2.26749C24.6922 2.28036 24.7564 2.28079 24.8188 2.26875C24.8299 2.28118 24.8438 2.29083 24.8594 2.29688C24.8969 2.29688 25.0063 2.29687 25.0156 2.23125C25.025 2.16562 25.0156 2.19062 24.9844 2.17187C24.9531 2.15312 25.0063 2.17186 25.0125 2.14374C25.0333 2.09545 25.0429 2.04312 25.0406 1.99062V1.99062Z" fill="white"/>
|
||||
<path d="M25.7281 3.95625C25.7403 3.93943 25.7488 3.92028 25.7532 3.9C25.7714 3.94085 25.7956 3.97875 25.825 4.0125C25.8044 4.05777 25.7928 4.10656 25.7907 4.15624C25.7824 4.19638 25.783 4.23787 25.7927 4.27772C25.8023 4.31757 25.8206 4.35481 25.8463 4.38676C25.8719 4.41871 25.9043 4.44458 25.9412 4.46254C25.9781 4.48049 26.0184 4.49008 26.0594 4.49062C26.1351 4.49591 26.2102 4.47345 26.2706 4.42744C26.331 4.38144 26.3725 4.31503 26.3875 4.24062L26.4282 4.2625C26.4566 4.2961 26.4929 4.32212 26.5338 4.33822C26.5748 4.35431 26.6191 4.35996 26.6628 4.3547C26.7065 4.34943 26.7482 4.33339 26.7841 4.30802C26.8201 4.28266 26.8492 4.24877 26.8688 4.20938C26.8816 4.23326 26.9011 4.25283 26.925 4.26562C26.9775 4.28168 27.034 4.27855 27.0844 4.25679C27.1347 4.23504 27.1757 4.19608 27.2 4.14687C27.219 4.12146 27.2327 4.09255 27.2405 4.06181C27.2482 4.03106 27.2498 3.9991 27.2452 3.96773C27.2406 3.93637 27.2298 3.90622 27.2134 3.87904C27.1971 3.85187 27.1756 3.82819 27.15 3.80937C27.1263 3.79632 27.1002 3.78815 27.0733 3.78533C27.0463 3.78252 27.0191 3.78512 26.9932 3.79298C26.9673 3.80084 26.9432 3.81381 26.9224 3.83111C26.9015 3.84841 26.8844 3.86972 26.8719 3.89375C26.829 3.84003 26.7715 3.79988 26.7063 3.77813C26.6114 3.75339 26.529 3.69437 26.475 3.61249C26.4323 3.55436 26.3754 3.50807 26.3098 3.478C26.2442 3.44793 26.172 3.43507 26.1 3.44062C26.0276 3.44326 25.9575 3.4672 25.8986 3.50944C25.8397 3.55168 25.7945 3.61036 25.7688 3.67812C25.7674 3.69059 25.7674 3.70316 25.7688 3.71562C25.7484 3.62713 25.6946 3.54991 25.6188 3.5C25.5094 3.43437 25.3657 3.49999 25.2625 3.64999C25.2251 3.70509 25.2074 3.77129 25.2125 3.83773C25.2176 3.90417 25.2452 3.96691 25.2907 4.01563C25.3608 4.05189 25.4405 4.06564 25.5188 4.05501C25.5971 4.04439 25.6702 4.00991 25.7281 3.95625V3.95625Z" fill="white"/>
|
||||
<path d="M26.725 5.78125C26.8156 5.78125 26.9 5.74376 26.8906 5.64688C26.8812 5.55001 26.8344 5.38752 26.7594 5.38439C26.6844 5.38127 26.5937 5.53751 26.5656 5.60938C26.5375 5.68126 26.6312 5.77813 26.725 5.78125Z" fill="white"/>
|
||||
<path d="M23.7437 3.1875C23.7437 3.15 23.6875 3.10312 23.65 3.08437C23.6125 3.06562 23.5343 3.08438 23.5249 3.15313C23.5156 3.22188 23.6093 3.24686 23.6468 3.25624C23.6679 3.25533 23.6882 3.24837 23.7054 3.23617C23.7226 3.22398 23.7359 3.20707 23.7437 3.1875V3.1875Z" fill="white"/>
|
||||
<path d="M24.1562 3.14999C24.2409 3.21176 24.3445 3.24184 24.449 3.23498C24.5535 3.22813 24.6523 3.18478 24.7281 3.11249C24.7762 3.01967 24.7909 2.91316 24.7699 2.81077C24.7489 2.70838 24.6933 2.61632 24.6125 2.55C24.5224 2.50843 24.4205 2.49972 24.3246 2.52541C24.2287 2.5511 24.1448 2.60954 24.0875 2.69061C24.038 2.76142 24.0175 2.84854 24.0303 2.934C24.0431 3.01947 24.0882 3.09678 24.1562 3.14999V3.14999Z" fill="white"/>
|
||||
<path d="M23.925 2.05312C23.9421 2.02059 23.9547 1.9859 23.9625 1.94999V1.94999C24.1125 1.99687 24.1938 1.90626 24.275 1.78751L24.25 1.7375C23.9375 1.66875 23.6469 1.60625 23.3438 1.55C23.314 1.57084 23.2877 1.59613 23.2656 1.625C23.222 1.7108 23.2117 1.80969 23.2365 1.90267C23.2613 1.99566 23.3196 2.0762 23.4001 2.12886C23.4807 2.18153 23.5778 2.2026 23.673 2.18805C23.7681 2.1735 23.8545 2.12434 23.9156 2.05L23.925 2.05312Z" fill="white"/>
|
||||
<path d="M36.2656 22.5031C36.3154 22.5242 36.3715 22.5248 36.4217 22.5049C36.472 22.4851 36.5124 22.4463 36.5344 22.3969C36.5608 22.3494 36.5677 22.2936 36.5537 22.2411C36.5397 22.1886 36.5059 22.1436 36.4594 22.1156C36.4109 22.0913 36.355 22.0862 36.3028 22.1012C36.2507 22.1163 36.2062 22.1504 36.1781 22.1969C36.1514 22.2496 36.1456 22.3104 36.1619 22.3672C36.1781 22.4239 36.2151 22.4725 36.2656 22.5031Z" fill="white"/>
|
||||
<path d="M21.1844 5.6875C21.1734 5.67007 21.1582 5.6557 21.1402 5.64575C21.1221 5.63579 21.1019 5.63058 21.0813 5.63058C21.0607 5.63058 21.0404 5.63579 21.0224 5.64575C21.0043 5.6557 20.9891 5.67007 20.9782 5.6875C20.9375 5.7375 20.875 5.9 20.9157 5.9375C20.9563 5.975 21.1156 5.93749 21.1781 5.91562C21.2406 5.89374 21.2438 5.78125 21.1844 5.6875Z" fill="white"/>
|
||||
<path d="M36.2968 21.9188C36.3312 21.9109 36.3634 21.8957 36.3912 21.8742C36.4191 21.8527 36.442 21.8254 36.4583 21.7943C36.4747 21.7631 36.4841 21.7287 36.4858 21.6936C36.4876 21.6584 36.4818 21.6233 36.4687 21.5906C36.4495 21.5623 36.4237 21.539 36.3935 21.523C36.3632 21.5069 36.3295 21.4985 36.2953 21.4985C36.261 21.4985 36.2273 21.5069 36.1971 21.523C36.1669 21.539 36.141 21.5623 36.1218 21.5906C36.1004 21.6271 36.0875 21.6681 36.0843 21.7103C36.081 21.7526 36.0875 21.795 36.1031 21.8344C36.1265 21.8626 36.1563 21.885 36.1899 21.8996C36.2236 21.9143 36.2602 21.9208 36.2968 21.9188V21.9188Z" fill="white"/>
|
||||
<path d="M36.4125 23.6469C36.4367 23.6663 36.465 23.68 36.4953 23.6868C36.5256 23.6935 36.557 23.6933 36.5872 23.6861C36.6174 23.6788 36.6455 23.6648 36.6694 23.645C36.6933 23.6252 36.7123 23.6002 36.725 23.5719C36.7468 23.5009 36.7496 23.4255 36.7331 23.3531C36.7167 23.2808 36.6816 23.214 36.6313 23.1594C36.5972 23.142 36.5598 23.132 36.5215 23.1301C36.4833 23.1281 36.445 23.1343 36.4093 23.1482C36.3736 23.162 36.3413 23.1833 36.3144 23.2105C36.2874 23.2378 36.2666 23.2704 36.2532 23.3063C36.1782 23.4188 36.2438 23.5625 36.4125 23.6469Z" fill="white"/>
|
||||
<path d="M34.7688 17.3156C34.7844 17.2875 34.7688 17.2719 34.7469 17.2437C34.725 17.2156 34.6875 17.2437 34.6719 17.2687C34.6652 17.2869 34.6652 17.3068 34.6719 17.325C34.7125 17.3281 34.7532 17.3406 34.7688 17.3156Z" fill="white"/>
|
||||
<path d="M35.3406 21.4062C35.3844 21.3281 35.2407 21.1844 35.0813 21.1812C34.9219 21.1781 34.8938 21.3875 34.9188 21.4656C34.9438 21.5437 35.3063 21.4844 35.3406 21.4062Z" fill="white"/>
|
||||
<path d="M36.7937 26.9375C36.9062 26.8844 36.875 26.9156 36.9781 26.9906C37.0051 27.0164 37.0383 27.0345 37.0745 27.0434C37.1107 27.0522 37.1486 27.0513 37.1844 27.0409C37.2202 27.0304 37.2526 27.0108 37.2784 26.9838C37.3041 26.9569 37.3224 26.9237 37.3312 26.8875C37.3499 26.7869 37.3313 26.6829 37.279 26.5949C37.2267 26.507 37.1442 26.441 37.0469 26.4094C36.9273 26.3895 36.8047 26.4146 36.7026 26.4798C36.6004 26.545 36.526 26.6457 36.4937 26.7625C36.4687 26.9156 36.6812 26.9719 36.7937 26.9375Z" fill="white"/>
|
||||
<path d="M34.9187 15.4969C34.8733 15.4283 34.8048 15.3784 34.7257 15.356C34.6466 15.3336 34.5621 15.3404 34.4875 15.375C34.4129 15.414 34.3568 15.4809 34.3316 15.5612C34.3064 15.6415 34.3142 15.7285 34.3531 15.8031C34.3921 15.8777 34.4591 15.9338 34.5394 15.959C34.6196 15.9842 34.7066 15.9765 34.7812 15.9375C34.8206 15.9191 34.8556 15.8927 34.8842 15.86C34.9128 15.8273 34.9342 15.789 34.9472 15.7475C34.9601 15.706 34.9643 15.6624 34.9594 15.6192C34.9545 15.576 34.9406 15.5344 34.9187 15.4969V15.4969Z" fill="white"/>
|
||||
<path d="M30.8843 7.10625C30.9187 7.10625 31.0094 7.025 30.9781 6.97188C30.9598 6.94934 30.9349 6.93304 30.9069 6.92521C30.879 6.91737 30.8492 6.91838 30.8219 6.92812C30.7982 6.93641 30.7789 6.95376 30.768 6.97632C30.7572 6.99889 30.7558 7.02482 30.7641 7.04844C30.7723 7.07206 30.7897 7.09142 30.8122 7.10226C30.8348 7.11311 30.8607 7.11454 30.8843 7.10625V7.10625Z" fill="white"/>
|
||||
<path d="M34.45 22.1375C34.3781 22.1004 34.2945 22.0928 34.217 22.1161C34.1394 22.1394 34.074 22.1919 34.0344 22.2625C33.992 22.3615 33.985 22.4722 34.0146 22.5757C34.0442 22.6793 34.1086 22.7696 34.1969 22.8312C34.2781 22.8627 34.3682 22.8626 34.4492 22.8307C34.5303 22.7989 34.5964 22.7377 34.6344 22.6594C34.6584 22.6134 34.6728 22.5629 34.6764 22.5111C34.6801 22.4593 34.6731 22.4073 34.6558 22.3583C34.6385 22.3094 34.6113 22.2645 34.5759 22.2265C34.5405 22.1885 34.4977 22.1582 34.45 22.1375Z" fill="white"/>
|
||||
<path d="M38.1187 23.1656C38.05 23.3187 38.0875 23.5 38.2 23.5437C38.2677 23.5678 38.3416 23.5678 38.4094 23.5437C38.4437 23.3687 38.475 23.1969 38.5031 23.025C38.4698 23.0034 38.4319 22.9899 38.3925 22.9855C38.3531 22.9811 38.3131 22.9859 38.2759 22.9995C38.2386 23.0131 38.205 23.0352 38.1777 23.064C38.1505 23.0929 38.1303 23.1276 38.1187 23.1656V23.1656Z" fill="white"/>
|
||||
<path d="M33.35 23.1219C33.3368 23.0977 33.3174 23.0774 33.2938 23.0631C33.2702 23.0489 33.2432 23.0411 33.2156 23.0406C33.1902 23.0515 33.1679 23.0687 33.151 23.0905C33.134 23.1124 33.1229 23.1383 33.1188 23.1656C33.1188 23.2 33.1875 23.2969 33.25 23.2969C33.3125 23.2969 33.3594 23.1594 33.35 23.1219Z" fill="white"/>
|
||||
<path d="M37.7625 25.5563C37.7375 25.6719 37.6968 25.7844 37.6656 25.9C37.6467 25.9188 37.6325 25.9417 37.624 25.9669C37.6155 25.9921 37.613 26.0189 37.6166 26.0453C37.6202 26.0716 37.6299 26.0968 37.6449 26.1187C37.66 26.1407 37.6798 26.1589 37.7031 26.1719C37.7937 25.9156 37.8781 25.6594 37.9562 25.4C37.9102 25.3971 37.8648 25.4116 37.829 25.4405C37.7931 25.4694 37.7694 25.5107 37.7625 25.5563V25.5563Z" fill="white"/>
|
||||
<path d="M37.975 20.2687C38.0736 20.3028 38.1809 20.3018 38.2788 20.2659C38.3767 20.2301 38.4593 20.1615 38.5125 20.0719C38.541 19.9769 38.5354 19.8748 38.4966 19.7835C38.4578 19.6922 38.3883 19.6173 38.3 19.5719C38.2228 19.5341 38.1341 19.527 38.0518 19.5519C37.9694 19.5768 37.8996 19.632 37.8563 19.7063C37.8061 19.7989 37.7905 19.9063 37.8122 20.0093C37.834 20.1124 37.8917 20.2043 37.975 20.2687V20.2687Z" fill="white"/>
|
||||
<path d="M20.0687 4.78124C20.0362 4.77463 20.0026 4.77514 19.9702 4.78268C19.9379 4.79023 19.9075 4.80466 19.8812 4.82499C19.8156 4.88436 19.8812 5.04375 19.9594 5.06875C20.0126 5.07143 20.0659 5.06291 20.1156 5.04374C20.1812 4.91874 20.1531 4.79999 20.0687 4.78124Z" fill="white"/>
|
||||
<path d="M37.2718 24.125C37.1812 24.0938 37.1406 24.15 37.1094 24.2188C37.0781 24.2875 37.1093 24.4125 37.1968 24.425C37.2615 24.4263 37.3259 24.4167 37.3875 24.3969C37.3985 24.3715 37.4043 24.3442 37.4045 24.3165C37.4046 24.2889 37.3991 24.2615 37.3883 24.236C37.3775 24.2106 37.3615 24.1876 37.3415 24.1685C37.3215 24.1494 37.2978 24.1346 37.2718 24.125V24.125Z" fill="white"/>
|
||||
<path d="M31.5 13.4187C31.5202 13.4146 31.5391 13.4053 31.5547 13.3919C31.5704 13.3784 31.5824 13.3612 31.5896 13.3418C31.5968 13.3224 31.5989 13.3015 31.5958 13.2811C31.5927 13.2607 31.5845 13.2414 31.5719 13.225C31.5375 13.1687 31.4125 13.05 31.3594 13.075C31.3063 13.1 31.2813 13.2594 31.2844 13.3281C31.2875 13.3969 31.3906 13.4531 31.5 13.4187Z" fill="white"/>
|
||||
<path d="M34.0063 25.0625C34.1121 25.0853 34.2222 25.0777 34.3239 25.0407C34.4256 25.0036 34.5148 24.9386 34.5813 24.8531C34.6148 24.7588 34.6112 24.6553 34.5711 24.5636C34.5311 24.4719 34.4576 24.3989 34.3656 24.3594C34.2719 24.3276 34.1703 24.3286 34.0772 24.3621C33.9841 24.3956 33.9051 24.4596 33.8531 24.5438C33.8083 24.6336 33.7992 24.737 33.8276 24.8333C33.8561 24.9295 33.9199 25.0114 34.0063 25.0625V25.0625Z" fill="white"/>
|
||||
<path d="M32.4313 11.3375C32.4504 11.3246 32.4662 11.3074 32.4776 11.2874C32.489 11.2673 32.4956 11.2449 32.4969 11.2219C32.4943 11.2073 32.4888 11.1934 32.4808 11.1809C32.4727 11.1685 32.4623 11.1577 32.4501 11.1493C32.4379 11.1409 32.4242 11.1349 32.4097 11.1318C32.3952 11.1287 32.3802 11.1285 32.3657 11.1312C32.2844 11.15 32.325 11.25 32.3313 11.2906C32.3375 11.3312 32.4156 11.35 32.4313 11.3375Z" fill="white"/>
|
||||
<path d="M31.2625 11C31.2965 10.9958 31.3292 10.9848 31.3587 10.9676C31.3882 10.9504 31.414 10.9274 31.4344 10.9C31.5063 10.7562 31.4157 10.6656 31.275 10.5875C31.1625 10.6562 31.0375 10.6969 31.0657 10.85C31.0726 10.8956 31.0971 10.9368 31.1338 10.9648C31.1705 10.9928 31.2167 11.0054 31.2625 11V11Z" fill="white"/>
|
||||
<path d="M31.2969 6.34687C31.295 6.27756 31.2756 6.20985 31.2406 6.14999C31.3562 6.14999 31.425 6.09374 31.4375 5.99374C31.4418 5.96039 31.438 5.92649 31.4265 5.89491C31.4149 5.86332 31.3959 5.83498 31.3711 5.8123C31.3463 5.78961 31.3163 5.77324 31.2838 5.76458C31.2513 5.75591 31.2172 5.75519 31.1844 5.7625C31.0438 5.78125 30.9906 5.70001 30.9062 5.61876C30.9353 5.58458 30.9615 5.54798 30.9844 5.50937C31.0076 5.5095 31.0304 5.503 31.05 5.49062C31.0475 5.51138 31.0475 5.53237 31.05 5.55313C31.0759 5.59404 31.1139 5.62591 31.1586 5.64437C31.2034 5.66284 31.2528 5.667 31.3 5.65626C31.3969 5.61876 31.3969 5.45313 31.3781 5.36251C31.3518 5.31436 31.3147 5.27294 31.2697 5.2415C31.2247 5.21006 31.173 5.18944 31.1187 5.18125C31.1187 5.125 31.1375 5.13124 31.2094 5.05624L31.2469 5.00938C31.1125 4.90626 30.975 4.8125 30.8375 4.71563C30.7585 4.76129 30.692 4.82568 30.6438 4.90312C30.626 4.94024 30.6164 4.98073 30.6156 5.02187C30.5125 5.02187 30.4531 5.09376 30.4281 5.22813C30.4031 5.36251 30.3844 5.54062 30.6094 5.64062C30.5405 5.67216 30.4681 5.69525 30.3938 5.70938C30.3438 5.70402 30.2937 5.7183 30.254 5.7492C30.2144 5.78011 30.1883 5.82521 30.1812 5.87499C30.1611 5.92912 30.158 5.98817 30.1726 6.04408C30.1871 6.09999 30.2185 6.15005 30.2625 6.18749C30.6031 6.44687 30.725 6.44062 31.0281 6.14687L31.0563 6.12812C31.0185 6.16908 30.9888 6.21679 30.9688 6.26875C30.9597 6.28716 30.9551 6.30745 30.9553 6.32797C30.9555 6.34849 30.9605 6.36869 30.9699 6.38692C30.9793 6.40516 30.9929 6.42093 31.0095 6.43297C31.0262 6.44501 31.0454 6.45299 31.0656 6.45626C31.0876 6.46795 31.1119 6.47433 31.1368 6.47493C31.1616 6.47553 31.1863 6.47032 31.2087 6.45969C31.2312 6.44906 31.2509 6.43331 31.2662 6.41372C31.2815 6.39414 31.292 6.37124 31.2969 6.34687V6.34687Z" fill="white"/>
|
||||
<path d="M32.6125 14.6781C32.6468 14.6781 32.7312 14.5906 32.7125 14.5438C32.6937 14.4969 32.5812 14.4875 32.55 14.5C32.5187 14.5125 32.4687 14.5781 32.4843 14.625C32.4971 14.6465 32.5165 14.6633 32.5396 14.6729C32.5627 14.6825 32.5882 14.6843 32.6125 14.6781V14.6781Z" fill="white"/>
|
||||
<path d="M31.1031 8.33437C31.1109 8.33165 31.1181 8.32731 31.1242 8.32163C31.1303 8.31595 31.1351 8.30907 31.1384 8.30141C31.1416 8.29375 31.1432 8.28548 31.143 8.27717C31.1429 8.26885 31.141 8.26067 31.1375 8.25314C31.1287 8.24046 31.1159 8.2311 31.1012 8.22657C31.0864 8.22203 31.0706 8.22258 31.0562 8.22813C31.0375 8.22813 31.0312 8.2875 31.0562 8.30313C31.0812 8.31875 31.0781 8.34374 31.1031 8.33437Z" fill="white"/>
|
||||
<path d="M31.6688 8.5C31.7197 8.46266 31.7592 8.41191 31.7829 8.35342C31.8066 8.29493 31.8136 8.23099 31.8031 8.16875C31.7756 8.12174 31.7311 8.08709 31.6787 8.07197C31.6264 8.05685 31.5703 8.06241 31.5219 8.0875C31.4975 8.09958 31.4759 8.11658 31.4584 8.13745C31.4409 8.15832 31.4279 8.18259 31.4203 8.20873C31.4126 8.23487 31.4105 8.26231 31.414 8.28931C31.4175 8.31632 31.4266 8.34231 31.4406 8.36563C31.4969 8.5 31.5875 8.54687 31.6688 8.5Z" fill="white"/>
|
||||
<path d="M33.7656 12.7937C33.8283 12.7419 33.8708 12.6697 33.8856 12.5897C33.9005 12.5098 33.8868 12.4271 33.8469 12.3563C33.7781 12.2094 33.6375 12.1781 33.4563 12.2687C33.4051 12.3008 33.3656 12.3486 33.3436 12.4048C33.3217 12.4611 33.3184 12.523 33.3344 12.5812C33.3875 12.7094 33.6687 12.8437 33.7656 12.7937Z" fill="white"/>
|
||||
<path d="M33.6156 19.3781C33.7969 19.4281 33.9031 19.1688 33.85 19.0938C33.7969 19.0188 33.5625 18.9938 33.5094 19.0938C33.4562 19.1938 33.4313 19.325 33.6156 19.3781Z" fill="white"/>
|
||||
<path d="M32.7312 18.3187C32.7625 18.3344 32.8562 18.35 32.8844 18.2688C32.9125 18.1875 32.8312 18.15 32.7937 18.1375C32.7717 18.1361 32.7497 18.1406 32.7299 18.1504C32.7101 18.1603 32.6933 18.1753 32.6812 18.1938C32.6782 18.2171 32.6811 18.2409 32.6899 18.2628C32.6986 18.2847 32.7129 18.3039 32.7312 18.3187Z" fill="white"/>
|
||||
<path d="M33.3906 13.5625C33.3469 13.5031 33.2125 13.375 33.1375 13.4062C33.0625 13.4375 33.0937 13.6313 33.1156 13.7C33.1375 13.7688 33.2219 13.8125 33.3125 13.7562C33.4031 13.7 33.4469 13.6406 33.3906 13.5625Z" fill="white"/>
|
||||
<path d="M33.1188 11.4781C33.15 11.3563 33.0188 11.2156 32.8344 11.1656C32.7802 11.1592 32.7255 11.1723 32.6803 11.2027C32.635 11.2331 32.6021 11.2787 32.5875 11.3313C32.577 11.3955 32.5886 11.4613 32.6204 11.5181C32.6522 11.5748 32.7023 11.6192 32.7625 11.6438C32.8318 11.6578 32.9037 11.6493 32.9678 11.6195C33.0319 11.5897 33.0848 11.5401 33.1188 11.4781V11.4781Z" fill="white"/>
|
||||
<path d="M33.0531 21C33.0844 21.0054 33.1166 21.0035 33.147 20.9942C33.1773 20.985 33.2051 20.9688 33.2281 20.9469C33.2407 20.9307 33.2494 20.9118 33.2533 20.8917C33.2573 20.8716 33.2566 20.8509 33.2511 20.8312C33.2456 20.8114 33.2356 20.7932 33.2219 20.7781C33.2081 20.7629 33.191 20.7511 33.1719 20.7437C33.1188 20.725 32.9688 20.7 32.9219 20.8125C32.875 20.925 33.0063 21 33.0531 21Z" fill="white"/>
|
||||
<path d="M34.3875 12.3969C34.3688 12.3531 34.2344 12.2688 34.1844 12.2938C34.1344 12.3188 34.1156 12.4937 34.1375 12.5156C34.1594 12.5375 34.3031 12.6188 34.3437 12.5844C34.3657 12.559 34.3812 12.5287 34.3889 12.4961C34.3965 12.4634 34.396 12.4293 34.3875 12.3969Z" fill="white"/>
|
||||
<path d="M35.8406 19.4125C35.8513 19.3926 35.8572 19.3705 35.8579 19.3479C35.8587 19.3253 35.8541 19.3029 35.8448 19.2823C35.8354 19.2617 35.8214 19.2436 35.8039 19.2293C35.7864 19.2151 35.7658 19.205 35.7438 19.2C35.7092 19.1918 35.6732 19.1909 35.6382 19.1974C35.6033 19.2038 35.57 19.2175 35.5406 19.2375C35.5 19.2781 35.5094 19.475 35.5937 19.5125C35.6399 19.5306 35.6912 19.5303 35.7371 19.5117C35.783 19.4931 35.8201 19.4576 35.8406 19.4125V19.4125Z" fill="white"/>
|
||||
<path d="M37.3687 19.2406C37.4145 19.2195 37.4514 19.1827 37.4725 19.1369C37.4937 19.0911 37.4979 19.0392 37.4843 18.9906C37.4773 18.9671 37.4655 18.9452 37.4498 18.9264C37.434 18.9075 37.4146 18.8921 37.3926 18.881C37.3707 18.8699 37.3468 18.8633 37.3222 18.8618C37.2977 18.8602 37.2731 18.8636 37.25 18.8719C37.2044 18.8924 37.1677 18.9286 37.1465 18.9739C37.1253 19.0192 37.121 19.0706 37.1343 19.1187C37.1406 19.1428 37.1519 19.1653 37.1675 19.1848C37.183 19.2042 37.2024 19.2202 37.2245 19.2317C37.2466 19.2432 37.2708 19.2499 37.2957 19.2514C37.3205 19.253 37.3454 19.2493 37.3687 19.2406V19.2406Z" fill="white"/>
|
||||
<path d="M37.7406 16.35C37.7535 16.3287 37.7619 16.305 37.7651 16.2804C37.7683 16.2557 37.7663 16.2307 37.7592 16.2068C37.7522 16.183 37.7402 16.1609 37.7241 16.1419C37.7079 16.123 37.688 16.1076 37.6656 16.0969C37.6422 16.0834 37.6163 16.075 37.5895 16.0719C37.5627 16.0689 37.5356 16.0714 37.5098 16.0794C37.484 16.0873 37.4601 16.1004 37.4396 16.1179C37.4191 16.1355 37.4024 16.157 37.3906 16.1813C37.3699 16.2316 37.369 16.288 37.3881 16.339C37.4072 16.39 37.445 16.4319 37.4937 16.4563C37.5406 16.4739 37.5926 16.4727 37.6386 16.4529C37.6846 16.4331 37.7212 16.3962 37.7406 16.35Z" fill="white"/>
|
||||
<path d="M35.6719 17.6906C35.6891 17.6618 35.7003 17.6299 35.7048 17.5967C35.7094 17.5635 35.7073 17.5297 35.6985 17.4973C35.6898 17.465 35.6746 17.4347 35.6539 17.4083C35.6332 17.3819 35.6075 17.36 35.5781 17.3438C35.5149 17.315 35.4448 17.3051 35.3761 17.3151C35.3075 17.325 35.2431 17.3545 35.1906 17.4C35.1719 17.3625 35.1375 17.3031 35.0781 17.3125C35.0188 17.3219 35.0125 17.425 35.025 17.4406C35.0523 17.4771 35.0926 17.5017 35.1375 17.5094C35.125 17.5803 35.1345 17.6533 35.1647 17.7186C35.1948 17.7839 35.2442 17.8385 35.3063 17.875C35.3969 17.9313 35.6 17.8312 35.6719 17.6906Z" fill="white"/>
|
||||
<path d="M34.9469 11.975C34.9588 11.9269 34.9531 11.8762 34.9307 11.832C34.9083 11.7878 34.8708 11.7532 34.825 11.7344C34.7913 11.7111 34.7498 11.7021 34.7095 11.7091C34.6692 11.7161 34.6332 11.7386 34.6094 11.7719C34.5063 11.8938 34.5625 12 34.6437 12.125C34.7781 12.1063 34.9156 12.1281 34.9469 11.975Z" fill="white"/>
|
||||
<path d="M34.8531 13.2063C34.825 13.1875 34.7094 13.1781 34.6875 13.2219C34.6656 13.2656 34.7344 13.3563 34.7656 13.3719C34.7969 13.3875 34.8781 13.3719 34.9 13.3344C34.9219 13.2969 34.8844 13.225 34.8531 13.2063Z" fill="white"/>
|
||||
<path d="M34.9344 14.7094C34.9613 14.7043 34.9869 14.6937 35.0095 14.6783C35.0322 14.6629 35.0514 14.643 35.0661 14.6198C35.0807 14.5967 35.0905 14.5708 35.0947 14.5437C35.0989 14.5166 35.0975 14.489 35.0906 14.4625C35.0589 14.3921 35.0042 14.3346 34.9355 14.2994C34.8668 14.2642 34.7881 14.2534 34.7125 14.2687C34.657 14.2899 34.6116 14.3314 34.5855 14.3848C34.5594 14.4381 34.5545 14.4994 34.5719 14.5562C34.6027 14.6221 34.6567 14.6742 34.7237 14.7025C34.7906 14.7308 34.8657 14.7332 34.9344 14.7094V14.7094Z" fill="white"/>
|
||||
<path d="M37.7188 18.8656C37.8156 18.9063 37.975 18.8156 38.0313 18.6781C38.0669 18.6202 38.0788 18.5507 38.0642 18.4842C38.0496 18.4178 38.0098 18.3596 37.9531 18.3219C37.8862 18.2928 37.8116 18.2863 37.7407 18.3032C37.6697 18.3201 37.6061 18.3595 37.5594 18.4156C37.5283 18.4974 37.5272 18.5875 37.5564 18.6699C37.5856 18.7523 37.6432 18.8217 37.7188 18.8656V18.8656Z" fill="white"/>
|
||||
<path d="M12.7875 3.90311C12.8386 3.8584 12.8715 3.79653 12.8802 3.72918C12.8888 3.66183 12.8725 3.59365 12.8343 3.53749C12.7966 3.49278 12.7431 3.46428 12.685 3.45788C12.6268 3.45148 12.5684 3.46768 12.5218 3.50312C12.4751 3.55928 12.4495 3.63005 12.4495 3.70313C12.4495 3.77621 12.4751 3.84696 12.5218 3.90311C12.5393 3.92059 12.56 3.93447 12.5827 3.94393C12.6055 3.95339 12.63 3.95827 12.6547 3.95827C12.6793 3.95827 12.7038 3.95339 12.7266 3.94393C12.7494 3.93447 12.77 3.92059 12.7875 3.90311V3.90311Z" fill="white"/>
|
||||
<path d="M9.21248 4.675V4.65625L9.13123 4.71563C9.16141 4.70947 9.18944 4.69546 9.21248 4.675V4.675Z" fill="white"/>
|
||||
<path d="M34.4563 11.2719C34.5383 11.2977 34.6265 11.2958 34.7073 11.2665C34.7881 11.2371 34.8569 11.1819 34.9031 11.1094C34.9503 11.1082 34.9964 11.0953 35.0373 11.0718C35.0782 11.0483 35.1127 11.0151 35.1375 10.975C35.1851 10.8979 35.2249 10.8163 35.2563 10.7313C35.2969 10.7313 35.3438 10.7313 35.3844 10.7031C35.4095 10.6943 35.4336 10.6827 35.4563 10.6688C35.4997 10.6762 35.5441 10.6762 35.5875 10.6688C35.5496 10.7093 35.5294 10.7633 35.5313 10.8188C35.5313 10.9406 35.2688 10.8844 35.2719 11.05C35.275 11.2156 35.0906 11.2906 35.1188 11.4875C35.1469 11.6844 35.3031 11.8656 35.4625 11.7813C35.5963 11.6961 35.6976 11.5685 35.75 11.4188C35.7725 11.4363 35.7991 11.4479 35.8273 11.4524C35.8554 11.4569 35.8843 11.4542 35.9111 11.4445C35.938 11.4349 35.9619 11.4185 35.9808 11.3971C35.9996 11.3756 36.0127 11.3498 36.0188 11.3219C36.0201 11.2976 36.0163 11.2733 36.0077 11.2505C35.9991 11.2278 35.9859 11.2071 35.9688 11.1897C35.9518 11.1724 35.9313 11.1588 35.9087 11.1498C35.886 11.1408 35.8618 11.1366 35.8375 11.1375C35.9875 11.1 36.2813 10.9813 36.1781 10.7156C36.1421 10.649 36.0856 10.5957 36.0169 10.5636C35.9483 10.5315 35.8711 10.5224 35.7969 10.5375C35.8248 10.4834 35.8394 10.4234 35.8394 10.3625C35.8394 10.3016 35.8248 10.2416 35.7969 10.1875C35.7681 10.141 35.7294 10.1014 35.6834 10.0716C35.6375 10.0419 35.5855 10.0228 35.5313 10.0156C35.503 9.99025 35.4727 9.96727 35.4406 9.94688C35.3861 9.9173 35.322 9.91055 35.2625 9.92813C35.2147 9.94014 35.1698 9.96152 35.1304 9.99104C35.0909 10.0206 35.0577 10.0576 35.0327 10.1001C35.0077 10.1425 34.9914 10.1895 34.9847 10.2383C34.978 10.2871 34.9811 10.3368 34.9938 10.3844C34.9938 10.4281 34.9938 10.4719 35.0188 10.5156C34.9313 10.5156 34.85 10.5406 34.7719 10.5594H34.75C34.625 10.5219 34.4375 10.6344 34.3344 10.7844C34.29 10.8662 34.278 10.9616 34.3005 11.0518C34.3231 11.1421 34.3787 11.2206 34.4563 11.2719V11.2719Z" fill="white"/>
|
||||
<path d="M12.9343 4.88437C12.9133 4.8673 12.889 4.8547 12.8629 4.84731C12.8368 4.83993 12.8094 4.83793 12.7825 4.84144C12.7557 4.84495 12.7298 4.85387 12.7064 4.8677C12.6831 4.88153 12.6628 4.89996 12.6468 4.92187C12.6283 4.93801 12.6134 4.95794 12.6032 4.98031C12.593 5.00269 12.5878 5.02699 12.5878 5.05157C12.5878 5.07616 12.593 5.10044 12.6032 5.12281C12.6134 5.14518 12.6283 5.16512 12.6468 5.18125C12.6882 5.21528 12.7401 5.23388 12.7937 5.23388C12.8473 5.23388 12.8992 5.21528 12.9406 5.18125C12.9778 5.14039 12.9979 5.08681 12.9967 5.03156C12.9955 4.97632 12.9732 4.92363 12.9343 4.88437V4.88437Z" fill="white"/>
|
||||
<path d="M9.68121 7.72501C9.70324 7.71023 9.72188 7.69094 9.7359 7.66842C9.74992 7.64591 9.759 7.62067 9.76254 7.59438C9.76609 7.56809 9.76401 7.54136 9.75646 7.51593C9.74891 7.4905 9.73603 7.46697 9.71871 7.44688C9.69665 7.42918 9.67063 7.4171 9.64288 7.41166C9.61512 7.40621 9.58645 7.40758 9.55933 7.41564C9.50621 7.44377 9.44059 7.51564 9.44371 7.56564C9.44371 7.70314 9.60621 7.74376 9.68121 7.72501Z" fill="white"/>
|
||||
<path d="M38.6031 21.0937C38.6382 21.1099 38.6749 21.1225 38.7125 21.1312C38.7125 20.9812 38.7281 20.8188 38.7313 20.675C38.6438 20.7081 38.57 20.7698 38.5219 20.85C38.5092 20.8709 38.5013 20.8943 38.4986 20.9186C38.4959 20.9429 38.4985 20.9675 38.5062 20.9906C38.5139 21.0138 38.5266 21.035 38.5433 21.0528C38.5601 21.0706 38.5805 21.0846 38.6031 21.0937Z" fill="white"/>
|
||||
<path d="M9.44062 5.78125C9.47761 5.7196 9.49222 5.6471 9.48197 5.57594C9.47172 5.50479 9.43725 5.43933 9.38437 5.39062C9.35754 5.36256 9.32501 5.34057 9.28897 5.32614C9.25292 5.3117 9.21421 5.30513 9.17542 5.30691C9.13664 5.30869 9.09868 5.31876 9.06411 5.33644C9.02954 5.35411 8.99915 5.37897 8.975 5.40937C8.9468 5.4318 8.92341 5.45966 8.9062 5.49131C8.88899 5.52296 8.8783 5.55776 8.8748 5.59362C8.87131 5.62948 8.87506 5.66567 8.88583 5.70005C8.8966 5.73443 8.91417 5.76631 8.9375 5.79376C9.01034 5.84906 9.09983 5.87793 9.19125 5.87566C9.28268 5.87339 9.37061 5.84009 9.44062 5.78125V5.78125Z" fill="white"/>
|
||||
<path d="M34.5125 20.6406C34.5125 20.55 34.2531 20.425 34.1687 20.5125C34.1375 20.5497 34.1203 20.5967 34.1203 20.6453C34.1203 20.6939 34.1375 20.7409 34.1687 20.7781C34.2656 20.8594 34.5156 20.7344 34.5125 20.6406Z" fill="white"/>
|
||||
<path d="M33.95 8.88437C33.9559 8.8359 33.9511 8.78674 33.936 8.74031C33.9209 8.69388 33.8958 8.65131 33.8625 8.61562C33.8941 8.59653 33.9196 8.56863 33.9357 8.53534C33.9518 8.50205 33.9578 8.46481 33.9531 8.42813C33.9531 8.28438 33.8156 8.25624 33.6906 8.21874C33.6031 8.31874 33.4906 8.40624 33.5812 8.53124C33.59 8.54318 33.6005 8.55372 33.6125 8.5625C33.559 8.59817 33.5131 8.64419 33.4777 8.69787C33.4423 8.75154 33.418 8.81178 33.4062 8.875C33.4045 8.90163 33.4083 8.92831 33.4172 8.95345C33.4261 8.97859 33.4401 9.00166 33.4582 9.02124C33.4763 9.04082 33.4982 9.05651 33.5226 9.06736C33.547 9.07821 33.5733 9.084 33.6 9.08437C33.7843 9.125 33.9375 9.02187 33.95 8.88437Z" fill="white"/>
|
||||
<path d="M34.0844 10.6031C34.1162 10.5935 34.1456 10.5771 34.1704 10.555C34.1953 10.5328 34.215 10.5055 34.2281 10.475C34.2563 10.3344 34.1406 10.3031 34.0375 10.2656C33.9281 10.3344 33.8656 10.4219 33.9313 10.5375C33.9493 10.5603 33.9728 10.5783 33.9995 10.5897C34.0263 10.6012 34.0554 10.6058 34.0844 10.6031V10.6031Z" fill="white"/>
|
||||
<path d="M33.8563 9.93749C33.8651 9.92588 33.8711 9.91244 33.874 9.89816C33.8769 9.88388 33.8765 9.86913 33.8729 9.85502C33.8693 9.8409 33.8626 9.82779 33.8532 9.81664C33.8438 9.80549 33.8321 9.7966 33.8188 9.79062C33.789 9.78349 33.7581 9.78258 33.728 9.78795C33.6979 9.79333 33.6692 9.80487 33.6438 9.82187C33.5906 9.84999 33.5313 9.86249 33.5031 9.92187C33.475 9.98124 33.5438 10.0531 33.6344 10.05C33.6771 10.0474 33.7188 10.0361 33.757 10.0168C33.7952 9.99743 33.829 9.97043 33.8563 9.93749Z" fill="white"/>
|
||||
<path d="M33.0125 8.91251C32.9594 8.95626 32.8969 9.00939 32.9063 9.07189C32.9157 9.13439 33.0938 9.22189 33.1844 9.17189C33.275 9.12189 33.2532 9.05626 33.225 8.98751C33.1969 8.91876 33.0844 8.85001 33.0125 8.91251Z" fill="white"/>
|
||||
<path d="M33.4313 11.2281C33.4783 11.2063 33.5203 11.1751 33.5546 11.1363C33.5889 11.0975 33.6148 11.0519 33.6307 11.0026C33.6465 10.9533 33.652 10.9012 33.6467 10.8496C33.6414 10.7981 33.6255 10.7482 33.6 10.7031C33.5845 10.659 33.5602 10.6186 33.5284 10.5843C33.4966 10.5501 33.4582 10.5227 33.4154 10.504C33.3726 10.4852 33.3264 10.4755 33.2797 10.4753C33.2329 10.4752 33.1867 10.4846 33.1438 10.5031C33.0497 10.5475 32.9752 10.6248 32.9343 10.7204C32.8934 10.816 32.889 10.9232 32.9219 11.0219C32.9717 11.1081 33.0488 11.1752 33.1411 11.2126C33.2334 11.2499 33.3355 11.2554 33.4313 11.2281Z" fill="white"/>
|
||||
<path d="M33.8219 13.425C33.8301 13.4532 33.8442 13.4794 33.8633 13.5017C33.8824 13.524 33.9061 13.542 33.9327 13.5544C33.9594 13.5669 33.9883 13.5734 34.0177 13.5738C34.0471 13.5741 34.0762 13.5681 34.1031 13.5563C34.1506 13.5304 34.1876 13.4888 34.2076 13.4386C34.2275 13.3883 34.2293 13.3326 34.2125 13.2813C34.1838 13.227 34.1352 13.186 34.077 13.1668C34.0187 13.1476 33.9553 13.1516 33.9 13.1781C33.8577 13.2013 33.826 13.24 33.8115 13.2859C33.7969 13.3319 33.8006 13.3817 33.8219 13.425V13.425Z" fill="white"/>
|
||||
<path d="M33.0781 9.95314C33.1023 9.94851 33.1251 9.93833 33.1447 9.9234C33.1644 9.90847 33.1803 9.88918 33.1912 9.86708C33.2021 9.84497 33.2077 9.82062 33.2076 9.79597C33.2075 9.77132 33.2017 9.74702 33.1906 9.725C33.1744 9.68286 33.1428 9.64846 33.1022 9.62873C33.0616 9.60901 33.015 9.60545 32.9719 9.61876C32.8906 9.63751 32.8156 9.84687 32.875 9.90312C32.9028 9.92641 32.9355 9.94304 32.9707 9.9517C33.006 9.96037 33.0427 9.96086 33.0781 9.95314V9.95314Z" fill="white"/>
|
||||
<path d="M20.9312 6.33438C20.9722 6.33437 21.0121 6.32135 21.0453 6.2972C21.0784 6.27306 21.103 6.23903 21.1156 6.20001C21.1449 6.14554 21.1558 6.08307 21.1468 6.02188C21.05 6.02188 20.8968 5.90624 20.8343 5.99374C20.7718 6.08124 20.8656 6.22187 20.875 6.30624L20.9312 6.33438Z" fill="white"/>
|
||||
<path d="M34.0281 18.8125C34.0656 18.8375 34.1813 18.875 34.2344 18.8125C34.2875 18.75 34.1781 18.65 34.1375 18.6344C34.0969 18.6187 34.0094 18.6 33.975 18.6719C33.9679 18.6979 33.9693 18.7255 33.9788 18.7508C33.9883 18.7761 34.0056 18.7976 34.0281 18.8125V18.8125Z" fill="white"/>
|
||||
<path d="M13.4531 2.6125C13.4755 2.55415 13.4755 2.4896 13.4531 2.43126C13.1406 2.54688 12.8281 2.66876 12.5406 2.80001C12.6066 2.87987 12.6947 2.93855 12.7938 2.96875C12.926 2.97722 13.058 2.9483 13.1746 2.8853C13.2912 2.82231 13.3877 2.72776 13.4531 2.6125V2.6125Z" fill="white"/>
|
||||
<path d="M34.5812 17.1375C34.5812 17.0406 34.6594 16.875 34.5812 16.825C34.5031 16.775 34.3594 16.8875 34.2687 16.9125V16.9781C34.2745 17.0192 34.2934 17.0573 34.3228 17.0866C34.3521 17.1159 34.3902 17.1349 34.4312 17.1406C34.4805 17.154 34.5326 17.1529 34.5812 17.1375V17.1375Z" fill="white"/>
|
||||
<path d="M33.6031 15.4437C33.5904 15.4651 33.5824 15.489 33.5797 15.5137C33.5769 15.5385 33.5795 15.5635 33.5872 15.5871C33.5949 15.6108 33.6075 15.6325 33.6243 15.6509C33.641 15.6693 33.6615 15.6839 33.6844 15.6938C33.8031 15.7469 33.9969 15.6938 34.025 15.6219C34.0531 15.55 33.9594 15.3813 33.8656 15.3344C33.8414 15.3228 33.815 15.3164 33.7882 15.3157C33.7613 15.315 33.7347 15.32 33.7099 15.3303C33.6851 15.3406 33.6628 15.3561 33.6444 15.3756C33.626 15.3952 33.6119 15.4184 33.6031 15.4437Z" fill="white"/>
|
||||
<path d="M34.3062 17.5812C34.3175 17.5324 34.3111 17.4811 34.2883 17.4365C34.2654 17.3919 34.2275 17.3569 34.1813 17.3375C34.1473 17.315 34.1061 17.3064 34.066 17.3134C34.0259 17.3203 33.99 17.3424 33.9656 17.375C33.8656 17.4969 33.9219 17.6063 34.0031 17.7281C34.1375 17.7125 34.2719 17.7344 34.3062 17.5812Z" fill="white"/>
|
||||
<path d="M33.0031 10.1344C32.9955 10.2121 33.0173 10.2898 33.0641 10.3523C33.111 10.4148 33.1795 10.4574 33.2563 10.4719C33.4063 10.5031 33.5031 10.4188 33.5406 10.225C33.5656 10.0906 33.4781 9.9125 33.375 9.8875C33.2942 9.88013 33.2132 9.90059 33.1456 9.94549C33.078 9.99038 33.0277 10.057 33.0031 10.1344V10.1344Z" fill="white"/>
|
||||
<path d="M33.9781 14.1031C33.9594 14.1031 33.95 14.1594 33.9594 14.175C33.9653 14.1867 33.975 14.1962 33.9868 14.2018C33.9987 14.2075 34.0121 14.209 34.025 14.2062C34.0392 14.1989 34.0503 14.1865 34.056 14.1715C34.0618 14.1566 34.0619 14.14 34.0562 14.125C34.0479 14.1126 34.0355 14.1037 34.0212 14.0997C34.0069 14.0957 33.9916 14.0969 33.9781 14.1031Z" fill="white"/>
|
||||
<path d="M18.575 7.775C18.5947 7.75658 18.6104 7.73433 18.6211 7.7096C18.6318 7.68487 18.6373 7.6582 18.6373 7.63124C18.6373 7.60429 18.6318 7.57764 18.6211 7.55291C18.6104 7.52818 18.5947 7.50592 18.575 7.48751C18.54 7.45278 18.4938 7.43154 18.4446 7.42754C18.3954 7.42354 18.3464 7.43703 18.3062 7.46563C18.2865 7.48432 18.2707 7.50685 18.26 7.53183C18.2492 7.55682 18.2437 7.58375 18.2437 7.61095C18.2437 7.63815 18.2492 7.66506 18.26 7.69005C18.2707 7.71503 18.2865 7.73756 18.3062 7.75625C18.3195 7.77928 18.3383 7.7987 18.3609 7.81279C18.3834 7.82688 18.4091 7.83522 18.4356 7.83707C18.4622 7.83892 18.4887 7.83423 18.513 7.82341C18.5373 7.81259 18.5586 7.79596 18.575 7.775V7.775Z" fill="white"/>
|
||||
<path d="M18.1188 3.725C18.1168 3.6327 18.081 3.54434 18.0184 3.47656C17.9557 3.40878 17.8704 3.36627 17.7785 3.35705C17.6867 3.34782 17.5946 3.37253 17.5197 3.4265C17.4448 3.48046 17.3922 3.55995 17.3719 3.65C17.3375 3.79687 17.525 3.94687 17.7281 4.00312C17.8157 4.01095 17.9032 3.98723 17.9748 3.93623C18.0465 3.88524 18.0975 3.81031 18.1188 3.725V3.725Z" fill="white"/>
|
||||
<path d="M19.3688 5.09999C19.3688 5.06249 19.3532 4.975 19.3094 4.93437C19.2912 4.90608 19.2669 4.88228 19.2382 4.86479C19.2094 4.8473 19.1771 4.83657 19.1436 4.8334C19.1102 4.83023 19.0764 4.83473 19.0449 4.84652C19.0134 4.85831 18.9851 4.87709 18.9619 4.90147C18.9387 4.92585 18.9214 4.95517 18.9113 4.98723C18.9011 5.01928 18.8983 5.05322 18.9032 5.08648C18.9081 5.11975 18.9205 5.15147 18.9394 5.17926C18.9583 5.20704 18.9834 5.23017 19.0125 5.24687C19.0875 5.3125 19.25 5.25624 19.3688 5.09999Z" fill="white"/>
|
||||
<path d="M17.6062 4.775C17.6062 4.75938 17.6437 4.66562 17.6062 4.63124C17.5687 4.59687 17.4875 4.66875 17.4625 4.7C17.454 4.71899 17.4512 4.74006 17.4545 4.76062C17.4578 4.78118 17.4671 4.80031 17.4813 4.81563C17.4938 4.8375 17.5719 4.80313 17.6062 4.775Z" fill="white"/>
|
||||
<path d="M17.4281 5.1625C17.3875 5.13125 17.3188 5.16249 17.2938 5.19062C17.2688 5.21874 17.2438 5.33125 17.2938 5.35938C17.3438 5.3875 17.4313 5.33126 17.45 5.30313C17.4688 5.27501 17.4719 5.19375 17.4281 5.1625Z" fill="white"/>
|
||||
<path d="M13.575 6.575C13.6812 6.46563 13.7062 6.28437 13.6249 6.20937C13.554 6.15256 13.4658 6.12163 13.3749 6.12163C13.2841 6.12163 13.1959 6.15256 13.125 6.20937C13.0879 6.26038 13.0715 6.3235 13.0791 6.38608C13.0866 6.44866 13.1175 6.5061 13.1656 6.54687C13.189 6.5779 13.2189 6.60354 13.2531 6.62206C13.2873 6.64058 13.325 6.65153 13.3638 6.6542C13.4027 6.65686 13.4416 6.65117 13.478 6.63751C13.5144 6.62384 13.5475 6.60254 13.575 6.575V6.575Z" fill="white"/>
|
||||
<path d="M17.6219 4.3125C17.6014 4.28624 17.5754 4.26482 17.5457 4.24971C17.516 4.23459 17.4833 4.22615 17.45 4.22501C17.3063 4.25001 17.3219 4.36876 17.325 4.47813C17.4282 4.55626 17.5313 4.58126 17.6157 4.47813C17.6298 4.45301 17.6377 4.42488 17.6388 4.39608C17.6399 4.36727 17.6341 4.33861 17.6219 4.3125V4.3125Z" fill="white"/>
|
||||
<path d="M19.3312 6.75C19.3505 6.76519 19.3727 6.77615 19.3964 6.7822C19.4202 6.78825 19.4449 6.78924 19.4691 6.78512C19.4933 6.78099 19.5163 6.77185 19.5367 6.75826C19.5571 6.74468 19.5744 6.72695 19.5875 6.70625C19.6594 6.59375 19.6469 6.39375 19.5656 6.35625C19.4844 6.31875 19.3187 6.38438 19.2531 6.47188C19.238 6.49472 19.2279 6.52056 19.2236 6.54765C19.2194 6.57474 19.221 6.60245 19.2284 6.62885C19.2358 6.65525 19.2489 6.67973 19.2666 6.70064C19.2843 6.72155 19.3064 6.7384 19.3312 6.75V6.75Z" fill="white"/>
|
||||
<path d="M20.6375 4.19062C20.7189 4.17328 20.7949 4.13685 20.8594 4.08436C20.9282 4.03124 20.9219 3.94373 20.8375 3.88123C20.8167 3.86036 20.7906 3.84534 20.7621 3.83767C20.7336 3.82999 20.7036 3.82993 20.675 3.83749C20.6565 3.79797 20.6273 3.76442 20.5907 3.74062C20.5399 3.7142 20.4819 3.70509 20.4255 3.71468C20.3691 3.72427 20.3173 3.75203 20.2782 3.79374C20.1657 3.96249 20.1688 4.15937 20.2782 4.23125C20.3365 4.25591 20.4002 4.26512 20.4632 4.25801C20.5261 4.25089 20.5862 4.22769 20.6375 4.19062V4.19062Z" fill="white"/>
|
||||
<path d="M20.3438 3.52813C20.3679 3.51049 20.3879 3.48772 20.4022 3.46147C20.4165 3.43522 20.4249 3.40614 20.4267 3.37629C20.4285 3.34644 20.4236 3.31655 20.4126 3.28878C20.4015 3.26101 20.3844 3.23604 20.3625 3.21563C20.3214 3.18103 20.2694 3.16206 20.2156 3.16206C20.1619 3.16206 20.1099 3.18103 20.0688 3.21563C20.0321 3.25947 20.0121 3.31477 20.0121 3.37188C20.0121 3.429 20.0321 3.4843 20.0688 3.52813C20.0865 3.54666 20.1079 3.5614 20.1315 3.57147C20.1552 3.58154 20.1806 3.58673 20.2063 3.58673C20.2319 3.58673 20.2574 3.58154 20.281 3.57147C20.3046 3.5614 20.326 3.54666 20.3438 3.52813V3.52813Z" fill="white"/>
|
||||
<path d="M20.8625 4.99063C20.8794 5.00314 20.8991 5.0112 20.9199 5.01407C20.9407 5.01694 20.9619 5.01453 20.9815 5.00705C21.0011 4.99958 21.0185 4.98729 21.0322 4.97131C21.0458 4.95533 21.0551 4.93619 21.0594 4.91563C21.0844 4.85626 21.1375 4.69063 21.0594 4.65313C20.9813 4.61563 20.8344 4.70937 20.7938 4.76249C20.782 4.78166 20.7744 4.80311 20.7715 4.82544C20.7686 4.84776 20.7704 4.87045 20.7769 4.892C20.7834 4.91355 20.7944 4.93348 20.8092 4.95048C20.8239 4.96748 20.8421 4.98117 20.8625 4.99063V4.99063Z" fill="white"/>
|
||||
<path d="M19.7062 4.39062C19.6344 4.32812 19.5562 4.39063 19.5125 4.46563C19.4687 4.54063 19.4844 4.67187 19.5719 4.6875C19.6594 4.70312 19.7812 4.75312 19.825 4.64687C19.8687 4.54062 19.7625 4.43749 19.7062 4.39062Z" fill="white"/>
|
||||
<path d="M19.7531 7.78124C19.7937 7.75624 19.8562 7.60937 19.8187 7.56875C19.7812 7.52812 19.6375 7.56875 19.6156 7.56875C19.5937 7.56875 19.5437 7.71248 19.5718 7.74998C19.5967 7.7706 19.6265 7.78434 19.6583 7.78983C19.6901 7.79531 19.7228 7.79235 19.7531 7.78124V7.78124Z" fill="white"/>
|
||||
<path d="M19.8781 2.70938C19.786 2.66021 19.68 2.64366 19.5773 2.66238C19.4746 2.6811 19.3813 2.73401 19.3125 2.81251C19.1906 2.97501 19.2625 3.21252 19.4812 3.36877C19.517 3.39552 19.5578 3.41488 19.6011 3.42576C19.6445 3.43663 19.6896 3.4388 19.7337 3.43211C19.7779 3.42542 19.8203 3.41002 19.8585 3.38681C19.8967 3.3636 19.9299 3.33303 19.9562 3.29688C20.0172 3.20632 20.043 3.09657 20.0286 2.98833C20.0142 2.88009 19.9606 2.78085 19.8781 2.70938V2.70938Z" fill="white"/>
|
||||
<path d="M17.4093 5.6875C17.4214 5.65336 17.4251 5.61684 17.4202 5.58097C17.4153 5.54511 17.4019 5.51094 17.3812 5.48126C17.3681 5.46043 17.3503 5.44293 17.3293 5.43012C17.3083 5.41731 17.2846 5.40952 17.2601 5.40741C17.2356 5.40529 17.2109 5.40888 17.188 5.4179C17.1651 5.42691 17.1446 5.44112 17.1281 5.45938C17.0947 5.48941 17.0741 5.53115 17.0706 5.57594C17.0671 5.62073 17.081 5.66515 17.1094 5.69999C17.1562 5.77812 17.3781 5.77188 17.4093 5.6875Z" fill="white"/>
|
||||
<path d="M15.2344 4.36876C15.2004 4.41014 15.1818 4.46205 15.1818 4.51562C15.1818 4.5692 15.2004 4.62111 15.2344 4.66249C15.3594 4.77186 15.4813 4.70624 15.6 4.66249C15.625 4.42499 15.6 4.33124 15.4657 4.29687C15.4246 4.28192 15.3797 4.28085 15.3379 4.29384C15.2962 4.30682 15.2598 4.33314 15.2344 4.36876V4.36876Z" fill="white"/>
|
||||
<path d="M16.0032 4.08124C16.1532 3.92186 16.1719 3.79375 16.0563 3.68438C15.9972 3.64538 15.9271 3.62619 15.8564 3.62956C15.7856 3.63293 15.7177 3.65869 15.6626 3.70313C15.6321 3.7684 15.6209 3.84102 15.6303 3.91244C15.6397 3.98385 15.6693 4.05109 15.7157 4.10624C15.7353 4.12534 15.7588 4.14 15.7846 4.1492C15.8104 4.1584 15.8379 4.16193 15.8651 4.15955C15.8924 4.15718 15.9189 4.14896 15.9427 4.13545C15.9665 4.12193 15.9871 4.10344 16.0032 4.08124Z" fill="white"/>
|
||||
<path d="M15.3625 5.4875C15.4938 5.40312 15.5938 5.31562 15.5313 5.175C15.5145 5.14651 15.4908 5.12269 15.4624 5.10576C15.434 5.08883 15.4018 5.07933 15.3688 5.07812C15.2867 5.10004 15.2163 5.15263 15.1719 5.22501C15.1156 5.37501 15.2563 5.4125 15.3625 5.4875Z" fill="white"/>
|
||||
<path d="M15.2469 3.10624C15.3165 3.10941 15.3835 3.13347 15.4393 3.17527C15.495 3.21707 15.5369 3.27469 15.5594 3.34062C15.602 3.39276 15.6603 3.42975 15.7256 3.44607C15.7909 3.4624 15.8598 3.45722 15.9219 3.43125C15.9933 3.36682 16.037 3.2772 16.0438 3.18124C16.0665 3.16338 16.0838 3.1396 16.0938 3.1125C16.1003 3.08869 16.102 3.06381 16.0988 3.03933C16.0955 3.01485 16.0874 2.99126 16.0749 2.96998C16.0623 2.9487 16.0457 2.93018 16.0258 2.91547C16.006 2.90076 15.9834 2.89019 15.9594 2.88438C15.945 2.86128 15.9236 2.84336 15.8983 2.83324C15.873 2.82313 15.8452 2.82133 15.8188 2.82811C15.7495 2.84297 15.6779 2.84256 15.6088 2.82691C15.5397 2.81126 15.4749 2.78075 15.4188 2.73749C15.3982 2.72234 15.3743 2.71216 15.3492 2.70776C15.324 2.70335 15.2981 2.70484 15.2736 2.71211C15.2491 2.71937 15.2266 2.73221 15.2078 2.74963C15.1891 2.76704 15.1747 2.78856 15.1656 2.81249C15.0938 2.92187 15.1313 3.09374 15.2469 3.10624Z" fill="white"/>
|
||||
<path d="M14.325 6.5875C14.2844 6.55169 14.2322 6.53192 14.1781 6.53192C14.124 6.53192 14.0718 6.55169 14.0312 6.5875C13.9928 6.63047 13.9716 6.6861 13.9716 6.74375C13.9716 6.8014 13.9928 6.85703 14.0312 6.9C14.0668 6.93455 14.1145 6.95388 14.164 6.95388C14.2136 6.95388 14.2613 6.93455 14.2969 6.9C14.3212 6.88275 14.3415 6.86043 14.3564 6.83458C14.3712 6.80872 14.3803 6.77994 14.383 6.75024C14.3857 6.72053 14.3819 6.69059 14.3719 6.6625C14.3618 6.6344 14.3458 6.60882 14.325 6.5875Z" fill="white"/>
|
||||
<path d="M17.1813 8.11563C17.1898 8.09921 17.1942 8.08098 17.1942 8.06249C17.1942 8.044 17.1898 8.02579 17.1813 8.00937C17.1624 7.99629 17.1408 7.98755 17.1181 7.98377C17.0954 7.97999 17.0722 7.98125 17.0501 7.98749C17.0219 7.98749 16.9844 8.11874 17.0094 8.14374C17.0344 8.16874 17.1407 8.14063 17.1813 8.11563Z" fill="white"/>
|
||||
<path d="M14.2969 7.67812C14.3137 7.66664 14.3274 7.65125 14.3368 7.63328C14.3463 7.61531 14.3513 7.5953 14.3513 7.57499C14.3513 7.55468 14.3463 7.53467 14.3368 7.5167C14.3274 7.49873 14.3137 7.48336 14.2969 7.47188C14.225 7.4125 14.1469 7.36874 14.0594 7.44062C14.0267 7.48754 14.0114 7.54435 14.0159 7.60135C14.0205 7.65834 14.0447 7.71198 14.0844 7.75312C14.1233 7.75948 14.1631 7.75594 14.2002 7.74283C14.2374 7.72973 14.2706 7.70747 14.2969 7.67812V7.67812Z" fill="white"/>
|
||||
<path d="M14.0187 8.96563C14.047 8.92594 14.0622 8.87843 14.0622 8.8297C14.0622 8.78097 14.047 8.73346 14.0187 8.69376C13.9469 8.61876 13.7906 8.69376 13.7062 8.72813C13.6219 8.76251 13.5781 8.99064 13.6469 9.06564C13.7156 9.14064 13.9562 9.02813 14.0187 8.96563Z" fill="white"/>
|
||||
<path d="M16.6156 5.6875C16.5406 5.62812 16.4844 5.66874 16.4312 5.71874C16.4125 5.73095 16.3972 5.74764 16.3866 5.76728C16.3759 5.78692 16.3704 5.80892 16.3704 5.83125C16.3704 5.85359 16.3759 5.87556 16.3866 5.89521C16.3972 5.91485 16.4125 5.93153 16.4312 5.94375C16.4906 5.975 16.5625 6.01563 16.6188 5.98438C16.651 5.94145 16.6682 5.88909 16.6676 5.83541C16.667 5.78173 16.6488 5.72973 16.6156 5.6875V5.6875Z" fill="white"/>
|
||||
<path d="M17.1438 2.87501C17.1695 2.88583 17.1972 2.89141 17.2251 2.89141C17.253 2.89141 17.2806 2.88583 17.3063 2.87501C17.4126 2.82188 17.4626 3.09688 17.6188 3.03126C17.7751 2.96563 17.9063 3.11563 18.0813 3.03126C18.2563 2.94688 18.3657 2.71876 18.2282 2.60626C18.0964 2.50942 17.9353 2.46087 17.7719 2.46876C17.7369 2.46705 17.7021 2.47576 17.6719 2.49376C17.7033 2.43704 17.7162 2.37197 17.7089 2.30759C17.7016 2.2432 17.6745 2.18268 17.6313 2.13438C17.5282 2.06251 17.3563 2.13439 17.2563 2.27814C17.2106 2.25608 17.1591 2.24902 17.1091 2.258C17.0592 2.26698 17.0133 2.29153 16.9782 2.32813C16.9284 2.38527 16.8987 2.45715 16.8936 2.53277C16.8885 2.60839 16.9084 2.6836 16.9501 2.74689V2.74689C16.8744 2.73853 16.798 2.75419 16.7318 2.79167C16.6655 2.82915 16.6127 2.88653 16.5809 2.95569C16.5491 3.02485 16.5399 3.10228 16.5545 3.17698C16.5692 3.25168 16.607 3.31988 16.6626 3.37189C16.6916 3.40118 16.7262 3.42442 16.7642 3.44029C16.8023 3.45615 16.8432 3.46432 16.8844 3.46432C16.9257 3.46432 16.9665 3.45615 17.0046 3.44029C17.0427 3.42442 17.0773 3.40118 17.1063 3.37189C17.154 3.29898 17.1825 3.21517 17.1891 3.12828C17.1956 3.04139 17.18 2.95425 17.1438 2.87501V2.87501Z" fill="white"/>
|
||||
<path d="M16.3562 2.47499L16.575 2.26875C16.547 2.2095 16.5135 2.15301 16.475 2.10001C16.4526 2.06984 16.4225 2.04631 16.3878 2.03199C16.3531 2.01768 16.3152 2.01311 16.2781 2.01876C16.2777 1.94413 16.2486 1.87251 16.1968 1.81875L16.1687 1.78751C16.1771 1.76225 16.1784 1.73513 16.1723 1.70919C16.1663 1.68326 16.1531 1.65952 16.1343 1.64062C15.9468 1.68125 15.7625 1.72499 15.575 1.77187C15.575 1.77187 15.575 1.77187 15.5968 1.77187C15.7656 1.82499 15.7468 1.97188 15.775 2.10001C15.7778 2.13503 15.7896 2.16873 15.8092 2.19791C15.8288 2.2271 15.8555 2.25078 15.8868 2.26675C15.9181 2.28272 15.953 2.29043 15.9881 2.28914C16.0232 2.28785 16.0574 2.27761 16.0875 2.25939L16.1281 2.24062C16.1331 2.27398 16.1471 2.30533 16.1687 2.33126C16.2235 2.38851 16.2867 2.43698 16.3562 2.47499Z" fill="white"/>
|
||||
<path d="M17.1969 5.10312C17.275 5.10312 17.3062 5.01563 17.2687 4.93438C17.2509 4.89566 17.2254 4.86099 17.1937 4.83251C17.162 4.80403 17.1248 4.78232 17.0844 4.76875C17.0703 4.76446 17.0554 4.76343 17.0409 4.76573C17.0264 4.76804 17.0126 4.77361 17.0005 4.78204C16.9885 4.79047 16.9785 4.80153 16.9714 4.81439C16.9643 4.82724 16.9601 4.84157 16.9594 4.85625C16.9637 4.88641 16.9743 4.91532 16.9904 4.94115C17.0065 4.96698 17.0279 4.98915 17.0531 5.00625C17.0969 5.0625 17.1312 5.09687 17.1969 5.10312Z" fill="white"/>
|
||||
<path d="M16.5906 7.9875C16.5991 7.9799 16.6051 7.96992 16.6077 7.95885C16.6104 7.94778 16.6097 7.93615 16.6056 7.92551C16.6016 7.91487 16.5944 7.90571 16.585 7.89925C16.5756 7.89279 16.5645 7.88933 16.5531 7.88933C16.5417 7.88933 16.5306 7.89279 16.5212 7.89925C16.5118 7.90571 16.5046 7.91487 16.5005 7.92551C16.4965 7.93615 16.4957 7.94778 16.4984 7.95885C16.5011 7.96992 16.5071 7.9799 16.5156 7.9875C16.5281 8.0125 16.5781 8 16.5906 7.9875Z" fill="white"/>
|
||||
<path d="M16.5032 7.5875C16.5969 7.49375 16.6157 7.3875 16.5469 7.32812C16.4936 7.29454 16.4318 7.27672 16.3688 7.27672C16.3058 7.27672 16.244 7.29454 16.1907 7.32812C16.1732 7.34884 16.16 7.3728 16.1519 7.39862C16.1437 7.42444 16.1406 7.45162 16.143 7.47861C16.1453 7.5056 16.1529 7.53187 16.1654 7.55592C16.1779 7.57996 16.1949 7.6013 16.2157 7.61874C16.2359 7.63704 16.2599 7.65085 16.2858 7.65926C16.3118 7.66766 16.3393 7.67048 16.3664 7.66753C16.3936 7.66458 16.4198 7.65592 16.4433 7.64213C16.4669 7.62833 16.4873 7.60973 16.5032 7.5875V7.5875Z" fill="white"/>
|
||||
<path d="M26.7563 34.8656H12.3C12.3 34.8656 16.0719 30.6156 16.0719 22.7562C16.0719 14.8969 22.9844 14.9219 22.9844 22.7562C22.9844 30.5906 26.7563 34.8656 26.7563 34.8656Z" fill="#7DE2D1"/>
|
||||
<path d="M18.0656 22.2281C17.875 22.25 17.8687 22.0281 17.8343 22.0281C17.6093 22.0594 17.5812 21.7844 17.75 21.6719C17.9187 21.5594 17.8937 21.6844 17.9187 21.6375C17.9437 21.5906 17.8937 21.4938 17.9187 21.4125C17.9314 21.382 17.9508 21.3547 17.9755 21.3326C18.0002 21.3105 18.0294 21.2942 18.0612 21.285C18.093 21.2757 18.1264 21.2736 18.159 21.2789C18.1917 21.2842 18.2228 21.2968 18.25 21.3156C18.302 21.3419 18.3427 21.3862 18.3645 21.4402C18.3863 21.4942 18.3878 21.5543 18.3687 21.6094C18.3718 21.6196 18.3718 21.6304 18.3687 21.6406C18.41 21.6019 18.4626 21.5774 18.5188 21.5706C18.5728 21.5641 18.6275 21.5744 18.6754 21.6C18.6547 21.588 18.6364 21.5721 18.6218 21.5531C18.6041 21.5363 18.5904 21.5157 18.5818 21.4929C18.5731 21.4701 18.5697 21.4456 18.5718 21.4213C18.5739 21.397 18.5815 21.3734 18.5939 21.3524C18.6064 21.3314 18.6234 21.3135 18.6437 21.3C18.6648 21.2836 18.6879 21.2699 18.7125 21.2594C18.6698 21.2751 18.6239 21.2796 18.579 21.2725C18.5342 21.2654 18.4919 21.2469 18.4562 21.2188C18.4299 21.1939 18.4087 21.1642 18.3937 21.1312C18.3875 21.1635 18.3697 21.1924 18.3437 21.2125C18.33 21.2243 18.3138 21.2327 18.2963 21.2371C18.2788 21.2415 18.2605 21.2418 18.2429 21.2378C18.2252 21.2339 18.2088 21.2258 18.1948 21.2144C18.1809 21.2029 18.1698 21.1884 18.1625 21.1719C18.1 21.125 18.0656 21.0875 17.9718 21.0312C17.8781 20.975 17.9093 20.8969 17.9343 20.825V20.8031C17.9003 20.7675 17.8738 20.7253 17.8566 20.6791C17.8394 20.6328 17.8319 20.5836 17.8343 20.5344C17.8514 20.4353 17.9049 20.3461 17.9843 20.2844C18.0518 20.236 18.1326 20.21 18.2156 20.21C18.2985 20.21 18.3794 20.236 18.4468 20.2844C18.5593 20.3969 18.5499 20.6344 18.5593 20.6344H18.6312C18.6353 20.582 18.6525 20.5315 18.6812 20.4875C18.7125 20.4375 18.8125 20.4594 18.85 20.5125C18.859 20.5227 18.8656 20.5348 18.8692 20.548C18.8727 20.5611 18.8731 20.575 18.8704 20.5883C18.8677 20.6017 18.8619 20.6142 18.8534 20.6249C18.845 20.6356 18.8342 20.6442 18.8218 20.65H18.8281C18.8765 20.7261 18.9021 20.8145 18.9021 20.9047C18.9021 20.9949 18.8765 21.0832 18.8281 21.1594C18.7955 21.191 18.7573 21.2165 18.7156 21.2344C18.7548 21.2173 18.7982 21.2127 18.8401 21.2211C18.882 21.2295 18.9203 21.2505 18.9499 21.2813C18.9858 21.3279 19.002 21.3867 18.9949 21.4452C18.9879 21.5036 18.9583 21.5569 18.9125 21.5938C18.8776 21.615 18.8376 21.6263 18.7968 21.6263C18.756 21.6263 18.716 21.615 18.6812 21.5938C18.7009 21.6081 18.7166 21.6273 18.7266 21.6494C18.7367 21.6716 18.7408 21.696 18.7386 21.7203C18.7364 21.7445 18.728 21.7678 18.7141 21.7878C18.7002 21.8078 18.6813 21.8239 18.6593 21.8344C18.5812 21.8812 18.575 21.8563 18.5812 21.9375C18.5875 22.0188 18.5031 22.1406 18.4031 22.0844C18.3504 22.0499 18.3116 21.9979 18.2937 21.9375C18.3281 22.1 18.2562 22.2063 18.0656 22.2281Z" fill="#42D4C6"/>
|
||||
<path d="M18.7625 20.2813C18.7982 20.3275 18.8487 20.3602 18.9055 20.3738C18.9624 20.3875 19.0221 20.3813 19.075 20.3563C19.1037 20.3288 19.1265 20.2958 19.1421 20.2593C19.1576 20.2228 19.1656 20.1835 19.1656 20.1438C19.1656 20.1438 19.1875 20.1438 19.1937 20.125C19.2071 20.113 19.2178 20.0983 19.2251 20.0819C19.2324 20.0654 19.2362 20.0477 19.2362 20.0297C19.2362 20.0117 19.2324 19.9939 19.2251 19.9775C19.2178 19.9611 19.2071 19.9464 19.1937 19.9344C19.1728 19.9125 19.1454 19.8979 19.1156 19.8929C19.0857 19.8878 19.0551 19.8925 19.0281 19.9063H18.9875C18.9937 19.882 18.9941 19.8566 18.9887 19.8322C18.9832 19.8078 18.9721 19.785 18.9562 19.7656C18.9453 19.7515 18.9316 19.7398 18.916 19.731C18.9004 19.7223 18.8833 19.7167 18.8655 19.7147C18.8478 19.7126 18.8298 19.7141 18.8126 19.7191C18.7955 19.7241 18.7795 19.7325 18.7656 19.7437C18.739 19.7721 18.7242 19.8096 18.7242 19.8484C18.7242 19.8873 18.739 19.9248 18.7656 19.9531L18.7844 19.9719C18.7469 20.0137 18.7244 20.0668 18.7205 20.1228C18.7165 20.1788 18.7313 20.2346 18.7625 20.2813V20.2813Z" fill="#42D4C6"/>
|
||||
<path d="M17.3407 21.7125C17.3063 21.6781 17.2188 21.7125 17.1875 21.7656C17.1563 21.8187 17.2375 21.9469 17.3125 21.9219C17.3875 21.8969 17.4032 21.7844 17.3407 21.7125Z" fill="#42D4C6"/>
|
||||
<path d="M21.0906 22.15C21.1069 22.1301 21.1186 22.107 21.1251 22.0822C21.1316 22.0574 21.1326 22.0315 21.1281 22.0062C21.0875 21.8969 20.9906 21.9125 20.8938 21.9344C20.8656 22.0156 20.8344 22.1031 20.9125 22.1687C20.9252 22.1798 20.94 22.1882 20.956 22.1933C20.972 22.1984 20.989 22.2001 21.0057 22.1984C21.0224 22.1966 21.0386 22.1914 21.0532 22.1831C21.0678 22.1747 21.0806 22.1635 21.0906 22.15V22.15Z" fill="#42D4C6"/>
|
||||
<path d="M21.4344 23.5375C21.3836 23.517 21.3269 23.5165 21.2759 23.5363C21.2248 23.556 21.1831 23.5944 21.1594 23.6437C21.1144 23.6155 21.0608 23.604 21.0082 23.6115C20.9556 23.6189 20.9073 23.6447 20.8719 23.6844C20.8344 23.7437 20.9031 23.9125 20.9812 23.9656C20.9731 23.9829 20.9637 23.9996 20.9531 24.0156C20.9261 24.05 20.9082 24.0907 20.9011 24.1338C20.894 24.177 20.8979 24.2213 20.9125 24.2625C20.9065 24.2926 20.9074 24.3236 20.915 24.3534C20.9225 24.3831 20.9366 24.4108 20.9562 24.4344C20.9917 24.4494 21.0309 24.4529 21.0685 24.4445C21.106 24.4361 21.14 24.4162 21.1656 24.3875C21.1866 24.3607 21.1963 24.3269 21.1928 24.2931C21.1893 24.2593 21.1728 24.2282 21.1469 24.2062C21.1875 24.1594 21.2437 24.1687 21.2937 24.15C21.3517 24.1216 21.4028 24.0811 21.4437 24.0312C21.468 23.9968 21.487 23.9588 21.5 23.9187C21.5 23.8812 21.525 23.8375 21.5344 23.7969C21.5562 23.6625 21.5344 23.5781 21.4344 23.5375Z" fill="#42D4C6"/>
|
||||
<path d="M17.1281 22.0563C17.1385 22.0434 17.1441 22.0274 17.1441 22.0109C17.1441 21.9944 17.1385 21.9784 17.1281 21.9656C17.1062 21.9375 17.0562 21.95 17.0374 21.9656C17.0187 21.9813 16.9843 22.05 17.0062 22.075C17.0281 22.1 17.1124 22.075 17.1281 22.0563Z" fill="#42D4C6"/>
|
||||
<path d="M21.2999 25.1531C21.2662 25.1536 21.2338 25.1661 21.2085 25.1885C21.1833 25.2109 21.1669 25.2416 21.1624 25.275C21.1533 25.3003 21.1543 25.3282 21.1654 25.3527C21.1765 25.3772 21.1968 25.3964 21.2218 25.4062C21.3187 25.4531 21.3781 25.4062 21.4468 25.3281C21.4125 25.2437 21.4031 25.15 21.2999 25.1531Z" fill="#42D4C6"/>
|
||||
<path d="M20.1 20.375C20.0718 20.2406 19.9875 20.2031 19.8125 20.225C19.7593 20.1693 19.7006 20.1191 19.6375 20.075C19.6197 20.0646 19.6 20.0578 19.5796 20.0551C19.5592 20.0525 19.5384 20.054 19.5186 20.0595C19.4988 20.065 19.4802 20.0745 19.4641 20.0874C19.4481 20.1003 19.4347 20.1162 19.425 20.1344C19.3843 20.225 19.3562 20.325 19.3187 20.425C19.1843 20.4563 19.1781 20.4656 19.2062 20.6188C19.25 20.6625 19.3625 20.6188 19.35 20.725C19.2895 20.739 19.23 20.7567 19.1718 20.7781C19.1409 20.795 19.1155 20.8206 19.0989 20.8517C19.0822 20.8827 19.075 20.918 19.0781 20.9531C19.0781 21.0281 19.1437 21.0438 19.1906 21.0719C19.2353 21.0925 19.2853 21.099 19.3338 21.0906C19.3823 21.0822 19.4272 21.0594 19.4625 21.025L19.4406 20.8063L19.5187 20.8406C19.6312 20.8906 19.6406 20.95 19.5187 21.0188C19.4709 21.0464 19.435 21.0906 19.4177 21.1431C19.4004 21.1955 19.403 21.2525 19.425 21.3031C19.4363 21.3544 19.4648 21.4003 19.5057 21.4332C19.5466 21.4662 19.5975 21.4842 19.65 21.4844C19.6758 21.4893 19.7024 21.4887 19.7279 21.4827C19.7535 21.4767 19.7776 21.4653 19.7985 21.4494C19.8194 21.4335 19.8367 21.4134 19.8494 21.3903C19.862 21.3673 19.8697 21.3418 19.8718 21.3156C19.8905 21.2386 19.8905 21.1583 19.8718 21.0813C19.8718 21.0188 19.8468 20.9688 19.8937 20.9219C19.9065 20.91 19.9164 20.8954 19.9229 20.8792C19.9294 20.863 19.9322 20.8456 19.9312 20.8281C19.9875 20.8531 20.0687 20.875 20.1 20.85C20.1312 20.825 20.0718 20.6906 20.05 20.6844L19.9937 20.6688C20.0413 20.6384 20.0776 20.5931 20.0968 20.5399C20.116 20.4868 20.1171 20.4288 20.1 20.375V20.375Z" fill="#42D4C6"/>
|
||||
<path d="M20.9593 22.9406C20.9457 22.9503 20.9345 22.9629 20.9264 22.9775C20.9183 22.9921 20.9135 23.0083 20.9124 23.025L20.8968 23.0094C20.8343 22.9656 20.7749 22.975 20.7499 23.0437C20.7249 23.1125 20.6749 23.1906 20.7499 23.2375C20.8249 23.2844 20.8937 23.1969 20.9343 23.1625C20.9624 23.2094 21.1124 23.2 21.1562 23.1031C21.1631 23.0812 21.165 23.0581 21.1618 23.0354C21.1585 23.0127 21.1502 22.9909 21.1374 22.9719C21.1179 22.9442 21.0882 22.9253 21.0548 22.9195C21.0214 22.9136 20.9871 22.9212 20.9593 22.9406V22.9406Z" fill="#42D4C6"/>
|
||||
<path d="M20.4468 22.0781C20.4249 22.0219 20.3874 21.9438 20.3374 21.925C20.2852 21.9112 20.2303 21.9112 20.1781 21.925C20.1689 21.9043 20.1536 21.8869 20.1343 21.875C20.1144 21.86 20.0905 21.8513 20.0656 21.85C20.0526 21.8352 20.0358 21.8243 20.0172 21.8182C19.9985 21.8122 19.9785 21.8113 19.9593 21.8156C19.8499 21.95 19.8624 21.9906 20.0062 22.0219C20.0062 22.0219 20.0062 22.0219 20.0312 22.0219C20.0576 22.0741 20.0879 22.1242 20.1218 22.1719L20.0906 22.1937C19.9906 22.3031 19.9937 22.3719 20.1093 22.4656L20.1281 22.4812C19.8906 22.45 19.7937 22.5906 19.8437 22.8844C19.8251 22.8987 19.8052 22.9112 19.7843 22.9219C19.7651 22.9288 19.7474 22.9395 19.7323 22.9534C19.7173 22.9673 19.7052 22.9841 19.6968 23.0027C19.6883 23.0214 19.6837 23.0415 19.6832 23.062C19.6826 23.0825 19.6862 23.1028 19.6937 23.1219C19.7124 23.2031 19.7718 23.2375 19.8562 23.2594C20.0656 23.3094 20.1531 23.2594 20.1937 23.075C20.2343 22.8906 20.2656 22.7906 20.2999 22.6531H20.3374L20.3656 22.6781C20.2468 22.8437 20.2531 22.8687 20.4156 22.9375C20.5062 22.8844 20.5124 22.8094 20.4624 22.7156L20.5156 22.6625C20.6093 22.6625 20.6187 22.5906 20.6062 22.4375C20.5783 22.423 20.549 22.4115 20.5187 22.4031C20.4678 22.3646 20.4108 22.335 20.3499 22.3156C20.3485 22.299 20.3485 22.2822 20.3499 22.2656C20.3516 22.2584 20.3516 22.2509 20.3499 22.2437C20.4437 22.2719 20.4874 22.1781 20.4468 22.0781Z" fill="#42D4C6"/>
|
||||
<path d="M21.5375 25C21.5474 25.0281 21.566 25.0522 21.5907 25.0688C21.6688 25.1156 21.775 25.0688 21.8469 24.9344C21.8605 24.8981 21.8614 24.8583 21.8495 24.8214C21.8375 24.7845 21.8135 24.7528 21.7813 24.7313C21.7261 24.7092 21.6646 24.7092 21.6094 24.7313C21.5683 24.7122 21.5235 24.7024 21.4782 24.7024C21.4328 24.7024 21.3881 24.7122 21.3469 24.7313C21.2844 24.775 21.2844 24.85 21.3469 24.9375C21.4094 25.025 21.4782 25.0312 21.5375 25Z" fill="#42D4C6"/>
|
||||
<path d="M17.2906 22.3406C17.3184 22.3221 17.338 22.2935 17.345 22.2608C17.352 22.2281 17.3459 22.1939 17.3281 22.1656C17.2975 22.141 17.2595 22.1276 17.2203 22.1276C17.1811 22.1276 17.143 22.141 17.1125 22.1656C17.0892 22.19 17.0762 22.2225 17.0762 22.2563C17.0762 22.29 17.0892 22.3225 17.1125 22.3469C17.1378 22.3678 17.1699 22.3787 17.2027 22.3775C17.2355 22.3764 17.2668 22.3632 17.2906 22.3406V22.3406Z" fill="#42D4C6"/>
|
||||
<path d="M16.4469 19.9125C16.4469 19.9594 16.4187 20.0031 16.4062 20.05C16.4229 20.0316 16.4352 20.0097 16.4422 19.9859C16.4492 19.9621 16.4508 19.937 16.4469 19.9125V19.9125Z" fill="#42D4C6"/>
|
||||
<path d="M18.0969 19.9625C18.1134 19.9781 18.1332 19.9899 18.1548 19.9969C18.1764 20.0039 18.1993 20.0061 18.2219 20.0031C18.2884 19.9984 18.3553 19.9984 18.4218 20.0031H18.4469L18.475 20.0406C18.5042 20.0626 18.5406 20.0728 18.577 20.0693C18.6135 20.0659 18.6473 20.049 18.6719 20.0219C18.6848 20.0096 18.6951 19.9948 18.7022 19.9784C18.7092 19.9621 18.7129 19.9444 18.7129 19.9266C18.7129 19.9087 18.7092 19.8911 18.7022 19.8747C18.6951 19.8583 18.6848 19.8435 18.6719 19.8313C18.6545 19.8137 18.633 19.8008 18.6094 19.7938C18.607 19.7592 18.5913 19.7269 18.5657 19.7037C18.5401 19.6804 18.5065 19.6679 18.4719 19.6687C18.4066 19.6701 18.3416 19.6785 18.2781 19.6938L18.2281 19.5969C18.2159 19.5693 18.1949 19.5465 18.1682 19.5324C18.1416 19.5182 18.1109 19.5134 18.0812 19.5188C17.9969 19.5188 17.9594 19.5937 17.9312 19.6687C17.9219 19.6871 17.917 19.7075 17.917 19.7281C17.917 19.7488 17.9219 19.7691 17.9312 19.7875C17.8937 19.7751 17.8532 19.7751 17.8156 19.7875C17.8093 19.7471 17.792 19.7093 17.7656 19.6781C17.732 19.6422 17.6891 19.6162 17.6417 19.603C17.5943 19.5898 17.5442 19.5898 17.4969 19.6031C17.5081 19.577 17.5139 19.5488 17.5139 19.5203C17.5139 19.4918 17.5081 19.4637 17.4969 19.4375C17.4764 19.378 17.436 19.3273 17.3824 19.2943C17.3289 19.2612 17.2655 19.2478 17.2031 19.2562C17.2077 19.2001 17.1934 19.144 17.1625 19.0969C17.0781 18.9594 16.8687 18.9562 16.825 19.0625C16.7812 19.1687 16.825 19.225 16.7906 19.2406C16.7562 19.2562 16.7312 19.2406 16.6969 19.2656L16.6469 19.3969C16.6903 19.4648 16.7492 19.5216 16.8187 19.5625V19.5625C16.8142 19.5856 16.815 19.6093 16.8209 19.632C16.8269 19.6548 16.8379 19.6759 16.8531 19.6938C16.8785 19.7208 16.913 19.7375 16.95 19.7406C16.9408 19.7596 16.9361 19.7805 16.9361 19.8016C16.9361 19.8227 16.9408 19.8435 16.95 19.8625C17.0031 19.9312 17.1156 20.0906 17.2625 20.0625C17.4094 20.0344 17.3531 19.9781 17.3594 19.9187C17.3746 19.9489 17.3947 19.9763 17.4187 20C17.4454 20.0286 17.4772 20.0519 17.5125 20.0688C17.4841 20.0877 17.464 20.1168 17.4562 20.15C17.455 20.1742 17.4585 20.1985 17.4666 20.2213C17.4747 20.2442 17.4873 20.2652 17.5035 20.2832C17.5198 20.3012 17.5394 20.3158 17.5613 20.3262C17.5833 20.3366 17.607 20.3426 17.6312 20.3438C17.6753 20.3438 17.7186 20.3315 17.7561 20.3083C17.7937 20.2851 17.824 20.2519 17.8437 20.2125C17.855 20.1746 17.8538 20.1341 17.8403 20.097C17.8268 20.0599 17.8017 20.0281 17.7687 20.0063V20.0063C17.8016 20.0373 17.8454 20.0541 17.8906 20.0531C17.9125 20.0491 17.9332 20.0404 17.9512 20.0274C17.9693 20.0144 17.9842 19.9976 17.995 19.9782C18.0057 19.9588 18.0121 19.9372 18.0135 19.915C18.0149 19.8928 18.0113 19.8706 18.0031 19.85C18.0405 19.8819 18.0722 19.9199 18.0969 19.9625V19.9625Z" fill="#42D4C6"/>
|
||||
<path d="M17.0844 20.2344C17.062 20.2629 17.0514 20.2989 17.0549 20.335C17.0583 20.3711 17.0757 20.4045 17.1032 20.4281C17.1274 20.4505 17.1592 20.463 17.1922 20.463C17.2252 20.463 17.257 20.4505 17.2813 20.4281C17.2951 20.4164 17.3062 20.4018 17.3139 20.3853C17.3215 20.3689 17.3254 20.351 17.3254 20.3328C17.3254 20.3147 17.3215 20.2968 17.3139 20.2803C17.3062 20.2638 17.2951 20.2492 17.2813 20.2375C17.2547 20.2127 17.2198 20.1986 17.1834 20.1981C17.1471 20.1975 17.1118 20.2104 17.0844 20.2344V20.2344Z" fill="#42D4C6"/>
|
||||
<path d="M18.1188 18.0875C18.072 18.0695 18.0239 18.0549 17.975 18.0437C17.9298 18.0461 17.8858 18.0593 17.8466 18.0821C17.8075 18.1049 17.7744 18.1368 17.7501 18.175C17.7282 18.2469 17.7844 18.3375 17.8844 18.3875L17.9844 18.4313C17.9759 18.45 17.9728 18.4709 17.9755 18.4913C17.9783 18.5118 17.9868 18.5311 18.0001 18.5469C18.0062 18.592 18.0234 18.6349 18.0501 18.6719C18.0359 18.6872 18.0233 18.704 18.0125 18.7219C17.997 18.7449 17.9893 18.7723 17.9907 18.8C17.9712 18.8038 17.9529 18.8123 17.9375 18.825C17.9238 18.8343 17.9122 18.8464 17.9033 18.8604C17.8943 18.8744 17.8884 18.8901 17.8858 18.9064C17.8831 18.9228 17.8839 18.9396 17.8879 18.9557C17.892 18.9718 17.8993 18.9868 17.9094 19C17.918 19.0141 17.9293 19.0263 17.9428 19.0358C17.9563 19.0453 17.9716 19.0518 17.9878 19.0551C18.004 19.0583 18.0206 19.0581 18.0367 19.0546C18.0528 19.051 18.068 19.0441 18.0813 19.0344V19.0187C18.1451 19.0364 18.2133 19.0287 18.2715 18.9973C18.3298 18.9658 18.3736 18.9131 18.3938 18.85C18.4134 18.781 18.4055 18.7071 18.3719 18.6438L18.4001 18.6219C18.4282 18.5984 18.4493 18.5676 18.4609 18.5328C18.4725 18.498 18.4742 18.4607 18.4657 18.425C18.4998 18.4433 18.5379 18.4529 18.5766 18.4529C18.6153 18.4529 18.6534 18.4433 18.6876 18.425C18.7042 18.3902 18.7103 18.3513 18.7053 18.313C18.7004 18.2748 18.6844 18.2388 18.6594 18.2094C18.6429 18.1965 18.6226 18.1894 18.6016 18.1894C18.5807 18.1894 18.5603 18.1965 18.5438 18.2094C18.5482 18.1941 18.5482 18.1778 18.5438 18.1625C18.5364 18.1327 18.5183 18.1067 18.4929 18.0894C18.4676 18.0721 18.4367 18.0648 18.4063 18.0688C18.2938 18.0688 18.2938 18.1719 18.2875 18.2562L18.1438 18.2844C18.1376 18.2063 18.1188 18.1469 18.1188 18.0875ZM18.4782 18.3031C18.4675 18.3192 18.46 18.3373 18.4563 18.3562V18.325L18.4782 18.3031Z" fill="#42D4C6"/>
|
||||
<path d="M18.4062 17.7312C18.4448 17.7606 18.492 17.7766 18.5406 17.7766C18.5891 17.7766 18.6363 17.7606 18.6749 17.7312C18.6872 17.7198 18.6969 17.706 18.7035 17.6907C18.7102 17.6754 18.7136 17.6589 18.7136 17.6422C18.7136 17.6255 18.7102 17.609 18.7035 17.5936C18.6969 17.5783 18.6872 17.5645 18.6749 17.5531C18.6448 17.5193 18.6034 17.4978 18.5584 17.4926C18.5135 17.4874 18.4682 17.499 18.4312 17.525C18.4223 17.5318 18.4149 17.5403 18.4093 17.55C18.3624 17.4781 18.3062 17.4406 18.2624 17.4625C18.2308 17.4891 18.2068 17.5237 18.1931 17.5628C18.1793 17.6018 18.1763 17.6438 18.1843 17.6844C18.212 17.7141 18.2481 17.7346 18.2878 17.743C18.3275 17.7514 18.3689 17.7473 18.4062 17.7312V17.7312Z" fill="#42D4C6"/>
|
||||
<path d="M16.7938 20.2625C16.8118 20.2369 16.8244 20.2079 16.8308 20.1773C16.8372 20.1467 16.8374 20.1151 16.8313 20.0844C16.8405 20.0716 16.8454 20.0563 16.8454 20.0406C16.8454 20.0249 16.8405 20.0096 16.8313 19.9969C16.8172 19.9806 16.7988 19.9686 16.7782 19.9625L16.7594 19.9313C16.7442 19.915 16.7258 19.902 16.7054 19.8931C16.685 19.8843 16.6629 19.8797 16.6407 19.8797C16.6184 19.8797 16.5964 19.8843 16.5759 19.8931C16.5555 19.902 16.5371 19.915 16.5219 19.9313C16.5 19.9472 16.4821 19.9681 16.4698 19.9923C16.4575 20.0164 16.451 20.0432 16.451 20.0703C16.451 20.0975 16.4575 20.1242 16.4698 20.1484C16.4821 20.1725 16.5 20.1934 16.5219 20.2094C16.5361 20.2309 16.5544 20.2495 16.5758 20.2638C16.5973 20.2782 16.6214 20.2882 16.6467 20.2931C16.672 20.2981 16.6981 20.2979 16.7233 20.2927C16.7486 20.2874 16.7726 20.2772 16.7938 20.2625V20.2625Z" fill="#42D4C6"/>
|
||||
<path d="M16.2 21.0687C16.2422 21.0258 16.2696 20.9705 16.278 20.9109C16.2864 20.8512 16.2755 20.7905 16.2468 20.7375C16.2281 20.8437 16.2125 20.9594 16.1937 21.0719L16.2 21.0687Z" fill="#42D4C6"/>
|
||||
<path d="M17.025 20.8063C17.081 20.7639 17.1184 20.7016 17.1295 20.6323C17.1405 20.563 17.1244 20.492 17.0843 20.4344C17.0397 20.3895 16.9802 20.3622 16.917 20.3577C16.8538 20.3532 16.7911 20.3716 16.7405 20.4097C16.6899 20.4478 16.6547 20.5029 16.6415 20.5649C16.6283 20.6268 16.638 20.6915 16.6687 20.7469C16.7101 20.7993 16.7695 20.8344 16.8354 20.8453C16.9012 20.8563 16.9688 20.8424 17.025 20.8063V20.8063Z" fill="#42D4C6"/>
|
||||
<path d="M16.2062 21.8C16.2377 21.7649 16.2582 21.7214 16.2655 21.6748C16.2727 21.6282 16.2662 21.5805 16.2469 21.5375C16.2177 21.5109 16.1801 21.4955 16.1406 21.4938C16.1406 21.6031 16.1187 21.7125 16.1094 21.825C16.1437 21.8295 16.1784 21.8205 16.2062 21.8V21.8Z" fill="#42D4C6"/>
|
||||
<path d="M17.1 21.0969C17.1158 21.0569 17.1252 21.0147 17.1281 20.9719C17.1153 20.9582 17.0998 20.9474 17.0826 20.94C17.0654 20.9326 17.0468 20.9287 17.0281 20.9287C17.0094 20.9287 16.9908 20.9326 16.9736 20.94C16.9565 20.9474 16.941 20.9582 16.9281 20.9719C16.8875 21.0219 16.9281 21.0594 16.95 21.0969C16.9583 21.1091 16.9695 21.1191 16.9825 21.1261C16.9956 21.133 17.0102 21.1366 17.025 21.1366C17.0398 21.1366 17.0543 21.133 17.0674 21.1261C17.0805 21.1191 17.0917 21.1091 17.1 21.0969Z" fill="#42D4C6"/>
|
||||
<path d="M17.4343 19.0156C17.394 19.0414 17.3648 19.0815 17.3527 19.1278C17.3405 19.1741 17.3462 19.2233 17.3687 19.2656C17.4107 19.3027 17.4626 19.3269 17.518 19.3352C17.5735 19.3436 17.6301 19.3357 17.6812 19.3125C17.6825 19.3471 17.6957 19.3803 17.7187 19.4063C17.7292 19.4214 17.7427 19.4342 17.7584 19.4438C17.7742 19.4534 17.7917 19.4596 17.81 19.462C17.8283 19.4643 17.8469 19.4628 17.8645 19.4575C17.8822 19.4522 17.8985 19.4433 17.9125 19.4312C17.9375 19.4046 17.9515 19.3694 17.9515 19.3328C17.9515 19.2962 17.9375 19.261 17.9125 19.2344C17.892 19.215 17.8665 19.2018 17.8388 19.1963C17.8112 19.1907 17.7826 19.1931 17.7562 19.2031C17.7594 19.1721 17.7561 19.1408 17.7464 19.1112C17.7367 19.0816 17.7209 19.0543 17.7 19.0312C17.685 19.0106 17.6657 18.9936 17.6434 18.9813C17.621 18.9691 17.5963 18.962 17.5708 18.9605C17.5454 18.959 17.52 18.9632 17.4964 18.9727C17.4728 18.9822 17.4516 18.9969 17.4343 19.0156V19.0156Z" fill="#42D4C6"/>
|
||||
<path d="M23.075 25.5687C23.028 25.535 22.9704 25.5196 22.9128 25.5254C22.8553 25.5311 22.8018 25.5576 22.7625 25.6C22.7156 25.6719 22.7625 25.7781 22.8656 25.8594C22.8995 25.879 22.9394 25.8857 22.9779 25.8782C23.0164 25.8708 23.0508 25.8496 23.075 25.8187C23.1009 25.7822 23.1149 25.7386 23.1149 25.6938C23.1149 25.649 23.1009 25.6053 23.075 25.5687V25.5687Z" fill="#42D4C6"/>
|
||||
<path d="M22.8406 25.375C22.834 25.3829 22.8303 25.3929 22.8303 25.4031C22.8303 25.4134 22.834 25.4234 22.8406 25.4313C22.8406 25.4313 22.8812 25.4313 22.8906 25.4313C22.895 25.4243 22.8974 25.4161 22.8974 25.4078C22.8974 25.3995 22.895 25.3914 22.8906 25.3844C22.8843 25.3778 22.876 25.3734 22.8671 25.3717C22.8581 25.37 22.8488 25.3712 22.8406 25.375V25.375Z" fill="#42D4C6"/>
|
||||
<path d="M20.7813 26C20.8465 25.9907 20.9056 25.9565 20.9464 25.9047C20.9871 25.853 21.0063 25.7875 21 25.7219C20.9891 25.662 20.9608 25.6066 20.9188 25.5625C20.915 25.5053 20.8916 25.4511 20.8526 25.4091C20.8135 25.3671 20.7613 25.3398 20.7045 25.3317C20.6477 25.3236 20.5899 25.3354 20.5407 25.3649C20.4916 25.3944 20.454 25.4399 20.4344 25.4938C20.4032 25.5719 20.4782 25.6656 20.5813 25.725V25.7594C20.5811 25.8166 20.601 25.872 20.6376 25.916C20.6741 25.96 20.725 25.9897 20.7813 26V26Z" fill="#42D4C6"/>
|
||||
<path d="M19.1906 22.8156C19.2156 22.8315 19.2431 22.8431 19.2719 22.85C19.3448 22.8514 19.4166 22.8322 19.479 22.7946C19.5415 22.757 19.5921 22.7026 19.625 22.6375C19.6531 22.5344 19.5375 22.4656 19.5406 22.4344C19.5437 22.4031 19.7094 22.3438 19.7406 22.2125C19.7453 22.1463 19.7287 22.0803 19.6933 22.0241C19.6579 21.9679 19.6055 21.9244 19.5437 21.9C19.4677 21.8688 19.3823 21.8688 19.3062 21.9C19.2596 21.9223 19.2208 21.958 19.1946 22.0026C19.1684 22.0471 19.1562 22.0984 19.1594 22.15C19.1781 22.25 19.2969 22.35 19.2844 22.3875C19.2719 22.425 19.1281 22.4656 19.0937 22.5781C19.0656 22.5923 19.0443 22.617 19.0344 22.6469C19.025 22.668 19.0201 22.6909 19.0201 22.7141C19.0201 22.7372 19.025 22.7601 19.0344 22.7813C19.0519 22.8049 19.0774 22.8213 19.1061 22.8277C19.1348 22.834 19.1648 22.8297 19.1906 22.8156V22.8156Z" fill="#42D4C6"/>
|
||||
<path d="M21.6094 26.2406C21.6471 26.2357 21.6823 26.2192 21.7103 26.1935C21.7382 26.1678 21.7576 26.134 21.7656 26.0969C21.7952 26.1151 21.8293 26.1248 21.8641 26.1248C21.8988 26.1248 21.9329 26.1151 21.9625 26.0969C22 26.0552 22.0256 26.0042 22.0366 25.9492C22.0476 25.8942 22.0436 25.8373 22.025 25.7844C21.9803 25.7471 21.9231 25.7282 21.865 25.7317C21.8069 25.7352 21.7524 25.7607 21.7125 25.8031V25.8031C21.6889 25.77 21.6616 25.7396 21.6312 25.7125C21.6562 25.6719 21.6813 25.6344 21.7 25.6C21.7188 25.5656 21.7719 25.6 21.775 25.5781C21.7781 25.5563 21.8156 25.4531 21.775 25.4344C21.7544 25.4219 21.7302 25.4165 21.7062 25.4188C21.6888 25.3854 21.66 25.3594 21.6249 25.3457C21.5899 25.3319 21.5511 25.3312 21.5156 25.3438C21.4853 25.3463 21.456 25.3562 21.4303 25.3726C21.4046 25.3889 21.3833 25.4113 21.3683 25.4378C21.3532 25.4643 21.3448 25.494 21.3438 25.5244C21.3428 25.5549 21.3492 25.5851 21.3625 25.6125C21.3879 25.663 21.416 25.712 21.4469 25.7594C21.4004 25.779 21.3505 25.7897 21.3 25.7906C21.2775 25.7812 21.2533 25.7764 21.2289 25.7767C21.2045 25.777 21.1805 25.7823 21.1582 25.7922C21.1359 25.8022 21.1159 25.8166 21.0995 25.8346C21.083 25.8526 21.0704 25.8738 21.0625 25.8969C21.0462 25.9217 21.0261 25.9438 21.0031 25.9625C20.9344 26.0344 20.9219 26.1063 20.9687 26.15C21.0156 26.1938 21.1125 26.1938 21.1812 26.1C21.1812 26.1 21.1812 26.075 21.1812 26.0656C21.1812 26.0563 21.2594 26.0125 21.2937 26.0656C21.3281 26.1188 21.3125 26.1125 21.325 26.1313C21.3525 26.1795 21.3958 26.2168 21.4477 26.2367C21.4995 26.2566 21.5566 26.258 21.6094 26.2406Z" fill="#42D4C6"/>
|
||||
<path d="M19.3907 24.0687C19.3907 24.0687 19.3907 24.0937 19.4094 24.0969C19.5188 24.1469 19.4938 24.2437 19.5 24.3312C19.4993 24.3543 19.5044 24.3771 19.5147 24.3977C19.5251 24.4183 19.5405 24.4359 19.5595 24.449C19.5785 24.462 19.6004 24.4701 19.6233 24.4725C19.6463 24.4748 19.6694 24.4714 19.6907 24.4625H19.7188C19.7213 24.4847 19.7288 24.5061 19.7407 24.525C19.7769 24.5638 19.8191 24.5965 19.8657 24.6219V24.6219C19.9157 24.5813 19.9688 24.5438 20.025 24.5031C20.0119 24.4611 19.9952 24.4203 19.975 24.3812C19.9617 24.3599 19.9433 24.3422 19.9215 24.3297C19.8997 24.3171 19.8752 24.3102 19.85 24.3094C19.8567 24.2608 19.8444 24.2116 19.8157 24.1719C19.775 24.1156 19.7219 24.0719 19.7688 23.9781C19.8094 23.9781 19.8625 23.9781 19.8875 23.9563C19.9325 23.9196 19.9617 23.867 19.9688 23.8094C19.9688 23.7406 19.9094 23.7156 19.8407 23.7156H19.7782C19.8249 23.6976 19.8645 23.6646 19.8907 23.6219C19.9075 23.5956 19.919 23.5663 19.9245 23.5356C19.93 23.5049 19.9294 23.4734 19.9227 23.4429C19.916 23.4125 19.9034 23.3836 19.8856 23.358C19.8677 23.3324 19.8451 23.3106 19.8188 23.2938C19.7925 23.2769 19.7632 23.2654 19.7325 23.2599C19.7018 23.2544 19.6703 23.2551 19.6398 23.2617C19.6094 23.2684 19.5805 23.281 19.5549 23.2988C19.5293 23.3167 19.5075 23.3394 19.4907 23.3656C19.4669 23.428 19.4676 23.4971 19.4925 23.5591C19.5174 23.6211 19.5647 23.6714 19.625 23.7C19.6386 23.7013 19.6522 23.7013 19.6657 23.7C19.5313 23.725 19.3688 23.9531 19.3907 24.0687Z" fill="#42D4C6"/>
|
||||
<path d="M19.5844 24.8625C19.6124 24.879 19.6437 24.8892 19.676 24.8924C19.7084 24.8957 19.7411 24.8919 19.7718 24.8812C19.7749 24.9063 19.785 24.9299 19.8011 24.9493C19.8172 24.9687 19.8385 24.983 19.8625 24.9906C19.8762 24.997 19.8911 25.0004 19.9062 25.0004C19.9213 25.0004 19.9363 24.997 19.95 24.9906C19.9356 25.0331 19.932 25.0785 19.9397 25.1228C19.9473 25.167 19.9659 25.2086 19.9937 25.2438C20.0291 25.2857 20.0789 25.3128 20.1333 25.3198C20.1877 25.3267 20.2427 25.313 20.2875 25.2813C20.3231 25.2385 20.3477 25.1876 20.3592 25.1332C20.3706 25.0787 20.3685 25.0222 20.3531 24.9688H20.3968C20.4102 25.017 20.4387 25.0597 20.4781 25.0906C20.6401 25.0955 20.8017 25.108 20.9625 25.1281C21.0875 25.075 21.1781 24.9469 21.0969 24.8563C21.0176 24.7815 20.9149 24.7362 20.8062 24.7281C20.792 24.6931 20.7695 24.662 20.7406 24.6375C20.7114 24.6234 20.6793 24.616 20.6469 24.616C20.6144 24.616 20.5823 24.6234 20.5531 24.6375C20.5398 24.6159 20.5222 24.5972 20.5014 24.5826C20.4807 24.568 20.4572 24.5577 20.4323 24.5525C20.4075 24.5472 20.3819 24.5471 20.357 24.552C20.3321 24.5569 20.3084 24.5669 20.2875 24.5813C20.2504 24.616 20.2252 24.6617 20.2157 24.7117C20.2061 24.7616 20.2127 24.8133 20.2344 24.8594V24.8594C20.1715 24.8456 20.1058 24.8556 20.05 24.8875C20.0156 24.8125 19.9906 24.7344 19.8875 24.75H19.8594C19.8453 24.6646 19.7982 24.5883 19.7281 24.5375C19.7121 24.5295 19.6947 24.5248 19.6769 24.5237C19.6591 24.5225 19.6412 24.5249 19.6244 24.5307C19.6075 24.5366 19.592 24.5457 19.5787 24.5576C19.5653 24.5695 19.5545 24.5839 19.5469 24.6C19.5186 24.6403 19.5067 24.6899 19.5137 24.7387C19.5206 24.7874 19.5459 24.8317 19.5844 24.8625Z" fill="#42D4C6"/>
|
||||
<path d="M22.7469 24.8875C22.6344 24.8875 22.4875 24.8875 22.3406 24.9187C22.3219 24.9187 22.3 24.9625 22.2937 24.9875C22.2883 25.0233 22.2751 25.0575 22.2552 25.0877C22.2352 25.1179 22.2089 25.1435 22.1781 25.1625C22.1587 25.1767 22.143 25.1953 22.1321 25.2168C22.1213 25.2382 22.1156 25.2619 22.1156 25.2859C22.1156 25.31 22.1213 25.3337 22.1321 25.3551C22.143 25.3766 22.1587 25.3951 22.1781 25.4094L22.2469 25.4375C22.2272 25.4654 22.2167 25.4987 22.2167 25.5328C22.2167 25.5669 22.2272 25.6002 22.2469 25.6281C22.2638 25.6484 22.2868 25.6627 22.3125 25.6688V25.6688C22.2656 25.7594 22.3531 25.9594 22.4125 25.9813C22.4719 26.0031 22.6312 25.8406 22.6218 25.7531C22.6179 25.7169 22.602 25.683 22.5765 25.6569C22.5509 25.6308 22.5174 25.6141 22.4812 25.6094V25.6094C22.5015 25.5865 22.5126 25.5571 22.5126 25.5266C22.5126 25.4961 22.5015 25.4666 22.4812 25.4437V25.4437H22.5094C22.5381 25.4224 22.5714 25.4079 22.6066 25.4014C22.6418 25.3949 22.678 25.3966 22.7125 25.4062C22.7606 25.4134 22.8098 25.4049 22.8526 25.3818C22.8954 25.3587 22.9296 25.3223 22.95 25.2781C22.9456 25.2024 22.9253 25.1284 22.8903 25.0611C22.8552 24.9937 22.8064 24.9346 22.7469 24.8875V24.8875Z" fill="#42D4C6"/>
|
||||
<path d="M21.9375 28.5969C21.9581 28.598 21.9787 28.5943 21.9977 28.5862C22.0167 28.5781 22.0335 28.5657 22.0469 28.55C22.0473 28.582 22.0562 28.6133 22.0727 28.6408C22.0892 28.6682 22.1126 28.6908 22.1407 28.7062C22.1534 28.7149 22.168 28.7207 22.1832 28.7232C22.1985 28.7257 22.2141 28.7248 22.2289 28.7206C22.2438 28.7165 22.2576 28.7091 22.2693 28.6991C22.2811 28.689 22.2905 28.6766 22.2969 28.6625C22.3084 28.6364 22.3143 28.6082 22.3143 28.5797C22.3143 28.5512 22.3084 28.523 22.2969 28.4969C22.2859 28.4776 22.2707 28.461 22.2524 28.4485C22.2341 28.4359 22.2131 28.4277 22.1912 28.4244C22.1692 28.421 22.1468 28.4228 22.1256 28.4294C22.1044 28.436 22.085 28.4473 22.0688 28.4625C22.0822 28.4121 22.1044 28.3645 22.1344 28.3219C22.1444 28.3009 22.1496 28.2779 22.1496 28.2547C22.1496 28.2315 22.1444 28.2085 22.1344 28.1875C22.1053 28.1271 22.0813 28.0644 22.0625 28C22.0502 27.9599 22.0228 27.9261 21.9861 27.9057C21.9494 27.8853 21.9062 27.8799 21.8657 27.8906C21.75 27.925 21.7063 27.9813 21.7344 28.0906C21.7578 28.1513 21.7882 28.2089 21.825 28.2625C21.8027 28.29 21.7787 28.3161 21.7532 28.3406C21.732 28.3628 21.7185 28.3911 21.7146 28.4214C21.7106 28.4518 21.7165 28.4826 21.7313 28.5094C21.7533 28.5426 21.7846 28.5686 21.8213 28.5841C21.8579 28.5997 21.8984 28.6041 21.9375 28.5969V28.5969Z" fill="#42D4C6"/>
|
||||
<path d="M21.675 28.4219C21.7032 28.4219 21.7563 28.3188 21.7376 28.2875C21.7188 28.2563 21.6157 28.2625 21.6001 28.2875C21.5844 28.3125 21.5407 28.375 21.5563 28.4031C21.5729 28.416 21.5925 28.4244 21.6133 28.4277C21.634 28.431 21.6553 28.429 21.675 28.4219Z" fill="#42D4C6"/>
|
||||
<path d="M21.6375 27.5625C21.619 27.5936 21.6136 27.6308 21.6224 27.6659C21.6312 27.701 21.6534 27.7312 21.6843 27.75C21.7203 27.765 21.7605 27.7663 21.7974 27.7536C21.8342 27.7409 21.8652 27.7152 21.8843 27.6813V27.6563C21.9382 27.6956 22.0055 27.712 22.0714 27.7017C22.1374 27.6915 22.1965 27.6554 22.2359 27.6016C22.2753 27.5477 22.2916 27.4804 22.2814 27.4145C22.2711 27.3485 22.2351 27.2894 22.1812 27.25C22.114 27.2225 22.0399 27.2167 21.9692 27.2335C21.8986 27.2503 21.835 27.2889 21.7875 27.3438C21.7701 27.389 21.7701 27.4391 21.7875 27.4844C21.7576 27.4816 21.7276 27.4875 21.701 27.5014C21.6744 27.5152 21.6523 27.5365 21.6375 27.5625Z" fill="#42D4C6"/>
|
||||
<path d="M22.5843 25.9031C22.5531 25.9406 22.4937 26.05 22.5249 26.0938C22.5562 26.1375 22.6781 26.0938 22.7218 26.0594C22.7656 26.025 22.7749 25.9719 22.7218 25.9219C22.6687 25.8719 22.6249 25.8531 22.5843 25.9031Z" fill="#42D4C6"/>
|
||||
<path d="M22.3656 24.1063C22.3375 24.1063 22.2937 24.1063 22.2812 24.1281C22.2447 24.1878 22.2113 24.2494 22.1812 24.3125C22.0156 24.3469 21.9156 24.4375 21.9374 24.5375C21.9519 24.5878 21.9856 24.6305 22.0312 24.6563C22.0137 24.6693 21.9998 24.6865 21.9906 24.7062C21.9731 24.7413 21.9689 24.7814 21.9786 24.8193C21.9884 24.8572 22.0115 24.8903 22.0437 24.9125C22.0848 24.9215 22.1275 24.9189 22.1672 24.9051C22.2069 24.8913 22.242 24.8669 22.2687 24.8344C22.2763 24.7896 22.2662 24.7437 22.2406 24.7062C22.3374 24.6781 22.3562 24.6125 22.325 24.3937C22.4125 24.3687 22.5062 24.3594 22.4906 24.2375C22.4886 24.2044 22.4749 24.1731 22.452 24.1491C22.4292 24.125 22.3985 24.1099 22.3656 24.1063Z" fill="#42D4C6"/>
|
||||
<path d="M18.675 22.6531C18.7115 22.5861 18.7204 22.5076 18.7 22.4341C18.6796 22.3606 18.6314 22.298 18.5656 22.2594V22.2594C18.5246 22.2626 18.4838 22.2688 18.4437 22.2781C18.35 22.3031 18.275 22.3531 18.2687 22.4594C18.2586 22.513 18.2638 22.5685 18.2837 22.6193C18.3035 22.6701 18.3374 22.7144 18.3813 22.7469C18.4062 22.7623 18.4341 22.7721 18.4632 22.7756C18.4923 22.7792 18.5218 22.7764 18.5497 22.7675C18.5776 22.7586 18.6032 22.7438 18.6248 22.724C18.6465 22.7043 18.6636 22.6801 18.675 22.6531V22.6531Z" fill="#42D4C6"/>
|
||||
<path d="M20.1344 21.525C20.105 21.5503 20.0853 21.5849 20.0784 21.623C20.0716 21.6612 20.0781 21.7005 20.0969 21.7344C20.1244 21.77 20.1625 21.7961 20.2056 21.809C20.2488 21.8219 20.2949 21.8209 20.3375 21.8063C20.3813 21.7744 20.413 21.7286 20.4272 21.6763C20.4414 21.624 20.4373 21.5684 20.4156 21.5187C20.3656 21.45 20.25 21.4531 20.1344 21.525Z" fill="#42D4C6"/>
|
||||
<path d="M19.3063 21.1937C19.2989 21.2071 19.295 21.2222 19.295 21.2375C19.295 21.2528 19.2989 21.2679 19.3063 21.2813C19.3063 21.3 19.3844 21.3312 19.4094 21.3094C19.4344 21.2875 19.4094 21.2219 19.3907 21.2C19.3862 21.1931 19.3802 21.1874 19.3732 21.1832C19.3661 21.179 19.3582 21.1765 19.35 21.1759C19.3419 21.1753 19.3337 21.1766 19.3261 21.1797C19.3185 21.1828 19.3117 21.1876 19.3063 21.1937V21.1937Z" fill="#42D4C6"/>
|
||||
<path d="M19.6375 19.125C19.5 18.9812 19.4375 19 19.275 19.1C19.2301 19.1377 19.2017 19.1915 19.1958 19.2499C19.19 19.3083 19.2072 19.3666 19.2437 19.4125C19.2956 19.458 19.3623 19.4831 19.4312 19.4831C19.5002 19.4831 19.5669 19.458 19.6187 19.4125C19.6401 19.3957 19.6576 19.3746 19.6703 19.3505C19.6829 19.3265 19.6904 19.3 19.6922 19.2729C19.6939 19.2458 19.69 19.2186 19.6806 19.1931C19.6711 19.1677 19.6565 19.1444 19.6375 19.125V19.125Z" fill="#42D4C6"/>
|
||||
<path d="M20.1407 24.0813C20.1248 24.1073 20.1145 24.1362 20.1104 24.1664C20.1062 24.1965 20.1083 24.2272 20.1165 24.2565C20.1247 24.2859 20.1388 24.3132 20.1581 24.3368C20.1773 24.3604 20.2011 24.3798 20.2282 24.3938C20.2564 24.4175 20.2897 24.4345 20.3254 24.4435C20.3612 24.4525 20.3985 24.4533 20.4346 24.4457C20.4707 24.4382 20.5047 24.4226 20.5339 24.4001C20.5631 24.3775 20.5868 24.3487 20.6032 24.3156C20.6342 24.2597 20.644 24.1945 20.6308 24.1319C20.6176 24.0693 20.5823 24.0136 20.5313 23.975C20.5482 23.9361 20.5539 23.8933 20.5479 23.8514C20.5418 23.8094 20.5241 23.77 20.4969 23.7375C20.4282 23.6469 20.3563 23.6406 20.2469 23.7375C20.229 23.7508 20.2138 23.7675 20.2024 23.7866C20.1909 23.8058 20.1834 23.827 20.1802 23.8491C20.177 23.8712 20.1782 23.8937 20.1837 23.9153C20.1893 23.9369 20.1991 23.9572 20.2126 23.975C20.2235 23.9855 20.2362 23.994 20.2501 24C20.2081 24.0187 20.1707 24.0465 20.1407 24.0813V24.0813Z" fill="#42D4C6"/>
|
||||
<path d="M20.475 23.5C20.5406 23.4313 20.6187 23.3719 20.6281 23.2625C20.6375 23.1531 20.6281 23.1 20.4719 23.0563L20.3281 23.1812C20.2897 23.214 20.2643 23.2593 20.2562 23.3092C20.2482 23.359 20.2582 23.41 20.2844 23.4531C20.3219 23.5 20.4344 23.5313 20.475 23.5Z" fill="#42D4C6"/>
|
||||
<path d="M18.1562 22.4656C18.1668 22.4523 18.1726 22.4358 18.1726 22.4187C18.1726 22.4017 18.1668 22.3852 18.1562 22.3719C18.1312 22.3438 18.0718 22.3719 18.0531 22.3969C18.0447 22.4082 18.0402 22.4219 18.0402 22.4359C18.0402 22.45 18.0447 22.4637 18.0531 22.475C18.0843 22.4906 18.1187 22.4781 18.1562 22.4656Z" fill="#42D4C6"/>
|
||||
<path d="M18.0031 22.7344C17.9838 22.7536 17.9707 22.7782 17.9657 22.805C17.9607 22.8318 17.9639 22.8595 17.975 22.8844C18.0093 22.95 18.1812 22.9688 18.2125 22.9094C18.2437 22.85 18.15 22.7344 18.1156 22.7156C18.0972 22.7069 18.0765 22.704 18.0564 22.7074C18.0363 22.7107 18.0177 22.7202 18.0031 22.7344Z" fill="#42D4C6"/>
|
||||
<path d="M18.4906 23.5562C18.5082 23.5244 18.5144 23.4876 18.5081 23.4518C18.5019 23.416 18.4836 23.3833 18.4562 23.3594C18.42 23.3322 18.3752 23.3188 18.3299 23.3217C18.2847 23.3246 18.2419 23.3435 18.2094 23.375C18.1821 23.4153 18.1689 23.4635 18.1718 23.512C18.1746 23.5606 18.1933 23.6069 18.225 23.6438C18.2906 23.6969 18.4125 23.6562 18.4906 23.5562Z" fill="#42D4C6"/>
|
||||
<path d="M20.6749 22.6563C20.5687 22.7156 20.6281 22.8125 20.6437 22.9062C20.7562 22.925 20.8468 22.9313 20.8874 22.825C20.8949 22.8116 20.8995 22.7967 20.9011 22.7815C20.9026 22.7662 20.9009 22.7507 20.8963 22.7361C20.8916 22.7214 20.8839 22.7079 20.8738 22.6963C20.8637 22.6847 20.8513 22.6754 20.8374 22.6688C20.7867 22.6447 20.7288 22.6403 20.6749 22.6563V22.6563Z" fill="#42D4C6"/>
|
||||
<path d="M18.7437 22.25H18.7593C18.8349 22.2454 18.91 22.236 18.9844 22.2219C19.0009 22.2112 19.0148 22.197 19.0251 22.1802C19.0353 22.1634 19.0417 22.1446 19.0437 22.125C19.0425 22.0707 19.0252 22.018 18.9941 21.9735C18.9629 21.929 18.9193 21.8947 18.8687 21.875C18.8386 21.861 18.8043 21.8587 18.7726 21.8686C18.7408 21.8784 18.7139 21.8996 18.6968 21.9281C18.6643 21.9678 18.6466 22.0175 18.6466 22.0688C18.6466 22.12 18.6643 22.1697 18.6968 22.2094C18.7098 22.2258 18.7257 22.2395 18.7437 22.25V22.25Z" fill="#42D4C6"/>
|
||||
<path d="M17.9126 23.3438C17.957 23.3668 18.0063 23.3788 18.0563 23.3788C18.1063 23.3788 18.1556 23.3668 18.2 23.3438C18.2151 23.3311 18.2273 23.3154 18.2356 23.2976C18.2439 23.2797 18.2483 23.2603 18.2483 23.2406C18.2483 23.2209 18.2439 23.2015 18.2356 23.1837C18.2273 23.1659 18.2151 23.1501 18.2 23.1375C18.125 23.0406 18.025 23.0125 17.9563 23.0719C17.9355 23.0868 17.9178 23.1057 17.9043 23.1274C17.8908 23.1492 17.8818 23.1734 17.8777 23.1987C17.8736 23.224 17.8746 23.2498 17.8806 23.2747C17.8866 23.2996 17.8974 23.3231 17.9126 23.3438V23.3438Z" fill="#42D4C6"/>
|
||||
<path d="M17.6531 21.3594C17.6494 21.2878 17.668 21.2169 17.7063 21.1563C17.726 21.124 17.7386 21.0879 17.7432 21.0504C17.7479 21.0129 17.7445 20.9748 17.7332 20.9387C17.722 20.9027 17.7032 20.8694 17.6781 20.8411C17.6529 20.8129 17.6221 20.7904 17.5875 20.775C17.5624 20.7601 17.5384 20.7434 17.5156 20.725C17.4781 20.625 17.4219 20.6031 17.3594 20.6094C17.2969 20.6156 17.2656 20.6781 17.2531 20.7406C17.2406 20.8031 17.2281 20.8813 17.2188 20.95C17.2094 21.0188 17.1938 21.1063 17.2688 21.1656C17.2873 21.1865 17.2982 21.2129 17.3 21.2406C17.3 21.3594 17.3219 21.4156 17.3719 21.4469C17.3556 21.448 17.3397 21.4524 17.3251 21.46C17.3106 21.4675 17.2978 21.4779 17.2875 21.4906C17.2469 21.5406 17.2719 21.5813 17.3063 21.6156C17.3407 21.65 17.4281 21.6656 17.4563 21.6156C17.4721 21.5757 17.4815 21.5335 17.4844 21.4906H17.4594H17.5219C17.5969 21.475 17.6563 21.4344 17.6531 21.3594Z" fill="#42D4C6"/>
|
||||
<path d="M17.5219 28.7625C17.5625 28.8219 17.7218 28.7625 17.7656 28.7281C17.7888 28.7047 17.804 28.6746 17.809 28.6421C17.8141 28.6095 17.8087 28.5762 17.7937 28.5469C17.7531 28.4938 17.6437 28.5188 17.5906 28.5469C17.5375 28.575 17.4937 28.7063 17.5219 28.7625Z" fill="#42D4C6"/>
|
||||
<path d="M23.178 27.5625C23.1935 27.5198 23.197 27.4736 23.1882 27.429C23.1794 27.3844 23.1586 27.343 23.1281 27.3094C23.1468 27.3285 23.1678 27.3452 23.1905 27.3594C23.2098 27.373 23.2319 27.3821 23.2551 27.3861C23.2783 27.3902 23.3021 27.389 23.3248 27.3827C23.3475 27.3765 23.3686 27.3652 23.3864 27.3498C23.4043 27.3345 23.4185 27.3153 23.428 27.2938C23.4093 27.1938 23.3905 27.0875 23.3687 26.9813C23.3435 26.9652 23.3154 26.9544 23.286 26.9493C23.2566 26.9442 23.2265 26.9451 23.1974 26.9518C23.1683 26.9584 23.1408 26.9709 23.1166 26.9883C23.0924 27.0057 23.0718 27.0277 23.0562 27.0531C23.0374 27.0915 23.0313 27.1348 23.0386 27.1769C23.0459 27.219 23.0662 27.2577 23.0968 27.2875C23.065 27.2563 23.028 27.2309 22.9874 27.2125C22.9307 27.1935 22.8692 27.1935 22.8124 27.2125C22.8068 27.1927 22.7983 27.1738 22.7874 27.1563C22.782 27.1437 22.7733 27.1328 22.7623 27.1246C22.7513 27.1164 22.7384 27.1113 22.7247 27.1097C22.7111 27.1081 22.6973 27.1101 22.6848 27.1156C22.6722 27.121 22.6612 27.1296 22.6531 27.1406C22.6218 27.1719 22.5655 27.2719 22.5905 27.3031C22.5541 27.328 22.5241 27.3612 22.5031 27.4C22.4468 27.5219 22.5718 27.6281 22.5624 27.6656C22.553 27.7031 22.3374 27.7406 22.2718 27.8938C22.2538 27.9748 22.2613 28.0594 22.2931 28.136C22.325 28.2126 22.3798 28.2775 22.4499 28.3219C22.5357 28.3751 22.6387 28.393 22.7374 28.3719C22.8001 28.3552 22.856 28.3195 22.8974 28.2697C22.9388 28.2198 22.9637 28.1584 22.9687 28.0938C22.9687 27.9719 22.8437 27.825 22.8655 27.7813C22.8874 27.7375 23.1187 27.7219 23.178 27.5625Z" fill="#42D4C6"/>
|
||||
<path d="M16.7093 26.5219C16.7225 26.5146 16.7337 26.5044 16.7423 26.4921C16.7508 26.4798 16.7563 26.4656 16.7584 26.4508C16.7605 26.4359 16.7592 26.4208 16.7545 26.4066C16.7497 26.3923 16.7418 26.3794 16.7312 26.3688C16.7122 26.3596 16.6914 26.3549 16.6703 26.3549C16.6492 26.3549 16.6283 26.3596 16.6093 26.3688C16.5812 26.3906 16.5281 26.4719 16.55 26.5094C16.5718 26.5469 16.6718 26.5375 16.7093 26.5219Z" fill="#42D4C6"/>
|
||||
<path d="M17.9688 27.4469C17.9063 27.3781 17.8532 27.2813 17.7375 27.2656L17.625 27.3406C17.5063 27.3 17.3844 27.3156 17.35 27.3812C17.3374 27.4071 17.3336 27.4364 17.3392 27.4647C17.3449 27.4929 17.3596 27.5185 17.3813 27.5375C17.4657 27.6156 17.5156 27.6156 17.6313 27.5375C17.7151 27.5621 17.8008 27.5798 17.8875 27.5906C17.9049 27.5922 17.9223 27.5887 17.9377 27.5806C17.9532 27.5725 17.9659 27.5601 17.9745 27.545C17.9831 27.5298 17.9871 27.5125 17.9861 27.4951C17.9851 27.4777 17.9791 27.4609 17.9688 27.4469Z" fill="#42D4C6"/>
|
||||
<path d="M19.175 29.5031C19.1063 29.4563 18.9875 29.5031 18.9219 29.6125C18.913 29.6246 18.907 29.6385 18.9041 29.6533C18.9012 29.668 18.9015 29.6832 18.9051 29.6978C18.9086 29.7124 18.9153 29.726 18.9247 29.7377C18.9341 29.7494 18.9459 29.7589 18.9594 29.7656C18.9939 29.7949 19.0376 29.811 19.0828 29.811C19.1281 29.811 19.1718 29.7949 19.2063 29.7656C19.2315 29.7248 19.2421 29.6766 19.2364 29.6289C19.2308 29.5813 19.2091 29.5369 19.175 29.5031V29.5031Z" fill="#42D4C6"/>
|
||||
<path d="M18.6249 28.6063C18.5958 28.5849 18.5597 28.5753 18.5238 28.5793C18.4879 28.5834 18.4548 28.6008 18.4312 28.6281C18.4072 28.6788 18.3986 28.7354 18.4063 28.7909C18.4141 28.8464 18.438 28.8985 18.4749 28.9406C18.5624 28.9937 18.6468 28.9656 18.7124 28.8563C18.7781 28.7469 18.7437 28.6688 18.6249 28.6063Z" fill="#42D4C6"/>
|
||||
<path d="M18.4625 29.2031C18.4474 29.2427 18.4456 29.286 18.4575 29.3267C18.4693 29.3673 18.4941 29.4029 18.5281 29.4281C18.561 29.4435 18.5985 29.4456 18.6329 29.4339C18.6673 29.4223 18.6958 29.3978 18.7125 29.3656C18.7311 29.3346 18.7379 29.2979 18.7315 29.2623C18.7252 29.2267 18.7063 29.1946 18.6781 29.1719C18.6429 29.1561 18.604 29.1506 18.5658 29.1562C18.5276 29.1617 18.4918 29.178 18.4625 29.2031Z" fill="#42D4C6"/>
|
||||
<path d="M23.5062 29.8C23.4729 29.8488 23.4597 29.9087 23.4697 29.967C23.4796 30.0253 23.5117 30.0775 23.5594 30.1125C23.586 30.133 23.6165 30.1481 23.649 30.1568C23.6815 30.1656 23.7154 30.1679 23.7488 30.1635C23.7821 30.1591 23.8143 30.1483 23.8435 30.1315C23.8726 30.1147 23.8982 30.0923 23.9187 30.0656C23.9393 30.039 23.9543 30.0085 23.9631 29.976C23.9718 29.9435 23.9741 29.9096 23.9697 29.8762C23.9654 29.8429 23.9545 29.8107 23.9377 29.7815C23.9209 29.7523 23.8985 29.7268 23.8719 29.7063C23.81 29.6745 23.7386 29.6664 23.6713 29.6837C23.6039 29.701 23.5452 29.7424 23.5062 29.8V29.8Z" fill="#42D4C6"/>
|
||||
<path d="M16.6844 25.4156C16.669 25.3949 16.6493 25.3777 16.6267 25.3651C16.6041 25.3526 16.5791 25.3451 16.5534 25.343C16.5277 25.3409 16.5017 25.3444 16.4774 25.3532C16.4531 25.3619 16.431 25.3757 16.4125 25.3937C16.371 25.4239 16.3417 25.4678 16.3296 25.5176C16.3176 25.5674 16.3237 25.6199 16.3469 25.6656C16.3889 25.7034 16.4418 25.7268 16.498 25.7324C16.5542 25.738 16.6107 25.7256 16.6594 25.6969C16.6819 25.6818 16.7007 25.6619 16.7146 25.6386C16.7284 25.6153 16.7368 25.5892 16.7392 25.5622C16.7416 25.5352 16.7379 25.5081 16.7284 25.4827C16.7189 25.4573 16.7039 25.4344 16.6844 25.4156V25.4156Z" fill="#42D4C6"/>
|
||||
<path d="M23.6406 28.2313H23.6093C23.5439 28.2576 23.4722 28.2641 23.4031 28.25C23.366 28.2433 23.328 28.2446 23.2914 28.2537C23.2549 28.2628 23.2207 28.2796 23.1911 28.303C23.1616 28.3263 23.1373 28.3557 23.12 28.3891C23.1027 28.4225 23.0926 28.4593 23.0906 28.4969C23.0851 28.5268 23.0768 28.5561 23.0656 28.5844C23.035 28.6026 23.0127 28.6321 23.0033 28.6665C22.994 28.7008 22.9984 28.7375 23.0156 28.7687C23.0499 28.8344 23.1125 28.8344 23.175 28.8219L23.3843 28.7813C23.4593 28.7625 23.5406 28.75 23.5687 28.6562C23.5799 28.6319 23.6 28.6129 23.625 28.6031L23.725 28.5531L23.6406 28.2313Z" fill="#42D4C6"/>
|
||||
<path d="M16.9031 24.9187C16.9031 24.8062 16.8156 24.7938 16.7313 24.7781V24.6312H16.9219C16.9463 24.5876 16.9662 24.5415 16.9813 24.4937C16.9852 24.4485 16.9782 24.4031 16.9608 24.3611C16.9434 24.3192 16.9161 24.2822 16.8813 24.2531C16.8368 24.242 16.7899 24.2465 16.7484 24.2659C16.7069 24.2852 16.6732 24.3182 16.6531 24.3594L16.6 24.4531C16.5144 24.4404 16.4269 24.4512 16.3469 24.4844L16.3 24.4406C16.2565 24.4151 16.2062 24.4035 16.1559 24.4074C16.1057 24.4114 16.0578 24.4306 16.0188 24.4625L16 24.7188C16.023 24.7658 16.0617 24.8034 16.1094 24.825C16.1759 24.8499 16.2491 24.8499 16.3156 24.825L16.3375 24.8563C16.4188 24.975 16.5281 24.9625 16.65 24.9156C16.6875 24.9844 16.6969 25.0812 16.8094 25.0562C16.8392 25.0488 16.8652 25.0307 16.8825 25.0054C16.8998 24.98 16.9071 24.9492 16.9031 24.9187V24.9187Z" fill="#42D4C6"/>
|
||||
<path d="M22.7563 21.3125C22.7776 21.3232 22.8012 21.3288 22.825 21.3288C22.8489 21.3288 22.8725 21.3232 22.8938 21.3125L22.8563 21.0625C22.8319 21.0605 22.8075 21.0646 22.7851 21.0744C22.7627 21.0842 22.7432 21.0995 22.7282 21.1188C22.7089 21.1491 22.7011 21.1853 22.7063 21.2209C22.7114 21.2564 22.7292 21.2889 22.7563 21.3125V21.3125Z" fill="#42D4C6"/>
|
||||
<path d="M17.7594 28.1C17.7594 28.075 17.7875 28.0219 17.7594 27.9906C17.7313 27.9594 17.675 28.0187 17.675 28.0312C17.675 28.0437 17.6751 28.1 17.6969 28.1219C17.7082 28.1265 17.7208 28.1268 17.7323 28.1228C17.7438 28.1187 17.7535 28.1106 17.7594 28.1V28.1Z" fill="#42D4C6"/>
|
||||
<path d="M23.9657 32.6438C24.0282 32.5875 23.9657 32.4094 23.9032 32.4031C23.8407 32.3969 23.7375 32.5594 23.7875 32.6219C23.8104 32.6452 23.8404 32.6601 23.8728 32.664C23.9051 32.668 23.9379 32.6609 23.9657 32.6438Z" fill="#42D4C6"/>
|
||||
<path d="M23.8719 32.0125C23.8719 31.975 23.7875 31.9812 23.7688 31.9906C23.7549 32.0004 23.7439 32.0136 23.7368 32.029C23.7297 32.0443 23.7267 32.0613 23.7281 32.0781C23.7281 32.1063 23.7938 32.1156 23.8188 32.1062C23.8438 32.0969 23.8844 32.0469 23.8719 32.0125Z" fill="#42D4C6"/>
|
||||
<path d="M24.0281 33.4031C24.0348 33.3831 24.0363 33.3617 24.0325 33.3409C24.0287 33.3202 24.0197 33.3007 24.0063 33.2844C23.9969 33.2744 23.9851 33.2669 23.9721 33.2625C23.9592 33.2581 23.9453 33.2569 23.9318 33.2591C23.9182 33.2612 23.9054 33.2667 23.8944 33.2749C23.8835 33.2831 23.8747 33.2939 23.8688 33.3063C23.8688 33.3375 23.8219 33.4344 23.8938 33.475C23.9656 33.5156 24.0156 33.4344 24.0281 33.4031Z" fill="#42D4C6"/>
|
||||
<path d="M24.0219 31.2125C23.999 31.1964 23.971 31.1895 23.9433 31.1929C23.9155 31.1964 23.8901 31.21 23.8719 31.2312C23.7695 31.349 23.7052 31.495 23.6875 31.65C23.6844 31.6739 23.6844 31.698 23.6875 31.7219C23.6983 31.7529 23.7175 31.7803 23.7431 31.8009C23.7686 31.8215 23.7994 31.8345 23.832 31.8384C23.8646 31.8423 23.8977 31.8369 23.9274 31.823C23.9571 31.809 23.9822 31.787 24 31.7594C24.0562 31.6799 24.1024 31.5939 24.1375 31.5031C24.15 31.4487 24.1457 31.3917 24.125 31.3398C24.1044 31.2879 24.0684 31.2435 24.0219 31.2125Z" fill="#42D4C6"/>
|
||||
<path d="M24.3094 32.0719C24.3094 32.175 24.4313 32.2125 24.4844 32.2031C24.5375 32.1937 24.5313 31.9531 24.4844 31.9188C24.4375 31.8844 24.325 31.9656 24.3094 32.0719Z" fill="#42D4C6"/>
|
||||
<path d="M16.9187 18.8906C16.9738 18.925 17.0383 18.9414 17.1031 18.9375C17.1459 18.9311 17.1869 18.9158 17.2235 18.8926C17.2601 18.8695 17.2914 18.839 17.3156 18.8031C17.375 18.725 17.4781 18.7125 17.5 18.6156C17.5 18.6156 17.5 18.5906 17.5 18.5813C17.5245 18.5756 17.547 18.5638 17.5656 18.5469C17.5912 18.5211 17.6055 18.4863 17.6055 18.45C17.6055 18.4137 17.5912 18.3789 17.5656 18.3531C17.5526 18.3357 17.5342 18.3232 17.5132 18.3175C17.4923 18.3118 17.47 18.3134 17.45 18.3219C17.42 18.2506 17.3673 18.1913 17.3 18.1531H17.2781C17.1145 18.3764 16.9692 18.6126 16.8438 18.8594L16.9187 18.8906Z" fill="#42D4C6"/>
|
||||
<path d="M19.1937 31.2781C19.1937 31.2781 19.2187 31.2063 19.1937 31.1844C19.1687 31.1625 19.1156 31.2094 19.0968 31.2312C19.0896 31.2424 19.0857 31.2554 19.0857 31.2687C19.0857 31.2821 19.0896 31.2951 19.0968 31.3062C19.1281 31.3125 19.1749 31.3125 19.1937 31.2781Z" fill="#42D4C6"/>
|
||||
<path d="M18.9906 31.5625C18.9906 31.5781 18.9593 31.6531 18.9906 31.6719C19.0218 31.6906 19.0843 31.6531 19.0968 31.6344C19.1093 31.6156 19.0968 31.5594 19.0968 31.5406C19.0885 31.5348 19.0791 31.5308 19.0691 31.5288C19.0592 31.5268 19.049 31.5268 19.039 31.5288C19.0291 31.5309 19.0197 31.5349 19.0114 31.5407C19.003 31.5465 18.996 31.5539 18.9906 31.5625V31.5625Z" fill="#42D4C6"/>
|
||||
<path d="M21.6656 31.9656C21.6656 31.9875 21.6656 32.0062 21.6656 32.0187C21.6656 32.0312 21.7063 32.0187 21.7063 32.0187C21.7063 32.0187 21.7063 31.975 21.7063 31.9625C21.7063 31.95 21.6844 31.9625 21.6656 31.9656Z" fill="#42D4C6"/>
|
||||
<path d="M21.8187 30.4469C21.875 30.3719 21.8812 30.2406 21.8187 30.1969C21.7031 30.1031 21.5781 30.1969 21.5062 30.2406C21.4344 30.2844 21.5062 30.4562 21.6312 30.5031C21.6471 30.5123 21.6647 30.5182 21.6829 30.5203C21.7011 30.5224 21.7196 30.5208 21.7371 30.5155C21.7547 30.5102 21.771 30.5014 21.785 30.4896C21.7991 30.4778 21.8105 30.4633 21.8187 30.4469Z" fill="#42D4C6"/>
|
||||
<path d="M22.8062 31.0656C22.7093 30.8906 22.55 31.0187 22.5312 30.8875C22.5125 30.7562 22.6406 30.7969 22.6 30.6156C22.5594 30.4344 22.3844 30.3562 22.2875 30.45C22.1906 30.5437 22.2312 30.65 22.2031 30.6656C22.175 30.6812 22.0375 30.7094 22.0625 30.8125C22.1093 31.0281 22.2906 30.9344 22.325 30.9937C22.3594 31.0531 22.3468 31.1906 22.3906 31.2844C22.4343 31.3781 22.575 31.4937 22.7031 31.4156C22.7343 31.401 22.7621 31.3799 22.7846 31.3537C22.807 31.3275 22.8237 31.2969 22.8334 31.2638C22.8432 31.2307 22.8458 31.196 22.8411 31.1618C22.8364 31.1276 22.8245 31.0949 22.8062 31.0656V31.0656Z" fill="#42D4C6"/>
|
||||
<path d="M22.5313 32.4844C22.5313 32.5125 22.4969 32.5688 22.5313 32.5969C22.5492 32.6065 22.5699 32.6096 22.5899 32.6056C22.6099 32.6016 22.6278 32.5908 22.6406 32.575C22.6594 32.5531 22.6969 32.4781 22.6406 32.4375C22.5844 32.3969 22.5438 32.4594 22.5313 32.4844Z" fill="#42D4C6"/>
|
||||
<path d="M24.3 30.4281C24.2755 30.4654 24.2645 30.51 24.2691 30.5545C24.2736 30.5989 24.2934 30.6404 24.325 30.6719C24.355 30.6902 24.3899 30.699 24.425 30.6969C24.3875 30.6031 24.35 30.5094 24.3156 30.4125L24.3 30.4281Z" fill="#42D4C6"/>
|
||||
<path d="M22.45 23.3937C22.4225 23.3646 22.3864 23.3452 22.3469 23.3384C22.3074 23.3316 22.2668 23.3379 22.2312 23.3562C22.1856 23.3802 22.1418 23.4074 22.1 23.4375C22.0793 23.4471 22.0628 23.4637 22.0531 23.4844C21.9781 23.5656 21.9844 23.6594 22.0531 23.8344C22.0518 23.8416 22.0518 23.849 22.0531 23.8563V23.8563C22.0377 23.8224 22.0177 23.7909 21.9938 23.7625C21.9853 23.7515 21.9744 23.7426 21.9619 23.7364C21.9495 23.7303 21.9358 23.7271 21.9219 23.7271C21.908 23.7271 21.8943 23.7303 21.8818 23.7364C21.8693 23.7426 21.8585 23.7515 21.85 23.7625V23.7625C21.8186 23.7463 21.7838 23.7379 21.7484 23.7379C21.7131 23.7379 21.6783 23.7463 21.6469 23.7625C21.6149 23.7856 21.5918 23.8191 21.5816 23.8572C21.5713 23.8953 21.5745 23.9358 21.5906 23.9719C21.6656 24.0875 21.7844 24.1406 21.8594 24.0875C21.8829 24.0691 21.9018 24.0453 21.9143 24.0181C21.9268 23.9909 21.9326 23.9611 21.9312 23.9313H22.0031C21.9947 23.9445 21.9891 23.9593 21.9866 23.9747C21.9841 23.9902 21.9848 24.006 21.9886 24.0212C21.9924 24.0364 21.9992 24.0507 22.0087 24.0631C22.0182 24.0756 22.0301 24.086 22.0437 24.0938C22.0631 24.1051 22.0849 24.1118 22.1073 24.1132C22.1297 24.1146 22.1522 24.1108 22.1728 24.102C22.1935 24.0931 22.2118 24.0796 22.2263 24.0625C22.2408 24.0453 22.251 24.025 22.2562 24.0031C22.2812 23.9094 22.3469 23.9031 22.4187 23.8719C22.4812 24.0031 22.5594 24.0531 22.6469 24.0375C22.64 24.0832 22.65 24.1299 22.675 24.1688C22.7163 24.2175 22.7738 24.2497 22.837 24.2594C22.9001 24.2692 22.9646 24.2558 23.0187 24.2219C23.0187 24.2219 23.0187 24.2219 23.0344 24.2031L23.0156 23.8125C22.9655 23.7761 22.9057 23.7554 22.8437 23.7531C22.8273 23.7303 22.8072 23.7102 22.7844 23.6937C22.7645 23.6722 22.7403 23.6549 22.7134 23.6431C22.6865 23.6314 22.6575 23.6253 22.6281 23.6253C22.5988 23.6253 22.5697 23.6314 22.5428 23.6431C22.5159 23.6549 22.4918 23.6722 22.4719 23.6937C22.472 23.6432 22.4783 23.5928 22.4906 23.5438C22.5007 23.5177 22.5022 23.4891 22.4949 23.4621C22.4876 23.4351 22.4719 23.4112 22.45 23.3937V23.3937Z" fill="#42D4C6"/>
|
||||
<path d="M22.6156 26.6063C22.6596 26.6447 22.7167 26.6646 22.775 26.6616C22.8333 26.6587 22.8883 26.6333 22.9281 26.5906C22.9706 26.5613 23.0023 26.5187 23.0181 26.4696C23.0339 26.4204 23.033 26.3674 23.0156 26.3188C23.0113 26.2929 23.0016 26.2682 22.9872 26.2463C22.9727 26.2245 22.9538 26.2058 22.9318 26.1917C22.9097 26.1776 22.8849 26.1682 22.8589 26.1643C22.833 26.1603 22.8065 26.1618 22.7812 26.1688C22.7017 26.1833 22.6267 26.2165 22.5625 26.2656C22.5429 26.2864 22.5177 26.301 22.49 26.3076C22.4622 26.3143 22.4331 26.3127 22.4062 26.3031C22.3187 26.2625 22.2688 26.3031 22.2406 26.3938C22.2211 26.3586 22.1942 26.328 22.1617 26.3041C22.1293 26.2802 22.0922 26.2635 22.0528 26.2552C22.0134 26.2469 21.9726 26.2472 21.9333 26.256C21.894 26.2648 21.8571 26.2819 21.825 26.3063C21.7094 26.3813 21.7031 26.4719 21.7875 26.6188C21.753 26.6873 21.7267 26.7596 21.7094 26.8344C21.7058 26.8545 21.7063 26.8752 21.7109 26.8951C21.7154 26.915 21.7239 26.9339 21.7358 26.9505C21.7478 26.9671 21.7629 26.9811 21.7804 26.9918C21.7979 27.0024 21.8173 27.0095 21.8375 27.0125C21.9406 27.0125 22.0438 27.0125 22.15 27.0125C22.2281 27.1281 22.2375 27.1313 22.3719 27.05C22.3937 26.9938 22.3094 26.9063 22.4188 26.8781C22.452 26.9302 22.4896 26.9794 22.5313 27.025C22.5577 27.0486 22.5906 27.0636 22.6258 27.0681C22.661 27.0726 22.6966 27.0663 22.7281 27.05C22.8 27.025 22.7906 26.9594 22.7969 26.9031C22.8125 26.7969 22.7531 26.7281 22.6563 26.6656L22.4625 26.7625C22.4625 26.7344 22.4625 26.7063 22.4625 26.6781C22.4625 26.5594 22.5125 26.5313 22.6156 26.6063Z" fill="#42D4C6"/>
|
||||
<path d="M21.3 26.8938C21.2881 26.8835 21.2741 26.876 21.259 26.8717C21.2439 26.8674 21.2281 26.8664 21.2125 26.8688C21.2035 26.8728 21.1953 26.8786 21.1885 26.8859C21.1817 26.8931 21.1764 26.9016 21.1729 26.9109C21.1694 26.9202 21.1678 26.9301 21.1681 26.94C21.1685 26.95 21.1709 26.9597 21.175 26.9688C21.2 27.0156 21.2594 26.9688 21.2844 26.9688C21.3094 26.9688 21.3094 26.9 21.3 26.8938Z" fill="#42D4C6"/>
|
||||
<path d="M22.1531 20.2313C22.1269 20.2599 22.1099 20.2958 22.1043 20.3343C22.0987 20.3727 22.1048 20.4119 22.1218 20.4469C22.1327 20.4633 22.1469 20.4772 22.1634 20.4878C22.18 20.4984 22.1986 20.5053 22.218 20.5083C22.2375 20.5112 22.2573 20.5101 22.2763 20.5049C22.2952 20.4997 22.3129 20.4906 22.3281 20.4781C22.3562 20.4555 22.3756 20.4238 22.383 20.3885C22.3904 20.3532 22.3854 20.3164 22.3687 20.2844C22.3406 20.2574 22.3059 20.2382 22.268 20.2289C22.2302 20.2196 22.1905 20.2204 22.1531 20.2313V20.2313Z" fill="#42D4C6"/>
|
||||
<path d="M22.6406 20.0313C22.5937 19.8656 22.5437 19.7188 22.4875 19.5469L22.45 19.5656C22.4179 19.5837 22.3903 19.6088 22.3692 19.639C22.3482 19.6693 22.3343 19.7039 22.3286 19.7403C22.3229 19.7767 22.3255 19.8139 22.3363 19.8492C22.347 19.8844 22.3656 19.9167 22.3906 19.9438C22.4204 19.9797 22.4594 20.0069 22.5034 20.0223C22.5475 20.0377 22.5949 20.0408 22.6406 20.0313V20.0313Z" fill="#42D4C6"/>
|
||||
<path d="M22.6281 29.4844C22.5937 29.5344 22.6281 29.6062 22.65 29.65C22.6718 29.6937 22.7625 29.675 22.8 29.6281C22.8375 29.5812 22.825 29.5031 22.775 29.4812C22.725 29.4594 22.6593 29.4375 22.6281 29.4844Z" fill="#42D4C6"/>
|
||||
<path d="M19.6812 26.4344C19.6531 26.4813 19.6312 26.5344 19.6812 26.5781C19.7134 26.5973 19.7517 26.6035 19.7884 26.5954C19.825 26.5872 19.8571 26.5654 19.8781 26.5344C19.8633 26.4878 19.84 26.4443 19.8093 26.4062C19.7781 26.3594 19.7218 26.3813 19.6812 26.4344Z" fill="#42D4C6"/>
|
||||
<path d="M21.0844 27.0969C21.0609 27.0831 21.0348 27.0743 21.0077 27.0713C20.9807 27.0683 20.9533 27.071 20.9273 27.0792C20.9014 27.0875 20.8775 27.1011 20.8572 27.1192C20.8368 27.1373 20.8205 27.1595 20.8094 27.1844C20.7219 27.3625 20.7625 27.4125 20.9156 27.5313C20.9416 27.5471 20.9706 27.5574 21.0008 27.5616C21.0309 27.5657 21.0616 27.5636 21.0909 27.5554C21.1202 27.5472 21.1475 27.5331 21.1711 27.5139C21.1947 27.4946 21.2141 27.4708 21.2281 27.4437C21.2504 27.3783 21.2481 27.307 21.2216 27.2432C21.1952 27.1794 21.1464 27.1274 21.0844 27.0969Z" fill="#42D4C6"/>
|
||||
<path d="M16.7656 21.0875C16.7489 21.063 16.7273 21.0423 16.7022 21.0265C16.677 21.0107 16.6489 21.0003 16.6196 20.9959C16.5903 20.9916 16.5604 20.9932 16.5317 21.0009C16.5031 21.0086 16.4763 21.0221 16.4531 21.0406C16.4132 21.0734 16.3803 21.1138 16.3563 21.1594C16.327 21.1473 16.2957 21.141 16.2641 21.141C16.2324 21.141 16.2011 21.1473 16.1719 21.1594C16.1719 21.2313 16.1469 21.3031 16.1406 21.3781C16.1491 21.3976 16.1607 21.4156 16.175 21.4313C16.225 21.4906 16.3156 21.4844 16.4 21.4313C16.4156 21.4313 16.4281 21.4563 16.4469 21.4656C16.4286 21.4748 16.4125 21.4879 16.4001 21.5042C16.3876 21.5204 16.379 21.5393 16.375 21.5594C16.365 21.5916 16.3664 21.6262 16.3789 21.6575C16.3914 21.6888 16.4143 21.7149 16.4438 21.7313C16.5344 21.7813 16.5969 21.7063 16.675 21.6531C16.6658 21.5936 16.6411 21.5375 16.6031 21.4906C16.6403 21.4857 16.6757 21.4717 16.7062 21.45C16.7559 21.4053 16.7888 21.3451 16.7996 21.2792C16.8104 21.2133 16.7984 21.1457 16.7656 21.0875V21.0875Z" fill="#42D4C6"/>
|
||||
<path d="M22.8906 24.6531C22.8505 24.6858 22.8223 24.7307 22.8105 24.781C22.7986 24.8313 22.8037 24.8841 22.8249 24.9312C22.8429 24.9564 22.868 24.9755 22.897 24.9861C22.926 24.9967 22.9575 24.9983 22.9874 24.9906V25.0062H23.0812L23.0531 24.7094C23.0378 24.6815 23.0127 24.6603 22.9827 24.6499C22.9526 24.6395 22.9198 24.6407 22.8906 24.6531Z" fill="#42D4C6"/>
|
||||
<path d="M20.6187 21.55C20.6047 21.5411 20.5884 21.5364 20.5718 21.5364C20.5552 21.5364 20.539 21.5411 20.525 21.55C20.5094 21.5687 20.4906 21.65 20.525 21.6625C20.5594 21.675 20.6062 21.6625 20.6156 21.6313C20.616 21.6577 20.6218 21.6838 20.6325 21.7079C20.6433 21.7321 20.6588 21.7538 20.6781 21.7719C20.7467 21.7942 20.819 21.8027 20.8909 21.7968C20.9628 21.7909 21.0328 21.7707 21.0969 21.7375C21.1281 21.6281 21.1719 21.4875 21.2094 21.3437C21.2094 21.3437 21.1844 21.2906 21.1625 21.275C21.131 21.2576 21.1037 21.2335 21.0826 21.2043C21.0615 21.1751 21.0472 21.1416 21.0406 21.1063C21.0125 21.0063 20.8719 20.9562 20.8094 21.0219C20.8094 21.0219 20.8094 21.0219 20.7937 21.0219L20.7687 21C20.7532 20.9902 20.7346 20.9866 20.7166 20.9901C20.6985 20.9936 20.6826 21.0038 20.6718 21.0187C20.6639 21.0275 20.6582 21.0381 20.6551 21.0495C20.652 21.0609 20.6517 21.0729 20.6541 21.0845C20.6565 21.0961 20.6617 21.1069 20.6691 21.1161C20.6766 21.1253 20.6861 21.1327 20.6969 21.1375C20.6716 21.182 20.6638 21.2344 20.675 21.2844C20.6853 21.3186 20.6876 21.3547 20.6817 21.39C20.6757 21.4252 20.6616 21.4586 20.6406 21.4875C20.6262 21.5051 20.6185 21.5272 20.6187 21.55Z" fill="#42D4C6"/>
|
||||
<path d="M21.5188 26.6781C21.5332 26.6484 21.5367 26.6147 21.5287 26.5827C21.5207 26.5507 21.5017 26.5225 21.475 26.5031C21.429 26.5219 21.3785 26.5269 21.3296 26.5175C21.2808 26.508 21.2358 26.4846 21.2 26.45C21.1791 26.4472 21.1578 26.4498 21.1382 26.4574C21.1185 26.4651 21.1011 26.4776 21.0875 26.4938C21.1 26.4551 21.1042 26.4143 21.0999 26.3739C21.0956 26.3335 21.0828 26.2945 21.0625 26.2594C21.0406 26.2325 21.0134 26.2105 20.9827 26.1946C20.9519 26.1787 20.9182 26.1693 20.8836 26.1669C20.849 26.1646 20.8143 26.1693 20.7817 26.1809C20.749 26.1926 20.7191 26.2107 20.6938 26.2344C20.6654 26.2543 20.6419 26.2804 20.6251 26.3107C20.6084 26.341 20.5987 26.3748 20.5969 26.4094C20.5535 26.3672 20.497 26.3411 20.4368 26.3355C20.3766 26.3298 20.3162 26.3448 20.2657 26.3781C20.2703 26.3597 20.2703 26.3403 20.2657 26.3219C20.2566 26.2949 20.2423 26.2699 20.2235 26.2484C20.2047 26.227 20.1819 26.2094 20.1563 26.1969H20.125C20.1494 26.1572 20.1673 26.114 20.1782 26.0687C20.2032 25.975 20.2907 25.9219 20.2719 25.8219C20.253 25.7208 20.2001 25.6293 20.1219 25.5625C20.1214 25.5324 20.115 25.5027 20.1032 25.475C20.0594 25.3781 19.9813 25.3594 19.8594 25.45V25.4687C19.8155 25.468 19.7719 25.4765 19.7316 25.4938C19.6912 25.511 19.6549 25.5366 19.625 25.5687C19.5469 25.6531 19.625 25.7812 19.5813 25.8812C19.4844 26.15 19.6719 26.2594 19.8625 26.2938C19.9268 26.3044 19.9927 26.2934 20.05 26.2625C20.05 26.2625 20.0688 26.2437 20.0782 26.2344C20.0791 26.2545 20.084 26.2743 20.0926 26.2925C20.1011 26.3107 20.1132 26.3271 20.1282 26.3406C20.1532 26.3719 20.1719 26.4063 20.2157 26.4156C20.2237 26.4188 20.2326 26.4188 20.2407 26.4156C20.2058 26.4818 20.1958 26.5583 20.2125 26.6313C20.1859 26.6308 20.1597 26.6384 20.1375 26.6531C20.1131 26.6708 20.0962 26.697 20.0904 26.7266C20.0846 26.7562 20.0903 26.7869 20.1063 26.8125C20.1313 26.8656 20.2813 26.8781 20.3063 26.8125C20.3313 26.7469 20.3063 26.7875 20.3063 26.775C20.3513 26.8018 20.4035 26.8138 20.4556 26.8093C20.5078 26.8048 20.5572 26.7841 20.5969 26.75C20.6477 26.7071 20.6811 26.6471 20.6907 26.5812C20.7322 26.6125 20.7815 26.632 20.8332 26.6375C20.8849 26.643 20.9372 26.6344 20.9844 26.6125C20.9763 26.6347 20.9763 26.6591 20.9844 26.6812C20.9924 26.7039 21.0049 26.7248 21.0211 26.7425C21.0373 26.7602 21.057 26.7745 21.0789 26.7844C21.1008 26.7943 21.1245 26.7997 21.1485 26.8003C21.1726 26.8008 21.1965 26.7965 21.2188 26.7875C21.2634 26.7701 21.3008 26.7382 21.325 26.6969C21.3538 26.7186 21.3897 26.7288 21.4256 26.7253C21.4615 26.7218 21.4947 26.705 21.5188 26.6781V26.6781Z" fill="#42D4C6"/>
|
||||
<path d="M21.9124 22.0781C21.9189 22.0957 21.9273 22.1125 21.9374 22.1281C21.9968 22.2406 22.0687 22.2594 22.1718 22.1875C22.2117 22.164 22.2458 22.132 22.2718 22.0938C22.313 22.1077 22.3576 22.1083 22.3991 22.0953C22.4406 22.0824 22.477 22.0567 22.5031 22.0219C22.5191 22.0243 22.5354 22.0233 22.551 22.019C22.5666 22.0147 22.5812 22.0072 22.5937 21.9969C22.6624 21.9531 22.7187 21.9031 22.7062 21.8094C22.6687 21.525 22.6062 21.4688 22.3249 21.4656H22.3031C22.3399 21.4651 22.3761 21.4566 22.4093 21.4406C22.4229 21.437 22.4353 21.43 22.4455 21.4204C22.4556 21.4107 22.4632 21.3986 22.4676 21.3853C22.4719 21.372 22.4729 21.3577 22.4703 21.3439C22.4678 21.3301 22.4619 21.3172 22.4531 21.3063C22.4466 21.2922 22.4372 21.2797 22.4255 21.2697C22.4137 21.2597 22.4 21.2523 22.3851 21.2481C22.3702 21.244 22.3546 21.2431 22.3394 21.2456C22.3241 21.2481 22.3096 21.2539 22.2968 21.2625C22.2649 21.2957 22.2423 21.3366 22.2312 21.3813C22.211 21.357 22.1824 21.3412 22.1511 21.3372C22.1198 21.3331 22.0881 21.3411 22.0624 21.3594C22.0437 21.3723 22.0285 21.3896 22.0179 21.4097C22.0074 21.4299 22.0019 21.4523 22.0019 21.475C22.0019 21.4978 22.0074 21.5201 22.0179 21.5403C22.0285 21.5604 22.0437 21.5777 22.0624 21.5906C22.1374 21.6469 22.1218 21.7125 22.1249 21.7906C21.9249 21.8 21.8499 21.9063 21.9124 22.0781Z" fill="#42D4C6"/>
|
||||
<path d="M20.2749 27.7906C20.3406 27.6906 20.3343 27.5938 20.2749 27.55C20.2226 27.5306 20.166 27.5256 20.111 27.5355C20.056 27.5454 20.0048 27.5698 19.9624 27.6063C19.9506 27.6273 19.9431 27.6504 19.9404 27.6744C19.9378 27.6984 19.94 27.7227 19.947 27.7458C19.954 27.7688 19.9657 27.7903 19.9812 27.8087C19.9968 27.8272 20.0159 27.8423 20.0374 27.8531C20.1374 27.9187 20.1999 27.9031 20.2749 27.7906Z" fill="#42D4C6"/>
|
||||
<path d="M18.7157 26.65C18.6875 26.625 18.6375 26.6281 18.5719 26.6969C18.5561 26.7092 18.543 26.7248 18.5336 26.7425C18.5241 26.7602 18.5185 26.7796 18.517 26.7997C18.5155 26.8197 18.5182 26.8398 18.525 26.8587C18.5318 26.8776 18.5425 26.8948 18.5563 26.9094C18.5755 26.9288 18.5983 26.9443 18.6236 26.9548C18.6488 26.9654 18.6758 26.9708 18.7032 26.9708C18.7305 26.9708 18.7576 26.9654 18.7828 26.9548C18.808 26.9443 18.8309 26.9288 18.8501 26.9094C18.9376 26.8344 18.9094 26.7719 18.9719 26.7281C19.0344 26.6844 19.0282 26.6375 19 26.5625C18.993 26.5432 18.9847 26.5244 18.975 26.5062C19.0563 26.4625 19.1157 26.4125 19.0907 26.3219C19.082 26.3015 19.0682 26.2836 19.0507 26.2699C19.0333 26.2563 19.0126 26.2473 18.9907 26.2438C18.9343 26.2519 18.883 26.2809 18.8469 26.325C18.8393 26.3389 18.8352 26.3545 18.8352 26.3703C18.8352 26.3862 18.8393 26.4018 18.8469 26.4156C18.8469 26.4156 18.8282 26.4156 18.8188 26.4156C18.7157 26.4594 18.7313 26.5344 18.7469 26.5625C18.7625 26.5906 18.7438 26.675 18.7157 26.65Z" fill="#42D4C6"/>
|
||||
<path d="M19.7968 28.8438C19.7218 28.9281 19.6999 29.0063 19.7374 29.0469C19.7731 29.069 19.8142 29.0808 19.8562 29.0808C19.8982 29.0808 19.9393 29.069 19.975 29.0469C20.0156 29.0094 19.9999 28.8844 19.9531 28.8344C19.943 28.8232 19.9306 28.8144 19.9167 28.8087C19.9027 28.803 19.8877 28.8005 19.8727 28.8014C19.8577 28.8023 19.8431 28.8066 19.8299 28.8139C19.8168 28.8212 19.8055 28.8314 19.7968 28.8438V28.8438Z" fill="#42D4C6"/>
|
||||
<path d="M21.1031 28.6969C21.0933 28.712 21.0867 28.729 21.0839 28.7468C21.0812 28.7646 21.0821 28.7828 21.0869 28.8002C21.0916 28.8177 21.0999 28.8339 21.1113 28.8478C21.1228 28.8618 21.137 28.8732 21.1531 28.8812C21.1808 28.8952 21.2126 28.8987 21.2427 28.891C21.2727 28.8833 21.299 28.865 21.3165 28.8394C21.3341 28.8138 21.3418 28.7828 21.3382 28.752C21.3346 28.7211 21.3199 28.6927 21.2968 28.6719C21.2676 28.6501 21.2311 28.6406 21.1949 28.6452C21.1588 28.6499 21.1259 28.6684 21.1031 28.6969V28.6969Z" fill="#42D4C6"/>
|
||||
<path d="M22.4624 29.4375C22.5093 29.3625 22.6187 29.2 22.5437 29.0875C22.4687 28.975 22.3937 29.0656 22.3156 29.0563C22.2728 29.0504 22.2293 29.0605 22.1935 29.0847C22.1578 29.109 22.1322 29.1456 22.1218 29.1875C22.0999 29.2844 22.1218 29.3875 22.0937 29.4312C22.0656 29.475 22.0156 29.5094 21.9593 29.4594C21.9031 29.4094 21.7781 29.4094 21.6812 29.5375C21.5843 29.6656 21.6531 29.85 21.7687 29.85C21.8843 29.85 21.9187 29.7906 21.9499 29.8187C21.9812 29.8469 22.0062 29.9437 22.0843 29.9375C22.1624 29.9312 22.2437 29.7156 22.2374 29.6781C22.2312 29.6406 22.1749 29.5437 22.2374 29.5094C22.2999 29.475 22.4187 29.5 22.4624 29.4375Z" fill="#42D4C6"/>
|
||||
<path d="M21.5562 28.2125C21.5773 28.1826 21.5919 28.1486 21.5993 28.1128C21.6066 28.0769 21.6065 28.0399 21.5988 28.0041C21.5912 27.9683 21.5763 27.9345 21.5549 27.9047C21.5336 27.875 21.5064 27.85 21.4749 27.8312C21.4342 27.804 21.385 27.7923 21.3364 27.798C21.2877 27.8037 21.2426 27.8266 21.2093 27.8625L21.1843 27.8469C21.1283 27.8259 21.0667 27.8246 21.0099 27.8434C20.9531 27.8622 20.9043 27.8998 20.8718 27.95C20.8509 27.9893 20.8412 28.0337 20.8437 28.0781C20.8288 28.0743 20.8133 28.0736 20.7982 28.0763C20.7831 28.079 20.7688 28.085 20.7562 28.0938C20.7418 28.1045 20.7298 28.118 20.7208 28.1335C20.7117 28.1489 20.7059 28.166 20.7035 28.1838C20.7012 28.2016 20.7024 28.2196 20.7072 28.2369C20.7119 28.2542 20.7201 28.2703 20.7312 28.2844C20.7381 28.2997 20.7486 28.3131 20.7617 28.3236C20.7748 28.3341 20.7903 28.3413 20.8068 28.3447C20.8232 28.348 20.8403 28.3474 20.8565 28.3429C20.8727 28.3384 20.8876 28.3301 20.8999 28.3187C20.9137 28.3085 20.9253 28.2958 20.9343 28.2812V28.2812C20.9784 28.3087 21.0293 28.3232 21.0812 28.3232C21.1331 28.3232 21.184 28.3087 21.2281 28.2812C21.2824 28.3087 21.3445 28.3168 21.4041 28.3043C21.4638 28.2918 21.5174 28.2595 21.5562 28.2125V28.2125Z" fill="#42D4C6"/>
|
||||
<path d="M20.2563 19.4594C20.249 19.467 20.245 19.477 20.245 19.4875C20.245 19.498 20.249 19.5081 20.2563 19.5156C20.2751 19.5344 20.3032 19.5156 20.3126 19.5156C20.3173 19.5081 20.3198 19.4995 20.3198 19.4906C20.3198 19.4818 20.3173 19.4731 20.3126 19.4656C20.3058 19.4575 20.2962 19.4523 20.2857 19.4511C20.2752 19.4499 20.2647 19.4529 20.2563 19.4594V19.4594Z" fill="#42D4C6"/>
|
||||
<path d="M16.1999 23.5C16.2009 23.5433 16.2108 23.586 16.2291 23.6252C16.2474 23.6645 16.2736 23.6995 16.3062 23.7281C16.3749 23.8 16.3749 23.9 16.4687 23.9375C16.5512 23.9727 16.6429 23.9799 16.7299 23.9578C16.8168 23.9358 16.8941 23.8859 16.9499 23.8156C16.9885 23.7745 17.0159 23.7242 17.0295 23.6695C17.0432 23.6148 17.0427 23.5576 17.0281 23.5031C16.9968 23.3906 16.8468 23.3906 16.7687 23.2938L16.7374 23.2594H16.7656C16.8038 23.1979 16.824 23.127 16.824 23.0547C16.824 22.9823 16.8038 22.9114 16.7656 22.85C16.7383 22.8227 16.7034 22.8042 16.6656 22.7969C16.711 22.7487 16.7364 22.685 16.7364 22.6188C16.7364 22.5525 16.711 22.4888 16.6656 22.4406L16.6406 22.4156C16.7143 22.4354 16.7929 22.4253 16.8593 22.3875C16.889 22.3538 16.9053 22.3105 16.9053 22.2656C16.9053 22.2208 16.889 22.1774 16.8593 22.1437C16.8443 22.121 16.8246 22.1017 16.8014 22.0873C16.7782 22.073 16.7522 22.0638 16.7251 22.0606C16.698 22.0573 16.6706 22.06 16.6446 22.0684C16.6187 22.0768 16.5949 22.0908 16.5749 22.1094C16.4937 22.1656 16.4562 22.2844 16.5031 22.3438L16.5249 22.3656C16.4851 22.3578 16.4441 22.3588 16.4046 22.3685C16.3652 22.3782 16.3284 22.3964 16.2968 22.4219C16.2729 22.4409 16.2528 22.4642 16.2374 22.4906C16.2093 22.4091 16.1542 22.3397 16.0812 22.2938C16.0812 22.4469 16.0812 22.6063 16.0812 22.7531C16.1405 22.7209 16.1901 22.6735 16.2249 22.6156C16.2332 22.6755 16.2619 22.7307 16.3062 22.7719C16.338 22.8106 16.3773 22.8425 16.4218 22.8656V22.8656C16.3823 22.9166 16.3608 22.9793 16.3608 23.0438C16.3608 23.1082 16.3823 23.1709 16.4218 23.2219C16.3735 23.2524 16.3302 23.2904 16.2937 23.3344C16.2439 23.3768 16.2107 23.4355 16.1999 23.5Z" fill="#42D4C6"/>
|
||||
<path d="M18.1625 23.9687C18.1823 23.8879 18.1763 23.8029 18.1455 23.7256C18.1147 23.6483 18.0606 23.5826 17.9906 23.5375C17.9486 23.5102 17.9015 23.4914 17.8522 23.4823C17.8028 23.4732 17.7522 23.4739 17.7031 23.4844C17.6376 23.504 17.5791 23.542 17.5344 23.5937C17.5138 23.5807 17.49 23.5737 17.4656 23.5737C17.4413 23.5737 17.4174 23.5807 17.3969 23.5937C17.3703 23.619 17.3531 23.6525 17.348 23.6888C17.3429 23.7251 17.3502 23.7621 17.3687 23.7937C17.3827 23.8101 17.4008 23.8225 17.4211 23.8296C17.4414 23.8368 17.4632 23.8384 17.4844 23.8344C17.5156 23.9344 17.5844 24.0312 17.5656 24.0656C17.5469 24.1 17.325 24.125 17.2719 24.2812C17.2509 24.3513 17.2577 24.4267 17.2908 24.4919C17.324 24.5571 17.381 24.607 17.45 24.6312C17.5382 24.6499 17.63 24.6428 17.7142 24.6106C17.7985 24.5785 17.8717 24.5227 17.925 24.45C17.9844 24.3281 17.8594 24.2187 17.8688 24.1844C17.8781 24.15 18.0969 24.125 18.1625 23.9687Z" fill="#42D4C6"/>
|
||||
<path d="M20.5781 18.8719C20.5388 18.8128 20.4806 18.7689 20.413 18.7473C20.3454 18.7257 20.2725 18.7278 20.2062 18.7531C20.1525 18.7824 20.1113 18.8304 20.0906 18.888C20.0698 18.9456 20.071 19.0088 20.0937 19.0656C20.1026 19.0972 20.1181 19.1265 20.1393 19.1515C20.1604 19.1765 20.1867 19.1966 20.2164 19.2106C20.246 19.2245 20.2783 19.2319 20.3111 19.2322C20.3439 19.2326 20.3763 19.2259 20.4062 19.2125C20.44 19.2016 20.4712 19.184 20.4981 19.1609C20.525 19.1378 20.5471 19.1097 20.5631 19.078C20.5791 19.0463 20.5886 19.0118 20.5912 18.9764C20.5938 18.9411 20.5893 18.9055 20.5781 18.8719V18.8719Z" fill="#42D4C6"/>
|
||||
<path d="M17.7032 25.4156C17.6648 25.4509 17.6408 25.499 17.6356 25.5509C17.6304 25.6027 17.6444 25.6547 17.6751 25.6969C17.7061 25.7441 17.7547 25.7771 17.8101 25.7885C17.8655 25.7999 17.9231 25.7889 17.9704 25.7578C18.0176 25.7267 18.0506 25.6782 18.062 25.6228C18.0734 25.5674 18.0624 25.5097 18.0313 25.4625C17.9865 25.4247 17.932 25.4003 17.874 25.392C17.816 25.3837 17.7568 25.3919 17.7032 25.4156Z" fill="#42D4C6"/>
|
||||
<path d="M17.8875 26.2281C17.8764 26.2392 17.8669 26.2519 17.8594 26.2656V26.2656C17.8372 26.3052 17.8256 26.3499 17.8256 26.3953C17.8256 26.4407 17.8372 26.4854 17.8594 26.525C17.8965 26.5547 17.9418 26.5724 17.9893 26.5758C18.0367 26.5791 18.084 26.5679 18.125 26.5437C18.1549 26.519 18.1758 26.485 18.1843 26.4471C18.1928 26.4092 18.1884 26.3695 18.1719 26.3344C18.0875 26.2187 17.9625 26.1719 17.8875 26.2281Z" fill="#42D4C6"/>
|
||||
<path d="M20.4437 25.8656C20.3468 25.8656 20.3468 25.9531 20.3406 26.025C20.4031 26.0844 20.4687 26.1125 20.5312 26.05C20.5438 26.0351 20.5522 26.0171 20.5555 25.9979C20.5588 25.9786 20.5569 25.9589 20.55 25.9406C20.5388 25.9211 20.5235 25.9042 20.5052 25.8913C20.4868 25.8783 20.4658 25.8696 20.4437 25.8656V25.8656Z" fill="#42D4C6"/>
|
||||
<path d="M19.2938 29.1469C19.2948 29.1273 19.2917 29.1078 19.2847 29.0895C19.2777 29.0712 19.267 29.0545 19.2532 29.0406C19.1993 28.9945 19.1418 28.9527 19.0813 28.9156C19.0282 28.8844 18.9875 28.9156 18.9563 28.9594C18.925 29.0031 18.9563 29.0125 18.975 29.0219C19.0248 29.0643 19.058 29.123 19.0688 29.1875C19.0841 29.2042 19.1031 29.2171 19.1242 29.2252C19.1454 29.2334 19.1681 29.2365 19.1906 29.2344C19.2132 29.2282 19.2341 29.2172 19.252 29.2021C19.2698 29.187 19.2841 29.1681 19.2938 29.1469V29.1469Z" fill="#42D4C6"/>
|
||||
<path d="M19.3688 28.4625C19.3852 28.4245 19.3886 28.3821 19.3784 28.342C19.3683 28.3018 19.3451 28.2662 19.3125 28.2406C19.2604 28.2208 19.204 28.2153 19.1491 28.2246C19.0941 28.234 19.0426 28.2578 19 28.2938C18.9859 28.3465 18.9907 28.4026 19.0135 28.4522C19.0363 28.5019 19.0758 28.542 19.125 28.5656C19.2063 28.6188 19.2938 28.5812 19.3688 28.4625Z" fill="#42D4C6"/>
|
||||
<path d="M19.0249 27.5313C19.0209 27.4913 19.0059 27.4533 18.9816 27.4213C18.9574 27.3894 18.9248 27.3647 18.8874 27.35C18.8567 27.339 18.8235 27.3367 18.7916 27.3434C18.7596 27.35 18.7301 27.3652 18.7062 27.3875C18.6778 27.4101 18.6553 27.4393 18.6406 27.4725C18.6259 27.5056 18.6195 27.5419 18.6218 27.5781C18.6218 27.6531 18.6218 27.7406 18.6812 27.7781C18.6981 27.7905 18.7176 27.7986 18.7383 27.8019C18.7589 27.8052 18.7801 27.8034 18.7999 27.7969C18.8447 27.7995 18.889 27.7862 18.9249 27.7594C18.9564 27.7302 18.9814 27.695 18.9986 27.6557C19.0158 27.6165 19.0248 27.5741 19.0249 27.5313V27.5313Z" fill="#42D4C6"/>
|
||||
<path d="M18.7844 28.675C18.7949 28.6639 18.8021 28.6503 18.8054 28.6354C18.8087 28.6206 18.8079 28.6051 18.8032 28.5906C18.8032 28.5687 18.7313 28.5219 18.7032 28.55C18.6925 28.5663 18.6869 28.5853 18.6869 28.6047C18.6869 28.6241 18.6925 28.6431 18.7032 28.6594C18.7145 28.6683 18.7278 28.6743 18.7419 28.677C18.756 28.6797 18.7706 28.679 18.7844 28.675V28.675Z" fill="#42D4C6"/>
|
||||
<path d="M18.5312 25.975C18.5455 25.9861 18.5631 25.9922 18.5812 25.9922C18.5993 25.9922 18.6169 25.9861 18.6312 25.975C18.7218 25.9 18.7406 25.8156 18.6968 25.7562C18.6849 25.7392 18.6695 25.7248 18.6516 25.7142C18.6337 25.7035 18.6138 25.6968 18.5931 25.6944C18.5724 25.6921 18.5514 25.6941 18.5316 25.7005C18.5118 25.7068 18.4935 25.7173 18.4781 25.7313C18.4664 25.7426 18.457 25.7562 18.4507 25.7712C18.4443 25.7863 18.441 25.8024 18.441 25.8187C18.441 25.8351 18.4443 25.8512 18.4507 25.8663C18.457 25.8813 18.4664 25.8949 18.4781 25.9063C18.4547 25.8988 18.4296 25.8988 18.4062 25.9063C18.3374 25.9219 18.3312 25.9688 18.3718 26.1063C18.3914 26.1128 18.4123 26.1142 18.4326 26.1104C18.4529 26.1067 18.4719 26.0978 18.4878 26.0847C18.5037 26.0716 18.5161 26.0546 18.5237 26.0355C18.5312 26.0163 18.5338 25.9955 18.5312 25.975V25.975Z" fill="#42D4C6"/>
|
||||
<path d="M19.5344 28.0219C19.6032 27.9656 19.625 27.8969 19.5813 27.8531C19.5493 27.8262 19.5104 27.8087 19.469 27.8026C19.4276 27.7965 19.3853 27.8021 19.3469 27.8188C19.3338 27.8316 19.3234 27.8469 19.3162 27.8638C19.3091 27.8807 19.3054 27.8988 19.3054 27.9172C19.3054 27.9355 19.3091 27.9537 19.3162 27.9706C19.3234 27.9875 19.3338 28.0028 19.3469 28.0156C19.3712 28.0409 19.4044 28.0557 19.4394 28.0569C19.4744 28.0581 19.5085 28.0455 19.5344 28.0219V28.0219Z" fill="#42D4C6"/>
|
||||
<path d="M20.375 32.5781C20.3881 32.5884 20.4033 32.5956 20.4195 32.5995C20.4357 32.6033 20.4525 32.6036 20.4688 32.6004C20.4852 32.5971 20.5006 32.5903 20.5141 32.5806C20.5275 32.5708 20.5387 32.5582 20.5469 32.5437C20.5938 32.4687 20.5813 32.3437 20.5282 32.3125C20.4901 32.3064 20.4511 32.3107 20.4153 32.325C20.3796 32.3393 20.3483 32.3631 20.325 32.3938C20.3152 32.4089 20.3087 32.4259 20.3059 32.4437C20.3031 32.4615 20.3041 32.4797 20.3088 32.4971C20.3135 32.5145 20.3218 32.5307 20.3333 32.5447C20.3447 32.5586 20.3589 32.57 20.375 32.5781V32.5781Z" fill="#42D4C6"/>
|
||||
<path d="M20.3719 31.475C20.3719 31.45 20.3719 31.3906 20.3313 31.3625C20.3177 31.3451 20.3004 31.3309 20.2807 31.3209C20.2609 31.3109 20.2392 31.3054 20.2171 31.3048C20.195 31.3042 20.1731 31.3085 20.1528 31.3173C20.1326 31.3262 20.1145 31.3394 20.1 31.3561C20.0854 31.3727 20.0748 31.3924 20.0687 31.4137C20.0627 31.4349 20.0614 31.4573 20.065 31.4791C20.0686 31.5009 20.0769 31.5216 20.0895 31.5398C20.102 31.558 20.1184 31.5733 20.1375 31.5844C20.1938 31.625 20.3063 31.5781 20.3719 31.475Z" fill="#42D4C6"/>
|
||||
<path d="M19.5563 28.2938C19.5657 28.3254 19.5856 28.3529 19.6125 28.3719C19.6433 28.3915 19.6777 28.4047 19.7137 28.4106C19.7497 28.4165 19.7865 28.415 19.8219 28.4063C19.8188 28.4164 19.8188 28.4273 19.8219 28.4375C19.8219 28.4562 19.9063 28.4375 19.9344 28.4375C19.9397 28.4263 19.9424 28.414 19.9424 28.4016C19.9424 28.3891 19.9397 28.3769 19.9344 28.3656C19.9184 28.3547 19.9003 28.3472 19.8813 28.3438C19.8918 28.2972 19.8882 28.2485 19.8709 28.204C19.8536 28.1595 19.8235 28.1211 19.7844 28.0938C19.74 28.0848 19.6939 28.0888 19.6518 28.1054C19.6096 28.1221 19.5732 28.1506 19.5469 28.1875C19.5419 28.207 19.5419 28.2274 19.5469 28.2469C19.5408 28.2418 19.533 28.239 19.525 28.239C19.5171 28.239 19.5093 28.2418 19.5032 28.2469C19.4965 28.2548 19.4929 28.2647 19.4929 28.275C19.4929 28.2853 19.4965 28.2952 19.5032 28.3031C19.5032 28.3031 19.5469 28.3 19.5563 28.2938Z" fill="#42D4C6"/>
|
||||
<path d="M18.5187 25.4813C18.5511 25.4558 18.5723 25.4189 18.5781 25.3781C18.5797 25.3688 18.5797 25.3593 18.5781 25.35C18.6002 25.3677 18.6278 25.3774 18.6562 25.3774C18.6846 25.3774 18.7122 25.3677 18.7343 25.35C18.8312 25.2719 18.8656 25.1937 18.825 25.1375C18.7897 25.1038 18.7446 25.0823 18.6962 25.0761C18.6479 25.0699 18.5988 25.0794 18.5562 25.1031C18.5444 25.1144 18.535 25.128 18.5286 25.1431C18.5221 25.1581 18.5188 25.1743 18.5187 25.1906C18.4802 25.1468 18.4288 25.1161 18.3718 25.1031L18.2843 25.0844V25.0656L18.3218 25.0469C18.3668 25.0051 18.3948 24.9483 18.4006 24.8872C18.4063 24.8261 18.3894 24.7651 18.3531 24.7156C18.2718 24.6 18.15 24.5906 18.0187 24.6875C17.9924 24.7023 17.9695 24.7226 17.9517 24.747C17.9338 24.7714 17.9214 24.7993 17.9152 24.8289C17.909 24.8585 17.9091 24.889 17.9157 24.9185C17.9222 24.948 17.935 24.9758 17.9531 25C17.9531 25 17.9531 25 17.9781 25.0219C18.0128 25.0689 18.0504 25.1138 18.0906 25.1562L18.0718 25.2406C18.0635 25.2948 18.0716 25.3502 18.0949 25.3998C18.1183 25.4493 18.156 25.4907 18.2031 25.5188C18.2542 25.5413 18.3105 25.5497 18.366 25.5431C18.4215 25.5365 18.4743 25.5152 18.5187 25.4813V25.4813Z" fill="#42D4C6"/>
|
||||
<path d="M19.9093 30.8187C19.9321 30.8361 19.9585 30.8483 19.9865 30.8544C20.0145 30.8605 20.0435 30.8604 20.0714 30.8542C20.0994 30.8479 20.1257 30.8357 20.1484 30.8182C20.1712 30.8007 20.1898 30.7785 20.2031 30.7531C20.231 30.7138 20.2427 30.6652 20.2357 30.6175C20.2287 30.5698 20.2036 30.5266 20.1656 30.4969C20.1078 30.4708 20.0428 30.4653 19.9814 30.4812C19.92 30.4971 19.8659 30.5335 19.8281 30.5844C19.8127 30.6268 19.8124 30.6733 19.8272 30.716C19.8419 30.7586 19.8709 30.7949 19.9093 30.8187V30.8187Z" fill="#42D4C6"/>
|
||||
<path d="M20.6781 31.1625C20.7062 31.0906 20.6344 31.025 20.5969 30.9938C20.5594 30.9625 20.4969 30.9938 20.4688 31.0469C20.4406 31.1 20.4688 31.1844 20.5094 31.1969C20.55 31.2094 20.6531 31.2375 20.6781 31.1625Z" fill="#42D4C6"/>
|
||||
<path d="M20.1219 29.7906C20.1369 29.7696 20.1473 29.7456 20.1523 29.7203C20.1573 29.6949 20.1569 29.6688 20.1509 29.6436C20.145 29.6185 20.1338 29.5949 20.118 29.5744C20.1022 29.5539 20.0822 29.5371 20.0594 29.525C20.0341 29.5054 20.0047 29.4915 19.9735 29.4845C19.9422 29.4774 19.9098 29.4773 19.8785 29.4841C19.8472 29.491 19.8178 29.5047 19.7924 29.5241C19.7669 29.5436 19.746 29.5684 19.7313 29.5969C19.6987 29.6454 19.6855 29.7044 19.6941 29.7622C19.7028 29.82 19.7328 29.8725 19.7781 29.9094C19.8688 29.975 20.0406 29.9156 20.1219 29.7906Z" fill="#42D4C6"/>
|
||||
<path d="M15.9812 24.875C15.9827 24.8958 15.9827 24.9167 15.9812 24.9375C15.9851 24.9168 15.9851 24.8957 15.9812 24.875V24.875Z" fill="#42D4C6"/>
|
||||
<path d="M17.0062 28.1406C17.0311 28.1147 17.0464 28.0812 17.0498 28.0454C17.0532 28.0097 17.0445 27.9739 17.025 27.9437C17.0156 27.93 17.0036 27.9184 16.9896 27.9094C16.9756 27.9005 16.9599 27.8946 16.9435 27.892C16.9272 27.8893 16.9104 27.8901 16.8943 27.8941C16.8782 27.8982 16.8631 27.9055 16.85 27.9156C16.8175 27.9378 16.7951 27.9719 16.7875 28.0104C16.7799 28.049 16.7877 28.089 16.8094 28.1219C16.8347 28.1478 16.8683 28.1639 16.9044 28.1673C16.9404 28.1707 16.9765 28.1613 17.0062 28.1406V28.1406Z" fill="#42D4C6"/>
|
||||
<path d="M15.9906 25.3563C15.9906 25.3375 15.9593 25.3219 15.9343 25.3094C15.9343 25.3594 15.9343 25.4094 15.9343 25.4594C15.9625 25.4313 15.9999 25.375 15.9906 25.3563Z" fill="#42D4C6"/>
|
||||
<path d="M19.8562 16.9094H19.8718C19.7683 16.8947 19.6639 16.8864 19.5593 16.8844C19.5637 16.8968 19.57 16.9084 19.5781 16.9188C19.6149 16.9425 19.6573 16.9565 19.701 16.9592C19.7448 16.9619 19.7885 16.9534 19.8281 16.9344C19.8129 16.9452 19.8004 16.9592 19.7912 16.9754C19.782 16.9916 19.7765 17.0096 19.775 17.0281C19.7615 17.0708 19.7615 17.1167 19.775 17.1594C19.7898 17.2 19.8135 17.2367 19.8443 17.267C19.8751 17.2973 19.9122 17.3203 19.9531 17.3344C19.992 17.3447 20.0331 17.344 20.0717 17.3324C20.1103 17.3208 20.145 17.2988 20.1718 17.2688C20.182 17.2564 20.1904 17.2427 20.1968 17.2281C20.2065 17.2617 20.2236 17.2926 20.2468 17.3187C20.2809 17.3435 20.3231 17.3544 20.3649 17.3492C20.4067 17.344 20.4449 17.3231 20.4718 17.2906C20.4963 17.2679 20.5146 17.2394 20.5249 17.2077C20.5353 17.176 20.5375 17.1421 20.5312 17.1094C20.4299 17.0635 20.3255 17.0249 20.2187 16.9938C20.1995 17.016 20.1865 17.043 20.1812 17.0719C20.1612 17.0254 20.1287 16.9854 20.0875 16.9563L19.8843 16.9125L19.8562 16.9094Z" fill="#42D4C6"/>
|
||||
<path d="M18.8 17.1969C18.8311 17.2267 18.8725 17.2435 18.9156 17.2437C18.9266 17.2661 18.9403 17.2871 18.9562 17.3063C18.9869 17.3349 19.026 17.3528 19.0677 17.3573C19.1094 17.3618 19.1514 17.3527 19.1875 17.3313C19.2245 17.2893 19.2495 17.2381 19.2599 17.1831C19.2704 17.1282 19.2659 17.0714 19.2469 17.0188C19.2325 17.0047 19.2153 16.9938 19.1965 16.9868C19.1777 16.9798 19.1576 16.9769 19.1375 16.9781C19.1309 16.9556 19.1203 16.9344 19.1062 16.9156C18.9874 16.9381 18.8704 16.9694 18.7562 17.0094C18.7504 17.042 18.7513 17.0754 18.7588 17.1076C18.7663 17.1399 18.7804 17.1702 18.8 17.1969V17.1969Z" fill="#42D4C6"/>
|
||||
<path d="M18.1719 27.1719C18.1473 27.145 18.1141 27.1277 18.078 27.1232C18.0419 27.1186 18.0054 27.127 17.975 27.1469C17.9461 27.1737 17.9283 27.2103 17.9248 27.2495C17.9213 27.2888 17.9325 27.3279 17.9562 27.3594C17.9775 27.3843 18.0075 27.4001 18.04 27.4036C18.0725 27.407 18.1052 27.3979 18.1312 27.3781C18.1483 27.368 18.1631 27.3545 18.1746 27.3383C18.1861 27.3221 18.194 27.3036 18.1978 27.2841C18.2017 27.2646 18.2014 27.2446 18.1969 27.2252C18.1924 27.2059 18.1839 27.1877 18.1719 27.1719V27.1719Z" fill="#42D4C6"/>
|
||||
<path d="M17.1124 27.2C17.0921 27.1699 17.0608 27.1489 17.0253 27.1413C16.9898 27.1337 16.9527 27.1402 16.9218 27.1594C16.9065 27.1658 16.893 27.1757 16.8822 27.1883C16.8715 27.2009 16.8638 27.2159 16.8599 27.232C16.8559 27.2481 16.8558 27.2649 16.8595 27.281C16.8632 27.2972 16.8706 27.3122 16.8812 27.325C16.8899 27.3413 16.9019 27.3557 16.9164 27.3671C16.9309 27.3786 16.9477 27.3869 16.9656 27.3916C16.9835 27.3963 17.0022 27.3972 17.0204 27.3944C17.0387 27.3915 17.0562 27.3849 17.0718 27.375C17.099 27.356 17.1182 27.3276 17.1257 27.2953C17.1332 27.263 17.1285 27.2291 17.1124 27.2V27.2Z" fill="#42D4C6"/>
|
||||
<path d="M17.9593 30.2687C17.9964 30.2794 18.036 30.2769 18.0714 30.2615C18.1068 30.2461 18.1356 30.2188 18.1531 30.1844C18.1584 30.1649 18.1589 30.1444 18.1544 30.1247C18.1499 30.105 18.1405 30.0867 18.1272 30.0716C18.1139 30.0564 18.097 30.0447 18.078 30.0377C18.0591 30.0307 18.0387 30.0285 18.0187 30.0313C17.9812 30.0313 17.9562 30.1313 17.9343 30.1875C17.93 30.1943 17.9273 30.202 17.9263 30.21C17.9252 30.218 17.9259 30.2261 17.9283 30.2338C17.9306 30.2415 17.9346 30.2486 17.94 30.2547C17.9453 30.2607 17.9519 30.2655 17.9593 30.2687V30.2687Z" fill="#42D4C6"/>
|
||||
<path d="M17.2031 26.5875C17.2229 26.5708 17.2388 26.55 17.2496 26.5265C17.2605 26.503 17.2662 26.4774 17.2662 26.4516C17.2662 26.4257 17.2605 26.4001 17.2496 26.3766C17.2388 26.3532 17.2229 26.3323 17.2031 26.3156C17.1438 26.2375 17.0469 26.2375 16.9469 26.3156C16.9296 26.3251 16.9145 26.3379 16.9023 26.3533C16.8901 26.3687 16.8811 26.3864 16.8758 26.4053C16.8706 26.4242 16.8692 26.444 16.8717 26.4635C16.8743 26.483 16.8807 26.5018 16.8906 26.5187C16.9305 26.5592 16.9812 26.5872 17.0367 26.5994C17.0922 26.6116 17.15 26.6075 17.2031 26.5875V26.5875Z" fill="#42D4C6"/>
|
||||
<path d="M18.1531 29.1937C18.14 29.1841 18.1252 29.1773 18.1094 29.1735C18.0936 29.1697 18.0773 29.1691 18.0613 29.1717C18.0453 29.1743 18.0299 29.1801 18.0162 29.1887C18.0025 29.1973 17.9906 29.2086 17.9812 29.2219C17.973 29.2344 17.9675 29.2484 17.9651 29.2632C17.9627 29.278 17.9635 29.2931 17.9673 29.3075C17.9711 29.322 17.978 29.3355 17.9874 29.3471C17.9968 29.3587 18.0085 29.3682 18.0219 29.375C18.0328 29.3832 18.0453 29.3891 18.0586 29.3923C18.0719 29.3955 18.0857 29.396 18.0992 29.3936C18.1126 29.3913 18.1255 29.3862 18.1369 29.3787C18.1484 29.3712 18.1581 29.3614 18.1656 29.35C18.1757 29.3392 18.1834 29.3265 18.1882 29.3125C18.1931 29.2986 18.195 29.2838 18.1938 29.2691C18.1926 29.2544 18.1884 29.2401 18.1814 29.2272C18.1744 29.2142 18.1647 29.2028 18.1531 29.1937Z" fill="#42D4C6"/>
|
||||
<path d="M18.0593 27.8937C18.0719 27.8886 18.083 27.8804 18.0916 27.8699C18.1002 27.8593 18.106 27.8468 18.1085 27.8334C18.111 27.82 18.1101 27.8062 18.1059 27.7933C18.1016 27.7804 18.0942 27.7687 18.0843 27.7594C18.0406 27.7125 17.9937 27.6781 17.9281 27.7187C17.8625 27.7594 17.8781 27.8969 17.9281 27.9188C17.9504 27.9246 17.9738 27.9253 17.9965 27.921C18.0192 27.9167 18.0407 27.9074 18.0593 27.8937Z" fill="#42D4C6"/>
|
||||
<path d="M17.4937 28.1875C17.5187 28.1219 17.375 27.95 17.2969 27.9594C17.2187 27.9688 17.2 28.1594 17.2719 28.2125C17.3437 28.2656 17.45 28.2406 17.4937 28.1875Z" fill="#42D4C6"/>
|
||||
<path d="M20.7749 31.4437C20.8104 31.4466 20.8459 31.4402 20.8781 31.425C20.9218 31.3406 20.9031 31.2625 20.8437 31.25C20.7995 31.2438 20.7547 31.255 20.7187 31.2813C20.7103 31.2953 20.7051 31.3111 20.7035 31.3273C20.7018 31.3436 20.7037 31.3601 20.7091 31.3756C20.7144 31.3911 20.7231 31.4052 20.7345 31.4169C20.7459 31.4287 20.7597 31.4379 20.7749 31.4437V31.4437Z" fill="#42D4C6"/>
|
||||
<path d="M20.6906 29.8656C20.6279 29.8344 20.5566 29.8251 20.488 29.8393C20.4195 29.8535 20.3576 29.8903 20.3125 29.9438C20.2312 30.0531 20.2843 30.2094 20.4312 30.3125C20.48 30.3459 20.5399 30.359 20.5982 30.3491C20.6565 30.3392 20.7087 30.307 20.7437 30.2594C20.7819 30.1978 20.7975 30.1248 20.7878 30.053C20.7781 29.9811 20.7437 29.9149 20.6906 29.8656V29.8656Z" fill="#42D4C6"/>
|
||||
<path d="M21.4 17.7219L21.3812 17.7031L21.4 17.7219Z" fill="#42D4C6"/>
|
||||
<path d="M21.6031 18.3125C21.6031 18.3875 21.6375 18.4688 21.7313 18.4813C21.748 18.4839 21.7651 18.483 21.7815 18.4787C21.7979 18.4743 21.8132 18.4666 21.8264 18.456C21.8396 18.4454 21.8505 18.4322 21.8584 18.4172C21.8662 18.4022 21.8708 18.3857 21.8719 18.3688C21.8726 18.3365 21.8662 18.3045 21.8531 18.275L21.825 18.2406C21.7344 18.1875 21.6625 18.2344 21.6031 18.3125Z" fill="#42D4C6"/>
|
||||
<path d="M22.9094 21.6625L22.9313 21.6844C22.9313 21.5938 22.9313 21.4969 22.9094 21.4062C22.8281 21.4656 22.8313 21.5594 22.9094 21.6625Z" fill="#42D4C6"/>
|
||||
<path d="M23.4312 30.8969C23.4521 30.9121 23.4762 30.9224 23.5017 30.927C23.5271 30.9316 23.5533 30.9304 23.5782 30.9235C23.6032 30.9166 23.6262 30.9042 23.6457 30.8871C23.6651 30.8701 23.6805 30.8488 23.6906 30.825C23.7468 30.725 23.7312 30.625 23.6562 30.5844C23.6019 30.5631 23.5423 30.5598 23.486 30.575C23.4298 30.5902 23.3799 30.623 23.3437 30.6687C23.3305 30.7111 23.3319 30.7566 23.3478 30.798C23.3637 30.8394 23.3931 30.8743 23.4312 30.8969V30.8969Z" fill="#42D4C6"/>
|
||||
<path d="M23.675 29.1656C23.6567 29.1896 23.6438 29.2172 23.637 29.2466C23.6302 29.2759 23.6298 29.3064 23.6357 29.336C23.6416 29.3655 23.6538 29.3935 23.6713 29.418C23.6889 29.4425 23.7114 29.463 23.7375 29.4781C23.7756 29.5038 23.8188 29.5207 23.8642 29.5277C23.9096 29.5347 23.9559 29.5317 24 29.5188C23.9531 29.3719 23.9094 29.225 23.8656 29.0719C23.8292 29.0741 23.7936 29.0835 23.7609 29.0996C23.7282 29.1157 23.699 29.1381 23.675 29.1656V29.1656Z" fill="#42D4C6"/>
|
||||
<path d="M24.8937 32.5625C24.8771 32.5842 24.8651 32.609 24.8585 32.6354C24.8518 32.6619 24.8506 32.6895 24.855 32.7164C24.8594 32.7433 24.8693 32.7691 24.884 32.792C24.8987 32.815 24.918 32.8347 24.9406 32.85C25.0032 32.8871 25.0768 32.9011 25.1487 32.8897C25.2206 32.8783 25.2863 32.8421 25.3343 32.7875C25.3435 32.7652 25.3508 32.7422 25.3562 32.7188L25.225 32.4719C25.1686 32.4418 25.1029 32.4345 25.0413 32.4513C24.9797 32.4682 24.9269 32.508 24.8937 32.5625V32.5625Z" fill="#42D4C6"/>
|
||||
<path d="M23.3906 29.375C23.4252 29.3179 23.437 29.2498 23.4237 29.1844C23.4104 29.1189 23.3729 29.0609 23.3187 29.0219C23.2592 28.9852 23.188 28.9725 23.1195 28.9864C23.051 29.0004 22.9904 29.0399 22.95 29.0969C22.9227 29.1548 22.9175 29.2208 22.9354 29.2823C22.9533 29.3438 22.9931 29.3966 23.0473 29.4308C23.1015 29.465 23.1663 29.4782 23.2295 29.4679C23.2928 29.4576 23.35 29.4246 23.3906 29.375V29.375Z" fill="#42D4C6"/>
|
||||
<path d="M25.4562 33.3813C25.4386 33.388 25.4232 33.3994 25.4116 33.4143C25.4001 33.4291 25.3928 33.4469 25.3906 33.4656C25.3906 33.4938 25.4344 33.5344 25.4656 33.5406C25.4969 33.5469 25.5594 33.5031 25.5656 33.4625C25.5719 33.4219 25.4812 33.3813 25.4562 33.3813Z" fill="#42D4C6"/>
|
||||
<path d="M16.0312 26.3563C15.9844 26.1438 16.1375 26.1656 16.1531 26.0063C16.1574 25.9815 16.1574 25.9561 16.1531 25.9313C16.1453 25.9041 16.1307 25.8794 16.1109 25.8594C16.091 25.8393 16.0664 25.8246 16.0393 25.8165C16.0123 25.8084 15.9836 25.8072 15.956 25.8131C15.9284 25.8189 15.9027 25.8316 15.8813 25.85C15.8531 26.0406 15.8281 26.2281 15.7969 26.4125H15.8156C15.8562 26.4563 15.9938 26.4781 16.0312 26.3563Z" fill="#42D4C6"/>
|
||||
<path d="M20.9063 17.3187C20.816 17.2578 20.7221 17.2025 20.625 17.1531C20.5968 17.1824 20.5774 17.219 20.5691 17.2589C20.5608 17.2987 20.5639 17.34 20.5781 17.3781C20.6094 17.4687 20.6625 17.4844 20.6875 17.5281C20.6715 17.5322 20.6566 17.5397 20.6438 17.55C20.6167 17.5741 20.6 17.6076 20.5971 17.6437C20.5942 17.6798 20.6053 17.7157 20.6282 17.7438C20.638 17.7573 20.6509 17.7683 20.6659 17.776C20.6808 17.7836 20.6973 17.7875 20.7141 17.7875C20.7308 17.7875 20.7474 17.7836 20.7623 17.776C20.7772 17.7683 20.7902 17.7573 20.8 17.7438C20.818 17.7299 20.8322 17.7118 20.8415 17.6911C20.8508 17.6703 20.8548 17.6476 20.8531 17.625C20.9344 17.625 21.0532 17.625 21.05 17.5094C21.0469 17.3938 20.9688 17.3844 20.9344 17.3875C20.9 17.3906 20.8469 17.35 20.8813 17.3313C20.8905 17.3293 20.8991 17.3249 20.9063 17.3187V17.3187Z" fill="#42D4C6"/>
|
||||
<path d="M15.9062 27.5625C15.9326 27.538 15.9489 27.5045 15.9518 27.4687C15.9547 27.4328 15.944 27.3971 15.9219 27.3687C15.9116 27.3522 15.8979 27.338 15.8817 27.3272C15.8656 27.3163 15.8473 27.309 15.8281 27.3058C15.8088 27.3025 15.7892 27.3034 15.7703 27.3083C15.7515 27.3133 15.7339 27.3221 15.7187 27.3344C15.7037 27.3465 15.6912 27.3615 15.682 27.3785C15.6729 27.3955 15.6673 27.4142 15.6655 27.4335C15.6638 27.4528 15.6659 27.4722 15.6718 27.4906C15.6777 27.509 15.6873 27.526 15.7 27.5406C15.7113 27.5567 15.7258 27.5702 15.7428 27.5802C15.7597 27.5902 15.7786 27.5964 15.7981 27.5985C15.8177 27.6006 15.8374 27.5984 15.8561 27.5922C15.8747 27.586 15.8918 27.5759 15.9062 27.5625Z" fill="#42D4C6"/>
|
||||
<path d="M24.7344 31.4469L24.6406 31.2312C24.6211 31.2585 24.6122 31.292 24.6157 31.3254C24.6191 31.3588 24.6346 31.3898 24.6594 31.4125C24.6807 31.4306 24.7067 31.4425 24.7344 31.4469V31.4469Z" fill="#42D4C6"/>
|
||||
<path d="M21.3718 30.0781C21.3867 30.0476 21.3895 30.0127 21.3796 29.9802C21.3697 29.9477 21.348 29.9202 21.3187 29.9031C21.3057 29.8926 21.2906 29.8849 21.2745 29.8805C21.2583 29.8762 21.2414 29.8753 21.2249 29.878C21.2084 29.8806 21.1926 29.8868 21.1786 29.8959C21.1646 29.9051 21.1527 29.9172 21.1437 29.9313C21.1331 29.9459 21.1255 29.9625 21.1215 29.9802C21.1175 29.9978 21.1171 30.0161 21.1203 30.0339C21.1235 30.0517 21.1303 30.0687 21.1402 30.0838C21.1501 30.0989 21.163 30.1119 21.1781 30.1219C21.2101 30.1395 21.2475 30.1447 21.2832 30.1367C21.3189 30.1286 21.3504 30.1078 21.3718 30.0781V30.0781Z" fill="#42D4C6"/>
|
||||
<path d="M23.1969 31.4219C23.1848 31.4126 23.1707 31.4063 23.1557 31.4035C23.1408 31.4007 23.1254 31.4015 23.1108 31.4057C23.0962 31.41 23.0828 31.4176 23.0717 31.428C23.0606 31.4384 23.0521 31.4513 23.0469 31.4656C23.0291 31.5097 23.0291 31.559 23.0469 31.6031C23.0687 31.6344 23.2 31.6469 23.2344 31.6031C23.2442 31.5889 23.251 31.5728 23.2544 31.5559C23.2579 31.5389 23.2578 31.5214 23.2543 31.5045C23.2508 31.4876 23.2439 31.4715 23.234 31.4573C23.2242 31.4431 23.2115 31.431 23.1969 31.4219V31.4219Z" fill="#42D4C6"/>
|
||||
<path d="M21.2656 30.8C21.28 30.754 21.2793 30.7046 21.2636 30.659C21.2478 30.6134 21.2178 30.5741 21.1781 30.5469C21.1452 30.5316 21.1084 30.5274 21.0729 30.5347C21.0375 30.542 21.0053 30.5605 20.9812 30.5875C20.9062 30.7031 20.9124 30.8344 20.9812 30.8813C21.0311 30.8997 21.0855 30.9018 21.1367 30.8872C21.1878 30.8726 21.233 30.842 21.2656 30.8V30.8Z" fill="#42D4C6"/>
|
||||
<path d="M21.0719 29.4844C21.0797 29.4695 21.0844 29.4532 21.0856 29.4365C21.0869 29.4197 21.0846 29.4029 21.0791 29.387C21.0735 29.3712 21.0647 29.3567 21.0532 29.3444C21.0418 29.3321 21.0279 29.3223 21.0125 29.3156C20.9801 29.2988 20.9423 29.2953 20.9073 29.3058C20.8723 29.3163 20.8428 29.34 20.825 29.3719C20.8177 29.3855 20.8135 29.4004 20.8124 29.4158C20.8113 29.4312 20.8135 29.4466 20.8188 29.461C20.8241 29.4755 20.8325 29.4887 20.8432 29.4997C20.854 29.5107 20.8669 29.5193 20.8812 29.525C20.8964 29.5349 20.9134 29.5417 20.9312 29.545C20.949 29.5483 20.9673 29.5481 20.985 29.5443C21.0027 29.5405 21.0195 29.5333 21.0344 29.523C21.0493 29.5127 21.062 29.4996 21.0719 29.4844Z" fill="#42D4C6"/>
|
||||
<path d="M21.4406 32.2781C21.4681 32.279 21.4952 32.2706 21.5173 32.2541C21.5395 32.2377 21.5554 32.2142 21.5625 32.1875C21.5818 32.1511 21.5884 32.1093 21.5812 32.0687C21.5187 32.0687 21.4125 31.9937 21.3656 32.0687C21.3187 32.1437 21.3874 32.2187 21.3968 32.2844L21.4406 32.2781Z" fill="#42D4C6"/>
|
||||
<path d="M20.5968 18.2906C20.5674 18.314 20.5482 18.3478 20.5429 18.385C20.5377 18.4222 20.5469 18.46 20.5687 18.4906C20.6182 18.4944 20.668 18.4891 20.7156 18.475C20.7718 18.4469 20.7718 18.3844 20.7343 18.3344C20.6968 18.2844 20.6593 18.2531 20.5968 18.2906Z" fill="#42D4C6"/>
|
||||
<path d="M21.3781 31.3812C21.3898 31.3886 21.4031 31.393 21.4169 31.3942C21.4306 31.3954 21.4445 31.3933 21.4573 31.3881C21.4701 31.3829 21.4815 31.3748 21.4905 31.3644C21.4996 31.3539 21.506 31.3415 21.5093 31.3281C21.5093 31.2875 21.5562 31.175 21.5093 31.15C21.4625 31.125 21.3562 31.1937 21.3312 31.2281C21.3237 31.2411 21.3189 31.2556 21.3172 31.2705C21.3155 31.2854 21.3169 31.3005 21.3213 31.3149C21.3257 31.3293 21.333 31.3426 21.3428 31.354C21.3526 31.3654 21.3646 31.3747 21.3781 31.3812V31.3812Z" fill="#42D4C6"/>
|
||||
<path d="M22.8907 29.8969C22.8562 29.8678 22.8115 29.8534 22.7665 29.8569C22.7215 29.8604 22.6797 29.8815 22.6501 29.9156C22.6248 29.9579 22.6138 30.0072 22.6189 30.0562C22.624 30.1053 22.6448 30.1513 22.6782 30.1875C22.7289 30.217 22.7887 30.2269 22.8463 30.2154C22.9038 30.2039 22.9552 30.1717 22.9907 30.125C23.0251 30.0625 22.9782 29.9531 22.8907 29.8969Z" fill="#42D4C6"/>
|
||||
<path d="M23.0656 32.0031C23.1035 32.0129 23.1433 32.0129 23.1812 32.0031C23.2375 31.9188 23.2312 31.8375 23.1812 31.825C23.1272 31.813 23.0706 31.8208 23.0218 31.8469C22.975 31.8719 23.0062 31.9844 23.0656 32.0031Z" fill="#42D4C6"/>
|
||||
<path d="M22.1313 31.6562C22.175 31.5906 22.1313 31.45 22.0375 31.3906C22.0199 31.3768 21.9996 31.3666 21.9779 31.3608C21.9563 31.355 21.9336 31.3537 21.9114 31.3569C21.8892 31.3601 21.8679 31.3678 21.8487 31.3795C21.8296 31.3912 21.813 31.4067 21.8 31.425C21.7697 31.4702 21.7568 31.5249 21.7637 31.5789C21.7705 31.6329 21.7968 31.6826 21.8375 31.7188C21.8863 31.7432 21.942 31.7503 21.9954 31.739C22.0487 31.7276 22.0967 31.6984 22.1313 31.6562V31.6562Z" fill="#42D4C6"/>
|
||||
<path d="M22.1249 33.4156C22.1401 33.4203 22.1563 33.4207 22.1717 33.4168C22.1871 33.413 22.2012 33.405 22.2124 33.3937C22.2183 33.3856 22.2226 33.3764 22.2248 33.3665C22.2271 33.3567 22.2274 33.3466 22.2256 33.3367C22.2239 33.3267 22.2201 33.3173 22.2146 33.3088C22.2092 33.3004 22.202 33.2931 22.1937 33.2875C22.1406 33.2625 22.1093 33.3156 22.0968 33.3375C22.094 33.3518 22.0952 33.3667 22.1001 33.3804C22.1051 33.3942 22.1137 33.4063 22.1249 33.4156V33.4156Z" fill="#42D4C6"/>
|
||||
<path d="M22.9906 32.8969C23.0375 32.7781 22.875 32.6875 22.8187 32.7156C22.7625 32.7438 22.7312 32.8969 22.7875 32.9406C22.8437 32.9844 22.9406 33.0125 22.9906 32.8969Z" fill="#42D4C6"/>
|
||||
<path d="M21.5124 21.4031C21.492 21.4465 21.4887 21.4961 21.5031 21.5419C21.5176 21.5876 21.5488 21.6263 21.5906 21.65C21.6053 21.6629 21.6227 21.6724 21.6415 21.6778C21.6603 21.6833 21.68 21.6846 21.6994 21.6816C21.7187 21.6786 21.7372 21.6715 21.7535 21.6606C21.7698 21.6498 21.7835 21.6355 21.7937 21.6187C21.8281 21.572 21.8439 21.5142 21.8382 21.4565C21.8324 21.3988 21.8054 21.3452 21.7624 21.3062C21.716 21.2906 21.6656 21.2917 21.6199 21.3094C21.5742 21.3271 21.5362 21.3603 21.5124 21.4031V21.4031Z" fill="#42D4C6"/>
|
||||
<path d="M19.2218 18.2219C19.2048 18.2019 19.1837 18.1856 19.1601 18.1741C19.1364 18.1627 19.1106 18.1562 19.0844 18.1552C19.0581 18.1541 19.0319 18.1586 19.0074 18.1681C18.9829 18.1777 18.9607 18.1923 18.9421 18.2109C18.9235 18.2295 18.9089 18.2517 18.8993 18.2762C18.8898 18.3007 18.8853 18.3269 18.8864 18.3532C18.8874 18.3794 18.8939 18.4052 18.9054 18.4289C18.9168 18.4525 18.9331 18.4735 18.9531 18.4906C18.9881 18.5281 19.0354 18.5518 19.0864 18.5575C19.1374 18.5632 19.1887 18.5506 19.2312 18.5219C19.2553 18.4917 19.2685 18.4542 19.2687 18.4156C19.3406 18.5094 19.4281 18.5375 19.4937 18.4844C19.5269 18.4434 19.5492 18.3947 19.5585 18.3428C19.5677 18.2909 19.5637 18.2374 19.5468 18.1875C19.5315 18.169 19.5126 18.1538 19.4913 18.1428C19.47 18.1319 19.4466 18.1253 19.4227 18.1235C19.3988 18.1218 19.3747 18.1249 19.352 18.1327C19.3293 18.1404 19.3084 18.1527 19.2906 18.1688C19.2653 18.1832 19.2422 18.201 19.2218 18.2219Z" fill="#42D4C6"/>
|
||||
<path d="M18.5562 18.8437C18.5056 18.8817 18.4693 18.9357 18.4531 18.9969C18.4344 19.0156 18.4156 19.0438 18.4187 19.0563C18.4236 19.0809 18.4309 19.105 18.4406 19.1281C18.3961 19.1762 18.3714 19.2394 18.3716 19.3049C18.3717 19.3704 18.3967 19.4334 18.4414 19.4813C18.4861 19.5292 18.5473 19.5584 18.6127 19.563C18.678 19.5676 18.7427 19.5474 18.7937 19.5062C18.8342 19.4783 18.8632 19.4366 18.8753 19.3889C18.8873 19.3412 18.8817 19.2907 18.8593 19.2469H18.8844C18.9186 19.2138 18.9397 19.1693 18.9437 19.1219C18.9437 19.1219 18.9437 19.1219 18.9594 19.1219C18.9871 19.132 19.0175 19.1323 19.0454 19.1226C19.0733 19.1129 19.097 19.0939 19.1125 19.0687C19.1406 19 19.0187 18.8781 18.9625 18.9031C18.9458 18.9155 18.9337 18.9331 18.9281 18.9531C18.9213 18.9322 18.9119 18.9123 18.9 18.8937C18.8575 18.8466 18.7999 18.8158 18.7371 18.8067C18.6743 18.7976 18.6104 18.8107 18.5562 18.8437V18.8437Z" fill="#42D4C6"/>
|
||||
<path d="M18.9531 17.5813C18.8468 17.6719 18.8124 17.7781 18.8687 17.8438C18.8849 17.8624 18.9046 17.8777 18.9268 17.8888C18.9489 17.8998 18.9729 17.9064 18.9976 17.9081C19.0223 17.9099 19.0471 17.9068 19.0705 17.8989C19.094 17.8911 19.1156 17.8787 19.1343 17.8625C19.153 17.8463 19.1683 17.8266 19.1793 17.8045C19.1904 17.7823 19.197 17.7582 19.1987 17.7336C19.2004 17.7089 19.1973 17.6842 19.1895 17.6607C19.1816 17.6372 19.1693 17.6156 19.1531 17.5969C19.1266 17.5718 19.0922 17.5565 19.0558 17.5537C19.0194 17.5508 18.9831 17.5606 18.9531 17.5813V17.5813Z" fill="#42D4C6"/>
|
||||
<path d="M19.7531 17.5625C19.6843 17.6312 19.6969 17.7281 19.7875 17.8187C19.8122 17.8503 19.8483 17.8709 19.888 17.8762C19.9277 17.8815 19.9679 17.8709 20 17.8469C20.0313 17.8016 20.0501 17.7489 20.0545 17.694C20.0589 17.6391 20.0487 17.584 20.025 17.5344C20.0063 17.5162 19.9838 17.5023 19.9592 17.4938C19.9346 17.4852 19.9084 17.4822 19.8825 17.4849C19.8565 17.4876 19.8315 17.4959 19.8092 17.5093C19.7868 17.5227 19.7677 17.5409 19.7531 17.5625V17.5625Z" fill="#42D4C6"/>
|
||||
<path d="M20.6906 19.75C20.6468 19.6594 20.5875 19.6219 20.5281 19.65C20.4687 19.6781 20.4374 19.7719 20.4999 19.8688C20.4999 19.8688 20.5218 19.8688 20.5281 19.8906C20.5343 19.9125 20.55 19.9813 20.4843 19.9938C20.4187 20.0063 20.4343 19.9938 20.4125 19.9938C20.3648 20.0056 20.3219 20.0316 20.2895 20.0685C20.2571 20.1054 20.2368 20.1512 20.2312 20.2C20.2312 20.3125 20.2531 20.3719 20.3656 20.4312C20.4195 20.457 20.4791 20.4685 20.5387 20.4646C20.5984 20.4608 20.656 20.4418 20.7062 20.4094C20.7357 20.4577 20.7703 20.5027 20.8093 20.5437C20.9343 20.6531 21.0562 20.6062 21.0843 20.4437C21.0933 20.4145 21.0949 20.3835 21.0889 20.3534C21.083 20.3234 21.0696 20.2954 21.0501 20.2718C21.0305 20.2482 21.0054 20.2299 20.9771 20.2185C20.9487 20.207 20.9179 20.2028 20.8874 20.2063C20.8318 20.2116 20.7765 20.2199 20.7218 20.2312C20.7218 20.1656 20.7218 20.1125 20.7468 20.0844C20.7645 20.0677 20.7786 20.0476 20.7882 20.0253C20.7979 20.003 20.8028 19.979 20.8028 19.9547C20.8028 19.9304 20.7979 19.9064 20.7882 19.884C20.7786 19.8617 20.7645 19.8417 20.7468 19.825C20.7234 19.8038 20.7044 19.7784 20.6906 19.75V19.75Z" fill="#42D4C6"/>
|
||||
<path d="M19.5156 18.6781C19.4856 18.6919 19.4603 18.7139 19.4425 18.7416C19.4247 18.7693 19.4153 18.8015 19.4153 18.8344C19.4153 18.8673 19.4247 18.8995 19.4425 18.9272C19.4603 18.9549 19.4856 18.9769 19.5156 18.9906C19.5987 19.0405 19.688 19.0794 19.7812 19.1063C19.8384 19.1121 19.896 19.0999 19.9459 19.0713C19.9958 19.0427 20.0354 18.9992 20.0593 18.9469C20.0843 18.8875 20.0874 18.75 19.9593 18.7281C19.7562 18.8031 19.7593 18.65 19.5968 18.6531C19.5683 18.6561 19.5407 18.6646 19.5156 18.6781V18.6781Z" fill="#42D4C6"/>
|
||||
<path d="M19.3437 17.4406C19.3327 17.4551 19.3247 17.4717 19.3201 17.4894C19.3156 17.507 19.3146 17.5254 19.3172 17.5434C19.3198 17.5614 19.326 17.5787 19.3354 17.5944C19.3447 17.61 19.3571 17.6236 19.3718 17.6344C19.3824 17.6469 19.3955 17.6569 19.4104 17.6638C19.4252 17.6707 19.4414 17.6743 19.4577 17.6743C19.4741 17.6743 19.4903 17.6707 19.5051 17.6638C19.52 17.6569 19.5331 17.6469 19.5437 17.6344C19.5666 17.6073 19.5792 17.573 19.5792 17.5375C19.5792 17.502 19.5666 17.4677 19.5437 17.4406C19.5169 17.4147 19.481 17.4002 19.4437 17.4002C19.4064 17.4002 19.3705 17.4147 19.3437 17.4406V17.4406Z" fill="#42D4C6"/>
|
||||
<path d="M17.1968 25.2375C17.2067 25.2508 17.2191 25.2619 17.2333 25.2702C17.2475 25.2785 17.2633 25.2838 17.2797 25.2859C17.296 25.2879 17.3126 25.2867 17.3285 25.2821C17.3443 25.2775 17.3591 25.2698 17.3718 25.2594C17.4108 25.2354 17.4389 25.1973 17.4506 25.1531C17.4622 25.1089 17.4564 25.0619 17.4344 25.0219C17.4137 24.9887 17.3809 24.965 17.343 24.9556C17.305 24.9463 17.2649 24.9521 17.2312 24.9719C17.1964 25.0058 17.174 25.0505 17.1678 25.0987C17.1616 25.1469 17.1718 25.1958 17.1968 25.2375V25.2375Z" fill="#42D4C6"/>
|
||||
<path d="M17.3781 26.1188C17.4022 26.0923 17.4156 26.0577 17.4156 26.0219C17.4156 25.986 17.4022 25.9515 17.3781 25.925C17.3523 25.8994 17.3175 25.8851 17.2812 25.8851C17.2449 25.8851 17.2101 25.8994 17.1843 25.925C17.1718 25.9359 17.1617 25.9493 17.1548 25.9644C17.1478 25.9795 17.1443 25.9959 17.1443 26.0125C17.1443 26.0291 17.1478 26.0455 17.1548 26.0606C17.1617 26.0757 17.1718 26.0892 17.1843 26.1C17.2088 26.1262 17.242 26.1426 17.2776 26.1461C17.3133 26.1495 17.3491 26.1398 17.3781 26.1188V26.1188Z" fill="#42D4C6"/>
|
||||
<path d="M17.65 17.725C17.6751 17.749 17.7066 17.7652 17.7406 17.7719C17.8109 17.7798 17.8816 17.7615 17.9393 17.7206C17.9969 17.6797 18.0374 17.6189 18.0531 17.55C18.063 17.4944 18.0576 17.4372 18.0375 17.3844C17.8998 17.4878 17.7702 17.6017 17.65 17.725V17.725Z" fill="#42D4C6"/>
|
||||
<path d="M17.3657 22.9531C17.4341 22.9063 17.4908 22.8443 17.5313 22.7719C17.5781 22.8037 17.6342 22.8192 17.6907 22.8158C17.7473 22.8124 17.8011 22.7904 17.8438 22.7531C17.8801 22.7252 17.9045 22.6845 17.912 22.6393C17.9196 22.594 17.9097 22.5476 17.8844 22.5094C17.8639 22.4637 17.8278 22.4267 17.7826 22.4049C17.7375 22.3832 17.6861 22.3781 17.6375 22.3906C17.6002 22.4024 17.5661 22.4226 17.5379 22.4497C17.5097 22.4768 17.4882 22.5101 17.475 22.5469C17.4201 22.5179 17.359 22.5027 17.2969 22.5027C17.2348 22.5027 17.1737 22.5179 17.1188 22.5469C17.0749 22.5972 17.0468 22.6592 17.0379 22.7253C17.0291 22.7914 17.0398 22.8587 17.0688 22.9188C17.0856 22.9411 17.1067 22.9598 17.131 22.9737C17.1552 22.9876 17.1821 22.9964 17.2098 22.9996C17.2376 23.0028 17.2657 23.0004 17.2925 22.9924C17.3193 22.9844 17.3442 22.971 17.3657 22.9531Z" fill="#42D4C6"/>
|
||||
<path d="M17.4938 23.0656C17.47 23.0784 17.4491 23.0961 17.4327 23.1175C17.4162 23.1389 17.4045 23.1636 17.3983 23.1899C17.3921 23.2162 17.3915 23.2435 17.3967 23.27C17.4018 23.2966 17.4126 23.3217 17.4282 23.3438C17.452 23.382 17.4885 23.4108 17.5313 23.425C17.5741 23.4393 17.6205 23.4382 17.6626 23.4219C17.7092 23.379 17.7394 23.3212 17.7479 23.2585C17.7565 23.1957 17.7429 23.1319 17.7094 23.0781C17.6801 23.0522 17.6429 23.0369 17.6038 23.0347C17.5647 23.0324 17.526 23.0433 17.4938 23.0656V23.0656Z" fill="#42D4C6"/>
|
||||
<path d="M20.1906 21.0375C20.1882 21.0916 20.1999 21.1454 20.2246 21.1936C20.2492 21.2418 20.286 21.2828 20.3312 21.3125C20.3666 21.3217 20.4041 21.3186 20.4375 21.3039C20.471 21.2892 20.4985 21.2636 20.5156 21.2313C20.5376 21.2062 20.5497 21.174 20.5497 21.1406C20.5497 21.1073 20.5376 21.0751 20.5156 21.05C20.4375 20.975 20.2187 21 20.1906 21.0375Z" fill="#42D4C6"/>
|
||||
<path d="M23.3469 27.7188C23.3219 27.9219 23.4656 28.0063 23.5531 27.9969H23.5812C23.5469 27.8469 23.5125 27.6844 23.4812 27.5406C23.4441 27.5543 23.4117 27.5784 23.3879 27.61C23.3641 27.6415 23.3498 27.6793 23.3469 27.7188V27.7188Z" fill="#42D4C6"/>
|
||||
<path d="M20.0813 17.875C20.0743 17.8779 20.0681 17.8822 20.0631 17.8878C20.0581 17.8934 20.0544 17.9 20.0523 17.9072C20.0502 17.9144 20.0497 17.922 20.051 17.9294C20.0522 17.9368 20.0551 17.9439 20.0594 17.95C20.0782 17.9844 20.1 17.9969 20.1375 17.9781C20.175 17.9594 20.1844 17.9313 20.1625 17.8969C20.1406 17.8625 20.1188 17.875 20.0813 17.875Z" fill="#42D4C6"/>
|
||||
<path d="M21.3125 21.3125C21.3435 21.33 21.3785 21.3392 21.4141 21.3392C21.4497 21.3392 21.4847 21.33 21.5156 21.3125C21.5295 21.2988 21.5406 21.2825 21.5481 21.2646C21.5556 21.2466 21.5595 21.2273 21.5595 21.2078C21.5595 21.1883 21.5556 21.169 21.5481 21.1511C21.5406 21.1331 21.5295 21.1168 21.5156 21.1031C21.4885 21.075 21.4523 21.0573 21.4134 21.0533C21.3745 21.0493 21.3355 21.0592 21.3032 21.0813C21.2836 21.117 21.2742 21.1574 21.2758 21.1982C21.2775 21.2389 21.2902 21.2784 21.3125 21.3125V21.3125Z" fill="#42D4C6"/>
|
||||
<path d="M22.3844 22.5406C22.3537 22.5219 22.3168 22.516 22.2817 22.5242C22.2467 22.5324 22.2162 22.554 22.1969 22.5844C22.1789 22.6189 22.1751 22.6591 22.1861 22.6964C22.1972 22.7337 22.2224 22.7653 22.2563 22.7844C22.2892 22.7984 22.326 22.8004 22.3602 22.7901C22.3944 22.7798 22.424 22.7579 22.4438 22.7281C22.4569 22.6948 22.4581 22.658 22.4473 22.6239C22.4365 22.5897 22.4143 22.5603 22.3844 22.5406V22.5406Z" fill="#42D4C6"/>
|
||||
<path d="M21.7406 20.4281C21.7232 20.4571 21.7168 20.4913 21.7225 20.5246C21.7282 20.5579 21.7458 20.588 21.7719 20.6094C21.7848 20.6196 21.7997 20.6272 21.8157 20.6315C21.8317 20.6358 21.8484 20.6368 21.8647 20.6345C21.8811 20.6321 21.8968 20.6265 21.9109 20.6179C21.9251 20.6093 21.9373 20.5979 21.9469 20.5844C21.9646 20.5553 21.9709 20.5206 21.9646 20.4871C21.9582 20.4537 21.9397 20.4237 21.9125 20.4031C21.9 20.3925 21.8853 20.3846 21.8695 20.3801C21.8537 20.3755 21.8372 20.3744 21.8209 20.3768C21.8046 20.3791 21.7891 20.3849 21.7752 20.3938C21.7614 20.4027 21.7496 20.4144 21.7406 20.4281Z" fill="#42D4C6"/>
|
||||
<path d="M21.2719 22.4906C21.2635 22.4709 21.253 22.452 21.2407 22.4344C21.1844 22.3656 21.0657 22.3437 21.0188 22.3969C20.9877 22.4255 20.9683 22.4647 20.9643 22.5068C20.9603 22.5489 20.9719 22.5909 20.9969 22.625C21.0119 22.6422 21.0304 22.656 21.0511 22.6655C21.0719 22.675 21.0944 22.6799 21.1172 22.6799C21.14 22.6799 21.1626 22.675 21.1833 22.6655C21.2041 22.656 21.2226 22.6422 21.2375 22.625C21.2455 22.6181 21.2519 22.6096 21.2563 22.6C21.2662 22.6402 21.284 22.6781 21.3087 22.7113C21.3334 22.7446 21.3644 22.7726 21.4 22.7937C21.4486 22.8236 21.506 22.8358 21.5625 22.8281C21.5813 22.9094 21.6 22.9937 21.6188 23.0812C21.3875 23.2406 21.3688 23.3344 21.5594 23.5C21.5812 23.5233 21.6086 23.5406 21.639 23.5504C21.6694 23.5601 21.7018 23.562 21.7331 23.5557C21.7644 23.5495 21.7935 23.5353 21.8178 23.5146C21.8421 23.4939 21.8607 23.4674 21.8719 23.4375C21.8856 23.3989 21.8961 23.3591 21.9032 23.3187C21.9577 23.2989 22.0032 23.2601 22.0313 23.2094C22.0482 23.1857 22.0593 23.1584 22.0637 23.1296C22.068 23.1008 22.0655 23.0714 22.0563 23.0437C22.0949 23.0245 22.1281 22.9958 22.1527 22.9603C22.1773 22.9247 22.1925 22.8836 22.1969 22.8406C22.1952 22.7922 22.1833 22.7446 22.1621 22.701C22.1408 22.6574 22.1107 22.6188 22.0736 22.5876C22.0365 22.5564 21.9932 22.5333 21.9467 22.5198C21.9001 22.5064 21.8512 22.5028 21.8032 22.5094C21.7871 22.5129 21.7704 22.5131 21.7543 22.5099C21.7382 22.5066 21.7229 22.5001 21.7094 22.4906C21.6897 22.4388 21.6534 22.3949 21.6063 22.3656C21.551 22.3463 21.491 22.345 21.4348 22.3619C21.3787 22.3787 21.3294 22.4128 21.2938 22.4594C21.2938 22.4594 21.275 22.4844 21.2719 22.4906Z" fill="#42D4C6"/>
|
||||
<path d="M21.3344 20.6C21.2625 20.6562 21.275 20.775 21.3688 20.8875C21.3998 20.9111 21.4376 20.9238 21.4766 20.9238C21.5155 20.9238 21.5534 20.9111 21.5844 20.8875C21.6133 20.8535 21.6328 20.8126 21.641 20.7687C21.6492 20.7249 21.6459 20.6797 21.6312 20.6375C21.5922 20.6005 21.5423 20.5769 21.4889 20.5702C21.4356 20.5634 21.3814 20.5739 21.3344 20.6V20.6Z" fill="#42D4C6"/>
|
||||
<path d="M20.0563 18.25C20.0113 18.2451 19.966 18.2553 19.9275 18.2791C19.889 18.3029 19.8595 18.3388 19.8438 18.3813C19.8266 18.4301 19.8275 18.4835 19.8465 18.5317C19.8654 18.5799 19.901 18.6197 19.9469 18.6438C19.9951 18.6626 20.0487 18.6626 20.0969 18.6438C20.1592 18.614 20.2072 18.5609 20.2306 18.496C20.2539 18.431 20.2508 18.3595 20.2219 18.2969C20.1681 18.2765 20.1127 18.2609 20.0563 18.25V18.25Z" fill="#42D4C6"/>
|
||||
<path d="M20.0374 18.1875C20.0718 18.1594 20.0374 18.0625 20.0374 18.0281C20.0281 18.0164 20.0162 18.0069 20.0027 18.0004C19.9891 17.9939 19.9743 17.9906 19.9593 17.9906C19.9443 17.9906 19.9295 17.9939 19.916 18.0004C19.9024 18.0069 19.8906 18.0164 19.8812 18.0281C19.8721 18.0471 19.8673 18.068 19.8673 18.0891C19.8673 18.1102 19.8721 18.131 19.8812 18.15C19.9124 18.1875 19.9937 18.225 20.0374 18.1875Z" fill="#42D4C6"/>
|
||||
<path d="M20.0219 19.4375C19.9313 19.4375 19.8406 19.5219 19.8406 19.6188C19.8417 19.664 19.8571 19.7077 19.8844 19.7438C19.85 19.7411 19.8155 19.7459 19.7832 19.7578C19.7508 19.7696 19.7214 19.7883 19.6969 19.8125C19.6785 19.8309 19.6641 19.8529 19.6549 19.8772C19.6456 19.9015 19.6415 19.9275 19.643 19.9535C19.6445 19.9795 19.6514 20.0049 19.6634 20.0279C19.6754 20.051 19.6921 20.0713 19.7125 20.0875C19.7274 20.1064 19.7459 20.1221 19.767 20.1337C19.7881 20.1453 19.8113 20.1524 19.8353 20.1548C19.8592 20.1571 19.8834 20.1546 19.9063 20.1473C19.9293 20.14 19.9505 20.1282 19.9688 20.1125C19.9967 20.0763 20.014 20.033 20.0188 19.9875V19.9875C20.0405 19.9684 20.0566 19.9438 20.0654 19.9163C20.0742 19.8888 20.0754 19.8594 20.0688 19.8313C20.1106 19.8151 20.1458 19.7854 20.1688 19.7469C20.2031 19.6781 20.1688 19.625 20.1344 19.5688C20.1 19.5125 20.1 19.4531 20.0219 19.4375Z" fill="#42D4C6"/>
|
||||
<path d="M20.5687 20.5531C20.5687 20.5531 20.4999 20.5531 20.4968 20.5531C20.4905 20.5674 20.4873 20.5828 20.4873 20.5984C20.4873 20.6141 20.4905 20.6295 20.4968 20.6437C20.5038 20.6507 20.5121 20.6563 20.5212 20.6601C20.5303 20.6639 20.5401 20.6658 20.55 20.6658C20.5598 20.6658 20.5696 20.6639 20.5787 20.6601C20.5878 20.6563 20.5961 20.6507 20.6031 20.6437C20.6468 20.6156 20.5875 20.575 20.5687 20.5531Z" fill="#42D4C6"/>
|
||||
<path d="M17.675 27.1C17.7531 27.0375 17.7844 26.9187 17.7375 26.8625C17.6937 26.8201 17.6369 26.7937 17.5763 26.7874C17.5156 26.7812 17.4547 26.7955 17.4031 26.8281C17.3746 26.8593 17.3588 26.9 17.3588 26.9422C17.3588 26.9844 17.3746 27.0251 17.4031 27.0562C17.4171 27.0782 17.4356 27.0969 17.4573 27.1112C17.4791 27.1254 17.5036 27.135 17.5293 27.1391C17.5549 27.1432 17.5812 27.1419 17.6063 27.1351C17.6314 27.1284 17.6549 27.1164 17.675 27.1V27.1Z" fill="#42D4C6"/>
|
||||
<path d="M19.5782 17.7281C19.562 17.7211 19.544 17.7198 19.527 17.7243C19.5099 17.7288 19.4949 17.739 19.4844 17.7531C19.4784 17.7684 19.4776 17.7853 19.4821 17.8011C19.4867 17.8169 19.4962 17.8308 19.5094 17.8406C19.5274 17.8472 19.5469 17.8487 19.5657 17.8448C19.5844 17.8409 19.6017 17.8319 19.6157 17.8188C19.6344 17.7906 19.6063 17.7438 19.5782 17.7281Z" fill="#42D4C6"/>
|
||||
<path d="M22.8062 22.3375C22.7901 22.3298 22.7725 22.3257 22.7546 22.3257C22.7368 22.3257 22.7191 22.3298 22.7031 22.3375C22.6739 22.3032 22.6326 22.2814 22.5878 22.2767C22.5429 22.2721 22.4981 22.2849 22.4625 22.3125C22.4502 22.3212 22.4397 22.3322 22.4318 22.345C22.4239 22.3578 22.4186 22.3721 22.4163 22.3869C22.4139 22.4018 22.4146 22.4169 22.4183 22.4315C22.4219 22.4461 22.4284 22.4599 22.4374 22.4719C22.4501 22.5035 22.474 22.5294 22.5046 22.5444C22.5352 22.5594 22.5703 22.5625 22.6031 22.5531C22.6207 22.5493 22.637 22.5407 22.6499 22.5281C22.6664 22.5612 22.6926 22.5885 22.7249 22.6063C22.777 22.5932 22.8259 22.5698 22.8687 22.5375C22.9156 22.4781 22.8749 22.375 22.8062 22.3375Z" fill="#42D4C6"/>
|
||||
<path d="M22.7187 23.1875C22.7037 23.2262 22.7027 23.2689 22.7158 23.3083C22.7289 23.3476 22.7554 23.3812 22.7906 23.4031C22.803 23.4119 22.8171 23.418 22.8319 23.4211C22.8467 23.4243 22.8621 23.4244 22.877 23.4215C22.8918 23.4186 22.906 23.4127 22.9185 23.4042C22.9311 23.3956 22.9418 23.3847 22.95 23.3719C22.95 23.3719 22.95 23.3406 22.9719 23.325H22.9906C22.9906 23.2063 22.9906 23.0875 22.9906 22.9656C22.9607 22.9606 22.9301 22.9617 22.9006 22.9686C22.8711 22.9756 22.8432 22.9884 22.8187 23.0062C22.7312 23.0656 22.7 23.1281 22.7187 23.1875Z" fill="#42D4C6"/>
|
||||
<path d="M20.7469 28.975C20.8407 28.9969 20.8813 28.9281 20.9001 28.85C20.8912 28.8286 20.8777 28.8095 20.8604 28.7941C20.8431 28.7788 20.8226 28.7675 20.8003 28.7612C20.7781 28.7548 20.7547 28.7536 20.7319 28.7577C20.7091 28.7617 20.6875 28.7708 20.6688 28.7844C20.6532 28.8687 20.6438 28.9531 20.7469 28.975Z" fill="#42D4C6"/>
|
||||
<path d="M17.6938 25.3375C17.6839 25.3092 17.6644 25.2853 17.6387 25.2699C17.613 25.2544 17.5827 25.2485 17.5531 25.2531C17.5335 25.2603 17.5162 25.2726 17.5028 25.2887C17.4895 25.3048 17.4806 25.3241 17.4771 25.3447C17.4736 25.3653 17.4757 25.3865 17.483 25.4061C17.4903 25.4257 17.5026 25.443 17.5188 25.4562C17.5381 25.4657 17.5595 25.4698 17.5809 25.4683C17.6023 25.4668 17.6229 25.4596 17.6407 25.4476C17.6584 25.4355 17.6727 25.419 17.682 25.3997C17.6913 25.3803 17.6954 25.3589 17.6938 25.3375Z" fill="#42D4C6"/>
|
||||
<path d="M20.3782 28.5469C20.4875 28.5844 20.5688 28.575 20.5907 28.5219C20.5964 28.4808 20.5907 28.4389 20.5742 28.4008C20.5576 28.3628 20.5309 28.3301 20.4969 28.3063C20.4469 28.2844 20.3344 28.3438 20.3063 28.4094C20.301 28.4231 20.2987 28.4377 20.2995 28.4524C20.3003 28.4671 20.3042 28.4814 20.3111 28.4944C20.3179 28.5075 20.3274 28.5189 20.3389 28.5279C20.3505 28.537 20.3639 28.5434 20.3782 28.5469V28.5469Z" fill="#42D4C6"/>
|
||||
<path d="M20.05 27.25C20.1017 27.2463 20.1506 27.2251 20.1887 27.1899C20.2267 27.1547 20.2517 27.1075 20.2593 27.0563C20.258 27.0051 20.238 26.9562 20.2031 26.9188C20.154 26.8703 20.0877 26.8431 20.0187 26.8431C19.9497 26.8431 19.8835 26.8703 19.8344 26.9188C19.8346 26.9765 19.8408 27.0341 19.8531 27.0906C19.8625 27.1358 19.8872 27.1764 19.9231 27.2054C19.959 27.2345 20.0038 27.2502 20.05 27.25V27.25Z" fill="#42D4C6"/>
|
||||
<path d="M20.6781 27.4187C20.691 27.4111 20.7021 27.4009 20.711 27.3888C20.7199 27.3768 20.7262 27.363 20.7297 27.3485C20.7332 27.3339 20.7337 27.3189 20.7313 27.3041C20.7289 27.2893 20.7236 27.2752 20.7156 27.2625C20.6942 27.2376 20.6651 27.2204 20.6329 27.2136C20.6007 27.2069 20.5672 27.2109 20.5375 27.225C20.4969 27.2562 20.5063 27.3437 20.5563 27.4031C20.5619 27.4138 20.57 27.423 20.5799 27.4298C20.5898 27.4367 20.6012 27.4411 20.6131 27.4427C20.6251 27.4442 20.6372 27.4428 20.6486 27.4387C20.6599 27.4345 20.67 27.4277 20.6781 27.4187Z" fill="#42D4C6"/>
|
||||
<path d="M20.95 19.8188C20.9895 19.8287 21.0308 19.829 21.0705 19.8198C21.1102 19.8105 21.147 19.792 21.1781 19.7656C21.2069 19.7539 21.2308 19.7325 21.2456 19.7052C21.2604 19.6778 21.2653 19.6462 21.2594 19.6156C21.2535 19.6008 21.2424 19.5885 21.2281 19.5813C21.1935 19.5084 21.1381 19.4475 21.0687 19.4063C21.04 19.3915 21.0084 19.3833 20.9761 19.3822C20.9438 19.3811 20.9116 19.3872 20.882 19.4C20.8523 19.4128 20.8259 19.4321 20.8045 19.4563C20.7832 19.4806 20.7675 19.5093 20.7585 19.5403C20.7496 19.5714 20.7477 19.604 20.7528 19.6359C20.758 19.6678 20.7702 19.6981 20.7885 19.7248C20.8068 19.7514 20.8308 19.7736 20.8587 19.7899C20.8866 19.8061 20.9178 19.816 20.95 19.8188V19.8188Z" fill="#42D4C6"/>
|
||||
<path d="M21.2844 18.4156C21.0657 18.2281 20.8969 18.3656 20.7969 18.5344C20.7658 18.5905 20.7527 18.6549 20.7594 18.7188C20.7678 18.7612 20.7849 18.8015 20.8096 18.837C20.8344 18.8725 20.8662 18.9024 20.9032 18.925C20.9875 18.9813 21.0032 19.0813 21.1 19.1C21.1882 19.1199 21.2804 19.1105 21.3627 19.0733C21.445 19.0361 21.513 18.9731 21.5563 18.8938C21.5866 18.8479 21.6043 18.7949 21.6076 18.74C21.6109 18.6852 21.5997 18.6304 21.575 18.5813C21.5219 18.4719 21.375 18.5 21.2844 18.4156Z" fill="#42D4C6"/>
|
||||
<path d="M22.428 20.1813C22.3905 20.275 22.4781 20.2969 22.4999 20.3406C22.5192 20.3744 22.5459 20.4032 22.5781 20.425V20.425C22.5523 20.4549 22.5367 20.4921 22.5333 20.5313C22.5299 20.5706 22.539 20.6099 22.5593 20.6437C22.5847 20.6854 22.6251 20.7158 22.6722 20.7286C22.7193 20.7414 22.7695 20.7356 22.8124 20.7125C22.7718 20.5 22.7249 20.2969 22.6718 20.0875C22.5874 20.1063 22.4655 20.0938 22.428 20.1813Z" fill="#42D4C6"/>
|
||||
<path d="M22.2562 19.125V19.0938H22.3125C22.275 19.0063 22.2343 18.925 22.1937 18.8438C22.1716 18.8762 22.1587 18.914 22.1562 18.9531C22.1317 18.9476 22.1061 18.949 22.0823 18.9573C22.0586 18.9656 22.0376 18.9804 22.0218 19C21.9593 19.0719 22.0218 19.1438 22.05 19.2219C22.1375 19.2281 22.2343 19.2406 22.2562 19.125Z" fill="#42D4C6"/>
|
||||
<path d="M21.7156 19.5531C21.6615 19.5884 21.6232 19.6433 21.6086 19.7062C21.594 19.7691 21.6044 19.8352 21.6375 19.8906C21.6926 19.939 21.7599 19.9713 21.8321 19.9839C21.9043 19.9966 21.9786 19.9892 22.0469 19.9625C22.0936 19.9185 22.1225 19.8589 22.1283 19.795C22.1341 19.7311 22.1162 19.6673 22.0781 19.6156C22.0321 19.5682 21.9722 19.5366 21.907 19.5254C21.8419 19.5142 21.7749 19.5239 21.7156 19.5531V19.5531Z" fill="#42D4C6"/>
|
||||
<path d="M21.5 29.2781C21.539 29.3066 21.5872 29.3195 21.6352 29.3143C21.6831 29.3091 21.7274 29.2861 21.7594 29.25C21.7796 29.188 21.78 29.1212 21.7604 29.059C21.7408 28.9968 21.7022 28.9423 21.65 28.9031C21.6047 28.8883 21.5556 28.8911 21.5122 28.9107C21.4688 28.9304 21.4344 28.9656 21.4156 29.0094C21.3531 29.125 21.3781 29.2062 21.5 29.2781Z" fill="#42D4C6"/>
|
||||
<path d="M19.0844 27.2281C19.1406 27.1844 19.1281 27.0281 19.0625 26.9438C19.0333 26.9176 18.9954 26.9032 18.9562 26.9032C18.917 26.9032 18.8792 26.9176 18.85 26.9438C18.8141 26.9726 18.7897 27.0133 18.7811 27.0586C18.7725 27.1038 18.7803 27.1506 18.8031 27.1906C18.8407 27.2246 18.8877 27.2465 18.9379 27.2531C18.9881 27.2598 19.0392 27.2511 19.0844 27.2281V27.2281Z" fill="#42D4C6"/>
|
||||
<path d="M18.8781 24.2469C18.9144 24.2733 18.9582 24.2875 19.0031 24.2875C19.048 24.2875 19.0917 24.2733 19.1281 24.2469C19.1577 24.1972 19.1689 24.1387 19.1597 24.0815C19.1506 24.0244 19.1217 23.9724 19.0781 23.9344C19.0318 23.9116 18.979 23.9057 18.9288 23.9177C18.8786 23.9297 18.8341 23.9588 18.8031 24C18.7437 24.0875 18.7687 24.1687 18.8781 24.2469Z" fill="#42D4C6"/>
|
||||
<path d="M18.6437 24.5125C18.6742 24.49 18.6998 24.4617 18.7193 24.4292C18.7388 24.3967 18.7516 24.3607 18.7572 24.3233C18.7627 24.2858 18.7607 24.2476 18.7515 24.2109C18.7422 24.1742 18.7257 24.1397 18.7031 24.1094C18.6828 24.0811 18.6566 24.0576 18.6265 24.0403C18.5963 24.023 18.5627 24.0124 18.5281 24.0091C18.4935 24.0059 18.4585 24.01 18.4257 24.0214C18.3928 24.0328 18.3627 24.0511 18.3375 24.075C18.1687 24.1906 18.125 24.3469 18.2219 24.4781C18.2466 24.5091 18.2774 24.5347 18.3124 24.5533C18.3474 24.572 18.3858 24.5832 18.4254 24.5865C18.4649 24.5897 18.5046 24.5848 18.5422 24.5721C18.5797 24.5593 18.6143 24.5391 18.6437 24.5125Z" fill="#42D4C6"/>
|
||||
<path d="M19.8156 27.7813C19.8269 27.7688 19.8344 27.7533 19.8372 27.7367C19.84 27.72 19.8379 27.703 19.8312 27.6875C19.8312 27.6656 19.7531 27.6219 19.7281 27.6469C19.7181 27.6611 19.7128 27.678 19.7128 27.6953C19.7128 27.7126 19.7181 27.7296 19.7281 27.7438C19.7468 27.7656 19.7906 27.8063 19.8156 27.7813Z" fill="#42D4C6"/>
|
||||
<path d="M19.125 25.7438C19.098 25.7293 19.0669 25.7245 19.0367 25.7302C19.0066 25.7359 18.9793 25.7517 18.9594 25.775C18.9341 25.8005 18.9182 25.8339 18.9142 25.8696C18.9102 25.9054 18.9184 25.9414 18.9375 25.9719C19.0125 26.0531 19.1001 26.0219 19.1813 26C19.2188 25.8406 19.2032 25.7781 19.125 25.7438Z" fill="#42D4C6"/>
|
||||
<path d="M18.9781 23.75H19.0374C19.0229 23.767 19.0149 23.7886 19.0149 23.8109C19.0149 23.8333 19.0229 23.8549 19.0374 23.8719C19.0577 23.8825 19.0802 23.8881 19.1031 23.8881C19.1259 23.8881 19.1485 23.8825 19.1687 23.8719C19.1823 23.8669 19.1944 23.8583 19.2036 23.8471C19.2129 23.8359 19.2189 23.8224 19.2212 23.808C19.2234 23.7937 19.2217 23.779 19.2163 23.7655C19.211 23.752 19.2021 23.7401 19.1906 23.7312V23.7312C19.2262 23.723 19.2574 23.7018 19.2782 23.6718C19.299 23.6417 19.3079 23.605 19.3031 23.5687C19.3031 23.3937 19.1812 23.3781 19.1281 23.3844C19.0749 23.3906 18.9874 23.3219 19.0406 23.2969C19.0937 23.2719 19.1156 23.1969 19.0406 23.0625C19.0323 23.0306 19.0171 23.001 18.996 22.9757C18.9749 22.9504 18.9484 22.9302 18.9185 22.9164C18.8885 22.9026 18.8559 22.8957 18.823 22.8961C18.7901 22.8965 18.7576 22.9043 18.7281 22.9188C18.6475 22.9502 18.5827 23.0121 18.5476 23.0911C18.5125 23.1701 18.5099 23.2598 18.5406 23.3406C18.6031 23.5125 18.7093 23.5063 18.7374 23.6219C18.7656 23.7375 18.8531 23.75 18.9781 23.75Z" fill="#42D4C6"/>
|
||||
<path d="M19.5906 27.8094C19.6067 27.8094 19.6224 27.8043 19.6353 27.7947C19.6483 27.7851 19.6578 27.7716 19.6625 27.7563C19.6627 27.7369 19.6572 27.718 19.6466 27.7019C19.6361 27.6857 19.6209 27.6731 19.6031 27.6656C19.5718 27.6656 19.5375 27.7 19.5344 27.7312C19.5312 27.7625 19.5531 27.8094 19.5906 27.8094Z" fill="#42D4C6"/>
|
||||
<path d="M19.75 26.9563C19.7748 26.9304 19.7902 26.8968 19.7936 26.8611C19.797 26.8254 19.7883 26.7895 19.7688 26.7594C19.725 26.7125 19.6813 26.7344 19.6438 26.7594C19.6315 26.7677 19.6215 26.7789 19.6146 26.7919C19.6076 26.805 19.604 26.8196 19.604 26.8344C19.604 26.8492 19.6076 26.8637 19.6146 26.8768C19.6215 26.8899 19.6315 26.9011 19.6438 26.9094C19.6813 26.9375 19.7094 26.9719 19.75 26.9563Z" fill="#42D4C6"/>
|
||||
<path d="M19.2437 25.0937C19.2455 25.102 19.2455 25.1105 19.2437 25.1187C19.2684 25.1564 19.3043 25.1855 19.3463 25.2017C19.3884 25.218 19.4344 25.2206 19.4781 25.2094C19.5184 25.1777 19.5496 25.1357 19.5683 25.0879C19.587 25.0401 19.5925 24.9882 19.5843 24.9375C19.5625 24.875 19.5406 24.7906 19.4593 24.8C19.4123 24.8048 19.3648 24.7988 19.3204 24.7826C19.276 24.7663 19.2359 24.7402 19.2031 24.7062C19.1905 24.6946 19.1755 24.686 19.1592 24.6811C19.1429 24.6761 19.1256 24.6749 19.1087 24.6776C19.0919 24.6804 19.0758 24.6869 19.0618 24.6967C19.0479 24.7065 19.0363 24.7194 19.0281 24.7344C19.0133 24.7579 19.0047 24.7848 19.0031 24.8125C18.9624 24.8225 18.9262 24.8455 18.9 24.8781C18.874 24.9316 18.8683 24.9927 18.8838 25.0501C18.8993 25.1075 18.935 25.1574 18.9843 25.1906C19.0036 25.2018 19.0249 25.209 19.047 25.2119C19.069 25.2148 19.0915 25.2133 19.113 25.2075C19.1345 25.2017 19.1546 25.1917 19.1722 25.1781C19.1898 25.1645 19.2046 25.1475 19.2156 25.1281C19.226 25.1176 19.2354 25.1061 19.2437 25.0937V25.0937Z" fill="#42D4C6"/>
|
||||
<path d="M19.2812 25.6C19.2866 25.6155 19.2939 25.6302 19.3031 25.6437C19.3148 25.6576 19.3294 25.6687 19.3459 25.6763C19.3623 25.6839 19.3803 25.6879 19.3984 25.6879C19.4165 25.6879 19.4345 25.6839 19.4509 25.6763C19.4674 25.6687 19.482 25.6576 19.4937 25.6437C19.6093 25.55 19.6312 25.4656 19.5656 25.3844C19.5328 25.3564 19.4927 25.3385 19.4499 25.3329C19.4072 25.3274 19.3638 25.3344 19.325 25.3531V25.3531C19.3011 25.3602 19.2792 25.3727 19.2608 25.3894C19.2424 25.4062 19.228 25.4269 19.2187 25.45C19.2108 25.4784 19.2126 25.5086 19.224 25.5358C19.2353 25.563 19.2555 25.5856 19.2812 25.6Z" fill="#42D4C6"/>
|
||||
<path d="M19.5749 27.2C19.5814 27.1954 19.5867 27.1893 19.5903 27.1822C19.5939 27.1752 19.5958 27.1673 19.5958 27.1594C19.5958 27.1514 19.5939 27.1436 19.5903 27.1366C19.5867 27.1295 19.5814 27.1234 19.5749 27.1188C19.5437 27.0906 19.5187 27.0906 19.4937 27.1188C19.4866 27.1229 19.4806 27.1288 19.4765 27.1359C19.4724 27.143 19.4702 27.1511 19.4702 27.1594C19.4702 27.1676 19.4724 27.1757 19.4765 27.1828C19.4806 27.19 19.4866 27.1959 19.4937 27.2C19.525 27.2281 19.5499 27.2313 19.5749 27.2Z" fill="#42D4C6"/>
|
||||
<path d="M34.1907 9.66875H4.86255V28.8812H34.1907V9.66875Z" fill="#7DE2D1"/>
|
||||
<path d="M12.4344 28.3031C12.428 28.3543 12.4417 28.406 12.4726 28.4474C12.5034 28.4887 12.5491 28.5165 12.6 28.525C12.5938 28.5442 12.5945 28.565 12.6019 28.5838C12.6093 28.6026 12.623 28.6183 12.6406 28.6281C12.6875 28.6656 12.8219 28.6281 12.8281 28.5656C12.8277 28.542 12.8201 28.5191 12.8063 28.5C12.8496 28.4753 12.8864 28.4405 12.9136 28.3987C12.9408 28.3568 12.9576 28.309 12.9625 28.2594V28.2437C12.9375 28.2125 12.9156 28.175 12.8875 28.1437C12.8599 28.1073 12.821 28.0812 12.7768 28.0693C12.7327 28.0574 12.6859 28.0605 12.6437 28.0781C12.5911 28.092 12.5435 28.1205 12.5065 28.1603C12.4694 28.2001 12.4444 28.2496 12.4344 28.3031V28.3031Z" fill="#42D4C6"/>
|
||||
<path d="M12.5501 26.9125C12.5461 26.916 12.5429 26.9203 12.5407 26.9252C12.5385 26.93 12.5374 26.9353 12.5374 26.9406C12.5374 26.9459 12.5385 26.9512 12.5407 26.9561C12.5429 26.9609 12.5461 26.9652 12.5501 26.9687C12.5719 26.9687 12.5938 26.9687 12.6032 26.95C12.6045 26.9412 12.6035 26.9323 12.6002 26.924C12.5969 26.9158 12.5914 26.9086 12.5844 26.9031C12.5784 26.9017 12.5721 26.9018 12.5661 26.9035C12.5601 26.9051 12.5546 26.9082 12.5501 26.9125V26.9125Z" fill="#42D4C6"/>
|
||||
<path d="M12.5875 26.5C12.5875 26.5 12.5187 26.5 12.5156 26.5C12.5085 26.514 12.5048 26.5296 12.5048 26.5453C12.5048 26.5611 12.5085 26.5766 12.5156 26.5906C12.5156 26.5906 12.6094 26.6094 12.6219 26.5906C12.6344 26.5719 12.6094 26.5187 12.5875 26.5Z" fill="#42D4C6"/>
|
||||
<path d="M13.0969 27.2156C12.9251 27.1344 12.6844 27.3125 12.8188 27.4969C12.8376 27.525 12.6407 27.6344 12.7501 27.8094C12.7647 27.8441 12.7879 27.8745 12.8176 27.8977C12.8472 27.921 12.8823 27.9363 12.9195 27.9423C12.9567 27.9482 12.9949 27.9446 13.0303 27.9317C13.0657 27.9188 13.0972 27.8972 13.122 27.8687C13.1766 27.8323 13.2384 27.8078 13.3032 27.7969V27.7969C13.3283 27.8065 13.3559 27.8077 13.3818 27.8004C13.4077 27.7931 13.4305 27.7776 13.4469 27.7562C13.5563 27.7187 13.6501 27.6594 13.6469 27.5125C13.6469 27.3094 13.4907 27.2437 13.4094 27.2625C13.3282 27.2812 13.2626 27.3719 13.2032 27.3625C13.1438 27.3531 13.2688 27.3 13.0969 27.2156Z" fill="#42D4C6"/>
|
||||
<path d="M12.025 26.8438C12.0115 26.8351 11.9957 26.8306 11.9797 26.8306C11.9636 26.8306 11.9479 26.8351 11.9344 26.8438C11.9156 26.8625 11.9 26.9437 11.9344 26.9562C11.9688 26.9687 12.0156 26.9406 12.025 26.925C12.0344 26.9094 12.0563 26.8594 12.025 26.8438Z" fill="#42D4C6"/>
|
||||
<path d="M12.7438 26.8031C12.6688 26.8031 12.6063 26.9313 12.6657 26.9844C12.6828 26.9961 12.7025 27.0035 12.723 27.0059C12.7436 27.0084 12.7644 27.0058 12.7838 26.9984C12.8031 26.9911 12.8204 26.9791 12.8341 26.9636C12.8479 26.9481 12.8576 26.9295 12.8626 26.9094C12.8782 26.8656 12.8063 26.8031 12.7438 26.8031Z" fill="#42D4C6"/>
|
||||
<path d="M13.5313 28.65C13.5594 28.6781 13.7219 28.6937 13.7594 28.65C13.7969 28.6062 13.6875 28.4625 13.6375 28.4344C13.6081 28.4215 13.5754 28.4182 13.544 28.4249C13.5126 28.4316 13.4841 28.4481 13.4625 28.4719C13.4313 28.5187 13.4876 28.6094 13.5313 28.65Z" fill="#42D4C6"/>
|
||||
<path d="M12.4126 27.2062C12.4167 27.1877 12.4167 27.1685 12.4126 27.15C12.4253 27.1404 12.4351 27.1274 12.4407 27.1125C12.4509 27.0747 12.4474 27.0345 12.4309 26.999C12.4143 26.9636 12.3856 26.9351 12.3501 26.9187C12.3189 26.9071 12.2844 26.9077 12.2537 26.9204C12.2229 26.9332 12.1982 26.9572 12.1844 26.9875C12.1829 26.9957 12.1829 27.0042 12.1844 27.0125L12.1626 27.0344C12.1484 27.0745 12.1458 27.1178 12.1552 27.1592C12.1646 27.2007 12.1856 27.2387 12.2157 27.2687C12.2326 27.2783 12.2512 27.2844 12.2705 27.2864C12.2898 27.2884 12.3093 27.2864 12.3278 27.2806C12.3463 27.2747 12.3634 27.2651 12.378 27.2523C12.3926 27.2395 12.4043 27.2238 12.4126 27.2062V27.2062Z" fill="#42D4C6"/>
|
||||
<path d="M11.6813 27.2312C11.6677 27.2562 11.6595 27.2837 11.6573 27.312C11.655 27.3404 11.6587 27.3688 11.6681 27.3956C11.6775 27.4224 11.6925 27.447 11.712 27.4676C11.7315 27.4883 11.7551 27.5046 11.7813 27.5156C11.854 27.556 11.9356 27.5775 12.0188 27.5781C12.0124 27.6342 12.0249 27.6907 12.0544 27.7389C12.0838 27.787 12.1285 27.8239 12.1813 27.8438C12.2229 27.8624 12.2701 27.8643 12.3131 27.8492C12.3561 27.8341 12.3917 27.8031 12.4125 27.7625C12.4461 27.7252 12.4647 27.6768 12.4647 27.6266C12.4647 27.5764 12.4461 27.5279 12.4125 27.4906C12.3848 27.4626 12.3507 27.4417 12.3132 27.4297C12.2756 27.4177 12.2357 27.415 12.1969 27.4219C12.1979 27.3611 12.1842 27.3009 12.157 27.2465C12.1298 27.1921 12.0899 27.145 12.0407 27.1094C11.9754 27.0917 11.9064 27.0939 11.8424 27.1156C11.7784 27.1373 11.7224 27.1776 11.6813 27.2312V27.2312Z" fill="#42D4C6"/>
|
||||
<path d="M12.9031 28.8656C12.8928 28.8689 12.8832 28.8742 12.875 28.8812H13.0531C13.0305 28.8686 13.0055 28.8606 12.9798 28.858C12.954 28.8553 12.9279 28.8579 12.9031 28.8656V28.8656Z" fill="#42D4C6"/>
|
||||
<path d="M13.3 28.6187C13.3467 28.5914 13.3844 28.5513 13.4088 28.503C13.4332 28.4548 13.4432 28.4006 13.4375 28.3469C13.436 28.3134 13.422 28.2817 13.3983 28.258C13.3746 28.2343 13.3429 28.2203 13.3094 28.2187C13.2587 28.2098 13.2065 28.2189 13.1619 28.2447C13.1174 28.2704 13.0833 28.311 13.0657 28.3594C13.0572 28.3759 13.0519 28.394 13.05 28.4125V28.4125C13.0884 28.4776 13.1323 28.5393 13.1813 28.5969C13.1976 28.6102 13.2171 28.6193 13.2378 28.6231C13.2586 28.6269 13.28 28.6254 13.3 28.6187V28.6187Z" fill="#42D4C6"/>
|
||||
<path d="M8.65001 28.1375C8.61251 28.1937 8.59376 28.2562 8.48751 28.25C8.46876 28.2125 8.45625 28.1594 8.425 28.1437C8.37448 28.1161 8.31582 28.1073 8.25939 28.1187C8.19376 28.1406 8.19063 28.2094 8.21563 28.275C8.24063 28.3406 8.24687 28.375 8.26562 28.4219C8.26998 28.4343 8.27633 28.4459 8.28439 28.4562C8.27895 28.4569 8.27375 28.459 8.26936 28.4623C8.26497 28.4655 8.26154 28.4699 8.25939 28.475C8.23439 28.5125 8.29377 28.5937 8.32189 28.6187C8.33432 28.6272 8.34855 28.6327 8.36347 28.6348C8.37839 28.6368 8.39358 28.6354 8.40784 28.6305C8.42209 28.6257 8.43503 28.6176 8.4456 28.6068C8.45618 28.5961 8.4641 28.5831 8.46876 28.5687V28.5687C8.50611 28.5854 8.54658 28.5941 8.58751 28.5941C8.62844 28.5941 8.66891 28.5854 8.70626 28.5687C8.7154 28.561 8.72285 28.5514 8.72814 28.5406C8.72814 28.4219 8.83125 28.4094 8.9125 28.3719C8.93443 28.3645 8.95417 28.3518 8.96988 28.3348C8.98558 28.3179 8.99675 28.2972 9.00236 28.2748C9.00796 28.2524 9.00781 28.2289 9.00194 28.2065C8.99607 28.1842 8.98465 28.1636 8.96875 28.1469L8.95 28.125C8.96522 28.1518 8.98806 28.1736 9.01563 28.1875C9.03904 28.2015 9.06532 28.21 9.0925 28.2125C9.11967 28.2149 9.14705 28.2112 9.17259 28.2016C9.19812 28.192 9.22116 28.1767 9.23997 28.157C9.25879 28.1372 9.27289 28.1135 9.28125 28.0875C9.29224 28.0643 9.29812 28.0391 9.29845 28.0134C9.29879 27.9878 9.29358 27.9624 9.2832 27.939C9.27281 27.9155 9.25749 27.8946 9.23828 27.8776C9.21907 27.8607 9.19642 27.848 9.17188 27.8406C9.13322 27.8245 9.09105 27.8186 9.04945 27.8235C9.00785 27.8285 8.96821 27.844 8.93438 27.8687L8.87813 27.8344C8.84319 27.8605 8.8117 27.8909 8.78439 27.925C8.76826 27.9442 8.75769 27.9675 8.75383 27.9922C8.74997 28.017 8.75298 28.0424 8.76251 28.0656C8.71768 28.0755 8.67781 28.101 8.65001 28.1375V28.1375Z" fill="#42D4C6"/>
|
||||
<path d="M4.9938 25.4312C4.97824 25.4349 4.96206 25.4352 4.9464 25.4319C4.93074 25.4287 4.916 25.4221 4.90318 25.4125L4.87817 25.375V26.4688C4.91661 26.473 4.95538 26.4646 4.98865 26.4449C5.02191 26.4252 5.04785 26.3952 5.06254 26.3594C5.07624 26.3207 5.0867 26.281 5.0938 26.2406C5.14944 26.2211 5.19535 26.1808 5.22192 26.1281C5.2391 26.1046 5.25035 26.0772 5.2547 26.0484C5.25906 26.0195 5.25639 25.9901 5.24692 25.9625C5.28571 25.9442 5.31908 25.9162 5.34374 25.8811C5.3684 25.8461 5.38349 25.8052 5.38755 25.7625C5.38582 25.714 5.37393 25.6665 5.35268 25.6229C5.33144 25.5793 5.3013 25.5407 5.2642 25.5095C5.2271 25.4783 5.18386 25.4552 5.13729 25.4417C5.09071 25.4282 5.04183 25.4247 4.9938 25.4312Z" fill="#42D4C6"/>
|
||||
<path d="M5.43756 25.6875C5.47037 25.7021 5.50735 25.7045 5.54176 25.6942C5.57617 25.6838 5.60573 25.6615 5.62507 25.6312C5.63815 25.5979 5.63939 25.5611 5.62858 25.527C5.61777 25.4928 5.59558 25.4635 5.5657 25.4437C5.55058 25.4341 5.53368 25.4275 5.51599 25.4245C5.4983 25.4215 5.4802 25.422 5.46272 25.4261C5.44524 25.4301 5.42875 25.4377 5.41423 25.4482C5.39972 25.4588 5.38746 25.4721 5.37819 25.4875C5.36019 25.522 5.35633 25.5622 5.36741 25.5995C5.37849 25.6368 5.40365 25.6684 5.43756 25.6875V25.6875Z" fill="#42D4C6"/>
|
||||
<path d="M15.1032 27.35C15.1014 27.3582 15.1014 27.3668 15.1032 27.375C15.0462 27.3511 14.9824 27.3497 14.9244 27.371C14.8665 27.3924 14.8188 27.435 14.7911 27.4901C14.7633 27.5452 14.7575 27.6089 14.7748 27.6681C14.7921 27.7274 14.8313 27.7779 14.8844 27.8094C14.9538 27.829 15.0276 27.826 15.095 27.8007C15.1625 27.7754 15.2201 27.7292 15.2594 27.6688C15.278 27.6237 15.278 27.5732 15.2594 27.5281C15.284 27.5229 15.307 27.5116 15.3261 27.4952C15.3452 27.4789 15.3599 27.4579 15.3688 27.4344C15.3773 27.4183 15.3823 27.4006 15.3838 27.3824C15.3852 27.3643 15.3829 27.346 15.3771 27.3288C15.3712 27.3116 15.3619 27.2957 15.3498 27.2821C15.3376 27.2686 15.3228 27.2577 15.3063 27.25C15.2864 27.2431 15.2653 27.2403 15.2443 27.2416C15.2233 27.2429 15.2028 27.2484 15.1839 27.2577C15.165 27.267 15.1481 27.2799 15.1343 27.2958C15.1204 27.3116 15.1099 27.33 15.1032 27.35V27.35Z" fill="#42D4C6"/>
|
||||
<path d="M15.5125 26.1281C15.5035 26.1423 15.4977 26.1584 15.4955 26.1751C15.4933 26.1918 15.4948 26.2088 15.4999 26.2248C15.5049 26.2409 15.5134 26.2557 15.5248 26.2681C15.5362 26.2806 15.5501 26.2904 15.5657 26.2969C15.5968 26.3153 15.634 26.3207 15.6691 26.3119C15.7042 26.3031 15.7344 26.2809 15.7532 26.25C15.7603 26.2336 15.7642 26.2159 15.7644 26.1981C15.7647 26.1802 15.7614 26.1624 15.7547 26.1458C15.748 26.1292 15.7381 26.1141 15.7255 26.1014C15.7129 26.0887 15.6978 26.0787 15.6813 26.0719C15.6665 26.0644 15.6504 26.0599 15.6339 26.0587C15.6174 26.0574 15.6009 26.0595 15.5852 26.0647C15.5695 26.07 15.555 26.0783 15.5425 26.0891C15.53 26.1 15.5198 26.1133 15.5125 26.1281V26.1281Z" fill="#42D4C6"/>
|
||||
<path d="M15.3656 26.7844C15.3482 26.8165 15.3376 26.8519 15.3346 26.8883C15.3315 26.9247 15.3359 26.9614 15.3477 26.996C15.3594 27.0306 15.3782 27.0624 15.4028 27.0895C15.4273 27.1165 15.4573 27.1382 15.4906 27.1531C15.5349 27.1757 15.5859 27.1814 15.6341 27.1694C15.6823 27.1573 15.7246 27.1282 15.7531 27.0875H15.7781C15.8388 27.1052 15.9038 27.1004 15.9612 27.074C16.0186 27.0475 16.0645 27.0013 16.0906 26.9438C16.1144 26.8901 16.119 26.8298 16.1037 26.7731C16.0883 26.7165 16.054 26.6667 16.0064 26.6323C15.9589 26.5979 15.9009 26.5809 15.8423 26.5841C15.7836 26.5873 15.7279 26.6106 15.6844 26.65C15.6239 26.6306 15.5586 26.6335 15.5001 26.6582C15.4416 26.6828 15.3939 26.7276 15.3656 26.7844V26.7844Z" fill="#42D4C6"/>
|
||||
<path d="M7.60622 27.3719C7.60886 27.367 7.61048 27.3616 7.61097 27.3561C7.61145 27.3505 7.6108 27.345 7.60904 27.3397C7.60728 27.3344 7.60445 27.3296 7.60074 27.3254C7.59703 27.3213 7.59252 27.318 7.58747 27.3156C7.57753 27.3133 7.56709 27.3145 7.55796 27.3191C7.54883 27.3237 7.54158 27.3313 7.53748 27.3406C7.53748 27.3406 7.53746 27.3812 7.56246 27.3844C7.57002 27.388 7.57865 27.3887 7.5867 27.3864C7.59476 27.3841 7.6017 27.3789 7.60622 27.3719V27.3719Z" fill="#42D4C6"/>
|
||||
<path d="M7.36566 27.9187L7.53127 28.0062C7.57576 28.0301 7.62714 28.0379 7.67669 28.0282C7.72625 28.0185 7.77092 27.992 7.80315 27.9531C7.84065 27.8969 7.83439 27.7781 7.77814 27.7562C7.69715 27.7027 7.59903 27.6815 7.50316 27.6969C7.35941 27.7406 7.34691 27.75 7.36566 27.9187Z" fill="#42D4C6"/>
|
||||
<path d="M9.68129 28.4438C9.6741 28.4591 9.67008 28.4757 9.66951 28.4926C9.66893 28.5095 9.6718 28.5264 9.67794 28.5422C9.68407 28.558 9.69335 28.5723 9.70521 28.5844C9.71707 28.5965 9.73126 28.6061 9.74693 28.6125C9.78692 28.6334 9.83318 28.6389 9.87695 28.6279C9.92072 28.617 9.95894 28.5904 9.98441 28.5531C10.0039 28.519 10.0093 28.4787 9.99932 28.4407C9.98939 28.4027 9.96496 28.3702 9.93129 28.35C9.88509 28.3364 9.83572 28.3382 9.79062 28.3551C9.74552 28.372 9.70714 28.4031 9.68129 28.4438V28.4438Z" fill="#42D4C6"/>
|
||||
<path d="M9.44687 28.0625C9.39687 28.1062 9.32498 28.1562 9.36248 28.2281C9.38346 28.2709 9.39438 28.318 9.39438 28.3656C9.39438 28.4133 9.38346 28.4603 9.36248 28.5031C9.3555 28.5188 9.35231 28.5359 9.35318 28.5531C9.35404 28.5702 9.35894 28.5869 9.36746 28.6018C9.37598 28.6168 9.38789 28.6295 9.40223 28.6389C9.41657 28.6484 9.43293 28.6543 9.44999 28.6562C9.53124 28.6781 9.63749 28.625 9.62499 28.5469C9.61894 28.5022 9.62571 28.4567 9.64452 28.4158C9.66334 28.3749 9.69341 28.3401 9.73123 28.3156C9.75812 28.2795 9.77264 28.2357 9.77264 28.1906C9.77264 28.1456 9.75812 28.1017 9.73123 28.0656C9.68828 28.0402 9.6394 28.0265 9.58948 28.026C9.53956 28.0254 9.49037 28.038 9.44687 28.0625V28.0625Z" fill="#42D4C6"/>
|
||||
<path d="M10.1219 28.725C10.0157 28.6625 9.9313 28.6594 9.8938 28.725C9.88134 28.7508 9.87488 28.7791 9.87488 28.8078C9.87488 28.8365 9.88134 28.8648 9.8938 28.8906H10.2063C10.2137 28.8744 10.2174 28.8566 10.217 28.8388C10.2166 28.8209 10.2122 28.8034 10.2041 28.7875C10.196 28.7715 10.1844 28.7577 10.1701 28.7469C10.1559 28.736 10.1394 28.7286 10.1219 28.725V28.725Z" fill="#42D4C6"/>
|
||||
<path d="M12.1281 28.0219C12.0844 28.0844 12.15 28.2437 12.2188 28.2437C12.2875 28.2437 12.3438 28.1062 12.3438 28.0656C12.3417 28.0457 12.3342 28.0267 12.3221 28.0107C12.31 27.9947 12.2937 27.9823 12.275 27.975C12.2486 27.9672 12.2206 27.9676 12.1944 27.9759C12.1682 27.9843 12.1451 28.0003 12.1281 28.0219Z" fill="#42D4C6"/>
|
||||
<path d="M6.80631 27.4875C6.8027 27.458 6.79202 27.4298 6.77515 27.4053C6.75828 27.3808 6.73573 27.3608 6.70944 27.3469C6.69263 27.339 6.67443 27.3345 6.65588 27.3337C6.63733 27.3329 6.6188 27.3358 6.60137 27.3422C6.58394 27.3486 6.56795 27.3584 6.55431 27.371C6.54068 27.3836 6.52968 27.3988 6.52195 27.4156C6.4782 27.4906 6.49695 27.6094 6.5657 27.6375C6.61393 27.6563 6.66747 27.6563 6.7157 27.6375C6.70893 27.6977 6.72571 27.7582 6.76256 27.8063C6.78241 27.8327 6.80958 27.8527 6.84068 27.8638C6.87179 27.8749 6.90547 27.8766 6.93756 27.8687C7.02818 27.9344 7.09381 27.85 7.17506 27.8031C7.16865 27.758 7.15383 27.7146 7.13133 27.675C7.1351 27.6478 7.13254 27.6202 7.12387 27.5941C7.1152 27.5681 7.10063 27.5445 7.08131 27.525C7.04758 27.4868 7.00125 27.462 6.95078 27.4551C6.9003 27.4483 6.84904 27.4597 6.80631 27.4875Z" fill="#42D4C6"/>
|
||||
<path d="M5.76565 28.8125C5.76565 28.8125 5.74065 28.8531 5.72815 28.8781H5.93128C5.92677 28.8601 5.91697 28.8437 5.90315 28.8313C5.86252 28.7938 5.8094 28.7656 5.76565 28.8125Z" fill="#42D4C6"/>
|
||||
<path d="M5.95945 28.5C5.9157 28.5688 5.95944 28.6781 6.06569 28.7594C6.09993 28.7778 6.13946 28.7837 6.17761 28.7763C6.21576 28.7689 6.25017 28.7486 6.27506 28.7188C6.29793 28.6802 6.30841 28.6355 6.30506 28.5908C6.30171 28.5461 6.28468 28.5035 6.25631 28.4688C6.21071 28.4392 6.15637 28.4262 6.10235 28.4319C6.04832 28.4376 5.9979 28.4616 5.95945 28.5Z" fill="#42D4C6"/>
|
||||
<path d="M6.36876 28.4406C6.38782 28.5145 6.42184 28.5836 6.46875 28.6438C6.41875 28.6875 6.35939 28.7406 6.40626 28.8312C6.58439 28.8875 6.61251 28.8594 6.58126 28.6813C6.64064 28.6063 6.70626 28.5594 6.71876 28.5C6.72841 28.4297 6.71755 28.3581 6.6875 28.2938C6.65312 28.2156 6.55 28.2094 6.47187 28.2938C6.39375 28.3781 6.36564 28.3875 6.36876 28.4406Z" fill="#42D4C6"/>
|
||||
<path d="M16.172 26.1062C16.172 26.0219 16.1719 25.9344 16.0719 25.925C15.9719 25.9156 15.9438 25.9906 15.9344 26.0719C15.946 26.0918 15.962 26.1089 15.9811 26.1218C16.0002 26.1347 16.022 26.1431 16.0449 26.1465C16.0677 26.1498 16.091 26.1478 16.113 26.1409C16.135 26.1339 16.1552 26.1221 16.172 26.1062Z" fill="#42D4C6"/>
|
||||
<path d="M6.07194 28.3469C6.07194 28.3469 6.09069 28.3125 6.07194 28.3C6.06385 28.2925 6.05324 28.2884 6.04224 28.2884C6.03124 28.2884 6.02064 28.2925 6.01256 28.3C6.00595 28.3079 6.00232 28.3178 6.00232 28.3281C6.00232 28.3384 6.00595 28.3484 6.01256 28.3562C6.01256 28.3562 6.06256 28.3531 6.07194 28.3469Z" fill="#42D4C6"/>
|
||||
<path d="M7.28751 28.8531C7.26227 28.8553 7.23829 28.8651 7.21875 28.8812H7.40001C7.36541 28.8627 7.32676 28.8531 7.28751 28.8531Z" fill="#42D4C6"/>
|
||||
<path d="M5.93126 27.7969C5.81876 27.7969 5.67188 27.8156 5.52501 27.8312C5.50626 27.8312 5.48125 27.875 5.47813 27.9C5.4714 27.9354 5.45773 27.9691 5.43788 27.9991C5.41803 28.0291 5.3924 28.0549 5.3625 28.075C5.34252 28.0888 5.3262 28.1072 5.31491 28.1287C5.30363 28.1502 5.29773 28.1741 5.29773 28.1984C5.29773 28.2227 5.30363 28.2466 5.31491 28.2681C5.3262 28.2896 5.34252 28.3081 5.3625 28.3219L5.43126 28.35C5.41072 28.3775 5.39962 28.411 5.39962 28.4453C5.39962 28.4797 5.41072 28.5131 5.43126 28.5406C5.44816 28.5609 5.47118 28.5752 5.49688 28.5813V28.5813C5.48494 28.6319 5.48583 28.6847 5.49947 28.7349C5.51311 28.7851 5.53908 28.8311 5.575 28.8687H5.6375C5.70938 28.8375 5.81562 28.725 5.80625 28.6531C5.80289 28.6167 5.78709 28.5824 5.76148 28.5563C5.73587 28.5301 5.70203 28.5135 5.66564 28.5094V28.5094C5.68467 28.486 5.69505 28.4567 5.69505 28.4266C5.69505 28.3964 5.68467 28.3672 5.66564 28.3438V28.3438H5.69375C5.72215 28.3217 5.75542 28.3068 5.79076 28.3003C5.8261 28.2938 5.86249 28.2958 5.89688 28.3063C5.94542 28.3137 5.99505 28.3049 6.03803 28.2812C6.08101 28.2574 6.11491 28.2201 6.13439 28.175C6.12832 28.1014 6.10716 28.0298 6.07221 27.9648C6.03726 27.8997 5.98927 27.8426 5.93126 27.7969V27.7969Z" fill="#42D4C6"/>
|
||||
<path d="M4.86255 24.2094V24.5906C4.88505 24.5928 4.90769 24.5883 4.92768 24.5778C4.94768 24.5672 4.96415 24.5511 4.97504 24.5312C5.01013 24.4848 5.0264 24.4268 5.02061 24.3689C5.01482 24.3109 4.98739 24.2573 4.9438 24.2187C4.91877 24.2058 4.88987 24.2025 4.86255 24.2094V24.2094Z" fill="#42D4C6"/>
|
||||
<path d="M4.96255 27.6406C4.92976 27.6322 4.89534 27.6322 4.86255 27.6406V28C4.93558 27.9763 4.99624 27.9246 5.03129 27.8562C5.046 27.8178 5.0472 27.7756 5.03471 27.7364C5.02221 27.6972 4.99677 27.6634 4.96255 27.6406V27.6406Z" fill="#42D4C6"/>
|
||||
<path d="M5.54689 27.0188C5.52189 27.0188 5.47813 27.0188 5.46563 27.0406C5.42743 27.0999 5.39298 27.1614 5.3625 27.225C5.2 27.2594 5.09689 27.35 5.11876 27.45C5.13513 27.4993 5.16831 27.5414 5.21251 27.5688C5.19578 27.5813 5.18193 27.5973 5.17188 27.6156C5.15603 27.6514 5.15266 27.6915 5.16229 27.7295C5.17192 27.7674 5.194 27.8011 5.225 27.825C5.26606 27.8333 5.30859 27.8304 5.34816 27.8167C5.38773 27.8029 5.42291 27.7788 5.45001 27.7469C5.45746 27.7012 5.44741 27.6543 5.42188 27.6156C5.51875 27.5906 5.53751 27.525 5.50626 27.3031C5.59376 27.2812 5.69062 27.2719 5.67187 27.15C5.67049 27.1167 5.65706 27.085 5.63407 27.0609C5.61108 27.0367 5.58009 27.0218 5.54689 27.0188Z" fill="#42D4C6"/>
|
||||
<path d="M4.90945 28.7188C4.89786 28.7034 4.88534 28.6888 4.87195 28.675V28.8719H5.22195C5.2407 28.8 5.24382 28.7187 5.22195 28.6906C5.17615 28.6544 5.11824 28.6372 5.06011 28.6424C5.00198 28.6477 4.94805 28.675 4.90945 28.7188V28.7188Z" fill="#42D4C6"/>
|
||||
<path d="M12.4625 28.7094C12.4185 28.6689 12.3626 28.6437 12.3032 28.6375C12.2999 28.6212 12.2932 28.6058 12.2835 28.5923C12.2738 28.5788 12.2613 28.5676 12.2469 28.5594C12.2318 28.5468 12.214 28.5376 12.1949 28.5327C12.1759 28.5277 12.1559 28.5269 12.1365 28.5305C12.1172 28.5341 12.0988 28.5419 12.0828 28.5534C12.0667 28.5648 12.0534 28.5797 12.0438 28.5969C12.0352 28.6161 12.0308 28.6368 12.0308 28.6578C12.0308 28.6788 12.0352 28.6996 12.0438 28.7188C12.0438 28.7188 12.0219 28.7188 12.0094 28.7438C11.9732 28.783 11.9465 28.83 11.9313 28.8812H12.5563C12.5546 28.8474 12.5453 28.8143 12.5291 28.7846C12.5128 28.7548 12.4901 28.7291 12.4625 28.7094Z" fill="#42D4C6"/>
|
||||
<path d="M7.18131 27.25C7.15856 27.251 7.13633 27.2571 7.11629 27.2679C7.09626 27.2787 7.07895 27.294 7.06569 27.3125C7.04799 27.3417 7.04233 27.3766 7.04992 27.4098C7.0575 27.443 7.07773 27.472 7.10632 27.4906C7.14188 27.5094 7.18321 27.514 7.22204 27.5036C7.26086 27.4932 7.29432 27.4684 7.31569 27.4344C7.33756 27.3969 7.27506 27.25 7.18131 27.25Z" fill="#42D4C6"/>
|
||||
<path d="M10.9501 28.8812H11.1844C11.1093 28.8508 11.0252 28.8508 10.9501 28.8812Z" fill="#42D4C6"/>
|
||||
<path d="M10.3844 28.8812H10.4907C10.4557 28.8734 10.4194 28.8734 10.3844 28.8812V28.8812Z" fill="#42D4C6"/>
|
||||
<path d="M11.9531 28.0969C11.9071 28.0741 11.854 28.0706 11.8053 28.087C11.7567 28.1034 11.7166 28.1384 11.6937 28.1844C11.694 28.2339 11.706 28.2828 11.7288 28.3268C11.7516 28.3708 11.7846 28.4087 11.825 28.4375C11.9 28.4719 11.9687 28.4375 12.0094 28.3437C12.05 28.25 12.0375 28.1313 11.9531 28.0969Z" fill="#42D4C6"/>
|
||||
<path d="M11.4688 27.7625C11.4455 27.8013 11.4368 27.8472 11.4442 27.8918C11.4517 27.9365 11.4748 27.9771 11.5094 28.0063H11.5281C11.5395 28.0229 11.5545 28.0368 11.5719 28.0469C11.6117 28.0694 11.6582 28.0774 11.7032 28.0694C11.7483 28.0614 11.7891 28.038 11.8188 28.0031C11.8396 27.9594 11.8462 27.9102 11.8375 27.8625C11.8415 27.8273 11.8346 27.7917 11.8179 27.7604C11.8011 27.7292 11.7753 27.7038 11.7438 27.6875C11.7214 27.6723 11.696 27.6621 11.6692 27.6576C11.6425 27.6531 11.6151 27.6545 11.589 27.6617C11.5629 27.6688 11.5386 27.6815 11.5178 27.6989C11.4971 27.7163 11.4803 27.738 11.4688 27.7625V27.7625Z" fill="#42D4C6"/>
|
||||
<path d="M11.272 28.8812H11.4938C11.4938 28.8812 11.4938 28.8625 11.472 28.8594C11.4404 28.842 11.4043 28.8348 11.3685 28.8387C11.3327 28.8426 11.299 28.8575 11.272 28.8812V28.8812Z" fill="#42D4C6"/>
|
||||
<path d="M7.14064 28.1281C7.11497 28.1219 7.08818 28.1219 7.06251 28.1281C7.00626 27.9094 6.96565 27.9031 6.77815 27.9937C6.77116 28.0214 6.76975 28.0503 6.77401 28.0785C6.77826 28.1068 6.78809 28.1339 6.80292 28.1583C6.81775 28.1827 6.83728 28.204 6.86039 28.2208C6.8835 28.2376 6.9097 28.2496 6.9375 28.2562C6.93383 28.2764 6.93505 28.2971 6.94103 28.3167C6.94701 28.3362 6.9576 28.3541 6.97189 28.3687C7.01252 28.65 7.18439 28.7125 7.45939 28.5469C7.48112 28.5586 7.50111 28.5733 7.51877 28.5906C7.53303 28.6052 7.55004 28.6167 7.56882 28.6246C7.5876 28.6325 7.60777 28.6366 7.62814 28.6366C7.64851 28.6366 7.66867 28.6325 7.68746 28.6246C7.70624 28.6167 7.72327 28.6052 7.73752 28.5906C7.76804 28.5676 7.79089 28.5358 7.80315 28.4996C7.81542 28.4634 7.8165 28.4243 7.80626 28.3875C7.78126 28.175 7.70939 28.1094 7.51564 28.1375C7.40939 28.1375 7.30627 28.1656 7.20314 28.175C7.18785 28.1531 7.16594 28.1367 7.14064 28.1281V28.1281Z" fill="#42D4C6"/>
|
||||
<path d="M8.62503 28.7438C8.6082 28.7335 8.58953 28.7266 8.57006 28.7236C8.55058 28.7205 8.53069 28.7214 8.51154 28.726C8.49239 28.7307 8.47434 28.739 8.45842 28.7507C8.4425 28.7623 8.42904 28.7769 8.41879 28.7938C8.41558 28.8092 8.41558 28.8252 8.41879 28.8406C8.39778 28.8289 8.3741 28.8227 8.35003 28.8227C8.32595 28.8227 8.30229 28.8289 8.28128 28.8406C8.25602 28.8512 8.23275 28.8659 8.21252 28.8844H8.74378C8.73645 28.8532 8.72188 28.8243 8.70124 28.7998C8.68061 28.7754 8.65449 28.7562 8.62503 28.7438V28.7438Z" fill="#42D4C6"/>
|
||||
<path d="M9.07811 28.7687C9.06326 28.7617 9.04709 28.7579 9.03067 28.7577C9.01425 28.7574 8.99795 28.7606 8.98288 28.7671C8.9678 28.7736 8.95428 28.7833 8.94322 28.7954C8.93216 28.8075 8.92381 28.8219 8.91873 28.8375C8.91723 28.852 8.91723 28.8667 8.91873 28.8812H9.18124C9.17708 28.8544 9.16507 28.8294 9.14672 28.8094C9.12836 28.7893 9.10449 28.7752 9.07811 28.7687Z" fill="#42D4C6"/>
|
||||
<path d="M4.96564 28.5C4.98439 28.4594 5.00627 28.375 4.96564 28.3531C4.94307 28.3476 4.91948 28.3476 4.8969 28.3531C4.88769 28.3324 4.87243 28.315 4.85315 28.3031V28.575L4.88128 28.5344C4.91244 28.5326 4.94211 28.5205 4.96564 28.5Z" fill="#42D4C6"/>
|
||||
<path d="M8.475 27.5406C8.38784 27.5296 8.29964 27.5296 8.21249 27.5406C8.17005 27.5393 8.12807 27.5497 8.09114 27.5706C8.05421 27.5915 8.02375 27.6223 8.00312 27.6594C7.98726 27.6781 7.97684 27.7008 7.97298 27.7251C7.96913 27.7493 7.97198 27.7741 7.98124 27.7969C7.98124 27.8625 8.03123 27.9812 8.14998 27.9562C8.16615 27.9417 8.18399 27.9291 8.20312 27.9187C8.22651 27.9151 8.24886 27.9066 8.26874 27.8937C8.35311 27.8937 8.40938 27.9437 8.51875 27.8937C8.5403 27.8832 8.55945 27.8683 8.575 27.85C8.60366 27.8285 8.62487 27.7986 8.63571 27.7645C8.64655 27.7303 8.64646 27.6937 8.63544 27.6596C8.62443 27.6255 8.60304 27.5957 8.57427 27.5744C8.54551 27.5531 8.5108 27.5413 8.475 27.5406V27.5406Z" fill="#42D4C6"/>
|
||||
<path d="M13.8251 23.7531C13.7962 23.7717 13.7716 23.7963 13.7529 23.8251C13.7342 23.8539 13.7217 23.8863 13.7164 23.9202C13.7111 23.9541 13.7131 23.9888 13.7221 24.0219C13.7311 24.0551 13.747 24.0859 13.7688 24.1125C13.8876 24.275 14.0313 24.1125 14.0657 24.2531C14.1001 24.3937 13.9688 24.3562 14.0313 24.5344C14.0938 24.7125 14.2782 24.7625 14.3594 24.6594C14.4407 24.5562 14.3907 24.4531 14.4157 24.4344C14.4407 24.4156 14.575 24.3687 14.5375 24.2719C14.4625 24.0625 14.2938 24.1781 14.2532 24.125C14.2126 24.0719 14.2063 23.9312 14.1532 23.8437C14.1402 23.8138 14.1206 23.7871 14.096 23.7657C14.0713 23.7443 14.0422 23.7287 14.0108 23.72C13.9793 23.7113 13.9463 23.7098 13.9142 23.7155C13.882 23.7212 13.8516 23.7341 13.8251 23.7531V23.7531Z" fill="#42D4C6"/>
|
||||
<path d="M8.80624 25.0625C8.78649 25.0962 8.78066 25.1363 8.78999 25.1742C8.79933 25.2122 8.82309 25.245 8.85623 25.2656L8.88437 25.2906C8.89036 25.3279 8.9105 25.3615 8.94062 25.3844H8.97186C8.98728 25.4194 9.01273 25.4491 9.04499 25.4696C9.07724 25.4902 9.11486 25.5008 9.15311 25.5C9.22499 25.5 9.33124 25.3531 9.32811 25.2719C9.32499 25.1906 9.32812 25.1125 9.21875 25.0906C9.10937 25.0688 9.06561 25.0469 8.99061 25.025C8.97714 25.0125 8.96088 25.0033 8.94317 24.9983C8.92546 24.9934 8.90681 24.9927 8.88877 24.9963C8.87074 25 8.85384 25.0079 8.83949 25.0194C8.82513 25.0309 8.81374 25.0457 8.80624 25.0625V25.0625Z" fill="#42D4C6"/>
|
||||
<path d="M11.4188 22.6062C11.3521 22.5778 11.2776 22.5735 11.208 22.5941C11.1384 22.6146 11.0782 22.6587 11.0376 22.7187C11.0179 22.7733 11.0192 22.8332 11.0411 22.8869C11.063 22.9406 11.1041 22.9842 11.1563 23.0094C11.187 23.0255 11.2207 23.035 11.2553 23.0374C11.2899 23.0398 11.3246 23.035 11.3573 23.0232C11.3899 23.0115 11.4197 22.993 11.4448 22.9691C11.47 22.9452 11.4898 22.9164 11.5032 22.8844C11.5167 22.8607 11.5252 22.8346 11.5283 22.8076C11.5313 22.7805 11.5288 22.7532 11.5209 22.7271C11.513 22.7011 11.4999 22.6769 11.4823 22.6562C11.4648 22.6354 11.4432 22.6184 11.4188 22.6062V22.6062Z" fill="#42D4C6"/>
|
||||
<path d="M11.0907 25.0156C11.1077 25.022 11.1258 25.0249 11.1439 25.024C11.1621 25.0232 11.1798 25.0187 11.1962 25.0108C11.2125 25.003 11.2271 24.9918 11.2391 24.9782C11.251 24.9645 11.2601 24.9485 11.2657 24.9313V24.9313C11.3008 24.9608 11.3426 24.9812 11.3875 24.9906C11.4531 24.9964 11.5137 25.0279 11.5563 25.0781C11.5919 25.1111 11.6348 25.1354 11.6814 25.149C11.7281 25.1625 11.7772 25.165 11.825 25.1562C11.8724 25.1469 11.9161 25.1239 11.9505 25.09C11.985 25.0561 12.0087 25.0129 12.0188 24.9656C12.0188 24.9656 12.0188 24.9469 12.0188 24.9406C12.0396 24.9965 12.081 25.0423 12.1344 25.0688C12.2125 25.1 12.3032 25.0469 12.3563 24.9344C12.3745 24.8939 12.3792 24.8486 12.3696 24.8053C12.36 24.7619 12.3367 24.7228 12.3032 24.6937C12.2517 24.6755 12.1958 24.6741 12.1435 24.6898C12.0912 24.7056 12.0453 24.7376 12.0125 24.7812C12.0098 24.7936 12.0098 24.8064 12.0125 24.8187C11.9931 24.7841 11.9652 24.7551 11.9313 24.7344C11.8457 24.6776 11.7423 24.6542 11.6407 24.6687C11.6025 24.672 11.5643 24.6632 11.5313 24.6437C11.5092 24.6241 11.4825 24.6104 11.4537 24.6036C11.425 24.5969 11.3949 24.5974 11.3664 24.6052C11.3379 24.6129 11.3118 24.6276 11.2904 24.648C11.2689 24.6684 11.2529 24.6938 11.2438 24.7219C11.2333 24.708 11.2193 24.6972 11.2032 24.6906C11.1666 24.6851 11.1292 24.6928 11.0977 24.7122C11.0663 24.7317 11.0427 24.7617 11.0313 24.7969C11.0107 24.8339 11.0055 24.8774 11.0165 24.9183C11.0276 24.9592 11.0542 24.9941 11.0907 25.0156V25.0156Z" fill="#42D4C6"/>
|
||||
<path d="M11.2625 24.1C11.2513 24.1335 11.2525 24.1699 11.2659 24.2025C11.2793 24.2352 11.304 24.2619 11.3354 24.2778C11.3669 24.2938 11.4031 24.2978 11.4374 24.2893C11.4716 24.2807 11.5016 24.2601 11.5219 24.2313C11.5389 24.1984 11.5425 24.1602 11.532 24.1247C11.5216 24.0892 11.4978 24.059 11.4657 24.0406C11.4303 24.0246 11.3904 24.0218 11.3531 24.0327C11.3158 24.0436 11.2837 24.0675 11.2625 24.1V24.1Z" fill="#42D4C6"/>
|
||||
<path d="M9.38437 24.0844C9.39425 24.0713 9.39961 24.0554 9.39961 24.0391C9.39961 24.0227 9.39425 24.0068 9.38437 23.9938C9.35624 23.9719 9.3125 23.9938 9.29375 24.0125C9.275 24.0313 9.26563 24.1063 9.29375 24.125C9.32188 24.1438 9.36874 24.1063 9.38437 24.0844Z" fill="#42D4C6"/>
|
||||
<path d="M15.8688 25.4C15.8525 25.3916 15.8346 25.3867 15.8164 25.3855C15.7981 25.3843 15.7797 25.3868 15.7625 25.393C15.7452 25.3991 15.7293 25.4087 15.7159 25.4212C15.7025 25.4337 15.6918 25.4488 15.6844 25.4656C15.6786 25.4812 15.676 25.4978 15.6768 25.5144C15.6776 25.531 15.6818 25.5473 15.6891 25.5622C15.6964 25.5771 15.7067 25.5904 15.7193 25.6012C15.732 25.612 15.7467 25.6201 15.7626 25.625C15.7975 25.6366 15.8354 25.6347 15.869 25.6197C15.9026 25.6046 15.9293 25.5775 15.9438 25.5437C15.9491 25.5294 15.9513 25.5141 15.9504 25.4989C15.9494 25.4837 15.9453 25.4688 15.9382 25.4552C15.9311 25.4417 15.9213 25.4298 15.9094 25.4203C15.8974 25.4108 15.8836 25.4039 15.8688 25.4Z" fill="#42D4C6"/>
|
||||
<path d="M11.7187 23.9906C11.686 24.0109 11.6626 24.0434 11.6539 24.0809C11.6451 24.1184 11.6515 24.1579 11.6718 24.1906C11.6921 24.2234 11.7246 24.2467 11.7621 24.2555C11.7996 24.2643 11.8391 24.2578 11.8718 24.2375C11.8912 24.2247 11.9071 24.2073 11.918 24.1868C11.929 24.1664 11.9347 24.1435 11.9347 24.1203C11.9347 24.0971 11.929 24.0743 11.918 24.0538C11.9071 24.0334 11.8912 24.0159 11.8718 24.0031C11.8485 23.9907 11.8229 23.9832 11.7966 23.981C11.7702 23.9789 11.7438 23.9822 11.7187 23.9906V23.9906Z" fill="#42D4C6"/>
|
||||
<path d="M5.23123 22.1469C5.31873 22.1469 5.4156 22.1469 5.43747 22.0438C5.4406 22.0336 5.4406 22.0227 5.43747 22.0125C5.47915 22.0217 5.52229 22.0224 5.56421 22.0143C5.60614 22.0062 5.64596 21.9897 5.68123 21.9656C5.7068 21.9399 5.72115 21.9051 5.72115 21.8688C5.72115 21.8325 5.7068 21.7976 5.68123 21.7719C5.65356 21.7283 5.6099 21.6974 5.55964 21.6857C5.50937 21.674 5.45653 21.6825 5.41248 21.7094C5.3875 21.7301 5.36708 21.7558 5.35256 21.7849C5.33803 21.8139 5.32971 21.8457 5.3281 21.8781C5.30433 21.8721 5.27933 21.873 5.25606 21.8808C5.2328 21.8885 5.21225 21.9028 5.19686 21.9219C5.14373 21.9969 5.1906 22.0687 5.23123 22.1469Z" fill="#42D4C6"/>
|
||||
<path d="M12.1438 23.3062C12.1438 23.2 12.0063 23.1813 11.9563 23.1969C11.9063 23.2125 11.9563 23.45 11.9938 23.4781C12.0313 23.5062 12.1438 23.4125 12.1438 23.3062Z" fill="#42D4C6"/>
|
||||
<path d="M5.57821 21.3812C5.62651 21.3471 5.66053 21.2964 5.67379 21.2387C5.68705 21.1811 5.6786 21.1206 5.65008 21.0687C5.60889 21.0242 5.55288 20.9961 5.4925 20.9898C5.43212 20.9834 5.3715 20.9993 5.32196 21.0344C5.28692 21.0631 5.26464 21.1045 5.25995 21.1495C5.25527 21.1946 5.26857 21.2397 5.29696 21.275C5.35633 21.3688 5.51259 21.425 5.57821 21.3812Z" fill="#42D4C6"/>
|
||||
<path d="M13.3345 28.7219C13.2898 28.7676 13.2548 28.8218 13.2313 28.8812H13.7188C13.7052 28.8229 13.6735 28.7705 13.6282 28.7312C13.5859 28.7002 13.5352 28.6826 13.4828 28.6809C13.4303 28.6793 13.3786 28.6935 13.3345 28.7219V28.7219Z" fill="#42D4C6"/>
|
||||
<path d="M14.1813 21.7687C14.1818 21.7538 14.1783 21.7389 14.1712 21.7257C14.164 21.7125 14.1535 21.7015 14.1407 21.6937C14.1249 21.6918 14.1088 21.694 14.094 21.7C14.0793 21.706 14.0663 21.7157 14.0563 21.7281C14.0563 21.7469 14.0376 21.8125 14.0907 21.8312C14.1438 21.85 14.1719 21.7937 14.1813 21.7687Z" fill="#42D4C6"/>
|
||||
<path d="M8.98749 24.1656C9.01561 24.2156 9.07498 24.1656 9.09998 24.1656C9.12498 24.1656 9.12186 24.1 9.09998 24.0937C9.08876 24.0834 9.07532 24.0758 9.06069 24.0714C9.04607 24.0671 9.03064 24.0662 9.0156 24.0687C9.00022 24.079 8.98895 24.0943 8.98381 24.112C8.97866 24.1298 8.97997 24.1487 8.98749 24.1656V24.1656Z" fill="#42D4C6"/>
|
||||
<path d="M7.08437 23.2938C7.17812 23.5313 7.325 23.5406 7.49688 23.3281H7.55C7.61875 23.3563 7.66249 23.3281 7.70312 23.2719C7.7201 23.25 7.72931 23.223 7.72931 23.1953C7.72931 23.1676 7.7201 23.1407 7.70312 23.1188C7.64999 23.0063 7.59063 22.9781 7.49688 23.0188C7.49688 22.9313 7.42813 22.8938 7.34375 22.8625C7.27813 22.9219 7.19374 22.9625 7.23437 23.0594C7.24618 23.0873 7.26711 23.1104 7.29374 23.125L7.15311 23.2031C7.03749 23.0312 7.01563 23.0281 6.89062 23.1563C6.9125 23.275 6.97812 23.3063 7.08437 23.2938Z" fill="#42D4C6"/>
|
||||
<path d="M7.23129 21.1906C7.26871 21.1653 7.29627 21.1279 7.30936 21.0846C7.32245 21.0414 7.32027 20.9949 7.30318 20.9531C7.27554 20.9131 7.23518 20.8836 7.18866 20.8694C7.14215 20.8552 7.09219 20.8572 7.04693 20.875C6.97193 20.9156 6.9688 21.0469 7.04693 21.1531C7.06971 21.1781 7.09984 21.1952 7.13299 21.202C7.16614 21.2087 7.20056 21.2047 7.23129 21.1906Z" fill="#42D4C6"/>
|
||||
<path d="M5.65314 19.7719C5.68276 19.7726 5.71173 19.763 5.7351 19.7448C5.75846 19.7266 5.77478 19.7008 5.78127 19.6719C5.78132 19.651 5.77586 19.6305 5.76546 19.6124C5.75506 19.5943 5.74007 19.5793 5.72201 19.5688C5.70395 19.5584 5.68345 19.5528 5.66258 19.5528C5.64171 19.5528 5.62122 19.5583 5.60315 19.5687C5.58817 19.5836 5.57729 19.602 5.57158 19.6223C5.56587 19.6426 5.56551 19.664 5.57055 19.6845C5.57559 19.7049 5.58585 19.7238 5.60032 19.7391C5.6148 19.7544 5.63299 19.7657 5.65314 19.7719V19.7719Z" fill="#42D4C6"/>
|
||||
<path d="M9.1219 23.0562C9.1219 23.0562 9.1469 22.9844 9.1219 22.9625C9.0969 22.9406 9.04065 22.9875 9.02502 23.0094C9.01785 23.0211 9.01404 23.0346 9.01404 23.0484C9.01404 23.0622 9.01785 23.0757 9.02502 23.0875C9.05627 23.1 9.10315 23.075 9.1219 23.0562Z" fill="#42D4C6"/>
|
||||
<path d="M5.3063 20.1906C5.26667 20.231 5.23875 20.2814 5.22554 20.3365C5.21233 20.3915 5.21433 20.4491 5.2313 20.5031C5.23646 20.5235 5.24579 20.5427 5.25869 20.5594C5.2716 20.576 5.2878 20.5899 5.3063 20.6C5.33477 20.6168 5.36631 20.6278 5.39906 20.6323C5.4318 20.6368 5.46512 20.6348 5.49709 20.6264C5.52906 20.618 5.55903 20.6033 5.58529 20.5832C5.61154 20.5631 5.63355 20.538 5.65004 20.5094C5.65004 20.4844 5.68443 20.4625 5.70005 20.4344C5.75005 20.4687 5.79068 20.5031 5.83755 20.5312C5.85291 20.5437 5.87083 20.5527 5.89004 20.5574C5.90925 20.5622 5.92927 20.5626 5.94868 20.5587C5.96808 20.5549 5.98639 20.5467 6.00229 20.535C6.0182 20.5232 6.0313 20.508 6.04067 20.4906C6.06841 20.458 6.08516 20.4175 6.08852 20.3749C6.09189 20.3322 6.0817 20.2896 6.05942 20.2531C6.03989 20.2183 6.00927 20.1911 5.97244 20.1758C5.93561 20.1605 5.89472 20.158 5.8563 20.1687C5.79695 20.182 5.73929 20.2019 5.68443 20.2281C5.65943 20.2281 5.63754 20.1937 5.61254 20.1812C5.56633 20.1522 5.51253 20.1376 5.45799 20.1393C5.40346 20.141 5.35066 20.1588 5.3063 20.1906Z" fill="#42D4C6"/>
|
||||
<path d="M8.34063 24.8219C8.40689 24.8326 8.47481 24.8193 8.53212 24.7843C8.58944 24.7494 8.63236 24.6951 8.65313 24.6312C8.66529 24.5506 8.64753 24.4682 8.60321 24.3997C8.55889 24.3313 8.49106 24.2813 8.41249 24.2594C8.29999 24.2594 8.2625 24.3875 8.3 24.4625C8.3375 24.5375 8.3 24.5156 8.2625 24.5844C8.24543 24.6032 8.23364 24.6262 8.22836 24.6511C8.22308 24.6759 8.22448 24.7017 8.23242 24.7259C8.24036 24.75 8.25456 24.7716 8.27356 24.7885C8.29257 24.8053 8.31571 24.8169 8.34063 24.8219V24.8219Z" fill="#42D4C6"/>
|
||||
<path d="M8.74374 24.8062C8.73709 24.8009 8.72882 24.798 8.7203 24.798C8.71178 24.798 8.70351 24.8009 8.69686 24.8062C8.6896 24.8138 8.68555 24.8239 8.68555 24.8344C8.68555 24.8449 8.6896 24.8549 8.69686 24.8625C8.71873 24.8625 8.74375 24.8625 8.75 24.8437C8.75293 24.8309 8.75068 24.8174 8.74374 24.8062Z" fill="#42D4C6"/>
|
||||
<path d="M5.63439 24.2125C5.62828 24.1982 5.61909 24.1854 5.60748 24.175C5.59588 24.1647 5.58214 24.157 5.56724 24.1525C5.55233 24.148 5.53663 24.1469 5.52123 24.1492C5.50584 24.1514 5.49113 24.157 5.47814 24.1656C5.44691 24.1992 5.42439 24.24 5.41253 24.2844C5.39292 24.2601 5.36454 24.2446 5.33355 24.241C5.30256 24.2375 5.27144 24.2464 5.2469 24.2656C5.2282 24.2786 5.21293 24.2958 5.20238 24.316C5.19183 24.3361 5.18632 24.3585 5.18632 24.3812C5.18632 24.404 5.19183 24.4264 5.20238 24.4465C5.21293 24.4666 5.2282 24.4839 5.2469 24.4969C5.3219 24.5531 5.30628 24.6187 5.3094 24.6969C5.0969 24.6969 5.02502 24.8187 5.08752 24.9906C5.09289 25.0081 5.10023 25.0248 5.1094 25.0406C5.11632 25.064 5.12922 25.0852 5.1468 25.1021C5.16438 25.119 5.18605 25.131 5.20968 25.137C5.23332 25.143 5.25812 25.1427 5.28163 25.1362C5.30514 25.1297 5.32655 25.1172 5.34377 25.1C5.3837 25.0755 5.41869 25.0437 5.4469 25.0062C5.48768 25.0195 5.53156 25.0196 5.57244 25.0067C5.61333 24.9939 5.64918 24.9686 5.67502 24.9344C5.69152 24.9367 5.70832 24.9356 5.72442 24.9313C5.74052 24.927 5.7556 24.9196 5.76877 24.9094C5.80503 24.8933 5.83537 24.8662 5.85553 24.832C5.8757 24.7979 5.8847 24.7583 5.88128 24.7187C5.84066 24.4375 5.77814 24.3812 5.49689 24.3781H5.47502C5.51139 24.3746 5.54713 24.3661 5.58127 24.3531C5.59619 24.3504 5.61017 24.344 5.62182 24.3343C5.63348 24.3246 5.64243 24.3121 5.64778 24.2979C5.65314 24.2837 5.65473 24.2684 5.65238 24.2534C5.65003 24.2385 5.64383 24.2244 5.63439 24.2125V24.2125Z" fill="#42D4C6"/>
|
||||
<path d="M8.61874 25.2687C8.60473 25.2773 8.59261 25.2887 8.58309 25.3021C8.57357 25.3155 8.56685 25.3306 8.56335 25.3467C8.55985 25.3627 8.55962 25.3793 8.5627 25.3955C8.56578 25.4116 8.57208 25.427 8.58124 25.4406C8.6017 25.467 8.63105 25.485 8.66383 25.4913C8.6966 25.4977 8.73056 25.4919 8.75937 25.475C8.77436 25.4674 8.78752 25.4566 8.79791 25.4434C8.80831 25.4302 8.8157 25.4149 8.81956 25.3985C8.82343 25.3821 8.82369 25.3651 8.82031 25.3486C8.81693 25.3322 8.80999 25.3166 8.79999 25.3031C8.77861 25.277 8.74875 25.2593 8.71561 25.253C8.68248 25.2467 8.64818 25.2523 8.61874 25.2687V25.2687Z" fill="#42D4C6"/>
|
||||
<path d="M8.62507 23.85C8.62939 23.8369 8.62928 23.8228 8.62476 23.8098C8.62024 23.7968 8.61156 23.7857 8.60006 23.7781C8.57819 23.7781 8.53445 23.7969 8.5157 23.8156C8.49695 23.8344 8.5157 23.8937 8.53445 23.9094C8.5532 23.925 8.61257 23.875 8.62507 23.85Z" fill="#42D4C6"/>
|
||||
<path d="M8.48132 24.1812C8.49634 24.1934 8.51511 24.2001 8.53446 24.2001C8.5538 24.2001 8.57255 24.1934 8.58758 24.1812C8.59676 24.175 8.60451 24.1668 8.61029 24.1573C8.61608 24.1479 8.61975 24.1372 8.62111 24.1262C8.62246 24.1152 8.62145 24.104 8.61813 24.0934C8.61481 24.0828 8.60928 24.073 8.60188 24.0647C8.59448 24.0564 8.5854 24.0498 8.57524 24.0453C8.56507 24.0408 8.55406 24.0385 8.54294 24.0386C8.53183 24.0387 8.52087 24.0411 8.51079 24.0458C8.5007 24.0505 8.49171 24.0572 8.48445 24.0656C8.47619 24.0727 8.46951 24.0815 8.46484 24.0913C8.46016 24.1012 8.4576 24.1119 8.4573 24.1227C8.45701 24.1336 8.45898 24.1445 8.46312 24.1545C8.46726 24.1646 8.47346 24.1737 8.48132 24.1812Z" fill="#42D4C6"/>
|
||||
<path d="M9.28437 24.925C9.33124 24.9406 9.45625 24.9562 9.48437 24.925C9.5125 24.8937 9.42186 24.7844 9.38124 24.7531C9.34061 24.7219 9.28125 24.7344 9.25312 24.8C9.225 24.8656 9.22499 24.9031 9.28437 24.925Z" fill="#42D4C6"/>
|
||||
<path d="M13.4719 23.7469C13.4779 23.724 13.4788 23.7001 13.4745 23.6769C13.4702 23.6536 13.4607 23.6316 13.4469 23.6125C13.4219 23.5844 13.2875 23.5906 13.2625 23.6469C13.2501 23.6775 13.2504 23.7119 13.2633 23.7423C13.2762 23.7728 13.3006 23.7969 13.3312 23.8094C13.3442 23.8172 13.3588 23.8218 13.3739 23.8227C13.389 23.8237 13.4041 23.821 13.4179 23.8149C13.4317 23.8087 13.4438 23.7993 13.4532 23.7875C13.4626 23.7757 13.469 23.7617 13.4719 23.7469V23.7469Z" fill="#42D4C6"/>
|
||||
<path d="M11.7563 25.975C11.728 25.9243 11.6841 25.8842 11.6312 25.8605C11.5783 25.8369 11.5191 25.831 11.4625 25.8437C11.3781 25.8625 11.3094 25.8906 11.2344 25.8125C11.1594 25.7344 11.1125 25.8125 11.0625 25.8562C11.0625 25.9625 11.1281 26.0062 11.2156 25.9937C11.2375 26.0531 11.2531 26.1031 11.2688 26.15C11.2487 26.1572 11.2313 26.1703 11.2188 26.1875C11.2033 26.2164 11.1981 26.2497 11.2037 26.2819C11.2094 26.3142 11.2257 26.3437 11.25 26.3656C11.2875 26.3906 11.3531 26.3656 11.3937 26.3031C11.4401 26.3243 11.4898 26.337 11.5406 26.3406C11.4943 26.378 11.4596 26.4279 11.4406 26.4844C11.3781 26.6687 11.4063 26.7469 11.5531 26.8156C11.5867 26.8304 11.6231 26.8378 11.6598 26.8373C11.6966 26.8368 11.7327 26.8284 11.7659 26.8127C11.7991 26.797 11.8285 26.7743 11.8522 26.7463C11.8759 26.7182 11.8932 26.6854 11.9031 26.65C11.9049 26.6386 11.9049 26.627 11.9031 26.6156C11.9111 26.6529 11.9265 26.6883 11.9486 26.7194C11.9706 26.7506 11.9987 26.7769 12.0313 26.7969C12.0665 26.8037 12.103 26.8008 12.1368 26.7887C12.1705 26.7766 12.2004 26.7555 12.2233 26.7278C12.2462 26.7001 12.2612 26.6668 12.2667 26.6313C12.2722 26.5959 12.2681 26.5595 12.2548 26.5262C12.2415 26.4929 12.2194 26.4637 12.1909 26.4418C12.1624 26.42 12.1286 26.4062 12.0929 26.4019C12.0573 26.3976 12.0211 26.403 11.9883 26.4175C11.9554 26.432 11.9271 26.4551 11.9063 26.4844V26.5156C11.8949 26.4766 11.875 26.4407 11.848 26.4104C11.8209 26.3801 11.7875 26.3563 11.75 26.3406C11.722 26.3291 11.6926 26.3218 11.6625 26.3187C11.7064 26.2744 11.7381 26.2194 11.7545 26.1592C11.7709 26.099 11.7716 26.0355 11.7563 25.975V25.975Z" fill="#42D4C6"/>
|
||||
<path d="M6.68128 24.1625C6.66287 24.1741 6.64779 24.1902 6.63753 24.2094V24.2281C6.62099 24.2615 6.61426 24.2989 6.61813 24.336C6.622 24.3731 6.63632 24.4082 6.65941 24.4375C6.67763 24.4665 6.70163 24.4915 6.72992 24.5109C6.75821 24.5303 6.79019 24.5436 6.82386 24.5501C6.85753 24.5566 6.89219 24.5561 6.92565 24.5486C6.95912 24.5412 6.99068 24.5269 7.01839 24.5067C7.0461 24.4865 7.06938 24.4608 7.08675 24.4312C7.10411 24.4017 7.11521 24.3688 7.11934 24.3348C7.12348 24.3008 7.12057 24.2662 7.1108 24.2334C7.10103 24.2005 7.08459 24.17 7.06252 24.1438C6.98752 24.0406 6.84065 24.0406 6.7094 24.1438L6.68128 24.1625Z" fill="#42D4C6"/>
|
||||
<path d="M10.7375 25.7625C10.7375 25.7625 10.6719 25.7625 10.6656 25.7625C10.6594 25.7625 10.6656 25.8344 10.6656 25.8531C10.6724 25.8605 10.6805 25.8664 10.6897 25.8705C10.6988 25.8745 10.7087 25.8766 10.7187 25.8766C10.7287 25.8766 10.7386 25.8745 10.7478 25.8705C10.7569 25.8664 10.7651 25.8605 10.7719 25.8531C10.8187 25.8219 10.7594 25.7812 10.7375 25.7625Z" fill="#42D4C6"/>
|
||||
<path d="M10.6001 26.9375C10.5861 26.9271 10.5691 26.9215 10.5516 26.9215C10.5342 26.9215 10.5172 26.9271 10.5032 26.9375C10.4584 26.973 10.4292 27.0246 10.4219 27.0812C10.4215 27.0901 10.4229 27.099 10.426 27.1073C10.4291 27.1156 10.4339 27.1232 10.44 27.1297C10.4462 27.1361 10.4535 27.1412 10.4617 27.1447C10.4699 27.1482 10.4787 27.15 10.4876 27.15C10.4876 27.15 10.4876 27.1719 10.4876 27.1844C10.4954 27.2742 10.5323 27.3591 10.5926 27.4262C10.6529 27.4933 10.7334 27.5389 10.822 27.5562C10.8767 27.5702 10.934 27.57 10.9887 27.5558C11.0433 27.5416 11.0935 27.5138 11.1345 27.475C11.1599 27.4478 11.1744 27.4122 11.1751 27.375C11.1859 27.3794 11.1975 27.3815 11.2092 27.3812C11.2209 27.3809 11.2324 27.3782 11.243 27.3732C11.2536 27.3682 11.263 27.361 11.2707 27.3522C11.2784 27.3434 11.2841 27.333 11.2876 27.3219C11.2876 27.2781 11.3126 27.225 11.2876 27.1937C11.2626 27.1625 11.2344 27.175 11.1969 27.1937C11.194 27.1825 11.194 27.1706 11.1969 27.1594C11.206 27.1406 11.2123 27.1206 11.2157 27.1C11.2359 27.1124 11.2592 27.119 11.2829 27.119C11.3066 27.119 11.3299 27.1124 11.3501 27.1C11.4126 27.075 11.4532 27.0219 11.4251 26.9594C11.397 26.8969 11.3594 26.8469 11.3157 26.8375C11.2946 26.8315 11.2721 26.8322 11.2514 26.8395C11.2307 26.8467 11.2128 26.8602 11.2001 26.8781C11.1543 26.8083 11.0841 26.7581 11.0032 26.7375C11.0032 26.7375 10.9876 26.7187 10.9813 26.7187H10.9563H10.9376C10.8743 26.7065 10.8088 26.7142 10.7501 26.7406C10.713 26.7615 10.6806 26.7897 10.6548 26.8236C10.629 26.8574 10.6104 26.8962 10.6001 26.9375V26.9375Z" fill="#42D4C6"/>
|
||||
<path d="M16.2438 27.7125C16.3063 27.5219 16.2626 27.4781 16.097 27.3813C16.0685 27.367 16.0374 27.359 16.0056 27.3576C15.9739 27.3563 15.9421 27.3617 15.9126 27.3735C15.8831 27.3853 15.8564 27.4033 15.8343 27.4262C15.8122 27.449 15.7952 27.4763 15.7845 27.5063C15.7754 27.5719 15.789 27.6387 15.8232 27.6955C15.8573 27.7524 15.9098 27.7959 15.972 27.8188C15.9964 27.8321 16.0234 27.8399 16.0512 27.8417C16.0789 27.8434 16.1068 27.8391 16.1327 27.829C16.1586 27.8188 16.1819 27.8032 16.2012 27.7831C16.2204 27.7629 16.2349 27.7389 16.2438 27.7125V27.7125Z" fill="#42D4C6"/>
|
||||
<path d="M10.9312 25.6062C10.9459 25.583 10.9548 25.5567 10.9574 25.5293C10.96 25.502 10.9561 25.4745 10.9461 25.4489C10.936 25.4233 10.9201 25.4005 10.8996 25.3822C10.8791 25.364 10.8546 25.3508 10.8281 25.3437C10.725 25.3 10.6031 25.325 10.575 25.4C10.5612 25.4603 10.5676 25.5234 10.5929 25.5798C10.6183 25.6362 10.6614 25.6828 10.7156 25.7125C10.7366 25.7213 10.7593 25.7255 10.782 25.7248C10.8048 25.7241 10.8271 25.7185 10.8476 25.7084C10.868 25.6984 10.8861 25.684 10.9005 25.6664C10.9149 25.6488 10.9254 25.6283 10.9312 25.6062V25.6062Z" fill="#42D4C6"/>
|
||||
<path d="M15.8844 28.1313C15.8435 28.1553 15.8108 28.1913 15.7907 28.2344C15.7734 28.2255 15.7544 28.2201 15.7349 28.2188C15.7154 28.2174 15.6959 28.22 15.6775 28.2265C15.6591 28.2329 15.6422 28.243 15.6278 28.2562C15.6134 28.2694 15.6018 28.2853 15.5938 28.3031C15.5831 28.3345 15.5839 28.3686 15.5959 28.3995C15.6079 28.4303 15.6304 28.456 15.6595 28.4719C15.6869 28.4814 15.7164 28.4835 15.7449 28.478C15.7734 28.4725 15.8 28.4596 15.822 28.4406C15.8549 28.4699 15.8967 28.4875 15.9407 28.4906C16.0188 28.4906 16.0501 28.4313 16.0813 28.375C16.1126 28.3188 16.1563 28.2813 16.1313 28.2063C16.1205 28.1847 16.1054 28.1656 16.0869 28.15C16.0685 28.1345 16.0471 28.1229 16.024 28.1158C16.0009 28.1088 15.9766 28.1066 15.9526 28.1092C15.9287 28.1119 15.9054 28.1194 15.8844 28.1313V28.1313Z" fill="#42D4C6"/>
|
||||
<path d="M15.1438 26.5156C15.1188 26.4869 15.0861 26.4658 15.0497 26.4548C15.0132 26.4437 14.9744 26.4432 14.9376 26.4531C14.917 26.4544 14.897 26.4605 14.8791 26.4708C14.8612 26.4811 14.8459 26.4954 14.8344 26.5125C14.8295 26.4809 14.8166 26.4512 14.7969 26.426C14.7772 26.4009 14.7514 26.3811 14.722 26.3687C14.7079 26.3623 14.6926 26.3588 14.6772 26.3586C14.6617 26.3585 14.6464 26.3616 14.6322 26.3678C14.618 26.374 14.6053 26.3832 14.5949 26.3946C14.5845 26.4061 14.5767 26.4197 14.572 26.4344C14.561 26.4606 14.5554 26.4888 14.5554 26.5172C14.5554 26.5456 14.561 26.5738 14.572 26.6C14.586 26.617 14.6037 26.6307 14.6237 26.6401C14.6437 26.6496 14.6655 26.6545 14.6876 26.6545C14.7097 26.6545 14.7315 26.6496 14.7515 26.6401C14.7715 26.6307 14.7891 26.617 14.8032 26.6C14.7951 26.6525 14.7782 26.7032 14.7532 26.75C14.7478 26.7722 14.7469 26.7953 14.7507 26.8179C14.7544 26.8404 14.7627 26.862 14.7751 26.8813C14.8118 26.9365 14.8431 26.9951 14.8688 27.0563C14.886 27.0948 14.9173 27.1252 14.9562 27.1415C14.9951 27.1578 15.0387 27.1586 15.0782 27.1437C15.1876 27.0937 15.2251 27.0312 15.1844 26.9281C15.1523 26.8714 15.1146 26.8181 15.0719 26.7688L15.1313 26.6812C15.1507 26.6585 15.1624 26.6303 15.1646 26.6005C15.1669 26.5707 15.1596 26.541 15.1438 26.5156Z" fill="#42D4C6"/>
|
||||
<path d="M13.8344 27.6375C13.8256 27.682 13.8288 27.7279 13.8436 27.7708C13.8585 27.8136 13.8844 27.8517 13.9187 27.8813C13.897 27.8649 13.874 27.8502 13.85 27.8375C13.8281 27.827 13.8041 27.8214 13.7798 27.821C13.7555 27.8206 13.7314 27.8254 13.7091 27.8352C13.6869 27.845 13.667 27.8595 13.6508 27.8777C13.6347 27.8959 13.6227 27.9174 13.6156 27.9406C13.5932 27.9936 13.5913 28.0531 13.6103 28.1075C13.6294 28.1618 13.6681 28.207 13.7187 28.2344C13.772 28.257 13.8318 28.2582 13.886 28.2379C13.9401 28.2175 13.9842 28.1771 14.0094 28.125C14.0234 28.0846 14.0243 28.0408 14.012 27.9998C13.9996 27.9588 13.9746 27.9228 13.9406 27.8969C13.977 27.9232 14.017 27.9443 14.0594 27.9594C14.1495 27.9639 14.239 27.9432 14.318 27.8996C14.3969 27.856 14.4621 27.7912 14.5062 27.7125C14.5469 27.5844 14.4094 27.4937 14.4125 27.4562C14.4156 27.4187 14.6281 27.35 14.6719 27.1906C14.6785 27.1246 14.6684 27.0579 14.6427 26.9968C14.6169 26.9356 14.5761 26.8819 14.5242 26.8406C14.4723 26.7992 14.4108 26.7716 14.3455 26.7601C14.2801 26.7486 14.2129 26.7538 14.15 26.775C14.0882 26.7994 14.0359 26.8429 14.0005 26.8991C13.9651 26.9552 13.9485 27.0212 13.9531 27.0875C13.9719 27.2094 14.1125 27.3406 14.0969 27.4C14.0812 27.4594 13.8656 27.4719 13.8344 27.6375Z" fill="#42D4C6"/>
|
||||
<path d="M13.9937 25.6875C14.0344 25.6875 14.1125 25.7219 14.1406 25.6656C14.1687 25.6094 14.1406 25.5469 14.0969 25.5062C14.0531 25.4656 13.9812 25.5062 13.9531 25.5469C13.925 25.5875 13.9406 25.6656 13.9937 25.6875Z" fill="#42D4C6"/>
|
||||
<path d="M13.2594 26.65C13.0875 26.7469 13.0688 26.8 13.1563 26.9625C13.1938 27.0312 13.2563 27.0656 13.3219 27.025C13.3841 26.9883 13.4562 26.9719 13.5281 26.9781C13.5656 26.9795 13.6029 26.973 13.6376 26.9591C13.6724 26.9452 13.7039 26.9242 13.7301 26.8975C13.7563 26.8707 13.7766 26.8387 13.7897 26.8037C13.8028 26.7686 13.8085 26.7311 13.8063 26.6937C13.8047 26.6635 13.8047 26.6333 13.8063 26.6031C13.8781 26.525 13.8719 26.4656 13.8344 26.4156C13.7969 26.3656 13.7313 26.3625 13.6688 26.3844C13.6063 26.4062 13.5344 26.425 13.4688 26.45C13.4031 26.475 13.3188 26.5 13.3031 26.5969C13.3094 26.625 13.2813 26.625 13.2594 26.65Z" fill="#42D4C6"/>
|
||||
<path d="M8.74382 25.8844C8.74382 25.8344 8.76882 25.7187 8.70632 25.6937C8.64382 25.6687 8.58444 25.7469 8.55944 25.7781C8.54938 25.7876 8.54174 25.7994 8.53712 25.8125C8.5325 25.8255 8.53104 25.8395 8.53287 25.8532C8.5347 25.8669 8.53977 25.8801 8.54765 25.8914C8.55553 25.9028 8.56599 25.9122 8.57819 25.9187C8.62819 25.9562 8.74382 25.9406 8.74382 25.8844Z" fill="#42D4C6"/>
|
||||
<path d="M8.41258 26.5594C8.42832 26.568 8.44565 26.5735 8.46353 26.5754C8.48141 26.5772 8.49948 26.5755 8.51667 26.5702C8.53386 26.565 8.54981 26.5563 8.56361 26.5448C8.5774 26.5333 8.58875 26.5191 8.59697 26.5031C8.59697 26.5031 8.59697 26.4875 8.59697 26.4812C8.60043 26.4888 8.60582 26.4952 8.61259 26.5C8.67509 26.5469 8.74383 26.5187 8.80008 26.425C8.85633 26.3312 8.85946 26.2562 8.80008 26.2094C8.81755 26.1835 8.82688 26.1531 8.82688 26.1219C8.82688 26.0907 8.81755 26.0602 8.80008 26.0344C8.72821 25.9656 8.67508 26.0344 8.62508 26.0344C8.49696 26.0344 8.38446 26.1813 8.41884 26.2813L8.43446 26.3062C8.40962 26.3202 8.38909 26.3408 8.37509 26.3656C8.36312 26.3802 8.3545 26.3972 8.34987 26.4155C8.34524 26.4337 8.34471 26.4528 8.34829 26.4713C8.35187 26.4898 8.35949 26.5073 8.3706 26.5225C8.38172 26.5377 8.39605 26.5503 8.41258 26.5594V26.5594Z" fill="#42D4C6"/>
|
||||
<path d="M7.80627 25.4344C7.81848 25.4394 7.83204 25.4399 7.84461 25.4359C7.85718 25.4319 7.86794 25.4236 7.87501 25.4125C7.87915 25.3975 7.87961 25.3817 7.87635 25.3664C7.87309 25.3512 7.8662 25.337 7.85626 25.325C7.84064 25.325 7.76565 25.3062 7.75003 25.325C7.7344 25.3437 7.80627 25.4156 7.80627 25.4344Z" fill="#42D4C6"/>
|
||||
<path d="M6.91882 23.5156C6.95007 23.4812 6.91883 23.4281 6.89696 23.425C6.8688 23.4142 6.83761 23.4142 6.80945 23.425C6.80945 23.425 6.80945 23.4906 6.80945 23.4969C6.80945 23.5031 6.88444 23.55 6.91882 23.5156Z" fill="#42D4C6"/>
|
||||
<path d="M10.0125 26.9375C10.05 27.025 10.1282 27 10.1969 26.9781C10.2313 26.9 10.2313 26.8281 10.15 26.7906C10.132 26.784 10.1126 26.7826 10.0938 26.7864C10.075 26.7903 10.0577 26.7993 10.0438 26.8125C10.03 26.8299 10.0201 26.8501 10.0147 26.8716C10.0093 26.8932 10.0086 26.9156 10.0125 26.9375Z" fill="#42D4C6"/>
|
||||
<path d="M7.68434 25.7687C7.68434 25.7937 7.71248 25.8344 7.73435 25.8375C7.80233 25.8519 7.87125 25.8613 7.9406 25.8656C8.03435 26.0094 8.1531 26.0719 8.2531 26.0156C8.2939 25.976 8.32172 25.9249 8.33288 25.8691C8.34404 25.8133 8.33802 25.7554 8.3156 25.7031C8.25622 25.6031 8.18748 25.6031 7.98435 25.7031C7.93123 25.6281 7.88747 25.5437 7.78122 25.6031C7.7471 25.6133 7.71814 25.6361 7.70016 25.6668C7.68218 25.6976 7.67652 25.734 7.68434 25.7687V25.7687Z" fill="#42D4C6"/>
|
||||
<path d="M8.81248 27.0094C8.81248 27.0937 8.94061 27.1062 8.87186 27.1844C8.80311 27.2625 8.6875 27.4406 8.84687 27.5469C8.89204 27.5703 8.9436 27.5784 8.99378 27.57C9.04395 27.5615 9.09 27.5369 9.12498 27.5V27.5C9.13061 27.5406 9.14534 27.5794 9.16807 27.6135C9.1908 27.6476 9.22095 27.6761 9.25625 27.6969C9.31527 27.7212 9.38113 27.7232 9.44153 27.7025C9.50193 27.6818 9.55271 27.6398 9.58437 27.5844C9.60583 27.5291 9.60583 27.4678 9.58437 27.4125C9.59549 27.4319 9.61037 27.4489 9.62812 27.4625L9.60937 27.4938C9.54062 27.625 9.60937 27.7125 9.69999 27.8063C9.65624 27.8719 9.575 27.925 9.65 28.0125C9.66772 28.0377 9.6941 28.0554 9.72408 28.0623C9.75407 28.0692 9.78554 28.0648 9.81249 28.05C9.82812 28.0441 9.84132 28.0331 9.84999 28.0188C9.85011 28.0535 9.85837 28.0877 9.87411 28.1186C9.88985 28.1495 9.91264 28.1764 9.94062 28.1969C9.98765 28.206 10.0363 28.2018 10.081 28.1846C10.1258 28.1675 10.1648 28.1382 10.1937 28.1C10.2026 28.0842 10.2081 28.0667 10.2097 28.0487C10.2114 28.0306 10.2092 28.0124 10.2032 27.9953C10.1973 27.9782 10.1879 27.9625 10.1755 27.9493C10.163 27.9361 10.148 27.9257 10.1312 27.9188V27.9188C10.1676 27.922 10.2042 27.922 10.2406 27.9188C10.2824 27.9014 10.3193 27.8741 10.3482 27.8393C10.3771 27.8044 10.397 27.763 10.4062 27.7188C10.3973 27.6813 10.3767 27.6475 10.3476 27.6223C10.3184 27.5971 10.2821 27.5816 10.2437 27.5781C10.2456 27.5453 10.2351 27.5129 10.2143 27.4874C10.1935 27.462 10.1638 27.4453 10.1312 27.4406C10.0907 27.4337 10.0516 27.42 10.0156 27.4H9.99687C9.98238 27.3848 9.96548 27.3722 9.94686 27.3625C9.95596 27.3426 9.96227 27.3216 9.96561 27.3C9.96896 27.2411 9.95086 27.1831 9.91466 27.1365C9.87846 27.09 9.82663 27.0581 9.76875 27.0469H9.74998C9.79033 26.9831 9.81299 26.9098 9.81562 26.8344C9.80666 26.7761 9.77718 26.723 9.73247 26.6846C9.68777 26.6462 9.63081 26.6251 9.57188 26.625C9.50767 26.6439 9.4534 26.6872 9.4207 26.7456C9.388 26.804 9.37946 26.8729 9.39688 26.9375C9.41009 26.9869 9.43815 27.0311 9.47727 27.0641C9.51639 27.097 9.56466 27.1172 9.61561 27.1219C9.58868 27.1461 9.56764 27.1761 9.5541 27.2097C9.54056 27.2433 9.53488 27.2795 9.53749 27.3156C9.54145 27.3385 9.54882 27.3606 9.55936 27.3812C9.54474 27.3624 9.52673 27.3465 9.50624 27.3344C9.45152 27.3148 9.39271 27.3094 9.33533 27.3186C9.27794 27.3279 9.22386 27.3516 9.17812 27.3875C9.18099 27.3695 9.18026 27.3511 9.17597 27.3334C9.17168 27.3157 9.16391 27.299 9.15312 27.2844C9.09999 27.2219 9.27186 27.1469 9.20311 27.0563C9.13436 26.9656 9.20313 26.8563 9.12188 26.7438C9.04063 26.6313 8.875 26.6062 8.80938 26.7156C8.77869 26.8113 8.77977 26.9144 8.81248 27.0094V27.0094ZM9.99687 27.7406L10.0813 27.8719C10.0505 27.8544 10.0143 27.8488 9.97972 27.8563C9.94513 27.8638 9.91451 27.8838 9.89374 27.9125C9.88943 27.8806 9.8821 27.8492 9.87186 27.8188L9.99687 27.7406Z" fill="#42D4C6"/>
|
||||
<path d="M9.99378 26.5281C9.97855 26.5179 9.9614 26.511 9.94338 26.5077C9.92537 26.5043 9.90688 26.5048 9.88902 26.5089C9.87117 26.513 9.85433 26.5207 9.83957 26.5315C9.8248 26.5423 9.81242 26.5561 9.80316 26.5719C9.78643 26.6052 9.78327 26.6436 9.79434 26.6792C9.80542 26.7147 9.82987 26.7446 9.86253 26.7625C9.89655 26.775 9.93384 26.7753 9.96805 26.7633C10.0023 26.7513 10.0312 26.7279 10.05 26.6969C10.0584 26.6823 10.0637 26.6661 10.0654 26.6494C10.0671 26.6327 10.0652 26.6158 10.0599 26.5998C10.0546 26.5839 10.0459 26.5692 10.0345 26.5569C10.0231 26.5445 10.0092 26.5347 9.99378 26.5281V26.5281Z" fill="#42D4C6"/>
|
||||
<path d="M9.27818 25.7844C9.23443 25.7844 9.14693 25.7844 9.13755 25.825C9.13502 25.8479 9.13828 25.871 9.14701 25.8923C9.15575 25.9136 9.16968 25.9324 9.18754 25.9469C9.21254 25.9469 9.31881 25.9469 9.33756 25.9219C9.35631 25.8969 9.30006 25.7875 9.27818 25.7844Z" fill="#42D4C6"/>
|
||||
<path d="M9.07189 26.2031C9.03663 26.1935 8.99909 26.1971 8.96629 26.2132C8.9335 26.2293 8.9077 26.2568 8.89376 26.2906C8.88787 26.3074 8.88541 26.3253 8.88647 26.3431C8.88754 26.3608 8.89212 26.3782 8.89998 26.3942C8.90783 26.4102 8.91877 26.4245 8.93219 26.4362C8.94561 26.4479 8.96123 26.4569 8.97814 26.4625C8.99742 26.4726 9.01887 26.4779 9.04064 26.4779C9.06242 26.4779 9.08387 26.4726 9.10315 26.4625C9.13577 26.4722 9.17051 26.4722 9.20313 26.4625C9.22999 26.461 9.25538 26.4497 9.27441 26.4306C9.29343 26.4116 9.30476 26.3862 9.30626 26.3594C9.30626 26.2531 9.24376 26.2125 9.15001 26.1781L9.11251 26.2125C9.09981 26.2065 9.08595 26.2033 9.07189 26.2031V26.2031Z" fill="#42D4C6"/>
|
||||
<path d="M9.25317 27.1437C9.29692 27.2156 9.35943 27.25 9.43443 27.2C9.44826 27.1876 9.45888 27.172 9.4654 27.1546C9.47193 27.1372 9.47418 27.1185 9.47193 27.1C9.44693 27.0594 9.40004 27.0094 9.35941 27.0094C9.31879 27.0094 9.26567 27.0781 9.25317 27.1437Z" fill="#42D4C6"/>
|
||||
<path d="M5.12819 23.5C5.1454 23.4715 5.15171 23.4378 5.14596 23.4051C5.14022 23.3723 5.12281 23.3428 5.09694 23.3219C5.08416 23.3111 5.06927 23.3032 5.05323 23.2987C5.03719 23.2941 5.02038 23.2929 5.00387 23.2953C4.98736 23.2977 4.97152 23.3035 4.9574 23.3124C4.94329 23.3212 4.93121 23.333 4.92195 23.3469C4.90474 23.3753 4.89842 23.409 4.90417 23.4418C4.90991 23.4745 4.92732 23.5041 4.95319 23.525C4.96597 23.5357 4.98087 23.5436 4.9969 23.5482C5.01294 23.5527 5.02976 23.5539 5.04627 23.5515C5.06278 23.5492 5.0786 23.5434 5.09271 23.5345C5.10682 23.5256 5.11892 23.5138 5.12819 23.5V23.5Z" fill="#42D4C6"/>
|
||||
<path d="M10.8157 21.9937C10.7907 21.9937 10.7251 22.0437 10.7251 22.0844C10.7251 22.125 10.8157 22.1562 10.8438 22.15C10.86 22.141 10.8735 22.1279 10.8828 22.112C10.8921 22.096 10.897 22.0779 10.897 22.0594C10.8938 22.0313 10.8438 21.9969 10.8157 21.9937Z" fill="#42D4C6"/>
|
||||
<path d="M12.4125 22.6969C12.3594 22.7594 12.4438 22.9281 12.5063 22.925C12.5688 22.9219 12.6501 22.75 12.5938 22.6937C12.5681 22.6728 12.5358 22.6616 12.5026 22.6622C12.4694 22.6628 12.4375 22.6751 12.4125 22.6969V22.6969Z" fill="#42D4C6"/>
|
||||
<path d="M10.2501 26.0687C10.2467 26.0221 10.2298 25.9775 10.2015 25.9403C10.1732 25.9032 10.1347 25.875 10.0907 25.8594C10.0543 25.8421 10.0152 25.8316 9.97507 25.8281C9.98578 25.8152 9.99357 25.8002 9.99789 25.784C10.0022 25.7678 10.003 25.7509 10.0001 25.7344C9.99297 25.7115 9.98141 25.6904 9.96607 25.672C9.95074 25.6537 9.93192 25.6386 9.91072 25.6275C9.88952 25.6165 9.86635 25.6097 9.84253 25.6077C9.81872 25.6057 9.79472 25.6084 9.77194 25.6156V25.6156C9.77895 25.5814 9.77655 25.5458 9.765 25.5128C9.75345 25.4798 9.73317 25.4505 9.70633 25.4281C9.65424 25.4083 9.59778 25.4028 9.54283 25.4121C9.48788 25.4214 9.43645 25.4453 9.39383 25.4812C9.37947 25.5337 9.38377 25.5894 9.406 25.639C9.42823 25.6886 9.467 25.729 9.51569 25.7531C9.53588 25.762 9.5577 25.7665 9.57976 25.7665C9.60181 25.7665 9.62363 25.762 9.64383 25.7531C9.64078 25.7654 9.64078 25.7783 9.64383 25.7906C9.64622 25.8297 9.66122 25.867 9.68657 25.8968C9.71192 25.9267 9.74627 25.9475 9.78445 25.9562C9.91277 26.0038 10.0269 26.0833 10.116 26.1872C10.2051 26.2911 10.2663 26.4159 10.2938 26.55C10.3185 26.5667 10.3463 26.5783 10.3755 26.5841C10.4047 26.5898 10.4348 26.5897 10.464 26.5835C10.4932 26.5774 10.5208 26.5655 10.5453 26.5484C10.5697 26.5314 10.5905 26.5096 10.6063 26.4844C10.6271 26.4526 10.6389 26.416 10.6407 26.3781C10.6669 26.3127 10.6745 26.2413 10.6626 26.1719C10.6913 26.1801 10.722 26.1781 10.7494 26.1661C10.7768 26.1542 10.7992 26.133 10.8126 26.1062C10.8239 26.0721 10.8226 26.0349 10.8088 26.0016C10.795 25.9684 10.7698 25.9412 10.7376 25.925C10.7052 25.9086 10.6677 25.9056 10.6331 25.9167C10.5986 25.9278 10.5699 25.9521 10.5532 25.9844V26.0094C10.5102 25.9886 10.4623 25.9802 10.4148 25.9851C10.3673 25.9901 10.3222 26.0082 10.2844 26.0375L10.2501 26.0687Z" fill="#42D4C6"/>
|
||||
<path d="M10.4969 24.2031C10.4747 24.201 10.4525 24.2052 10.4326 24.2151C10.4127 24.2251 10.396 24.2404 10.3844 24.2594C10.3747 24.2693 10.3677 24.2817 10.3641 24.2951C10.3605 24.3086 10.3604 24.3227 10.3639 24.3362C10.3673 24.3497 10.3742 24.3621 10.3838 24.3721C10.3934 24.3822 10.4054 24.3897 10.4188 24.3937C10.4594 24.4125 10.5719 24.4281 10.5906 24.3937C10.6328 24.4009 10.6761 24.3984 10.7173 24.3865C10.7584 24.3746 10.7963 24.3536 10.8281 24.325C10.8389 24.3017 10.8449 24.2764 10.8457 24.2507C10.8465 24.2251 10.8421 24.1995 10.8328 24.1756C10.8234 24.1516 10.8093 24.1298 10.7914 24.1115C10.7734 24.0931 10.7519 24.0786 10.7281 24.0687C10.6469 24.0437 10.5531 24.0937 10.4969 24.2031Z" fill="#42D4C6"/>
|
||||
<path d="M14.6219 25.1375C14.5469 25.1375 14.4937 25.3781 14.5031 25.4156C14.5125 25.4531 14.5812 25.5406 14.5031 25.5812C14.425 25.6219 14.3344 25.6188 14.2969 25.6969C14.2594 25.775 14.175 25.95 14.2625 26.0531C14.35 26.1562 14.4156 26.0531 14.4906 26.0531C14.534 26.0542 14.5763 26.0392 14.6092 26.0109C14.6421 25.9826 14.6633 25.9431 14.6688 25.9C14.6688 25.8 14.6406 25.7 14.6688 25.6563C14.6722 25.643 14.6789 25.6307 14.6882 25.6206C14.6974 25.6105 14.7091 25.6028 14.722 25.5982C14.7349 25.5935 14.7488 25.5921 14.7624 25.5941C14.776 25.5961 14.7889 25.6013 14.8 25.6094C14.8625 25.6531 14.9844 25.6344 15.0656 25.4969C15.1469 25.3594 15.0656 25.1844 14.9344 25.1844C14.8031 25.1844 14.7937 25.2656 14.7625 25.2375C14.7312 25.2094 14.6969 25.1219 14.6219 25.1375Z" fill="#42D4C6"/>
|
||||
<path d="M12.3813 21.8594C12.3063 21.8281 12.2656 21.9156 12.2563 21.9469C12.2518 21.968 12.2526 21.9898 12.2586 22.0105C12.2646 22.0313 12.2756 22.0502 12.2906 22.0656C12.3016 22.0737 12.3143 22.0792 12.3278 22.0815C12.3412 22.0838 12.355 22.083 12.368 22.0791C12.3811 22.0751 12.393 22.0682 12.4029 22.0588C12.4128 22.0494 12.4204 22.0378 12.425 22.025C12.4407 21.9906 12.4563 21.8906 12.3813 21.8594Z" fill="#42D4C6"/>
|
||||
<path d="M9.72192 23.7844C9.6938 23.7844 9.6313 23.8156 9.62192 23.8375C9.61569 23.8533 9.61476 23.8706 9.61927 23.887C9.62378 23.9033 9.63349 23.9178 9.64693 23.9281C9.66294 23.933 9.68008 23.9325 9.69583 23.9269C9.71158 23.9213 9.7251 23.9108 9.73442 23.8969C9.74692 23.875 9.75317 23.8125 9.72192 23.7844Z" fill="#42D4C6"/>
|
||||
<path d="M8.01566 24.8719C8.01457 24.8257 7.99931 24.7809 7.97192 24.7437C7.93868 24.7088 7.89342 24.6878 7.84529 24.6849C7.79716 24.682 7.74974 24.6974 7.71254 24.7281C7.63129 24.7906 7.61566 24.8594 7.66879 24.9281C7.70055 24.9791 7.75046 25.0161 7.80844 25.0318C7.86643 25.0474 7.92818 25.0406 7.98129 25.0125C7.98736 25.0391 8.00156 25.0631 8.02191 25.0812C8.06645 25.1085 8.11897 25.1196 8.17072 25.1128C8.22248 25.106 8.27032 25.0816 8.30628 25.0437C8.32795 25.0109 8.33646 24.9712 8.33008 24.9323C8.32371 24.8935 8.30294 24.8585 8.27191 24.8344C8.2321 24.8079 8.18391 24.7971 8.1366 24.804C8.0893 24.8109 8.04622 24.8351 8.01566 24.8719V24.8719Z" fill="#42D4C6"/>
|
||||
<path d="M9.47193 24.3719C9.47177 24.4155 9.47917 24.4589 9.4938 24.5C9.51016 24.5085 9.52805 24.5136 9.54643 24.5151C9.56481 24.5166 9.58329 24.5143 9.60079 24.5085C9.61828 24.5027 9.63443 24.4934 9.64826 24.4812C9.66209 24.469 9.67332 24.4541 9.6813 24.4375C9.70005 24.375 9.66254 24.3469 9.61879 24.3281C9.60727 24.3181 9.5934 24.3111 9.57845 24.3078C9.5635 24.3046 9.54797 24.3051 9.5333 24.3095C9.51864 24.3139 9.50532 24.3219 9.49459 24.3328C9.48385 24.3437 9.47606 24.3571 9.47193 24.3719V24.3719Z" fill="#42D4C6"/>
|
||||
<path d="M9.89063 22.4906C9.83085 22.4605 9.76192 22.4541 9.69761 22.4726C9.6333 22.4912 9.57834 22.5333 9.54376 22.5906C9.52823 22.6614 9.53322 22.7352 9.55812 22.8033C9.58303 22.8714 9.62683 22.9309 9.68439 22.975C9.74751 22.998 9.81703 22.9959 9.87865 22.9691C9.94027 22.9424 9.9893 22.893 10.0156 22.8312C10.036 22.7687 10.0347 22.7011 10.012 22.6393C9.98935 22.5776 9.9466 22.5252 9.89063 22.4906V22.4906Z" fill="#42D4C6"/>
|
||||
<path d="M10.125 24.6687C10.0625 24.6406 9.99376 24.6688 9.98751 24.7281C9.98664 24.7706 9.99298 24.8128 10.0063 24.8531C10.0229 24.8612 10.0411 24.8657 10.0596 24.8662C10.0782 24.8668 10.0966 24.8634 10.1137 24.8563C10.1308 24.8492 10.1463 24.8386 10.159 24.8251C10.1717 24.8116 10.1814 24.7956 10.1875 24.7781C10.2094 24.7156 10.1719 24.6906 10.125 24.6687Z" fill="#42D4C6"/>
|
||||
<path d="M10.2188 25.3562C10.1892 25.3417 10.1552 25.3391 10.1238 25.349C10.0924 25.3589 10.066 25.3805 10.0501 25.4094C10.0398 25.4243 10.0331 25.4413 10.0302 25.4591C10.0274 25.477 10.0285 25.4953 10.0336 25.5126C10.0387 25.53 10.0476 25.546 10.0596 25.5595C10.0716 25.5729 10.0865 25.5836 10.1032 25.5906C10.1382 25.6088 10.1788 25.6127 10.2167 25.6017C10.2545 25.5906 10.2866 25.5654 10.3063 25.5312C10.3122 25.514 10.3146 25.4958 10.3133 25.4776C10.3121 25.4595 10.3073 25.4417 10.2991 25.4255C10.291 25.4092 10.2797 25.3947 10.2659 25.3828C10.2521 25.3709 10.2361 25.3619 10.2188 25.3562V25.3562Z" fill="#42D4C6"/>
|
||||
<path d="M13.8344 22.5625C13.8155 22.5543 13.7943 22.5533 13.7747 22.5596C13.7552 22.5659 13.7386 22.5792 13.7281 22.5969C13.7125 22.6219 13.6844 22.7 13.7281 22.7344C13.7719 22.7687 13.8375 22.6969 13.85 22.6688C13.8625 22.6406 13.8781 22.5844 13.8344 22.5625Z" fill="#42D4C6"/>
|
||||
<path d="M13.3969 25.8625C13.3674 25.9251 13.3641 25.9968 13.3875 26.0618C13.4109 26.1269 13.4593 26.1799 13.5218 26.2094C13.5844 26.2388 13.6561 26.2421 13.7212 26.2187C13.7862 26.1953 13.8393 26.1469 13.8687 26.0844C13.8823 26.0553 13.8895 26.0236 13.89 25.9915C13.8904 25.9594 13.8841 25.9276 13.8714 25.8981C13.8588 25.8686 13.84 25.8421 13.8164 25.8203C13.7928 25.7986 13.7648 25.7821 13.7343 25.7719C13.7069 25.7533 13.6758 25.7409 13.6431 25.7354C13.6104 25.7299 13.5769 25.7315 13.5449 25.7401C13.5129 25.7487 13.4831 25.7641 13.4576 25.7852C13.432 25.8063 13.4113 25.8327 13.3969 25.8625V25.8625Z" fill="#42D4C6"/>
|
||||
<path d="M13.8251 25.2844C13.8641 25.3078 13.9106 25.3157 13.9552 25.3064C13.9997 25.2971 14.0392 25.2714 14.0657 25.2344C14.085 25.189 14.089 25.1385 14.0771 25.0906C14.0653 25.0427 14.0383 25 14.0001 24.9688C13.9447 24.9449 13.8825 24.9419 13.8251 24.9603C13.7677 24.9787 13.7188 25.0172 13.6876 25.0688C13.672 25.1344 13.7438 25.2406 13.8251 25.2844Z" fill="#42D4C6"/>
|
||||
<path d="M8.07188 23.7219C8.06271 23.7364 8.05786 23.7532 8.05786 23.7703C8.05786 23.7875 8.06271 23.8043 8.07188 23.8188C8.09376 23.8406 8.13751 23.8813 8.15939 23.8563C8.17094 23.8439 8.17881 23.8286 8.18213 23.812C8.18544 23.7955 8.18406 23.7783 8.17814 23.7625C8.16251 23.7406 8.09376 23.6969 8.07188 23.7219Z" fill="#42D4C6"/>
|
||||
<path d="M12.6281 23.2094C12.6093 23.2094 12.5687 23.275 12.5875 23.3094C12.6062 23.3438 12.675 23.3313 12.6937 23.3094C12.7058 23.2986 12.7148 23.2848 12.7197 23.2695C12.7247 23.2541 12.7254 23.2376 12.7218 23.2219C12.7093 23.1875 12.6531 23.1875 12.6281 23.2094Z" fill="#42D4C6"/>
|
||||
<path d="M14.725 23.0344C14.725 23.0531 14.725 23.0813 14.725 23.0906C14.725 23.1 14.7531 23.0906 14.7718 23.075C14.7906 23.0594 14.7718 23.0344 14.7562 23.025C14.7453 23.0259 14.7346 23.0291 14.725 23.0344V23.0344Z" fill="#42D4C6"/>
|
||||
<path d="M14.6407 23.3437C14.589 23.3255 14.5326 23.3255 14.4809 23.3437C14.4292 23.3619 14.3852 23.3972 14.3563 23.4438C14.3219 23.5125 14.3907 23.6469 14.4844 23.6937C14.5036 23.7053 14.5249 23.7129 14.547 23.7161C14.5692 23.7192 14.5918 23.7178 14.6134 23.712C14.635 23.7061 14.6552 23.6959 14.6728 23.6821C14.6904 23.6682 14.7049 23.6509 14.7156 23.6312C14.7409 23.5825 14.7472 23.5262 14.7334 23.4731C14.7195 23.42 14.6865 23.3739 14.6407 23.3437V23.3437Z" fill="#42D4C6"/>
|
||||
<path d="M13.35 22.3219C13.3187 22.4437 13.4906 22.5125 13.5406 22.4781C13.5906 22.4437 13.6062 22.2875 13.5406 22.25C13.475 22.2125 13.3843 22.2 13.35 22.3219Z" fill="#42D4C6"/>
|
||||
<path d="M12.7625 25.2406C12.7407 25.307 12.7418 25.3788 12.7656 25.4445C12.7894 25.5102 12.8346 25.5661 12.8938 25.6031C12.9576 25.6214 13.0257 25.6171 13.0866 25.5909C13.1476 25.5647 13.1976 25.5182 13.2282 25.4594C13.2541 25.4077 13.2591 25.3481 13.2422 25.2928C13.2254 25.2375 13.1879 25.1909 13.1376 25.1625C13.076 25.1285 13.0044 25.1177 12.9356 25.132C12.8668 25.1463 12.8054 25.1849 12.7625 25.2406V25.2406Z" fill="#42D4C6"/>
|
||||
<path d="M12.4719 23.5781C12.4271 23.6633 12.3925 23.7535 12.3688 23.8469C12.3648 23.9046 12.3793 23.9621 12.4102 24.011C12.4412 24.0599 12.4869 24.0976 12.5407 24.1188C12.6001 24.1406 12.6532 24.1375 12.6844 24.0844C12.7712 23.9541 12.8159 23.8003 12.8126 23.6438C12.8091 23.6198 12.8017 23.5966 12.7907 23.575C12.7765 23.5445 12.7538 23.5188 12.7254 23.5008C12.697 23.4829 12.6639 23.4735 12.6303 23.4738C12.5967 23.4742 12.5639 23.4842 12.5358 23.5027C12.5077 23.5212 12.4855 23.5474 12.4719 23.5781V23.5781Z" fill="#42D4C6"/>
|
||||
<path d="M13.1656 24.3594C13.143 24.3466 13.1177 24.3392 13.0917 24.3377C13.0657 24.3363 13.0398 24.341 13.0158 24.3512C12.9919 24.3615 12.9707 24.3772 12.9539 24.3971C12.9371 24.4169 12.925 24.4404 12.9188 24.4656C12.875 24.5719 12.9 24.6688 12.9813 24.6969C13.0395 24.7139 13.1017 24.7111 13.1582 24.6891C13.2148 24.6671 13.2624 24.6269 13.2938 24.575C13.2996 24.5299 13.2902 24.4841 13.267 24.445C13.2437 24.406 13.2081 24.3758 13.1656 24.3594V24.3594Z" fill="#42D4C6"/>
|
||||
<path d="M13.3 23.4125C13.3271 23.4159 13.3547 23.4138 13.381 23.4062C13.4073 23.3987 13.4318 23.386 13.4531 23.3687C13.4937 23.3344 13.4531 23.2281 13.3875 23.2156C13.3487 23.2134 13.31 23.2209 13.275 23.2375C13.2281 23.3281 13.2437 23.4062 13.3 23.4125Z" fill="#42D4C6"/>
|
||||
<path d="M10.7875 23.6531C10.7685 23.6808 10.7609 23.7147 10.7661 23.7478C10.7714 23.7809 10.7891 23.8108 10.8156 23.8312C10.8342 23.8439 10.8552 23.8524 10.8773 23.8561C10.8994 23.8599 10.9221 23.8589 10.9437 23.8531C11.0219 23.8313 11.0344 23.7688 11.0094 23.6219C10.9313 23.6031 10.85 23.5562 10.7875 23.6531Z" fill="#42D4C6"/>
|
||||
<path d="M18.2125 27.7219C18.1312 27.8094 18.1687 27.8687 18.1125 27.9187C18.0562 27.9687 18.0687 28.0187 18.1125 28.0906C18.1562 28.1625 18.2125 28.2656 18.3094 28.2094C18.4062 28.1531 18.3812 28.0812 18.3625 28.0531C18.3437 28.025 18.3625 27.9562 18.3843 27.9781C18.4062 28 18.4656 27.9781 18.5218 27.9125C18.5366 27.899 18.5484 27.8826 18.5565 27.8643C18.5646 27.846 18.5688 27.8263 18.5688 27.8063C18.5688 27.7863 18.5646 27.7665 18.5565 27.7482C18.5484 27.7299 18.5366 27.7135 18.5218 27.7C18.5005 27.6802 18.4754 27.665 18.448 27.6554C18.4205 27.6457 18.3914 27.6418 18.3624 27.6439C18.3334 27.6459 18.3052 27.6539 18.2794 27.6673C18.2536 27.6807 18.2308 27.6993 18.2125 27.7219V27.7219Z" fill="#42D4C6"/>
|
||||
<path d="M18.1187 25.8031C18.0781 25.9 18.1187 25.975 18.2344 26.025C18.2653 26.0429 18.3019 26.0484 18.3368 26.0402C18.3716 26.0321 18.402 26.011 18.4218 25.9812C18.4362 25.9303 18.4366 25.8763 18.4228 25.8252C18.4091 25.774 18.3817 25.7275 18.3437 25.6906C18.2375 25.6469 18.1562 25.6875 18.1187 25.8031Z" fill="#42D4C6"/>
|
||||
<path d="M18.2157 25.2C18.1989 25.1936 18.1809 25.1905 18.163 25.1912C18.145 25.1918 18.1273 25.196 18.111 25.2036C18.0947 25.2112 18.08 25.2219 18.0679 25.2353C18.0559 25.2486 18.0466 25.2643 18.0407 25.2812C18.0265 25.3146 18.0243 25.3519 18.0346 25.3866C18.0449 25.4214 18.0669 25.4516 18.0969 25.4719C18.1338 25.4832 18.1732 25.4837 18.2104 25.4731C18.2475 25.4626 18.2808 25.4415 18.3063 25.4125C18.3165 25.372 18.3132 25.3293 18.2968 25.291C18.2805 25.2526 18.252 25.2206 18.2157 25.2Z" fill="#42D4C6"/>
|
||||
<path d="M18.6751 24.2937C18.6367 24.287 18.5972 24.2939 18.5635 24.3134C18.5298 24.3328 18.504 24.3635 18.4907 24.4C18.4875 24.4199 18.4893 24.4403 18.4959 24.4594C18.5025 24.4784 18.5138 24.4955 18.5286 24.5091C18.5435 24.5228 18.5615 24.5325 18.5811 24.5374C18.6006 24.5424 18.6211 24.5424 18.6407 24.5375C18.6813 24.5219 18.6907 24.4281 18.7094 24.3688C18.7124 24.3616 18.7139 24.3539 18.7137 24.3462C18.7136 24.3384 18.7118 24.3308 18.7086 24.3237C18.7054 24.3167 18.7007 24.3104 18.6949 24.3052C18.6892 24.3001 18.6824 24.2962 18.6751 24.2937V24.2937Z" fill="#42D4C6"/>
|
||||
<path d="M17.2969 28.4625C17.2323 28.4595 17.1685 28.4782 17.1157 28.5156C17.0818 28.543 17.054 28.5772 17.0341 28.6159C17.0142 28.6547 17.0026 28.6971 17.0001 28.7406C16.9905 28.7897 16.9737 28.8371 16.9501 28.8812H17.6251C17.6234 28.8667 17.6234 28.852 17.6251 28.8375C17.6907 28.5562 17.4938 28.4719 17.2969 28.4625Z" fill="#42D4C6"/>
|
||||
<path d="M18.7219 25.1844C18.7099 25.178 18.6967 25.1742 18.6831 25.1732C18.6696 25.1721 18.6559 25.1738 18.6431 25.1782C18.6302 25.1826 18.6184 25.1896 18.6083 25.1987C18.5982 25.2078 18.5901 25.2189 18.5844 25.2312C18.5758 25.2431 18.5698 25.2567 18.5667 25.2711C18.5636 25.2854 18.5635 25.3003 18.5665 25.3147C18.5694 25.329 18.5753 25.3427 18.5838 25.3547C18.5922 25.3667 18.6031 25.3768 18.6157 25.3844C18.6299 25.3925 18.6457 25.3977 18.6621 25.3996C18.6784 25.4015 18.6949 25.4001 18.7107 25.3954C18.7265 25.3907 18.7411 25.3829 18.7538 25.3724C18.7665 25.3619 18.7769 25.349 18.7844 25.3344C18.7905 25.3205 18.7937 25.3054 18.7938 25.2903C18.794 25.2751 18.791 25.26 18.7852 25.246C18.7793 25.232 18.7707 25.2193 18.7598 25.2087C18.749 25.1981 18.7361 25.1898 18.7219 25.1844V25.1844Z" fill="#42D4C6"/>
|
||||
<path d="M18.6469 28.625C18.6608 28.6512 18.6834 28.6717 18.7107 28.6831C18.7381 28.6945 18.7685 28.696 18.7969 28.6875C18.8625 28.6625 18.8657 28.6156 18.7969 28.4844C18.7 28.4406 18.6282 28.5625 18.6469 28.625Z" fill="#42D4C6"/>
|
||||
<path d="M19.2532 28.1875C19.2313 28.1875 19.1657 28.1531 19.1469 28.1875C19.1282 28.2219 19.1719 28.2688 19.1875 28.2719C19.2032 28.275 19.2532 28.2969 19.2751 28.2719C19.2826 28.2663 19.2884 28.2586 19.2916 28.2498C19.2947 28.2409 19.2951 28.2313 19.2928 28.2222C19.2904 28.2132 19.2854 28.205 19.2783 28.1988C19.2713 28.1926 19.2625 28.1887 19.2532 28.1875V28.1875Z" fill="#42D4C6"/>
|
||||
<path d="M17.9625 27.1437C17.9709 27.1823 17.99 27.2178 18.0177 27.246C18.0453 27.2742 18.0804 27.294 18.1188 27.3031C18.1511 27.3094 18.1845 27.3073 18.2157 27.2969C18.2469 27.2865 18.2749 27.2682 18.2969 27.2437C18.322 27.2181 18.3404 27.1869 18.3508 27.1526C18.3611 27.1183 18.363 27.082 18.3563 27.0469C18.3282 26.975 18.3313 26.8844 18.2719 26.8562C18.2531 26.8464 18.2322 26.8412 18.211 26.8412C18.1897 26.8412 18.1688 26.8464 18.15 26.8562C18.106 26.8615 18.0646 26.88 18.0313 26.9094C18.0035 26.9411 17.983 26.9785 17.9711 27.019C17.9592 27.0594 17.9563 27.102 17.9625 27.1437V27.1437Z" fill="#42D4C6"/>
|
||||
<path d="M7.9031 23.1156C7.86872 23.1406 7.86248 23.2094 7.84998 23.2437C7.91248 23.3281 7.96871 23.3156 8.01246 23.2844C8.05621 23.2531 8.0906 23.1937 8.04372 23.1469C7.99685 23.1 7.93122 23.0969 7.9031 23.1156Z" fill="#42D4C6"/>
|
||||
<path d="M19.0188 27.0906C19.0907 27.1531 19.1532 27.2406 19.2719 27.2437L19.375 27.1531C19.4969 27.1813 19.6157 27.1531 19.6407 27.0813C19.6509 27.0543 19.6515 27.0247 19.6424 26.9973C19.6333 26.97 19.615 26.9467 19.5907 26.9312C19.4969 26.8625 19.4469 26.8688 19.3438 26.9563C19.257 26.9426 19.1692 26.9364 19.0813 26.9375C19.0631 26.9365 19.0451 26.9412 19.0297 26.9509C19.0143 26.9607 19.0024 26.975 18.9955 26.9918C18.9886 27.0087 18.9872 27.0272 18.9913 27.0449C18.9955 27.0627 19.0051 27.0786 19.0188 27.0906V27.0906Z" fill="#42D4C6"/>
|
||||
<path d="M19.2468 26.4719C19.2468 26.4437 19.2468 26.4062 19.2125 26.3875C19.206 26.3845 19.1989 26.383 19.1917 26.3829C19.1846 26.3829 19.1775 26.3845 19.171 26.3874C19.1645 26.3904 19.1586 26.3947 19.1539 26.4001C19.1492 26.4055 19.1458 26.4119 19.1437 26.4188C19.1437 26.4438 19.125 26.5 19.1656 26.525C19.2062 26.55 19.2468 26.4875 19.2468 26.4719Z" fill="#42D4C6"/>
|
||||
<path d="M19.4157 26.3125C19.3969 26.3781 19.5625 26.5344 19.6375 26.5125C19.7125 26.4906 19.7094 26.3031 19.6375 26.2594C19.5656 26.2156 19.4344 26.2406 19.4157 26.3125Z" fill="#42D4C6"/>
|
||||
<path d="M6.50321 22.1594C6.48261 22.1753 6.46561 22.1954 6.45335 22.2184C6.44109 22.2414 6.43384 22.2667 6.43207 22.2927C6.4303 22.3186 6.43406 22.3447 6.44309 22.3691C6.45212 22.3936 6.46622 22.4158 6.48446 22.4344C6.50445 22.4612 6.52989 22.4835 6.55912 22.4999C6.58834 22.5162 6.62068 22.5262 6.65402 22.5291C6.68737 22.5321 6.72094 22.5279 6.75258 22.517C6.78421 22.506 6.81319 22.4885 6.83759 22.4656C6.87841 22.4251 6.90336 22.3713 6.90795 22.314C6.91254 22.2567 6.89644 22.1996 6.86257 22.1531C6.81278 22.1089 6.74823 22.0851 6.68168 22.0862C6.61513 22.0874 6.55144 22.1135 6.50321 22.1594V22.1594Z" fill="#42D4C6"/>
|
||||
<path d="M6.24382 21.2687C6.20724 21.2943 6.17947 21.3305 6.16436 21.3725C6.14925 21.4145 6.14753 21.4601 6.15944 21.5031C6.19575 21.5488 6.24706 21.5801 6.30426 21.5915C6.36147 21.603 6.42086 21.5938 6.47194 21.5656C6.50953 21.5302 6.53379 21.4829 6.54062 21.4316C6.54745 21.3804 6.53643 21.3284 6.50944 21.2844C6.44694 21.2 6.36257 21.1937 6.24382 21.2687Z" fill="#42D4C6"/>
|
||||
<path d="M6.09061 24.575C6.15623 24.6594 6.24686 24.6844 6.30936 24.6344C6.3443 24.5912 6.36847 24.5404 6.37988 24.486C6.39129 24.4317 6.38961 24.3754 6.37497 24.3219C6.35816 24.3005 6.33705 24.283 6.313 24.2703C6.28896 24.2577 6.26253 24.2502 6.23541 24.2484C6.2083 24.2467 6.18111 24.2506 6.15563 24.2601C6.13014 24.2695 6.10693 24.2842 6.08748 24.3031C6.01248 24.3781 6.01248 24.4719 6.09061 24.575Z" fill="#42D4C6"/>
|
||||
<path d="M7.71258 22.15C7.73148 22.1251 7.73979 22.0937 7.7357 22.0627C7.7316 22.0317 7.71543 22.0035 7.6907 21.9844C7.67296 21.97 7.65237 21.9594 7.6303 21.9535C7.60822 21.9476 7.58514 21.9464 7.56257 21.95C7.46257 21.9844 7.45944 22.0688 7.48757 22.1781C7.57194 22.1969 7.6532 22.25 7.71258 22.15Z" fill="#42D4C6"/>
|
||||
<path d="M7.60936 24.1562C7.58303 24.2077 7.57812 24.2674 7.59569 24.3224C7.61325 24.3775 7.65186 24.4233 7.70311 24.45C7.75428 24.4704 7.81104 24.4718 7.86317 24.454C7.9153 24.4363 7.95939 24.4005 7.98749 24.3531C8.0136 24.303 8.01872 24.2445 8.00172 24.1906C7.98473 24.1367 7.947 24.0917 7.89686 24.0656C7.84671 24.0395 7.78827 24.0344 7.73435 24.0514C7.68043 24.0684 7.63547 24.1061 7.60936 24.1562V24.1562Z" fill="#42D4C6"/>
|
||||
<path d="M5.90938 24.0125C5.88783 24.0399 5.87804 24.0746 5.88214 24.1092C5.88624 24.1438 5.9039 24.1753 5.93126 24.1969C5.95861 24.2184 5.9934 24.2282 6.02798 24.2241C6.06255 24.22 6.09409 24.2023 6.11564 24.175C6.13315 24.1431 6.13986 24.1064 6.13479 24.0703C6.12972 24.0343 6.11314 24.0008 6.08751 23.975C6.05852 23.9578 6.02412 23.9521 5.99113 23.959C5.95813 23.9659 5.92895 23.985 5.90938 24.0125Z" fill="#42D4C6"/>
|
||||
<path d="M4.86255 20.275C4.87441 20.2615 4.88295 20.2455 4.88754 20.2281C4.88965 20.216 4.88846 20.2034 4.88406 20.1919C4.87966 20.1803 4.87223 20.1702 4.86255 20.1625V20.275Z" fill="#42D4C6"/>
|
||||
<path d="M4.86255 21.15V21.375C4.87907 21.3781 4.89602 21.3781 4.91254 21.375C4.9291 21.3781 4.94613 21.3777 4.96251 21.3738C4.97889 21.3698 4.99424 21.3624 5.00755 21.3521C5.02085 21.3417 5.0318 21.3287 5.03967 21.3138C5.04753 21.2989 5.05213 21.2824 5.05317 21.2656C5.05567 21.2409 5.05245 21.2159 5.04379 21.1926C5.03512 21.1693 5.02123 21.1483 5.00318 21.1312C4.98032 21.1209 4.95503 21.1172 4.93018 21.1206C4.90533 21.1239 4.88191 21.1341 4.86255 21.15Z" fill="#42D4C6"/>
|
||||
<path d="M4.99379 18.6031C4.97504 18.6031 4.93754 18.6812 4.96879 18.7062C4.98405 18.7179 5.00273 18.7242 5.02193 18.7242C5.04113 18.7242 5.05979 18.7179 5.07505 18.7062C5.0834 18.6932 5.08783 18.678 5.08783 18.6625C5.08783 18.647 5.0834 18.6318 5.07505 18.6188C5.06415 18.6091 5.05085 18.6026 5.03656 18.5998C5.02226 18.5971 5.0075 18.5982 4.99379 18.6031V18.6031Z" fill="#42D4C6"/>
|
||||
<path d="M6.02813 23.3125C6.04519 23.2853 6.05576 23.2545 6.05901 23.2225C6.06226 23.1905 6.05811 23.1582 6.04688 23.1281C6.03725 23.0888 6.01246 23.0549 5.97791 23.0338C5.94336 23.0127 5.90187 23.0062 5.86251 23.0156C5.79376 23.0156 5.65 23 5.6125 23.0937C5.575 23.1875 5.66251 23.2094 5.68438 23.2531C5.70145 23.2874 5.72733 23.3165 5.75938 23.3375V23.3375C5.73449 23.3678 5.71938 23.4049 5.71603 23.444C5.71268 23.483 5.72126 23.5222 5.74063 23.5562C5.75344 23.5784 5.77062 23.5976 5.79114 23.6129C5.81166 23.6281 5.83508 23.639 5.85996 23.6448C5.88483 23.6507 5.91063 23.6514 5.93579 23.6469C5.96095 23.6424 5.98493 23.6328 6.00625 23.6187C6.04972 23.5859 6.08037 23.5388 6.09292 23.4858C6.10547 23.4328 6.09913 23.377 6.07501 23.3281C6.06867 23.3225 6.06123 23.3182 6.05317 23.3155C6.04511 23.3128 6.03659 23.3118 6.02813 23.3125V23.3125Z" fill="#42D4C6"/>
|
||||
<path d="M5.07498 19.6094C5.02498 19.6562 5.07499 19.7625 5.09999 19.8125C5.12499 19.8625 5.27498 19.8969 5.32498 19.85C5.37498 19.8031 5.29686 19.6531 5.25624 19.6125C5.23029 19.5927 5.19871 19.5818 5.16611 19.5812C5.13351 19.5807 5.10159 19.5905 5.07498 19.6094V19.6094Z" fill="#42D4C6"/>
|
||||
<path d="M17.4406 28.3125C17.4625 28.2656 17.4781 28.2094 17.4156 28.1719C17.381 28.1574 17.3422 28.1565 17.3069 28.1692C17.2716 28.1819 17.2424 28.2074 17.225 28.2406C17.2451 28.2853 17.2738 28.3256 17.3093 28.3594C17.3593 28.4 17.4156 28.3688 17.4406 28.3125Z" fill="#42D4C6"/>
|
||||
<path d="M5.50935 23.3906C5.53796 23.3684 5.55774 23.3367 5.56518 23.3012C5.57262 23.2657 5.56724 23.2288 5.54998 23.1969C5.52292 23.1693 5.48872 23.1497 5.45122 23.1403C5.41371 23.1309 5.37433 23.1321 5.33746 23.1437C5.3102 23.1711 5.29223 23.2063 5.28606 23.2444C5.27989 23.2826 5.28584 23.3217 5.30309 23.3562C5.31334 23.3733 5.32717 23.3879 5.3436 23.3991C5.36004 23.4102 5.3787 23.4177 5.39831 23.421C5.41791 23.4242 5.43798 23.4232 5.45715 23.418C5.47632 23.4127 5.49414 23.4034 5.50935 23.3906Z" fill="#42D4C6"/>
|
||||
<path d="M5.94689 22.8937C5.99049 22.8386 6.0142 22.7703 6.0142 22.7C6.0142 22.6297 5.99049 22.5614 5.94689 22.5062C5.92873 22.4831 5.90605 22.464 5.88023 22.45C5.8544 22.436 5.82597 22.4274 5.7967 22.4248C5.76744 22.4221 5.73795 22.4255 5.71003 22.4347C5.68212 22.4439 5.65638 22.4586 5.63439 22.4781C5.60157 22.4954 5.57321 22.5201 5.55151 22.5502C5.52982 22.5803 5.51538 22.6151 5.50932 22.6517C5.50327 22.6883 5.50577 22.7258 5.51663 22.7613C5.52748 22.7968 5.54639 22.8293 5.57188 22.8562C5.61743 22.9097 5.68193 22.9435 5.75184 22.9505C5.82175 22.9575 5.89165 22.9372 5.94689 22.8937V22.8937Z" fill="#42D4C6"/>
|
||||
<path d="M4.89692 22.4656L4.86255 22.5031V22.8344C4.91595 22.8696 4.97709 22.8915 5.04075 22.898C5.10442 22.9045 5.16872 22.8956 5.22817 22.8719C5.2759 22.8292 5.30566 22.77 5.31146 22.7062C5.31726 22.6424 5.29866 22.5787 5.25941 22.5281C5.21336 22.4807 5.15348 22.4491 5.08834 22.4379C5.02321 22.4267 4.95619 22.4364 4.89692 22.4656V22.4656Z" fill="#42D4C6"/>
|
||||
<path d="M5.98128 25.2469C5.96574 25.2392 5.94863 25.2352 5.93129 25.2352C5.91394 25.2352 5.89683 25.2392 5.88129 25.2469C5.85212 25.2125 5.81082 25.1908 5.766 25.1861C5.72117 25.1814 5.67628 25.1943 5.64066 25.2219C5.62814 25.2303 5.61746 25.2412 5.60923 25.2539C5.601 25.2665 5.59539 25.2807 5.59277 25.2956C5.59015 25.3105 5.59056 25.3257 5.59395 25.3404C5.59735 25.3552 5.60366 25.369 5.61253 25.3813C5.62571 25.4125 5.64973 25.4379 5.68016 25.4528C5.7106 25.4678 5.7454 25.4712 5.77816 25.4625C5.79556 25.458 5.81162 25.4495 5.82503 25.4375C5.84148 25.4706 5.86767 25.4978 5.90004 25.5156C5.9523 25.5032 6.00129 25.4797 6.04378 25.4469C6.09691 25.3906 6.0594 25.2875 5.98128 25.2469Z" fill="#42D4C6"/>
|
||||
<path d="M6.0219 26.6906C6.00417 26.6678 5.98311 26.6478 5.95941 26.6313C5.93951 26.6097 5.91535 26.5924 5.88846 26.5806C5.86157 26.5688 5.83252 26.5628 5.80316 26.5628C5.7738 26.5628 5.74474 26.5688 5.71785 26.5806C5.69095 26.5924 5.66681 26.6097 5.64691 26.6313C5.64707 26.5807 5.65336 26.5303 5.66566 26.4812C5.68072 26.4524 5.68425 26.4189 5.67554 26.3876C5.66684 26.3563 5.64655 26.3294 5.61878 26.3125C5.59133 26.2833 5.55515 26.2639 5.51569 26.2571C5.47622 26.2504 5.43561 26.2566 5.40002 26.275C5.35483 26.2997 5.31102 26.3268 5.26878 26.3563C5.24902 26.3657 5.23264 26.3809 5.2219 26.4C5.1469 26.4844 5.15315 26.5781 5.2219 26.7531C5.2219 26.7531 5.2219 26.7531 5.2219 26.775C5.20692 26.7402 5.18575 26.7084 5.15941 26.6812C5.15127 26.6703 5.14067 26.6613 5.12846 26.6552C5.11625 26.649 5.10276 26.6458 5.08909 26.6458C5.07542 26.6458 5.06193 26.649 5.04972 26.6552C5.03751 26.6613 5.02692 26.6703 5.01878 26.6812C4.99254 26.6703 4.96439 26.6647 4.93597 26.6647C4.90754 26.6647 4.87939 26.6703 4.85315 26.6812V26.9937C4.87726 27.0137 4.90671 27.0261 4.93784 27.0295C4.96896 27.0328 5.00036 27.0269 5.02815 27.0125C5.05026 26.993 5.06787 26.9689 5.07974 26.9419C5.09161 26.915 5.09747 26.8857 5.09691 26.8562H5.16878C5.15254 26.8837 5.1477 26.9164 5.15529 26.9473C5.16289 26.9783 5.18232 27.0051 5.2094 27.0219C5.22899 27.0332 5.25098 27.0398 5.27359 27.041C5.29619 27.0422 5.31877 27.0381 5.33949 27.029C5.3602 27.0199 5.37845 27.006 5.39278 26.9884C5.4071 26.9709 5.41708 26.9502 5.4219 26.9281C5.4469 26.8375 5.51253 26.8281 5.58441 26.8C5.64691 26.9312 5.72503 26.9813 5.81253 26.9656C5.80724 27.0113 5.81714 27.0574 5.84066 27.0969C5.88199 27.1456 5.9395 27.1778 6.00263 27.1875C6.06577 27.1973 6.13029 27.184 6.1844 27.15C6.23569 27.1123 6.27136 27.0572 6.28461 26.9949C6.29787 26.9327 6.28777 26.8678 6.25627 26.8125C6.22847 26.7763 6.1931 26.7466 6.15261 26.7256C6.11212 26.7045 6.06749 26.6926 6.0219 26.6906Z" fill="#42D4C6"/>
|
||||
<path d="M5.99692 25.9156C5.91255 25.9781 5.88441 26.0406 5.90316 26.1031C5.88637 26.1418 5.8841 26.1851 5.89673 26.2253C5.90936 26.2655 5.93605 26.2998 5.97192 26.3219C5.98433 26.3306 5.99837 26.3367 6.01321 26.3399C6.02805 26.343 6.04337 26.3432 6.05826 26.3402C6.07315 26.3373 6.08729 26.3314 6.09984 26.3229C6.11239 26.3144 6.1231 26.3034 6.13129 26.2906C6.14109 26.2763 6.14848 26.2605 6.15317 26.2438C6.17669 26.2406 6.19914 26.2321 6.21878 26.2187C6.25989 26.1789 6.28629 26.1263 6.29367 26.0696C6.30105 26.0128 6.28896 25.9553 6.25941 25.9062C6.22163 25.8765 6.17452 25.8611 6.12645 25.8628C6.07838 25.8645 6.03248 25.8832 5.99692 25.9156V25.9156Z" fill="#42D4C6"/>
|
||||
<path d="M15.8656 28.8719C15.8656 28.8531 15.8406 28.8281 15.825 28.8094C15.7917 28.774 15.7488 28.7492 15.7016 28.7381C15.6543 28.727 15.6049 28.73 15.5593 28.7469C15.5276 28.7557 15.4987 28.7728 15.4757 28.7964C15.4526 28.82 15.4362 28.8493 15.4281 28.8812H15.875L15.8656 28.8719Z" fill="#42D4C6"/>
|
||||
<path d="M14.7719 28.7875C14.8656 28.8125 14.9094 28.7625 14.9281 28.675C14.952 28.7072 14.9825 28.7339 15.0175 28.7534C15.0525 28.7729 15.0913 28.7846 15.1313 28.7879C15.1712 28.7911 15.2114 28.7858 15.2491 28.7723C15.2869 28.7587 15.3213 28.7373 15.35 28.7094C15.4563 28.6219 15.45 28.5312 15.35 28.3969C15.3766 28.3233 15.3934 28.2467 15.4 28.1687C15.4009 28.1278 15.3856 28.0882 15.3576 28.0584C15.3295 28.0286 15.2909 28.011 15.25 28.0094C15.1469 28.0094 15.0469 28.0375 14.9375 28.0562C14.8469 27.95 14.8375 27.95 14.7156 28.0562C14.6969 28.1156 14.7938 28.1906 14.6906 28.2312C14.6482 28.1852 14.6033 28.1413 14.5563 28.1C14.5269 28.081 14.4927 28.0709 14.4578 28.0709C14.4229 28.0709 14.3887 28.081 14.3594 28.1C14.2906 28.1344 14.3094 28.2 14.3094 28.2562C14.3094 28.3625 14.375 28.4219 14.4781 28.475L14.6594 28.3531C14.6609 28.3812 14.6609 28.4094 14.6594 28.4375C14.6594 28.5594 14.6188 28.5937 14.5094 28.5344C14.4609 28.5007 14.4013 28.487 14.3431 28.4964C14.2848 28.5057 14.2324 28.5372 14.1969 28.5844C14.1585 28.6197 14.1327 28.6667 14.1237 28.7181C14.1147 28.7695 14.1228 28.8224 14.1469 28.8687L14.1656 28.9H14.5531C14.5701 28.8893 14.5858 28.8767 14.6 28.8625C14.6813 28.8125 14.7094 28.7687 14.7719 28.7875Z" fill="#42D4C6"/>
|
||||
<path d="M16.5 28.0906C16.4756 28.1139 16.4566 28.1422 16.4443 28.1736C16.432 28.205 16.4267 28.2386 16.4288 28.2723C16.4309 28.3059 16.4403 28.3387 16.4564 28.3683C16.4724 28.3979 16.4948 28.4237 16.5219 28.4438C16.5739 28.4896 16.6417 28.5137 16.711 28.5107C16.7803 28.5078 16.8458 28.4782 16.8938 28.4281C16.9273 28.3654 16.9384 28.2932 16.9254 28.2233C16.9123 28.1534 16.8758 28.0901 16.8219 28.0437C16.7717 28.0112 16.7113 27.9981 16.6521 28.0067C16.5929 28.0153 16.5389 28.0451 16.5 28.0906V28.0906Z" fill="#42D4C6"/>
|
||||
<path d="M17.0188 27.1844C17.0283 27.1623 17.0331 27.1385 17.033 27.1145C17.0329 27.0905 17.0279 27.0667 17.0182 27.0447C17.0085 27.0228 16.9944 27.003 16.9768 26.9867C16.9591 26.9704 16.9383 26.9579 16.9157 26.95C16.8094 26.8969 16.7469 26.9219 16.6875 27.0438C16.6281 27.1656 16.6531 27.2438 16.7313 27.2781C16.7832 27.2881 16.8368 27.2847 16.8871 27.2683C16.9374 27.2519 16.9827 27.223 17.0188 27.1844Z" fill="#42D4C6"/>
|
||||
<path d="M6.26882 27.6531C6.27015 27.6438 6.27015 27.6343 6.26882 27.625C6.26091 27.6083 6.24965 27.5935 6.23575 27.5813C6.22184 27.5692 6.20558 27.5601 6.18799 27.5545C6.1704 27.5489 6.15185 27.547 6.13349 27.549C6.11514 27.5509 6.09737 27.5565 6.08131 27.5656C6.04086 27.598 6.01264 27.6432 6.00128 27.6937C5.98992 27.7443 5.99611 27.7972 6.01882 27.8438C6.03655 27.8683 6.06114 27.887 6.08951 27.8976C6.11788 27.9082 6.14872 27.9101 6.17818 27.9031V27.9031C6.26256 27.9031 6.35632 27.9031 6.38757 27.8031C6.39392 27.7876 6.39691 27.7709 6.39635 27.7542C6.39578 27.7374 6.39167 27.7209 6.38429 27.7059C6.37691 27.6908 6.36643 27.6775 6.35353 27.6668C6.34063 27.6561 6.3256 27.6482 6.30945 27.6438L6.26882 27.6531Z" fill="#42D4C6"/>
|
||||
<path d="M16.1876 28.7469C16.1188 28.6937 16.0376 28.725 15.9844 28.825C15.9844 28.825 15.9844 28.85 15.9844 28.8594L15.9657 28.8812H16.2157C16.2283 28.8593 16.2324 28.8335 16.2273 28.8087C16.2221 28.7839 16.2079 28.7619 16.1876 28.7469V28.7469Z" fill="#42D4C6"/>
|
||||
<path d="M16.5813 26.4344C16.5849 26.4199 16.5854 26.4048 16.5827 26.3902C16.58 26.3755 16.5741 26.3616 16.5655 26.3494C16.5569 26.3372 16.5457 26.327 16.5328 26.3196C16.5199 26.3121 16.5055 26.3076 16.4906 26.3062C16.3781 26.2844 16.2969 26.3062 16.2812 26.3562C16.2817 26.3979 16.2932 26.4386 16.3146 26.4743C16.3361 26.51 16.3666 26.5394 16.4031 26.5594C16.4563 26.575 16.5563 26.5 16.5813 26.4344Z" fill="#42D4C6"/>
|
||||
<path d="M8.25314 26.8812C8.15314 26.8812 8.1469 26.8062 8.10315 26.7562C8.07743 26.7266 8.0454 26.7031 8.0094 26.6875C7.98636 26.6408 7.94598 26.6049 7.89689 26.5875C7.87225 26.5759 7.84584 26.5685 7.81876 26.5656C7.83282 26.5599 7.84558 26.5514 7.85626 26.5406C7.93751 26.425 7.94376 26.2969 7.85626 26.2281C7.81013 26.2058 7.75797 26.1992 7.70774 26.2094C7.6575 26.2195 7.61198 26.2459 7.57815 26.2844C7.55398 26.3269 7.54572 26.3767 7.55488 26.4248C7.56404 26.4729 7.59001 26.5162 7.62814 26.5469C7.64996 26.5624 7.67639 26.5701 7.70314 26.5687C7.68747 26.5755 7.67331 26.5854 7.6615 26.5977C7.6497 26.6101 7.64049 26.6247 7.6344 26.6406C7.52815 26.6656 7.47502 26.7219 7.47189 26.8156C7.47106 26.8442 7.47593 26.8726 7.4862 26.8993C7.49647 26.926 7.51193 26.9504 7.53171 26.971C7.55148 26.9917 7.57517 27.0082 7.60138 27.0196C7.6276 27.031 7.6558 27.0371 7.68439 27.0375L7.9094 27.0625C7.9094 27.0625 7.9094 27.0625 7.9094 27.0813C7.9094 27.1 7.99377 27.1031 8.00315 27.0813C8.01252 27.0594 8.00315 27.0813 8.00315 27.0813C8.02844 27.0849 8.05349 27.0901 8.07814 27.0969C8.18439 27.1281 8.33126 27.0969 8.34689 27.0125C8.34435 26.9843 8.33432 26.9572 8.31784 26.9341C8.30136 26.9111 8.27903 26.8928 8.25314 26.8812V26.8812Z" fill="#42D4C6"/>
|
||||
<path d="M7.13755 26.1063C7.12823 26.1269 7.12341 26.1492 7.12341 26.1719C7.12341 26.1945 7.12823 26.2169 7.13755 26.2375C7.14853 26.253 7.16305 26.2656 7.17991 26.2743C7.19676 26.283 7.21545 26.2875 7.23442 26.2875C7.31567 26.2875 7.33755 26.2156 7.3313 26.1344C7.3427 26.1458 7.35661 26.1543 7.37192 26.1594C7.4313 26.1594 7.51255 26.1594 7.54692 26.1C7.5813 26.0406 7.4938 26 7.4938 26C7.4938 26 7.3063 26 7.2813 26.0375C7.2563 26.075 7.28131 26.0813 7.30631 26.1063C7.24068 26.0688 7.1813 26.05 7.13755 26.1063Z" fill="#42D4C6"/>
|
||||
<path d="M12.3751 25.6094C12.361 25.6009 12.3452 25.5955 12.3288 25.5936C12.3125 25.5917 12.2959 25.5934 12.2802 25.5984C12.2645 25.6034 12.2501 25.6117 12.2379 25.6228C12.2257 25.6339 12.216 25.6474 12.2095 25.6625L12.1938 25.7094C12.1886 25.6925 12.1789 25.6774 12.1657 25.6656C12.1695 25.6361 12.164 25.606 12.1501 25.5797C12.1361 25.5534 12.1142 25.5321 12.0876 25.5187C12.0548 25.5042 12.0179 25.5021 11.9837 25.5129C11.9495 25.5237 11.9205 25.5467 11.902 25.5774C11.8836 25.6082 11.877 25.6446 11.8836 25.6798C11.8901 25.715 11.9093 25.7467 11.9376 25.7687C11.9377 25.786 11.942 25.8031 11.9502 25.8183C11.9583 25.8335 11.9701 25.8466 11.9845 25.8562C11.9994 25.8661 12.0161 25.8728 12.0337 25.8761C12.0512 25.8793 12.0693 25.8791 12.0867 25.8753C12.1042 25.8715 12.1207 25.8643 12.1354 25.854C12.15 25.8438 12.1624 25.8307 12.1719 25.8156C12.1688 25.8439 12.1742 25.8725 12.1876 25.8976C12.201 25.9227 12.2217 25.9431 12.247 25.9562C12.2931 25.9676 12.3415 25.9653 12.3864 25.9498C12.4313 25.9343 12.4708 25.9061 12.5001 25.8687C12.5345 25.7969 12.4595 25.6531 12.3751 25.6094Z" fill="#42D4C6"/>
|
||||
<path d="M7.80633 26.1656C7.82482 26.142 7.83488 26.1128 7.83488 26.0828C7.83488 26.0528 7.82482 26.0236 7.80633 26C7.79912 25.9825 7.78821 25.9667 7.77434 25.9538C7.76047 25.9409 7.74396 25.9312 7.72597 25.9253C7.70798 25.9194 7.68894 25.9174 7.67012 25.9196C7.6513 25.9217 7.63316 25.9279 7.61696 25.9377C7.60076 25.9475 7.58688 25.9607 7.57626 25.9764C7.56564 25.9921 7.55856 26.0099 7.55547 26.0286C7.55238 26.0472 7.55337 26.0664 7.55837 26.0846C7.56337 26.1029 7.57226 26.1199 7.58444 26.1344C7.6112 26.1658 7.64857 26.1864 7.68946 26.1921C7.73035 26.1979 7.77192 26.1885 7.80633 26.1656V26.1656Z" fill="#42D4C6"/>
|
||||
<path d="M10.3688 28.2094C10.3409 28.2633 10.328 28.3237 10.3313 28.3844C10.3434 28.4381 10.3662 28.4887 10.3984 28.5333C10.4307 28.5779 10.4716 28.6155 10.5188 28.6438C10.5043 28.6775 10.503 28.7156 10.5151 28.7503C10.5273 28.785 10.552 28.8139 10.5844 28.8312C10.6006 28.839 10.6181 28.8433 10.636 28.844C10.6538 28.8447 10.6717 28.8417 10.6883 28.8353C10.705 28.8289 10.7202 28.8191 10.733 28.8066C10.7457 28.7941 10.7558 28.7791 10.7626 28.7625C10.7713 28.7411 10.7786 28.7192 10.7844 28.6969C10.8626 28.6531 10.8938 28.5531 10.9251 28.5469C10.9563 28.5406 11.0969 28.7125 11.2594 28.6969C11.342 28.6783 11.4166 28.6341 11.4727 28.5708C11.5288 28.5074 11.5635 28.428 11.5719 28.3437C11.5798 28.2432 11.5484 28.1436 11.4844 28.0656C11.4357 28.0168 11.3738 27.9831 11.3063 27.9687C11.3068 27.9446 11.3002 27.9208 11.2875 27.9003C11.2747 27.8798 11.2563 27.8634 11.2344 27.8531C11.1999 27.8416 11.1625 27.8417 11.128 27.8536C11.0935 27.8655 11.0639 27.8884 11.0438 27.9188C11.0315 27.9499 11.0315 27.9845 11.0438 28.0156C11.0257 28.0103 11.0065 28.0095 10.988 28.0133C10.9694 28.0171 10.9521 28.0254 10.9376 28.0375C10.9215 28.0523 10.9096 28.071 10.903 28.0919C10.8964 28.1127 10.8954 28.1349 10.9001 28.1563L10.9313 28.1938C10.9313 28.2094 10.9032 28.2219 10.8938 28.2219C10.8844 28.2219 10.7282 28.0375 10.5626 28.0656C10.5444 28.0705 10.5266 28.0767 10.5094 28.0844C10.4094 28.1094 10.3719 28.1438 10.3688 28.2094Z" fill="#42D4C6"/>
|
||||
<path d="M6.39061 26.5156C6.39667 26.5178 6.40331 26.5178 6.40938 26.5156C6.383 26.568 6.36925 26.6258 6.36925 26.6844C6.36925 26.743 6.383 26.8008 6.40938 26.8531C6.42566 26.8759 6.43442 26.9032 6.43442 26.9312C6.43442 26.9593 6.42566 26.9866 6.40938 27.0094C6.39477 27.0492 6.39602 27.0932 6.41289 27.1321C6.42975 27.1711 6.46093 27.2021 6.49999 27.2188C6.58124 27.25 6.62186 27.2187 6.64999 27.1437C6.66653 27.0941 6.69312 27.0483 6.72811 27.0094C6.81874 26.9406 6.91874 26.8812 7.01874 26.8156C7.24999 26.975 7.33124 26.9594 7.43124 26.7219C7.44359 26.6936 7.44877 26.6627 7.44631 26.6319C7.44384 26.6011 7.43382 26.5714 7.41712 26.5455C7.40043 26.5195 7.37759 26.498 7.35061 26.483C7.32364 26.468 7.29337 26.4599 7.2625 26.4594C7.14823 26.4653 7.03501 26.4842 6.92499 26.5156C6.84061 26.4219 6.73436 26.3219 6.59061 26.3656C6.57764 26.3732 6.56512 26.3816 6.55311 26.3906V26.3906C6.51874 26.3625 6.42187 26.3031 6.38124 26.3344C6.34062 26.3656 6.36248 26.4844 6.39061 26.5156Z" fill="#42D4C6"/>
|
||||
<path d="M6.52819 23.375C6.46257 23.4219 6.52819 23.525 6.52819 23.575C6.52819 23.625 6.62507 23.6375 6.68444 23.5969C6.74382 23.5563 6.76257 23.4938 6.70632 23.4469C6.65007 23.4 6.59694 23.325 6.52819 23.375Z" fill="#42D4C6"/>
|
||||
<path d="M6.39997 25.1406C6.42781 25.1632 6.46257 25.1755 6.49841 25.1755C6.53426 25.1755 6.56901 25.1632 6.59685 25.1406C6.62531 25.1179 6.64382 25.0849 6.64848 25.0488C6.65315 25.0127 6.64361 24.9761 6.62186 24.9469C6.5968 24.921 6.56291 24.9054 6.52693 24.9033C6.49094 24.9012 6.45547 24.9127 6.42755 24.9355C6.39964 24.9583 6.38132 24.9907 6.37621 25.0264C6.3711 25.0621 6.37958 25.0984 6.39997 25.1281V25.1406Z" fill="#42D4C6"/>
|
||||
<path d="M6.91565 25.1594C6.91565 25.1375 6.89689 25.0719 6.86564 25.0469C6.85709 25.0382 6.84639 25.0319 6.83463 25.0287C6.82287 25.0255 6.81048 25.0255 6.79871 25.0287C6.78695 25.0319 6.77624 25.0382 6.76768 25.0468C6.75913 25.0555 6.75303 25.0663 6.75002 25.0781C6.75002 25.1187 6.71564 25.2312 6.75002 25.2562C6.78439 25.2812 6.8969 25.1969 6.91565 25.1594Z" fill="#42D4C6"/>
|
||||
<path d="M7.24383 25.1687C7.23803 25.1799 7.23282 25.1914 7.22821 25.2031C7.20358 25.1828 7.17263 25.1717 7.1407 25.1717C7.10877 25.1717 7.07784 25.1828 7.05321 25.2031C7.02558 25.2395 7.01062 25.284 7.01062 25.3297C7.01062 25.3754 7.02558 25.4198 7.05321 25.4562C7.07196 25.4781 7.1532 25.4781 7.21883 25.4562C7.23013 25.4808 7.24731 25.5023 7.26884 25.5187C7.33251 25.5531 7.4056 25.5659 7.47716 25.5552C7.54872 25.5445 7.61488 25.5109 7.6657 25.4594C7.6962 25.4036 7.70541 25.3386 7.69162 25.2765C7.67783 25.2145 7.64196 25.1595 7.5907 25.1219C7.53747 25.085 7.47236 25.0693 7.40817 25.078C7.34398 25.0867 7.28535 25.119 7.24383 25.1687V25.1687Z" fill="#42D4C6"/>
|
||||
<path d="M6.60007 25.4062C6.56938 25.3949 6.53611 25.3924 6.50408 25.3991C6.47204 25.4057 6.4425 25.4212 6.41882 25.4437V25.4813C6.40146 25.5256 6.40077 25.5747 6.41685 25.6195C6.43294 25.6644 6.46473 25.7018 6.50633 25.725C6.62195 25.7969 6.7032 25.7906 6.75945 25.7031C6.78602 25.6566 6.79585 25.6024 6.78732 25.5495C6.77879 25.4967 6.75241 25.4483 6.71257 25.4125C6.67708 25.3968 6.63708 25.3946 6.60007 25.4062V25.4062Z" fill="#42D4C6"/>
|
||||
<path d="M15.7313 23.4812C15.6962 23.485 15.6623 23.4956 15.6313 23.5125C15.5969 23.6031 15.6313 23.6781 15.6875 23.6813C15.7096 23.6829 15.7317 23.6795 15.7523 23.6714C15.7728 23.6633 15.7913 23.6506 15.8063 23.6344C15.8438 23.5906 15.7938 23.5 15.7313 23.4812Z" fill="#42D4C6"/>
|
||||
<path d="M16.0251 23.6937C15.9813 23.6937 15.8782 23.6719 15.8626 23.7469C15.847 23.8219 15.9219 23.8812 15.9626 23.9062C16.0032 23.9312 16.0626 23.9062 16.0844 23.8375C16.1063 23.7687 16.0844 23.6969 16.0251 23.6937Z" fill="#42D4C6"/>
|
||||
<path d="M15.9844 22.3062C15.9701 22.2978 15.9541 22.2926 15.9376 22.2909C15.9211 22.2893 15.9044 22.2912 15.8887 22.2965C15.873 22.3018 15.8586 22.3105 15.8466 22.3219C15.8345 22.3333 15.825 22.3471 15.8188 22.3625C15.7813 22.4406 15.8188 22.5656 15.8656 22.5906C15.9125 22.6156 16.0282 22.5469 16.0563 22.4844C16.0644 22.4681 16.069 22.4503 16.0697 22.4322C16.0704 22.414 16.0673 22.3959 16.0605 22.3791C16.0537 22.3623 16.0434 22.3471 16.0303 22.3345C16.0172 22.3219 16.0015 22.3123 15.9844 22.3062Z" fill="#42D4C6"/>
|
||||
<path d="M16.3469 23.2625C16.2844 23.2344 16.1813 23.2875 16.125 23.4C16.125 23.425 16.1469 23.4813 16.1812 23.5063C16.2167 23.531 16.2603 23.5409 16.3029 23.5339C16.3456 23.5269 16.3838 23.5035 16.4094 23.4688C16.4247 23.4325 16.4267 23.392 16.4153 23.3544C16.4039 23.3167 16.3797 23.2842 16.3469 23.2625V23.2625Z" fill="#42D4C6"/>
|
||||
<path d="M15.9063 24.6562C15.8776 24.7226 15.8728 24.7969 15.8927 24.8664C15.9127 24.936 15.9561 24.9964 16.0157 25.0375C16.0814 25.0599 16.1527 25.0598 16.2183 25.0371C16.284 25.0145 16.3402 24.9706 16.3782 24.9125C16.4438 24.7937 16.3781 24.6437 16.2156 24.5594C16.1891 24.5448 16.1599 24.5358 16.1298 24.5328C16.0997 24.5298 16.0692 24.533 16.0404 24.542C16.0115 24.551 15.9847 24.5658 15.9617 24.5855C15.9386 24.6051 15.9198 24.6292 15.9063 24.6562V24.6562Z" fill="#42D4C6"/>
|
||||
<path d="M14.8469 24.8531C14.9719 24.9281 15.0875 24.825 15.1594 24.7687C15.2312 24.7125 15.1219 24.5562 15.0031 24.525C14.9708 24.5147 14.9357 24.517 14.9049 24.5315C14.8742 24.546 14.8501 24.5716 14.8375 24.6031C14.775 24.6844 14.7844 24.8156 14.8469 24.8531Z" fill="#42D4C6"/>
|
||||
<path d="M16.6688 23.9937C16.644 23.9786 16.6161 23.9693 16.5872 23.9664C16.5583 23.9635 16.5291 23.9671 16.5018 23.977C16.4745 23.9869 16.4498 24.0028 16.4295 24.0236C16.4091 24.0443 16.3937 24.0694 16.3844 24.0969C16.3627 24.1394 16.358 24.1887 16.3714 24.2346C16.3847 24.2805 16.4151 24.3195 16.4563 24.3437C16.5152 24.3591 16.5776 24.3549 16.6339 24.3318C16.6903 24.3087 16.7376 24.2679 16.7688 24.2156C16.7794 24.1728 16.7753 24.1276 16.7572 24.0874C16.739 24.0471 16.7079 24.0142 16.6688 23.9937V23.9937Z" fill="#42D4C6"/>
|
||||
<path d="M17.2344 27.8437C17.2268 27.7862 17.2132 27.7297 17.1937 27.675C17.1772 27.6328 17.147 27.5975 17.1078 27.5748C17.0686 27.5521 17.0229 27.5434 16.9781 27.55C16.9273 27.5588 16.8813 27.5853 16.8482 27.6247C16.815 27.6642 16.7968 27.7141 16.7969 27.7656C16.7998 27.7907 16.8076 27.8149 16.82 27.8369C16.8323 27.8589 16.8489 27.8782 16.8687 27.8937C16.924 27.9352 16.9934 27.9532 17.0618 27.9438C17.1303 27.9345 17.1923 27.8985 17.2344 27.8437V27.8437Z" fill="#42D4C6"/>
|
||||
<path d="M14.9657 22.7375C14.8844 22.7594 14.8751 22.7844 14.8563 22.8438C14.842 22.8831 14.842 22.9263 14.8563 22.9656C14.9188 22.9656 15.0313 23.0156 15.072 22.9656C15.1126 22.9156 15.0282 22.8187 15.0126 22.7562L14.9657 22.7375Z" fill="#42D4C6"/>
|
||||
<path d="M15.3251 24.1812C15.3164 24.2288 15.3233 24.2779 15.3447 24.3212C15.366 24.3645 15.4008 24.3998 15.4438 24.4219C15.4781 24.4327 15.515 24.4325 15.5492 24.4213C15.5834 24.4101 15.6132 24.3884 15.6344 24.3594C15.6938 24.2344 15.6719 24.1063 15.5876 24.0688C15.5375 24.0575 15.4852 24.0623 15.4381 24.0825C15.391 24.1027 15.3514 24.1373 15.3251 24.1812Z" fill="#42D4C6"/>
|
||||
<path d="M15.0313 25.7812C15.0189 25.8455 15.027 25.9121 15.0545 25.9715C15.082 26.031 15.1274 26.0803 15.1844 26.1125C15.2594 26.1437 15.3625 26.0812 15.4032 25.975C15.4438 25.8687 15.4032 25.7781 15.2844 25.7219C15.2424 25.6986 15.1932 25.6918 15.1464 25.7028C15.0996 25.7138 15.0586 25.7417 15.0313 25.7812V25.7812Z" fill="#42D4C6"/>
|
||||
<path d="M15.3843 25.0781C15.3984 25.0872 15.4142 25.0932 15.4308 25.0956C15.4473 25.098 15.4642 25.0968 15.4803 25.0921C15.4963 25.0873 15.5111 25.0791 15.5237 25.0681C15.5363 25.0571 15.5463 25.0434 15.5531 25.0281C15.5622 25.0125 15.568 24.9951 15.5701 24.9772C15.5722 24.9592 15.5706 24.9409 15.5653 24.9236C15.56 24.9063 15.5512 24.8903 15.5394 24.8765C15.5277 24.8628 15.5131 24.8516 15.4968 24.8437C15.4631 24.8304 15.4255 24.83 15.3914 24.8427C15.3574 24.8554 15.3293 24.8803 15.3125 24.9125C15.301 24.9441 15.302 24.9788 15.3154 25.0096C15.3288 25.0404 15.3535 25.0649 15.3843 25.0781V25.0781Z" fill="#42D4C6"/>
|
||||
<path d="M15.1407 23.6187C15.1281 23.6127 15.1143 23.6097 15.1003 23.61C15.0863 23.6104 15.0727 23.6141 15.0604 23.6209C15.0482 23.6276 15.0378 23.6372 15.03 23.6487C15.0222 23.6603 15.0173 23.6736 15.0157 23.6875C15.0157 23.7312 14.9876 23.8469 15.0469 23.8625C15.1063 23.8781 15.1938 23.8031 15.2126 23.7625C15.2313 23.7219 15.2063 23.6469 15.1407 23.6187Z" fill="#42D4C6"/>
|
||||
<path d="M17.9 26.3812C17.9079 26.3274 17.8965 26.2725 17.868 26.2262C17.8394 26.1799 17.7954 26.1452 17.7437 26.1281C17.6437 26.0844 17.5594 26.1281 17.5125 26.2594C17.5004 26.2996 17.5021 26.3427 17.5174 26.3818C17.5327 26.4209 17.5607 26.4537 17.5969 26.475C17.675 26.5094 17.875 26.45 17.9 26.3812Z" fill="#42D4C6"/>
|
||||
<path d="M17.7062 25.5062C17.7062 25.4781 17.6187 25.4625 17.5812 25.475C17.5605 25.4843 17.5417 25.4977 17.5262 25.5144C17.5106 25.531 17.4985 25.5505 17.4906 25.5719C17.4916 25.5919 17.4969 25.6114 17.506 25.6292C17.5152 25.647 17.528 25.6626 17.5437 25.675C17.6035 25.7132 17.6662 25.7467 17.7312 25.775C17.7875 25.8031 17.825 25.775 17.85 25.7156C17.875 25.6563 17.85 25.6656 17.825 25.6563C17.7594 25.625 17.7375 25.5656 17.7062 25.5062Z" fill="#42D4C6"/>
|
||||
<path d="M17.55 27.6063C17.5565 27.6016 17.5617 27.5955 17.5654 27.5885C17.569 27.5814 17.5709 27.5736 17.5709 27.5656C17.5709 27.5577 17.569 27.5499 17.5654 27.5428C17.5617 27.5357 17.5565 27.5296 17.55 27.525C17.5188 27.5063 17.4938 27.5063 17.4719 27.525C17.4654 27.5296 17.4602 27.5357 17.4566 27.5428C17.4529 27.5499 17.451 27.5577 17.451 27.5656C17.451 27.5736 17.4529 27.5814 17.4566 27.5885C17.4602 27.5955 17.4654 27.6016 17.4719 27.6063C17.4762 27.6127 17.482 27.618 17.4888 27.6216C17.4956 27.6253 17.5032 27.6272 17.511 27.6272C17.5187 27.6272 17.5263 27.6253 17.5331 27.6216C17.5399 27.618 17.5457 27.6127 17.55 27.6063V27.6063Z" fill="#42D4C6"/>
|
||||
<path d="M17.4313 27.0062C17.4313 26.9812 17.4001 26.9344 17.3657 26.9375C17.349 26.9382 17.3332 26.9449 17.3211 26.9564C17.309 26.9679 17.3016 26.9834 17.3 27C17.3021 27.0193 17.3102 27.0375 17.323 27.0521C17.3359 27.0666 17.353 27.0768 17.3719 27.0813C17.4032 27.0875 17.4313 27.0375 17.4313 27.0062Z" fill="#42D4C6"/>
|
||||
<path d="M13.0407 25.8219C13.0112 25.8037 12.9783 25.7915 12.9441 25.786C12.9099 25.7805 12.8749 25.7819 12.8412 25.7901C12.8075 25.7982 12.7757 25.8129 12.7477 25.8334C12.7198 25.8539 12.6961 25.8797 12.6782 25.9094C12.6702 25.9443 12.6702 25.9807 12.6782 26.0156C12.6619 26.0033 12.6428 25.9951 12.6227 25.9919C12.6025 25.9886 12.5819 25.9903 12.5625 25.9969C12.5288 26.0021 12.4981 26.019 12.4758 26.0448C12.4535 26.0706 12.441 26.1034 12.4407 26.1375C12.4407 26.2406 12.5344 26.2625 12.6188 26.3031C12.6671 26.2668 12.7048 26.2182 12.7282 26.1625C12.7482 26.1953 12.7776 26.2214 12.8125 26.2375C12.8754 26.2587 12.9436 26.2575 13.0057 26.2342C13.0678 26.2108 13.1199 26.1667 13.1532 26.1094C13.1655 26.0832 13.1723 26.0549 13.1733 26.026C13.1743 25.9971 13.1693 25.9683 13.1588 25.9414C13.1483 25.9145 13.1324 25.89 13.1121 25.8695C13.0917 25.8489 13.0675 25.8327 13.0407 25.8219V25.8219Z" fill="#42D4C6"/>
|
||||
<path d="M17.3375 23.5406C17.3719 23.5594 17.4125 23.5031 17.4281 23.4812C17.4314 23.4677 17.4307 23.4534 17.4263 23.4402C17.4219 23.4269 17.4139 23.4152 17.4032 23.4062C17.3782 23.4062 17.3375 23.425 17.3188 23.4469C17.3 23.4688 17.3031 23.5219 17.3375 23.5406Z" fill="#42D4C6"/>
|
||||
<path d="M17.2688 26.3875C17.1375 26.3344 17.0281 26.3563 16.9969 26.4375C16.9859 26.4609 16.9799 26.4864 16.9792 26.5123C16.9785 26.5381 16.9832 26.5639 16.993 26.5879C17.0027 26.6118 17.0173 26.6335 17.0359 26.6516C17.0545 26.6696 17.0765 26.6836 17.1008 26.6927C17.125 26.7018 17.1509 26.7058 17.1767 26.7044C17.2026 26.703 17.2278 26.6962 17.251 26.6846C17.2741 26.673 17.2945 26.6566 17.311 26.6367C17.3276 26.6168 17.3398 26.5936 17.3469 26.5687C17.3561 26.5342 17.3534 26.4974 17.3393 26.4646C17.3251 26.4317 17.3003 26.4045 17.2688 26.3875Z" fill="#42D4C6"/>
|
||||
<path d="M16.8282 25.7625C16.8146 25.7989 16.8121 25.8385 16.821 25.8763C16.8299 25.9141 16.8498 25.9485 16.8782 25.975C16.8901 25.9838 16.9037 25.9899 16.9182 25.9928C16.9327 25.9957 16.9477 25.9953 16.9621 25.9917C16.9764 25.9881 16.9898 25.9814 17.0012 25.972C17.0127 25.9627 17.0219 25.9509 17.0282 25.9375C17.0938 25.8437 17.1063 25.7625 17.0626 25.7281C17.024 25.7122 16.9819 25.707 16.9406 25.713C16.8994 25.7191 16.8605 25.7362 16.8282 25.7625V25.7625Z" fill="#42D4C6"/>
|
||||
<path d="M17.7438 24.9187C17.7046 24.8958 17.6585 24.8876 17.6138 24.8956C17.5692 24.9037 17.5288 24.9274 17.5001 24.9625C17.4844 25.0042 17.4819 25.0496 17.4931 25.0927C17.5043 25.1358 17.5286 25.1744 17.5625 25.2031C17.6375 25.2406 17.75 25.1781 17.8 25.0656C17.8072 25.0525 17.8115 25.038 17.8125 25.023C17.8135 25.0081 17.8113 24.9931 17.8059 24.9792C17.8006 24.9652 17.7922 24.9525 17.7815 24.9421C17.7708 24.9317 17.7579 24.9237 17.7438 24.9187V24.9187Z" fill="#42D4C6"/>
|
||||
<path d="M17.375 23.0812C17.3687 23.097 17.3678 23.1144 17.3723 23.1307C17.3768 23.1471 17.3865 23.1615 17.4 23.1719C17.4155 23.1765 17.4322 23.1759 17.4474 23.1703C17.4626 23.1647 17.4755 23.1543 17.4843 23.1406C17.4843 23.1219 17.5031 23.0437 17.4843 23.0281C17.4656 23.0125 17.3843 23.0594 17.375 23.0812Z" fill="#42D4C6"/>
|
||||
<path d="M16.9126 24.8812C16.8157 24.825 16.6532 24.9062 16.6001 25.0406C16.5883 25.0636 16.5814 25.0888 16.5799 25.1145C16.5784 25.1403 16.5824 25.1661 16.5915 25.1903C16.6006 25.2145 16.6147 25.2364 16.6329 25.2548C16.6511 25.2731 16.6729 25.2875 16.697 25.2969C16.7246 25.3124 16.7553 25.3217 16.7869 25.3242C16.8184 25.3267 16.8502 25.3223 16.8799 25.3113C16.9097 25.3003 16.9366 25.2829 16.959 25.2605C16.9814 25.238 16.9986 25.211 17.0095 25.1812C17.0343 25.1283 17.038 25.0678 17.0201 25.0122C17.0021 24.9565 16.9637 24.9097 16.9126 24.8812V24.8812Z" fill="#42D4C6"/>
|
||||
<path d="M25.8719 12.6781C25.8655 12.7293 25.8792 12.781 25.9101 12.8224C25.9409 12.8637 25.9866 12.8915 26.0375 12.9C26.0313 12.9192 26.032 12.94 26.0394 12.9588C26.0468 12.9776 26.0605 12.9933 26.0781 13.0031C26.125 13.0406 26.2594 13.0031 26.2656 12.9406C26.2652 12.917 26.2576 12.8941 26.2438 12.875C26.2871 12.8503 26.3239 12.8155 26.3511 12.7737C26.3783 12.7318 26.3951 12.684 26.4 12.6344V12.6187C26.375 12.5875 26.3531 12.55 26.325 12.5187C26.2974 12.4823 26.2585 12.4562 26.2143 12.4443C26.1702 12.4324 26.1234 12.4355 26.0812 12.4531C26.0286 12.467 25.981 12.4955 25.944 12.5353C25.9069 12.5751 25.8819 12.6246 25.8719 12.6781V12.6781Z" fill="#42D4C6"/>
|
||||
<path d="M25.9876 11.2875C25.9836 11.291 25.9804 11.2953 25.9782 11.3002C25.976 11.305 25.9749 11.3103 25.9749 11.3156C25.9749 11.3209 25.976 11.3262 25.9782 11.3311C25.9804 11.3359 25.9836 11.3402 25.9876 11.3437C26.0094 11.3437 26.0313 11.3437 26.0407 11.325C26.042 11.3162 26.041 11.3073 26.0377 11.299C26.0344 11.2908 26.0289 11.2836 26.0219 11.2781C26.0159 11.2767 26.0096 11.2768 26.0036 11.2785C25.9976 11.2801 25.9921 11.2832 25.9876 11.2875Z" fill="#42D4C6"/>
|
||||
<path d="M26.025 10.875C26.025 10.875 25.9563 10.875 25.9532 10.875C25.946 10.889 25.9423 10.9046 25.9423 10.9203C25.9423 10.9361 25.946 10.9516 25.9532 10.9656C25.9532 10.9656 26.0469 10.9844 26.0594 10.9656C26.0719 10.9469 26.0469 10.8937 26.025 10.875Z" fill="#42D4C6"/>
|
||||
<path d="M26.5344 11.5906C26.3625 11.5094 26.1219 11.6875 26.2563 11.8719C26.275 11.9 26.0781 12.0094 26.1875 12.1844C26.2022 12.2191 26.2254 12.2495 26.255 12.2727C26.2847 12.296 26.3198 12.3113 26.357 12.3173C26.3942 12.3232 26.4323 12.3196 26.4677 12.3067C26.5031 12.2938 26.5347 12.2722 26.5594 12.2437C26.6141 12.2073 26.6758 12.1828 26.7406 12.1719V12.1719C26.7658 12.1815 26.7933 12.1827 26.8192 12.1754C26.8451 12.1681 26.868 12.1526 26.8844 12.1312C26.9938 12.0937 27.0875 12.0344 27.0844 11.8875C27.0844 11.6844 26.9281 11.6187 26.8469 11.6375C26.7656 11.6562 26.7 11.7469 26.6406 11.7375C26.5813 11.7281 26.7063 11.675 26.5344 11.5906Z" fill="#42D4C6"/>
|
||||
<path d="M25.4625 11.2188C25.449 11.2101 25.4332 11.2056 25.4172 11.2056C25.4011 11.2056 25.3854 11.2101 25.3719 11.2188C25.3531 11.2375 25.3375 11.3187 25.3719 11.3312C25.4063 11.3437 25.4531 11.3156 25.4625 11.3C25.4719 11.2844 25.4938 11.2344 25.4625 11.2188Z" fill="#42D4C6"/>
|
||||
<path d="M26.1813 11.1781C26.1063 11.1781 26.0438 11.3063 26.1031 11.3594C26.1202 11.3711 26.1399 11.3785 26.1605 11.3809C26.181 11.3834 26.2019 11.3808 26.2212 11.3734C26.2406 11.3661 26.2579 11.3541 26.2716 11.3386C26.2853 11.3231 26.2951 11.3045 26.3 11.2844C26.3156 11.2406 26.2438 11.1781 26.1813 11.1781Z" fill="#42D4C6"/>
|
||||
<path d="M26.9688 13.025C26.9969 13.0531 27.1594 13.0687 27.1969 13.025C27.2344 12.9812 27.125 12.8375 27.075 12.8094C27.0456 12.7965 27.0129 12.7932 26.9815 12.7999C26.9501 12.8066 26.9216 12.8231 26.9 12.8469C26.8688 12.8937 26.9251 12.9844 26.9688 13.025Z" fill="#42D4C6"/>
|
||||
<path d="M25.85 11.5812C25.8542 11.5627 25.8542 11.5435 25.85 11.525C25.8627 11.5154 25.8725 11.5024 25.8781 11.4875C25.8884 11.4497 25.8849 11.4095 25.8683 11.374C25.8517 11.3386 25.8231 11.3101 25.7875 11.2937C25.7563 11.2821 25.7219 11.2827 25.6911 11.2954C25.6604 11.3082 25.6356 11.3322 25.6219 11.3625C25.6204 11.3707 25.6204 11.3792 25.6219 11.3875L25.6 11.4094C25.5858 11.4495 25.5833 11.4928 25.5927 11.5342C25.6021 11.5757 25.623 11.6137 25.6531 11.6437C25.67 11.6533 25.6887 11.6594 25.7079 11.6614C25.7272 11.6634 25.7468 11.6614 25.7652 11.6556C25.7837 11.6497 25.8008 11.6401 25.8154 11.6273C25.83 11.6145 25.8418 11.5988 25.85 11.5812Z" fill="#42D4C6"/>
|
||||
<path d="M25.1188 11.6062C25.1052 11.6312 25.097 11.6587 25.0948 11.687C25.0925 11.7154 25.0962 11.7438 25.1056 11.7706C25.115 11.7974 25.13 11.822 25.1495 11.8426C25.169 11.8633 25.1926 11.8796 25.2188 11.8906C25.2915 11.931 25.3731 11.9525 25.4563 11.9531C25.4499 12.0092 25.4624 12.0657 25.4919 12.1139C25.5213 12.162 25.566 12.1989 25.6188 12.2188C25.6604 12.2374 25.7076 12.2393 25.7506 12.2242C25.7936 12.2091 25.8292 12.1781 25.85 12.1375C25.8836 12.1002 25.9022 12.0518 25.9022 12.0016C25.9022 11.9514 25.8836 11.9029 25.85 11.8656C25.8223 11.8376 25.7882 11.8167 25.7507 11.8047C25.7131 11.7927 25.6732 11.79 25.6344 11.7969C25.6354 11.7361 25.6217 11.6759 25.5945 11.6215C25.5673 11.5671 25.5274 11.52 25.4782 11.4844C25.4129 11.4667 25.3439 11.4689 25.2799 11.4906C25.2159 11.5123 25.1599 11.5526 25.1188 11.6062V11.6062Z" fill="#42D4C6"/>
|
||||
<path d="M26.3406 13.2406C26.3303 13.2439 26.3207 13.2492 26.3125 13.2562H26.4906C26.468 13.2436 26.443 13.2356 26.4173 13.233C26.3915 13.2303 26.3654 13.2329 26.3406 13.2406Z" fill="#42D4C6"/>
|
||||
<path d="M26.7375 12.9937C26.7842 12.9664 26.8219 12.9263 26.8463 12.878C26.8707 12.8298 26.8807 12.7756 26.875 12.7219C26.8735 12.6884 26.8595 12.6567 26.8358 12.633C26.8121 12.6093 26.7804 12.5953 26.7469 12.5937C26.6962 12.5848 26.644 12.5939 26.5994 12.6197C26.5549 12.6454 26.5208 12.686 26.5032 12.7344C26.4947 12.7509 26.4894 12.769 26.4875 12.7875C26.5259 12.8526 26.5698 12.9143 26.6188 12.9719C26.6351 12.9852 26.6546 12.9943 26.6753 12.9981C26.6961 13.0019 26.7175 13.0004 26.7375 12.9937V12.9937Z" fill="#42D4C6"/>
|
||||
<path d="M22.0875 12.5125C22.05 12.5687 22.0313 12.6312 21.925 12.625C21.9063 12.5875 21.8938 12.5344 21.8625 12.5187C21.812 12.4911 21.7533 12.4823 21.6969 12.4937C21.6313 12.5156 21.6281 12.5844 21.6531 12.65C21.6781 12.7156 21.6844 12.75 21.7031 12.7969C21.7075 12.8093 21.7138 12.8209 21.7219 12.8312C21.7164 12.8319 21.7113 12.834 21.7069 12.8373C21.7025 12.8405 21.699 12.8449 21.6969 12.85C21.6719 12.8875 21.7313 12.9687 21.7594 12.9937C21.7718 13.0022 21.7861 13.0077 21.801 13.0098C21.8159 13.0118 21.8311 13.0104 21.8453 13.0055C21.8596 13.0007 21.8725 12.9926 21.8831 12.9818C21.8937 12.9711 21.9016 12.9581 21.9063 12.9437V12.9437C21.9436 12.9604 21.9841 12.9691 22.025 12.9691C22.0659 12.9691 22.1064 12.9604 22.1438 12.9437C22.1529 12.936 22.1604 12.9264 22.1656 12.9156C22.1656 12.7969 22.2688 12.7844 22.35 12.7469C22.3719 12.7395 22.3917 12.7268 22.4074 12.7098C22.4231 12.6929 22.4343 12.6722 22.4399 12.6498C22.4455 12.6274 22.4453 12.6039 22.4394 12.5815C22.4336 12.5592 22.4222 12.5386 22.4062 12.5219L22.3875 12.5C22.4027 12.5268 22.4256 12.5486 22.4531 12.5625C22.4765 12.5765 22.5028 12.585 22.53 12.5875C22.5572 12.5899 22.5846 12.5862 22.6101 12.5766C22.6356 12.567 22.6587 12.5517 22.6775 12.532C22.6963 12.5122 22.7104 12.4885 22.7187 12.4625C22.7297 12.4393 22.7356 12.4141 22.736 12.3884C22.7363 12.3628 22.7311 12.3374 22.7207 12.314C22.7103 12.2905 22.695 12.2696 22.6758 12.2526C22.6566 12.2357 22.6339 12.223 22.6094 12.2156C22.5707 12.1995 22.5286 12.1936 22.4869 12.1985C22.4453 12.2035 22.4057 12.219 22.3719 12.2437L22.3156 12.2094C22.2807 12.2355 22.2492 12.2659 22.2219 12.3C22.2058 12.3192 22.1952 12.3425 22.1913 12.3672C22.1875 12.392 22.1905 12.4174 22.2 12.4406C22.1552 12.4505 22.1153 12.476 22.0875 12.5125V12.5125Z" fill="#42D4C6"/>
|
||||
<path d="M18.4313 9.80625C18.4157 9.80994 18.3996 9.81017 18.3839 9.80693C18.3682 9.80369 18.3535 9.79706 18.3407 9.7875L18.3157 9.75V10.8438C18.3541 10.848 18.3929 10.8396 18.4261 10.8199C18.4594 10.8002 18.4853 10.7702 18.5 10.7344C18.5137 10.6957 18.5242 10.656 18.5313 10.6156C18.5869 10.5961 18.6329 10.5558 18.6594 10.5031C18.6766 10.4796 18.6879 10.4522 18.6922 10.4234C18.6966 10.3945 18.6939 10.3651 18.6844 10.3375C18.7232 10.3192 18.7566 10.2912 18.7812 10.2561C18.8059 10.2211 18.821 10.1802 18.8251 10.1375C18.8233 10.089 18.8114 10.0415 18.7902 9.99792C18.7689 9.95434 18.7388 9.91568 18.7017 9.88447C18.6646 9.85326 18.6214 9.83017 18.5748 9.8167C18.5282 9.80323 18.4793 9.79966 18.4313 9.80625V9.80625Z" fill="#42D4C6"/>
|
||||
<path d="M18.8751 10.0625C18.9079 10.0771 18.9449 10.0795 18.9793 10.0692C19.0137 10.0588 19.0432 10.0365 19.0626 10.0062C19.0757 9.97292 19.0769 9.9361 19.0661 9.90197C19.0553 9.86784 19.0331 9.83846 19.0032 9.81874C18.9881 9.80906 18.9712 9.80253 18.9535 9.79949C18.9358 9.79645 18.9177 9.79698 18.9002 9.80105C18.8827 9.80513 18.8663 9.81267 18.8517 9.82322C18.8372 9.83377 18.825 9.84712 18.8157 9.86249C18.7977 9.89701 18.7938 9.93719 18.8049 9.97451C18.816 10.0118 18.8411 10.0434 18.8751 10.0625V10.0625Z" fill="#42D4C6"/>
|
||||
<path d="M28.5407 11.725C28.5389 11.7332 28.5389 11.7418 28.5407 11.75C28.4837 11.7261 28.4199 11.7247 28.3619 11.746C28.304 11.7674 28.2563 11.81 28.2286 11.8651C28.2008 11.9202 28.195 11.9839 28.2123 12.0431C28.2296 12.1024 28.2688 12.1529 28.3219 12.1844C28.3913 12.204 28.4651 12.201 28.5325 12.1757C28.6 12.1504 28.6576 12.1042 28.6969 12.0438C28.7155 11.9987 28.7155 11.9482 28.6969 11.9031C28.7215 11.8979 28.7445 11.8866 28.7636 11.8702C28.7827 11.8539 28.7974 11.8329 28.8063 11.8094C28.8148 11.7933 28.8198 11.7756 28.8213 11.7574C28.8227 11.7393 28.8204 11.721 28.8146 11.7038C28.8087 11.6866 28.7994 11.6707 28.7873 11.6571C28.7751 11.6436 28.7603 11.6327 28.7438 11.625C28.7239 11.6181 28.7028 11.6153 28.6818 11.6166C28.6608 11.6179 28.6403 11.6234 28.6214 11.6327C28.6025 11.642 28.5856 11.6549 28.5718 11.6708C28.5579 11.6866 28.5474 11.705 28.5407 11.725V11.725Z" fill="#42D4C6"/>
|
||||
<path d="M28.95 10.5031C28.941 10.5173 28.9352 10.5334 28.933 10.5501C28.9308 10.5668 28.9323 10.5838 28.9374 10.5998C28.9424 10.6159 28.9509 10.6307 28.9623 10.6431C28.9737 10.6556 28.9876 10.6654 29.0032 10.6719C29.0343 10.6903 29.0715 10.6957 29.1066 10.6869C29.1417 10.6781 29.1719 10.6559 29.1907 10.625C29.1978 10.6086 29.2017 10.5909 29.2019 10.5731C29.2022 10.5552 29.1989 10.5374 29.1922 10.5208C29.1855 10.5042 29.1756 10.4891 29.163 10.4764C29.1504 10.4637 29.1353 10.4537 29.1188 10.4469C29.104 10.4394 29.0879 10.4349 29.0714 10.4337C29.0549 10.4324 29.0384 10.4345 29.0227 10.4397C29.007 10.445 28.9925 10.4533 28.98 10.4641C28.9675 10.475 28.9573 10.4883 28.95 10.5031V10.5031Z" fill="#42D4C6"/>
|
||||
<path d="M28.8032 11.1594C28.7858 11.1915 28.7752 11.2269 28.7721 11.2633C28.769 11.2997 28.7735 11.3364 28.7852 11.371C28.797 11.4056 28.8157 11.4374 28.8403 11.4645C28.8649 11.4915 28.8948 11.5132 28.9282 11.5281C28.9725 11.5507 29.0234 11.5564 29.0717 11.5444C29.1199 11.5323 29.1622 11.5032 29.1907 11.4625H29.2157C29.2763 11.4802 29.3413 11.4754 29.3987 11.449C29.4561 11.4225 29.5021 11.3763 29.5282 11.3188C29.5519 11.2651 29.5565 11.2048 29.5412 11.1481C29.5259 11.0915 29.4916 11.0417 29.444 11.0073C29.3964 10.9729 29.3385 10.9559 29.2798 10.9591C29.2212 10.9623 29.1655 10.9856 29.1219 11.025C29.0615 11.0056 28.9961 11.0085 28.9377 11.0332C28.8792 11.0578 28.8315 11.1026 28.8032 11.1594V11.1594Z" fill="#42D4C6"/>
|
||||
<path d="M21.0437 11.7469C21.0464 11.742 21.048 11.7366 21.0485 11.7311C21.0489 11.7255 21.0483 11.72 21.0465 11.7147C21.0448 11.7094 21.042 11.7046 21.0382 11.7004C21.0345 11.6963 21.03 11.693 21.025 11.6906C21.015 11.6883 21.0046 11.6895 20.9955 11.6941C20.9863 11.6987 20.9791 11.7063 20.975 11.7156C20.975 11.7156 20.975 11.7562 21 11.7594C21.0075 11.763 21.0161 11.7637 21.0242 11.7614C21.0323 11.7591 21.0392 11.7539 21.0437 11.7469Z" fill="#42D4C6"/>
|
||||
<path d="M20.8032 12.2937L20.9688 12.3812C21.0133 12.4051 21.0646 12.4129 21.1142 12.4032C21.1637 12.3935 21.2084 12.367 21.2406 12.3281C21.2781 12.2719 21.2719 12.1531 21.2156 12.1312C21.1347 12.0777 21.0365 12.0565 20.9407 12.0719C20.7969 12.1156 20.7844 12.125 20.8032 12.2937Z" fill="#42D4C6"/>
|
||||
<path d="M23.1188 12.8188C23.1116 12.8341 23.1076 12.8507 23.107 12.8676C23.1064 12.8845 23.1093 12.9014 23.1154 12.9172C23.1216 12.933 23.1309 12.9473 23.1427 12.9594C23.1546 12.9715 23.1688 12.9811 23.1844 12.9875C23.2244 13.0084 23.2707 13.0139 23.3144 13.0029C23.3582 12.992 23.3964 12.9654 23.4219 12.9281C23.4414 12.894 23.4468 12.8537 23.4368 12.8157C23.4269 12.7777 23.4025 12.7452 23.3688 12.725C23.3226 12.7114 23.2732 12.7132 23.2281 12.7301C23.183 12.747 23.1446 12.7781 23.1188 12.8188V12.8188Z" fill="#42D4C6"/>
|
||||
<path d="M22.8844 12.4375C22.8344 12.4812 22.7625 12.5312 22.8 12.6031C22.821 12.6459 22.8319 12.693 22.8319 12.7406C22.8319 12.7883 22.821 12.8353 22.8 12.8781C22.793 12.8938 22.7898 12.9109 22.7907 12.9281C22.7915 12.9452 22.7964 12.9619 22.805 12.9768C22.8135 12.9918 22.8254 13.0045 22.8397 13.0139C22.8541 13.0234 22.8704 13.0293 22.8875 13.0312C22.9687 13.0531 23.075 13 23.0625 12.9219C23.0564 12.8772 23.0632 12.8317 23.082 12.7908C23.1008 12.7499 23.1309 12.7151 23.1687 12.6906C23.1956 12.6545 23.2101 12.6107 23.2101 12.5656C23.2101 12.5206 23.1956 12.4767 23.1687 12.4406C23.1258 12.4152 23.0769 12.4015 23.027 12.401C22.9771 12.4004 22.9279 12.413 22.8844 12.4375V12.4375Z" fill="#42D4C6"/>
|
||||
<path d="M23.5594 13.1C23.4532 13.0375 23.3688 13.0344 23.3313 13.1C23.3188 13.1258 23.3124 13.1541 23.3124 13.1828C23.3124 13.2115 23.3188 13.2398 23.3313 13.2656H23.6438C23.6512 13.2494 23.6549 13.2316 23.6545 13.2138C23.6541 13.1959 23.6497 13.1784 23.6416 13.1625C23.6335 13.1465 23.6219 13.1327 23.6076 13.1219C23.5934 13.111 23.5769 13.1036 23.5594 13.1V13.1Z" fill="#42D4C6"/>
|
||||
<path d="M25.5656 12.3969C25.5219 12.4594 25.5875 12.6187 25.6563 12.6187C25.725 12.6187 25.7813 12.4812 25.7813 12.4406C25.7792 12.4207 25.7717 12.4017 25.7596 12.3857C25.7475 12.3697 25.7312 12.3573 25.7125 12.35C25.6861 12.3422 25.6581 12.3426 25.6319 12.3509C25.6057 12.3593 25.5826 12.3753 25.5656 12.3969Z" fill="#42D4C6"/>
|
||||
<path d="M20.2438 11.8625C20.2402 11.833 20.2295 11.8048 20.2126 11.7803C20.1958 11.7558 20.1732 11.7358 20.1469 11.7219C20.1301 11.714 20.1119 11.7095 20.0934 11.7087C20.0748 11.7079 20.0563 11.7108 20.0389 11.7172C20.0214 11.7236 20.0054 11.7334 19.9918 11.746C19.9782 11.7586 19.9672 11.7738 19.9594 11.7906C19.9157 11.8656 19.9345 11.9844 20.0032 12.0125C20.0514 12.0313 20.105 12.0313 20.1532 12.0125C20.1464 12.0727 20.1632 12.1332 20.2001 12.1813C20.2199 12.2077 20.2471 12.2277 20.2782 12.2388C20.3093 12.2499 20.343 12.2516 20.3751 12.2437C20.4657 12.3094 20.5313 12.225 20.6126 12.1781C20.6062 12.133 20.5913 12.0896 20.5688 12.05C20.5726 12.0228 20.57 11.9952 20.5614 11.9691C20.5527 11.9431 20.5381 11.9195 20.5188 11.9C20.4851 11.8618 20.4388 11.837 20.3883 11.8301C20.3378 11.8233 20.2865 11.8347 20.2438 11.8625V11.8625Z" fill="#42D4C6"/>
|
||||
<path d="M19.2031 13.1875C19.2031 13.1875 19.1781 13.2281 19.1656 13.2531H19.3688C19.3643 13.2351 19.3545 13.2187 19.3406 13.2063C19.3 13.1688 19.2469 13.1406 19.2031 13.1875Z" fill="#42D4C6"/>
|
||||
<path d="M19.3969 12.875C19.3532 12.9438 19.3969 13.0531 19.5032 13.1344C19.5374 13.1528 19.577 13.1587 19.6151 13.1513C19.6533 13.1439 19.6877 13.1236 19.7126 13.0938C19.7354 13.0552 19.7459 13.0105 19.7426 12.9658C19.7392 12.9211 19.7222 12.8785 19.6938 12.8438C19.6482 12.8142 19.5939 12.8012 19.5398 12.8069C19.4858 12.8126 19.4354 12.8366 19.3969 12.875Z" fill="#42D4C6"/>
|
||||
<path d="M19.8063 12.8156C19.8253 12.8895 19.8593 12.9586 19.9062 13.0188C19.8562 13.0625 19.7969 13.1156 19.8438 13.2062C20.0219 13.2625 20.05 13.2344 20.0188 13.0563C20.0781 12.9813 20.1438 12.9344 20.1563 12.875C20.1659 12.8047 20.1551 12.7331 20.125 12.6688C20.0906 12.5906 19.9875 12.5844 19.9094 12.6688C19.8312 12.7531 19.8031 12.7625 19.8063 12.8156Z" fill="#42D4C6"/>
|
||||
<path d="M29.6094 10.4812C29.6094 10.3969 29.6094 10.3094 29.5094 10.3C29.4094 10.2906 29.3813 10.3656 29.3719 10.4469C29.3835 10.4668 29.3994 10.4839 29.4186 10.4968C29.4377 10.5097 29.4595 10.5181 29.4823 10.5215C29.5052 10.5248 29.5285 10.5228 29.5505 10.5159C29.5725 10.5089 29.5926 10.4971 29.6094 10.4812Z" fill="#42D4C6"/>
|
||||
<path d="M19.5094 12.7219C19.5094 12.7219 19.5282 12.6875 19.5094 12.675C19.5014 12.6675 19.4907 12.6634 19.4797 12.6634C19.4687 12.6634 19.4581 12.6675 19.4501 12.675C19.4434 12.6829 19.4398 12.6928 19.4398 12.7031C19.4398 12.7134 19.4434 12.7234 19.4501 12.7312C19.4501 12.7312 19.5001 12.7281 19.5094 12.7219Z" fill="#42D4C6"/>
|
||||
<path d="M20.725 13.2281C20.6998 13.2303 20.6758 13.2401 20.6562 13.2562H20.8375C20.8029 13.2377 20.7643 13.2281 20.725 13.2281Z" fill="#42D4C6"/>
|
||||
<path d="M19.3688 12.1719C19.2563 12.1719 19.1094 12.1906 18.9625 12.2062C18.9438 12.2062 18.9188 12.25 18.9156 12.275C18.9089 12.3104 18.8952 12.3441 18.8754 12.3741C18.8555 12.4041 18.8299 12.4299 18.8 12.45C18.78 12.4638 18.7637 12.4822 18.7524 12.5037C18.7411 12.5252 18.7352 12.5491 18.7352 12.5734C18.7352 12.5977 18.7411 12.6216 18.7524 12.6431C18.7637 12.6646 18.78 12.6831 18.8 12.6969L18.8688 12.725C18.8482 12.7525 18.8371 12.786 18.8371 12.8203C18.8371 12.8547 18.8482 12.8881 18.8688 12.9156C18.8857 12.9359 18.9087 12.9502 18.9344 12.9563V12.9563C18.9224 13.0069 18.9233 13.0597 18.937 13.1099C18.9506 13.1601 18.9766 13.2061 19.0125 13.2437H19.075C19.1469 13.2125 19.2531 13.1 19.2437 13.0281C19.2404 12.9917 19.2246 12.9574 19.199 12.9313C19.1734 12.9051 19.1395 12.8885 19.1031 12.8844V12.8844C19.1222 12.861 19.1325 12.8317 19.1325 12.8016C19.1325 12.7714 19.1222 12.7422 19.1031 12.7188H19.1313C19.1597 12.6967 19.1929 12.6818 19.2283 12.6753C19.2636 12.6688 19.3 12.6708 19.3344 12.6813C19.3829 12.6887 19.4325 12.6799 19.4755 12.6562C19.5185 12.6324 19.5524 12.5951 19.5719 12.55C19.5658 12.4764 19.5447 12.4048 19.5097 12.3398C19.4748 12.2747 19.4268 12.2176 19.3688 12.1719Z" fill="#42D4C6"/>
|
||||
<path d="M18.3 8.58437V8.96561C18.3226 8.9678 18.3452 8.96335 18.3652 8.9528C18.3852 8.94224 18.4017 8.92605 18.4125 8.90624C18.4476 8.85978 18.4639 8.80179 18.4581 8.74387C18.4523 8.68594 18.4249 8.63233 18.3813 8.59374C18.3563 8.58082 18.3274 8.57749 18.3 8.58437V8.58437Z" fill="#42D4C6"/>
|
||||
<path d="M18.4001 12.0156C18.3673 12.0072 18.3328 12.0072 18.3 12.0156V12.375C18.3731 12.3513 18.4337 12.2996 18.4688 12.2312C18.4835 12.1928 18.4847 12.1506 18.4722 12.1114C18.4597 12.0722 18.4343 12.0384 18.4001 12.0156V12.0156Z" fill="#42D4C6"/>
|
||||
<path d="M18.9844 11.3938C18.9594 11.3938 18.9156 11.3938 18.9031 11.4156C18.8649 11.4749 18.8305 11.5364 18.8 11.6C18.6375 11.6344 18.5344 11.725 18.5563 11.825C18.5726 11.8743 18.6058 11.9164 18.65 11.9438C18.6333 11.9563 18.6194 11.9723 18.6094 11.9906C18.5935 12.0264 18.5902 12.0665 18.5998 12.1045C18.6094 12.1424 18.6315 12.1761 18.6625 12.2C18.7036 12.2083 18.7461 12.2054 18.7857 12.1917C18.8252 12.1779 18.8604 12.1538 18.8875 12.1219C18.895 12.0762 18.8849 12.0293 18.8594 11.9906C18.9563 11.9656 18.975 11.9 18.9438 11.6781C19.0313 11.6562 19.1281 11.6469 19.1094 11.525C19.108 11.4917 19.0946 11.46 19.0716 11.4359C19.0486 11.4117 19.0176 11.3968 18.9844 11.3938V11.3938Z" fill="#42D4C6"/>
|
||||
<path d="M18.3469 13.0938C18.3354 13.0784 18.3228 13.0638 18.3094 13.05V13.2469H18.6594C18.6782 13.175 18.6813 13.0937 18.6594 13.0656C18.6136 13.0294 18.5557 13.0122 18.4976 13.0174C18.4395 13.0227 18.3856 13.05 18.3469 13.0938V13.0938Z" fill="#42D4C6"/>
|
||||
<path d="M25.9 13.0844C25.856 13.0439 25.8001 13.0187 25.7407 13.0125C25.7374 12.9962 25.7307 12.9808 25.721 12.9673C25.7113 12.9538 25.6988 12.9426 25.6844 12.9344C25.6693 12.9218 25.6515 12.9126 25.6324 12.9077C25.6134 12.9027 25.5934 12.9019 25.574 12.9055C25.5547 12.9091 25.5363 12.9169 25.5203 12.9284C25.5042 12.9398 25.4909 12.9547 25.4813 12.9719C25.4727 12.9911 25.4683 13.0118 25.4683 13.0328C25.4683 13.0538 25.4727 13.0746 25.4813 13.0938C25.4813 13.0938 25.4594 13.0938 25.4469 13.1188C25.4107 13.158 25.384 13.205 25.3688 13.2562H25.9938C25.9921 13.2224 25.9828 13.1893 25.9666 13.1596C25.9503 13.1298 25.9276 13.1041 25.9 13.0844Z" fill="#42D4C6"/>
|
||||
<path d="M20.6188 11.625C20.5961 11.626 20.5738 11.6321 20.5538 11.6429C20.5338 11.6537 20.5165 11.669 20.5032 11.6875C20.4855 11.7167 20.4798 11.7516 20.4874 11.7848C20.495 11.818 20.5152 11.847 20.5438 11.8656C20.5794 11.8844 20.6207 11.889 20.6595 11.8786C20.6984 11.8682 20.7318 11.8434 20.7532 11.8094C20.7751 11.7719 20.7126 11.625 20.6188 11.625Z" fill="#42D4C6"/>
|
||||
<path d="M24.3875 13.2562H24.6219C24.5467 13.2258 24.4627 13.2258 24.3875 13.2562Z" fill="#42D4C6"/>
|
||||
<path d="M23.8219 13.2562H23.9282C23.8932 13.2484 23.8569 13.2484 23.8219 13.2562V13.2562Z" fill="#42D4C6"/>
|
||||
<path d="M25.3907 12.4719C25.3447 12.4491 25.2915 12.4456 25.2429 12.462C25.1943 12.4784 25.1541 12.5134 25.1313 12.5594C25.1315 12.6089 25.1435 12.6578 25.1664 12.7018C25.1892 12.7458 25.2221 12.7837 25.2625 12.8125C25.3375 12.8469 25.4063 12.8125 25.4469 12.7187C25.4875 12.625 25.475 12.5063 25.3907 12.4719Z" fill="#42D4C6"/>
|
||||
<path d="M24.9063 12.1375C24.883 12.1763 24.8743 12.2222 24.8817 12.2668C24.8892 12.3115 24.9123 12.3521 24.9469 12.3813H24.9656C24.977 12.3979 24.992 12.4118 25.0094 12.4219C25.0492 12.4444 25.0957 12.4524 25.1407 12.4444C25.1858 12.4364 25.2266 12.413 25.2563 12.3781C25.2771 12.3344 25.2837 12.2852 25.275 12.2375C25.279 12.2023 25.2721 12.1667 25.2554 12.1354C25.2386 12.1042 25.2128 12.0788 25.1813 12.0625C25.1589 12.0473 25.1335 12.0371 25.1067 12.0326C25.08 12.0281 25.0526 12.0295 25.0265 12.0367C25.0004 12.0438 24.9761 12.0565 24.9553 12.0739C24.9346 12.0913 24.9178 12.113 24.9063 12.1375V12.1375Z" fill="#42D4C6"/>
|
||||
<path d="M24.7094 13.2562H24.9313C24.9313 13.2562 24.9313 13.2375 24.9094 13.2344C24.8779 13.217 24.8417 13.2098 24.8059 13.2137C24.7702 13.2176 24.7364 13.2325 24.7094 13.2562Z" fill="#42D4C6"/>
|
||||
<path d="M20.5781 12.5031C20.5525 12.4969 20.5257 12.4969 20.5 12.5031C20.4438 12.2844 20.4031 12.2781 20.2156 12.3687C20.2087 12.3964 20.2073 12.4253 20.2115 12.4535C20.2158 12.4818 20.2256 12.5089 20.2404 12.5333C20.2553 12.5577 20.2748 12.579 20.2979 12.5958C20.321 12.6126 20.3472 12.6246 20.375 12.6312C20.3713 12.6514 20.3726 12.6721 20.3785 12.6917C20.3845 12.7112 20.3951 12.7291 20.4094 12.7437C20.45 13.025 20.6219 13.0875 20.8969 12.9219C20.9186 12.9336 20.9386 12.9483 20.9563 12.9656C20.9705 12.9802 20.9875 12.9917 21.0063 12.9996C21.0251 13.0075 21.0453 13.0116 21.0656 13.0116C21.086 13.0116 21.1062 13.0075 21.125 12.9996C21.1437 12.9917 21.1608 12.9802 21.175 12.9656C21.2055 12.9426 21.2284 12.9108 21.2407 12.8746C21.2529 12.8384 21.254 12.7993 21.2438 12.7625C21.2188 12.55 21.1469 12.4844 20.9531 12.5125C20.8469 12.5125 20.7438 12.5406 20.6406 12.55C20.6254 12.5281 20.6034 12.5117 20.5781 12.5031V12.5031Z" fill="#42D4C6"/>
|
||||
<path d="M22.0625 13.1188C22.0457 13.1085 22.027 13.1016 22.0076 13.0986C21.9881 13.0955 21.9682 13.0964 21.949 13.101C21.9299 13.1057 21.9118 13.114 21.8959 13.1257C21.88 13.1373 21.8665 13.1519 21.8563 13.1688C21.8531 13.1842 21.8531 13.2002 21.8563 13.2156C21.8353 13.2039 21.8116 13.1977 21.7875 13.1977C21.7634 13.1977 21.7398 13.2039 21.7188 13.2156C21.6935 13.2262 21.6702 13.2409 21.65 13.2594H22.1813C22.174 13.2282 22.1594 13.1993 22.1387 13.1748C22.1181 13.1504 22.092 13.1312 22.0625 13.1188V13.1188Z" fill="#42D4C6"/>
|
||||
<path d="M22.5156 13.1437C22.5008 13.1367 22.4846 13.1329 22.4682 13.1327C22.4518 13.1324 22.4355 13.1356 22.4204 13.1421C22.4053 13.1486 22.3918 13.1583 22.3807 13.1704C22.3697 13.1825 22.3613 13.1969 22.3562 13.2125C22.3547 13.227 22.3547 13.2417 22.3562 13.2562H22.6187C22.6146 13.2294 22.6026 13.2044 22.5842 13.1844C22.5659 13.1643 22.542 13.1502 22.5156 13.1437Z" fill="#42D4C6"/>
|
||||
<path d="M18.4031 12.875C18.4219 12.8344 18.4438 12.75 18.4031 12.7281C18.3806 12.7226 18.357 12.7226 18.3344 12.7281C18.3252 12.7074 18.3099 12.69 18.2906 12.6781V12.95L18.3188 12.9094C18.3499 12.9076 18.3796 12.8955 18.4031 12.875V12.875Z" fill="#42D4C6"/>
|
||||
<path d="M21.9125 11.9156C21.8253 11.9046 21.7371 11.9046 21.65 11.9156C21.6076 11.9143 21.5656 11.9247 21.5286 11.9456C21.4917 11.9665 21.4613 11.9973 21.4406 12.0344C21.4248 12.0531 21.4143 12.0758 21.4105 12.1001C21.4066 12.1243 21.4095 12.1491 21.4187 12.1719C21.4187 12.2375 21.4687 12.3562 21.5875 12.3312C21.6036 12.3167 21.6215 12.3041 21.6406 12.2937C21.664 12.2901 21.6864 12.2816 21.7062 12.2687C21.7906 12.2687 21.8469 12.3187 21.9563 12.2687C21.9778 12.2582 21.9969 12.2433 22.0125 12.225C22.0412 12.2035 22.0624 12.1736 22.0732 12.1395C22.084 12.1053 22.084 12.0687 22.0729 12.0346C22.0619 12.0005 22.0405 11.9707 22.0118 11.9494C21.983 11.9281 21.9483 11.9163 21.9125 11.9156V11.9156Z" fill="#42D4C6"/>
|
||||
<path d="M27.2626 8.12811C27.2337 8.14674 27.2091 8.17126 27.1904 8.20006C27.1717 8.22885 27.1592 8.26127 27.1539 8.2952C27.1486 8.32913 27.1506 8.3638 27.1596 8.39694C27.1686 8.43007 27.1845 8.46094 27.2063 8.4875C27.3251 8.65 27.4688 8.48748 27.5032 8.62811C27.5376 8.76873 27.4063 8.73124 27.4688 8.90936C27.5313 9.08749 27.7157 9.1375 27.7969 9.03437C27.8782 8.93125 27.8282 8.82811 27.8532 8.80936C27.8782 8.79061 28.0125 8.74373 27.975 8.64686C27.9 8.43748 27.7313 8.55311 27.6907 8.49999C27.6501 8.44686 27.6438 8.30623 27.5907 8.21873C27.5777 8.18879 27.5581 8.16215 27.5335 8.14074C27.5088 8.11933 27.4797 8.10371 27.4483 8.09502C27.4168 8.08633 27.3838 8.08479 27.3517 8.09052C27.3195 8.09625 27.2891 8.10909 27.2626 8.12811V8.12811Z" fill="#42D4C6"/>
|
||||
<path d="M22.2437 9.4375C22.224 9.47121 22.2182 9.51128 22.2275 9.54922C22.2368 9.58715 22.2606 9.61996 22.2937 9.64064L22.3219 9.66562C22.3279 9.70295 22.348 9.73654 22.3781 9.75939H22.4094C22.4248 9.7944 22.4502 9.82407 22.4825 9.84465C22.5147 9.86522 22.5524 9.87579 22.5906 9.87501C22.6625 9.87501 22.7687 9.72812 22.7656 9.64687C22.7625 9.56562 22.7656 9.48751 22.6562 9.46564C22.5469 9.44376 22.5031 9.42188 22.4281 9.40001C22.4146 9.38747 22.3984 9.37833 22.3807 9.37334C22.363 9.36835 22.3443 9.36765 22.3263 9.37132C22.3082 9.37499 22.2913 9.38291 22.277 9.39442C22.2626 9.40593 22.2512 9.4207 22.2437 9.4375V9.4375Z" fill="#42D4C6"/>
|
||||
<path d="M24.8563 6.98125C24.7895 6.95285 24.715 6.94853 24.6454 6.96906C24.5759 6.98958 24.5156 7.03366 24.475 7.09374C24.4554 7.14829 24.4566 7.2082 24.4785 7.26187C24.5005 7.31555 24.5415 7.35919 24.5937 7.38436C24.6245 7.40048 24.6582 7.41004 24.6928 7.41242C24.7274 7.4148 24.7621 7.40997 24.7947 7.39821C24.8273 7.38646 24.8572 7.36804 24.8823 7.34414C24.9074 7.32024 24.9273 7.29137 24.9406 7.25938C24.9541 7.23575 24.9627 7.2096 24.9657 7.18257C24.9687 7.15553 24.9662 7.12817 24.9583 7.10213C24.9504 7.0761 24.9373 7.05195 24.9198 7.03116C24.9022 7.01037 24.8806 6.99339 24.8563 6.98125V6.98125Z" fill="#42D4C6"/>
|
||||
<path d="M24.5282 9.39061C24.5452 9.39699 24.5633 9.39986 24.5814 9.39904C24.5996 9.39822 24.6173 9.39373 24.6337 9.38584C24.65 9.37796 24.6646 9.36683 24.6766 9.35315C24.6885 9.33947 24.6976 9.32352 24.7032 9.30625V9.30625C24.7383 9.33579 24.7801 9.35619 24.825 9.36563C24.8906 9.37144 24.9512 9.40287 24.9938 9.45312C25.0294 9.48613 25.0723 9.51039 25.1189 9.52396C25.1656 9.53752 25.2147 9.54001 25.2625 9.53124C25.3099 9.52191 25.3536 9.49888 25.388 9.465C25.4225 9.43111 25.4462 9.38787 25.4563 9.34062C25.4563 9.34062 25.4563 9.32187 25.4563 9.31562C25.4771 9.37148 25.5185 9.4173 25.5719 9.44375C25.65 9.475 25.7407 9.42188 25.7938 9.30938C25.812 9.2689 25.8167 9.2236 25.8071 9.18025C25.7975 9.1369 25.7742 9.0978 25.7407 9.06875C25.6892 9.05047 25.6333 9.0491 25.581 9.06484C25.5287 9.08058 25.4828 9.1126 25.45 9.15624C25.4473 9.16859 25.4473 9.18138 25.45 9.19374C25.4306 9.1591 25.4027 9.13006 25.3688 9.10937C25.2832 9.05261 25.1798 9.02925 25.0782 9.04374C25.04 9.04697 25.0018 9.03823 24.9688 9.01874C24.9467 8.99913 24.92 8.98536 24.8912 8.97863C24.8625 8.97189 24.8324 8.97242 24.8039 8.98017C24.7754 8.98792 24.7493 9.00264 24.7279 9.02301C24.7064 9.04338 24.6904 9.06876 24.6813 9.09686C24.6708 9.08299 24.6568 9.0722 24.6407 9.06562C24.6041 9.06011 24.5667 9.06777 24.5352 9.08723C24.5038 9.10669 24.4802 9.13668 24.4688 9.17188C24.4482 9.20889 24.443 9.25245 24.454 9.2933C24.4651 9.33415 24.4917 9.36907 24.5282 9.39061V9.39061Z" fill="#42D4C6"/>
|
||||
<path d="M24.7 8.475C24.6888 8.50846 24.69 8.54485 24.7034 8.5775C24.7168 8.61016 24.7415 8.63689 24.7729 8.65283C24.8044 8.66876 24.8406 8.67282 24.8749 8.66427C24.9091 8.65572 24.9391 8.63514 24.9594 8.60627C24.9764 8.57336 24.98 8.53518 24.9695 8.49967C24.9591 8.46415 24.9353 8.43404 24.9032 8.41563C24.8678 8.39963 24.8279 8.39684 24.7906 8.40773C24.7533 8.41862 24.7212 8.44248 24.7 8.475V8.475Z" fill="#42D4C6"/>
|
||||
<path d="M22.8219 8.45938C22.8318 8.44634 22.8371 8.43042 22.8371 8.41406C22.8371 8.3977 22.8318 8.3818 22.8219 8.36876C22.7937 8.34689 22.75 8.36876 22.7313 8.38751C22.7125 8.40626 22.7031 8.48126 22.7313 8.50001C22.7594 8.51876 22.8062 8.48125 22.8219 8.45938Z" fill="#42D4C6"/>
|
||||
<path d="M29.3063 9.77501C29.29 9.76664 29.2721 9.7617 29.2539 9.76049C29.2356 9.75928 29.2172 9.76184 29.2 9.76799C29.1827 9.77413 29.1668 9.78374 29.1534 9.79624C29.14 9.80873 29.1293 9.82383 29.1219 9.84062C29.1161 9.85618 29.1135 9.87278 29.1143 9.88939C29.1151 9.906 29.1193 9.92226 29.1266 9.93719C29.1339 9.95212 29.1442 9.96539 29.1568 9.97619C29.1695 9.987 29.1842 9.99509 29.2001 10C29.235 10.0116 29.2729 10.0097 29.3065 9.99466C29.3401 9.97961 29.3668 9.95252 29.3813 9.91874C29.3866 9.90442 29.3888 9.88915 29.3879 9.8739C29.3869 9.85866 29.3828 9.84379 29.3757 9.83024C29.3686 9.8167 29.3588 9.8048 29.3469 9.79528C29.3349 9.78577 29.3211 9.77886 29.3063 9.77501V9.77501Z" fill="#42D4C6"/>
|
||||
<path d="M25.1563 8.36562C25.1235 8.38592 25.1002 8.4184 25.0914 8.45591C25.0826 8.49342 25.0891 8.53288 25.1094 8.56562C25.1297 8.59836 25.1622 8.62168 25.1997 8.63047C25.2372 8.63926 25.2767 8.63279 25.3094 8.61249C25.3287 8.59966 25.3446 8.58225 25.3556 8.56181C25.3666 8.54136 25.3723 8.5185 25.3723 8.4953C25.3723 8.47209 25.3666 8.44926 25.3556 8.42881C25.3446 8.40836 25.3287 8.39094 25.3094 8.37811C25.2861 8.3657 25.2605 8.35819 25.2341 8.35604C25.2078 8.35389 25.1813 8.35715 25.1563 8.36562Z" fill="#42D4C6"/>
|
||||
<path d="M18.6687 6.52187C18.7562 6.52187 18.8531 6.52189 18.875 6.41876C18.8781 6.40858 18.8781 6.39768 18.875 6.3875C18.9166 6.39675 18.9598 6.39737 19.0017 6.38931C19.0436 6.38125 19.0835 6.36468 19.1187 6.34064C19.1443 6.31488 19.1587 6.28006 19.1587 6.24376C19.1587 6.20747 19.1443 6.17262 19.1187 6.14687C19.0911 6.10331 19.0474 6.07236 18.9971 6.06067C18.9469 6.04899 18.894 6.0575 18.85 6.08438C18.825 6.10513 18.8046 6.13085 18.7901 6.1599C18.7755 6.18894 18.7672 6.22069 18.7656 6.25313C18.7418 6.24709 18.7168 6.248 18.6936 6.25576C18.6703 6.26351 18.6498 6.27779 18.6344 6.29688C18.5812 6.37188 18.6281 6.44375 18.6687 6.52187Z" fill="#42D4C6"/>
|
||||
<path d="M25.5813 7.68125C25.5813 7.575 25.4438 7.55626 25.3938 7.57188C25.3438 7.58751 25.3938 7.825 25.4313 7.85312C25.4688 7.88125 25.5813 7.7875 25.5813 7.68125Z" fill="#42D4C6"/>
|
||||
<path d="M19.0157 5.75625C19.064 5.7221 19.098 5.67137 19.1113 5.61373C19.1245 5.55609 19.1161 5.49557 19.0876 5.44375C19.0464 5.39916 18.9904 5.37109 18.93 5.36477C18.8696 5.35844 18.809 5.37429 18.7595 5.40938C18.7244 5.4381 18.7021 5.47948 18.6975 5.52454C18.6928 5.5696 18.7061 5.6147 18.7345 5.65001C18.7938 5.74376 18.9501 5.8 19.0157 5.75625Z" fill="#42D4C6"/>
|
||||
<path d="M26.7719 13.0969C26.7273 13.1426 26.6922 13.1968 26.6688 13.2562H27.1563C27.1426 13.1979 27.1109 13.1455 27.0656 13.1062C27.0234 13.0752 26.9727 13.0576 26.9202 13.0559C26.8678 13.0543 26.8161 13.0685 26.7719 13.0969V13.0969Z" fill="#42D4C6"/>
|
||||
<path d="M27.6188 6.14375C27.6193 6.12877 27.6158 6.11392 27.6087 6.10074C27.6015 6.08756 27.591 6.0765 27.5782 6.06873C27.5624 6.06682 27.5463 6.06897 27.5315 6.07499C27.5168 6.081 27.5038 6.09069 27.4938 6.10312C27.4938 6.12187 27.4751 6.18748 27.5282 6.20623C27.5813 6.22498 27.6094 6.16875 27.6188 6.14375Z" fill="#42D4C6"/>
|
||||
<path d="M22.425 8.54062C22.4531 8.59062 22.5125 8.54062 22.5375 8.54062C22.5625 8.54062 22.5594 8.475 22.5375 8.46875C22.5263 8.45842 22.5128 8.45078 22.4982 8.44645C22.4836 8.44212 22.4681 8.4412 22.4531 8.44374C22.4377 8.45396 22.4265 8.4693 22.4213 8.48704C22.4162 8.50477 22.4175 8.52375 22.425 8.54062V8.54062Z" fill="#42D4C6"/>
|
||||
<path d="M20.5219 7.66875C20.6156 7.90625 20.7625 7.91563 20.9344 7.70312H20.9875C21.0562 7.73125 21.1 7.70313 21.1406 7.64688C21.1576 7.62497 21.1668 7.59804 21.1668 7.57032C21.1668 7.5426 21.1576 7.51567 21.1406 7.49376C21.0875 7.38126 21.0281 7.35313 20.9344 7.39375C20.9344 7.30625 20.8656 7.26875 20.7813 7.2375C20.7156 7.29688 20.6312 7.3375 20.6719 7.43438C20.6837 7.46233 20.7046 7.48545 20.7312 7.49999L20.5906 7.57812C20.475 7.40624 20.4531 7.40313 20.3281 7.53125C20.35 7.65 20.4156 7.68125 20.5219 7.66875Z" fill="#42D4C6"/>
|
||||
<path d="M20.6688 5.56561C20.7062 5.54028 20.7338 5.50286 20.7469 5.45962C20.7599 5.41637 20.7578 5.36993 20.7407 5.32811C20.713 5.28809 20.6727 5.25861 20.6262 5.24443C20.5796 5.23025 20.5297 5.2322 20.4844 5.24998C20.4094 5.29061 20.4063 5.42186 20.4844 5.52811C20.5072 5.55312 20.5373 5.57024 20.5705 5.57698C20.6036 5.58372 20.6381 5.57973 20.6688 5.56561Z" fill="#42D4C6"/>
|
||||
<path d="M19.0906 4.14687C19.1203 4.14759 19.1492 4.13802 19.1726 4.11979C19.196 4.10156 19.2123 4.07579 19.2188 4.04687C19.2188 4.026 19.2134 4.00549 19.203 3.9874C19.1926 3.96931 19.1776 3.95427 19.1595 3.94382C19.1415 3.93336 19.1209 3.92785 19.1001 3.92783C19.0792 3.92782 19.0587 3.93331 19.0406 3.94374C19.0257 3.95857 19.0148 3.97703 19.0091 3.99732C19.0034 4.0176 19.003 4.03901 19.008 4.05948C19.0131 4.07994 19.0233 4.09875 19.0378 4.11407C19.0523 4.12938 19.0705 4.14069 19.0906 4.14687V4.14687Z" fill="#42D4C6"/>
|
||||
<path d="M22.5594 7.43124C22.5594 7.43124 22.5844 7.35937 22.5594 7.3375C22.5344 7.31562 22.4781 7.36248 22.4625 7.38436C22.4553 7.39612 22.4515 7.40964 22.4515 7.42342C22.4515 7.4372 22.4553 7.45072 22.4625 7.46248C22.4938 7.47498 22.5406 7.44999 22.5594 7.43124Z" fill="#42D4C6"/>
|
||||
<path d="M18.7438 4.56561C18.7042 4.60602 18.6763 4.65644 18.663 4.71148C18.6498 4.76652 18.6518 4.82411 18.6688 4.87811C18.674 4.89855 18.6833 4.91771 18.6962 4.93437C18.7091 4.95104 18.7253 4.96487 18.7438 4.97498C18.7723 4.99179 18.8038 5.00277 18.8366 5.00731C18.8693 5.01185 18.9026 5.00985 18.9346 5.00142C18.9666 4.99299 18.9965 4.97831 19.0228 4.95822C19.049 4.93812 19.0711 4.91302 19.0875 4.88436C19.0875 4.85936 19.1219 4.83749 19.1376 4.80937C19.1876 4.84374 19.2282 4.87812 19.2751 4.90624C19.2904 4.91873 19.3083 4.92767 19.3275 4.93243C19.3468 4.93718 19.3668 4.93763 19.3862 4.93375C19.4056 4.92986 19.4239 4.92174 19.4398 4.90996C19.4557 4.89818 19.4688 4.88304 19.4782 4.86561C19.5059 4.83305 19.5227 4.79254 19.526 4.7499C19.5294 4.70725 19.5192 4.66463 19.4969 4.62811C19.4774 4.59334 19.4468 4.56612 19.4099 4.55083C19.3731 4.53553 19.3322 4.53305 19.2938 4.54375C19.2344 4.55697 19.1768 4.57689 19.1219 4.60313C19.0969 4.60313 19.075 4.56874 19.05 4.55624C19.0038 4.52725 18.95 4.51265 18.8955 4.51432C18.841 4.51599 18.7882 4.53384 18.7438 4.56561V4.56561Z" fill="#42D4C6"/>
|
||||
<path d="M21.7781 9.19687C21.8444 9.20762 21.9123 9.19431 21.9696 9.15935C22.0269 9.12439 22.0699 9.07009 22.0906 9.00624C22.1028 8.92558 22.085 8.84324 22.0407 8.77475C21.9964 8.70626 21.9286 8.65633 21.85 8.63437C21.7375 8.63437 21.7 8.7625 21.7375 8.8375C21.775 8.9125 21.7375 8.89061 21.7 8.95936C21.6829 8.97818 21.6711 9.00121 21.6659 9.02606C21.6606 9.05092 21.662 9.07673 21.6699 9.10087C21.6779 9.12501 21.6921 9.1466 21.7111 9.16347C21.7301 9.18033 21.7532 9.19185 21.7781 9.19687V9.19687Z" fill="#42D4C6"/>
|
||||
<path d="M22.1812 9.18124C22.1746 9.17591 22.1663 9.17302 22.1578 9.17302C22.1493 9.17302 22.141 9.17591 22.1344 9.18124C22.1271 9.1888 22.123 9.19889 22.123 9.20937C22.123 9.21986 22.1271 9.22992 22.1344 9.23749C22.1562 9.23749 22.1812 9.23749 22.1875 9.21874C22.1904 9.2059 22.1882 9.19243 22.1812 9.18124Z" fill="#42D4C6"/>
|
||||
<path d="M19.0719 8.5875C19.0658 8.57319 19.0566 8.56038 19.045 8.55002C19.0334 8.53965 19.0196 8.53196 19.0047 8.52749C18.9898 8.52302 18.9741 8.52189 18.9587 8.52415C18.9433 8.52642 18.9286 8.53204 18.9156 8.54061C18.8844 8.57425 18.8619 8.61502 18.85 8.65937C18.8304 8.63512 18.802 8.61956 18.771 8.61605C18.7401 8.61254 18.7089 8.62137 18.6844 8.64062C18.6657 8.65356 18.6504 8.67083 18.6399 8.69097C18.6293 8.71111 18.6238 8.7335 18.6238 8.75624C18.6238 8.77897 18.6293 8.80137 18.6399 8.82151C18.6504 8.84165 18.6657 8.85892 18.6844 8.87186C18.7594 8.92811 18.7438 8.99374 18.7469 9.07187C18.5344 9.07187 18.4625 9.19374 18.525 9.36562C18.5304 9.38306 18.5377 9.39983 18.5469 9.41561C18.5538 9.43899 18.5667 9.46017 18.5843 9.47706C18.6019 9.49396 18.6235 9.50598 18.6472 9.51197C18.6708 9.51796 18.6956 9.51771 18.7191 9.51123C18.7426 9.50474 18.764 9.49225 18.7813 9.47499C18.8212 9.45045 18.8562 9.41866 18.8844 9.38124C18.9252 9.39445 18.9691 9.39462 19.0099 9.38174C19.0508 9.36885 19.0867 9.34357 19.1125 9.30937C19.129 9.31166 19.1458 9.31063 19.1619 9.30634C19.178 9.30204 19.1931 9.29457 19.2063 9.28437C19.2425 9.26825 19.2729 9.24121 19.293 9.20704C19.3132 9.17287 19.3222 9.13328 19.3188 9.09374C19.2782 8.81249 19.2156 8.75624 18.9344 8.75311H18.9125C18.9489 8.74956 18.9846 8.74114 19.0188 8.72811C19.0337 8.72545 19.0477 8.71896 19.0593 8.70928C19.071 8.6996 19.0799 8.68706 19.0853 8.67289C19.0906 8.65871 19.0922 8.6434 19.0899 8.62843C19.0875 8.61346 19.0813 8.59935 19.0719 8.5875V8.5875Z" fill="#42D4C6"/>
|
||||
<path d="M22.0562 9.64374C22.0422 9.65232 22.0301 9.66367 22.0206 9.67706C22.0111 9.69045 22.0044 9.70564 22.0008 9.72169C21.9973 9.73775 21.9971 9.75434 22.0002 9.77048C22.0033 9.78662 22.0096 9.80199 22.0187 9.81563C22.0392 9.842 22.0686 9.86002 22.1013 9.86635C22.1341 9.87267 22.1681 9.86687 22.1969 9.85C22.2119 9.84239 22.225 9.83161 22.2354 9.81839C22.2458 9.80518 22.2532 9.78986 22.2571 9.7735C22.2609 9.75713 22.2612 9.74011 22.2578 9.72364C22.2544 9.70717 22.2475 9.69165 22.2375 9.67813C22.2161 9.65205 22.1862 9.63431 22.1531 9.62802C22.12 9.62174 22.0857 9.6273 22.0562 9.64374V9.64374Z" fill="#42D4C6"/>
|
||||
<path d="M22.0626 8.22499C22.0669 8.21193 22.0668 8.1978 22.0623 8.1848C22.0577 8.17181 22.0491 8.16068 22.0376 8.15312C22.0157 8.15312 21.972 8.17187 21.9532 8.19062C21.9345 8.20937 21.9532 8.26874 21.972 8.28437C21.9907 8.29999 22.0501 8.24999 22.0626 8.22499Z" fill="#42D4C6"/>
|
||||
<path d="M21.9188 8.55625C21.9338 8.56842 21.9526 8.57507 21.972 8.57507C21.9913 8.57507 22.01 8.56842 22.0251 8.55625C22.0343 8.54999 22.042 8.54184 22.0478 8.53235C22.0536 8.52286 22.0573 8.51223 22.0586 8.5012C22.06 8.49017 22.0589 8.47898 22.0556 8.46837C22.0523 8.45777 22.0468 8.44798 22.0394 8.43969C22.032 8.43139 22.0229 8.42478 22.0127 8.42027C22.0026 8.41577 21.9916 8.41349 21.9804 8.41358C21.9693 8.41366 21.9584 8.41612 21.9483 8.42079C21.9382 8.42545 21.9292 8.43221 21.9219 8.44062C21.9137 8.44773 21.907 8.45648 21.9023 8.46631C21.8977 8.47615 21.8951 8.48686 21.8948 8.49775C21.8945 8.50864 21.8965 8.51947 21.9006 8.52954C21.9048 8.53962 21.911 8.54871 21.9188 8.55625Z" fill="#42D4C6"/>
|
||||
<path d="M22.7219 9.29999C22.7687 9.31561 22.8937 9.33124 22.9219 9.29999C22.95 9.26874 22.8594 9.15937 22.8187 9.12812C22.7781 9.09687 22.7187 9.10936 22.6906 9.17498C22.6625 9.24061 22.6625 9.27811 22.7219 9.29999Z" fill="#42D4C6"/>
|
||||
<path d="M26.9094 8.12187C26.9155 8.09902 26.9164 8.07511 26.9121 8.05187C26.9077 8.02863 26.8983 8.00664 26.8844 7.9875C26.8594 7.95938 26.7251 7.96562 26.7001 8.02187C26.6877 8.05254 26.688 8.08688 26.7009 8.11733C26.7137 8.14779 26.7382 8.17189 26.7688 8.18438C26.7817 8.19221 26.7964 8.19679 26.8114 8.19775C26.8265 8.1987 26.8416 8.19599 26.8554 8.18985C26.8692 8.18371 26.8814 8.17434 26.8908 8.1625C26.9002 8.15066 26.9066 8.13672 26.9094 8.12187V8.12187Z" fill="#42D4C6"/>
|
||||
<path d="M25.1938 10.35C25.1655 10.2993 25.1216 10.2592 25.0687 10.2355C25.0158 10.2119 24.9566 10.206 24.9 10.2187C24.8156 10.2375 24.7469 10.2656 24.6719 10.1875C24.5969 10.1094 24.55 10.1875 24.5 10.2312C24.5 10.3375 24.5656 10.3812 24.6531 10.3687C24.675 10.4281 24.6906 10.4781 24.7063 10.525C24.6862 10.5322 24.6688 10.5453 24.6562 10.5625C24.6408 10.5914 24.6356 10.6247 24.6412 10.6569C24.6469 10.6892 24.6632 10.7187 24.6875 10.7406C24.725 10.7656 24.7906 10.7406 24.8312 10.6781C24.8776 10.6993 24.9273 10.712 24.9781 10.7156C24.9318 10.753 24.8971 10.8029 24.8781 10.8594C24.8156 11.0437 24.8438 11.1219 24.9906 11.1906C25.0242 11.2054 25.0606 11.2128 25.0973 11.2123C25.1341 11.2118 25.1702 11.2034 25.2034 11.1877C25.2366 11.172 25.266 11.1493 25.2897 11.1213C25.3134 11.0932 25.3307 11.0604 25.3406 11.025C25.3424 11.0136 25.3424 11.002 25.3406 10.9906C25.3486 11.0279 25.364 11.0633 25.3861 11.0944C25.4081 11.1256 25.4362 11.1519 25.4688 11.1719C25.504 11.1787 25.5405 11.1758 25.5743 11.1637C25.608 11.1516 25.6379 11.1305 25.6608 11.1028C25.6837 11.0751 25.6987 11.0418 25.7042 11.0063C25.7097 10.9709 25.7056 10.9345 25.6923 10.9012C25.679 10.8679 25.6569 10.8387 25.6284 10.8168C25.5999 10.795 25.5661 10.7812 25.5304 10.7769C25.4948 10.7726 25.4586 10.778 25.4258 10.7925C25.3929 10.807 25.3646 10.8301 25.3438 10.8594V10.8906C25.3324 10.8516 25.3125 10.8157 25.2855 10.7854C25.2584 10.7551 25.225 10.7313 25.1875 10.7156C25.1595 10.7041 25.1301 10.6968 25.1 10.6937C25.1439 10.6494 25.1756 10.5944 25.192 10.5342C25.2084 10.474 25.2091 10.4105 25.1938 10.35V10.35Z" fill="#42D4C6"/>
|
||||
<path d="M20.1188 8.5375C20.1004 8.54905 20.0853 8.56522 20.075 8.58438V8.60313C20.0585 8.63652 20.0518 8.67393 20.0556 8.71099C20.0595 8.74806 20.0738 8.78325 20.0969 8.8125C20.1151 8.84155 20.1391 8.86654 20.1674 8.88591C20.1957 8.90529 20.2277 8.91862 20.2614 8.92511C20.295 8.9316 20.3297 8.9311 20.3632 8.92362C20.3966 8.91615 20.4282 8.90187 20.4559 8.88168C20.4836 8.86149 20.5069 8.83581 20.5242 8.80624C20.5416 8.77668 20.5527 8.74385 20.5568 8.70981C20.561 8.67577 20.5581 8.64124 20.5483 8.60838C20.5385 8.57551 20.5221 8.545 20.5 8.51875C20.425 8.41562 20.2781 8.41562 20.1469 8.51875L20.1188 8.5375Z" fill="#42D4C6"/>
|
||||
<path d="M24.175 10.1375C24.175 10.1375 24.1094 10.1375 24.1032 10.1375C24.0969 10.1375 24.1032 10.2094 24.1032 10.2281C24.1099 10.2355 24.1181 10.2414 24.1273 10.2455C24.1364 10.2495 24.1463 10.2516 24.1563 10.2516C24.1663 10.2516 24.1762 10.2495 24.1853 10.2455C24.1945 10.2414 24.2027 10.2355 24.2094 10.2281C24.2563 10.1969 24.1969 10.1562 24.175 10.1375Z" fill="#42D4C6"/>
|
||||
<path d="M24.0376 11.3125C24.0236 11.3021 24.0066 11.2965 23.9891 11.2965C23.9717 11.2965 23.9547 11.3021 23.9407 11.3125C23.8959 11.348 23.8667 11.3996 23.8594 11.4562C23.859 11.4651 23.8604 11.474 23.8635 11.4823C23.8666 11.4906 23.8714 11.4982 23.8775 11.5047C23.8837 11.5111 23.891 11.5162 23.8992 11.5197C23.9074 11.5232 23.9162 11.525 23.9251 11.525C23.9251 11.525 23.9251 11.5469 23.9251 11.5594C23.9329 11.6492 23.9698 11.7341 24.0301 11.8012C24.0904 11.8683 24.1709 11.9139 24.2595 11.9312C24.3142 11.9452 24.3715 11.945 24.4262 11.9308C24.4808 11.9166 24.531 11.8888 24.572 11.85C24.5974 11.8228 24.6119 11.7872 24.6126 11.75C24.6234 11.7544 24.635 11.7565 24.6467 11.7562C24.6584 11.7559 24.6699 11.7532 24.6805 11.7482C24.6911 11.7432 24.7005 11.736 24.7082 11.7272C24.7159 11.7184 24.7216 11.708 24.7251 11.6969C24.7251 11.6531 24.7501 11.6 24.7251 11.5687C24.7001 11.5375 24.6719 11.55 24.6344 11.5687C24.6315 11.5575 24.6315 11.5456 24.6344 11.5344C24.6435 11.5156 24.6498 11.4956 24.6532 11.475C24.6734 11.4874 24.6967 11.494 24.7204 11.494C24.7441 11.494 24.7674 11.4874 24.7876 11.475C24.8501 11.45 24.8907 11.3969 24.8626 11.3344C24.8345 11.2719 24.7969 11.2219 24.7532 11.2125C24.7321 11.2065 24.7096 11.2072 24.6889 11.2145C24.6682 11.2217 24.6503 11.2352 24.6376 11.2531C24.5918 11.1833 24.5216 11.1331 24.4407 11.1125C24.4407 11.1125 24.4251 11.0937 24.4188 11.0937H24.3938H24.3751C24.3118 11.0815 24.2463 11.0892 24.1876 11.1156C24.1505 11.1365 24.1181 11.1647 24.0923 11.1986C24.0665 11.2324 24.0479 11.2712 24.0376 11.3125V11.3125Z" fill="#42D4C6"/>
|
||||
<path d="M29.6813 12.0875C29.7438 11.8969 29.7 11.8531 29.5344 11.7563C29.506 11.742 29.4748 11.734 29.4431 11.7326C29.4113 11.7313 29.3796 11.7367 29.35 11.7485C29.3205 11.7603 29.2938 11.7783 29.2718 11.8012C29.2497 11.824 29.2327 11.8513 29.2219 11.8813C29.2128 11.9469 29.2265 12.0137 29.2606 12.0705C29.2947 12.1274 29.3472 12.1709 29.4094 12.1938C29.4338 12.2071 29.4609 12.2149 29.4886 12.2167C29.5164 12.2184 29.5442 12.2141 29.5701 12.204C29.596 12.1938 29.6194 12.1782 29.6386 12.1581C29.6578 12.1379 29.6724 12.1139 29.6813 12.0875V12.0875Z" fill="#42D4C6"/>
|
||||
<path d="M24.3688 9.98124C24.3834 9.95802 24.3924 9.93167 24.395 9.90433C24.3976 9.877 24.3937 9.84945 24.3836 9.8239C24.3736 9.79835 24.3577 9.77551 24.3372 9.75724C24.3167 9.73897 24.2922 9.72579 24.2656 9.71875C24.1625 9.675 24.0406 9.7 24.0125 9.775C23.9988 9.83529 24.0051 9.89841 24.0305 9.9548C24.0559 10.0112 24.0989 10.0578 24.1531 10.0875C24.1742 10.0963 24.1968 10.1005 24.2196 10.0998C24.2424 10.0991 24.2647 10.0935 24.2851 10.0834C24.3056 10.0734 24.3236 10.059 24.338 10.0414C24.3525 10.0238 24.3629 10.0033 24.3688 9.98124V9.98124Z" fill="#42D4C6"/>
|
||||
<path d="M29.3219 12.5063C29.2809 12.5303 29.2482 12.5663 29.2281 12.6094C29.2108 12.6005 29.1918 12.5951 29.1724 12.5938C29.1529 12.5924 29.1334 12.595 29.1149 12.6015C29.0965 12.6079 29.0796 12.618 29.0652 12.6312C29.0508 12.6444 29.0393 12.6603 29.0313 12.6781C29.0206 12.7095 29.0213 12.7436 29.0333 12.7745C29.0453 12.8053 29.0678 12.831 29.0969 12.8469C29.1243 12.8564 29.1538 12.8585 29.1823 12.853C29.2108 12.8475 29.2374 12.8346 29.2594 12.8156C29.2924 12.8449 29.3341 12.8625 29.3782 12.8656C29.4563 12.8656 29.4875 12.8063 29.5188 12.75C29.55 12.6938 29.5938 12.6563 29.5688 12.5813C29.5579 12.5597 29.5428 12.5406 29.5244 12.525C29.5059 12.5095 29.4845 12.4979 29.4614 12.4908C29.4383 12.4838 29.4141 12.4816 29.3901 12.4842C29.3661 12.4869 29.3429 12.4944 29.3219 12.5063V12.5063Z" fill="#42D4C6"/>
|
||||
<path d="M28.5813 10.8906C28.5562 10.8619 28.5236 10.8408 28.4871 10.8298C28.4506 10.8187 28.4118 10.8182 28.375 10.8281C28.3544 10.8294 28.3344 10.8355 28.3165 10.8458C28.2986 10.8561 28.2834 10.8704 28.2719 10.8875C28.2669 10.8559 28.254 10.8262 28.2343 10.801C28.2146 10.7759 28.1888 10.7561 28.1594 10.7437C28.1453 10.7373 28.1301 10.7338 28.1146 10.7336C28.0991 10.7335 28.0838 10.7366 28.0696 10.7428C28.0555 10.749 28.0427 10.7582 28.0324 10.7696C28.022 10.7811 28.0142 10.7947 28.0094 10.8094C27.9985 10.8356 27.9929 10.8638 27.9929 10.8922C27.9929 10.9206 27.9985 10.9488 28.0094 10.975C28.0235 10.992 28.0411 11.0057 28.0611 11.0151C28.0811 11.0246 28.1029 11.0295 28.125 11.0295C28.1471 11.0295 28.1689 11.0246 28.1889 11.0151C28.2089 11.0057 28.2266 10.992 28.2406 10.975C28.2325 11.0275 28.2156 11.0782 28.1906 11.125C28.1852 11.1472 28.1843 11.1703 28.1881 11.1929C28.1919 11.2154 28.2002 11.237 28.2125 11.2563C28.2492 11.3115 28.2806 11.3701 28.3063 11.4313C28.3235 11.4698 28.3547 11.5002 28.3936 11.5165C28.4325 11.5328 28.4762 11.5336 28.5156 11.5187C28.625 11.4687 28.6625 11.4062 28.6219 11.3031C28.5897 11.2464 28.552 11.1931 28.5094 11.1438L28.5688 11.0562C28.5882 11.0335 28.5998 11.0053 28.6021 10.9755C28.6043 10.9457 28.597 10.916 28.5813 10.8906V10.8906Z" fill="#42D4C6"/>
|
||||
<path d="M27.2719 12.0125C27.2632 12.057 27.2664 12.1029 27.2812 12.1458C27.296 12.1886 27.3219 12.2267 27.3563 12.2563C27.3346 12.2399 27.3116 12.2252 27.2876 12.2125C27.2656 12.202 27.2417 12.1964 27.2174 12.196C27.1931 12.1956 27.1689 12.2004 27.1467 12.2102C27.1244 12.22 27.1045 12.2345 27.0884 12.2527C27.0723 12.2709 27.0603 12.2924 27.0532 12.3156C27.0307 12.3686 27.0288 12.4281 27.0479 12.4825C27.067 12.5368 27.1056 12.582 27.1563 12.6094C27.2095 12.632 27.2694 12.6332 27.3235 12.6129C27.3776 12.5925 27.4218 12.5521 27.4469 12.5C27.4609 12.4596 27.4619 12.4158 27.4495 12.3748C27.4372 12.3338 27.4122 12.2978 27.3782 12.2719C27.4146 12.2982 27.4546 12.3193 27.4969 12.3344C27.587 12.3389 27.6766 12.3182 27.7555 12.2746C27.8345 12.231 27.8997 12.1662 27.9438 12.0875C27.9844 11.9594 27.8469 11.8687 27.8501 11.8312C27.8532 11.7937 28.0657 11.725 28.1094 11.5656C28.116 11.4996 28.106 11.4329 28.0802 11.3718C28.0544 11.3106 28.0137 11.2569 27.9618 11.2156C27.9099 11.1742 27.8484 11.1466 27.783 11.1351C27.7176 11.1236 27.6504 11.1288 27.5875 11.15C27.5258 11.1744 27.4734 11.2179 27.438 11.2741C27.4026 11.3302 27.386 11.3962 27.3907 11.4625C27.4094 11.5844 27.5501 11.7156 27.5344 11.775C27.5188 11.8344 27.3032 11.8469 27.2719 12.0125Z" fill="#42D4C6"/>
|
||||
<path d="M27.4313 10.0625C27.4719 10.0625 27.5501 10.0969 27.5782 10.0406C27.6063 9.98437 27.5782 9.92187 27.5344 9.88125C27.4907 9.84062 27.4188 9.88125 27.3907 9.92187C27.3625 9.9625 27.3782 10.0406 27.4313 10.0625Z" fill="#42D4C6"/>
|
||||
<path d="M26.6969 11.025C26.525 11.1219 26.5063 11.175 26.5938 11.3375C26.6313 11.4062 26.6938 11.4406 26.7594 11.4C26.8216 11.3633 26.8937 11.3469 26.9656 11.3531C27.0031 11.3545 27.0404 11.348 27.0751 11.3341C27.1099 11.3202 27.1414 11.2992 27.1676 11.2725C27.1938 11.2457 27.2141 11.2137 27.2272 11.1787C27.2403 11.1436 27.246 11.1061 27.2438 11.0687C27.2422 11.0385 27.2422 11.0083 27.2438 10.9781C27.3156 10.9 27.3094 10.8406 27.2719 10.7906C27.2344 10.7406 27.1688 10.7375 27.1063 10.7594C27.0438 10.7812 26.9719 10.8 26.9063 10.825C26.8406 10.85 26.7563 10.875 26.7406 10.9719C26.7469 11 26.7188 11 26.6969 11.025Z" fill="#42D4C6"/>
|
||||
<path d="M22.1813 10.2594C22.1813 10.2094 22.2063 10.0937 22.1438 10.0687C22.0813 10.0437 22.0219 10.1219 21.9969 10.1531C21.9869 10.1626 21.9792 10.1744 21.9746 10.1875C21.97 10.2005 21.9685 10.2145 21.9704 10.2282C21.9722 10.2419 21.9773 10.2551 21.9852 10.2664C21.993 10.2778 22.0035 10.2872 22.0157 10.2937C22.0657 10.3312 22.1813 10.3156 22.1813 10.2594Z" fill="#42D4C6"/>
|
||||
<path d="M21.8501 10.9344C21.8658 10.943 21.8832 10.9485 21.901 10.9504C21.9189 10.9522 21.937 10.9505 21.9542 10.9452C21.9714 10.94 21.9873 10.9313 22.0011 10.9198C22.0149 10.9083 22.0263 10.8941 22.0345 10.8781C22.0345 10.8781 22.0345 10.8625 22.0345 10.8562C22.0379 10.8638 22.0433 10.8702 22.0501 10.875C22.1126 10.9219 22.1813 10.8937 22.2376 10.8C22.2938 10.7062 22.297 10.6312 22.2376 10.5844C22.255 10.5585 22.2644 10.5281 22.2644 10.4969C22.2644 10.4657 22.255 10.4352 22.2376 10.4094C22.1657 10.3406 22.1126 10.4094 22.0626 10.4094C21.9345 10.4094 21.822 10.5563 21.8563 10.6563L21.872 10.6812C21.8471 10.6952 21.8266 10.7158 21.8126 10.7406C21.8006 10.7552 21.792 10.7722 21.7874 10.7905C21.7827 10.8087 21.7822 10.8278 21.7858 10.8463C21.7894 10.8648 21.797 10.8823 21.8081 10.8975C21.8192 10.9127 21.8335 10.9253 21.8501 10.9344V10.9344Z" fill="#42D4C6"/>
|
||||
<path d="M21.2438 9.80937C21.256 9.81436 21.2695 9.81491 21.2821 9.81091C21.2947 9.80691 21.3054 9.79862 21.3125 9.78749C21.3167 9.77247 21.3171 9.75668 21.3138 9.74145C21.3106 9.72621 21.3037 9.712 21.2938 9.7C21.2781 9.7 21.2032 9.68125 21.1875 9.7C21.1719 9.71875 21.2438 9.79062 21.2438 9.80937Z" fill="#42D4C6"/>
|
||||
<path d="M20.3563 7.89061C20.3876 7.85624 20.3563 7.80312 20.3345 7.79999C20.3063 7.78916 20.2751 7.78916 20.2469 7.79999C20.2469 7.79999 20.2469 7.86561 20.2469 7.87186C20.2469 7.87811 20.3219 7.92499 20.3563 7.89061Z" fill="#42D4C6"/>
|
||||
<path d="M23.45 11.3125C23.4875 11.4 23.5657 11.375 23.6344 11.3531C23.6688 11.275 23.6688 11.2031 23.5875 11.1656C23.5695 11.159 23.5501 11.1576 23.5313 11.1614C23.5125 11.1653 23.4952 11.1743 23.4813 11.1875C23.4675 11.2049 23.4576 11.2251 23.4522 11.2466C23.4468 11.2682 23.4461 11.2906 23.45 11.3125Z" fill="#42D4C6"/>
|
||||
<path d="M21.1218 10.1437C21.1218 10.1687 21.15 10.2094 21.1719 10.2125C21.2398 10.2269 21.3088 10.2363 21.3781 10.2406C21.4718 10.3844 21.5906 10.4469 21.6906 10.3906C21.7314 10.351 21.7592 10.2999 21.7704 10.2441C21.7815 10.1883 21.7755 10.1304 21.7531 10.0781C21.6937 9.97812 21.625 9.97812 21.4219 10.0781C21.3687 10.0031 21.325 9.91874 21.2187 9.97812C21.1846 9.98832 21.1556 10.0111 21.1377 10.0418C21.1197 10.0726 21.114 10.109 21.1218 10.1437Z" fill="#42D4C6"/>
|
||||
<path d="M22.25 11.3844C22.25 11.4687 22.3781 11.4812 22.3094 11.5594C22.2406 11.6375 22.125 11.8156 22.2844 11.9219C22.3295 11.9453 22.3811 11.9534 22.4313 11.945C22.4815 11.9365 22.5275 11.9119 22.5625 11.875V11.875C22.5681 11.9156 22.5828 11.9544 22.6056 11.9885C22.6283 12.0226 22.6584 12.0511 22.6937 12.0719C22.7528 12.0962 22.8186 12.0982 22.879 12.0775C22.9394 12.0568 22.9902 12.0148 23.0219 11.9594C23.0433 11.9041 23.0433 11.8428 23.0219 11.7875C23.033 11.8069 23.0479 11.8239 23.0656 11.8375L23.0469 11.8688C22.9781 12 23.0469 12.0875 23.1375 12.1813C23.0937 12.2469 23.0125 12.3 23.0875 12.3875C23.1052 12.4127 23.1316 12.4304 23.1616 12.4373C23.1916 12.4442 23.223 12.4398 23.25 12.425C23.2656 12.4191 23.2788 12.4081 23.2875 12.3938C23.2876 12.4285 23.2959 12.4627 23.3116 12.4936C23.3274 12.5245 23.3501 12.5514 23.3781 12.5719C23.4252 12.581 23.4738 12.5768 23.5185 12.5596C23.5633 12.5425 23.6023 12.5132 23.6312 12.475C23.6401 12.4592 23.6456 12.4417 23.6472 12.4237C23.6489 12.4056 23.6467 12.3874 23.6407 12.3703C23.6348 12.3532 23.6254 12.3375 23.613 12.3243C23.6005 12.3111 23.5855 12.3007 23.5687 12.2938V12.2938C23.6051 12.297 23.6417 12.297 23.6781 12.2938C23.7199 12.2764 23.7568 12.2491 23.7857 12.2143C23.8146 12.1794 23.8345 12.138 23.8437 12.0938C23.8348 12.0563 23.8142 12.0225 23.7851 11.9973C23.7559 11.9721 23.7196 11.9566 23.6812 11.9531C23.6831 11.9203 23.6726 11.8879 23.6518 11.8624C23.631 11.837 23.6013 11.8203 23.5687 11.8156C23.5282 11.8087 23.4891 11.795 23.4531 11.775H23.4344C23.4199 11.7598 23.403 11.7472 23.3844 11.7375C23.3935 11.7176 23.3998 11.6966 23.4031 11.675C23.4065 11.6161 23.3884 11.5581 23.3522 11.5115C23.316 11.465 23.2641 11.4331 23.2063 11.4219H23.1875C23.2278 11.3581 23.2505 11.2848 23.2531 11.2094C23.2442 11.1511 23.2147 11.098 23.17 11.0596C23.1253 11.0212 23.0683 11.0001 23.0094 11C22.9452 11.0189 22.8909 11.0622 22.8582 11.1206C22.8255 11.179 22.817 11.2479 22.8344 11.3125C22.8476 11.3619 22.8757 11.4061 22.9148 11.4391C22.9539 11.472 23.0022 11.4922 23.0531 11.4969C23.0262 11.5211 23.0051 11.5511 22.9916 11.5847C22.9781 11.6183 22.9724 11.6545 22.975 11.6906C22.9789 11.7135 22.9863 11.7356 22.9969 11.7562C22.9822 11.7374 22.9642 11.7215 22.9437 11.7094C22.889 11.6898 22.8302 11.6844 22.7728 11.6936C22.7154 11.7029 22.6614 11.7266 22.6156 11.7625C22.6185 11.7445 22.6178 11.7261 22.6135 11.7084C22.6092 11.6907 22.6014 11.674 22.5906 11.6594C22.5375 11.5969 22.7094 11.5219 22.6406 11.4313C22.5719 11.3406 22.6406 11.2313 22.5594 11.1188C22.4781 11.0063 22.3125 10.9812 22.2469 11.0906C22.2162 11.1863 22.2173 11.2894 22.25 11.3844ZM23.4344 12.1156L23.5188 12.2469C23.488 12.2294 23.4518 12.2238 23.4172 12.2313C23.3826 12.2388 23.352 12.2588 23.3312 12.2875C23.3269 12.2556 23.3196 12.2242 23.3094 12.1938L23.4344 12.1156Z" fill="#42D4C6"/>
|
||||
<path d="M23.4313 10.9031C23.416 10.8929 23.3989 10.886 23.3809 10.8827C23.3629 10.8793 23.3444 10.8798 23.3265 10.8839C23.3087 10.888 23.2918 10.8957 23.2771 10.9065C23.2623 10.9173 23.2499 10.9311 23.2407 10.9469C23.2239 10.9802 23.2208 11.0186 23.2318 11.0542C23.2429 11.0897 23.2674 11.1196 23.3 11.1375C23.334 11.15 23.3713 11.1503 23.4055 11.1383C23.4398 11.1263 23.4687 11.1029 23.4875 11.0719C23.4959 11.0573 23.5012 11.0411 23.5029 11.0244C23.5046 11.0077 23.5027 10.9908 23.4974 10.9748C23.4921 10.9589 23.4834 10.9442 23.472 10.9319C23.4606 10.9195 23.4467 10.9097 23.4313 10.9031V10.9031Z" fill="#42D4C6"/>
|
||||
<path d="M22.7157 10.1594C22.6719 10.1594 22.5844 10.1594 22.5751 10.2C22.5725 10.2229 22.5758 10.246 22.5845 10.2673C22.5932 10.2886 22.6072 10.3074 22.625 10.3219C22.65 10.3219 22.7563 10.3219 22.7751 10.2969C22.7938 10.2719 22.7376 10.1625 22.7157 10.1594Z" fill="#42D4C6"/>
|
||||
<path d="M22.5094 10.5781C22.4741 10.5685 22.4366 10.5721 22.4038 10.5882C22.371 10.6043 22.3452 10.6318 22.3313 10.6656C22.3254 10.6824 22.3229 10.7003 22.324 10.7181C22.325 10.7358 22.3296 10.7532 22.3375 10.7692C22.3453 10.7852 22.3563 10.7995 22.3697 10.8112C22.3831 10.8229 22.3987 10.8319 22.4156 10.8375C22.4349 10.8476 22.4564 10.8529 22.4781 10.8529C22.4999 10.8529 22.5214 10.8476 22.5406 10.8375C22.5733 10.8472 22.608 10.8472 22.6406 10.8375C22.6675 10.836 22.6929 10.8247 22.7119 10.8056C22.7309 10.7866 22.7423 10.7612 22.7438 10.7344C22.7438 10.6281 22.6813 10.5875 22.5875 10.5531L22.55 10.5875C22.5373 10.5815 22.5234 10.5783 22.5094 10.5781V10.5781Z" fill="#42D4C6"/>
|
||||
<path d="M22.6907 11.5187C22.7344 11.5906 22.7969 11.625 22.8719 11.575C22.8858 11.5626 22.8964 11.547 22.9029 11.5296C22.9094 11.5122 22.9117 11.4935 22.9094 11.475C22.8844 11.4344 22.8375 11.3844 22.7969 11.3844C22.7563 11.3844 22.7032 11.4531 22.6907 11.5187Z" fill="#42D4C6"/>
|
||||
<path d="M18.5657 7.87499C18.5829 7.84653 18.5892 7.81281 18.5835 7.78006C18.5777 7.74731 18.5603 7.71775 18.5344 7.69686C18.5217 7.68614 18.5068 7.67824 18.4907 7.67366C18.4747 7.66909 18.4579 7.66795 18.4414 7.67031C18.4249 7.67267 18.409 7.67848 18.3949 7.68736C18.3808 7.69624 18.3687 7.708 18.3594 7.72186C18.3422 7.75031 18.3359 7.78404 18.3417 7.81679C18.3474 7.84954 18.3648 7.8791 18.3907 7.89999C18.4035 7.9107 18.4184 7.91859 18.4344 7.92317C18.4504 7.92774 18.4673 7.9289 18.4838 7.92654C18.5003 7.92418 18.5161 7.91837 18.5302 7.90949C18.5443 7.90061 18.5564 7.88885 18.5657 7.87499V7.87499Z" fill="#42D4C6"/>
|
||||
<path d="M24.2532 6.36874C24.2282 6.36874 24.1625 6.41874 24.1625 6.45936C24.1625 6.49999 24.2531 6.53124 24.2813 6.52499C24.2974 6.51603 24.3109 6.5029 24.3202 6.48696C24.3296 6.47102 24.3345 6.45286 24.3344 6.43438C24.3313 6.40625 24.2813 6.37187 24.2532 6.36874Z" fill="#42D4C6"/>
|
||||
<path d="M25.85 7.07187C25.7969 7.13437 25.8813 7.30311 25.9438 7.29999C26.0063 7.29686 26.0876 7.12499 26.0313 7.06874C26.0056 7.0478 25.9733 7.03664 25.9401 7.03721C25.9069 7.03779 25.875 7.05006 25.85 7.07187V7.07187Z" fill="#42D4C6"/>
|
||||
<path d="M23.6876 10.4437C23.6842 10.3971 23.6673 10.3525 23.639 10.3153C23.6107 10.2782 23.5722 10.25 23.5282 10.2344C23.4918 10.2171 23.4527 10.2066 23.4126 10.2031C23.4233 10.1902 23.4311 10.1752 23.4354 10.159C23.4397 10.1428 23.4405 10.1259 23.4376 10.1094C23.4305 10.0865 23.4189 10.0654 23.4036 10.047C23.3882 10.0287 23.3694 10.0136 23.3482 10.0025C23.327 9.99148 23.3038 9.98475 23.28 9.9827C23.2562 9.98066 23.2322 9.98335 23.2094 9.99062V9.99062C23.2164 9.95635 23.2141 9.92082 23.2025 9.88781C23.1909 9.8548 23.1707 9.82553 23.1438 9.80311C23.0917 9.78329 23.0353 9.77776 22.9803 9.7871C22.9254 9.79644 22.8739 9.82033 22.8313 9.85625C22.817 9.90866 22.8213 9.96444 22.8435 10.014C22.8657 10.0636 22.9045 10.104 22.9532 10.1281C22.9734 10.137 22.9952 10.1415 23.0173 10.1415C23.0393 10.1415 23.0611 10.137 23.0813 10.1281C23.0783 10.1404 23.0783 10.1533 23.0813 10.1656C23.0837 10.2047 23.0987 10.242 23.1241 10.2718C23.1494 10.3017 23.1838 10.3225 23.222 10.3312C23.3503 10.3788 23.4644 10.4583 23.5535 10.5622C23.6426 10.6661 23.7038 10.7909 23.7313 10.925C23.756 10.9417 23.7838 10.9533 23.813 10.9591C23.8422 10.9648 23.8723 10.9647 23.9015 10.9585C23.9307 10.9524 23.9583 10.9405 23.9828 10.9234C24.0072 10.9064 24.028 10.8846 24.0438 10.8594C24.0646 10.8276 24.0764 10.791 24.0782 10.7531C24.1044 10.6877 24.112 10.6163 24.1001 10.5469C24.1288 10.5551 24.1595 10.5531 24.1869 10.5411C24.2143 10.5292 24.2367 10.508 24.2501 10.4812C24.2614 10.4471 24.2601 10.4099 24.2463 10.3766C24.2325 10.3434 24.2073 10.3162 24.1751 10.3C24.1427 10.2836 24.1052 10.2806 24.0706 10.2917C24.0361 10.3028 24.0074 10.3271 23.9907 10.3594V10.3844C23.9477 10.3636 23.8998 10.3552 23.8523 10.3601C23.8048 10.3651 23.7597 10.3832 23.7219 10.4125L23.6876 10.4437Z" fill="#42D4C6"/>
|
||||
<path d="M23.9344 8.57811C23.9122 8.57602 23.89 8.58018 23.8701 8.59013C23.8502 8.60007 23.8335 8.61539 23.8219 8.63436C23.8122 8.64434 23.8052 8.65665 23.8016 8.6701C23.798 8.68356 23.7979 8.6977 23.8014 8.71119C23.8048 8.72468 23.8117 8.73707 23.8213 8.74714C23.8309 8.75722 23.8429 8.76465 23.8563 8.76873C23.8969 8.78748 24.0094 8.80311 24.0281 8.76873C24.0703 8.77589 24.1136 8.77343 24.1548 8.76152C24.1959 8.74962 24.2338 8.72859 24.2656 8.69999C24.2764 8.67668 24.2824 8.65142 24.2832 8.62574C24.284 8.60006 24.2796 8.57449 24.2703 8.55055C24.2609 8.52662 24.2468 8.50482 24.2289 8.48647C24.2109 8.46811 24.1894 8.45357 24.1656 8.44374C24.0844 8.41874 23.9906 8.46874 23.9344 8.57811Z" fill="#42D4C6"/>
|
||||
<path d="M28.0594 9.5125C27.9844 9.5125 27.9313 9.75313 27.9407 9.79063C27.9501 9.82813 28.0188 9.91562 27.9407 9.95624C27.8626 9.99687 27.7719 9.99376 27.7344 10.0719C27.6969 10.15 27.6125 10.325 27.7 10.4281C27.7875 10.5312 27.8532 10.4281 27.9282 10.4281C27.9716 10.4292 28.0138 10.4142 28.0467 10.3859C28.0797 10.3576 28.1009 10.3181 28.1063 10.275C28.1063 10.175 28.0782 10.075 28.1063 10.0313C28.1098 10.018 28.1164 10.0057 28.1257 9.99561C28.135 9.98548 28.1466 9.97778 28.1595 9.97316C28.1725 9.96854 28.1864 9.96714 28.1999 9.9691C28.2135 9.97105 28.2264 9.9763 28.2376 9.98437C28.3001 10.0281 28.4219 10.0094 28.5032 9.87188C28.5844 9.73438 28.5032 9.55938 28.3719 9.55938C28.2407 9.55938 28.2313 9.64062 28.2001 9.6125C28.1688 9.58437 28.1344 9.49687 28.0594 9.5125Z" fill="#42D4C6"/>
|
||||
<path d="M25.8188 6.23438C25.7438 6.20313 25.7031 6.29064 25.6938 6.32189C25.6893 6.34298 25.6901 6.36484 25.6961 6.38555C25.7021 6.40626 25.7131 6.42517 25.7281 6.44062C25.7391 6.44873 25.7518 6.45417 25.7653 6.45651C25.7787 6.45884 25.7925 6.45801 25.8055 6.45406C25.8186 6.45012 25.8305 6.44318 25.8404 6.43379C25.8503 6.4244 25.8579 6.41284 25.8625 6.40001C25.8782 6.36564 25.8938 6.26563 25.8188 6.23438Z" fill="#42D4C6"/>
|
||||
<path d="M23.1594 8.15936C23.1313 8.15936 23.0688 8.19063 23.0594 8.2125C23.0532 8.22827 23.0523 8.24565 23.0568 8.262C23.0613 8.27835 23.071 8.29277 23.0844 8.30312C23.1004 8.30796 23.1176 8.30754 23.1333 8.30192C23.1491 8.29629 23.1626 8.28577 23.1719 8.27188C23.1844 8.25 23.1907 8.18749 23.1594 8.15936Z" fill="#42D4C6"/>
|
||||
<path d="M21.4532 9.24688C21.4521 9.20069 21.4368 9.15595 21.4094 9.11874C21.3762 9.08382 21.3309 9.0628 21.2828 9.0599C21.2347 9.057 21.1872 9.07244 21.15 9.10312C21.0688 9.16562 21.0532 9.23438 21.1063 9.30313C21.1381 9.3541 21.188 9.39113 21.2459 9.40679C21.3039 9.42245 21.3657 9.41556 21.4188 9.38751C21.4249 9.41409 21.4391 9.43811 21.4594 9.45625C21.504 9.48348 21.5565 9.4946 21.6082 9.48778C21.66 9.48095 21.7078 9.45659 21.7438 9.41875C21.7655 9.38593 21.774 9.34615 21.7676 9.30734C21.7612 9.26853 21.7404 9.23355 21.7094 9.20938C21.6696 9.18291 21.6214 9.17209 21.5741 9.17901C21.5268 9.18594 21.4837 9.21011 21.4532 9.24688Z" fill="#42D4C6"/>
|
||||
<path d="M22.9094 8.74686C22.9093 8.79051 22.9167 8.83387 22.9313 8.875C22.9477 8.88352 22.9655 8.88864 22.9839 8.8901C23.0023 8.89156 23.0208 8.88932 23.0383 8.88349C23.0558 8.87765 23.0719 8.86837 23.0858 8.85617C23.0996 8.84398 23.1108 8.82912 23.1188 8.81249C23.1375 8.74999 23.1 8.72188 23.0563 8.70313C23.0448 8.69306 23.0309 8.68607 23.016 8.68281C23.001 8.67956 22.9855 8.68014 22.9708 8.68451C22.9561 8.68888 22.9428 8.6969 22.9321 8.7078C22.9214 8.7187 22.9136 8.73213 22.9094 8.74686V8.74686Z" fill="#42D4C6"/>
|
||||
<path d="M23.3281 6.86563C23.2683 6.83553 23.1994 6.8291 23.1351 6.84764C23.0708 6.86618 23.0158 6.90833 22.9813 6.96563C22.9657 7.03644 22.9707 7.1102 22.9956 7.17828C23.0205 7.24636 23.0643 7.30593 23.1219 7.35C23.185 7.37297 23.2545 7.37087 23.3162 7.34413C23.3778 7.31739 23.4268 7.26804 23.4531 7.20624C23.4735 7.14367 23.4722 7.07609 23.4495 7.01433C23.4269 6.95256 23.3841 6.90021 23.3281 6.86563V6.86563Z" fill="#42D4C6"/>
|
||||
<path d="M23.5625 9.04375C23.5 9.01562 23.4313 9.04375 23.425 9.10313C23.4241 9.14555 23.4305 9.18783 23.4438 9.22813C23.4604 9.23622 23.4786 9.24067 23.4971 9.24122C23.5157 9.24177 23.5341 9.2384 23.5512 9.23132C23.5683 9.22423 23.5838 9.21359 23.5965 9.20011C23.6092 9.18664 23.6189 9.17064 23.625 9.15314C23.6469 9.09064 23.6094 9.06562 23.5625 9.04375Z" fill="#42D4C6"/>
|
||||
<path d="M23.6563 9.73124C23.6267 9.71671 23.5927 9.7141 23.5613 9.724C23.5299 9.73389 23.5035 9.75551 23.4876 9.78436C23.4773 9.79927 23.4706 9.81627 23.4677 9.83413C23.4649 9.85198 23.466 9.87026 23.4711 9.88761C23.4762 9.90496 23.4851 9.92096 23.4971 9.93445C23.5091 9.94795 23.524 9.95859 23.5407 9.96562C23.5757 9.98377 23.6163 9.98772 23.6542 9.97666C23.692 9.9656 23.7241 9.94038 23.7438 9.90624C23.7497 9.88901 23.7521 9.87079 23.7508 9.85263C23.7496 9.83447 23.7448 9.81674 23.7366 9.80046C23.7285 9.78418 23.7172 9.76968 23.7034 9.75779C23.6896 9.74591 23.6736 9.73689 23.6563 9.73124V9.73124Z" fill="#42D4C6"/>
|
||||
<path d="M27.2719 6.93749C27.2531 6.92929 27.2319 6.92827 27.2123 6.9346C27.1927 6.94093 27.1762 6.95417 27.1657 6.97187C27.15 6.99687 27.1219 7.07499 27.1657 7.10937C27.2094 7.14374 27.2751 7.07188 27.2876 7.04375C27.3001 7.01563 27.3157 6.95937 27.2719 6.93749Z" fill="#42D4C6"/>
|
||||
<path d="M26.8344 10.2375C26.8198 10.2685 26.8115 10.302 26.8099 10.3362C26.8083 10.3704 26.8135 10.4046 26.8251 10.4368C26.8367 10.469 26.8545 10.4986 26.8776 10.524C26.9006 10.5493 26.9284 10.5698 26.9594 10.5844C26.9904 10.5989 27.0239 10.6072 27.0581 10.6088C27.0923 10.6105 27.1265 10.6053 27.1587 10.5937C27.1909 10.5821 27.2205 10.5643 27.2459 10.5412C27.2712 10.5182 27.2917 10.4904 27.3063 10.4594C27.3198 10.4303 27.3271 10.3986 27.3275 10.3665C27.328 10.3344 27.3217 10.3026 27.309 10.2731C27.2963 10.2436 27.2776 10.2171 27.2539 10.1953C27.2303 10.1736 27.2023 10.1571 27.1719 10.1469C27.1444 10.1283 27.1133 10.1159 27.0806 10.1104C27.0479 10.1049 27.0145 10.1065 26.9825 10.1151C26.9505 10.1237 26.9207 10.1391 26.8951 10.1602C26.8696 10.1813 26.8489 10.2077 26.8344 10.2375V10.2375Z" fill="#42D4C6"/>
|
||||
<path d="M27.2625 9.65938C27.3016 9.6828 27.348 9.69066 27.3926 9.6814C27.4372 9.67213 27.4767 9.64641 27.5031 9.60937C27.5224 9.56396 27.5264 9.51353 27.5146 9.46564C27.5027 9.41775 27.4757 9.37498 27.4375 9.34376C27.3821 9.31994 27.32 9.31693 27.2626 9.33531C27.2051 9.35368 27.1563 9.39221 27.125 9.44376C27.1094 9.50938 27.1813 9.61563 27.2625 9.65938Z" fill="#42D4C6"/>
|
||||
<path d="M21.5094 8.09688C21.5002 8.11137 21.4954 8.12816 21.4954 8.14531C21.4954 8.16246 21.5002 8.17926 21.5094 8.19375C21.5313 8.21563 21.575 8.25625 21.5969 8.23125C21.6084 8.21893 21.6163 8.20361 21.6196 8.18704C21.6229 8.17047 21.6216 8.15333 21.6156 8.13751C21.6 8.11563 21.5313 8.07188 21.5094 8.09688Z" fill="#42D4C6"/>
|
||||
<path d="M26.0657 7.58438C26.0469 7.58438 26.0063 7.65 26.025 7.68438C26.0438 7.71875 26.1125 7.70625 26.1313 7.68438C26.1434 7.67363 26.1523 7.65984 26.1573 7.64446C26.1622 7.62907 26.1629 7.61264 26.1594 7.59687C26.1469 7.56249 26.0907 7.5625 26.0657 7.58438Z" fill="#42D4C6"/>
|
||||
<path d="M28.1625 7.40938C28.1625 7.42813 28.1625 7.45625 28.1625 7.46563C28.1625 7.475 28.1907 7.46563 28.2094 7.45C28.2282 7.43438 28.2094 7.40937 28.1938 7.39999C28.1828 7.40088 28.1722 7.40409 28.1625 7.40938V7.40938Z" fill="#42D4C6"/>
|
||||
<path d="M28.0782 7.71875C28.0265 7.70053 27.9701 7.70051 27.9184 7.71869C27.8667 7.73688 27.8227 7.77218 27.7938 7.81875C27.7594 7.8875 27.8282 8.02187 27.9219 8.06875C27.9411 8.08034 27.9624 8.08793 27.9845 8.09106C28.0067 8.09419 28.0293 8.09281 28.0509 8.08696C28.0725 8.08112 28.0927 8.07095 28.1103 8.05708C28.1279 8.0432 28.1424 8.02591 28.1531 8.00624C28.1784 7.95753 28.1847 7.90118 28.1709 7.84809C28.157 7.79499 28.124 7.74891 28.0782 7.71875V7.71875Z" fill="#42D4C6"/>
|
||||
<path d="M26.7875 6.69687C26.7563 6.81875 26.9281 6.8875 26.9781 6.85312C27.0281 6.81875 27.0438 6.6625 26.9781 6.625C26.9125 6.5875 26.8219 6.575 26.7875 6.69687Z" fill="#42D4C6"/>
|
||||
<path d="M26.2 9.61562C26.1782 9.68201 26.1793 9.7538 26.2031 9.81951C26.2269 9.88522 26.2721 9.94106 26.3313 9.97811C26.3951 9.9964 26.4632 9.99208 26.5241 9.96588C26.5851 9.93968 26.6351 9.89323 26.6657 9.83437C26.6916 9.78272 26.6966 9.72307 26.6797 9.6678C26.6629 9.61253 26.6254 9.56587 26.5751 9.53749C26.5135 9.5035 26.4419 9.49268 26.3731 9.50701C26.3043 9.52135 26.2429 9.55989 26.2 9.61562V9.61562Z" fill="#42D4C6"/>
|
||||
<path d="M25.9094 7.95313C25.8645 8.03834 25.8299 8.12855 25.8063 8.22188C25.8023 8.27959 25.8168 8.33707 25.8477 8.38597C25.8786 8.43486 25.9243 8.47261 25.9781 8.49375C26.0375 8.51563 26.0906 8.51251 26.1219 8.45938C26.2086 8.32906 26.2534 8.17529 26.25 8.01877C26.2465 7.99481 26.2391 7.97158 26.2281 7.95001C26.214 7.91951 26.1913 7.89375 26.1628 7.87581C26.1344 7.85787 26.1014 7.84851 26.0678 7.84884C26.0341 7.84917 26.0013 7.85918 25.9732 7.87768C25.9451 7.89617 25.923 7.92237 25.9094 7.95313V7.95313Z" fill="#42D4C6"/>
|
||||
<path d="M26.6031 8.73437C26.5805 8.72156 26.5552 8.71415 26.5292 8.71274C26.5032 8.71133 26.4773 8.71596 26.4533 8.72625C26.4294 8.73653 26.4082 8.75222 26.3914 8.77206C26.3746 8.7919 26.3625 8.81537 26.3563 8.84063C26.3125 8.94688 26.3375 9.04375 26.4188 9.07188C26.477 9.08888 26.5392 9.08614 26.5957 9.06409C26.6523 9.04205 26.6999 9.00194 26.7313 8.95C26.7371 8.9049 26.7277 8.85914 26.7045 8.82005C26.6812 8.78095 26.6456 8.75078 26.6031 8.73437V8.73437Z" fill="#42D4C6"/>
|
||||
<path d="M26.7375 7.78748C26.7647 7.79088 26.7922 7.78876 26.8186 7.78124C26.8449 7.77372 26.8694 7.76097 26.8907 7.74374C26.9313 7.70937 26.8906 7.60312 26.825 7.59062C26.7863 7.58836 26.7476 7.59586 26.7125 7.61248C26.6657 7.7031 26.6813 7.78123 26.7375 7.78748Z" fill="#42D4C6"/>
|
||||
<path d="M24.2251 8.02812C24.2061 8.05578 24.1985 8.08966 24.2037 8.12278C24.2089 8.15591 24.2266 8.18577 24.2532 8.20625C24.2717 8.21888 24.2928 8.22736 24.3149 8.23114C24.337 8.23491 24.3596 8.23389 24.3813 8.22813C24.4594 8.20625 24.4719 8.14375 24.4469 7.99688C24.3688 7.97813 24.2876 7.93125 24.2251 8.02812Z" fill="#42D4C6"/>
|
||||
<path d="M31.65 12.0969C31.5688 12.1844 31.6063 12.2437 31.55 12.2937C31.4938 12.3437 31.5063 12.3937 31.55 12.4656C31.5938 12.5375 31.65 12.6406 31.7469 12.5844C31.8438 12.5281 31.8188 12.4562 31.8001 12.4281C31.7813 12.4 31.8 12.3312 31.8219 12.3531C31.8438 12.375 31.9032 12.3531 31.9594 12.2875C31.9742 12.274 31.986 12.2576 31.9941 12.2393C32.0022 12.221 32.0063 12.2013 32.0063 12.1813C32.0063 12.1613 32.0022 12.1415 31.9941 12.1232C31.986 12.1049 31.9742 12.0885 31.9594 12.075C31.9381 12.0552 31.9129 12.04 31.8855 12.0304C31.8581 12.0207 31.829 12.0168 31.8 12.0189C31.771 12.0209 31.7427 12.0289 31.7169 12.0423C31.6911 12.0557 31.6684 12.0743 31.65 12.0969V12.0969Z" fill="#42D4C6"/>
|
||||
<path d="M31.5563 10.1781C31.5157 10.275 31.5563 10.35 31.6719 10.4C31.7029 10.4179 31.7395 10.4234 31.7743 10.4152C31.8092 10.4071 31.8396 10.386 31.8594 10.3562C31.8738 10.3053 31.8741 10.2513 31.8604 10.2002C31.8466 10.149 31.8193 10.1025 31.7813 10.0656C31.675 10.0219 31.5938 10.0625 31.5563 10.1781Z" fill="#42D4C6"/>
|
||||
<path d="M31.6532 9.575C31.6364 9.56855 31.6184 9.56555 31.6005 9.56616C31.5825 9.56678 31.5648 9.571 31.5485 9.57858C31.5322 9.58616 31.5175 9.59694 31.5054 9.61028C31.4934 9.62362 31.4841 9.63926 31.4782 9.65625C31.464 9.68961 31.4618 9.72687 31.4721 9.76165C31.4824 9.79643 31.5044 9.82656 31.5344 9.84687C31.5713 9.85824 31.6107 9.85868 31.6479 9.84815C31.685 9.83761 31.7183 9.81655 31.7438 9.78749C31.754 9.74704 31.7507 9.70434 31.7343 9.66596C31.718 9.62757 31.6895 9.59561 31.6532 9.575V9.575Z" fill="#42D4C6"/>
|
||||
<path d="M32.1126 8.66875C32.0742 8.66198 32.0347 8.66893 32.001 8.68835C31.9673 8.70778 31.9415 8.73846 31.9282 8.775C31.925 8.79492 31.9268 8.81531 31.9334 8.83436C31.94 8.85341 31.9513 8.8705 31.9661 8.88412C31.981 8.89775 31.999 8.90748 32.0186 8.91243C32.0381 8.91738 32.0586 8.91741 32.0782 8.9125C32.1188 8.89688 32.1282 8.80314 32.1469 8.74376C32.1499 8.73661 32.1514 8.7289 32.1512 8.72116C32.1511 8.71342 32.1493 8.70579 32.1461 8.69875C32.1429 8.69171 32.1382 8.68541 32.1324 8.68025C32.1267 8.67509 32.1199 8.67117 32.1126 8.66875V8.66875Z" fill="#42D4C6"/>
|
||||
<path d="M30.7344 12.8375C30.6697 12.8345 30.6059 12.8532 30.5531 12.8906C30.5192 12.918 30.4914 12.9522 30.4715 12.9909C30.4516 13.0297 30.44 13.0721 30.4375 13.1156C30.428 13.1647 30.4111 13.2121 30.3875 13.2562H31.0625C31.0608 13.2417 31.0608 13.227 31.0625 13.2125C31.1281 12.9312 30.9313 12.8469 30.7344 12.8375Z" fill="#42D4C6"/>
|
||||
<path d="M32.1594 9.55937C32.1474 9.55304 32.1342 9.54921 32.1206 9.54815C32.1071 9.5471 32.0934 9.54882 32.0806 9.55321C32.0677 9.5576 32.0559 9.56456 32.0458 9.57367C32.0357 9.58279 32.0276 9.59387 32.0219 9.60623C32.0133 9.61814 32.0073 9.6317 32.0042 9.64606C32.0011 9.66042 32.001 9.67527 32.004 9.68966C32.0069 9.70405 32.0128 9.71766 32.0213 9.72966C32.0297 9.74166 32.0406 9.75178 32.0532 9.75937C32.0674 9.76753 32.0832 9.7727 32.0996 9.77459C32.1159 9.77649 32.1324 9.77505 32.1482 9.77038C32.164 9.76571 32.1786 9.7579 32.1913 9.74742C32.204 9.73693 32.2144 9.72398 32.2219 9.70936C32.228 9.69545 32.2312 9.68045 32.2313 9.66527C32.2315 9.65008 32.2285 9.63503 32.2227 9.62102C32.2168 9.607 32.2082 9.59432 32.1973 9.58373C32.1865 9.57313 32.1736 9.56485 32.1594 9.55937V9.55937Z" fill="#42D4C6"/>
|
||||
<path d="M32.0844 13C32.0983 13.0262 32.1209 13.0467 32.1482 13.0581C32.1756 13.0695 32.206 13.071 32.2344 13.0625C32.3 13.0375 32.3032 12.9906 32.2344 12.8594C32.1375 12.8156 32.0657 12.9375 32.0844 13Z" fill="#42D4C6"/>
|
||||
<path d="M32.6906 12.5625C32.6687 12.5625 32.6031 12.5281 32.5844 12.5625C32.5656 12.5969 32.6094 12.6438 32.625 12.6469C32.6406 12.65 32.6906 12.6719 32.7125 12.6469C32.7201 12.6413 32.7258 12.6336 32.729 12.6248C32.7322 12.6159 32.7326 12.6063 32.7302 12.5972C32.7279 12.5882 32.7228 12.58 32.7158 12.5738C32.7087 12.5676 32.6999 12.5637 32.6906 12.5625V12.5625Z" fill="#42D4C6"/>
|
||||
<path d="M31.4 11.5187C31.4084 11.5573 31.4275 11.5928 31.4552 11.621C31.4828 11.6492 31.5179 11.669 31.5563 11.6781C31.5886 11.6844 31.622 11.6823 31.6532 11.6719C31.6844 11.6615 31.7124 11.6432 31.7344 11.6187C31.7595 11.5931 31.7779 11.5619 31.7883 11.5276C31.7986 11.4933 31.8005 11.457 31.7938 11.4219C31.7657 11.35 31.7688 11.2594 31.7094 11.2312C31.6906 11.2214 31.6697 11.2162 31.6485 11.2162C31.6272 11.2162 31.6063 11.2214 31.5875 11.2312C31.5435 11.2365 31.5021 11.255 31.4688 11.2844C31.441 11.3161 31.4205 11.3535 31.4086 11.394C31.3967 11.4344 31.3938 11.477 31.4 11.5187Z" fill="#42D4C6"/>
|
||||
<path d="M21.3406 7.49063C21.3062 7.51563 21.3 7.58437 21.2875 7.61875C21.35 7.70312 21.4062 7.69062 21.45 7.65937C21.4937 7.62812 21.5281 7.56875 21.4812 7.52187C21.4343 7.475 21.3687 7.47188 21.3406 7.49063Z" fill="#42D4C6"/>
|
||||
<path d="M32.4563 11.4656C32.5282 11.5281 32.5907 11.6156 32.7094 11.6187L32.8125 11.5281C32.9344 11.5563 33.0532 11.5281 33.0782 11.4563C33.0884 11.4293 33.089 11.3997 33.0799 11.3723C33.0708 11.345 33.0525 11.3217 33.0282 11.3062C32.9344 11.2375 32.8844 11.2438 32.7813 11.3313C32.6945 11.3176 32.6067 11.3114 32.5188 11.3125C32.5006 11.3115 32.4826 11.3162 32.4672 11.3259C32.4518 11.3357 32.4399 11.35 32.433 11.3668C32.4261 11.3837 32.4247 11.4022 32.4288 11.4199C32.433 11.4377 32.4426 11.4536 32.4563 11.4656V11.4656Z" fill="#42D4C6"/>
|
||||
<path d="M32.6844 10.8469C32.6844 10.8187 32.6844 10.7812 32.65 10.7625C32.6435 10.7595 32.6364 10.758 32.6293 10.7579C32.6221 10.7579 32.615 10.7595 32.6085 10.7624C32.602 10.7654 32.5962 10.7697 32.5915 10.7751C32.5868 10.7805 32.5833 10.7869 32.5813 10.7938C32.5813 10.8188 32.5625 10.875 32.6032 10.9C32.6438 10.925 32.6844 10.8625 32.6844 10.8469Z" fill="#42D4C6"/>
|
||||
<path d="M32.8532 10.6875C32.8344 10.7531 33 10.9094 33.075 10.8875C33.15 10.8656 33.1469 10.6781 33.075 10.6344C33.0031 10.5906 32.8719 10.6156 32.8532 10.6875Z" fill="#42D4C6"/>
|
||||
<path d="M19.9407 6.53438C19.9201 6.55032 19.9031 6.57042 19.8909 6.5934C19.8786 6.61637 19.8713 6.64169 19.8696 6.66767C19.8678 6.69365 19.8716 6.71971 19.8806 6.74414C19.8896 6.76856 19.9037 6.7908 19.922 6.80939C19.942 6.83623 19.9674 6.85854 19.9966 6.87486C20.0258 6.89119 20.0582 6.90117 20.0915 6.90412C20.1249 6.90707 20.1584 6.90293 20.1901 6.89199C20.2217 6.88105 20.2507 6.86355 20.2751 6.84063C20.3159 6.80012 20.3409 6.74634 20.3455 6.68901C20.35 6.63169 20.3339 6.57461 20.3001 6.52813C20.2503 6.48395 20.1857 6.46008 20.1192 6.46124C20.0526 6.46239 19.9889 6.4885 19.9407 6.53438V6.53438Z" fill="#42D4C6"/>
|
||||
<path d="M19.6813 5.64374C19.6447 5.66927 19.617 5.70554 19.6019 5.74751C19.5867 5.78949 19.585 5.83512 19.5969 5.87811C19.6332 5.92377 19.6846 5.95509 19.7418 5.96654C19.799 5.97798 19.8584 5.9688 19.9094 5.94061C19.947 5.90517 19.9713 5.85786 19.9781 5.80664C19.9849 5.75543 19.9739 5.70341 19.9469 5.65936C19.8844 5.57498 19.8001 5.56874 19.6813 5.64374Z" fill="#42D4C6"/>
|
||||
<path d="M19.5281 8.95001C19.5937 9.03438 19.6844 9.05938 19.7469 9.00938C19.7818 8.96623 19.806 8.91539 19.8174 8.86105C19.8288 8.80671 19.8271 8.75044 19.8125 8.69688C19.7957 8.67554 19.7746 8.65798 19.7505 8.64533C19.7265 8.63268 19.7 8.62522 19.6729 8.62345C19.6458 8.62168 19.6186 8.62565 19.5931 8.63507C19.5676 8.64448 19.5444 8.65916 19.525 8.67813C19.45 8.75313 19.45 8.84688 19.5281 8.95001Z" fill="#42D4C6"/>
|
||||
<path d="M21.1501 6.525C21.169 6.50008 21.1773 6.46871 21.1732 6.4377C21.1691 6.40669 21.1529 6.37855 21.1282 6.35939C21.1105 6.34497 21.0899 6.33445 21.0678 6.32853C21.0457 6.3226 21.0226 6.32139 21.0001 6.325C20.9001 6.35937 20.8969 6.44376 20.9251 6.55313C21.0094 6.57188 21.0907 6.625 21.1501 6.525Z" fill="#42D4C6"/>
|
||||
<path d="M21.0469 8.53124C21.0205 8.58266 21.0156 8.64242 21.0332 8.69745C21.0507 8.75248 21.0894 8.79833 21.1406 8.82499C21.1918 8.84535 21.2485 8.8468 21.3007 8.82904C21.3528 8.81128 21.3969 8.77548 21.425 8.72812C21.4511 8.67798 21.4562 8.61953 21.4392 8.56561C21.4222 8.5117 21.3845 8.46673 21.3344 8.44062C21.2842 8.41452 21.2258 8.4094 21.1718 8.4264C21.1179 8.44339 21.073 8.4811 21.0469 8.53124V8.53124Z" fill="#42D4C6"/>
|
||||
<path d="M19.3469 8.3875C19.3362 8.40104 19.3283 8.41655 19.3236 8.43314C19.319 8.44974 19.3176 8.4671 19.3196 8.48422C19.3217 8.50134 19.327 8.5179 19.3355 8.53294C19.3439 8.54798 19.3552 8.56119 19.3688 8.57186C19.3823 8.58253 19.3978 8.59044 19.4144 8.59511C19.431 8.59979 19.4484 8.60115 19.4655 8.59912C19.4826 8.59709 19.4991 8.5917 19.5142 8.58327C19.5292 8.57484 19.5425 8.56353 19.5531 8.54999C19.5706 8.51808 19.5774 8.48137 19.5723 8.44533C19.5672 8.40929 19.5506 8.37585 19.525 8.35C19.496 8.33276 19.4616 8.32705 19.4286 8.334C19.3956 8.34095 19.3664 8.36004 19.3469 8.3875V8.3875Z" fill="#42D4C6"/>
|
||||
<path d="M18.3 4.64999C18.3119 4.63652 18.3205 4.62048 18.325 4.60313C18.3272 4.59095 18.326 4.57842 18.3216 4.56687C18.3172 4.55532 18.3097 4.54518 18.3 4.5375V4.64999Z" fill="#42D4C6"/>
|
||||
<path d="M18.3 5.52499V5.75C18.3166 5.75313 18.3335 5.75313 18.35 5.75C18.3666 5.75313 18.3836 5.75271 18.4 5.74876C18.4164 5.7448 18.4317 5.7374 18.445 5.72705C18.4583 5.71671 18.4693 5.70366 18.4772 5.68875C18.485 5.67385 18.4896 5.65743 18.4907 5.64061C18.4932 5.61588 18.49 5.59091 18.4813 5.56762C18.4726 5.54432 18.4587 5.52332 18.4407 5.50624C18.4178 5.49593 18.3925 5.49224 18.3677 5.49556C18.3428 5.49887 18.3194 5.50906 18.3 5.52499Z" fill="#42D4C6"/>
|
||||
<path d="M18.4313 2.97813C18.4125 2.97813 18.375 3.05625 18.4063 3.08125C18.4215 3.0929 18.4402 3.09923 18.4594 3.09923C18.4786 3.09923 18.4973 3.0929 18.5125 3.08125C18.5209 3.06818 18.5253 3.05301 18.5253 3.03751C18.5253 3.02201 18.5209 3.00682 18.5125 2.99376C18.5016 2.98411 18.4884 2.97756 18.4741 2.97482C18.4598 2.97207 18.445 2.97322 18.4313 2.97813V2.97813Z" fill="#42D4C6"/>
|
||||
<path d="M19.4656 7.6875C19.4827 7.66027 19.4933 7.62947 19.4965 7.59749C19.4998 7.56552 19.4956 7.53323 19.4844 7.50312C19.4748 7.46381 19.45 7.4299 19.4154 7.40882C19.3809 7.38774 19.3394 7.3812 19.3 7.39062C19.2313 7.39062 19.0875 7.375 19.05 7.46875C19.0125 7.5625 19.1 7.58438 19.1219 7.62813C19.1389 7.66241 19.1648 7.69152 19.1969 7.71249C19.172 7.74277 19.1569 7.7799 19.1535 7.81896C19.1502 7.85801 19.1588 7.89716 19.1781 7.93124C19.1909 7.95336 19.2081 7.97262 19.2286 7.98785C19.2492 8.00308 19.2726 8.01397 19.2975 8.01982C19.3223 8.02567 19.3481 8.02638 19.3733 8.0219C19.3985 8.01741 19.4224 8.00783 19.4437 7.99375C19.4872 7.96086 19.5179 7.91385 19.5304 7.8608C19.543 7.80776 19.5366 7.752 19.5125 7.70312C19.5062 7.69747 19.4987 7.69316 19.4907 7.69048C19.4826 7.68779 19.4741 7.68678 19.4656 7.6875V7.6875Z" fill="#42D4C6"/>
|
||||
<path d="M18.5125 3.98437C18.4625 4.03125 18.5125 4.1375 18.5375 4.1875C18.5625 4.2375 18.7125 4.27188 18.7625 4.225C18.8125 4.17813 18.7344 4.02812 18.6937 3.9875C18.6678 3.96775 18.6362 3.9568 18.6036 3.95624C18.571 3.95568 18.5391 3.96553 18.5125 3.98437V3.98437Z" fill="#42D4C6"/>
|
||||
<path d="M30.8782 12.6875C30.9 12.6406 30.9157 12.5844 30.8532 12.5469C30.8185 12.5324 30.7798 12.5315 30.7445 12.5442C30.7092 12.5569 30.68 12.5824 30.6625 12.6156C30.6827 12.6603 30.7113 12.7006 30.7469 12.7344C30.7969 12.775 30.8532 12.7438 30.8782 12.6875Z" fill="#42D4C6"/>
|
||||
<path d="M18.9469 7.76562C18.9755 7.74336 18.9952 7.71167 19.0027 7.67619C19.0101 7.64071 19.0047 7.60375 18.9875 7.57188C18.9604 7.54426 18.9262 7.52468 18.8887 7.5153C18.8512 7.50593 18.8118 7.50711 18.775 7.51874C18.7477 7.54609 18.7297 7.58132 18.7236 7.61944C18.7174 7.65757 18.7233 7.69668 18.7406 7.73123C18.7508 7.74826 18.7647 7.76288 18.7811 7.77405C18.7975 7.78523 18.8162 7.7927 18.8358 7.79597C18.8554 7.79924 18.8755 7.79821 18.8946 7.79298C18.9138 7.78774 18.9316 7.77841 18.9469 7.76562V7.76562Z" fill="#42D4C6"/>
|
||||
<path d="M19.3844 7.26874C19.428 7.21357 19.4517 7.1453 19.4517 7.07499C19.4517 7.00467 19.428 6.93641 19.3844 6.88124C19.3662 6.85814 19.3436 6.839 19.3177 6.82499C19.2919 6.81098 19.2635 6.80239 19.2342 6.79976C19.2049 6.79712 19.1754 6.8005 19.1475 6.80968C19.1196 6.81885 19.0939 6.83362 19.0719 6.85311C19.0391 6.87043 19.0107 6.89511 18.989 6.92522C18.9673 6.95533 18.9529 6.99006 18.9468 7.02667C18.9408 7.06329 18.9433 7.1008 18.9541 7.13629C18.965 7.17178 18.9839 7.20427 19.0094 7.23124C19.0549 7.28473 19.1194 7.31851 19.1893 7.3255C19.2593 7.33249 19.3291 7.31215 19.3844 7.26874V7.26874Z" fill="#42D4C6"/>
|
||||
<path d="M18.3344 6.84063L18.3 6.87813V7.20938C18.3535 7.24464 18.4146 7.26647 18.4783 7.273C18.5419 7.27953 18.6062 7.27057 18.6657 7.24687C18.7134 7.20416 18.7432 7.14495 18.749 7.08116C18.7548 7.01737 18.7362 6.95375 18.6969 6.90313C18.6509 6.85572 18.591 6.82412 18.5258 6.81289C18.4607 6.80166 18.3937 6.81137 18.3344 6.84063V6.84063Z" fill="#42D4C6"/>
|
||||
<path d="M19.4188 9.62188C19.4032 9.61417 19.3861 9.61015 19.3688 9.61015C19.3514 9.61015 19.3343 9.61417 19.3188 9.62188C19.2896 9.58753 19.2483 9.56575 19.2035 9.56109C19.1587 9.55644 19.1138 9.56926 19.0782 9.59688C19.0656 9.60532 19.055 9.6162 19.0467 9.62886C19.0385 9.64153 19.0329 9.65572 19.0303 9.6706C19.0276 9.68547 19.0281 9.70072 19.0315 9.71544C19.0348 9.73015 19.0412 9.74403 19.05 9.75625C19.0632 9.78749 19.0872 9.81291 19.1177 9.82784C19.1481 9.84277 19.1829 9.8462 19.2157 9.83751C19.2331 9.83304 19.2491 9.82446 19.2625 9.8125C19.279 9.84558 19.3052 9.87284 19.3375 9.89063C19.3898 9.87818 19.4388 9.85473 19.4813 9.82187C19.5344 9.76562 19.4969 9.66251 19.4188 9.62188Z" fill="#42D4C6"/>
|
||||
<path d="M19.4594 11.0656C19.4417 11.0428 19.4206 11.0228 19.3969 11.0063C19.377 10.9847 19.3529 10.9674 19.326 10.9556C19.2991 10.9438 19.27 10.9378 19.2407 10.9378C19.2113 10.9378 19.1822 10.9438 19.1553 10.9556C19.1285 10.9674 19.1043 10.9847 19.0844 11.0063C19.0846 10.9557 19.0909 10.9053 19.1032 10.8562C19.1182 10.8274 19.1217 10.7939 19.113 10.7626C19.1043 10.7313 19.084 10.7044 19.0563 10.6875C19.0288 10.6583 18.9927 10.6389 18.9532 10.6321C18.9137 10.6254 18.8731 10.6316 18.8375 10.65C18.7923 10.6747 18.7485 10.7018 18.7063 10.7313C18.6865 10.7407 18.6701 10.7559 18.6594 10.775C18.5844 10.8594 18.5906 10.9531 18.6594 11.1281C18.6594 11.1281 18.6594 11.1281 18.6594 11.15C18.6444 11.1152 18.6233 11.0834 18.5969 11.0562C18.5888 11.0453 18.5782 11.0363 18.566 11.0302C18.5537 11.024 18.5403 11.0208 18.5266 11.0208C18.5129 11.0208 18.4994 11.024 18.4872 11.0302C18.475 11.0363 18.4644 11.0453 18.4563 11.0562C18.4563 11.0562 18.4563 11.0562 18.4563 11.0562C18.43 11.0453 18.4019 11.0397 18.3735 11.0397C18.345 11.0397 18.3169 11.0453 18.2906 11.0562V11.3687C18.3148 11.3887 18.3442 11.4011 18.3753 11.4045C18.4065 11.4078 18.4379 11.4019 18.4656 11.3875C18.4878 11.368 18.5054 11.3439 18.5172 11.3169C18.5291 11.29 18.535 11.2607 18.5344 11.2312H18.6063C18.59 11.2587 18.5852 11.2914 18.5928 11.3223C18.6004 11.3533 18.6198 11.3801 18.6469 11.3969C18.6665 11.4082 18.6885 11.4148 18.7111 11.416C18.7337 11.4172 18.7563 11.4131 18.777 11.404C18.7977 11.3949 18.816 11.381 18.8303 11.3634C18.8446 11.3459 18.8546 11.3252 18.8594 11.3031C18.8844 11.2125 18.95 11.2031 19.0219 11.175C19.0844 11.3062 19.1625 11.3563 19.25 11.3406C19.2447 11.3863 19.2546 11.4324 19.2782 11.4719C19.3195 11.5206 19.377 11.5528 19.4401 11.5625C19.5033 11.5723 19.5678 11.559 19.6219 11.525C19.6732 11.4873 19.7089 11.4322 19.7221 11.3699C19.7354 11.3077 19.7253 11.2428 19.6938 11.1875C19.666 11.1513 19.6306 11.1216 19.5901 11.1006C19.5496 11.0795 19.505 11.0676 19.4594 11.0656Z" fill="#42D4C6"/>
|
||||
<path d="M19.4344 10.2906C19.35 10.3531 19.3219 10.4156 19.3407 10.4781C19.3239 10.5168 19.3216 10.5601 19.3342 10.6003C19.3469 10.6405 19.3736 10.6748 19.4094 10.6969C19.4218 10.7056 19.4359 10.7117 19.4507 10.7149C19.4656 10.718 19.4809 10.7182 19.4958 10.7152C19.5107 10.7123 19.5248 10.7064 19.5373 10.6979C19.5499 10.6894 19.5606 10.6784 19.5688 10.6656C19.5786 10.6513 19.586 10.6355 19.5907 10.6188C19.6142 10.6156 19.6366 10.6071 19.6563 10.5937C19.6974 10.5539 19.7238 10.5013 19.7312 10.4446C19.7385 10.3878 19.7265 10.3303 19.6969 10.2812C19.6591 10.2515 19.612 10.2361 19.5639 10.2378C19.5159 10.2395 19.47 10.2582 19.4344 10.2906Z" fill="#42D4C6"/>
|
||||
<path d="M29.3032 13.2469C29.3032 13.2281 29.2781 13.2031 29.2625 13.1844C29.2293 13.149 29.1864 13.1242 29.1391 13.1131C29.0919 13.102 29.0424 13.105 28.9969 13.1219C28.9651 13.1307 28.9363 13.1478 28.9132 13.1714C28.8902 13.195 28.8738 13.2243 28.8657 13.2562H29.3125L29.3032 13.2469Z" fill="#42D4C6"/>
|
||||
<path d="M28.2094 13.1625C28.3031 13.1875 28.3469 13.1375 28.3656 13.05C28.3895 13.0822 28.42 13.1089 28.455 13.1284C28.49 13.1479 28.5288 13.1596 28.5688 13.1629C28.6087 13.1661 28.6489 13.1608 28.6866 13.1473C28.7244 13.1337 28.7588 13.1123 28.7875 13.0844C28.8938 12.9969 28.8875 12.9062 28.7875 12.7719C28.8141 12.6983 28.8309 12.6217 28.8375 12.5437C28.8384 12.5028 28.8231 12.4632 28.7951 12.4334C28.767 12.4036 28.7284 12.386 28.6875 12.3844C28.5844 12.3844 28.4844 12.4125 28.375 12.4312C28.2844 12.325 28.275 12.325 28.1531 12.4312C28.1344 12.4906 28.2313 12.5656 28.1281 12.6062C28.0857 12.5602 28.0408 12.5163 27.9938 12.475C27.9644 12.456 27.9302 12.4459 27.8953 12.4459C27.8604 12.4459 27.8262 12.456 27.7969 12.475C27.7281 12.5094 27.7469 12.575 27.7469 12.6312C27.7469 12.7375 27.8125 12.7969 27.9156 12.85L28.0969 12.7281C28.0984 12.7562 28.0984 12.7844 28.0969 12.8125C28.0969 12.9344 28.0563 12.9687 27.9469 12.9094C27.8984 12.8757 27.8388 12.862 27.7806 12.8714C27.7223 12.8807 27.6699 12.9122 27.6344 12.9594C27.596 12.9947 27.5702 13.0417 27.5612 13.0931C27.5522 13.1445 27.5603 13.1974 27.5844 13.2437L27.6031 13.275H27.9906C28.0076 13.2643 28.0233 13.2517 28.0375 13.2375C28.1188 13.1875 28.1469 13.1437 28.2094 13.1625Z" fill="#42D4C6"/>
|
||||
<path d="M29.9375 12.4656C29.9131 12.4889 29.8941 12.5172 29.8818 12.5486C29.8695 12.58 29.8642 12.6136 29.8663 12.6473C29.8684 12.6809 29.8778 12.7137 29.8939 12.7433C29.9099 12.7729 29.9323 12.7987 29.9594 12.8188C30.0114 12.8646 30.0792 12.8887 30.1485 12.8857C30.2178 12.8828 30.2833 12.8532 30.3313 12.8031C30.3648 12.7404 30.3759 12.6682 30.3629 12.5983C30.3498 12.5284 30.3133 12.4651 30.2594 12.4187C30.2092 12.3862 30.1488 12.3731 30.0896 12.3817C30.0304 12.3903 29.9764 12.4201 29.9375 12.4656V12.4656Z" fill="#42D4C6"/>
|
||||
<path d="M30.4563 11.5594C30.4658 11.5373 30.4706 11.5135 30.4705 11.4895C30.4704 11.4655 30.4654 11.4417 30.4557 11.4197C30.446 11.3978 30.4319 11.378 30.4143 11.3617C30.3966 11.3454 30.3758 11.3329 30.3532 11.325C30.2469 11.2719 30.1844 11.2969 30.125 11.4188C30.0656 11.5406 30.0906 11.6188 30.1688 11.6531C30.2207 11.6631 30.2743 11.6597 30.3246 11.6433C30.3749 11.6269 30.4202 11.598 30.4563 11.5594Z" fill="#42D4C6"/>
|
||||
<path d="M19.7063 12.0281C19.7076 12.0188 19.7076 12.0093 19.7063 12C19.6984 11.9833 19.6872 11.9685 19.6732 11.9563C19.6593 11.9442 19.6431 11.9351 19.6255 11.9295C19.6079 11.9239 19.5893 11.922 19.571 11.924C19.5526 11.9259 19.5349 11.9315 19.5188 11.9406C19.4784 11.973 19.4501 12.0182 19.4388 12.0687C19.4274 12.1193 19.4336 12.1722 19.4563 12.2188C19.474 12.2433 19.4986 12.262 19.527 12.2726C19.5554 12.2832 19.5862 12.2851 19.6157 12.2781V12.2781C19.7001 12.2781 19.7938 12.2781 19.8251 12.1781C19.8314 12.1626 19.8344 12.1459 19.8338 12.1292C19.8333 12.1124 19.8292 12.0959 19.8218 12.0809C19.8144 12.0658 19.8039 12.0525 19.791 12.0418C19.7781 12.0311 19.7631 12.0232 19.7469 12.0188L19.7063 12.0281Z" fill="#42D4C6"/>
|
||||
<path d="M29.625 13.1219C29.5563 13.0687 29.475 13.1 29.4219 13.2C29.4219 13.2 29.4219 13.225 29.4219 13.2344L29.4031 13.2562H29.6531C29.6658 13.2343 29.6699 13.2085 29.6647 13.1837C29.6595 13.1589 29.6454 13.1369 29.625 13.1219V13.1219Z" fill="#42D4C6"/>
|
||||
<path d="M30.0188 10.8094C30.0224 10.7949 30.0229 10.7798 30.0202 10.7652C30.0175 10.7505 30.0116 10.7366 30.003 10.7244C29.9944 10.7122 29.9832 10.702 29.9703 10.6946C29.9574 10.6871 29.943 10.6826 29.9281 10.6812C29.8156 10.6594 29.7344 10.6812 29.7188 10.7312C29.7192 10.7729 29.7307 10.8136 29.7521 10.8493C29.7736 10.885 29.8041 10.9144 29.8406 10.9344C29.8938 10.95 29.9938 10.875 30.0188 10.8094Z" fill="#42D4C6"/>
|
||||
<path d="M21.6906 11.2562C21.5906 11.2562 21.5844 11.1812 21.5406 11.1312C21.5149 11.1016 21.4829 11.0781 21.4469 11.0625C21.4239 11.0158 21.3835 10.9799 21.3344 10.9625C21.3098 10.9509 21.2833 10.9435 21.2563 10.9406C21.2703 10.9349 21.2831 10.9264 21.2938 10.9156C21.375 10.8 21.3813 10.6719 21.2938 10.6031C21.2476 10.5808 21.1955 10.5742 21.1452 10.5844C21.095 10.5945 21.0495 10.6209 21.0157 10.6594C20.9915 10.7019 20.9832 10.7517 20.9924 10.7998C21.0015 10.8479 21.0275 10.8912 21.0656 10.9219C21.0875 10.9374 21.1139 10.9451 21.1406 10.9437C21.125 10.9505 21.1108 10.9604 21.099 10.9727C21.0872 10.9851 21.078 10.9997 21.0719 11.0156V11.0156C20.9656 11.0406 20.9125 11.0969 20.9094 11.1906C20.9086 11.2192 20.9134 11.2476 20.9237 11.2743C20.934 11.301 20.9494 11.3254 20.9692 11.346C20.989 11.3667 21.0127 11.3832 21.0389 11.3946C21.0651 11.406 21.0933 11.4121 21.1219 11.4125L21.3469 11.4375C21.3469 11.4375 21.3469 11.4375 21.3469 11.4563C21.3469 11.475 21.4313 11.4781 21.4406 11.4563C21.45 11.4344 21.4406 11.4563 21.4406 11.4563C21.4659 11.4599 21.491 11.4651 21.5156 11.4719C21.6219 11.5031 21.7688 11.4719 21.7844 11.3875C21.7818 11.3593 21.7718 11.3322 21.7553 11.3091C21.7389 11.2861 21.7165 11.2678 21.6906 11.2562V11.2562Z" fill="#42D4C6"/>
|
||||
<path d="M20.575 10.4813C20.5657 10.5019 20.5609 10.5242 20.5609 10.5469C20.5609 10.5695 20.5657 10.5919 20.575 10.6125C20.586 10.628 20.6006 10.6406 20.6174 10.6493C20.6343 10.658 20.653 10.6625 20.6719 10.6625C20.7532 10.6625 20.775 10.5906 20.7688 10.5094C20.7802 10.5208 20.7941 10.5293 20.8094 10.5344C20.8688 10.5344 20.95 10.5344 20.9844 10.475C21.0188 10.4156 20.9313 10.375 20.9313 10.375C20.9313 10.375 20.7438 10.375 20.7188 10.4125C20.6938 10.45 20.7188 10.4563 20.7438 10.4813C20.6782 10.4438 20.6188 10.425 20.575 10.4813Z" fill="#42D4C6"/>
|
||||
<path d="M25.8125 9.98437C25.7984 9.97589 25.7826 9.97053 25.7663 9.96863C25.7499 9.96674 25.7333 9.96835 25.7177 9.97338C25.702 9.97841 25.6876 9.98674 25.6754 9.9978C25.6632 10.0089 25.6535 10.0224 25.6469 10.0375L25.6313 10.0844C25.6261 10.0675 25.6163 10.0524 25.6031 10.0406C25.607 10.0111 25.6015 9.98104 25.5875 9.95473C25.5735 9.92841 25.5517 9.90711 25.525 9.89375C25.4923 9.8792 25.4553 9.87713 25.4211 9.88793C25.387 9.89874 25.3579 9.92168 25.3395 9.95242C25.321 9.98316 25.3145 10.0196 25.321 10.0548C25.3276 10.09 25.3468 10.1217 25.375 10.1437C25.3751 10.161 25.3794 10.1781 25.3876 10.1933C25.3958 10.2085 25.4075 10.2216 25.4219 10.2312C25.4368 10.2411 25.4536 10.2478 25.4711 10.2511C25.4887 10.2543 25.5067 10.2541 25.5242 10.2503C25.5416 10.2465 25.5582 10.2393 25.5728 10.229C25.5874 10.2188 25.5999 10.2057 25.6094 10.1906C25.6062 10.2189 25.6117 10.2475 25.625 10.2726C25.6384 10.2977 25.6591 10.3181 25.6844 10.3312C25.7305 10.3426 25.7789 10.3403 25.8238 10.3248C25.8687 10.3093 25.9082 10.2811 25.9375 10.2437C25.9719 10.1719 25.8969 10.0281 25.8125 9.98437Z" fill="#42D4C6"/>
|
||||
<path d="M21.2438 10.5406C21.2623 10.517 21.2724 10.4878 21.2724 10.4578C21.2724 10.4278 21.2623 10.3986 21.2438 10.375C21.2366 10.3575 21.2257 10.3417 21.2118 10.3288C21.198 10.3159 21.1815 10.3062 21.1635 10.3003C21.1455 10.2944 21.1264 10.2924 21.1076 10.2946C21.0888 10.2967 21.0707 10.3029 21.0545 10.3127C21.0383 10.3225 21.0244 10.3357 21.0138 10.3514C21.0031 10.3671 20.9961 10.3849 20.993 10.4036C20.9899 10.4222 20.9909 10.4414 20.9959 10.4596C21.0009 10.4779 21.0098 10.4949 21.0219 10.5094C21.0487 10.5408 21.0861 10.5614 21.127 10.5671C21.1679 10.5729 21.2094 10.5635 21.2438 10.5406V10.5406Z" fill="#42D4C6"/>
|
||||
<path d="M23.8063 12.5844C23.7784 12.6383 23.7655 12.6987 23.7688 12.7594C23.7809 12.8131 23.8037 12.8637 23.8359 12.9083C23.8682 12.9529 23.9091 12.9905 23.9563 13.0188C23.9418 13.0525 23.9405 13.0906 23.9526 13.1253C23.9648 13.16 23.9895 13.1889 24.0219 13.2062C24.0381 13.214 24.0556 13.2183 24.0735 13.219C24.0913 13.2197 24.1092 13.2167 24.1258 13.2103C24.1425 13.2039 24.1577 13.1941 24.1705 13.1816C24.1832 13.1691 24.1933 13.1541 24.2001 13.1375C24.2088 13.1161 24.2161 13.0942 24.2219 13.0719C24.3001 13.0281 24.3313 12.9281 24.3626 12.9219C24.3938 12.9156 24.5344 13.0875 24.6969 13.0719C24.7795 13.0533 24.8541 13.0091 24.9102 12.9458C24.9663 12.8824 25.001 12.803 25.0094 12.7187C25.0173 12.6182 24.9859 12.5186 24.9219 12.4406C24.8732 12.3918 24.8113 12.3581 24.7438 12.3437C24.7443 12.3196 24.7377 12.2958 24.725 12.2753C24.7122 12.2548 24.6938 12.2384 24.6719 12.2281C24.6374 12.2166 24.6 12.2167 24.5655 12.2286C24.531 12.2405 24.5014 12.2634 24.4813 12.2938C24.469 12.3249 24.469 12.3595 24.4813 12.3906C24.4632 12.3853 24.444 12.3845 24.4255 12.3883C24.4069 12.3921 24.3896 12.4004 24.3751 12.4125C24.359 12.4273 24.3471 12.446 24.3405 12.4669C24.3339 12.4877 24.3329 12.5099 24.3376 12.5313L24.3688 12.5688C24.3688 12.5844 24.3407 12.5969 24.3313 12.5969C24.3219 12.5969 24.1657 12.4125 24.0001 12.4406C23.9819 12.4455 23.9641 12.4517 23.9469 12.4594C23.8469 12.4844 23.8094 12.5188 23.8063 12.5844Z" fill="#42D4C6"/>
|
||||
<path d="M19.8281 10.8906C19.8342 10.8928 19.8408 10.8928 19.8469 10.8906C19.8205 10.943 19.8067 11.0008 19.8067 11.0594C19.8067 11.118 19.8205 11.1758 19.8469 11.2281C19.8632 11.2509 19.8719 11.2782 19.8719 11.3062C19.8719 11.3343 19.8632 11.3616 19.8469 11.3844C19.8323 11.4242 19.8335 11.4682 19.8504 11.5071C19.8673 11.5461 19.8984 11.5771 19.9375 11.5938C20.0187 11.625 20.0594 11.5937 20.0875 11.5187C20.104 11.4691 20.1306 11.4233 20.1656 11.3844C20.2562 11.3156 20.3562 11.2562 20.4562 11.1906C20.6875 11.35 20.7687 11.3344 20.8687 11.0969C20.8811 11.0686 20.8863 11.0377 20.8838 11.0069C20.8813 10.9761 20.8713 10.9464 20.8546 10.9205C20.8379 10.8945 20.8151 10.873 20.7881 10.858C20.7611 10.843 20.7309 10.8349 20.7 10.8344C20.5857 10.8403 20.4725 10.8592 20.3625 10.8906C20.2781 10.7969 20.1719 10.6969 20.0281 10.7406C20.0151 10.7482 20.0026 10.7566 19.9906 10.7656V10.7656C19.9562 10.7375 19.8594 10.6781 19.8187 10.7094C19.7781 10.7406 19.8 10.8594 19.8281 10.8906Z" fill="#42D4C6"/>
|
||||
<path d="M19.9657 7.75C19.9001 7.79688 19.9657 7.90001 19.9657 7.95001C19.9657 8.00001 20.0626 8.01251 20.1219 7.97188C20.1813 7.93126 20.2001 7.86876 20.1438 7.82189C20.0876 7.77501 20.0344 7.7 19.9657 7.75Z" fill="#42D4C6"/>
|
||||
<path d="M19.8375 9.51562C19.8653 9.53821 19.9001 9.55053 19.9359 9.55053C19.9718 9.55053 20.0065 9.53821 20.0344 9.51562C20.0628 9.49286 20.0813 9.45995 20.086 9.4238C20.0906 9.38766 20.0811 9.35112 20.0594 9.32188C20.0343 9.29596 20.0004 9.28041 19.9644 9.27829C19.9284 9.27618 19.893 9.28766 19.8651 9.31047C19.8371 9.33327 19.8188 9.36573 19.8137 9.40141C19.8086 9.4371 19.8171 9.47341 19.8375 9.50313V9.51562Z" fill="#42D4C6"/>
|
||||
<path d="M20.3532 9.53437C20.3532 9.51249 20.3344 9.44687 20.3031 9.42187C20.2946 9.41319 20.2839 9.40692 20.2721 9.40373C20.2604 9.40055 20.248 9.40054 20.2362 9.40372C20.2244 9.4069 20.2137 9.41316 20.2052 9.42184C20.1966 9.43052 20.1905 9.44131 20.1875 9.45312C20.1875 9.49374 20.1531 9.60624 20.1875 9.63124C20.2219 9.65624 20.3344 9.57187 20.3532 9.53437Z" fill="#42D4C6"/>
|
||||
<path d="M20.6813 9.54375C20.6755 9.55493 20.6703 9.5664 20.6657 9.57812C20.6411 9.5578 20.6101 9.54668 20.5782 9.54668C20.5463 9.54668 20.5153 9.5578 20.4907 9.57812C20.4631 9.61453 20.4481 9.65896 20.4481 9.70467C20.4481 9.75037 20.4631 9.79483 20.4907 9.83124C20.5095 9.85312 20.5907 9.85312 20.6563 9.83124C20.6676 9.85585 20.6848 9.87731 20.7063 9.89374C20.77 9.92812 20.8431 9.94092 20.9147 9.93021C20.9862 9.91951 21.0524 9.88587 21.1032 9.83437C21.1337 9.77857 21.1429 9.7136 21.1291 9.65153C21.1153 9.58946 21.0795 9.53449 21.0282 9.49686C20.975 9.45995 20.9099 9.4443 20.8457 9.45298C20.7815 9.46165 20.7229 9.49403 20.6813 9.54375V9.54375Z" fill="#42D4C6"/>
|
||||
<path d="M20.0376 9.78125C20.0069 9.76993 19.9736 9.76745 19.9416 9.77408C19.9095 9.78071 19.88 9.79618 19.8563 9.81875V9.85626C19.839 9.90061 19.8383 9.94973 19.8544 9.99455C19.8704 10.0394 19.9022 10.0768 19.9438 10.1C20.0595 10.1719 20.1407 10.1656 20.197 10.0781C20.2235 10.0316 20.2333 9.97743 20.2248 9.92455C20.2163 9.87167 20.1899 9.8233 20.1501 9.7875C20.1146 9.77179 20.0746 9.76956 20.0376 9.78125V9.78125Z" fill="#42D4C6"/>
|
||||
<path d="M29.1688 7.85625C29.1337 7.86 29.0998 7.87061 29.0688 7.88749C29.0344 7.97811 29.0688 8.05313 29.125 8.05625C29.1471 8.05788 29.1692 8.05451 29.1898 8.04639C29.2103 8.03827 29.2288 8.02561 29.2438 8.00937C29.2813 7.96562 29.2313 7.875 29.1688 7.85625Z" fill="#42D4C6"/>
|
||||
<path d="M29.4625 8.06874C29.4188 8.06874 29.3156 8.04686 29.3 8.12186C29.2844 8.19686 29.3594 8.25623 29.4 8.28123C29.4406 8.30623 29.5 8.28124 29.5219 8.21249C29.5438 8.14374 29.5219 8.07186 29.4625 8.06874Z" fill="#42D4C6"/>
|
||||
<path d="M29.4219 6.68125C29.4076 6.67286 29.3916 6.66764 29.3751 6.66595C29.3586 6.66427 29.3419 6.66617 29.3262 6.6715C29.3105 6.67684 29.2961 6.6855 29.2841 6.69689C29.272 6.70828 29.2625 6.72212 29.2563 6.7375C29.2188 6.81562 29.2563 6.94064 29.3031 6.96564C29.35 6.99064 29.4657 6.92188 29.4938 6.85938C29.5019 6.84313 29.5065 6.82534 29.5072 6.80719C29.5079 6.78904 29.5048 6.77096 29.498 6.75411C29.4912 6.73727 29.4809 6.72206 29.4678 6.7095C29.4547 6.69694 29.439 6.68731 29.4219 6.68125V6.68125Z" fill="#42D4C6"/>
|
||||
<path d="M29.7844 7.63749C29.7219 7.60937 29.6188 7.66249 29.5625 7.77499C29.5625 7.79999 29.5844 7.85625 29.6187 7.88125C29.6542 7.90598 29.6978 7.91589 29.7404 7.90889C29.7831 7.90188 29.8213 7.87851 29.8469 7.84375C29.8622 7.80748 29.8642 7.76701 29.8528 7.72935C29.8414 7.69169 29.8172 7.65919 29.7844 7.63749V7.63749Z" fill="#42D4C6"/>
|
||||
<path d="M29.3438 9.03125C29.3151 9.09763 29.3103 9.17191 29.3302 9.24143C29.3502 9.31096 29.3936 9.37141 29.4532 9.41249C29.5189 9.43488 29.5902 9.43476 29.6558 9.41212C29.7215 9.38949 29.7777 9.34564 29.8157 9.2875C29.8813 9.16875 29.8156 9.01875 29.6531 8.93437C29.6266 8.91983 29.5974 8.9108 29.5673 8.90782C29.5372 8.90484 29.5067 8.90795 29.4779 8.91699C29.449 8.92604 29.4222 8.94083 29.3992 8.96046C29.3761 8.98009 29.3573 9.00416 29.3438 9.03125V9.03125Z" fill="#42D4C6"/>
|
||||
<path d="M28.2844 9.22812C28.4094 9.30312 28.5251 9.19999 28.5969 9.14374C28.6688 9.08749 28.5594 8.93125 28.4407 8.9C28.4083 8.88967 28.3732 8.89197 28.3425 8.90646C28.3118 8.92096 28.2877 8.94657 28.2751 8.97812C28.2126 9.05937 28.2219 9.19062 28.2844 9.22812Z" fill="#42D4C6"/>
|
||||
<path d="M30.1063 8.36875C30.0815 8.35362 30.0536 8.34426 30.0247 8.34136C29.9958 8.33846 29.9666 8.3421 29.9393 8.352C29.912 8.3619 29.8873 8.37781 29.867 8.39856C29.8466 8.41931 29.8312 8.44436 29.8219 8.47186C29.8002 8.51442 29.7955 8.56369 29.8089 8.60957C29.8222 8.65546 29.8526 8.69451 29.8938 8.71875C29.9527 8.73411 30.0151 8.72991 30.0714 8.70681C30.1278 8.6837 30.1751 8.64293 30.2063 8.59061C30.2169 8.54777 30.2128 8.50262 30.1947 8.46238C30.1765 8.42214 30.1454 8.38917 30.1063 8.36875V8.36875Z" fill="#42D4C6"/>
|
||||
<path d="M30.6719 12.2187C30.6643 12.1612 30.6507 12.1047 30.6313 12.05C30.6148 12.0078 30.5845 11.9725 30.5454 11.9498C30.5062 11.9271 30.4605 11.9184 30.4157 11.925C30.3649 11.9338 30.3189 11.9603 30.2857 11.9997C30.2526 12.0392 30.2344 12.0891 30.2344 12.1406C30.2373 12.1657 30.2452 12.1899 30.2575 12.2119C30.2699 12.2339 30.2864 12.2532 30.3063 12.2687C30.3616 12.3102 30.4309 12.3282 30.4994 12.3188C30.5678 12.3095 30.6298 12.2735 30.6719 12.2187Z" fill="#42D4C6"/>
|
||||
<path d="M28.4031 7.1125C28.3219 7.13437 28.3125 7.15938 28.2938 7.21875C28.2794 7.25812 28.2794 7.30125 28.2938 7.34061C28.3563 7.34061 28.4688 7.39061 28.5094 7.34061C28.55 7.29061 28.4656 7.19374 28.45 7.13124L28.4031 7.1125Z" fill="#42D4C6"/>
|
||||
<path d="M28.7626 8.55625C28.7539 8.60379 28.7608 8.65287 28.7822 8.69621C28.8035 8.73955 28.8383 8.77484 28.8813 8.79688C28.9156 8.80773 28.9525 8.80754 28.9867 8.79633C29.0209 8.78511 29.0507 8.76344 29.0719 8.73437C29.1313 8.60937 29.1094 8.48125 29.0251 8.44375C28.975 8.43251 28.9227 8.43733 28.8756 8.45752C28.8285 8.47772 28.7889 8.51227 28.7626 8.55625V8.55625Z" fill="#42D4C6"/>
|
||||
<path d="M28.4688 10.1562C28.4564 10.2205 28.4645 10.2871 28.492 10.3465C28.5195 10.406 28.5649 10.4553 28.6219 10.4875C28.6969 10.5187 28.8 10.4562 28.8407 10.35C28.8813 10.2437 28.8407 10.1531 28.7219 10.0969C28.6799 10.0736 28.6307 10.0668 28.5839 10.0778C28.5371 10.0888 28.4961 10.1167 28.4688 10.1562V10.1562Z" fill="#42D4C6"/>
|
||||
<path d="M28.8219 9.45312C28.8359 9.46225 28.8518 9.46822 28.8683 9.47063C28.8849 9.47304 28.9018 9.47183 28.9178 9.46708C28.9339 9.46233 28.9487 9.45415 28.9613 9.4431C28.9738 9.43206 28.9839 9.41842 28.9907 9.40313C28.9998 9.38749 29.0056 9.37014 29.0077 9.35216C29.0098 9.33418 29.0081 9.31594 29.0029 9.29862C28.9976 9.28131 28.9888 9.26528 28.977 9.25153C28.9652 9.23778 28.9507 9.22662 28.9344 9.21874C28.9006 9.20536 28.8631 9.20498 28.829 9.21767C28.7949 9.23037 28.7668 9.25526 28.75 9.2875C28.7386 9.31906 28.7396 9.35381 28.753 9.38462C28.7663 9.41543 28.791 9.43995 28.8219 9.45312V9.45312Z" fill="#42D4C6"/>
|
||||
<path d="M28.5781 7.99374C28.5655 7.98767 28.5517 7.98468 28.5377 7.98505C28.5238 7.98541 28.5101 7.98913 28.4979 7.99586C28.4856 8.00259 28.4752 8.01215 28.4674 8.02375C28.4596 8.03534 28.4547 8.04861 28.4531 8.06248C28.4531 8.10623 28.425 8.22186 28.4844 8.23748C28.5437 8.25311 28.6313 8.17813 28.65 8.1375C28.6688 8.09688 28.6437 8.02187 28.5781 7.99374Z" fill="#42D4C6"/>
|
||||
<path d="M31.3375 10.7562C31.3454 10.7024 31.3341 10.6475 31.3055 10.6012C31.2769 10.5549 31.233 10.5202 31.1813 10.5031C31.0813 10.4594 30.9969 10.5031 30.95 10.6344C30.9379 10.6746 30.9397 10.7177 30.955 10.7568C30.9703 10.7959 30.9983 10.8287 31.0344 10.85C31.1126 10.8844 31.3125 10.825 31.3375 10.7562Z" fill="#42D4C6"/>
|
||||
<path d="M31.1438 9.88125C31.1438 9.85312 31.0563 9.83751 31.0188 9.85001C30.998 9.85935 30.9793 9.87273 30.9638 9.88936C30.9482 9.90599 30.9361 9.92554 30.9282 9.94688C30.9292 9.96686 30.9344 9.98639 30.9436 10.0042C30.9528 10.022 30.9656 10.0376 30.9813 10.05C31.041 10.0882 31.1038 10.1217 31.1688 10.15C31.225 10.1781 31.2625 10.15 31.2875 10.0906C31.3125 10.0313 31.2875 10.0406 31.2625 10.0313C31.1969 10 31.175 9.94062 31.1438 9.88125Z" fill="#42D4C6"/>
|
||||
<path d="M30.9875 11.9813C30.994 11.9766 30.9992 11.9705 31.0029 11.9635C31.0065 11.9564 31.0084 11.9486 31.0084 11.9406C31.0084 11.9327 31.0065 11.9249 31.0029 11.9178C30.9992 11.9107 30.994 11.9046 30.9875 11.9C30.9563 11.8813 30.9313 11.8813 30.9094 11.9C30.9029 11.9046 30.8977 11.9107 30.8941 11.9178C30.8904 11.9249 30.8885 11.9327 30.8885 11.9406C30.8885 11.9486 30.8904 11.9564 30.8941 11.9635C30.8977 11.9705 30.9029 11.9766 30.9094 11.9813C30.9137 11.9877 30.9195 11.993 30.9263 11.9966C30.9331 12.0003 30.9407 12.0022 30.9485 12.0022C30.9562 12.0022 30.9638 12.0003 30.9706 11.9966C30.9774 11.993 30.9832 11.9877 30.9875 11.9813V11.9813Z" fill="#42D4C6"/>
|
||||
<path d="M30.8688 11.3812C30.8688 11.3562 30.8376 11.3094 30.8032 11.3125C30.7865 11.3132 30.7707 11.3199 30.7586 11.3314C30.7465 11.3429 30.7391 11.3584 30.7375 11.375C30.7396 11.3943 30.7477 11.4125 30.7605 11.4271C30.7734 11.4416 30.7905 11.4518 30.8094 11.4563C30.8407 11.4625 30.8688 11.4125 30.8688 11.3812Z" fill="#42D4C6"/>
|
||||
<path d="M26.4782 10.1969C26.4487 10.1787 26.4158 10.1665 26.3816 10.161C26.3474 10.1555 26.3124 10.1569 26.2787 10.1651C26.245 10.1732 26.2132 10.1879 26.1852 10.2084C26.1573 10.2289 26.1336 10.2547 26.1157 10.2844C26.1077 10.3193 26.1077 10.3557 26.1157 10.3906C26.0994 10.3783 26.0803 10.3701 26.0602 10.3669C26.04 10.3636 26.0194 10.3653 26 10.3719C25.9663 10.3771 25.9356 10.394 25.9133 10.4198C25.891 10.4456 25.8785 10.4784 25.8782 10.5125C25.8782 10.6156 25.9719 10.6375 26.0563 10.6781C26.1046 10.6418 26.1423 10.5932 26.1657 10.5375C26.1857 10.5703 26.2151 10.5964 26.25 10.6125C26.3129 10.6337 26.3811 10.6325 26.4432 10.6092C26.5053 10.5858 26.5574 10.5417 26.5907 10.4844C26.603 10.4582 26.6098 10.4299 26.6108 10.401C26.6118 10.3721 26.6068 10.3433 26.5963 10.3164C26.5858 10.2895 26.5699 10.265 26.5496 10.2445C26.5292 10.2239 26.505 10.2077 26.4782 10.1969V10.1969Z" fill="#42D4C6"/>
|
||||
<path d="M30.775 7.91562C30.8094 7.93437 30.85 7.87812 30.8656 7.85625C30.8689 7.84266 30.8682 7.82843 30.8638 7.81518C30.8594 7.80193 30.8514 7.79018 30.8407 7.78125C30.8157 7.78125 30.775 7.8 30.7563 7.82188C30.7375 7.84375 30.7406 7.89687 30.775 7.91562Z" fill="#42D4C6"/>
|
||||
<path d="M30.7063 10.7625C30.575 10.7094 30.4656 10.7313 30.4344 10.8125C30.4234 10.8359 30.4174 10.8614 30.4167 10.8873C30.416 10.9131 30.4207 10.9389 30.4305 10.9629C30.4402 10.9868 30.4548 11.0085 30.4734 11.0266C30.492 11.0446 30.514 11.0586 30.5383 11.0677C30.5625 11.0768 30.5884 11.0808 30.6142 11.0794C30.6401 11.078 30.6653 11.0712 30.6885 11.0596C30.7116 11.048 30.732 11.0316 30.7485 11.0117C30.7651 10.9918 30.7773 10.9686 30.7844 10.9437C30.7936 10.9092 30.7909 10.8724 30.7768 10.8396C30.7626 10.8067 30.7378 10.7795 30.7063 10.7625Z" fill="#42D4C6"/>
|
||||
<path d="M30.2657 10.1375C30.2521 10.1739 30.2496 10.2135 30.2585 10.2513C30.2674 10.2891 30.2873 10.3235 30.3157 10.35C30.3276 10.3588 30.3412 10.3649 30.3557 10.3678C30.3702 10.3707 30.3852 10.3703 30.3996 10.3667C30.4139 10.3631 30.4273 10.3564 30.4387 10.347C30.4502 10.3377 30.4594 10.3259 30.4657 10.3125C30.5313 10.2187 30.5438 10.1375 30.5001 10.1031C30.4615 10.0872 30.4194 10.082 30.3781 10.088C30.3369 10.0941 30.298 10.1112 30.2657 10.1375V10.1375Z" fill="#42D4C6"/>
|
||||
<path d="M31.1813 9.29374C31.1421 9.27082 31.096 9.26263 31.0513 9.27065C31.0067 9.27867 30.9663 9.30238 30.9376 9.3375C30.9219 9.37915 30.9194 9.42465 30.9306 9.46773C30.9418 9.51081 30.9661 9.54938 31 9.57813C31.075 9.61563 31.1875 9.55313 31.2375 9.44063C31.2447 9.42751 31.249 9.41297 31.25 9.39804C31.251 9.38311 31.2488 9.36814 31.2434 9.35417C31.2381 9.34019 31.2297 9.32754 31.219 9.31711C31.2083 9.30668 31.1954 9.2987 31.1813 9.29374V9.29374Z" fill="#42D4C6"/>
|
||||
<path d="M30.8125 7.45624C30.8063 7.47201 30.8054 7.48939 30.8099 7.50574C30.8144 7.52209 30.8241 7.53653 30.8375 7.54688C30.8531 7.5515 30.8697 7.55095 30.8849 7.54531C30.9001 7.53968 30.9131 7.52925 30.9219 7.51562C30.9219 7.49687 30.9407 7.41875 30.9219 7.40312C30.9032 7.3875 30.8219 7.43437 30.8125 7.45624Z" fill="#42D4C6"/>
|
||||
<path d="M30.35 9.25623C30.2532 9.19998 30.0907 9.28124 30.0375 9.41561C30.0257 9.43857 30.0188 9.46375 30.0173 9.48954C30.0159 9.51532 30.0198 9.54114 30.0289 9.5653C30.0381 9.58946 30.0522 9.61143 30.0704 9.62979C30.0885 9.64815 30.1103 9.66248 30.1344 9.67186C30.162 9.68737 30.1927 9.69669 30.2243 9.69918C30.2559 9.70166 30.2877 9.69726 30.3174 9.68626C30.3471 9.67527 30.3741 9.65794 30.3964 9.63549C30.4188 9.61304 30.436 9.586 30.4469 9.55624C30.4717 9.50325 30.4755 9.44284 30.4575 9.38717C30.4395 9.3315 30.4011 9.28471 30.35 9.25623V9.25623Z" fill="#42D4C6"/>
|
||||
<path d="M31.3406 12.475H7.51245V26.0781H31.3406V12.475Z" fill="#00BFB3"/>
|
||||
<path d="M8.95935 24.1844V22.9344C10.0437 22.9344 10.4531 21.5094 10.9531 19.3312C11.4156 17.3094 11.9375 15.0219 13.8937 15.0219C15.85 15.0219 16.4562 17.3 17.0187 19.3063C17.4687 20.9094 17.9375 22.5625 18.8218 22.5625C19.7062 22.5625 20.2468 19.8375 20.65 17.65C21.275 14.3438 21.9 10.925 24.3031 10.925C26.6375 10.925 27.0875 13.8875 27.525 16.7531C28.0093 19.9344 28.4625 22.1875 30.0906 22.1875V23.4375C27.2781 23.4375 26.7531 20 26.2875 16.9406C25.9312 14.5969 25.5625 12.175 24.3031 12.175C22.9343 12.175 22.35 15.3344 21.8812 17.875C21.3156 20.9281 20.7843 23.8125 18.8218 23.8125C16.9906 23.8125 16.3937 21.6937 15.8156 19.6469C15.3469 17.9875 14.8781 16.2719 13.8875 16.2719C12.9969 16.2719 12.6375 17.5937 12.1656 19.6094C11.6781 21.7531 11.1219 24.1844 8.95935 24.1844Z" fill="#7DE2D1"/>
|
||||
<path d="M25.45 20.1875C23.9048 20.1875 22.3943 19.7293 21.1096 18.8709C19.8248 18.0124 18.8235 16.7923 18.2322 15.3647C17.6408 13.9372 17.4861 12.3663 17.7876 10.8509C18.089 9.3354 18.8331 7.94334 19.9257 6.85074C21.0183 5.75815 22.4103 5.01407 23.9258 4.71262C25.4413 4.41118 27.0121 4.5659 28.4397 5.15721C29.8672 5.74852 31.0874 6.74986 31.9458 8.03461C32.8043 9.31937 33.2625 10.8298 33.2625 12.375C33.2625 14.447 32.4394 16.4342 30.9742 17.8993C29.5091 19.3644 27.522 20.1875 25.45 20.1875V20.1875ZM25.45 6.75002C24.3374 6.75002 23.2499 7.0799 22.3249 7.69799C21.3998 8.31607 20.6789 9.19459 20.2531 10.2224C19.8274 11.2503 19.716 12.3812 19.933 13.4724C20.1501 14.5635 20.6858 15.5658 21.4725 16.3525C22.2591 17.1392 23.2614 17.6749 24.3526 17.8919C25.4437 18.109 26.5747 17.9976 27.6026 17.5718C28.6304 17.1461 29.5089 16.4251 30.127 15.5001C30.7451 14.5751 31.075 13.4875 31.075 12.375C31.0733 10.8843 30.4799 9.45511 29.4252 8.40157C28.3705 7.34803 26.9407 6.75625 25.45 6.75625V6.75002Z" fill="#20377D"/>
|
||||
<path d="M32.3355 15.2743L30.7887 16.8211L34.6623 20.6947L36.2091 19.1479L32.3355 15.2743Z" fill="#20377D"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1610_107866">
|
||||
<rect width="37.5" height="37.5" fill="white" transform="translate(1.25 1.25)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 450 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="32" height="31" viewBox="0 0 32 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.9546 24.7431V22.8351C28.1846 22.8351 29.9996 21.0191 29.9996 18.7891C29.9996 17.1211 28.9916 15.6461 27.4316 15.0331L26.7036 14.7461L26.8416 13.9761C26.9486 13.3791 26.9996 12.8261 26.9996 12.2891C26.9996 7.02508 22.7176 2.74308 17.4546 2.74308C13.0336 2.74308 9.22263 5.74708 8.18463 10.0481L8.02663 10.7071L7.35063 10.7741C4.24863 11.0811 1.90963 13.6671 1.90963 16.7891C1.90963 20.1221 4.62163 22.8351 7.95463 22.8351V24.7431C3.56863 24.7431 -0.000366211 21.1751 -0.000366211 16.7891C-0.000366211 12.9061 2.75163 9.65308 6.50063 8.96808C7.95463 4.14708 12.3686 0.835083 17.4546 0.835083C23.7706 0.835083 28.9096 5.97208 28.9096 12.2891C28.9096 12.7131 28.8826 13.1401 28.8296 13.5841C30.7226 14.6221 31.9096 16.5911 31.9096 18.7891C31.9096 22.0721 29.2376 24.7431 25.9546 24.7431Z" fill="#535766"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.875 30.7889H15.248L23.121 18.7969H13.571L19.801 8.78894H17.465L10 20.7809H19.446L12.875 30.7889Z" fill="#00BFB3"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -14,11 +14,11 @@ import type { SecurityProductTypes } from '../../common/config';
|
|||
export const getSecurityGetStartedComponent = (
|
||||
services: Services,
|
||||
productTypes: SecurityProductTypes
|
||||
): React.ComponentType =>
|
||||
function GetStartedComponent() {
|
||||
): React.ComponentType<{ indicesExist?: boolean }> =>
|
||||
function GetStartedComponent({ indicesExist }: { indicesExist?: boolean }) {
|
||||
return (
|
||||
<ServicesProvider services={services}>
|
||||
<GetStarted productTypes={productTypes} />
|
||||
<GetStarted productTypes={productTypes} indicesExist={indicesExist} />
|
||||
</ServicesProvider>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -12,8 +12,8 @@ const GetStartedLazy = lazy(() => import('./get_started'));
|
|||
|
||||
const centerLogoStyle = { display: 'flex', margin: 'auto' };
|
||||
|
||||
export const GetStarted = ({ productTypes }: GetStartedProps) => (
|
||||
export const GetStarted = ({ productTypes, indicesExist }: GetStartedProps) => (
|
||||
<Suspense fallback={<EuiLoadingLogo logo="logoSecurity" size="xl" style={centerLogoStyle} />}>
|
||||
<GetStartedLazy productTypes={productTypes} />
|
||||
<GetStartedLazy productTypes={productTypes} indicesExist={indicesExist} />
|
||||
</Suspense>
|
||||
);
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiProgress, EuiSpacer, useEuiTheme } from '@elastic/eui';
|
||||
import React from 'react';
|
||||
import { css } from '@emotion/react';
|
||||
import type { ProductTier } from '../../common/product';
|
||||
|
||||
import { PROGRESS_TRACKER_LABEL } from './translations';
|
||||
|
||||
const ProgressComponent: React.FC<{
|
||||
productTier: ProductTier | undefined;
|
||||
totalActiveSteps: number | null;
|
||||
totalStepsLeft: number | null;
|
||||
}> = ({ productTier, totalActiveSteps, totalStepsLeft }) => {
|
||||
const stepsDone =
|
||||
totalActiveSteps != null && totalStepsLeft != null ? totalActiveSteps - totalStepsLeft : null;
|
||||
const { euiTheme } = useEuiTheme();
|
||||
|
||||
return (
|
||||
<EuiFlexGroup alignItems="center" gutterSize="s">
|
||||
{totalActiveSteps != null && totalStepsLeft != null && stepsDone != null && (
|
||||
<EuiFlexItem grow={true}>
|
||||
<EuiProgress
|
||||
value={stepsDone}
|
||||
max={totalActiveSteps}
|
||||
size="m"
|
||||
label={
|
||||
<span>
|
||||
<span
|
||||
css={css`
|
||||
font-size: 10.5px;
|
||||
font-weight: ${euiTheme.font.weight.bold}}};
|
||||
text-transform: uppercase;
|
||||
`}
|
||||
>
|
||||
{PROGRESS_TRACKER_LABEL}
|
||||
</span>
|
||||
<EuiSpacer size="s" />
|
||||
</span>
|
||||
}
|
||||
valueText={<>{`${stepsDone}/${totalActiveSteps}`}</>}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
);
|
||||
};
|
||||
|
||||
export const Progress = React.memo(ProgressComponent);
|
|
@ -13,24 +13,35 @@ import {
|
|||
getActiveProductsInitialStates,
|
||||
getActiveSectionsInitialStates,
|
||||
} from './reducer';
|
||||
import type { ExpandedCardSteps } from './types';
|
||||
import type {
|
||||
AddFinishedStepAction,
|
||||
CardId,
|
||||
ExpandedCardSteps,
|
||||
StepId,
|
||||
ToggleProductAction,
|
||||
} from './types';
|
||||
import {
|
||||
GetSetUpCardId,
|
||||
AddAndValidateYourDataCardsId,
|
||||
AddIntegrationsSteps,
|
||||
CreateProjectSteps,
|
||||
EnablePrebuiltRulesSteps,
|
||||
GetStartedPageActions,
|
||||
IntroductionSteps,
|
||||
GetStartedWithAlertsCardsId,
|
||||
OverviewSteps,
|
||||
QuickStartSectionCardsId,
|
||||
SectionId,
|
||||
type CardId,
|
||||
type StepId,
|
||||
type ToggleProductAction,
|
||||
type AddFinishedStepAction,
|
||||
ConfigureSteps,
|
||||
ExploreSteps,
|
||||
ViewAlertsSteps,
|
||||
ViewDashboardSteps,
|
||||
} from './types';
|
||||
|
||||
describe('reducer', () => {
|
||||
it('should toggle section correctly', () => {
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
const finishedSteps = {} as Record<CardId, Set<StepId>>;
|
||||
const finishedSteps = {
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
} as Record<CardId, Set<StepId>>;
|
||||
const { activeSections, totalStepsLeft, totalActiveSteps } = setupActiveSections(
|
||||
finishedSteps,
|
||||
activeProducts
|
||||
|
@ -57,7 +68,11 @@ describe('reducer', () => {
|
|||
|
||||
it('should add a finished step correctly', () => {
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
const finishedSteps = {} as Record<CardId, Set<StepId>>;
|
||||
const finishedSteps = {
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
} as Record<CardId, Set<StepId>>;
|
||||
const { activeSections, totalStepsLeft, totalActiveSteps } = setupActiveSections(
|
||||
finishedSteps,
|
||||
activeProducts
|
||||
|
@ -74,41 +89,58 @@ describe('reducer', () => {
|
|||
const action: AddFinishedStepAction = {
|
||||
type: GetStartedPageActions.AddFinishedStep,
|
||||
payload: {
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
sectionId: SectionId.getSetUp,
|
||||
cardId: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
stepId: OverviewSteps.getToKnowElasticSecurity,
|
||||
sectionId: SectionId.quickStart,
|
||||
},
|
||||
};
|
||||
|
||||
const nextState = reducer(initialState, action);
|
||||
|
||||
expect(nextState.finishedSteps[GetSetUpCardId.introduction]).toEqual(
|
||||
new Set([IntroductionSteps.getToKnowElasticSecurity])
|
||||
expect(nextState.finishedSteps[QuickStartSectionCardsId.watchTheOverviewVideo]).toEqual(
|
||||
new Set([OverviewSteps.getToKnowElasticSecurity])
|
||||
);
|
||||
expect(nextState.activeSections).toEqual({
|
||||
getSetUp: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
timeInMins: 0,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
stepsLeft: 4,
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
timeInMins: 0,
|
||||
activeStepIds: [
|
||||
ConfigureSteps.learnAbout,
|
||||
ConfigureSteps.deployElasticAgent,
|
||||
ConfigureSteps.connectToDataSources,
|
||||
ConfigureSteps.enablePrebuiltRules,
|
||||
],
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
stepsLeft: 2,
|
||||
},
|
||||
[SectionId.addAndValidateYourData]: {
|
||||
[AddAndValidateYourDataCardsId.addIntegrations]: {
|
||||
id: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
timeInMins: 0,
|
||||
activeStepIds: [ExploreSteps.viewAlerts, ExploreSteps.analyzeData],
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [AddIntegrationsSteps.connectToDataSources],
|
||||
},
|
||||
[AddAndValidateYourDataCardsId.viewDashboards]: {
|
||||
id: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewDashboardSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
[SectionId.getStartedWithAlerts]: {
|
||||
[GetStartedWithAlertsCardsId.enablePrebuiltRules]: {
|
||||
id: GetStartedWithAlertsCardsId.enablePrebuiltRules,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [EnablePrebuiltRulesSteps.enablePrebuiltRules],
|
||||
},
|
||||
[GetStartedWithAlertsCardsId.viewAlerts]: {
|
||||
id: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewAlertsSteps.viewAlerts],
|
||||
},
|
||||
},
|
||||
});
|
||||
|
@ -118,16 +150,16 @@ describe('reducer', () => {
|
|||
describe('getFinishedStepsInitialStates', () => {
|
||||
it('should return the initial states of finished steps correctly', () => {
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
[GetSetUpCardId.configure]: [],
|
||||
[QuickStartSectionCardsId.createFirstProject]: [CreateProjectSteps.createFirstProject],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: [],
|
||||
} as unknown as Record<CardId, StepId[]>;
|
||||
|
||||
const initialStates = getFinishedStepsInitialStates({ finishedSteps });
|
||||
|
||||
expect(initialStates[GetSetUpCardId.introduction]).toEqual(
|
||||
new Set([IntroductionSteps.getToKnowElasticSecurity])
|
||||
expect(initialStates[QuickStartSectionCardsId.createFirstProject]).toEqual(
|
||||
new Set([CreateProjectSteps.createFirstProject])
|
||||
);
|
||||
expect(initialStates[GetSetUpCardId.configure]).toEqual(new Set([]));
|
||||
expect(initialStates[QuickStartSectionCardsId.watchTheOverviewVideo]).toEqual(new Set([]));
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -145,7 +177,9 @@ describe('getActiveSectionsInitialStates', () => {
|
|||
it('should return the initial states of active cards correctly', () => {
|
||||
const activeProducts = new Set([ProductLine.security]);
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
[QuickStartSectionCardsId.createFirstProject]: new Set([
|
||||
CreateProjectSteps.createFirstProject,
|
||||
]),
|
||||
} as unknown as Record<CardId, Set<StepId>>;
|
||||
|
||||
const {
|
||||
|
@ -158,34 +192,51 @@ describe('getActiveSectionsInitialStates', () => {
|
|||
});
|
||||
|
||||
expect(initialStates).toEqual({
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
activeStepIds: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 4,
|
||||
activeStepIds: [
|
||||
ConfigureSteps.learnAbout,
|
||||
ConfigureSteps.deployElasticAgent,
|
||||
ConfigureSteps.connectToDataSources,
|
||||
ConfigureSteps.enablePrebuiltRules,
|
||||
],
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
},
|
||||
[SectionId.addAndValidateYourData]: {
|
||||
[AddAndValidateYourDataCardsId.addIntegrations]: {
|
||||
id: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 2,
|
||||
activeStepIds: [ExploreSteps.viewAlerts, ExploreSteps.analyzeData],
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [AddIntegrationsSteps.connectToDataSources],
|
||||
},
|
||||
[AddAndValidateYourDataCardsId.viewDashboards]: {
|
||||
id: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewDashboardSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
[SectionId.getStartedWithAlerts]: {
|
||||
[GetStartedWithAlertsCardsId.enablePrebuiltRules]: {
|
||||
id: GetStartedWithAlertsCardsId.enablePrebuiltRules,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [EnablePrebuiltRulesSteps.enablePrebuiltRules],
|
||||
},
|
||||
[GetStartedWithAlertsCardsId.viewAlerts]: {
|
||||
id: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [ViewAlertsSteps.viewAlerts],
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
expect(totalActiveSteps).toEqual(7);
|
||||
expect(totalStepsLeft).toEqual(6);
|
||||
expect(totalActiveSteps).toEqual(6);
|
||||
expect(totalStepsLeft).toEqual(5);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -89,23 +89,7 @@ export const reducer = (state: TogglePanelReducer, action: ReducerActions): Togg
|
|||
}
|
||||
|
||||
if (
|
||||
action.type === GetStartedPageActions.ToggleExpandedCardStep &&
|
||||
action.payload.isCardExpanded != null
|
||||
) {
|
||||
return {
|
||||
...state,
|
||||
expandedCardSteps: {
|
||||
...state.expandedCardSteps,
|
||||
[action.payload.cardId]: {
|
||||
expandedSteps: state.expandedCardSteps[action.payload.cardId]?.expandedSteps ?? [],
|
||||
isExpanded: action.payload.isCardExpanded,
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
if (
|
||||
action.type === GetStartedPageActions.ToggleExpandedCardStep &&
|
||||
action.type === GetStartedPageActions.ToggleExpandedStep &&
|
||||
action.payload.isStepExpanded != null
|
||||
) {
|
||||
// It allows Only One step open at a time
|
||||
|
@ -114,18 +98,18 @@ export const reducer = (state: TogglePanelReducer, action: ReducerActions): Togg
|
|||
return {
|
||||
...state,
|
||||
expandedCardSteps: Object.entries(state.expandedCardSteps).reduce((acc, [cardId, card]) => {
|
||||
if (action.payload.stepId != null && cardId === action.payload.cardId) {
|
||||
if (cardId === action.payload.cardId) {
|
||||
expandedSteps.add(action.payload.stepId);
|
||||
|
||||
acc[action.payload.cardId] = {
|
||||
expandedSteps: [...expandedSteps],
|
||||
isExpanded: state.expandedCardSteps[action.payload.cardId]?.isExpanded,
|
||||
isExpanded: true,
|
||||
};
|
||||
} else {
|
||||
// Remove all other expanded steps in other cards
|
||||
acc[cardId as CardId] = {
|
||||
expandedSteps: [],
|
||||
isExpanded: card.isExpanded,
|
||||
isExpanded: false,
|
||||
};
|
||||
}
|
||||
return acc;
|
||||
|
@ -133,15 +117,15 @@ export const reducer = (state: TogglePanelReducer, action: ReducerActions): Togg
|
|||
};
|
||||
}
|
||||
|
||||
if (action.payload.isStepExpanded === false && action.payload.stepId) {
|
||||
if (action.payload.isStepExpanded === false) {
|
||||
expandedSteps.delete(action.payload.stepId);
|
||||
return {
|
||||
...state,
|
||||
expandedCardSteps: {
|
||||
...state.expandedCardSteps,
|
||||
[action.payload.cardId]: {
|
||||
expandedSteps: [...expandedSteps],
|
||||
isExpanded: state.expandedCardSteps[action.payload.cardId]?.isExpanded,
|
||||
expandedSteps: [],
|
||||
isExpanded: false,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
@ -4,137 +4,201 @@
|
|||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import type { MutableRefObject } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import type { HttpSetup } from '@kbn/core/public';
|
||||
import { ENABLED_FIELD } from '@kbn/security-solution-plugin/common';
|
||||
import type { Step, StepId } from './types';
|
||||
import {
|
||||
SectionId,
|
||||
GetSetUpCardId,
|
||||
IntroductionSteps,
|
||||
QuickStartSectionCardsId,
|
||||
OverviewSteps,
|
||||
type Section,
|
||||
ConfigureSteps,
|
||||
ExploreSteps,
|
||||
AddIntegrationsSteps,
|
||||
ViewDashboardSteps,
|
||||
AddAndValidateYourDataCardsId,
|
||||
GetStartedWithAlertsCardsId,
|
||||
CreateProjectSteps,
|
||||
EnablePrebuiltRulesSteps,
|
||||
ViewAlertsSteps,
|
||||
} from './types';
|
||||
import * as i18n from './translations';
|
||||
import explore from './images/explore.svg';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import { FleetOverviewLink } from './step_links/fleet_overview_link';
|
||||
import { InstallAgentButton } from './step_links/install_agent_button';
|
||||
|
||||
import { AddIntegrationButton } from './step_links/add_integration_button';
|
||||
import { AlertsButton } from './step_links/alerts_link';
|
||||
import connectToDataSources from './images/connect_to_existing_sources.png';
|
||||
import endalbePrebuiltRules from './images/enable_prebuilt_rules.png';
|
||||
import deployElasticAgent from './images/deploy_elastic_agent_to_protect_your_endpoint.png';
|
||||
import learnAboutElasticAgent from './images/learn_about_elastic_agent.png';
|
||||
import enablePrebuiltRules from './images/enable_prebuilt_rules.png';
|
||||
import createProjects from './images/create_projects.png';
|
||||
import viewAlerts from './images/view_alerts.png';
|
||||
import analyzeDataUsingDashboards from './images/analyze_data_using_dashboards.png';
|
||||
import { AddElasticRulesButton } from './step_links/add_elastic_rules_button';
|
||||
import { DashboardButton } from './step_links/dashboard_button';
|
||||
import overviewVideo from './images/overview_video.svg';
|
||||
import { Video } from './card_step/video';
|
||||
import { fetchRuleManagementFilters } from './apis';
|
||||
import { OverviewVideoDescription } from './card_step/overview_video_description';
|
||||
import { ManageProjectsButton } from './step_links/manage_projects_button';
|
||||
|
||||
export const introductionSteps = [
|
||||
export const createProjectSteps = [
|
||||
{
|
||||
id: IntroductionSteps.getToKnowElasticSecurity,
|
||||
title: i18n.INTRODUCTION_STEP1,
|
||||
description: [i18n.INTRODUCTION_STEP1_DESCRIPTION1, i18n.INTRODUCTION_STEP1_DESCRIPTION2],
|
||||
id: CreateProjectSteps.createFirstProject,
|
||||
title: i18n.CREATE_PROJECT_TITLE,
|
||||
icon: { type: 'addDataApp', size: 'xl' as const },
|
||||
description: [i18n.CREATE_PROJECT_DESCRIPTION, <ManageProjectsButton />],
|
||||
splitPanel: (
|
||||
<iframe
|
||||
allowFullScreen
|
||||
className="vidyard_iframe"
|
||||
frameBorder="0"
|
||||
<img src={createProjects} alt={i18n.CREATE_PROJECT_TITLE} height="100%" width="100%" />
|
||||
),
|
||||
},
|
||||
];
|
||||
export const overviewVideoSteps = [
|
||||
{
|
||||
icon: { type: overviewVideo, size: 'xl' as const },
|
||||
title: i18n.WATCH_VIDEO_TITLE,
|
||||
id: OverviewSteps.getToKnowElasticSecurity,
|
||||
description: [<OverviewVideoDescription />],
|
||||
splitPanel: <Video />,
|
||||
},
|
||||
];
|
||||
|
||||
export const addIntegrationsSteps: Array<Step<AddIntegrationsSteps.connectToDataSources>> = [
|
||||
{
|
||||
icon: { type: 'fleetApp', size: 'xl' as const },
|
||||
id: AddIntegrationsSteps.connectToDataSources,
|
||||
title: i18n.ADD_INTEGRATIONS_TITLE,
|
||||
description: [i18n.ADD_INTEGRATIONS_DESCRIPTION, <AddIntegrationButton />],
|
||||
splitPanel: (
|
||||
<img
|
||||
src={connectToDataSources}
|
||||
alt={i18n.ADD_INTEGRATIONS_IMAGE_TITLE}
|
||||
height="100%"
|
||||
width="100%"
|
||||
referrerPolicy="no-referrer"
|
||||
sandbox="allow-scripts allow-same-origin"
|
||||
scrolling="no"
|
||||
src="//play.vidyard.com/K6kKDBbP9SpXife9s2tHNP.html?"
|
||||
title={i18n.WATCH_OVERVIEW_VIDEO_HEADER}
|
||||
/>
|
||||
),
|
||||
timeInMinutes: 3,
|
||||
autoCheckIfStepCompleted: async ({ indicesExist }: { indicesExist: boolean }) =>
|
||||
Promise.resolve(indicesExist),
|
||||
},
|
||||
];
|
||||
|
||||
const configureSteps = [
|
||||
export const viewDashboardSteps = [
|
||||
{
|
||||
id: ConfigureSteps.learnAbout,
|
||||
title: i18n.CONFIGURE_STEP1,
|
||||
description: [
|
||||
i18n.CONFIGURE_STEP1_DESCRIPTION1,
|
||||
i18n.CONFIGURE_STEP1_DESCRIPTION2,
|
||||
<FleetOverviewLink />,
|
||||
],
|
||||
id: ViewDashboardSteps.analyzeData,
|
||||
icon: { type: 'dashboardApp', size: 'xl' as const },
|
||||
title: i18n.VIEW_DASHBOARDS,
|
||||
description: [i18n.VIEW_DASHBOARDS_DESCRIPTION, <DashboardButton />],
|
||||
splitPanel: (
|
||||
<img src={learnAboutElasticAgent} alt={i18n.CONFIGURE_STEP1} height="100%" width="100%" />
|
||||
),
|
||||
},
|
||||
{
|
||||
id: ConfigureSteps.deployElasticAgent,
|
||||
title: i18n.CONFIGURE_STEP2,
|
||||
description: [i18n.CONFIGURE_STEP2_DESCRIPTION1, <InstallAgentButton />],
|
||||
splitPanel: (
|
||||
<img src={deployElasticAgent} alt={i18n.CONFIGURE_STEP2} height="100%" width="100%" />
|
||||
),
|
||||
},
|
||||
{
|
||||
id: ConfigureSteps.connectToDataSources,
|
||||
title: i18n.CONFIGURE_STEP3,
|
||||
description: [i18n.CONFIGURE_STEP3_DESCRIPTION1, <AddIntegrationButton />],
|
||||
productLineRequired: [ProductLine.security],
|
||||
splitPanel: (
|
||||
<img src={connectToDataSources} alt={i18n.CONFIGURE_STEP3} height="100%" width="100%" />
|
||||
),
|
||||
},
|
||||
{
|
||||
id: ConfigureSteps.enablePrebuiltRules,
|
||||
title: i18n.CONFIGURE_STEP4,
|
||||
description: [i18n.CONFIGURE_STEP4_DESCRIPTION1, <AddElasticRulesButton />],
|
||||
splitPanel: (
|
||||
<img src={endalbePrebuiltRules} alt={i18n.CONFIGURE_STEP4} height="100%" width="100%" />
|
||||
<img
|
||||
src={analyzeDataUsingDashboards}
|
||||
alt={i18n.VIEW_DASHBOARDS_IMAGE_TITLE}
|
||||
height="100%"
|
||||
width="100%"
|
||||
/>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
const exploreSteps = [
|
||||
export const enablePrebuildRuleSteps: Array<Step<EnablePrebuiltRulesSteps.enablePrebuiltRules>> = [
|
||||
{
|
||||
id: ExploreSteps.viewAlerts,
|
||||
title: i18n.EXPLORE_STEP1,
|
||||
description: [i18n.EXPLORE_STEP1_DESCRIPTION1, <AlertsButton />],
|
||||
splitPanel: <img src={viewAlerts} alt={i18n.EXPLORE_STEP1} height="100%" width="100%" />,
|
||||
},
|
||||
{
|
||||
id: ExploreSteps.analyzeData,
|
||||
title: i18n.EXPLORE_STEP2,
|
||||
description: [i18n.EXPLORE_STEP2_DESCRIPTION1, <DashboardButton />],
|
||||
title: i18n.ENABLE_RULES,
|
||||
icon: { type: 'advancedSettingsApp', size: 'xl' as const },
|
||||
id: EnablePrebuiltRulesSteps.enablePrebuiltRules,
|
||||
description: [i18n.ENABLE_RULES_DESCRIPTION, <AddElasticRulesButton />],
|
||||
splitPanel: (
|
||||
<img src={analyzeDataUsingDashboards} alt={i18n.EXPLORE_STEP2} height="100%" width="100%" />
|
||||
<img src={enablePrebuiltRules} alt={i18n.ENABLE_RULES} height="100%" width="100%" />
|
||||
),
|
||||
autoCheckIfStepCompleted: async ({
|
||||
abortSignal,
|
||||
kibanaServicesHttp,
|
||||
onError,
|
||||
}: {
|
||||
abortSignal: MutableRefObject<AbortController>;
|
||||
kibanaServicesHttp: HttpSetup;
|
||||
onError?: (e: Error) => void;
|
||||
}) => {
|
||||
// Check if there are any rules installed and enabled
|
||||
try {
|
||||
const data = await fetchRuleManagementFilters({
|
||||
http: kibanaServicesHttp,
|
||||
signal: abortSignal.current.signal,
|
||||
query: {
|
||||
page: 1,
|
||||
per_page: 20,
|
||||
sort_field: 'enabled',
|
||||
sort_order: 'desc',
|
||||
filter: `${ENABLED_FIELD}: true`,
|
||||
},
|
||||
});
|
||||
return data?.total > 0;
|
||||
} catch (e) {
|
||||
if (!abortSignal.current.signal.aborted) {
|
||||
onError?.(e);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export const viewAlertSteps = [
|
||||
{
|
||||
icon: { type: 'watchesApp', size: 'xl' as const },
|
||||
title: i18n.VIEW_ALERTS_TITLE,
|
||||
id: ViewAlertsSteps.viewAlerts,
|
||||
description: [i18n.VIEW_ALERTS_DESCRIPTION, <AlertsButton />],
|
||||
splitPanel: <img src={viewAlerts} alt={i18n.VIEW_ALERTS_TITLE} height="100%" width="100%" />,
|
||||
},
|
||||
];
|
||||
|
||||
export const sections: Section[] = [
|
||||
{
|
||||
id: SectionId.getSetUp,
|
||||
title: i18n.GET_SET_UP_TITLE,
|
||||
id: SectionId.quickStart,
|
||||
title: i18n.SECTION_1_TITLE,
|
||||
cards: [
|
||||
{
|
||||
title: i18n.INTRODUCTION_TITLE,
|
||||
icon: { type: 'securityApp', size: 'xl' },
|
||||
id: GetSetUpCardId.introduction,
|
||||
steps: introductionSteps,
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
steps: createProjectSteps,
|
||||
hideSteps: true,
|
||||
},
|
||||
{
|
||||
icon: { type: 'agentApp', size: 'xl' },
|
||||
title: i18n.CONFIGURE_TITLE,
|
||||
id: GetSetUpCardId.configure,
|
||||
steps: configureSteps,
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
steps: overviewVideoSteps,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: SectionId.addAndValidateYourData,
|
||||
title: i18n.SECTION_2_TITLE,
|
||||
cards: [
|
||||
{
|
||||
id: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
steps: addIntegrationsSteps,
|
||||
},
|
||||
{
|
||||
icon: { type: explore, size: 'xl' },
|
||||
title: i18n.EXPLORE_TITLE,
|
||||
id: GetSetUpCardId.explore,
|
||||
steps: exploreSteps,
|
||||
id: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
steps: viewDashboardSteps,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: SectionId.getStartedWithAlerts,
|
||||
title: i18n.SECTION_3_TITLE,
|
||||
cards: [
|
||||
{
|
||||
id: GetStartedWithAlertsCardsId.enablePrebuiltRules,
|
||||
steps: enablePrebuildRuleSteps,
|
||||
},
|
||||
{
|
||||
id: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
steps: viewAlertSteps,
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export const getSections = () => sections;
|
||||
|
||||
export const getCardById = (stepId: StepId) => {
|
||||
const cards = sections.flatMap((s) => s.cards);
|
||||
return cards.find((c) => c.steps?.find((step) => stepId === step.id));
|
||||
};
|
||||
|
|
|
@ -5,18 +5,34 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import React from 'react';
|
||||
import { LinkButton } from '@kbn/security-solution-navigation/links';
|
||||
import { SecurityPageName } from '@kbn/security-solution-navigation';
|
||||
import { AddAndValidateYourDataCardsId, AddIntegrationsSteps } from '../types';
|
||||
import { useStepContext } from '../context/step_context';
|
||||
import { AddIntegrationCallout } from './add_integration_callout';
|
||||
import { ADD_ELASTIC_RULES, ADD_ELASTIC_RULES_CALLOUT_TITLE } from './translations';
|
||||
|
||||
const AddElasticRulesButtonComponent = () => (
|
||||
<LinkButton id={SecurityPageName.rules} fill>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description2.button"
|
||||
defaultMessage="Add Elastic rules"
|
||||
/>
|
||||
</LinkButton>
|
||||
);
|
||||
const AddElasticRulesButtonComponent = () => {
|
||||
const { finishedSteps } = useStepContext();
|
||||
const isIntegrationsStepComplete = finishedSteps[
|
||||
AddAndValidateYourDataCardsId.addIntegrations
|
||||
]?.has(AddIntegrationsSteps.connectToDataSources);
|
||||
return (
|
||||
<>
|
||||
{!isIntegrationsStepComplete && (
|
||||
<AddIntegrationCallout stepName={ADD_ELASTIC_RULES_CALLOUT_TITLE} />
|
||||
)}
|
||||
<LinkButton
|
||||
id={SecurityPageName.rules}
|
||||
fill
|
||||
className="step-paragraph"
|
||||
disabled={!isIntegrationsStepComplete}
|
||||
>
|
||||
{ADD_ELASTIC_RULES}
|
||||
</LinkButton>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export const AddElasticRulesButton = React.memo(AddElasticRulesButtonComponent);
|
||||
|
|
|
@ -10,8 +10,8 @@ import React from 'react';
|
|||
import { LinkButton } from '@kbn/security-solution-navigation/links';
|
||||
import { ExternalPageName } from '../../navigation/links/constants';
|
||||
|
||||
const AddIntegrationButtonComponent = () => (
|
||||
<LinkButton id={ExternalPageName.integrationsSecurity} fill>
|
||||
const AddIntegrationButtonComponent: React.FC = () => (
|
||||
<LinkButton id={ExternalPageName.integrationsSecurity} fill className="step-paragraph">
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description2.button"
|
||||
defaultMessage="Add integrations"
|
||||
|
|
|
@ -0,0 +1,84 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import React, { useCallback } from 'react';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { EuiCallOut, EuiIcon, useEuiTheme } from '@elastic/eui';
|
||||
import { LinkAnchor } from '@kbn/security-solution-navigation/links';
|
||||
|
||||
import { SecurityPageName } from '@kbn/security-solution-plugin/common';
|
||||
import { useNavigateTo } from '@kbn/security-solution-navigation';
|
||||
|
||||
import { useAddIntegrationsCalloutStyles } from '../styles/add_integrations_callout.styles';
|
||||
import { ADD_INTEGRATIONS_STEP } from './translations';
|
||||
import { AddAndValidateYourDataCardsId, AddIntegrationsSteps, SectionId } from '../types';
|
||||
import { useStepContext } from '../context/step_context';
|
||||
|
||||
const AddIntegrationsCalloutComponent = ({ stepName }: { stepName?: string }) => {
|
||||
const { calloutWrapperStyles, calloutTitleStyles, calloutAnchorStyles } =
|
||||
useAddIntegrationsCalloutStyles();
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const { navigateTo } = useNavigateTo();
|
||||
const { onStepClicked } = useStepContext();
|
||||
|
||||
const toggleStep = useCallback(() => {
|
||||
onStepClicked({
|
||||
stepId: AddIntegrationsSteps.connectToDataSources,
|
||||
cardId: AddAndValidateYourDataCardsId.addIntegrations,
|
||||
sectionId: SectionId.addAndValidateYourData,
|
||||
isExpanded: true,
|
||||
});
|
||||
|
||||
navigateTo({
|
||||
deepLinkId: SecurityPageName.landing,
|
||||
path: `#${AddIntegrationsSteps.connectToDataSources}`,
|
||||
});
|
||||
}, [navigateTo, onStepClicked]);
|
||||
|
||||
return (
|
||||
<EuiCallOut
|
||||
className="eui-displayInlineBlock"
|
||||
title={
|
||||
<>
|
||||
<EuiIcon
|
||||
size="m"
|
||||
type="iInCircle"
|
||||
color={euiTheme.colors.title}
|
||||
className="eui-alignMiddle"
|
||||
/>
|
||||
<span css={calloutTitleStyles}>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.addIntegrationCallout.description"
|
||||
defaultMessage="To {stepName} add integrations first {addIntegration}"
|
||||
values={{
|
||||
addIntegration: (
|
||||
<LinkAnchor
|
||||
id={SecurityPageName.landing}
|
||||
onClick={toggleStep}
|
||||
css={calloutAnchorStyles}
|
||||
>
|
||||
{ADD_INTEGRATIONS_STEP}
|
||||
<EuiIcon type="arrowRight" size="s" css={calloutAnchorStyles} />
|
||||
</LinkAnchor>
|
||||
),
|
||||
stepName: stepName ?? (
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.addIntegrationCallout.link.action"
|
||||
defaultMessage="enable this step"
|
||||
/>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
</span>
|
||||
</>
|
||||
}
|
||||
size="s"
|
||||
css={calloutWrapperStyles}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export const AddIntegrationCallout = React.memo(AddIntegrationsCalloutComponent);
|
|
@ -5,19 +5,52 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { LinkButton } from '@kbn/security-solution-navigation/links';
|
||||
import { SecurityPageName } from '@kbn/security-solution-navigation';
|
||||
|
||||
import React from 'react';
|
||||
import React, { useCallback } from 'react';
|
||||
import { useStepContext } from '../context/step_context';
|
||||
import {
|
||||
AddAndValidateYourDataCardsId,
|
||||
AddIntegrationsSteps,
|
||||
GetStartedWithAlertsCardsId,
|
||||
SectionId,
|
||||
ViewAlertsSteps,
|
||||
} from '../types';
|
||||
import { AddIntegrationCallout } from './add_integration_callout';
|
||||
import { VIEW_ALERTS, VIEW_ALERTS_CALLOUT_TITLE } from './translations';
|
||||
|
||||
const AlertsButtonComponent = () => (
|
||||
<LinkButton id={SecurityPageName.alerts} fill>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description2.button"
|
||||
defaultMessage="View alerts"
|
||||
/>
|
||||
</LinkButton>
|
||||
);
|
||||
const AlertsButtonComponent = () => {
|
||||
const { toggleTaskCompleteStatus, finishedSteps } = useStepContext();
|
||||
const isIntegrationsStepComplete = finishedSteps[
|
||||
AddAndValidateYourDataCardsId.addIntegrations
|
||||
]?.has(AddIntegrationsSteps.connectToDataSources);
|
||||
|
||||
const onClick = useCallback(() => {
|
||||
toggleTaskCompleteStatus({
|
||||
stepId: ViewAlertsSteps.viewAlerts,
|
||||
cardId: GetStartedWithAlertsCardsId.viewAlerts,
|
||||
sectionId: SectionId.getStartedWithAlerts,
|
||||
undo: false,
|
||||
});
|
||||
}, [toggleTaskCompleteStatus]);
|
||||
|
||||
return (
|
||||
<>
|
||||
{!isIntegrationsStepComplete && (
|
||||
<AddIntegrationCallout stepName={VIEW_ALERTS_CALLOUT_TITLE} />
|
||||
)}
|
||||
<LinkButton
|
||||
className="step-paragraph"
|
||||
disabled={!isIntegrationsStepComplete}
|
||||
fill
|
||||
id={SecurityPageName.alerts}
|
||||
onClick={onClick}
|
||||
>
|
||||
{VIEW_ALERTS}
|
||||
</LinkButton>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export const AlertsButton = React.memo(AlertsButtonComponent);
|
||||
|
|
|
@ -5,18 +5,50 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import React from 'react';
|
||||
import React, { useCallback } from 'react';
|
||||
import { LinkButton } from '@kbn/security-solution-navigation/links';
|
||||
import { SecurityPageName } from '@kbn/security-solution-navigation';
|
||||
import {
|
||||
AddAndValidateYourDataCardsId,
|
||||
AddIntegrationsSteps,
|
||||
SectionId,
|
||||
ViewDashboardSteps,
|
||||
} from '../types';
|
||||
import { useStepContext } from '../context/step_context';
|
||||
import { AddIntegrationCallout } from './add_integration_callout';
|
||||
import { GO_TO_DASHBOARDS, VIEW_DASHBOARDS_CALLOUT_TITLE } from './translations';
|
||||
|
||||
const DashboardButtonComponent = () => (
|
||||
<LinkButton id={SecurityPageName.dashboards} fill>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description2.button"
|
||||
defaultMessage="Go to dashboards"
|
||||
/>
|
||||
</LinkButton>
|
||||
);
|
||||
const DashboardButtonComponent = () => {
|
||||
const { toggleTaskCompleteStatus, finishedSteps } = useStepContext();
|
||||
const isIntegrationsStepComplete = finishedSteps[
|
||||
AddAndValidateYourDataCardsId.addIntegrations
|
||||
]?.has(AddIntegrationsSteps.connectToDataSources);
|
||||
|
||||
const onClick = useCallback(() => {
|
||||
toggleTaskCompleteStatus({
|
||||
stepId: ViewDashboardSteps.analyzeData,
|
||||
cardId: AddAndValidateYourDataCardsId.viewDashboards,
|
||||
sectionId: SectionId.addAndValidateYourData,
|
||||
undo: false,
|
||||
});
|
||||
}, [toggleTaskCompleteStatus]);
|
||||
return (
|
||||
<>
|
||||
{!isIntegrationsStepComplete && (
|
||||
<AddIntegrationCallout stepName={VIEW_DASHBOARDS_CALLOUT_TITLE} />
|
||||
)}
|
||||
|
||||
<LinkButton
|
||||
className="step-paragraph"
|
||||
disabled={!isIntegrationsStepComplete}
|
||||
fill
|
||||
id={SecurityPageName.dashboards}
|
||||
onClick={onClick}
|
||||
>
|
||||
{GO_TO_DASHBOARDS}
|
||||
</LinkButton>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export const DashboardButton = React.memo(DashboardButtonComponent);
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { EuiButton } from '@elastic/eui';
|
||||
|
||||
const FleetOverviewLinkComponent = () => (
|
||||
<EuiButton
|
||||
href="https://www.elastic.co/guide/en/fleet/current/fleet-overview.html"
|
||||
target="_blank"
|
||||
fill
|
||||
>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1.linkText"
|
||||
defaultMessage="Go here to learn more!"
|
||||
/>
|
||||
</EuiButton>
|
||||
);
|
||||
|
||||
export const FleetOverviewLink = React.memo(FleetOverviewLinkComponent);
|
|
@ -1,28 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { LinkButton } from '@kbn/security-solution-navigation/links';
|
||||
import { ExternalPageName } from '../../navigation/links/constants';
|
||||
|
||||
const InstallAgentButtonComponent = () => (
|
||||
<LinkButton fill id={ExternalPageName.fleetAgents}>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description2.button"
|
||||
defaultMessage="Install Agent"
|
||||
/>
|
||||
</LinkButton>
|
||||
);
|
||||
|
||||
export const InstallAgentButton = React.memo(InstallAgentButtonComponent);
|
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { EuiIcon, EuiButton } from '@elastic/eui';
|
||||
import { getCloudUrl } from '../../navigation/links/util';
|
||||
import { MANAGE_PROJECTS } from './translations';
|
||||
import { useKibana } from '../../common/services';
|
||||
|
||||
const ManageProjectsButtonComponent = () => {
|
||||
const { cloud } = useKibana().services;
|
||||
|
||||
const href = getCloudUrl('projects', cloud);
|
||||
return (
|
||||
<EuiButton
|
||||
aria-label={MANAGE_PROJECTS}
|
||||
className="step-paragraph"
|
||||
fill
|
||||
href={href}
|
||||
target="_blank"
|
||||
>
|
||||
{MANAGE_PROJECTS}
|
||||
<EuiIcon type="popout" />
|
||||
</EuiButton>
|
||||
);
|
||||
};
|
||||
|
||||
export const ManageProjectsButton = React.memo(ManageProjectsButtonComponent);
|
|
@ -0,0 +1,64 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export const MANAGE_PROJECTS = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.manageProjects',
|
||||
{
|
||||
defaultMessage: 'Manage projects',
|
||||
}
|
||||
);
|
||||
|
||||
export const ADD_ELASTIC_RULES = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.addElasticRules',
|
||||
{
|
||||
defaultMessage: 'Add Elastic rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const ADD_ELASTIC_RULES_CALLOUT_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.addElasticRules.callout.title',
|
||||
{
|
||||
defaultMessage: 'add Elastic rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const ADD_INTEGRATIONS_STEP = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.addIntegrationsStep.title',
|
||||
{
|
||||
defaultMessage: 'Add integrations step',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_ALERTS = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.viewAlerts',
|
||||
{
|
||||
defaultMessage: 'View alerts',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_ALERTS_CALLOUT_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.viewAlerts.callout.title',
|
||||
{
|
||||
defaultMessage: 'view alerts',
|
||||
}
|
||||
);
|
||||
|
||||
export const GO_TO_DASHBOARDS = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.goToDashboards',
|
||||
{
|
||||
defaultMessage: 'Go to dashboards',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_DASHBOARDS_CALLOUT_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.task.viewDashboards.callout.title',
|
||||
{
|
||||
defaultMessage: 'view dashboards',
|
||||
}
|
||||
);
|
|
@ -5,11 +5,18 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { defaultExpandedCards, getStartedStorage } from './storage';
|
||||
import { ConfigureSteps, GetSetUpCardId, IntroductionSteps, type StepId } from './types';
|
||||
import {
|
||||
ACTIVE_PRODUCTS_STORAGE_KEY,
|
||||
defaultExpandedCards,
|
||||
EXPANDED_CARDS_STORAGE_KEY,
|
||||
FINISHED_STEPS_STORAGE_KEY,
|
||||
getStartedStorage,
|
||||
} from './storage';
|
||||
import { CreateProjectSteps, OverviewSteps, QuickStartSectionCardsId, type StepId } from './types';
|
||||
import { storage } from '../common/lib/storage';
|
||||
import type { MockStorage } from '../common/lib/__mocks__/storage';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import { defaultFinishedSteps } from './helpers';
|
||||
|
||||
jest.mock('../common/lib/storage');
|
||||
|
||||
|
@ -24,135 +31,178 @@ describe('useStorage', () => {
|
|||
it('should return the active products from storage', () => {
|
||||
expect(getStartedStorage.getActiveProductsFromStorage()).toEqual([]);
|
||||
|
||||
mockStorage.set('ACTIVE_PRODUCTS', ['product1', 'product2']);
|
||||
expect(getStartedStorage.getActiveProductsFromStorage()).toEqual(['product1', 'product2']);
|
||||
mockStorage.set(ACTIVE_PRODUCTS_STORAGE_KEY, [ProductLine.security, ProductLine.endpoint]);
|
||||
expect(getStartedStorage.getActiveProductsFromStorage()).toEqual([
|
||||
ProductLine.security,
|
||||
ProductLine.endpoint,
|
||||
]);
|
||||
});
|
||||
|
||||
it('should toggle active products in storage', () => {
|
||||
expect(getStartedStorage.toggleActiveProductsInStorage(ProductLine.security)).toEqual([
|
||||
ProductLine.security,
|
||||
]);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('ACTIVE_PRODUCTS', [ProductLine.security]);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith(ACTIVE_PRODUCTS_STORAGE_KEY, [
|
||||
ProductLine.security,
|
||||
]);
|
||||
|
||||
mockStorage.set('ACTIVE_PRODUCTS', [ProductLine.security]);
|
||||
mockStorage.set(ACTIVE_PRODUCTS_STORAGE_KEY, [ProductLine.security]);
|
||||
expect(getStartedStorage.toggleActiveProductsInStorage(ProductLine.security)).toEqual([]);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('ACTIVE_PRODUCTS', []);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith(ACTIVE_PRODUCTS_STORAGE_KEY, []);
|
||||
});
|
||||
|
||||
it('should return the finished steps from storage by card ID', () => {
|
||||
expect(
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(GetSetUpCardId.introduction)
|
||||
).toEqual([]);
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(
|
||||
QuickStartSectionCardsId.createFirstProject
|
||||
)
|
||||
).toEqual([CreateProjectSteps.createFirstProject]);
|
||||
|
||||
mockStorage.set('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
});
|
||||
|
||||
expect(
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(GetSetUpCardId.introduction)
|
||||
).toEqual([IntroductionSteps.getToKnowElasticSecurity, 'step2']);
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(
|
||||
QuickStartSectionCardsId.createFirstProject
|
||||
)
|
||||
).toEqual([CreateProjectSteps.createFirstProject, 'step2']);
|
||||
});
|
||||
|
||||
it('should return all finished steps from storage', () => {
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual({});
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual(defaultFinishedSteps);
|
||||
|
||||
mockStorage.set('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
[GetSetUpCardId.configure]: ['step3'],
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: ['step3'],
|
||||
});
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual({
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
[GetSetUpCardId.configure]: ['step3'],
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: ['step3'],
|
||||
});
|
||||
});
|
||||
|
||||
it('should add a finished step to storage', () => {
|
||||
getStartedStorage.addFinishedStepToStorage(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
QuickStartSectionCardsId.createFirstProject,
|
||||
CreateProjectSteps.createFirstProject
|
||||
);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expect(mockStorage.set).toHaveBeenCalledWith(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [CreateProjectSteps.createFirstProject],
|
||||
});
|
||||
|
||||
mockStorage.set('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [CreateProjectSteps.createFirstProject],
|
||||
});
|
||||
getStartedStorage.addFinishedStepToStorage(GetSetUpCardId.introduction, 'step2' as StepId);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
getStartedStorage.addFinishedStepToStorage(
|
||||
QuickStartSectionCardsId.createFirstProject,
|
||||
'step2' as StepId
|
||||
);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it('should get finished steps from storage by card ID', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
[GetSetUpCardId.configure]: ['step3'],
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: ['step3'],
|
||||
});
|
||||
|
||||
expect(
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(GetSetUpCardId.introduction)
|
||||
).toEqual([IntroductionSteps.getToKnowElasticSecurity, 'step2']);
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(
|
||||
QuickStartSectionCardsId.createFirstProject
|
||||
)
|
||||
).toEqual([CreateProjectSteps.createFirstProject, 'step2']);
|
||||
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
[GetSetUpCardId.configure]: ['step3'],
|
||||
});
|
||||
expect(getStartedStorage.getFinishedStepsFromStorageByCardId(GetSetUpCardId.configure)).toEqual(
|
||||
['step3']
|
||||
);
|
||||
expect(
|
||||
getStartedStorage.getFinishedStepsFromStorageByCardId(
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo
|
||||
)
|
||||
).toEqual(['step3']);
|
||||
});
|
||||
|
||||
it('should get all finished steps from storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
[GetSetUpCardId.configure]: ['step3'],
|
||||
card3: ['step4'],
|
||||
});
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual({
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
[GetSetUpCardId.configure]: ['step3'],
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: ['step3'],
|
||||
card3: ['step4'],
|
||||
});
|
||||
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({});
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual({});
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual({
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: ['step3'],
|
||||
card3: ['step4'],
|
||||
});
|
||||
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {});
|
||||
expect(getStartedStorage.getAllFinishedStepsFromStorage()).toEqual(defaultFinishedSteps);
|
||||
});
|
||||
|
||||
it('should remove a finished step from storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: [IntroductionSteps.getToKnowElasticSecurity, 'step2'],
|
||||
});
|
||||
getStartedStorage.removeFinishedStepFromStorage(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
QuickStartSectionCardsId.createFirstProject,
|
||||
'step2' as StepId
|
||||
);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: ['step2'],
|
||||
expect(mockStorage.set).toHaveBeenCalledWith(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [CreateProjectSteps.createFirstProject],
|
||||
});
|
||||
});
|
||||
|
||||
it('should not remove a default finished step from storage', () => {
|
||||
mockStorage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
});
|
||||
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: ['step2'],
|
||||
});
|
||||
getStartedStorage.removeFinishedStepFromStorage(GetSetUpCardId.introduction, 'step2' as StepId);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('FINISHED_STEPS', {
|
||||
[GetSetUpCardId.introduction]: [],
|
||||
getStartedStorage.removeFinishedStepFromStorage(
|
||||
QuickStartSectionCardsId.createFirstProject,
|
||||
CreateProjectSteps.createFirstProject
|
||||
);
|
||||
expect(mockStorage.get(FINISHED_STEPS_STORAGE_KEY)).toEqual({
|
||||
[QuickStartSectionCardsId.createFirstProject]: [
|
||||
CreateProjectSteps.createFirstProject,
|
||||
'step2',
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it('should get all expanded card steps from storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expandedSteps: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
});
|
||||
const result = getStartedStorage.getAllExpandedCardStepsFromStorage();
|
||||
expect(mockStorage.get).toHaveBeenCalledWith('EXPANDED_CARDS');
|
||||
expect(mockStorage.get).toHaveBeenCalledWith(EXPANDED_CARDS_STORAGE_KEY);
|
||||
expect(result).toEqual({
|
||||
[GetSetUpCardId.introduction]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expandedSteps: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
@ -160,63 +210,67 @@ describe('useStorage', () => {
|
|||
it('should get default expanded card steps from storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce(null);
|
||||
const result = getStartedStorage.getAllExpandedCardStepsFromStorage();
|
||||
expect(mockStorage.get).toHaveBeenCalledWith('EXPANDED_CARDS');
|
||||
expect(mockStorage.get).toHaveBeenCalledWith(EXPANDED_CARDS_STORAGE_KEY);
|
||||
expect(result).toEqual(defaultExpandedCards);
|
||||
});
|
||||
|
||||
it('should reset card steps in storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
});
|
||||
getStartedStorage.resetAllExpandedCardStepsToStorage();
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('EXPANDED_CARDS', {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
isExpanded: true,
|
||||
expect(mockStorage.get(EXPANDED_CARDS_STORAGE_KEY)).toEqual({
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
it('should add a step to expanded card steps in storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
mockStorage.set(EXPANDED_CARDS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [],
|
||||
},
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
});
|
||||
getStartedStorage.addExpandedCardStepToStorage(
|
||||
GetSetUpCardId.configure,
|
||||
ConfigureSteps.learnAbout
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
OverviewSteps.getToKnowElasticSecurity
|
||||
);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('EXPANDED_CARDS', {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expect(mockStorage.get(EXPANDED_CARDS_STORAGE_KEY)).toEqual({
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [],
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [ConfigureSteps.learnAbout],
|
||||
expandedSteps: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
it('should remove a step from expanded card steps in storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: {
|
||||
mockStorage.set(EXPANDED_CARDS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expandedSteps: [OverviewSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
});
|
||||
getStartedStorage.removeExpandedCardStepFromStorage(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
OverviewSteps.getToKnowElasticSecurity
|
||||
);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('EXPANDED_CARDS', {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
isExpanded: true,
|
||||
expect(mockStorage.get(EXPANDED_CARDS_STORAGE_KEY)).toEqual({
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [],
|
||||
},
|
||||
});
|
||||
|
@ -224,16 +278,18 @@ describe('useStorage', () => {
|
|||
|
||||
it('should update a card from expanded card steps in storage', () => {
|
||||
(mockStorage.get as jest.Mock).mockReturnValueOnce({
|
||||
[GetSetUpCardId.introduction]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
isExpanded: true,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expandedSteps: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
});
|
||||
getStartedStorage.removeExpandedCardStepFromStorage(GetSetUpCardId.introduction);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith('EXPANDED_CARDS', {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
getStartedStorage.removeExpandedCardStepFromStorage(
|
||||
QuickStartSectionCardsId.createFirstProject
|
||||
);
|
||||
expect(mockStorage.set).toHaveBeenCalledWith(EXPANDED_CARDS_STORAGE_KEY, {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
expandedSteps: [CreateProjectSteps.createFirstProject],
|
||||
},
|
||||
});
|
||||
});
|
||||
|
|
|
@ -7,20 +7,47 @@
|
|||
|
||||
import type { ProductLine } from '../../common/product';
|
||||
import type { CardId, StepId } from './types';
|
||||
import { GetSetUpCardId } from './types';
|
||||
import { storage } from '../common/lib/storage';
|
||||
|
||||
export const ACTIVE_PRODUCTS_STORAGE_KEY = 'ACTIVE_PRODUCTS';
|
||||
export const FINISHED_STEPS_STORAGE_KEY = 'FINISHED_STEPS';
|
||||
export const EXPANDED_CARDS_STORAGE_KEY = 'EXPANDED_CARDS';
|
||||
import {
|
||||
QuickStartSectionCardsId,
|
||||
AddAndValidateYourDataCardsId,
|
||||
GetStartedWithAlertsCardsId,
|
||||
} from './types';
|
||||
|
||||
import { storage } from '../common/lib/storage';
|
||||
import { defaultFinishedSteps, isDefaultFinishedCardStep } from './helpers';
|
||||
import { getSections } from './sections';
|
||||
|
||||
export const ACTIVE_PRODUCTS_STORAGE_KEY = 'securitySolution.getStarted.activeProducts';
|
||||
export const FINISHED_STEPS_STORAGE_KEY = 'securitySolution.getStarted.finishedSteps';
|
||||
export const EXPANDED_CARDS_STORAGE_KEY = 'securitySolution.getStarted.expandedCards';
|
||||
|
||||
export const defaultExpandedCards = {
|
||||
[GetSetUpCardId.configure]: { isExpanded: true, expandedSteps: [] },
|
||||
[GetSetUpCardId.introduction]: { isExpanded: true, expandedSteps: [] },
|
||||
[GetSetUpCardId.explore]: { isExpanded: true, expandedSteps: [] },
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: { isExpanded: false, expandedSteps: [] },
|
||||
[QuickStartSectionCardsId.createFirstProject]: { isExpanded: false, expandedSteps: [] },
|
||||
[AddAndValidateYourDataCardsId.addIntegrations]: { isExpanded: false, expandedSteps: [] },
|
||||
[AddAndValidateYourDataCardsId.viewDashboards]: { isExpanded: false, expandedSteps: [] },
|
||||
[GetStartedWithAlertsCardsId.enablePrebuiltRules]: { isExpanded: false, expandedSteps: [] },
|
||||
[GetStartedWithAlertsCardsId.viewAlerts]: { isExpanded: false, expandedSteps: [] },
|
||||
};
|
||||
|
||||
export const getStartedStorage = {
|
||||
setDefaultFinishedSteps: (cardId: CardId) => {
|
||||
const allFinishedSteps: Record<CardId, StepId[]> = storage.get(FINISHED_STEPS_STORAGE_KEY);
|
||||
const defaultFinishedStepsByCardId = defaultFinishedSteps[cardId];
|
||||
const hasDefaultFinishedSteps = defaultFinishedStepsByCardId != null;
|
||||
if (!hasDefaultFinishedSteps) {
|
||||
return;
|
||||
}
|
||||
|
||||
storage.set(FINISHED_STEPS_STORAGE_KEY, {
|
||||
...allFinishedSteps,
|
||||
[cardId]: Array.from(
|
||||
// dedupe card steps
|
||||
new Set([...(defaultFinishedStepsByCardId ?? []), ...(allFinishedSteps[cardId] ?? [])])
|
||||
),
|
||||
});
|
||||
},
|
||||
getActiveProductsFromStorage: () => {
|
||||
const activeProducts: ProductLine[] = storage.get(ACTIVE_PRODUCTS_STORAGE_KEY);
|
||||
return activeProducts ?? [];
|
||||
|
@ -37,18 +64,26 @@ export const getStartedStorage = {
|
|||
return activeProducts;
|
||||
},
|
||||
getFinishedStepsFromStorageByCardId: (cardId: CardId) => {
|
||||
const finishedSteps = storage.get(FINISHED_STEPS_STORAGE_KEY) ?? {};
|
||||
const card: StepId[] = finishedSteps[cardId] ?? [];
|
||||
return card;
|
||||
const finishedSteps = getStartedStorage.getAllFinishedStepsFromStorage();
|
||||
const steps: StepId[] = finishedSteps[cardId] ?? [];
|
||||
return steps;
|
||||
},
|
||||
getAllFinishedStepsFromStorage: () => {
|
||||
const allFinishedSteps: Record<CardId, StepId[]> =
|
||||
storage.get(FINISHED_STEPS_STORAGE_KEY) ?? {};
|
||||
return allFinishedSteps;
|
||||
const allFinishedSteps: Record<CardId, StepId[]> = storage.get(FINISHED_STEPS_STORAGE_KEY);
|
||||
if (allFinishedSteps == null) {
|
||||
storage.set(FINISHED_STEPS_STORAGE_KEY, defaultFinishedSteps);
|
||||
} else {
|
||||
getSections().forEach((section) => {
|
||||
section.cards?.forEach((card) => {
|
||||
getStartedStorage.setDefaultFinishedSteps(card.id);
|
||||
});
|
||||
});
|
||||
}
|
||||
return storage.get(FINISHED_STEPS_STORAGE_KEY);
|
||||
},
|
||||
|
||||
addFinishedStepToStorage: (cardId: CardId, stepId: StepId) => {
|
||||
const finishedSteps: Record<CardId, StepId[]> = storage.get(FINISHED_STEPS_STORAGE_KEY) ?? {};
|
||||
const finishedSteps = getStartedStorage.getAllFinishedStepsFromStorage();
|
||||
const card: StepId[] = finishedSteps[cardId] ?? [];
|
||||
if (card.indexOf(stepId) < 0) {
|
||||
card.push(stepId);
|
||||
|
@ -56,7 +91,10 @@ export const getStartedStorage = {
|
|||
}
|
||||
},
|
||||
removeFinishedStepFromStorage: (cardId: CardId, stepId: StepId) => {
|
||||
const finishedSteps = storage.get(FINISHED_STEPS_STORAGE_KEY) ?? {};
|
||||
if (isDefaultFinishedCardStep(cardId, stepId)) {
|
||||
return;
|
||||
}
|
||||
const finishedSteps = getStartedStorage.getAllFinishedStepsFromStorage();
|
||||
const steps: StepId[] = finishedSteps[cardId] ?? [];
|
||||
const index = steps.indexOf(stepId);
|
||||
if (index >= 0) {
|
||||
|
@ -78,24 +116,24 @@ export const getStartedStorage = {
|
|||
storage.set(
|
||||
EXPANDED_CARDS_STORAGE_KEY,
|
||||
Object.entries(activeCards).reduce((acc, [cardId, card]) => {
|
||||
acc[cardId as CardId] = { ...card, expandedSteps: [] };
|
||||
acc[cardId as CardId] = defaultExpandedCards[cardId as CardId] ?? card;
|
||||
return acc;
|
||||
}, {} as Record<CardId, { isExpanded: boolean; expandedSteps: StepId[] }>)
|
||||
);
|
||||
},
|
||||
addExpandedCardStepToStorage: (cardId: CardId, stepId?: StepId) => {
|
||||
addExpandedCardStepToStorage: (cardId: CardId, stepId: StepId) => {
|
||||
const activeCards: Record<CardId, { isExpanded: boolean; expandedSteps: StepId[] }> =
|
||||
getStartedStorage.getAllExpandedCardStepsFromStorage();
|
||||
const card = activeCards[cardId]
|
||||
? { ...activeCards[cardId], isExpanded: true }
|
||||
: {
|
||||
? {
|
||||
expandedSteps: [stepId],
|
||||
isExpanded: true,
|
||||
}
|
||||
: {
|
||||
isExpanded: false,
|
||||
expandedSteps: [],
|
||||
};
|
||||
|
||||
if (stepId && card && card.expandedSteps.indexOf(stepId) < 0) {
|
||||
card.expandedSteps.push(stepId);
|
||||
}
|
||||
storage.set(EXPANDED_CARDS_STORAGE_KEY, { ...activeCards, [cardId]: card });
|
||||
},
|
||||
removeExpandedCardStepFromStorage: (cardId: CardId, stepId?: StepId) => {
|
||||
|
@ -111,6 +149,7 @@ export const getStartedStorage = {
|
|||
const index = card.expandedSteps.indexOf(stepId);
|
||||
if (index >= 0) {
|
||||
card.expandedSteps.splice(index, 1);
|
||||
card.isExpanded = false;
|
||||
}
|
||||
}
|
||||
storage.set(EXPANDED_CARDS_STORAGE_KEY, { ...activeCards, [cardId]: card });
|
||||
|
|
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useEuiBackgroundColor, useEuiTheme } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import { useMemo } from 'react';
|
||||
|
||||
export const useAddIntegrationsCalloutStyles = () => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const backgroundColor = useEuiBackgroundColor('primary');
|
||||
|
||||
const customStyles = useMemo(
|
||||
() => ({
|
||||
calloutWrapperStyles: css`
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
border: 1px solid ${euiTheme.colors.lightShade};
|
||||
padding: ${euiTheme.size.xs} ${euiTheme.size.m};
|
||||
background-color: ${backgroundColor};
|
||||
margin-top: ${euiTheme.size.base};
|
||||
`,
|
||||
calloutTitleStyles: css`
|
||||
color: ${euiTheme.colors.title};
|
||||
font-size: ${euiTheme.size.m};
|
||||
font-weight: ${euiTheme.font.weight.regular};
|
||||
line-height: ${euiTheme.base * 1.25}px;
|
||||
margin-left: ${euiTheme.size.xs};
|
||||
`,
|
||||
calloutAnchorStyles: css`
|
||||
margin-left: ${euiTheme.size.s};
|
||||
`,
|
||||
}),
|
||||
[
|
||||
backgroundColor,
|
||||
euiTheme.base,
|
||||
euiTheme.border.radius.medium,
|
||||
euiTheme.colors.lightShade,
|
||||
euiTheme.colors.title,
|
||||
euiTheme.font.weight.regular,
|
||||
euiTheme.size.base,
|
||||
euiTheme.size.m,
|
||||
euiTheme.size.s,
|
||||
euiTheme.size.xs,
|
||||
]
|
||||
);
|
||||
|
||||
return customStyles;
|
||||
};
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useEuiBackgroundColor, useEuiShadow, useEuiTheme } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
|
||||
export const SHADOW_ANIMATION_DURATION = 350;
|
||||
|
||||
export const useCardItemStyles = () => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const shadow = useEuiShadow('l');
|
||||
const iconHoveredBackgroundColor = useEuiBackgroundColor('success');
|
||||
|
||||
return css`
|
||||
&.card-item {
|
||||
padding: ${euiTheme.size.base};
|
||||
margin-bottom: ${euiTheme.size.xs};
|
||||
border-radius: ${euiTheme.size.s};
|
||||
border: 1px solid ${euiTheme.colors.lightShade};
|
||||
box-sizing: content-box;
|
||||
|
||||
&:hover,
|
||||
&.card-expanded {
|
||||
${shadow};
|
||||
transition: box-shadow ${SHADOW_ANIMATION_DURATION}ms ease-out;
|
||||
|
||||
.step-icon {
|
||||
background-color: ${iconHoveredBackgroundColor};
|
||||
}
|
||||
}
|
||||
|
||||
&.card-expanded {
|
||||
border: 2px solid #6092c0;
|
||||
}
|
||||
}
|
||||
`;
|
||||
};
|
|
@ -0,0 +1,89 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useEuiBackgroundColor, useEuiTheme } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import { useMemo } from 'react';
|
||||
|
||||
export const HEIGHT_ANIMATION_DURATION = 250;
|
||||
|
||||
export const useCardStepStyles = () => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const completeStepBackgroundColor = useEuiBackgroundColor('success');
|
||||
|
||||
const customStyles = useMemo(
|
||||
() => ({
|
||||
stepPanelStyles: css`
|
||||
.stepContentWrapper {
|
||||
display: grid;
|
||||
grid-template-rows: 1fr;
|
||||
transition: grid-template-rows ${HEIGHT_ANIMATION_DURATION}ms ease-in;
|
||||
}
|
||||
|
||||
&.step-panel-collapsed .stepContentWrapper {
|
||||
grid-template-rows: 0fr;
|
||||
}
|
||||
|
||||
.stepContent {
|
||||
overflow: hidden;
|
||||
}
|
||||
`,
|
||||
getStepGroundStyles: ({ hasStepContent }: { hasStepContent: boolean }) => css`
|
||||
cursor: ${hasStepContent ? 'pointer' : 'default'};
|
||||
gap: ${euiTheme.size.base};
|
||||
`,
|
||||
stepItemStyles: css`
|
||||
align-self: center;
|
||||
`,
|
||||
stepIconStyles: css`
|
||||
&.step-icon {
|
||||
border-radius: 50%;
|
||||
width: ${euiTheme.size.xxxl};
|
||||
height: ${euiTheme.size.xxxl};
|
||||
padding: ${euiTheme.size.m};
|
||||
background-color: ${euiTheme.colors.body};
|
||||
}
|
||||
|
||||
&.step-icon-done {
|
||||
background-color: ${completeStepBackgroundColor};
|
||||
}
|
||||
`,
|
||||
stepTitleStyles: css`
|
||||
&.step-title {
|
||||
padding-right: ${euiTheme.size.m};
|
||||
line-height: ${euiTheme.size.xxxl};
|
||||
font-size: ${euiTheme.base * 0.875}px;
|
||||
font-weight: ${euiTheme.font.weight.semiBold};
|
||||
vertical-align: middle;
|
||||
}
|
||||
`,
|
||||
allDoneTextStyles: css`
|
||||
&.all-done-badge {
|
||||
background-color: ${completeStepBackgroundColor};
|
||||
color: ${euiTheme.colors.successText};
|
||||
}
|
||||
`,
|
||||
toggleButtonStyles: css`
|
||||
&.toggle-button {
|
||||
margin-left: ${euiTheme.base * 0.375}px;
|
||||
}
|
||||
`,
|
||||
}),
|
||||
[
|
||||
completeStepBackgroundColor,
|
||||
euiTheme.base,
|
||||
euiTheme.colors.body,
|
||||
euiTheme.colors.successText,
|
||||
euiTheme.font.weight.semiBold,
|
||||
euiTheme.size.base,
|
||||
euiTheme.size.m,
|
||||
euiTheme.size.xxxl,
|
||||
]
|
||||
);
|
||||
|
||||
return customStyles;
|
||||
};
|
|
@ -0,0 +1,79 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useEuiShadow, useEuiTheme } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import { useMemo } from 'react';
|
||||
|
||||
export const LEFT_CONTENT_PANEL_WIDTH = 486;
|
||||
export const RIGHT_CONTENT_PANEL_WIDTH = 510;
|
||||
export const RIGHT_CONTENT_HEIGHT = 320;
|
||||
export const RIGHT_CONTENT_WIDTH = 480;
|
||||
|
||||
export const useStepContentStyles = () => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const imageShadow = useEuiShadow('s');
|
||||
|
||||
const customStyles = useMemo(
|
||||
() => ({
|
||||
stepContentGroupStyles: css`
|
||||
&.step-content-group {
|
||||
justify-content: space-between;
|
||||
margin-top: ${euiTheme.size.l};
|
||||
padding: ${euiTheme.size.l};
|
||||
transition: opacity ${euiTheme.animation.normal};
|
||||
overflow: hidden;
|
||||
border: 1px solid ${euiTheme.colors.lightShade};
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
}
|
||||
`,
|
||||
leftContentStyles: css`
|
||||
&.left-panel {
|
||||
padding: 0 0 0 ${euiTheme.size.s};
|
||||
width: ${LEFT_CONTENT_PANEL_WIDTH}px;
|
||||
}
|
||||
`,
|
||||
descriptionStyles: css`
|
||||
&.step-content-description {
|
||||
margin-bottom: 0px;
|
||||
margin-block-end: 0px !important;
|
||||
line-height: ${euiTheme.size.l};
|
||||
|
||||
.step-paragraph {
|
||||
margin-top: ${euiTheme.size.xl};
|
||||
}
|
||||
}
|
||||
`,
|
||||
rightPanelStyles: css`
|
||||
&.right-panel {
|
||||
padding: 0 6px 0 ${euiTheme.size.l};
|
||||
width: ${RIGHT_CONTENT_PANEL_WIDTH}px;
|
||||
}
|
||||
`,
|
||||
rightPanelContentStyles: css`
|
||||
&.right-content-panel {
|
||||
height: ${RIGHT_CONTENT_HEIGHT}px;
|
||||
width: ${RIGHT_CONTENT_WIDTH}px;
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
overflow: hidden;
|
||||
${imageShadow};
|
||||
}
|
||||
`,
|
||||
}),
|
||||
[
|
||||
euiTheme.animation.normal,
|
||||
euiTheme.border.radius.medium,
|
||||
euiTheme.colors.lightShade,
|
||||
euiTheme.size.l,
|
||||
euiTheme.size.s,
|
||||
euiTheme.size.xl,
|
||||
imageShadow,
|
||||
]
|
||||
);
|
||||
|
||||
return customStyles;
|
||||
};
|
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { useEuiTheme } from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import { useMemo } from 'react';
|
||||
import launch from '../images/launch.png';
|
||||
|
||||
export const useWelcomeHeaderStyles = () => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
|
||||
const welcomeHeaderStyles = useMemo(() => {
|
||||
return {
|
||||
headerStyles: css`
|
||||
background-image: url(${launch});
|
||||
background-size: 40%;
|
||||
background-repeat: no-repeat;
|
||||
background-position-x: right;
|
||||
background-position-y: center;
|
||||
padding: ${euiTheme.base * 0.625}px 0;
|
||||
`,
|
||||
headerTitleStyles: css`
|
||||
padding-bottom: ${euiTheme.size.s};
|
||||
font-size: ${euiTheme.base}px;
|
||||
color: ${euiTheme.colors.darkShade};
|
||||
font-weight: ${euiTheme.font.weight.bold};
|
||||
line-height: ${euiTheme.size.l};
|
||||
`,
|
||||
headerSubtitleStyles: css`
|
||||
font-size: ${euiTheme.size.l};
|
||||
color: ${euiTheme.colors.title};
|
||||
font-weight: ${euiTheme.font.weight.bold};
|
||||
`,
|
||||
headerDescriptionStyles: css`
|
||||
font-size: ${euiTheme.base}px;
|
||||
color: ${euiTheme.colors.subduedText};
|
||||
line-height: ${euiTheme.size.l};
|
||||
font-weight: ${euiTheme.font.weight.regular};
|
||||
`,
|
||||
currentPlanWrapperStyles: css`
|
||||
background-color: ${euiTheme.colors.lightestShade};
|
||||
border-radius: 56px;
|
||||
padding: ${euiTheme.size.xs} ${euiTheme.size.xs} ${euiTheme.size.xs} ${euiTheme.size.s};
|
||||
height: ${euiTheme.size.xl};
|
||||
`,
|
||||
currentPlanTextStyles: css`
|
||||
font-size: ${euiTheme.size.m};
|
||||
font-weight: ${euiTheme.font.weight.bold};
|
||||
padding-right: ${euiTheme.size.xs};
|
||||
`,
|
||||
};
|
||||
}, [
|
||||
euiTheme.base,
|
||||
euiTheme.colors.darkShade,
|
||||
euiTheme.colors.lightestShade,
|
||||
euiTheme.colors.subduedText,
|
||||
euiTheme.colors.title,
|
||||
euiTheme.font.weight.bold,
|
||||
euiTheme.font.weight.regular,
|
||||
euiTheme.size.l,
|
||||
euiTheme.size.m,
|
||||
euiTheme.size.s,
|
||||
euiTheme.size.xl,
|
||||
euiTheme.size.xs,
|
||||
]);
|
||||
return welcomeHeaderStyles;
|
||||
};
|
|
@ -7,9 +7,10 @@
|
|||
import React from 'react';
|
||||
import { render } from '@testing-library/react';
|
||||
import { TogglePanel } from './toggle_panel';
|
||||
import { useSetUpSections } from './use_setup_cards';
|
||||
import type { ActiveSections, CardId, ExpandedCardSteps, StepId } from './types';
|
||||
import { GetSetUpCardId, IntroductionSteps, SectionId } from './types';
|
||||
import { useSetUpSections } from './hooks/use_setup_sections';
|
||||
import type { ActiveSections } from './types';
|
||||
import { QuickStartSectionCardsId, SectionId } from './types';
|
||||
|
||||
import { ProductLine } from '../../common/product';
|
||||
|
||||
jest.mock('@elastic/eui', () => ({
|
||||
|
@ -18,42 +19,31 @@ jest.mock('@elastic/eui', () => ({
|
|||
useEuiShadow: jest.fn(),
|
||||
}));
|
||||
|
||||
jest.mock('./use_setup_cards', () => ({
|
||||
useSetUpSections: jest.fn(),
|
||||
}));
|
||||
|
||||
const finishedSteps = {
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
} as unknown as Record<CardId, Set<StepId>>;
|
||||
const activeProducts = new Set([ProductLine.security, ProductLine.cloud]);
|
||||
|
||||
const activeSections = {
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
timeInMins: 3,
|
||||
stepsLeft: 1,
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
},
|
||||
},
|
||||
} as ActiveSections;
|
||||
jest.mock('./hooks/use_setup_sections', () => ({ useSetUpSections: jest.fn() }));
|
||||
jest.mock('./context/step_context');
|
||||
|
||||
describe('TogglePanel', () => {
|
||||
const mockUseSetUpCardSections = {
|
||||
setUpSections: jest.fn(() => <div data-test-subj="mock-sections" />),
|
||||
};
|
||||
|
||||
const onStepClicked = jest.fn();
|
||||
const onStepButtonClicked = jest.fn();
|
||||
const activeProducts = new Set([ProductLine.security, ProductLine.cloud]);
|
||||
|
||||
const activeSections = {
|
||||
[SectionId.quickStart]: {
|
||||
[QuickStartSectionCardsId.createFirstProject]: {
|
||||
id: QuickStartSectionCardsId.createFirstProject,
|
||||
timeInMins: 3,
|
||||
stepsLeft: 1,
|
||||
},
|
||||
[QuickStartSectionCardsId.watchTheOverviewVideo]: {
|
||||
id: QuickStartSectionCardsId.watchTheOverviewVideo,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
},
|
||||
},
|
||||
} as ActiveSections;
|
||||
|
||||
beforeEach(() => {
|
||||
jest.clearAllMocks();
|
||||
|
||||
|
@ -62,15 +52,7 @@ describe('TogglePanel', () => {
|
|||
|
||||
it('should render empty prompt', () => {
|
||||
const { getByText } = render(
|
||||
<TogglePanel
|
||||
activeProducts={new Set()}
|
||||
finishedSteps={finishedSteps}
|
||||
activeSections={activeSections}
|
||||
expandedCardSteps={{} as ExpandedCardSteps}
|
||||
onCardClicked={jest.fn()}
|
||||
onStepClicked={onStepClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
/>
|
||||
<TogglePanel activeProducts={new Set()} activeSections={activeSections} />
|
||||
);
|
||||
|
||||
expect(getByText(`Hmm, there doesn't seem to be anything there`)).toBeInTheDocument();
|
||||
|
@ -81,15 +63,7 @@ describe('TogglePanel', () => {
|
|||
|
||||
it('should render sections', () => {
|
||||
const { getByTestId } = render(
|
||||
<TogglePanel
|
||||
activeProducts={activeProducts}
|
||||
finishedSteps={finishedSteps}
|
||||
activeSections={activeSections}
|
||||
expandedCardSteps={{} as ExpandedCardSteps}
|
||||
onCardClicked={jest.fn()}
|
||||
onStepClicked={onStepClicked}
|
||||
onStepButtonClicked={onStepButtonClicked}
|
||||
/>
|
||||
<TogglePanel activeProducts={activeProducts} activeSections={activeSections} />
|
||||
);
|
||||
|
||||
expect(getByTestId(`mock-sections`)).toBeInTheDocument();
|
||||
|
|
|
@ -6,53 +6,33 @@
|
|||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { EuiEmptyPrompt, EuiFlexGroup, EuiFlexItem, useEuiShadow, useEuiTheme } from '@elastic/eui';
|
||||
import { EuiEmptyPrompt, EuiFlexGroup, EuiFlexItem, useEuiTheme } from '@elastic/eui';
|
||||
|
||||
import { css } from '@emotion/react';
|
||||
|
||||
import * as i18n from './translations';
|
||||
import { useSetUpSections } from './use_setup_cards';
|
||||
import { useSetUpSections } from './hooks/use_setup_sections';
|
||||
|
||||
import type {
|
||||
ActiveSections,
|
||||
CardId,
|
||||
StepId,
|
||||
OnStepClicked,
|
||||
OnStepButtonClicked,
|
||||
OnCardClicked,
|
||||
ExpandedCardSteps,
|
||||
} from './types';
|
||||
import type { ActiveSections } from './types';
|
||||
import type { ProductLine } from '../../common/product';
|
||||
import { useStepContext } from './context/step_context';
|
||||
|
||||
const TogglePanelComponent: React.FC<{
|
||||
activeProducts: Set<ProductLine>;
|
||||
activeSections: ActiveSections | null;
|
||||
expandedCardSteps: ExpandedCardSteps;
|
||||
finishedSteps: Record<CardId, Set<StepId>>;
|
||||
onCardClicked: OnCardClicked;
|
||||
onStepButtonClicked: OnStepButtonClicked;
|
||||
onStepClicked: OnStepClicked;
|
||||
}> = ({
|
||||
finishedSteps,
|
||||
activeSections,
|
||||
activeProducts,
|
||||
expandedCardSteps,
|
||||
onCardClicked,
|
||||
onStepClicked,
|
||||
onStepButtonClicked,
|
||||
}) => {
|
||||
}> = ({ activeSections, activeProducts }) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
|
||||
const shadow = useEuiShadow('s');
|
||||
const { expandedCardSteps, finishedSteps, toggleTaskCompleteStatus, onStepClicked } =
|
||||
useStepContext();
|
||||
|
||||
const { setUpSections } = useSetUpSections({ euiTheme, shadow });
|
||||
const { setUpSections } = useSetUpSections({ euiTheme });
|
||||
const sectionNodes = setUpSections({
|
||||
activeProducts,
|
||||
activeSections,
|
||||
expandedCardSteps,
|
||||
finishedSteps,
|
||||
onCardClicked,
|
||||
onStepButtonClicked,
|
||||
toggleTaskCompleteStatus,
|
||||
onStepClicked,
|
||||
});
|
||||
|
||||
|
|
|
@ -7,81 +7,176 @@
|
|||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export const GET_STARTED_PAGE_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.title',
|
||||
{
|
||||
defaultMessage: `Welcome!`,
|
||||
}
|
||||
);
|
||||
export const GET_STARTED_PAGE_TITLE = (userName: string) =>
|
||||
i18n.translate('xpack.securitySolutionServerless.getStarted.Title', {
|
||||
defaultMessage: `Hi {userName}!`,
|
||||
values: { userName },
|
||||
});
|
||||
|
||||
export const GET_STARTED_PAGE_SUBTITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.subTitle',
|
||||
{
|
||||
defaultMessage: `Let's get started`,
|
||||
defaultMessage: `Get started with Security`,
|
||||
}
|
||||
);
|
||||
|
||||
export const GET_STARTED_PAGE_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.description',
|
||||
{
|
||||
defaultMessage: `Set up your Elastic Security workspace. Use the toggles below to curate a list of tasks that best fits your environment`,
|
||||
defaultMessage: `This area shows you everything you need to know. Feel free to explore all content. You can always come back later at any time.`,
|
||||
}
|
||||
);
|
||||
|
||||
export const STEP_TIME_MIN = (min: number) =>
|
||||
i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepTimeMin',
|
||||
{
|
||||
defaultMessage: 'About {min} {min, plural, =1 {min} other {mins}}',
|
||||
values: { min },
|
||||
}
|
||||
);
|
||||
|
||||
export const STEPS_LEFT = (steps: number) =>
|
||||
i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepsLeft',
|
||||
{
|
||||
defaultMessage: '{steps} {steps, plural, =1 {step} other {steps}} left',
|
||||
values: { steps },
|
||||
}
|
||||
);
|
||||
|
||||
export const GET_SET_UP_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.getSetUp.title',
|
||||
export const CURRENT_PLAN_LABEL = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.currentPlan.label',
|
||||
{
|
||||
defaultMessage: 'Get set up',
|
||||
defaultMessage: 'Current plan:',
|
||||
}
|
||||
);
|
||||
|
||||
export const INTRODUCTION_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.introduction.title',
|
||||
export const PROGRESS_TRACKER_LABEL = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.progressTracker.progressBar.label',
|
||||
{ defaultMessage: 'PROGRESS' }
|
||||
);
|
||||
|
||||
export const SECTION_1_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.section1.title',
|
||||
{
|
||||
defaultMessage: 'Introduction',
|
||||
defaultMessage: 'Quick start',
|
||||
}
|
||||
);
|
||||
|
||||
export const INTRODUCTION_STEP1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step',
|
||||
export const SECTION_2_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.section2.title',
|
||||
{
|
||||
defaultMessage: 'Get to know Elastic Security',
|
||||
defaultMessage: 'Add and validate your data',
|
||||
}
|
||||
);
|
||||
|
||||
export const INTRODUCTION_STEP1_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description1',
|
||||
export const SECTION_3_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.section3.title',
|
||||
{
|
||||
defaultMessage: 'Get started with alerts',
|
||||
}
|
||||
);
|
||||
|
||||
export const CREATE_PROJECT_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.createProject.title',
|
||||
{
|
||||
defaultMessage: 'Create your first project',
|
||||
}
|
||||
);
|
||||
|
||||
export const CREATE_PROJECT_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.createProject.description',
|
||||
{
|
||||
defaultMessage: `Create Elastic Security project with our fully-managed serverless solutions that automatically manage nodes, shards, data tiers and scaling to maintain the health and performance so you can focus on your data and goals.`,
|
||||
}
|
||||
);
|
||||
|
||||
export const WATCH_VIDEO_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.watchVideo.title',
|
||||
{
|
||||
defaultMessage: 'Watch the overview video',
|
||||
}
|
||||
);
|
||||
|
||||
export const WATCH_VIDEO_BUTTON_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.watchVideo.button.title',
|
||||
{
|
||||
defaultMessage: 'Elastic Security',
|
||||
}
|
||||
);
|
||||
|
||||
export const WATCH_VIDEO_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.watchVideo.description1',
|
||||
{
|
||||
defaultMessage: `Elastic Security unifies analytics, EDR, cloud security capabilities, and more into a SaaS solution that helps you improve your organization’s security posture, defend against a wide range of threats, and prevent breaches.
|
||||
`,
|
||||
}
|
||||
);
|
||||
|
||||
export const INTRODUCTION_STEP1_DESCRIPTION2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description2',
|
||||
export const WATCH_VIDEO_DESCRIPTION2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.watchVideo.description2',
|
||||
{
|
||||
defaultMessage: `To explore the platform’s core features, watch the video:`,
|
||||
}
|
||||
);
|
||||
|
||||
export const ADD_INTEGRATIONS_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.addIntegrations.title',
|
||||
{
|
||||
defaultMessage: 'Add integrations',
|
||||
}
|
||||
);
|
||||
|
||||
export const ADD_INTEGRATIONS_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.addIntegrations.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Use third-party integrations to import data from common sources and help you gather relevant information in one place. To find integrations for your use case, search for tools and data providers on the Add integrations page.',
|
||||
}
|
||||
);
|
||||
|
||||
export const ADD_INTEGRATIONS_IMAGE_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.addIntegrations.image.title',
|
||||
{
|
||||
defaultMessage: 'Connect to existing data sources',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_DASHBOARDS = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.viewDashboards.title',
|
||||
{
|
||||
defaultMessage: 'View and analyze your data using dashboards',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_DASHBOARDS_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.viewDashboards.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Use dashboards to visualize data and stay up-to-date with key information. Create your own, or use Elastic’s default dashboards — including alerts, user authentication events, known vulnerabilities, and more.',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_DASHBOARDS_IMAGE_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.viewDashboards.image.title',
|
||||
{
|
||||
defaultMessage: 'Analyze data using dashboards',
|
||||
}
|
||||
);
|
||||
|
||||
export const ENABLE_RULES = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.enableRules.title',
|
||||
{
|
||||
defaultMessage: 'Enable prebuilt rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const ENABLE_RULES_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.enableRules.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Elastic Security comes with prebuilt detection rules that run in the background and create alerts when their conditions are met.',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_ALERTS_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.viewAlerts.title',
|
||||
{
|
||||
defaultMessage: 'View alerts',
|
||||
}
|
||||
);
|
||||
|
||||
export const VIEW_ALERTS_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.step.viewAlerts.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Visualize, sort, filter, and investigate alerts from across your infrastructure. Examine individual alerts of interest, and discover general patterns in alert volume and severity.',
|
||||
}
|
||||
);
|
||||
|
||||
export const PRODUCT_BADGE_ANALYTICS = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.analytics',
|
||||
{
|
||||
|
@ -103,235 +198,6 @@ export const PRODUCT_BADGE_EDR = i18n.translate(
|
|||
}
|
||||
);
|
||||
|
||||
export const WATCH_OVERVIEW_VIDEO_HEADER = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.getToKnowElasticSecurity.header',
|
||||
{
|
||||
defaultMessage: 'Elastic Security',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.title',
|
||||
{
|
||||
defaultMessage: 'Configure',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1',
|
||||
{
|
||||
defaultMessage: 'Learn about Elastic Agent',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP1_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1',
|
||||
{
|
||||
defaultMessage:
|
||||
'Deploy the Elastic Agent to each endpoint you want to protect. This allows it to monitor and protect them by collecting data and enforcing your security policies. It sends that data to the Elastic Stack for analysis and storage.',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP1_DESCRIPTION2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description2',
|
||||
{
|
||||
defaultMessage: 'In the next step, you will deploy the Elastic Agent to your endpoints.',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2',
|
||||
{
|
||||
defaultMessage: 'Deploy Elastic Agent to protect your endpoints',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP2_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description1',
|
||||
{
|
||||
defaultMessage: 'Deploy the Elastic Agent to each endpoint you want to monitor or protect.',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP3 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3',
|
||||
{
|
||||
defaultMessage: 'Connect to existing data sources',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP3_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description1',
|
||||
{
|
||||
defaultMessage:
|
||||
'Use third-party integrations to import data from common sources and help you gather relevant information in one place. To find integrations for your use case, search for tools and data providers on the Add integrations page.',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP3_BUTTON = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.button.title',
|
||||
{
|
||||
defaultMessage: 'Go to integrations',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP4 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4',
|
||||
{
|
||||
defaultMessage: 'Enable prebuilt rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP4_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description1',
|
||||
{
|
||||
defaultMessage:
|
||||
'Elastic Security comes with prebuilt detection rules that run in the background and create alerts when their conditions are met.',
|
||||
}
|
||||
);
|
||||
|
||||
export const CONFIGURE_STEP4_BUTTON = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.button.title',
|
||||
{
|
||||
defaultMessage: 'Add Elastic rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const EXPLORE_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.explore.title',
|
||||
{
|
||||
defaultMessage: 'Explore',
|
||||
}
|
||||
);
|
||||
|
||||
export const EXPLORE_STEP1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1',
|
||||
{
|
||||
defaultMessage: 'View alerts',
|
||||
}
|
||||
);
|
||||
|
||||
export const EXPLORE_STEP1_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description1',
|
||||
{
|
||||
defaultMessage:
|
||||
'Visualize, sort, filter, and investigate alerts from across your infrastructure. Examine individual alerts of interest, and discover general patterns in alert volume and severity.',
|
||||
}
|
||||
);
|
||||
|
||||
export const EXPLORE_STEP2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2',
|
||||
{
|
||||
defaultMessage: 'Analyze data using dashboards',
|
||||
}
|
||||
);
|
||||
|
||||
export const EXPLORE_STEP2_DESCRIPTION1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description1',
|
||||
{
|
||||
defaultMessage:
|
||||
'Use dashboards to visualize data and stay up-to-date with key information. Create your own, or use Elastic’s default dashboards — including alerts, user authentication events, known vulnerabilities, and more.',
|
||||
}
|
||||
);
|
||||
|
||||
export const PROTECT_YOUR_ENVIRONMENT_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.protectYourEnvironmentInRealtime.title',
|
||||
{
|
||||
defaultMessage: 'Protect your environment in realtime',
|
||||
}
|
||||
);
|
||||
|
||||
export const GET_MORE_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.getMoreFromElasticSecurity.title',
|
||||
{
|
||||
defaultMessage: 'Get more from Elastic Security',
|
||||
}
|
||||
);
|
||||
|
||||
export const MASTER_THE_INVESTIGATION_STEP1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step1',
|
||||
{
|
||||
defaultMessage: 'Introduction to investigations',
|
||||
}
|
||||
);
|
||||
|
||||
export const MASTER_THE_INVESTIGATION_STEP2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step2',
|
||||
{
|
||||
defaultMessage: 'Explore process lineage with Analyzer',
|
||||
}
|
||||
);
|
||||
|
||||
export const MASTER_THE_INVESTIGATION_STEP3 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step3',
|
||||
{
|
||||
defaultMessage: 'Explore user and process activity with Session View',
|
||||
}
|
||||
);
|
||||
|
||||
export const MASTER_THE_INVESTIGATION_STEP4 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step4',
|
||||
{
|
||||
defaultMessage: 'Explore threat hunting in Timeline',
|
||||
}
|
||||
);
|
||||
|
||||
export const MASTER_THE_INVESTIGATION_STEP5 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step5',
|
||||
{
|
||||
defaultMessage: 'Introduction to cases',
|
||||
}
|
||||
);
|
||||
|
||||
export const RESPOND_TO_THREATS_STEP1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step1',
|
||||
{
|
||||
defaultMessage: 'Automate response actions with rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const RESPOND_TO_THREATS_STEP2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step2',
|
||||
{
|
||||
defaultMessage: 'Take control of your endpoints with the Response Console',
|
||||
}
|
||||
);
|
||||
|
||||
export const OPTIMIZE_YOUR_WORKSPACE_STEP1 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step1',
|
||||
{
|
||||
defaultMessage: 'Enable Threat Intelligence',
|
||||
}
|
||||
);
|
||||
|
||||
export const OPTIMIZE_YOUR_WORKSPACE_STEP2 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step2',
|
||||
{
|
||||
defaultMessage: 'Enable Entity Analytics',
|
||||
}
|
||||
);
|
||||
|
||||
export const OPTIMIZE_YOUR_WORKSPACE_STEP3 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step3',
|
||||
{
|
||||
defaultMessage: 'Create custom rules',
|
||||
}
|
||||
);
|
||||
|
||||
export const OPTIMIZE_YOUR_WORKSPACE_STEP4 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step4',
|
||||
{
|
||||
defaultMessage: 'Introduction to exceptions',
|
||||
}
|
||||
);
|
||||
|
||||
export const OPTIMIZE_YOUR_WORKSPACE_STEP5 = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step5',
|
||||
{
|
||||
defaultMessage: 'Connect notification systems to get alerts in real-time',
|
||||
}
|
||||
);
|
||||
|
||||
export const TOGGLE_PANEL_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStartedProductLabel.title',
|
||||
{
|
||||
|
@ -388,3 +254,24 @@ export const TOGGLE_PANEL_EMPTY_DESCRIPTION = i18n.translate(
|
|||
defaultMessage: `Switch on a toggle to continue your curated "Get Started" experience`,
|
||||
}
|
||||
);
|
||||
|
||||
export const ALL_DONE_TEXT = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.done.title',
|
||||
{
|
||||
defaultMessage: 'Step complete',
|
||||
}
|
||||
);
|
||||
|
||||
export const COLLAPSE_STEP_BUTTON_LABEL = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.collapseStepButton.label',
|
||||
{
|
||||
defaultMessage: 'Collapse',
|
||||
}
|
||||
);
|
||||
|
||||
export const EXPAND_STEP_BUTTON_LABEL = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.togglePanel.expandStepButton.label',
|
||||
{
|
||||
defaultMessage: 'Expand',
|
||||
}
|
||||
);
|
||||
|
|
|
@ -7,11 +7,13 @@
|
|||
|
||||
import type { EuiIconProps } from '@elastic/eui';
|
||||
import type React from 'react';
|
||||
import type { MutableRefObject } from 'react';
|
||||
import type { HttpSetup } from '@kbn/core/public';
|
||||
|
||||
import type { ProductLine } from '../../common/product';
|
||||
|
||||
export interface Section {
|
||||
cards?: Card[];
|
||||
cards: Card[];
|
||||
icon?: EuiIconProps;
|
||||
id: SectionId;
|
||||
title: string;
|
||||
|
@ -22,37 +24,79 @@ export interface Badge {
|
|||
id: string;
|
||||
}
|
||||
|
||||
export type StepId = IntroductionSteps | ConfigureSteps | ExploreSteps;
|
||||
export type StepId =
|
||||
| CreateProjectSteps
|
||||
| OverviewSteps
|
||||
| AddIntegrationsSteps
|
||||
| ViewDashboardSteps
|
||||
| EnablePrebuiltRulesSteps
|
||||
| ViewAlertsSteps;
|
||||
|
||||
export interface Step {
|
||||
type AutoCheckAddIntegrationsSteps = ({
|
||||
indicesExist,
|
||||
}: {
|
||||
indicesExist: boolean;
|
||||
}) => Promise<boolean>;
|
||||
type AutoCheckEnablePrebuiltRulesSteps = ({
|
||||
abortSignal,
|
||||
kibanaServicesHttp,
|
||||
onError,
|
||||
}: {
|
||||
abortSignal: MutableRefObject<AbortController>;
|
||||
kibanaServicesHttp: HttpSetup;
|
||||
onError?: (error: Error) => void;
|
||||
}) => Promise<boolean>;
|
||||
|
||||
export type CheckIfStepCompleted<T = StepId> =
|
||||
T extends EnablePrebuiltRulesSteps.enablePrebuiltRules
|
||||
? AutoCheckEnablePrebuiltRulesSteps
|
||||
: T extends AddIntegrationsSteps.connectToDataSources
|
||||
? AutoCheckAddIntegrationsSteps
|
||||
: undefined;
|
||||
|
||||
export interface Step<T = StepId> {
|
||||
autoCheckIfStepCompleted?: CheckIfStepCompleted<T>;
|
||||
description?: Array<React.ReactNode | string>;
|
||||
id: StepId;
|
||||
productLineRequired?: ProductLine[];
|
||||
splitPanel?: React.ReactNode;
|
||||
title: string;
|
||||
title?: string;
|
||||
icon?: EuiIconProps;
|
||||
timeInMinutes?: number;
|
||||
}
|
||||
|
||||
export type CardId = GetSetUpCardId;
|
||||
export type CardId =
|
||||
| QuickStartSectionCardsId
|
||||
| AddAndValidateYourDataCardsId
|
||||
| GetStartedWithAlertsCardsId;
|
||||
|
||||
export interface Card {
|
||||
icon?: EuiIconProps;
|
||||
id: CardId;
|
||||
steps?: Step[];
|
||||
title: string;
|
||||
hideSteps?: boolean;
|
||||
}
|
||||
|
||||
export type ActiveSections = Partial<Record<SectionId, Partial<Record<CardId, ActiveCard>>>>;
|
||||
|
||||
export enum SectionId {
|
||||
getSetUp = 'getSetUp',
|
||||
getMoreFromElasticSecurity = 'getMoreFromElasticSecurity',
|
||||
quickStart = 'quick_start',
|
||||
addAndValidateYourData = 'add_and_validate_your_data',
|
||||
getStartedWithAlerts = 'get_started_with_alerts',
|
||||
}
|
||||
|
||||
export enum GetSetUpCardId {
|
||||
configure = 'configure',
|
||||
introduction = 'introduction',
|
||||
explore = 'explore',
|
||||
export enum QuickStartSectionCardsId {
|
||||
createFirstProject = 'create_first_project',
|
||||
watchTheOverviewVideo = 'watch_the_overview_video',
|
||||
}
|
||||
|
||||
export enum AddAndValidateYourDataCardsId {
|
||||
addIntegrations = 'add_integrations',
|
||||
viewDashboards = 'view_dashboards',
|
||||
}
|
||||
|
||||
export enum GetStartedWithAlertsCardsId {
|
||||
enablePrebuiltRules = 'enable_prebuilt_rules',
|
||||
viewAlerts = 'view_alerts',
|
||||
}
|
||||
|
||||
export enum BadgeId {
|
||||
|
@ -61,20 +105,28 @@ export enum BadgeId {
|
|||
edr = 'edr',
|
||||
}
|
||||
|
||||
export enum IntroductionSteps {
|
||||
getToKnowElasticSecurity = 'getToKnowElasticSecurity',
|
||||
export enum CreateProjectSteps {
|
||||
createFirstProject = 'create_your_first_project',
|
||||
}
|
||||
|
||||
export enum ConfigureSteps {
|
||||
learnAbout = 'learnAbout',
|
||||
deployElasticAgent = 'deployElasticAgent',
|
||||
connectToDataSources = 'connectToDataSources',
|
||||
enablePrebuiltRules = 'enablePrebuiltRules',
|
||||
export enum OverviewSteps {
|
||||
getToKnowElasticSecurity = 'watch_the_overview_video',
|
||||
}
|
||||
|
||||
export enum ExploreSteps {
|
||||
viewAlerts = 'viewAlerts',
|
||||
analyzeData = 'analyzeData',
|
||||
export enum AddIntegrationsSteps {
|
||||
connectToDataSources = 'add_integrations',
|
||||
}
|
||||
|
||||
export enum ViewDashboardSteps {
|
||||
analyzeData = 'view_and_analyze_your_data',
|
||||
}
|
||||
|
||||
export enum EnablePrebuiltRulesSteps {
|
||||
enablePrebuiltRules = 'enable_prebuilt_rules',
|
||||
}
|
||||
|
||||
export enum ViewAlertsSteps {
|
||||
viewAlerts = 'view_alerts',
|
||||
}
|
||||
|
||||
export interface ActiveCard {
|
||||
|
@ -83,6 +135,7 @@ export interface ActiveCard {
|
|||
stepsLeft: number;
|
||||
activeStepIds: StepId[] | undefined;
|
||||
}
|
||||
|
||||
export interface ExpandedCardStep {
|
||||
isExpanded: boolean;
|
||||
expandedSteps: StepId[];
|
||||
|
@ -112,16 +165,16 @@ export interface RemoveFinishedStepAction {
|
|||
payload: { stepId: StepId; cardId: CardId; sectionId: SectionId };
|
||||
}
|
||||
|
||||
export interface ToggleCardStepAction {
|
||||
type: GetStartedPageActions.ToggleExpandedCardStep;
|
||||
payload: { stepId?: StepId; cardId: CardId; isCardExpanded?: boolean; isStepExpanded?: boolean };
|
||||
export interface ToggleStepAction {
|
||||
type: GetStartedPageActions.ToggleExpandedStep;
|
||||
payload: { stepId: StepId; cardId: CardId; isStepExpanded?: boolean };
|
||||
}
|
||||
|
||||
export type ReducerActions =
|
||||
| ToggleProductAction
|
||||
| AddFinishedStepAction
|
||||
| RemoveFinishedStepAction
|
||||
| ToggleCardStepAction;
|
||||
| ToggleStepAction;
|
||||
|
||||
export interface Switch {
|
||||
id: ProductLine;
|
||||
|
@ -132,7 +185,7 @@ export enum GetStartedPageActions {
|
|||
AddFinishedStep = 'addFinishedStep',
|
||||
RemoveFinishedStep = 'removeFinishedStep',
|
||||
ToggleProduct = 'toggleProduct',
|
||||
ToggleExpandedCardStep = 'toggleExpandedCardStep',
|
||||
ToggleExpandedStep = 'toggleExpandedStep',
|
||||
}
|
||||
|
||||
export type OnStepClicked = ({
|
||||
|
@ -147,15 +200,15 @@ export type OnStepClicked = ({
|
|||
isExpanded: boolean;
|
||||
}) => void;
|
||||
|
||||
export type OnCardClicked = ({
|
||||
cardId,
|
||||
isExpanded,
|
||||
export type HandleStepClicked = ({
|
||||
stepId,
|
||||
isExpandedStep,
|
||||
}: {
|
||||
cardId: CardId;
|
||||
isExpanded: boolean;
|
||||
stepId: StepId;
|
||||
isExpandedStep: boolean;
|
||||
}) => void;
|
||||
|
||||
export type OnStepButtonClicked = ({
|
||||
export type ToggleTaskCompleteStatus = ({
|
||||
stepId,
|
||||
cardId,
|
||||
sectionId,
|
||||
|
|
|
@ -1,284 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import { renderHook, act } from '@testing-library/react-hooks';
|
||||
import { useTogglePanel } from './use_toggle_panel';
|
||||
import { getStartedStorage } from './storage';
|
||||
import { ProductLine } from '../../common/product';
|
||||
import type { SecurityProductTypes } from '../../common/config';
|
||||
import {
|
||||
ConfigureSteps,
|
||||
ExploreSteps,
|
||||
GetSetUpCardId,
|
||||
IntroductionSteps,
|
||||
SectionId,
|
||||
} from './types';
|
||||
|
||||
jest.mock('./storage');
|
||||
|
||||
describe('useTogglePanel', () => {
|
||||
const productTypes = [
|
||||
{ product_line: 'security', product_tier: 'essentials' },
|
||||
{ product_line: 'endpoint', product_tier: 'complete' },
|
||||
] as SecurityProductTypes;
|
||||
|
||||
beforeEach(() => {
|
||||
jest.clearAllMocks();
|
||||
|
||||
(getStartedStorage.getAllFinishedStepsFromStorage as jest.Mock).mockReturnValue({
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
});
|
||||
(getStartedStorage.getActiveProductsFromStorage as jest.Mock).mockReturnValue([
|
||||
ProductLine.security,
|
||||
ProductLine.cloud,
|
||||
ProductLine.endpoint,
|
||||
]);
|
||||
});
|
||||
|
||||
test('should initialize state with correct initial values - when no active products from local storage', () => {
|
||||
(getStartedStorage.getAllFinishedStepsFromStorage as jest.Mock).mockReturnValue({});
|
||||
(getStartedStorage.getActiveProductsFromStorage as jest.Mock).mockReturnValue([]);
|
||||
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { state } = result.current;
|
||||
|
||||
expect(state.activeProducts).toEqual(new Set([ProductLine.security, ProductLine.endpoint]));
|
||||
expect(state.finishedSteps).toEqual({});
|
||||
|
||||
expect(state.activeSections).toEqual(
|
||||
expect.objectContaining({
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
timeInMins: 3,
|
||||
stepsLeft: 1,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 4,
|
||||
activeStepIds: [
|
||||
ConfigureSteps.learnAbout,
|
||||
ConfigureSteps.deployElasticAgent,
|
||||
ConfigureSteps.connectToDataSources,
|
||||
ConfigureSteps.enablePrebuiltRules,
|
||||
],
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 2,
|
||||
activeStepIds: [ExploreSteps.viewAlerts, ExploreSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('should initialize state with correct initial values - when all products active', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { state } = result.current;
|
||||
|
||||
expect(state.activeProducts).toEqual(
|
||||
new Set([ProductLine.security, ProductLine.cloud, ProductLine.endpoint])
|
||||
);
|
||||
expect(state.finishedSteps).toEqual({
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
});
|
||||
|
||||
expect(state.activeSections).toEqual(
|
||||
expect.objectContaining({
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 4,
|
||||
activeStepIds: [
|
||||
ConfigureSteps.learnAbout,
|
||||
ConfigureSteps.deployElasticAgent,
|
||||
ConfigureSteps.connectToDataSources,
|
||||
ConfigureSteps.enablePrebuiltRules,
|
||||
],
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 2,
|
||||
activeStepIds: [ExploreSteps.viewAlerts, ExploreSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('should initialize state with correct initial values - when security product active', () => {
|
||||
(getStartedStorage.getActiveProductsFromStorage as jest.Mock).mockReturnValue([
|
||||
ProductLine.security,
|
||||
]);
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { state } = result.current;
|
||||
|
||||
expect(state.activeProducts).toEqual(new Set([ProductLine.security]));
|
||||
expect(state.finishedSteps).toEqual({
|
||||
[GetSetUpCardId.introduction]: new Set([IntroductionSteps.getToKnowElasticSecurity]),
|
||||
});
|
||||
|
||||
expect(state.activeSections).toEqual(
|
||||
expect.objectContaining({
|
||||
[SectionId.getSetUp]: {
|
||||
[GetSetUpCardId.introduction]: {
|
||||
id: GetSetUpCardId.introduction,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 0,
|
||||
activeStepIds: [IntroductionSteps.getToKnowElasticSecurity],
|
||||
},
|
||||
[GetSetUpCardId.configure]: {
|
||||
id: GetSetUpCardId.configure,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 4,
|
||||
activeStepIds: [
|
||||
ConfigureSteps.learnAbout,
|
||||
ConfigureSteps.deployElasticAgent,
|
||||
ConfigureSteps.connectToDataSources,
|
||||
ConfigureSteps.enablePrebuiltRules,
|
||||
],
|
||||
},
|
||||
[GetSetUpCardId.explore]: {
|
||||
id: GetSetUpCardId.explore,
|
||||
timeInMins: 0,
|
||||
stepsLeft: 2,
|
||||
activeStepIds: [ExploreSteps.viewAlerts, ExploreSteps.analyzeData],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
test('should reset all the card steps in storage when a step is expanded. (As it allows only one step open at a time)', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepClicked({
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
sectionId: SectionId.getSetUp,
|
||||
isExpanded: true,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.resetAllExpandedCardStepsToStorage).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
test('should add the current step to storage when it is expanded', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepClicked({
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
sectionId: SectionId.getSetUp,
|
||||
isExpanded: true,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.addExpandedCardStepToStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.addExpandedCardStepToStorage).toHaveBeenCalledWith(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should remove the current step from storage when it is collapsed', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepClicked({
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
sectionId: SectionId.getSetUp,
|
||||
isExpanded: false,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.removeExpandedCardStepFromStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.removeExpandedCardStepFromStorage).toHaveBeenCalledWith(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should call addFinishedStepToStorage when onStepButtonClicked is executed', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepButtonClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepButtonClicked({
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
sectionId: SectionId.getSetUp,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.addFinishedStepToStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.addFinishedStepToStorage).toHaveBeenCalledWith(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should call removeFinishedStepToStorage when onStepButtonClicked is executed with undo equals to true', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onStepButtonClicked } = result.current;
|
||||
|
||||
act(() => {
|
||||
onStepButtonClicked({
|
||||
stepId: IntroductionSteps.getToKnowElasticSecurity,
|
||||
cardId: GetSetUpCardId.introduction,
|
||||
sectionId: SectionId.getSetUp,
|
||||
undo: true,
|
||||
});
|
||||
});
|
||||
|
||||
expect(getStartedStorage.removeFinishedStepFromStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.removeFinishedStepFromStorage).toHaveBeenCalledWith(
|
||||
GetSetUpCardId.introduction,
|
||||
IntroductionSteps.getToKnowElasticSecurity
|
||||
);
|
||||
});
|
||||
|
||||
test('should call toggleActiveProductsInStorage when onProductSwitchChanged is executed', () => {
|
||||
const { result } = renderHook(() => useTogglePanel({ productTypes }));
|
||||
|
||||
const { onProductSwitchChanged } = result.current;
|
||||
|
||||
act(() => {
|
||||
onProductSwitchChanged({ id: ProductLine.security, label: 'Analytics' });
|
||||
});
|
||||
|
||||
expect(getStartedStorage.toggleActiveProductsInStorage).toHaveBeenCalledTimes(1);
|
||||
expect(getStartedStorage.toggleActiveProductsInStorage).toHaveBeenCalledWith(
|
||||
ProductLine.security
|
||||
);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,94 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import {
|
||||
EuiButtonIcon,
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiSpacer,
|
||||
EuiTitle,
|
||||
useEuiTheme,
|
||||
} from '@elastic/eui';
|
||||
import React from 'react';
|
||||
import { css } from '@emotion/react';
|
||||
|
||||
import { useUserName } from '../../common/hooks/use_user_name';
|
||||
import { getProjectFeaturesUrl } from '../../navigation/links/util';
|
||||
|
||||
import {
|
||||
GET_STARTED_PAGE_TITLE,
|
||||
GET_STARTED_PAGE_SUBTITLE,
|
||||
GET_STARTED_PAGE_DESCRIPTION,
|
||||
CURRENT_PLAN_LABEL,
|
||||
} from '../translations';
|
||||
import { CONTENT_WIDTH } from '../helpers';
|
||||
import { ProductTierBadge } from './product_tier_badge';
|
||||
import { useKibana } from '../../common/services';
|
||||
import type { ProductTier } from '../../../common/product';
|
||||
import { useWelcomeHeaderStyles } from '../styles/welcome_header.styles';
|
||||
|
||||
const WelcomeHeaderComponent: React.FC<{ productTier?: ProductTier }> = ({ productTier }) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const userName = useUserName();
|
||||
const { cloud } = useKibana().services;
|
||||
const {
|
||||
headerStyles,
|
||||
headerTitleStyles,
|
||||
headerSubtitleStyles,
|
||||
headerDescriptionStyles,
|
||||
currentPlanWrapperStyles,
|
||||
currentPlanTextStyles,
|
||||
} = useWelcomeHeaderStyles();
|
||||
|
||||
return (
|
||||
<EuiFlexGroup css={headerStyles} data-test-subj="welcome-header">
|
||||
<EuiFlexItem
|
||||
grow={false}
|
||||
css={css`
|
||||
width: ${CONTENT_WIDTH / 2}px;
|
||||
`}
|
||||
>
|
||||
{userName && (
|
||||
<EuiTitle size="l" css={headerTitleStyles}>
|
||||
<span>{GET_STARTED_PAGE_TITLE(userName)}</span>
|
||||
</EuiTitle>
|
||||
)}
|
||||
<EuiSpacer size="s" />
|
||||
<span css={headerSubtitleStyles} className="eui-displayBlock">
|
||||
{GET_STARTED_PAGE_SUBTITLE}
|
||||
</span>
|
||||
<EuiSpacer size="s" />
|
||||
<span className="eui-displayBlock" css={headerDescriptionStyles}>
|
||||
{GET_STARTED_PAGE_DESCRIPTION}
|
||||
</span>
|
||||
<EuiSpacer size="l" />
|
||||
<div>
|
||||
<div className="eui-displayInlineBlock" css={currentPlanWrapperStyles}>
|
||||
<span css={currentPlanTextStyles}>{CURRENT_PLAN_LABEL}</span>
|
||||
<ProductTierBadge productTier={productTier} />
|
||||
{productTier && (
|
||||
<EuiButtonIcon
|
||||
className="eui-alignMiddle"
|
||||
color="primary"
|
||||
href={getProjectFeaturesUrl(cloud)}
|
||||
target="_blank"
|
||||
aria-label={CURRENT_PLAN_LABEL}
|
||||
iconType="gear"
|
||||
size="xs"
|
||||
css={css`
|
||||
padding-left: ${euiTheme.size.xs};
|
||||
`}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
);
|
||||
};
|
||||
|
||||
export const WelcomeHeader = React.memo(WelcomeHeaderComponent);
|
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export const PRODUCT_TIER_ESSENTIAL = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.essential',
|
||||
{
|
||||
defaultMessage: `Essential`,
|
||||
}
|
||||
);
|
||||
|
||||
export const PRODUCT_TIER_COMPLETE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.complete',
|
||||
{
|
||||
defaultMessage: `Complete`,
|
||||
}
|
||||
);
|
|
@ -1,51 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { render } from '@testing-library/react';
|
||||
import '@testing-library/jest-dom/extend-expect'; // For DOM matchers like toBeInTheDocument
|
||||
import { ChangePlanLink } from './change_plan_link'; // Replace with your import path
|
||||
import { ProductTier } from '../../../common/product';
|
||||
|
||||
jest.mock('../../common/services', () => ({
|
||||
useKibana: jest.fn().mockReturnValue({
|
||||
services: {
|
||||
cloud: {
|
||||
projectsUrl: 'https://cloud.elastic.co/projects',
|
||||
serverless: {
|
||||
projectId: 'test-project-id',
|
||||
},
|
||||
},
|
||||
},
|
||||
}),
|
||||
}));
|
||||
|
||||
describe('ChangePlanLink', () => {
|
||||
it('renders nothing when productTier is undefined', () => {
|
||||
const { container } = render(<ChangePlanLink productTier={undefined} />);
|
||||
expect(container.firstChild).toBeNull();
|
||||
});
|
||||
|
||||
it('renders the link and badge when productTier is defined', () => {
|
||||
const { getByText, getByTestId } = render(
|
||||
<ChangePlanLink productTier={ProductTier.complete} />
|
||||
);
|
||||
const badge = getByTestId('product-tier-badge');
|
||||
const link = getByText('Change plan');
|
||||
expect(badge).toBeInTheDocument();
|
||||
expect(link).toBeInTheDocument();
|
||||
expect(link.getAttribute('href')).toEqual(
|
||||
'https://cloud.elastic.co/projects/security/test-project-id?open=securityProjectFeatures'
|
||||
);
|
||||
});
|
||||
|
||||
it('does not render badge when productTier is defined', () => {
|
||||
const { queryByTestId } = render(<ChangePlanLink productTier={undefined} />);
|
||||
const badge = queryByTestId('product-tier-badge');
|
||||
expect(badge).not.toBeInTheDocument();
|
||||
});
|
||||
});
|
|
@ -1,63 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import {
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiIcon,
|
||||
useEuiTheme,
|
||||
useEuiBackgroundColorCSS,
|
||||
EuiLink,
|
||||
} from '@elastic/eui';
|
||||
import { css } from '@emotion/react';
|
||||
import type { ProductTier } from '../../../common/product';
|
||||
import { ProductTierBadge } from './product_tier_badge';
|
||||
import { WELCOME_PANEL_PROJECT_CREATED_CHANGE_PLAN_TITLE } from './translations';
|
||||
import { getProjectFeaturesUrl } from '../../navigation/links/util';
|
||||
import { useKibana } from '../../common/services';
|
||||
|
||||
const ChangePlanLinkComponent = ({ productTier }: { productTier: ProductTier | undefined }) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const { cloud } = useKibana().services;
|
||||
const backgroundColorStyles = useEuiBackgroundColorCSS();
|
||||
return productTier ? (
|
||||
<>
|
||||
{/* <div> cannot appear as a descendant of <p>, EuiSpacer is a div */}
|
||||
<EuiFlexGroup justifyContent="flexEnd" component="span">
|
||||
<EuiFlexItem grow={false} component="span">
|
||||
<span
|
||||
className="eui-displayBlock"
|
||||
css={css`
|
||||
${backgroundColorStyles.primary};
|
||||
border-radius: ${euiTheme.border.radius.medium};
|
||||
padding: 0 ${euiTheme.size.m};
|
||||
line-height: ${euiTheme.base * 2}px;
|
||||
`}
|
||||
>
|
||||
<ProductTierBadge productTier={productTier} />
|
||||
<EuiLink
|
||||
className="eui-alignMiddle"
|
||||
css={css`
|
||||
color: ${euiTheme.colors.primaryText};
|
||||
padding-left: ${euiTheme.size.m};
|
||||
`}
|
||||
href={getProjectFeaturesUrl(cloud)}
|
||||
target="_blank"
|
||||
external={false}
|
||||
>
|
||||
{WELCOME_PANEL_PROJECT_CREATED_CHANGE_PLAN_TITLE}
|
||||
<EuiIcon type="arrowRight" />
|
||||
</EuiLink>
|
||||
</span>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</>
|
||||
) : null;
|
||||
};
|
||||
|
||||
export const ChangePlanLink = React.memo(ChangePlanLinkComponent);
|
|
@ -1,97 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { render, type RenderResult } from '@testing-library/react';
|
||||
import { I18nProvider } from '@kbn/i18n-react';
|
||||
|
||||
import { WelcomePanel } from '.';
|
||||
import { ProductTier } from '../../../common/product';
|
||||
jest.mock('@kbn/security-solution-navigation/src/context');
|
||||
jest.mock('@elastic/eui', () => {
|
||||
const original = jest.requireActual('@elastic/eui');
|
||||
return {
|
||||
...original,
|
||||
useEuiTheme: jest.fn().mockReturnValue({
|
||||
euiTheme: {
|
||||
base: 16,
|
||||
size: { xs: '4px' },
|
||||
colors: { mediumShade: '' },
|
||||
border: { radius: { medium: '4px' } },
|
||||
},
|
||||
}),
|
||||
};
|
||||
});
|
||||
|
||||
jest.mock('../../common/services', () => ({
|
||||
useKibana: jest.fn().mockReturnValue({
|
||||
services: {
|
||||
cloud: {
|
||||
projectsUrl: 'projectsUrl',
|
||||
organizationUrl: 'organizationUrl',
|
||||
},
|
||||
},
|
||||
}),
|
||||
}));
|
||||
|
||||
describe('WelcomePanel', () => {
|
||||
let result: RenderResult;
|
||||
const props = {
|
||||
totalActiveSteps: 3,
|
||||
totalStepsLeft: 2,
|
||||
productTier: ProductTier.complete,
|
||||
};
|
||||
|
||||
beforeEach(() => {
|
||||
result = render(<WelcomePanel {...props} />, {
|
||||
wrapper: ({ children }) => <I18nProvider>{children}</I18nProvider>,
|
||||
});
|
||||
});
|
||||
|
||||
it('should render the welcome panel with project created header card', () => {
|
||||
const { getByText } = result;
|
||||
|
||||
expect(getByText('Project created')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render the welcome panel with invite your team header card', () => {
|
||||
const { getByText } = result;
|
||||
|
||||
expect(getByText('Invite your team')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render the welcome panel with progress tracker header card', () => {
|
||||
const { getByText } = result;
|
||||
|
||||
expect(getByText('Progress tracker')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render the project created header card with the correct icon', () => {
|
||||
const { getByTestId } = result;
|
||||
|
||||
expect(getByTestId('projectCreatedIcon')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render the invite your team header card with the correct icon', () => {
|
||||
const { getByTestId } = result;
|
||||
|
||||
expect(getByTestId('inviteYourTeamIcon')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render the progress tracker header card with the correct icon', () => {
|
||||
const { getByTestId } = result;
|
||||
|
||||
expect(getByTestId('progressTrackerIcon')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render the project tracker card with the correct description', () => {
|
||||
const { getByText } = result;
|
||||
|
||||
expect(getByText('1 of 3')).toBeInTheDocument();
|
||||
expect(getByText('tasks completed')).toBeInTheDocument();
|
||||
});
|
||||
});
|
|
@ -1,90 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiCard, EuiFlexGroup, EuiFlexItem, EuiIcon, EuiTitle, useEuiTheme } from '@elastic/eui';
|
||||
|
||||
import { css } from '@emotion/react';
|
||||
import React from 'react';
|
||||
|
||||
import type { ProductTier } from '../../../common/product';
|
||||
import { useWelcomePanel } from './use_welcome_panel';
|
||||
|
||||
const WelcomePanelComponent = ({
|
||||
totalActiveSteps,
|
||||
totalStepsLeft,
|
||||
productTier,
|
||||
}: {
|
||||
totalActiveSteps: number | null;
|
||||
totalStepsLeft: number | null;
|
||||
productTier: ProductTier | undefined;
|
||||
}) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const headerCards = useWelcomePanel({
|
||||
productTier,
|
||||
totalActiveSteps,
|
||||
totalStepsLeft,
|
||||
});
|
||||
|
||||
return (
|
||||
<EuiFlexGroup
|
||||
css={css`
|
||||
gap: ${euiTheme.size.xl};
|
||||
margin-top: 6px;
|
||||
`}
|
||||
>
|
||||
{headerCards.map((item, index) => {
|
||||
return (
|
||||
<EuiFlexItem key={`set-up-card-${index}`}>
|
||||
<EuiCard
|
||||
layout="horizontal"
|
||||
icon={
|
||||
item.icon ? (
|
||||
<EuiIcon size="xxl" {...item.icon} data-test-subj={`${item.id}Icon`} />
|
||||
) : undefined
|
||||
}
|
||||
title={
|
||||
<EuiTitle
|
||||
size="s"
|
||||
css={css`
|
||||
font-size: 19px;
|
||||
`}
|
||||
>
|
||||
<span>{item.title}</span>
|
||||
</EuiTitle>
|
||||
}
|
||||
description={
|
||||
<>
|
||||
<span
|
||||
css={css`
|
||||
color: ${euiTheme.colors.mediumShade};
|
||||
`}
|
||||
>
|
||||
{item.description && item.description}
|
||||
</span>
|
||||
{item.footer && (
|
||||
<span
|
||||
className="eui-displayInlineBlock"
|
||||
css={css`
|
||||
padding-top: ${euiTheme.size.l};
|
||||
`}
|
||||
>
|
||||
{item.footer}
|
||||
</span>
|
||||
)}
|
||||
</>
|
||||
}
|
||||
hasBorder
|
||||
paddingSize="l"
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
);
|
||||
})}
|
||||
</EuiFlexGroup>
|
||||
);
|
||||
};
|
||||
|
||||
export const WelcomePanel = React.memo(WelcomePanelComponent);
|
|
@ -1,32 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { render } from '@testing-library/react';
|
||||
import { ProgressTracker } from './progress_tracker'; // Replace with your import path
|
||||
|
||||
describe('ProgressTracker', () => {
|
||||
it('renders nothing when totalActiveSteps and totalStepsLeft are null', () => {
|
||||
const { container } = render(<ProgressTracker />);
|
||||
expect(container.firstChild).toBeNull();
|
||||
});
|
||||
|
||||
it('renders nothing when totalActiveSteps is null', () => {
|
||||
const { container } = render(<ProgressTracker totalStepsLeft={5} />);
|
||||
expect(container.firstChild).toBeNull();
|
||||
});
|
||||
|
||||
it('renders nothing when totalStepsLeft is null', () => {
|
||||
const { container } = render(<ProgressTracker totalActiveSteps={10} />);
|
||||
expect(container.firstChild).toBeNull();
|
||||
});
|
||||
|
||||
it('renders the progress description when both totalActiveSteps and totalStepsLeft are provided', () => {
|
||||
const { getByText } = render(<ProgressTracker totalActiveSteps={10} totalStepsLeft={5} />);
|
||||
expect(getByText('5 of 10')).toBeInTheDocument();
|
||||
});
|
||||
});
|
|
@ -1,46 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { css } from '@emotion/react';
|
||||
import { WELCOME_PANEL_PROGRESS_TRACKER_DESCRIPTION } from './translations';
|
||||
|
||||
const ProgressTrackerComponent = ({
|
||||
totalActiveSteps,
|
||||
totalStepsLeft,
|
||||
}: {
|
||||
totalActiveSteps?: number | null;
|
||||
totalStepsLeft?: number | null;
|
||||
}) => {
|
||||
if (totalActiveSteps != null && totalStepsLeft != null) {
|
||||
return (
|
||||
<>
|
||||
<strong
|
||||
css={css`
|
||||
font-wight: bold;
|
||||
color: black;
|
||||
`}
|
||||
>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.description"
|
||||
defaultMessage="{done} of {total} "
|
||||
values={{
|
||||
done: totalActiveSteps - totalStepsLeft,
|
||||
total: totalActiveSteps,
|
||||
}}
|
||||
/>
|
||||
</strong>
|
||||
{WELCOME_PANEL_PROGRESS_TRACKER_DESCRIPTION(totalActiveSteps)}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
export const ProgressTracker = React.memo(ProgressTrackerComponent);
|
|
@ -1,62 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export const WELCOME_PANEL_PROJECT_CREATED_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.title',
|
||||
{
|
||||
defaultMessage: `Project created`,
|
||||
}
|
||||
);
|
||||
|
||||
export const WELCOME_PANEL_PROJECT_CREATED_CHANGE_PLAN_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.changePlan.title',
|
||||
{
|
||||
defaultMessage: `Change plan`,
|
||||
}
|
||||
);
|
||||
|
||||
export const PRODUCT_TIER_ESSENTIAL = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.essential',
|
||||
{
|
||||
defaultMessage: `Essential`,
|
||||
}
|
||||
);
|
||||
|
||||
export const PRODUCT_TIER_COMPLETE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.complete',
|
||||
{
|
||||
defaultMessage: `Complete`,
|
||||
}
|
||||
);
|
||||
|
||||
export const WELCOME_PANEL_INVITE_YOUR_TEAM_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.title',
|
||||
{
|
||||
defaultMessage: 'Invite your team',
|
||||
}
|
||||
);
|
||||
|
||||
export const WELCOME_PANEL_INVITE_YOUR_TEAM_DESCRIPTION = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.description',
|
||||
{
|
||||
defaultMessage: `Boost security through collaboration`,
|
||||
}
|
||||
);
|
||||
|
||||
export const WELCOME_PANEL_PROGRESS_TRACKER_TITLE = i18n.translate(
|
||||
'xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.title',
|
||||
{
|
||||
defaultMessage: 'Progress tracker',
|
||||
}
|
||||
);
|
||||
|
||||
export const WELCOME_PANEL_PROGRESS_TRACKER_DESCRIPTION = (tasks: number) =>
|
||||
i18n.translate('xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.note', {
|
||||
defaultMessage: `{tasks, plural, =1 {task} other {tasks}} completed`,
|
||||
values: { tasks },
|
||||
});
|
|
@ -1,15 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
import type { EuiIconProps } from '@elastic/eui';
|
||||
|
||||
export interface HeaderSection {
|
||||
description?: React.ReactNode | null;
|
||||
footer?: React.ReactNode | null;
|
||||
icon: EuiIconProps;
|
||||
id: string;
|
||||
title: string;
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { renderHook } from '@testing-library/react-hooks';
|
||||
import { useWelcomePanel } from './use_welcome_panel';
|
||||
import { ProductTier } from '../../../common/product';
|
||||
|
||||
jest.mock('../../common/services', () => ({
|
||||
useKibana: jest.fn(() => ({
|
||||
services: {
|
||||
cloud: { projectsUrl: 'projectsUrl' },
|
||||
},
|
||||
})),
|
||||
}));
|
||||
|
||||
describe('useWelcomePanel', () => {
|
||||
it('should return the correct welcome panel sections', () => {
|
||||
const productTier = ProductTier.essentials;
|
||||
const totalActiveSteps = 5;
|
||||
const totalStepsLeft = 3;
|
||||
|
||||
const { result } = renderHook(() =>
|
||||
useWelcomePanel({ productTier, totalActiveSteps, totalStepsLeft })
|
||||
);
|
||||
|
||||
expect(result.current[0].title).toBe('Project created');
|
||||
expect(result.current[1].title).toBe('Invite your team');
|
||||
expect(result.current[2].title).toBe('Progress tracker');
|
||||
});
|
||||
});
|
|
@ -1,98 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import React, { useMemo } from 'react';
|
||||
import { EuiButton, EuiFlexGroup, EuiFlexItem, EuiLink } from '@elastic/eui';
|
||||
import progress from '../images/progress.svg';
|
||||
import invite from '../images/invite.svg';
|
||||
import type { HeaderSection } from './types';
|
||||
import {
|
||||
WELCOME_PANEL_PROJECT_CREATED_TITLE,
|
||||
WELCOME_PANEL_INVITE_YOUR_TEAM_TITLE,
|
||||
WELCOME_PANEL_INVITE_YOUR_TEAM_DESCRIPTION,
|
||||
WELCOME_PANEL_PROGRESS_TRACKER_TITLE,
|
||||
} from './translations';
|
||||
import { ProgressTracker } from './progress_tracker';
|
||||
import { useKibana } from '../../common/services';
|
||||
import { getCloudUrl } from '../../navigation/links/util';
|
||||
import type { ProductTier } from '../../../common/product';
|
||||
import { ChangePlanLink } from './change_plan_link';
|
||||
|
||||
export const useWelcomePanel = ({
|
||||
productTier,
|
||||
totalActiveSteps,
|
||||
totalStepsLeft,
|
||||
}: {
|
||||
productTier: ProductTier | undefined;
|
||||
totalActiveSteps: number | null;
|
||||
totalStepsLeft: number | null;
|
||||
}): HeaderSection[] => {
|
||||
const { cloud } = useKibana().services;
|
||||
|
||||
const welcomePanel: HeaderSection[] = useMemo(
|
||||
() => [
|
||||
{
|
||||
icon: { type: 'checkInCircleFilled', color: '#00BFB3' },
|
||||
title: WELCOME_PANEL_PROJECT_CREATED_TITLE,
|
||||
description: (
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.descriptionWithLink"
|
||||
defaultMessage="View all projects {link}."
|
||||
values={{
|
||||
link: (
|
||||
<EuiLink href={getCloudUrl('projects', cloud)} target="_blank" external={false}>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.description.link"
|
||||
defaultMessage="here"
|
||||
/>
|
||||
</EuiLink>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
),
|
||||
id: 'projectCreated',
|
||||
footer: <ChangePlanLink productTier={productTier} />,
|
||||
},
|
||||
{
|
||||
icon: { type: invite },
|
||||
title: WELCOME_PANEL_INVITE_YOUR_TEAM_TITLE,
|
||||
description: <>{WELCOME_PANEL_INVITE_YOUR_TEAM_DESCRIPTION}</>,
|
||||
id: 'inviteYourTeam',
|
||||
footer: (
|
||||
<>
|
||||
<EuiFlexGroup justifyContent="flexStart" component="span">
|
||||
<EuiFlexItem grow={false} component="span">
|
||||
<EuiButton
|
||||
iconType="plusInCircle"
|
||||
href={getCloudUrl('organization', cloud)}
|
||||
size="s"
|
||||
>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.button.title"
|
||||
defaultMessage="Add teammates"
|
||||
/>
|
||||
</EuiButton>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
icon: { type: progress },
|
||||
title: WELCOME_PANEL_PROGRESS_TRACKER_TITLE,
|
||||
id: 'progressTracker',
|
||||
description: (
|
||||
<ProgressTracker totalActiveSteps={totalActiveSteps} totalStepsLeft={totalStepsLeft} />
|
||||
),
|
||||
},
|
||||
],
|
||||
[cloud, productTier, totalActiveSteps, totalStepsLeft]
|
||||
);
|
||||
|
||||
return welcomePanel;
|
||||
};
|
|
@ -36827,11 +36827,6 @@
|
|||
"xpack.securitySolution.zeek.shrDescription": "L'équipe de réponse a envoyé un SYN ACK suivi d'un FIN, pas de SYN de la part de l'initiateur",
|
||||
"xpack.securitySolutionServerless.dashboardsLandingCallout.title": "Élaborer un tableau de bord ou une visualisation ? Créez et ajoutez des {maps} ou sélectionnez depuis {visualizationLibrary}",
|
||||
"xpack.securitySolutionServerless.endpoint.exceptions.details.paywall.body": "Passez votre licence au niveau {productTypeRequired} pour utiliser la liste d'exceptions Endpoint Security.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepsLeft": "{steps} {steps, plural, =1 {étape terminée} one {étapes terminées} many {étapes terminées} other {étapes terminées}} restant(es)",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepTimeMin": "Environ {min} {min, plural, =1 {min} one {min} many {min} other {min}}",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.description": "{done} de {total} ",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.note": "{tasks, plural, =1 {tâche} one {tâches} many {tâches} other {tâches}} terminée(s)",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.descriptionWithLink": "Affichez tous les projets {link}.",
|
||||
"xpack.securitySolutionServerless.osquery.paywall.body": "Passez votre licence au niveau {productTypeRequired} pour utiliser les actions de réponse Osquery.",
|
||||
"xpack.securitySolutionServerless.rules.endpointSecurity.endpointExceptions.cardMessage": "Passez votre licence au niveau {productTypeRequired} pour utiliser la liste d'exceptions Endpoint Security.",
|
||||
"xpack.securitySolutionServerless.threatIntelligence.paywall.body": "Passez votre licence au niveau {productTypeRequired} pour utiliser Threat Intelligence.",
|
||||
|
@ -36848,69 +36843,19 @@
|
|||
"xpack.securitySolutionServerless.endpointPolicyProtections.cardTitle": "Politiques de protection",
|
||||
"xpack.securitySolutionServerless.getStarted.description": "Configurez votre espace de travail Elastic Security. Utilisez les bascules ci-dessous pour organiser une liste de tâches qui correspond le mieux à votre environnement",
|
||||
"xpack.securitySolutionServerless.getStarted.subTitle": "Entrons dans le vif du sujet",
|
||||
"xpack.securitySolutionServerless.getStarted.title": "Bienvenue !",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1": "Découvrir Elastic Agent",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1": "Déployez Elastic Agent sur chaque point de terminaison que vous souhaitez protéger. Vous pouvez ainsi les monitorer et les protéger grâce à de la collecte de données et à l'application de vos politiques de sécurité. Elastic Agent transmet ces données à la Suite Elastic pour les analyser et les stocker.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1.linkText": "Par ici pour en savoir plus !",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description2": "Lors de la prochaine étape, vous allez déployer l'agent Elastic Agent sur vos points de terminaison.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2": "Déployez Elastic Agent pour protéger vos points de terminaison",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description1": "Déployez Elastic Agent sur chaque point de terminaison que vous voulez monitorer ou protéger.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description2.button": "Installer l'agent",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3": "Se connecter aux sources de données existantes",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.button.title": "Accéder aux intégrations",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description1": "Utilisez des intégrations tierces pour importer les données depuis des sources communes et pour aider à rassembler les informations pertinentes au même endroit. Pour trouver les intégrations adaptées à votre cas d'utilisation, recherchez les outils et les fournisseurs de données sur la page Ajouter des intégrations.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description2.button": "Ajouter des intégrations",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4": "Activer les règles prédéfinies",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.button.title": "Ajouter des règles Elastic",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description1": "Elastic Security est fourni avec des règles de détection prédéfinies qui s'exécutent en arrière-plan et créent des alertes lorsque leurs conditions sont remplies.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description2.button": "Ajouter des règles Elastic",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.title": "Configurer",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.empty.description": "Activez une bascule pour poursuivre votre expérience \"Démarrer\" organisée",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.empty.title": "Hmm, on dirait qu’il n’y a rien ici",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1": "Afficher les alertes",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description1": "Visualisez, triez, filtrez et examinez les alertes dans votre infrastructure. Examinez des alertes individuelles dignes d'intérêt et découvrez des tendances générales dans le volume et la gravité des alertes.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description2.button": "Afficher les alertes",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2": "Analysez des données à l'aide de tableaux de bord",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description1": "Utilisez des tableaux de bord pour visualiser les données et être au courant des dernières informations essentielles. Créez votre propre tableau de bord ou utilisez celui proposé par défaut par Elastic, en ajoutant des alertes, des événements d'authentification des utilisateurs, les vulnérabilités connues et plus encore.",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description2.button": "Accéder au tableau de bord",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.title": "Explorer",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getMoreFromElasticSecurity.title": "Tirez parti d’Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getSetUp.title": "Préparez-vous",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getToKnowElasticSecurity.header": "Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step": "Découvrir Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description1": "Elastic Security est une solution SaaS qui regroupe des capacités analytiques, EDR, de sécurité du cloud et autres, avec pour vocation de soutenir l'amélioration du niveau de sécurité de votre organisation, de la défendre contre un vaste éventail de menaces et de prévenir toutes failles éventuelles.\n ",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description2": "Pour découvrir les fonctionnalités qui se trouvent au cœur de la plateforme, regardez cette vidéo :",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.title": "Introduction",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.markAsDoneTitle": "Marquer comme terminé",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step1": "Introduction aux investigations",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step2": "Explorer le lignage de processus avec l'analyseur",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step3": "Explorer les activités des utilisateurs et des processus avec la vue de session",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step4": "Explorer la chasse au menace dans Timeline",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step5": "Introduction aux cas",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step1": "Activer Threat Intelligence",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step2": "Activer l'analyse des entités",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step3": "Créer des règles personnalisées",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step4": "Introduction aux exceptions",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step5": "Connectez les systèmes de notification pour obtenir des alertes en temps réel",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.analytics": "Analyse",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.cloud": "Cloud",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.edr": "EDR",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.protectYourEnvironmentInRealtime.title": "Protéger votre environnement en temps réel",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step1": "Actions de réponse automatisées avec des règles",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step2": "Contrôlez vos point de terminaison grâce à la Console de réponse",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.analytics.label": "Analyse",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.cloud.label": "Sécurité du cloud",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.endpoint.label": "Endpoint Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.undoMarkAsDoneTitle": "Annuler \"Marquer comme terminé\"",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.button.title": "Ajouter des coéquipiers",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.description": "Améliorez la sécurité grâce à la collaboration",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.title": "Invitez votre équipe",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.complete": "Terminé",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.essential": "Essentiel",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.title": "Outil de suivi de progression",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.changePlan.title": "Changer d'offre",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.description.link": "ici",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.title": "Projets créés",
|
||||
"xpack.securitySolutionServerless.getStartedProductLabel.title": "Élaborez votre expérience Démarrer :",
|
||||
"xpack.securitySolutionServerless.nav.projectSettings.title": "Paramètres de projet",
|
||||
"xpack.securitySolutionServerless.nav.solution.title": "Sécurité",
|
||||
|
|
|
@ -36826,11 +36826,6 @@
|
|||
"xpack.securitySolution.zeek.shrDescription": "レスポンダーがFINに続きSYNを送信しました。接続元からSYN-ACKはありません",
|
||||
"xpack.securitySolutionServerless.dashboardsLandingCallout.title": "ダッシュボードやビジュアライゼーションを構築していますか?{maps}を作成して追加するか、{visualizationLibrary}から選択します。",
|
||||
"xpack.securitySolutionServerless.endpoint.exceptions.details.paywall.body": "エンドポイントセキュリティ例外リストを使用するには、ライセンスを{productTypeRequired}にアップグレードしてください。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepsLeft": "残り{steps} {steps, plural, =1 {ステップ} other {ステップ}}",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepTimeMin": "約{min}{min, plural, =1 {分} other {分}}",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.description": "{done} / {total} ",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.note": "{tasks, plural, =1 {タスク} other {タスク}}完了",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.descriptionWithLink": "すべてのプロジェクト{link}を表示します。",
|
||||
"xpack.securitySolutionServerless.osquery.paywall.body": "Osquery Response Actionsを使用するには、ライセンスを{productTypeRequired}にアップグレードしてください。",
|
||||
"xpack.securitySolutionServerless.rules.endpointSecurity.endpointExceptions.cardMessage": "エンドポイントセキュリティ例外リストを使用するには、ライセンスを{productTypeRequired}にアップグレードしてください。",
|
||||
"xpack.securitySolutionServerless.threatIntelligence.paywall.body": "脅威インテリジェンスを使用するには、ライセンスを{productTypeRequired}にアップグレードしてください。",
|
||||
|
@ -36847,69 +36842,19 @@
|
|||
"xpack.securitySolutionServerless.endpointPolicyProtections.cardTitle": "ポリシー保護",
|
||||
"xpack.securitySolutionServerless.getStarted.description": "Elasticセキュリティワークスペースを設定します。 以下のトグルを使って、環境に最適なタスクリストを作成してください",
|
||||
"xpack.securitySolutionServerless.getStarted.subTitle": "始めましょう",
|
||||
"xpack.securitySolutionServerless.getStarted.title": "ようこそ!",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1": "Elasticエージェントについてさらに詳しく",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1": "保護する各エンドポイントにElasticエージェントをデプロイします。これにより、データを収集し、セキュリティポリシーを実施することで、それらを監視および保護することができます。そのデータをElastic Stackに送り、分析と保存を行います。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1.linkText": "詳細はこちら!",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description2": "次のステップでは、Elasticエージェントをエンドポイントにデプロイします。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2": "Elasticエージェントをデプロイしてエンドポイントを保護",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description1": "監視または保護する各エンドポイントにElasticエージェントをデプロイします。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description2.button": "エージェントのインストール",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3": "既存のデータソースに接続",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.button.title": "統合に移動",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description1": "サードパーティの統合機能を使用して、一般的なソースからデータをインポートし、関連情報を1つの場所に集めることができます。ユースケースに合った統合を見つけるには、統合の追加ページでツールとデータプロバイダーを検索します。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description2.button": "統合の追加",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4": "事前構築済みのルールを有効化",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.button.title": "Elasticルールを追加",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description1": "Elasticセキュリティには、バックグラウンドで実行され、条件が合うとアラートを作成する事前構築済み検出ルールがあります。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description2.button": "Elasticルールを追加",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.title": "構成",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.empty.description": "トグルをオンにすると、キュレーションされた「基本操作」エクスペリエンスを続行できます",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.empty.title": "何もないようです",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1": "アラートを表示",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description1": "インフラ全体からアラートを可視化、並べ替え、フィルタリング、調査します。関心のある個々のアラートを調査し、アラート量と重大度の一般的なパターンを発見します。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description2.button": "アラートを表示",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2": "ダッシュボードを使用してデータを分析",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description1": "ダッシュボードを使用してデータを可視化し、重要な情報を常に最新の状態に保ちます。アラート、ユーザー認証イベント、既知の脆弱性など、独自のダッシュボードを作成したり、Elasticのデフォルトのダッシュボードを使用したりできます。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description2.button": "ダッシュボードに移動",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.title": "探索",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getMoreFromElasticSecurity.title": "Elasticセキュリティをさらに活用する",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getSetUp.title": "準備",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getToKnowElasticSecurity.header": "Elasticセキュリティ",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step": "触れて、わかる、Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description1": "Elastic Securityは、分析、EDR、クラウドセキュリティ機能などをSaaS型ソリューションに統合し、組織のセキュリティ態勢の改善、幅広い脅威からの防御、侵害の防止を支援します。\n ",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description2": "このプラットフォームの主な機能については、動画をご覧ください。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.title": "はじめに",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.markAsDoneTitle": "完了に設定",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step1": "調査の概要",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step2": "アナライザーでプロセスの関係を探索",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step3": "セッションビューでユーザーとプロセスのアクティビティを探索",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step4": "タイムラインで脅威ハンティングを探索",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step5": "ケースの概要",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step1": "脅威インテリジェンスを有効化",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step2": "エンティティ分析を有効化",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step3": "カスタムルールを作成",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step4": "例外の概要",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step5": "通知システムに接続してリアルタイムでアラートを受信",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.analytics": "分析",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.cloud": "クラウド",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.edr": "EDR",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.protectYourEnvironmentInRealtime.title": "リアルタイムで環境を保護",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step1": "ルールで対応アクションを自動化",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step2": "対応コンソールでエンドポイントを制御",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.analytics.label": "分析",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.cloud.label": "クラウドセキュリティ",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.endpoint.label": "Endpoint Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.undoMarkAsDoneTitle": "[完了に設定]を元に戻す",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.button.title": "チームメイトを追加",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.description": "コラボレーションでセキュリティを強化",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.title": "チームを招待",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.complete": "完了",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.essential": "基本",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.title": "進捗状況追跡ツール",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.changePlan.title": "プランを変更",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.description.link": "こちら",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.title": "プロジェクトが作成されました",
|
||||
"xpack.securitySolutionServerless.getStartedProductLabel.title": "基本操作エクスペリエンスをキュレーション:",
|
||||
"xpack.securitySolutionServerless.nav.projectSettings.title": "プロジェクト設定",
|
||||
"xpack.securitySolutionServerless.nav.solution.title": "セキュリティ",
|
||||
|
|
|
@ -36821,11 +36821,6 @@
|
|||
"xpack.securitySolution.zeek.shrDescription": "响应方已发送 SYN ACK,后跟 FIN,发起方未发送 SYN",
|
||||
"xpack.securitySolutionServerless.dashboardsLandingCallout.title": "正在构建仪表板或可视化?创建并添加{maps}或从{visualizationLibrary}中选择",
|
||||
"xpack.securitySolutionServerless.endpoint.exceptions.details.paywall.body": "将您的许可证升级到{productTypeRequired}以使用 Endpoint Security 例外列表。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepsLeft": "剩下 {steps} 个{steps, plural, =1 {步骤} other {步骤}}",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.progressTracker.stepTimeMin": "大约 {min} {min, plural, =1 {最小值} other {分钟}}",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.description": "{total} 的 {done} ",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.note": "{tasks, plural, =1 {任务} other {任务}}已完成",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.descriptionWithLink": "查看所有项目{link}。",
|
||||
"xpack.securitySolutionServerless.osquery.paywall.body": "将您的许可证升级到{productTypeRequired}以使用 Osquery 响应操作。",
|
||||
"xpack.securitySolutionServerless.rules.endpointSecurity.endpointExceptions.cardMessage": "将您的许可证升级到{productTypeRequired}以使用 Endpoint Security 例外列表。",
|
||||
"xpack.securitySolutionServerless.threatIntelligence.paywall.body": "将您的许可证升级到{productTypeRequired}以使用威胁情报。",
|
||||
|
@ -36842,69 +36837,19 @@
|
|||
"xpack.securitySolutionServerless.endpointPolicyProtections.cardTitle": "策略防护",
|
||||
"xpack.securitySolutionServerless.getStarted.description": "设置 Elastic Security 工作区。 使用下面的切换按钮策展最适合您环境的任务列表",
|
||||
"xpack.securitySolutionServerless.getStarted.subTitle": "开始使用",
|
||||
"xpack.securitySolutionServerless.getStarted.title": "欢迎!",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1": "了解 Elastic 代理",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1": "将 Elastic 代理部署到您要保护的每个终端。这样,它即可通过收集数据并强制执行安全策略,对终端进行监测并提供保护。它会将该数据发送到 Elastic Stack 以进行分析和存储。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description1.linkText": "前往此处了解详情!",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step1.description2": "在下一步,您将 Elastic 代理部署到自己的终端。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2": "部署 Elastic 代理来保护您的终端",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description1": "将 Elastic 代理部署到您要监测或保护的每个终端。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step2.description2.button": "安装代理",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3": "连接到现有数据源",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.button.title": "前往集成",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description1": "使用第三方集成从公用源导入数据,并帮助您在一个位置收集相关信息。要查找适用于您的用例的集成,请在“添加集成”页面搜索工具和数据提供程序。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step3.description2.button": "添加集成",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4": "启用预构建的规则",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.button.title": "添加 Elastic 规则",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description1": "Elastic Security 附带预置检测规则,这些规则在后台运行,并在条件得到满足时创建告警。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.step4.description2.button": "添加 Elastic 规则",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.configure.title": "配置",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.empty.description": "打开切换按钮,继续您策展的“开始使用”体验",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.empty.title": "嗯,那里似乎没有任何内容",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1": "查看告警",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description1": "对整个基础设施中的告警进行可视化、排序、筛选和调查。检查各个相关告警,并发现告警量和严重性方面的通用模式。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step1.description2.button": "查看告警",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2": "使用仪表板分析数据",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description1": "使用仪表板进行数据可视化,并及时了解最新关键信息。创建您自己的仪表板,或使用 Elastic 的默认仪表板 — 包括告警、用户身份验证事件、已知漏洞等。",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.step2.description2.button": "前往仪表板",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.explore.title": "浏览",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getMoreFromElasticSecurity.title": "充分利用 Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getSetUp.title": "完成设置",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.getToKnowElasticSecurity.header": "Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step": "了解 Elastic Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description1": "Elastic Security 将分析、EDR、云安全功能等集成到一个 SaaS 解决方案中,可帮助您改善组织的安全态势,防范一系列威胁并防止泄漏。\n ",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.step1.description2": "要了解该平台的核心功能,请观看以下视频:",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.introduction.title": "简介",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.markAsDoneTitle": "标记为已完成",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step1": "调查简介",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step2": "通过分析器浏览进程沿袭",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step3": "通过会话视图浏览用户和进程活动",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step4": "在时间线中了解威胁狩猎",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.masterTheInvestigationsWorkflow.step5": "案例简介",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step1": "启用威胁情报",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step2": "启用实体分析",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step3": "创建定制规则",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step4": "例外简介",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.optimizeYourWorkspace.step5": "连接通知系统以实时获取告警",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.analytics": "分析",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.cloud": "云",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.productBadge.edr": "EDR",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.protectYourEnvironmentInRealtime.title": "为您的环境提供实时保护",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step1": "利用规则自动执行响应操作",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.respondToThreatsWithAutomation.step2": "通过响应控制台控制您的终端",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.analytics.label": "分析",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.cloud.label": "云安全",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.switch.endpoint.label": "Endpoint Security",
|
||||
"xpack.securitySolutionServerless.getStarted.togglePanel.undoMarkAsDoneTitle": "撤消“标记为已完成”",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.button.title": "添加队友",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.description": "通过协作提高安全性",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.inviteYourTeam.title": "邀请您的团队",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.complete": "已完成",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.productTier.essential": "基本",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.progressTracker.title": "进度跟踪器",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.changePlan.title": "更改计划",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.description.link": "此处",
|
||||
"xpack.securitySolutionServerless.getStarted.welcomePanel.projectCreated.title": "已创建项目",
|
||||
"xpack.securitySolutionServerless.getStartedProductLabel.title": "策展您的开始使用体验:",
|
||||
"xpack.securitySolutionServerless.nav.projectSettings.title": "项目设置",
|
||||
"xpack.securitySolutionServerless.nav.solution.title": "安全",
|
||||
|
|