ca-components 1.0.70 → 1.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/ca-components.module.mjs +7 -1
- package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +331 -118
- package/esm2022/lib/components/ca-chart/enums/chart-colors.enum.mjs +1 -1
- package/esm2022/lib/components/ca-chart/enums/chart-event-types.enum.mjs +1 -1
- package/esm2022/lib/components/ca-chart/enums/chart-font-properties.enum.mjs +1 -1
- package/esm2022/lib/components/ca-chart/enums/chart-plugin-ids.enum.mjs +2 -1
- package/esm2022/lib/components/ca-chart/models/chart-annotation.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/chart-base-dataset.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/chart-center-label.model.mjs +2 -0
- package/esm2022/lib/components/ca-chart/models/chart-config.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/chart-dataset-hover.model.mjs +2 -0
- package/esm2022/lib/components/ca-chart/models/chart-line-dataset.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/index.mjs +3 -1
- package/esm2022/lib/components/ca-chart/utils/constants/chart.constants.mjs +4 -0
- package/esm2022/lib/components/ca-chart/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-chart/utils/helpers/chart.helper.mjs +74 -6
- package/esm2022/lib/components/ca-chart-manager/ca-chart-manager.component.mjs +108 -0
- package/esm2022/lib/components/ca-chart-manager/models/hover-state.model.mjs +2 -0
- package/esm2022/lib/components/ca-chart-manager/models/index.mjs +2 -0
- package/esm2022/lib/components/ca-chart-manager/services/chart-manager.service.mjs +21 -0
- package/esm2022/lib/components/ca-chart-manager/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +2 -1
- package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-menu-option-emit.model.mjs +2 -0
- package/esm2022/lib/components/ca-dropdown-menu/models/index.mjs +2 -2
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +1 -1
- package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +5 -4
- package/esm2022/lib/components/ca-tooltip-list/models/tooltip-list-item.model.mjs +1 -1
- package/esm2022/lib/components/ca-tooltip-list/models/tooltip-list.model.mjs +1 -1
- package/esm2022/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.mjs +1 -1
- package/esm2022/lib/utils/helpers/dropdown-menu-content.helper.mjs +3 -1
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +530 -129
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +7 -6
- package/lib/components/ca-chart/ca-chart.component.d.ts +18 -10
- package/lib/components/ca-chart/enums/chart-colors.enum.d.ts +2 -1
- package/lib/components/ca-chart/enums/chart-plugin-ids.enum.d.ts +2 -1
- package/lib/components/ca-chart/models/chart-annotation.model.d.ts +1 -1
- package/lib/components/ca-chart/models/chart-base-dataset.model.d.ts +5 -2
- package/lib/components/ca-chart/models/chart-center-label.model.d.ts +11 -0
- package/lib/components/ca-chart/models/chart-config.model.d.ts +10 -3
- package/lib/components/ca-chart/models/chart-dataset-hover.model.d.ts +5 -0
- package/lib/components/ca-chart/models/chart-line-dataset.model.d.ts +0 -3
- package/lib/components/ca-chart/models/index.d.ts +2 -0
- package/lib/components/ca-chart/utils/constants/chart.constants.d.ts +3 -0
- package/lib/components/ca-chart/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-chart/utils/helpers/chart.helper.d.ts +7 -1
- package/lib/components/ca-chart-manager/ca-chart-manager.component.d.ts +27 -0
- package/lib/components/ca-chart-manager/models/hover-state.model.d.ts +4 -0
- package/lib/components/ca-chart-manager/models/index.d.ts +1 -0
- package/lib/components/ca-chart-manager/services/chart-manager.service.d.ts +10 -0
- package/lib/components/ca-chart-manager/services/index.d.ts +1 -0
- package/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.d.ts +2 -2
- package/lib/components/ca-dropdown-menu/models/{dropdown-option-emit.model.d.ts → dropdown-menu-option-emit.model.d.ts} +1 -1
- package/lib/components/ca-dropdown-menu/models/index.d.ts +1 -1
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +3 -3
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +2 -2
- package/lib/components/ca-tooltip-list/ca-tooltip-list.component.d.ts +1 -1
- package/lib/components/ca-tooltip-list/models/tooltip-list-item.model.d.ts +0 -1
- package/lib/components/ca-tooltip-list/models/tooltip-list.model.d.ts +1 -3
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/src/assets/ca-components/svg/common/states/ic_alabama.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_alaska.svg +14 -0
- package/src/assets/ca-components/svg/common/states/ic_arizona.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_arkansas.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_california.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_colorado.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_connecticut.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_delaware.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_florida.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_georgia.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_hawaii.svg +10 -0
- package/src/assets/ca-components/svg/common/states/ic_idaho.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_illinois.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_indiana.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_iowa.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_kansas.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_kentucky.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_louisiana.svg +4 -0
- package/src/assets/ca-components/svg/common/states/ic_maine.svg +9 -0
- package/src/assets/ca-components/svg/common/states/ic_maryland.svg +7 -0
- package/src/assets/ca-components/svg/common/states/ic_massachusetts.svg +7 -0
- package/src/assets/ca-components/svg/common/states/ic_michigan.svg +11 -0
- package/src/assets/ca-components/svg/common/states/ic_minnesota.svg +4 -0
- package/src/assets/ca-components/svg/common/states/ic_mississippi.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_missouri.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_montana.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_nebraska.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_nevada.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_new_hampshire.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_new_jersey.svg +5 -0
- package/src/assets/ca-components/svg/common/states/ic_new_mexico.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_new_york.svg +4 -0
- package/src/assets/ca-components/svg/common/states/ic_north_carolina.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_north_dakota.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_ohio.svg +4 -0
- package/src/assets/ca-components/svg/common/states/ic_oklahoma.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_oregon.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_pennsylvania.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_rhode_island.svg +8 -0
- package/src/assets/ca-components/svg/common/states/ic_south_carolina.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_south_dakota.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_tennessee.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_texas.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_utah.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_vermont.svg +7 -0
- package/src/assets/ca-components/svg/common/states/ic_virginia.svg +4 -0
- package/src/assets/ca-components/svg/common/states/ic_washington.svg +15 -0
- package/src/assets/ca-components/svg/common/states/ic_west_virginia.svg +3 -0
- package/src/assets/ca-components/svg/common/states/ic_wisconsin.svg +4 -0
- package/src/assets/ca-components/svg/common/states/ic_wyoming.svg +3 -0
- package/esm2022/lib/components/ca-chart/config/ca-base-chart-dataset.config.mjs +0 -10
- package/esm2022/lib/components/ca-chart/config/index.mjs +0 -2
- package/esm2022/lib/components/ca-dropdown-menu/models/dropdown-option-emit.model.mjs +0 -2
- package/lib/components/ca-chart/config/ca-base-chart-dataset.config.d.ts +0 -4
- package/lib/components/ca-chart/config/index.d.ts +0 -1
|
@@ -29,13 +29,14 @@ import * as i27 from "./components/ca-right-side-panel/components/ca-right-side-
|
|
|
29
29
|
import * as i28 from "./components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component";
|
|
30
30
|
import * as i29 from "./components/ca-right-side-panel/ca-right-side-panel.component";
|
|
31
31
|
import * as i30 from "./components/ca-chart/ca-chart.component";
|
|
32
|
-
import * as i31 from "./components/ca-
|
|
33
|
-
import * as i32 from "./components/ca-
|
|
34
|
-
import * as i33 from "./components/ca-
|
|
35
|
-
import * as i34 from "./components/ca-
|
|
36
|
-
import * as i35 from "./components/ca-
|
|
32
|
+
import * as i31 from "./components/ca-chart-manager/ca-chart-manager.component";
|
|
33
|
+
import * as i32 from "./components/ca-dropdown-menu/ca-dropdown-menu.component";
|
|
34
|
+
import * as i33 from "./components/ca-upload-files/ca-upload-files.component";
|
|
35
|
+
import * as i34 from "./components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component";
|
|
36
|
+
import * as i35 from "./components/ca-progress-range/ca-progress-range.component";
|
|
37
|
+
import * as i36 from "./components/ca-tooltip-list/ca-tooltip-list.component";
|
|
37
38
|
export declare class CaComponentsLibModule {
|
|
38
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaComponentsLibModule, never>;
|
|
39
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i20.CaTodoComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i24.CaInputAddressDropdownComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.
|
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i20.CaTodoComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i24.CaInputAddressDropdownComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.CaChartManagerComponent, typeof i32.CaDropdownMenuComponent, typeof i33.CaUploadFilesComponent, typeof i34.CaRightSidePanelCompanyComponent, typeof i35.CaProgressRangeComponent, typeof i36.CaTooltipListComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.CaChartManagerComponent, typeof i32.CaDropdownMenuComponent, typeof i33.CaUploadFilesComponent, typeof i34.CaRightSidePanelCompanyComponent, typeof i35.CaProgressRangeComponent, typeof i36.CaTooltipListComponent, typeof i24.CaInputAddressDropdownComponent]>;
|
|
40
41
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaComponentsLibModule>;
|
|
41
42
|
}
|
|
@@ -1,22 +1,29 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef,
|
|
2
|
-
import { IChartConfiguration } from './models';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { IChartConfiguration, IChartDatasetHover } from './models';
|
|
3
|
+
import { ChartManagerService } from '../ca-chart-manager/services';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CaChartComponent implements AfterViewInit {
|
|
6
|
+
private changeDetector;
|
|
7
|
+
private chartManagerService?;
|
|
5
8
|
chartCanvas: ElementRef;
|
|
9
|
+
chartId: string;
|
|
10
|
+
set chartDatasetHover(value: IChartDatasetHover | null);
|
|
6
11
|
set chartConfig(value: IChartConfiguration);
|
|
7
|
-
|
|
12
|
+
hoveredIndex: EventEmitter<number | null>;
|
|
8
13
|
private chart;
|
|
9
14
|
private chartContext;
|
|
15
|
+
private subscription;
|
|
10
16
|
private plugins?;
|
|
11
|
-
private
|
|
12
|
-
private
|
|
17
|
+
private areAnimationsCompleated;
|
|
18
|
+
private _hoveredIndex;
|
|
13
19
|
_chartConfig: IChartConfiguration;
|
|
14
20
|
isChartDataAvailable: boolean;
|
|
15
|
-
constructor();
|
|
16
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
constructor(changeDetector: ChangeDetectorRef, chartManagerService?: ChartManagerService | undefined);
|
|
17
22
|
ngAfterViewInit(): void;
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
private initializeChartManagerService;
|
|
18
25
|
private initializeAnnotationPlugin;
|
|
19
|
-
updateDatasetBackgroundOnHover(
|
|
26
|
+
updateDatasetBackgroundOnHover(chartDatasetHover: IChartDatasetHover): void;
|
|
20
27
|
private createChart;
|
|
21
28
|
private updateChart;
|
|
22
29
|
private setChartOptionsProperties;
|
|
@@ -26,6 +33,7 @@ export declare class CaChartComponent implements AfterViewInit {
|
|
|
26
33
|
private setMultipleYAxis;
|
|
27
34
|
private resetAnnotations;
|
|
28
35
|
private setVerticalDashedAnnotationLine;
|
|
29
|
-
|
|
30
|
-
static
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaChartComponent, [null, { optional: true; }]>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaChartComponent, "app-ca-chart", never, { "chartId": { "alias": "chartId"; "required": false; }; "chartDatasetHover": { "alias": "chartDatasetHover"; "required": false; }; "chartConfig": { "alias": "chartConfig"; "required": false; }; }, { "hoveredIndex": "hoveredIndex"; }, never, never, true, never>;
|
|
31
39
|
}
|
|
@@ -4,13 +4,16 @@ export interface IBaseDataset {
|
|
|
4
4
|
order?: number;
|
|
5
5
|
label: string;
|
|
6
6
|
data: number[] | [number, number][];
|
|
7
|
+
hidden?: boolean;
|
|
7
8
|
borderColor?: string;
|
|
8
9
|
borderWidth?: number;
|
|
9
|
-
backgroundColor?: string | CanvasGradient;
|
|
10
|
+
backgroundColor?: string | string[] | CanvasGradient;
|
|
10
11
|
color?: string;
|
|
12
|
+
spanGaps?: boolean;
|
|
11
13
|
colorEdgeValue?: number;
|
|
12
14
|
color2?: string;
|
|
13
15
|
fill?: boolean;
|
|
14
|
-
|
|
16
|
+
yAxisID?: string;
|
|
15
17
|
shiftValue?: number;
|
|
18
|
+
isCurrency?: boolean;
|
|
16
19
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ChartOptions,
|
|
2
|
-
import { IBaseDataset, IChartData } from '../models';
|
|
1
|
+
import { ChartOptions, ChartTypeRegistry } from 'chart.js';
|
|
2
|
+
import { IBaseDataset, IChartCenterLabel, IChartData } from '../models';
|
|
3
3
|
import { IChartAnnotation } from './chart-annotation.model';
|
|
4
4
|
export interface IChartConfiguration {
|
|
5
|
-
chartType:
|
|
5
|
+
chartType: keyof ChartTypeRegistry;
|
|
6
6
|
chartData: IChartData<IBaseDataset>;
|
|
7
7
|
chartOptions: ChartOptions;
|
|
8
8
|
height: number;
|
|
@@ -12,6 +12,13 @@ export interface IChartConfiguration {
|
|
|
12
12
|
isStacked?: boolean;
|
|
13
13
|
showTooltipBackground?: boolean;
|
|
14
14
|
showXAxisLabels?: boolean;
|
|
15
|
+
verticalyAlignBarChartWithLineCart?: boolean;
|
|
16
|
+
showHighlightPointOnHover?: boolean;
|
|
17
|
+
isDatasetHoverEnabled?: boolean;
|
|
18
|
+
isTooltipItemInSelectedItems?: boolean;
|
|
19
|
+
showBottomLineOnLineChart?: boolean;
|
|
15
20
|
annotations?: IChartAnnotation[];
|
|
16
21
|
hasVerticalDashedAnnotation?: boolean;
|
|
22
|
+
isDashboardChart?: boolean;
|
|
23
|
+
centerLabels?: IChartCenterLabel[];
|
|
17
24
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chart.constants';
|
|
@@ -4,12 +4,18 @@ import { IBaseDataset, IChartData } from '../../models';
|
|
|
4
4
|
export declare class ChartHelper {
|
|
5
5
|
static hexToRgba(colorHex: string, opacity?: number): string;
|
|
6
6
|
static rgbToRgba(rgb: string | undefined, opacity: number): string;
|
|
7
|
+
static changeOpacityOfRgbOrRgba(color: string, opacity: number): string;
|
|
7
8
|
static calculateMinValue(data: number[]): number;
|
|
8
9
|
static calculateMaxValue(data: number[]): number;
|
|
9
|
-
static createGradient(chartContext: CanvasRenderingContext2D, chartCanvas: ElementRef, color: string, color2: string): CanvasGradient;
|
|
10
|
+
static createGradient(chartContext: CanvasRenderingContext2D, chartCanvas: ElementRef, color: string, color2: string, opacityColor1?: number, opacityColor2?: number, areColorsInRgbaFormat?: boolean): CanvasGradient;
|
|
10
11
|
static createGradientWithShiftValue(chartContext: CanvasRenderingContext2D, chartHeight: number, color: string, color2: string, shiftValue: number, hasFade?: boolean): CanvasGradient;
|
|
11
12
|
static calculateTickPositions(xScale: CategoryScale | LinearScale): number[];
|
|
12
13
|
static highlightSegment(ctx: CanvasRenderingContext2D, xScale: CategoryScale | LinearScale, chartArea: ChartArea, chartHeight: number, index: number): void;
|
|
14
|
+
static drawDoughnutLegend(chart: Chart, position: {
|
|
15
|
+
indx: number;
|
|
16
|
+
offsetTop: number;
|
|
17
|
+
}, text: string, fontSize?: number, color?: string): void;
|
|
13
18
|
static highlightPoint(ctx: CanvasRenderingContext2D, chart: Chart, index: number, chartData: IChartData<IBaseDataset>): void;
|
|
14
19
|
private static getSegmentPosition;
|
|
20
|
+
static convertRgbToRgba(colorValue: string, alpha?: number): string;
|
|
15
21
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { ChartManagerService } from './services/chart-manager.service';
|
|
3
|
+
import { IChartConfiguration, IChartDatasetHover } from '../ca-chart/models';
|
|
4
|
+
import { ITooltipList } from '../ca-tooltip-list/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CaChartManagerComponent {
|
|
7
|
+
private chartManagerService;
|
|
8
|
+
private cdr;
|
|
9
|
+
chartConfigs: IChartConfiguration[];
|
|
10
|
+
tooltipLables: string[];
|
|
11
|
+
chartDatasetHover: IChartDatasetHover | null;
|
|
12
|
+
chartManagerContainer: ElementRef;
|
|
13
|
+
tooltipContainer: ElementRef;
|
|
14
|
+
hoveredIndex: number | null;
|
|
15
|
+
hoveredChartId: string | null;
|
|
16
|
+
tooltipList: ITooltipList | null;
|
|
17
|
+
tooltipPosition: {
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
};
|
|
21
|
+
constructor(chartManagerService: ChartManagerService, cdr: ChangeDetectorRef);
|
|
22
|
+
trackByIndex(index: number): number;
|
|
23
|
+
onMouseMove(event: MouseEvent): void;
|
|
24
|
+
private updateTooltipList;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaChartManagerComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaChartManagerComponent, "app-ca-chart-manager", never, { "chartConfigs": { "alias": "chartConfigs"; "required": false; }; "tooltipLables": { "alias": "tooltipLables"; "required": false; }; "chartDatasetHover": { "alias": "chartDatasetHover"; "required": false; }; }, {}, never, never, true, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './hover-state.model';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { IHoverState } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ChartManagerService {
|
|
5
|
+
hoverStateSubject: BehaviorSubject<IHoverState>;
|
|
6
|
+
hoverState$: import("rxjs").Observable<IHoverState>;
|
|
7
|
+
setHoverState(index: number | null, chartId: string | null): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartManagerService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartManagerService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chart-manager.service';
|
|
@@ -3,7 +3,7 @@ import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
|
3
3
|
import { DropdownMenuStringEnum } from './enums';
|
|
4
4
|
import { DropdownMenuSvgRoutes } from './utils/svg-routes';
|
|
5
5
|
import { DropdownMenuType } from './types';
|
|
6
|
-
import { DropdownMenuItem,
|
|
6
|
+
import { DropdownMenuItem, DropdownMenuOptionEmit } from './models';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class CaDropdownMenuComponent {
|
|
9
9
|
type: DropdownMenuType;
|
|
@@ -12,7 +12,7 @@ export declare class CaDropdownMenuComponent {
|
|
|
12
12
|
isDarkBackground?: boolean;
|
|
13
13
|
isLeftSideIconPosition?: boolean;
|
|
14
14
|
isPositionTranslateUnset?: boolean;
|
|
15
|
-
dropdownOptionEmitter: EventEmitter<
|
|
15
|
+
dropdownOptionEmitter: EventEmitter<DropdownMenuOptionEmit>;
|
|
16
16
|
dropdownMenuSvgRoutes: typeof DropdownMenuSvgRoutes;
|
|
17
17
|
dropdownMenuStringEnum: typeof DropdownMenuStringEnum;
|
|
18
18
|
dropdownPopover: NgbPopover | null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './dropdown-menu-item.model';
|
|
2
|
-
export * from './dropdown-option-emit.model';
|
|
2
|
+
export * from './dropdown-menu-option-emit.model';
|
|
@@ -60,8 +60,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
60
60
|
addressList: AddressList[];
|
|
61
61
|
usaStates: ArrayStatus[];
|
|
62
62
|
canadaStates: ArrayStatus[];
|
|
63
|
-
setFilter: EventEmitter<
|
|
64
|
-
clearAll: EventEmitter<
|
|
63
|
+
setFilter: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
64
|
+
clearAll: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
65
65
|
private destroy$;
|
|
66
66
|
isSearchExpanded: boolean;
|
|
67
67
|
isFilterActive: boolean;
|
|
@@ -3,7 +3,7 @@ import { PeriodContentSvgRoutes } from '../../utils/svg-routes';
|
|
|
3
3
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
4
4
|
import { CaDropdownMenuComponent } from '../../../ca-dropdown-menu/ca-dropdown-menu.component';
|
|
5
5
|
import { PayrollReportTableResponse } from '../../models/payroll-report-tables.type';
|
|
6
|
-
import { DropdownMenuItem,
|
|
6
|
+
import { DropdownMenuItem, DropdownMenuOptionEmit } from '../../../ca-dropdown-menu/models';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class CaPeriodContentPaymentComponent implements OnInit {
|
|
9
9
|
private cdr;
|
|
@@ -21,7 +21,7 @@ export declare class CaPeriodContentPaymentComponent implements OnInit {
|
|
|
21
21
|
hideTotal: boolean;
|
|
22
22
|
openAddNewModalEmiter: EventEmitter<string>;
|
|
23
23
|
openEditEntryItem: EventEmitter<{
|
|
24
|
-
$event:
|
|
24
|
+
$event: DropdownMenuOptionEmit;
|
|
25
25
|
data: any;
|
|
26
26
|
title: string;
|
|
27
27
|
}>;
|
|
@@ -41,7 +41,7 @@ export declare class CaPeriodContentPaymentComponent implements OnInit {
|
|
|
41
41
|
identity(index: number): number;
|
|
42
42
|
openAddNewModal(): void;
|
|
43
43
|
handleMenuOpen(event: {
|
|
44
|
-
$event:
|
|
44
|
+
$event: DropdownMenuOptionEmit;
|
|
45
45
|
data: PayrollReportTableResponse;
|
|
46
46
|
title: string;
|
|
47
47
|
}): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PickupDeliverySvgRoutes } from '../../../../utils/svg-routes';
|
|
2
2
|
import { FormatCurrencyPipe } from '../../../../../../pipes/format-currency.pipe';
|
|
3
3
|
import { LoadShortResponse, StatusTypeEnum } from '../../../../models';
|
|
4
|
-
import { DropdownMenuItem,
|
|
4
|
+
import { DropdownMenuItem, DropdownMenuOptionEmit } from '../../../../../ca-dropdown-menu/models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ActiveLoadComponent {
|
|
7
7
|
formatCurrencyPipe: FormatCurrencyPipe;
|
|
@@ -12,7 +12,7 @@ export declare class ActiveLoadComponent {
|
|
|
12
12
|
ngOnInit(): void;
|
|
13
13
|
private setDropdownOptions;
|
|
14
14
|
getSvgPath(propertyName: keyof typeof PickupDeliverySvgRoutes): string;
|
|
15
|
-
handleMenuOpen(event:
|
|
15
|
+
handleMenuOpen(event: DropdownMenuOptionEmit): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveLoadComponent, never>;
|
|
17
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveLoadComponent, "app-ca-load-single", never, { "activeLoad": { "alias": "activeLoad"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -2,7 +2,7 @@ import { ITooltipList } from './models';
|
|
|
2
2
|
import { CaTooltipListConstants } from './utils/constants';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CaTooltipListComponent {
|
|
5
|
-
tooltipList: ITooltipList;
|
|
5
|
+
tooltipList: ITooltipList | null;
|
|
6
6
|
constants: typeof CaTooltipListConstants;
|
|
7
7
|
truncateLength: number;
|
|
8
8
|
get isSingleItemSelected(): boolean;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ITooltipListItem } from './tooltip-list-item.model';
|
|
2
2
|
export interface ITooltipList {
|
|
3
|
-
|
|
4
|
-
startDate?: string;
|
|
5
|
-
endDate?: string;
|
|
3
|
+
date: string;
|
|
6
4
|
selectedItems: ITooltipListItem[];
|
|
7
5
|
otherItems?: ITooltipListItem[];
|
|
8
6
|
showPercentage?: boolean;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -49,3 +49,4 @@ export * from './lib/components/ca-sort-dropdown/models';
|
|
|
49
49
|
export * from './lib/components/ca-sort-dropdown/enums';
|
|
50
50
|
export * from './lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component';
|
|
51
51
|
export * from './lib/components/ca-modal-button/ca-modal-button.component';
|
|
52
|
+
export * from './lib/components/ca-chart-manager/ca-chart-manager.component';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.47039 18.6017C5.38414 18.0895 5.29789 17.5769 5.21164 17.0639C5.00839 15.8398 4.80551 14.6162 4.60301 13.3929C4.59278 13.3365 4.58676 13.2793 4.58501 13.2219C4.51151 9.63388 4.43876 6.04734 4.36675 2.4623C4.3686 2.4252 4.35999 2.38834 4.34188 2.35592C4.32378 2.32349 4.29692 2.29681 4.26438 2.27892C4.16395 2.18697 4.07516 2.08307 4 1.96954C4.05124 1.95014 4.10389 1.93472 4.1575 1.92341C5.29602 1.78729 6.43566 1.65904 7.57304 1.51391C8.76781 1.36091 9.96257 1.19665 11.1517 1.02903C11.5646 0.971652 11.5635 0.961527 11.6951 1.36653C12.4451 3.65781 13.197 5.94834 13.9507 8.23812C14.037 8.43293 14.1377 8.62097 14.2523 8.80062C14.3029 8.8985 14.3333 9.00875 14.385 9.10663C14.436 9.21181 14.5007 9.30979 14.5774 9.39801C14.6719 9.49701 14.7788 9.57463 14.79 9.72989C14.79 9.76814 14.8508 9.80189 14.8958 9.85251C14.8811 9.95264 14.8643 10.0775 14.844 10.2091L15.1061 10.3216C15.2186 10.3734 15.2063 10.451 15.1421 10.5331C15.1005 10.586 15.0623 10.6591 15.006 10.6805C14.7518 10.7806 14.781 10.9843 14.8215 11.1789C14.8684 11.3901 14.8397 11.611 14.7405 11.8033C14.6505 11.9709 14.7405 12.107 14.7563 12.2432C14.7888 12.438 14.8821 12.6176 15.0229 12.7562C15.0849 12.8202 15.1288 12.8996 15.1499 12.9862C15.1711 13.0728 15.1688 13.1635 15.1433 13.2489C15.1208 13.4245 15.1208 13.6021 15.1433 13.7777C15.1401 13.8533 15.131 13.9285 15.1163 14.0027C15.1163 14.0263 15.0904 14.0544 15.0983 14.0713C15.152 14.25 15.2412 14.416 15.3604 14.5596C15.4632 14.6796 15.5564 14.8075 15.6394 14.9421C12.9675 15.4292 10.3237 15.7993 7.70805 16.1211C7.67655 16.2662 7.66192 16.381 7.62704 16.4901C7.60897 16.5332 7.60698 16.5813 7.62144 16.6257C7.63589 16.6701 7.66583 16.7078 7.7058 16.732C7.89591 16.9296 8.12046 17.0908 8.36843 17.2079C8.41343 17.2236 8.44155 17.3372 8.44605 17.4081C8.44157 17.4809 8.42364 17.5522 8.39318 17.6185C8.32568 17.8131 8.37405 17.9166 8.57318 17.992C8.58547 17.9966 8.59718 18.0026 8.60806 18.01C8.49556 18.1911 8.38305 18.3475 8.28743 18.5151C8.30369 18.5316 8.32139 18.5467 8.3403 18.5601C7.88779 18.8066 7.38899 18.9564 6.87554 19C6.92054 18.9381 6.93966 18.8774 7.04204 18.9359C7.14441 18.9944 7.42904 18.8706 7.52579 18.7244C7.38292 18.6209 7.24341 18.5072 7.09041 18.415C7.02295 18.3692 6.96886 18.3064 6.93368 18.2328C6.89849 18.1593 6.88348 18.0777 6.89016 17.9965C6.91176 17.9416 6.92169 17.8829 6.91932 17.824C6.91695 17.7651 6.90233 17.7074 6.87639 17.6544C6.85046 17.6015 6.81378 17.5546 6.76869 17.5166C6.72361 17.4787 6.6711 17.4505 6.61453 17.434C6.59232 17.424 6.57089 17.4123 6.55041 17.3991C6.50878 17.4441 6.46603 17.4869 6.42778 17.5319C6.40978 17.5521 6.3839 17.5825 6.3884 17.6027C6.39698 17.7637 6.37483 17.9248 6.32315 18.0775C6.31586 18.1909 6.32649 18.3048 6.35465 18.415C6.39515 18.6321 6.35465 18.7019 6.1454 18.7525C6.11526 18.6989 6.06984 18.6555 6.01494 18.6279C5.96003 18.6002 5.89814 18.5896 5.83715 18.5972C5.71508 18.6057 5.59263 18.6072 5.47039 18.6017Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.93199 16.8535V16.8577L4.92936 16.8586C4.91164 16.8646 4.89286 16.87 4.87454 16.8752C4.76302 16.9071 4.64966 16.9396 4.64966 17.1359C4.55641 16.9778 4.46658 17.0151 4.36373 17.0578C4.34873 17.064 4.33345 17.0704 4.31785 17.0763C4.2545 17.0953 4.19569 17.1271 4.14502 17.1696C4.09436 17.2122 4.05289 17.2646 4.02315 17.3237C4.0063 17.3722 3.99461 17.4224 3.98828 17.4733C4.00948 17.4733 4.03565 17.4762 4.06156 17.4791C4.11262 17.4849 4.16267 17.4905 4.17163 17.4733C4.24401 17.3375 4.36709 17.3381 4.48043 17.3387C4.56611 17.3391 4.64623 17.3395 4.69466 17.2809L4.7419 16.9626L4.76617 16.9901C4.78347 17.0099 4.79914 17.0277 4.81389 17.0425C4.82831 17.0569 4.84374 17.0703 4.8747 17.0972L4.93199 17.1471L4.93275 16.862L5.06661 17.0116C5.20414 17.0116 5.25253 16.9094 5.3047 16.7992C5.3481 16.7075 5.39412 16.6102 5.49628 16.5617L5.44454 16.7518L5.49628 16.7968L6.22403 16.4189L6.24203 16.4965C6.29013 16.4677 6.33693 16.4387 6.38362 16.4097C6.48105 16.3493 6.57799 16.2892 6.6852 16.2321C6.8438 16.1478 6.8573 16.1107 6.73807 15.9656L7.15425 15.7406C7.15658 15.737 7.15945 15.731 7.16296 15.7236C7.17471 15.699 7.19368 15.6592 7.22399 15.6427C7.26514 15.6207 7.31123 15.6039 7.35717 15.5872C7.51088 15.5311 7.66287 15.4756 7.62217 15.2288C7.61992 15.2164 7.64467 15.1962 7.66154 15.1849C7.73783 15.1305 7.81442 15.0764 7.89104 15.0223C8.07409 14.893 8.25777 14.7632 8.43765 14.6293C8.49387 14.5741 8.54402 14.513 8.58725 14.4471C8.61881 14.408 8.65283 14.3698 8.68712 14.3313C8.72977 14.2834 8.77295 14.235 8.81221 14.1839L8.82686 14.1652C8.876 14.1029 8.93257 14.0311 8.93257 13.9668C8.93145 13.9184 8.82009 13.8644 8.74922 13.8318C8.69533 13.8217 8.64002 13.8217 8.58613 13.8318C8.57895 13.8051 8.57704 13.7772 8.5805 13.7497C8.60821 13.651 8.66005 13.5608 8.73133 13.4872C8.80261 13.4135 8.8911 13.3588 8.98881 13.3279C9.01832 13.3187 9.04481 13.2799 9.06518 13.2502C9.06965 13.2436 9.07382 13.2375 9.07767 13.2323C9.0858 13.2212 9.09214 13.2069 9.09842 13.1928C9.10865 13.1699 9.11874 13.1473 9.13616 13.1389C9.27789 13.0703 9.29363 12.9893 9.19915 12.869C9.21708 12.8534 9.23925 12.8394 9.26165 12.8253C9.30248 12.7995 9.34409 12.7733 9.36225 12.7362C9.48286 12.493 9.65117 12.2765 9.85716 12.0996C9.92072 12.0377 9.99782 11.9914 10.0824 11.9645C10.1669 11.9375 10.2565 11.9307 10.3442 11.9444L10.5242 12.2188L10.1462 12.1772L9.85266 12.3853C9.83926 12.4404 9.82691 12.4923 9.81513 12.5419C9.78144 12.6838 9.7524 12.806 9.71656 12.9252C9.70354 12.9665 9.68198 13.0053 9.66033 13.0442C9.63896 13.0826 9.61749 13.1212 9.60408 13.1625C9.59058 13.2042 9.60071 13.284 9.6277 13.3009C9.67989 13.3231 9.73777 13.3282 9.79305 13.3155C9.83381 13.3031 9.87194 13.2833 9.90553 13.257L9.9359 13.302L9.51297 13.6395C9.57108 13.6968 9.648 13.7311 9.72949 13.7361C9.81098 13.7411 9.89151 13.7163 9.95615 13.6665C10.1451 13.5293 10.3182 13.3716 10.4724 13.1963C10.5375 13.1488 10.6091 13.1109 10.685 13.0838C10.7373 13.0575 10.8011 13.0703 10.8634 13.0828C10.9686 13.104 11.0695 13.1243 11.1034 12.9533L11.2069 13.0084L11.2306 12.9826L11.1181 12.8228L11.2778 12.5731L11.0596 12.6058L11.2013 12.4427L11.0236 12.3651L11.2013 12.1322L11.235 12.1468L11.1957 12.3437L11.2306 12.3729L11.4555 12.1705L11.5061 12.2481L11.766 12.1536L11.9201 12.3651L11.8537 12.4112L12.2193 12.491L12.1495 12.6035L12.4442 12.7621L12.5567 12.5484C12.5654 12.5901 12.5705 12.6303 12.575 12.6657C12.5832 12.7304 12.5893 12.7785 12.6118 12.788C12.6714 12.8146 12.7258 12.8546 12.7803 12.8946C12.9027 12.9845 13.0251 13.0744 13.2057 13.0129C13.4314 12.9503 13.6716 12.9657 13.8873 13.0568C13.9234 13.0696 13.971 13.0522 14.0258 13.0323C14.0531 13.0223 14.0821 13.0118 14.1123 13.0039C14.1089 13.0377 14.1022 13.1029 14.0954 13.1659C14.335 13.3234 14.5825 13.4021 14.8221 13.1153L14.8704 13.1614L14.7984 13.5135C15.1255 13.5923 15.3462 13.8263 15.5643 14.0575C15.7226 14.2255 15.8797 14.392 16.0751 14.4966L16.3833 14.4234C16.3736 14.4016 16.3646 14.3803 16.3558 14.3596C16.3361 14.313 16.3174 14.2687 16.2933 14.2244C16.2681 14.178 16.2382 14.1345 16.2082 14.0911C16.1967 14.0744 16.1853 14.0578 16.1741 14.041L15.9626 13.8667L15.7467 13.9522C15.7614 13.7555 15.6451 13.6405 15.5291 13.5258C15.4773 13.4746 15.4255 13.4234 15.3856 13.365C15.3502 13.3133 15.3019 13.2684 15.2531 13.2228C15.1234 13.102 14.9896 12.9774 15.0819 12.7126L14.632 12.8577C14.632 12.8566 14.5656 12.8004 14.5195 12.8116C14.2445 12.8809 14.2452 12.7188 14.2461 12.5409L14.2462 12.5113V3.22712C14.0458 3.12548 13.855 3.00616 13.6759 2.87055C13.567 2.74214 13.4164 2.65612 13.2504 2.62753C13.0845 2.59895 12.9138 2.62963 12.7682 2.71421C12.7042 2.75253 12.6299 2.76979 12.5556 2.76353C12.4813 2.75728 12.4109 2.72782 12.3542 2.67934C12.1737 2.54607 11.9498 2.48509 11.7266 2.50837C11.5948 2.49932 11.4647 2.47324 11.3397 2.43075C11.2557 2.4032 11.1737 2.36975 11.0944 2.33065C11.0678 2.31811 11.0422 2.30344 11.018 2.28678L10.9877 2.26755C10.7865 2.13938 10.5857 2.01149 10.333 2.1743C10.3127 2.18442 10.2655 2.19567 10.2565 2.18442C10.1677 2.0703 10.0829 2.10861 9.99759 2.14711C9.96183 2.16326 9.926 2.17944 9.88978 2.18442C9.78116 2.19145 9.6722 2.19145 9.56358 2.18442L9.6007 2.0337C9.44329 1.99168 9.36427 1.97059 9.34156 1.92277C9.31867 1.87456 9.35298 1.7992 9.42186 1.64789C9.3241 1.64664 9.22692 1.63265 9.13278 1.60627C9.05395 1.57485 8.96844 1.56394 8.88424 1.57456C8.80005 1.58519 8.71993 1.61699 8.65137 1.66701C8.5827 1.68967 8.50857 1.68967 8.4399 1.66701C8.41066 1.66139 8.36679 1.5894 8.37579 1.56465C8.4613 1.34375 8.33307 1.32646 8.22456 1.31182C8.21317 1.31029 8.202 1.30878 8.19132 1.30707L7.87863 1.71425L7.82688 1.68163L7.79202 1.50166C7.80192 1.49763 7.81218 1.49455 7.82197 1.49161C7.84223 1.48554 7.86053 1.48005 7.86962 1.46792C7.90113 1.4238 7.92934 1.37748 7.9577 1.33089C7.96984 1.31095 7.98201 1.29096 7.99448 1.27108L7.52094 1C7.39359 1.20826 7.23758 1.39758 7.05751 1.5624C6.84445 1.66924 6.61718 1.745 6.38263 1.78737L6.36463 1.74575L6.431 1.65351C6.2562 1.73952 6.12598 1.88316 5.99714 2.02528C5.81424 2.22704 5.63411 2.42573 5.33319 2.45213L5.27807 2.33065C5.26064 2.35626 5.2441 2.37963 5.22851 2.40167C5.19485 2.44923 5.16542 2.49082 5.14084 2.53536C4.93899 2.79593 4.8035 3.10165 4.74604 3.42621C4.71878 3.58927 4.64031 3.73941 4.522 3.85489C4.4037 3.97037 4.25169 4.04517 4.08802 4.06847C3.94003 4.08745 3.79153 4.10232 3.65288 4.11621C3.58604 4.12291 3.52148 4.12938 3.46038 4.13596L3.32653 4.75911L3.39964 4.64663C3.44293 4.77274 3.50596 4.89119 3.58636 4.99756C3.77771 5.16798 3.97903 5.32686 4.18926 5.47336C4.27475 5.54107 4.34478 5.62629 4.39463 5.72329C4.44449 5.82029 4.47303 5.92683 4.47833 6.03576C4.48175 6.06053 4.4907 6.08422 4.50453 6.10505C4.51836 6.12589 4.5367 6.14334 4.5582 6.15612C4.65322 6.19136 4.75287 6.21258 4.85402 6.21911C4.97354 6.22351 5.09355 6.22217 5.22494 6.2207C5.29498 6.21992 5.36863 6.21911 5.44679 6.21911C5.22481 6.51323 5.25253 6.63103 5.53645 6.78972L5.25895 6.85462C5.3073 6.89169 5.36995 6.90567 5.43106 6.9193C5.54054 6.94372 5.64509 6.96704 5.65376 7.12008L5.43892 7.05146L5.30844 7.2978C5.23219 7.29242 5.15774 7.28654 5.08453 7.28077C4.91264 7.2672 4.74744 7.25416 4.58182 7.24943C4.43784 7.24493 4.3906 7.18981 4.41984 7.05034C4.43391 6.98146 4.44408 6.91161 4.4542 6.84207C4.45944 6.80607 4.46471 6.76993 4.47046 6.73427C4.2455 6.66453 3.55262 6.92998 3.57061 7.08071L3.71459 7.19319C3.69024 7.19855 3.66816 7.20589 3.64869 7.21236C3.61509 7.22352 3.58924 7.2321 3.57286 7.22356C3.3299 7.09196 3.21742 7.22806 3.10494 7.41365C3.09144 7.43615 3.06445 7.46877 3.0487 7.46877C2.92424 7.44989 2.86505 7.52382 2.80624 7.59727C2.7529 7.66387 2.69988 7.73009 2.59878 7.72635L2.59766 7.79609L3.39177 8.07954L3.19605 8.25726C3.21491 8.3193 3.23093 8.37916 3.24651 8.43741C3.26624 8.51115 3.28528 8.58231 3.30853 8.65206C3.32428 8.69931 3.36477 8.76342 3.40527 8.77242C3.4673 8.78669 3.52763 8.8084 3.58766 8.83C3.74531 8.88674 3.90093 8.94274 4.08015 8.86128C4.18463 8.79965 4.30566 8.77197 4.42654 8.78204C4.54742 8.79211 4.6622 8.83945 4.75504 8.91752L4.6538 8.76229L4.70667 8.7218L4.88664 8.96026C4.9963 8.85688 5.11158 8.75962 5.23195 8.66894C5.3588 8.59424 5.49029 8.52774 5.62563 8.46984C5.6343 8.49118 5.64919 8.51537 5.66488 8.54088C5.70216 8.60146 5.74399 8.66944 5.71787 8.72405C5.692 8.77814 5.62298 8.81693 5.55001 8.85794C5.51827 8.87577 5.48579 8.89403 5.45579 8.91414C5.59902 8.98755 5.63823 9.1265 5.67946 9.2726C5.69003 9.31007 5.70074 9.34801 5.71337 9.38544C5.74865 9.46441 5.75322 9.5537 5.72618 9.63587C5.69914 9.71803 5.64244 9.78715 5.56715 9.82974C5.42825 9.87888 5.28133 9.90139 5.13409 9.8961C5.0891 9.87923 5.05761 9.92197 5.02836 9.96809C4.81915 10.2977 4.78315 10.3044 4.44571 10.1312C4.37328 10.1035 4.29318 10.1035 4.22075 10.1312C4.19542 10.1404 4.18319 10.1863 4.16975 10.2366C4.1635 10.2601 4.15698 10.2845 4.14876 10.3067C3.96586 10.3538 3.98713 10.4826 4.00799 10.6089C4.01651 10.6604 4.02496 10.7116 4.01941 10.7566C3.89558 10.8099 3.79225 10.9017 3.72477 11.0185C3.65729 11.1352 3.62926 11.2705 3.64485 11.4045L3.53237 11.4382L3.43901 11.68L3.53237 11.6969L3.68197 12.0591L3.97779 12.0962L3.83607 12.2256L4.02279 12.2469L3.77758 12.6001C3.81804 12.5978 3.8586 12.5978 3.89906 12.6001C3.91262 12.7267 4.00107 12.7869 4.08927 12.847C4.15471 12.8915 4.22001 12.9359 4.2545 13.0073C4.26299 13.0266 4.27034 13.0482 4.27763 13.0697C4.29544 13.1221 4.31287 13.1734 4.3456 13.1862C4.44686 13.2184 4.55489 13.223 4.65852 13.1995C4.76215 13.1759 4.85761 13.1251 4.935 13.0523C4.96471 13.0332 4.96773 12.9799 4.97092 12.9236C4.9728 12.8904 4.97473 12.8562 4.98225 12.8273C5.00026 12.777 5.02285 12.7285 5.04973 12.6822C5.05719 12.7104 5.05499 12.7373 5.05299 12.7619C5.05106 12.7855 5.04932 12.8069 5.05648 12.8251C5.09217 12.9164 5.13283 13.006 5.17359 13.0957C5.19703 13.1473 5.22063 13.1993 5.2432 13.2514L5.25465 13.2782C5.29961 13.3824 5.34135 13.4791 5.2522 13.6046C5.17796 13.7092 5.18921 13.8363 5.37818 13.8037L5.24883 14.2142C5.32017 14.218 5.3915 14.2065 5.45804 14.1805C5.57336 14.1085 5.68095 14.0252 5.78471 13.9449C5.8236 13.9148 5.86206 13.8851 5.90009 13.8565L6.13067 14.0748L6.21953 13.9623L6.5851 14.4516C6.60118 14.3754 6.59277 14.3015 6.58506 14.2338C6.57069 14.1075 6.55878 14.0029 6.71332 13.9465C6.74594 14.1625 6.81906 14.2514 6.95741 14.185C7.04812 14.1415 7.13642 14.0941 7.22483 14.0466C7.27105 14.0218 7.31794 13.9967 7.36459 13.9724C7.16341 14.3039 7.06442 14.6873 7.08001 15.0747C7.04747 15.0996 7.01692 15.1225 6.98828 15.144C6.74411 15.3274 6.63915 15.4063 6.63009 15.681C6.47848 15.7048 6.3339 15.7614 6.20645 15.8469C6.079 15.9324 5.97176 16.0447 5.89221 16.1759C5.87899 16.2628 5.87899 16.3511 5.89221 16.438C5.88141 16.438 5.86467 16.4405 5.84531 16.4433C5.79216 16.4512 5.71929 16.462 5.69537 16.4324C5.5424 16.2389 5.38268 16.3311 5.2702 16.4324C5.14572 16.5623 5.03368 16.7047 4.9365 16.8562L4.93199 16.8535ZM4.9365 16.8562L4.93275 16.862L4.93199 16.8613V16.8577L4.9365 16.8562ZM5.98783 6.88387L5.98443 6.88675C6.04016 6.71599 5.94203 6.70301 5.84341 6.68995C5.78749 6.68255 5.73141 6.67513 5.70314 6.6389L5.71337 6.62854C5.74093 6.66543 5.79684 6.6728 5.85256 6.68015C5.95143 6.6932 6.0497 6.70617 5.98783 6.88387ZM4.28037 12.464L4.31973 12.3999L4.17014 12.3189C4.17576 12.3032 4.17576 12.2886 4.17576 12.2739L4.59081 12.392L4.59021 12.3933L4.20093 12.2822C4.19531 12.2968 4.19531 12.3126 4.19531 12.3272L4.34828 12.4127L4.3434 12.4207L4.28037 12.464ZM4.41982 12.4025L4.49295 12.6001L4.50719 12.5699L4.43939 12.3891L4.41982 12.4025Z" fill="black"/>
|
|
3
|
+
<path d="M15.9648 13.8215L16.1797 13.9981L16.3968 14.0307L16.4676 14.3153L16.8174 14.5223L16.6589 13.7113C16.7678 13.9069 16.8552 14.1033 16.9421 14.2986C16.9601 14.3391 16.9781 14.3795 16.9963 14.4199C17.0168 14.4553 17.0453 14.4853 17.0795 14.5077C17.141 14.5465 17.2003 14.5885 17.2572 14.6337C17.3827 14.7414 17.463 14.8924 17.4822 15.0566C17.4883 15.1245 17.5016 15.1918 17.5166 15.2674C17.5237 15.3033 17.5312 15.3411 17.5384 15.3817C17.6999 15.3716 17.7658 15.4967 17.8358 15.6296C17.8594 15.6744 17.8835 15.7201 17.9119 15.7618L17.8963 15.7467C17.7199 15.5755 17.5518 15.4124 17.2798 15.4626L17.3742 15.6572L17.1335 15.6156L17.2044 15.9103C17.1954 16.032 17.1876 16.1315 17.1798 16.2309L17.1796 16.2331L17.237 16.2421L17.3731 15.8226C17.4687 15.9396 17.5441 15.9902 17.6723 15.8653C17.7103 15.8296 17.7853 15.8323 17.8763 15.8356C17.9228 15.8373 17.9734 15.8391 18.0255 15.8361L17.8455 16.1893L18.0368 16.3546L18.129 16.1836C18.1812 16.2567 18.1472 16.3274 18.1136 16.3974C18.0711 16.4858 18.0292 16.573 18.1616 16.6628C18.1725 16.6365 18.1829 16.6106 18.1927 16.5862C18.2092 16.545 18.2242 16.5077 18.2369 16.4795C18.2493 16.452 18.2637 16.425 18.2782 16.3979C18.2875 16.3805 18.2968 16.3632 18.3056 16.3456L18.3404 16.3681L18.1976 16.9305C18.4372 16.7618 18.5474 16.8484 18.6318 17.2038C18.6866 17.1976 18.7397 17.1804 18.7878 17.1533C18.8359 17.1262 18.8781 17.0896 18.9118 17.0459C18.9455 17.0021 18.97 16.952 18.9839 16.8986C18.9978 16.8451 19.0009 16.7894 18.9928 16.7348C18.9853 16.6156 18.9872 16.496 18.9984 16.3771C18.9984 16.3684 18.9987 16.3589 18.999 16.3491C19.0003 16.3069 19.0017 16.2588 18.9816 16.2432C18.8618 16.1466 18.7317 16.0636 18.5935 15.9958C18.3347 15.879 18.1303 15.6678 18.0221 15.4053C17.8295 14.9823 17.6155 14.5693 17.381 14.168C17.2314 13.9703 17.063 13.7876 16.8782 13.6224C16.8502 13.5845 16.8286 13.5424 16.8141 13.4976C16.7899 13.4413 16.766 13.3851 16.7421 13.3288C16.7182 13.2726 16.6943 13.2164 16.6701 13.1602C16.6169 13.1858 16.5617 13.206 16.5106 13.2247C16.4093 13.2618 16.324 13.293 16.3023 13.3491C16.2346 13.5342 16.118 13.6975 15.9648 13.8215Z" fill="black"/>
|
|
4
|
+
<path d="M16.6203 15.2894L16.5315 15.5087C16.5224 15.242 16.4103 14.9893 16.2187 14.8035C16.205 14.7687 16.2003 14.731 16.2048 14.6939C16.2093 14.6568 16.223 14.6214 16.2446 14.5909C16.2699 14.58 16.2961 14.5631 16.3228 14.5459C16.4148 14.4864 16.5139 14.4224 16.6124 14.5819C16.6201 14.5937 16.6433 14.5952 16.6676 14.5968C16.6826 14.5977 16.6979 14.5987 16.7103 14.6021L16.7136 14.6031C16.8088 14.6307 16.8865 14.6533 16.8509 14.799C16.8483 14.9139 16.867 15.0283 16.906 15.1364L16.7047 15.0892C16.8355 15.2208 16.9253 15.3876 16.9632 15.5693C17.0011 15.751 16.9856 15.9398 16.9184 16.1128C16.8217 15.8439 16.7249 15.5762 16.6203 15.2894Z" fill="black"/>
|
|
5
|
+
<path d="M9.09223 14.7576L8.92969 14.6541C9.01794 14.5965 9.10077 14.531 9.17715 14.4584C9.22957 14.3761 9.29189 14.3005 9.36273 14.2334L9.32113 14.3808L9.53258 14.4932L9.1726 14.7956L9.33916 14.813L9.41341 15.1223L9.20644 15.1729L9.25031 15.2314L8.96911 15.5205L8.91062 15.417L8.67442 15.7387L8.62717 15.7083L8.70928 15.543L8.4562 15.5587V15.507L8.53268 15.4598C8.51431 15.438 8.4915 15.4163 8.46844 15.3944C8.41529 15.3439 8.3608 15.2921 8.35609 15.2348C8.34147 15.0604 8.5878 14.9682 8.74077 15.0987C8.73345 15.032 8.72731 14.9747 8.72149 14.9205L8.7149 14.8591L8.90162 14.8693L8.88137 14.8389L9.09223 14.7576Z" fill="black"/>
|
|
6
|
+
<path d="M18.0981 17.2938L17.8507 16.9958L17.8214 17.0306L17.6437 16.8057C17.619 16.6516 17.5908 16.4761 17.5605 16.2815L17.3906 16.34L17.4874 16.0408C17.4969 16.0408 17.5071 16.0402 17.5178 16.0395C17.5852 16.0354 17.6685 16.0303 17.6831 16.1769C17.6831 16.2033 17.7168 16.2281 17.747 16.2503C17.7542 16.2556 17.7612 16.2608 17.7674 16.2658C17.8889 16.3614 17.9845 16.4637 17.9316 16.6392C17.9238 16.6651 17.9643 16.7213 17.9958 16.7416C18.1683 16.8491 18.143 16.9987 18.1167 17.1544C18.1089 17.2006 18.101 17.2475 18.0981 17.2938Z" fill="black"/>
|
|
7
|
+
<path d="M1.13017 9.73225C1.09538 9.70746 1.06625 9.67557 1.04472 9.63867C1.03954 9.65075 1.03288 9.66272 1.0263 9.67456C1.01143 9.70129 0.99695 9.72732 1.00085 9.75228C0.995966 9.83667 1.0122 9.92095 1.04809 9.99749C1.06091 10.0167 1.13246 9.99943 1.19373 9.98464C1.2185 9.97865 1.24159 9.97308 1.25843 9.97049C1.27675 9.96767 1.29694 9.96209 1.31712 9.95652C1.36134 9.94431 1.40546 9.93213 1.4294 9.94912C1.60937 10.074 1.77922 10.2112 1.91644 10.3237C1.94589 10.3109 1.97619 10.2979 2.00705 10.2848C2.07638 10.2552 2.14853 10.2244 2.22014 10.1909C2.25696 10.1706 2.29229 10.1477 2.32587 10.1223C2.31504 10.1135 2.3041 10.1024 2.29303 10.0911C2.26733 10.0649 2.24091 10.038 2.21339 10.038C2.11313 10.0399 2.01413 10.0155 1.92629 9.96709C1.83844 9.91873 1.76484 9.84815 1.71285 9.7624C1.68148 9.73783 1.64437 9.72162 1.60502 9.71532C1.56567 9.70903 1.52536 9.71285 1.48789 9.72641C1.45393 9.75232 1.41484 9.77069 1.37323 9.78035C1.33162 9.79001 1.28843 9.79073 1.24653 9.78243C1.20462 9.77413 1.16496 9.75703 1.13017 9.73225Z" fill="black"/>
|
|
8
|
+
<path d="M3.64069 12.8227L3.68793 13.1298C3.29762 13.2558 3.05579 13.1827 2.91406 12.8778C3.01571 12.8944 3.1081 12.8509 3.19979 12.8077C3.33843 12.7424 3.4755 12.6779 3.64069 12.8227Z" fill="black"/>
|
|
9
|
+
<path d="M17.0039 15.1701L17.0038 15.1691C16.9644 14.9323 16.925 14.6951 16.8828 14.4688L17.1539 14.642C17.1514 14.7295 17.1675 14.8165 17.2011 14.8973C17.3878 15.1673 17.3237 15.2977 17.056 15.4811C17.0386 15.3784 17.0212 15.274 17.0039 15.1701Z" fill="black"/>
|
|
10
|
+
<path d="M3.39458 17.8871L3.30009 17.9995L3.44182 17.9692L3.46319 18.0096L2.78156 18.3752L2.74219 18.2976C2.76233 18.29 2.78473 18.284 2.80717 18.2781C2.85735 18.2648 2.90776 18.2515 2.93341 18.2189C2.98532 18.1384 3.02547 18.0509 3.05264 17.959C3.05795 17.9457 3.0603 17.929 3.06257 17.9127C3.06607 17.8878 3.06937 17.8642 3.08301 17.8567C3.13003 17.8307 3.18347 17.8186 3.2371 17.8218C3.29239 17.836 3.34541 17.858 3.39458 17.8871Z" fill="black"/>
|
|
11
|
+
<path d="M2.34286 18.4385C2.31337 18.4771 2.28386 18.5157 2.25391 18.5539L2.31015 18.5955L2.77694 18.1703C2.73744 18.1662 2.70214 18.1599 2.67234 18.1545C2.62067 18.1451 2.58548 18.1388 2.57335 18.1523C2.49194 18.2434 2.41745 18.3409 2.34286 18.4385Z" fill="black"/>
|
|
12
|
+
<path d="M5.13369 6.64392L4.94922 6.40209C4.9787 6.38042 5.00993 6.36124 5.04258 6.34473C5.09402 6.40719 5.14096 6.47265 5.1883 6.53866L5.2203 6.58317L5.13369 6.64392Z" fill="black"/>
|
|
13
|
+
<path d="M11.2852 13.2291L11.6305 12.7725C11.6766 12.8838 11.4809 13.1684 11.2852 13.2291Z" fill="black"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2 15.2515L2.14267 15.139L2.10975 15.1221C2.15364 15.0287 2.19754 14.9353 2.24144 14.8431C2.24912 14.8285 2.26339 14.8161 2.26668 14.8003C2.30619 14.5753 2.42471 14.5168 2.58275 14.6271C2.665 14.5197 2.76013 14.4233 2.86589 14.3402C3.04258 14.2378 3.00637 14.0882 2.99649 13.9363C2.97673 13.6371 2.88674 13.5482 2.59592 13.5302C2.45325 13.5212 2.3863 13.4459 2.42362 13.3052C2.45748 13.2123 2.47186 13.113 2.4658 13.014C2.45975 12.9149 2.43341 12.8183 2.3885 12.7304C2.35448 12.6685 2.4313 12.5245 2.48398 12.4345C2.53665 12.3445 2.6464 12.2657 2.70347 12.1667C2.79152 12.0225 2.85567 11.8644 2.89333 11.6987C2.94381 11.4085 2.93393 11.107 2.98771 10.8167C3.015 10.6727 3.07075 10.5359 3.15153 10.4148C3.23231 10.2937 3.33641 10.1908 3.45742 10.1125C3.59312 10.0224 3.7209 9.92041 3.83933 9.80761C3.86781 9.78478 3.89096 9.75573 3.90713 9.72259C3.9233 9.68944 3.93207 9.65303 3.9328 9.61598C3.93354 9.57893 3.92622 9.54218 3.91138 9.50838C3.89655 9.47459 3.87456 9.44461 3.84701 9.42061C3.70324 9.28963 3.55227 9.16718 3.39486 9.05386C3.36162 9.03016 3.33328 8.99995 3.31146 8.96498C3.28944 8.92039 3.27426 8.87258 3.26646 8.82324C3.20862 8.4724 3.06936 8.14097 2.8604 7.85686C2.78122 7.75304 2.73341 7.62773 2.72288 7.49639C2.71235 7.36505 2.73955 7.23342 2.80114 7.11774C2.81651 7.08511 2.78248 7.02774 2.76932 6.97149C2.9482 6.89161 2.95808 6.72511 2.92735 6.55186C2.87796 6.26274 2.80114 5.97812 2.75944 5.68899C2.71773 5.39987 2.70018 5.08262 2.67932 4.77774C2.68499 4.72331 2.69907 4.67015 2.72103 4.62024C2.732 4.57862 2.75944 4.53137 2.74956 4.49537C2.70237 4.31987 2.64091 4.14999 2.59372 3.97224C2.58803 3.94737 2.58763 3.92154 2.59255 3.89649C2.59747 3.87145 2.60761 3.84779 2.62226 3.82712C2.67298 3.76468 2.73978 3.71809 2.81505 3.69263C2.89033 3.66718 2.97106 3.66388 3.04807 3.68312C3.17537 3.71462 3.29939 3.79562 3.43657 3.69662C3.44974 3.68762 3.56497 3.77424 3.58253 3.83274C3.62204 3.96324 3.69227 4.08474 3.81629 4.06449C3.90298 4.05099 3.9809 3.93062 4.04895 3.84512C4.11528 3.75805 4.17266 3.66417 4.22015 3.565C4.24879 3.50896 4.26491 3.44709 4.26734 3.38387C4.286 2.67737 4.30465 1.97087 4.31563 1.2655C4.31563 1.18337 4.3255 1.10125 4.33209 1H16.5138C16.6755 6.95574 16.8376 12.9201 17 18.8931C16.9638 18.8931 16.9331 18.9032 16.9023 18.9043C15.2093 18.9373 13.5167 18.9692 11.8244 19C11.712 19.001 11.6004 18.9807 11.4952 18.9403C8.36743 17.7283 5.24115 16.5145 2.11633 15.2987L2 15.2515Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.9083 16.7544L13.4851 17.0245L13.744 17.5073H3.12943V17.3396C3.12943 16.7184 3.12943 16.1016 3.12943 15.4747C3.1343 15.4331 3.12607 15.391 3.1059 15.3543C3.08573 15.3176 3.05461 15.2881 3.01688 15.2698C2.86944 15.1866 2.72876 15.0909 2.58019 14.9975C2.46764 15.0909 2.35509 15.1787 2.25605 15.2721C2.19977 15.3239 2.15025 15.3419 2.08835 15.2867L2.0816 15.2834C1.89139 15.1629 1.6314 15.083 1.53236 14.9097C1.43331 14.7364 1.5076 14.482 1.5121 14.2625C1.56275 11.9541 1.61564 9.64914 1.64378 7.34413C1.62977 6.82404 1.58051 6.3055 1.49634 5.79207C1.35791 4.67896 1.20597 3.56698 1.05965 2.45274C1.04052 2.31093 1.02138 2.16799 1 2.00254H1.16882C6.47139 2.00254 11.7743 2.00254 17.0777 2.00254C17.1276 1.99446 17.1788 2.00582 17.2207 2.03428C17.2625 2.06275 17.2919 2.10616 17.3028 2.15561C17.3669 2.35032 17.4479 2.5394 17.5279 2.72736C17.546 2.76192 17.5527 2.80134 17.5471 2.83997C17.5414 2.8786 17.5237 2.91443 17.4963 2.94233C17.1744 3.35201 16.8593 3.76619 16.5408 4.18037C16.5115 4.21864 16.4834 4.25915 16.4406 4.31768C16.5127 4.31768 16.5644 4.32556 16.6173 4.32556C17.2487 4.32556 17.8801 4.33231 18.5115 4.32556C18.5849 4.31559 18.6596 4.32733 18.7264 4.35933C18.7933 4.39133 18.8492 4.44219 18.8875 4.50564C18.9217 4.55505 18.9593 4.60206 19 4.64632C18.8436 4.86242 18.6961 5.08977 18.5217 5.29236C18.4575 5.36776 18.327 5.3869 18.2268 5.42967C18.1581 5.45893 18.0884 5.48594 18.0017 5.52308L18.3056 6.06557L17.5751 6.51577L17.7102 6.91869H17.2375L17.5627 8.15673C17.5504 8.16574 17.5414 8.17587 17.5346 8.17474C17.2735 8.11622 17.17 8.26366 17.1204 8.48763C17.0999 8.55677 17.0747 8.62445 17.045 8.69022H16.6331L16.8492 9.13141C16.5948 9.23496 16.3438 9.33062 16.0985 9.44092C16.0351 9.47993 15.9828 9.53457 15.9465 9.59961C15.924 9.6498 15.9055 9.70175 15.8914 9.75493C15.7603 10.0802 15.729 10.4371 15.8014 10.7803C15.8067 10.9697 15.7863 11.1591 15.7406 11.343C15.7406 11.3633 15.7124 11.3801 15.6956 11.3982C15.6877 11.4042 15.679 11.4092 15.6697 11.4128C15.4645 11.4929 15.2742 11.6071 15.1069 11.7504C14.9885 11.9416 14.9118 12.1556 14.8818 12.3785C14.8379 12.5529 14.7558 12.6182 14.5813 12.5912C14.4786 12.5845 14.3756 12.5845 14.2729 12.5912L14.6714 12.9423L14.0062 13.361C14.0343 13.3959 14.0568 13.4263 14.0816 13.4556C14.2617 13.6593 14.2538 13.6548 14.148 13.8967C14.1171 13.9928 14.0624 14.0795 13.989 14.1488C13.9156 14.218 13.8259 14.2676 13.7282 14.2929C13.4772 14.3582 13.4727 14.4055 13.4828 14.6688C13.4896 14.8489 13.493 15.0301 13.4828 15.2102C13.4757 15.2548 13.4828 15.3004 13.503 15.3408C13.5231 15.3812 13.5555 15.4142 13.5954 15.4353C13.6588 15.4598 13.7158 15.4984 13.7622 15.5482C13.8086 15.5979 13.8431 15.6575 13.8631 15.7225C13.8831 15.7875 13.8882 15.8562 13.8779 15.9234C13.8676 15.9906 13.8422 16.0546 13.8036 16.1106C13.775 16.2083 13.775 16.3122 13.8036 16.41C13.8316 16.5268 13.8665 16.6418 13.9083 16.7544Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.9432 19C12.9432 18.7952 12.9319 18.6006 12.6957 18.514C12.8228 18.343 12.6473 18.3239 12.573 18.244C12.6135 18.1779 12.6295 18.0997 12.6182 18.023C12.6069 17.9463 12.569 17.876 12.5112 17.8244C12.4932 17.8064 12.4718 17.7704 12.4785 17.7546C12.5584 17.5814 12.4122 17.5454 12.3143 17.4891C12.0574 17.345 11.8377 17.1427 11.673 16.8985C11.549 16.9093 11.4241 16.9067 11.3007 16.8906C11.2377 16.876 11.1882 16.7882 11.1409 16.7252C11.0734 16.629 11.0117 16.5287 10.9564 16.4249C10.8788 16.2798 10.746 16.336 10.6313 16.3247C10.2388 16.3067 9.86871 16.1364 9.59966 15.85C9.54247 15.7645 9.496 15.6723 9.46128 15.5755C9.32178 15.7128 9.19241 15.6194 9.07316 15.5665C8.91464 15.5006 8.74084 15.4803 8.57141 15.508C8.37856 15.528 8.18434 15.5314 7.99091 15.5181C7.80078 15.5069 7.71753 15.3888 7.71191 15.1952C7.71191 15.0197 7.76816 14.8296 7.58478 14.689C7.54541 14.6586 7.53978 14.5405 7.56228 14.4775C7.62528 14.2997 7.52853 14.2221 7.38903 14.167C7.38903 14.1141 7.38903 14.0702 7.39916 14.0275C7.42166 13.8722 7.36316 13.8025 7.21353 13.7204C7.01865 13.5885 6.8397 13.4345 6.68028 13.2614C6.67329 13.2531 6.66833 13.2433 6.66579 13.2327C6.66325 13.2222 6.6632 13.2112 6.66566 13.2006C6.76466 12.9036 6.54303 12.7697 6.36753 12.6156C6.30614 12.5591 6.23532 12.5138 6.15828 12.4818C6.05025 12.4321 5.95485 12.3587 5.87925 12.2669C5.80366 12.1751 5.74982 12.0674 5.72178 11.9519C5.69817 11.7775 5.70579 11.6004 5.74428 11.4288L5.92766 11.4445L5.76453 10.7695C5.56653 10.873 5.41466 10.7695 5.25603 10.7222C5.23241 10.7144 5.19416 10.6919 5.19416 10.6761C5.19416 10.4995 5.02878 10.441 4.95453 10.3184C4.89941 10.2382 4.8643 10.146 4.85216 10.0495C4.84203 9.8245 4.76328 9.57588 4.95116 9.33625C4.98226 9.40249 5.01995 9.46543 5.06366 9.52413C5.11913 9.60203 5.19093 9.66691 5.27403 9.71425C5.30116 9.72387 5.33047 9.72552 5.35851 9.71901C5.38654 9.7125 5.41212 9.6981 5.43224 9.67752C5.45235 9.65693 5.46615 9.63102 5.47201 9.60284C5.47786 9.57466 5.47553 9.54539 5.46528 9.5185C5.42253 9.43116 5.36635 9.35106 5.29878 9.28113C5.23466 9.20463 5.16153 9.13488 5.09291 9.06175L5.15478 9.05612C5.20376 8.95161 5.24293 8.84276 5.27178 8.731C5.26835 8.6997 5.25707 8.66978 5.23897 8.64401C5.22088 8.61825 5.19656 8.59747 5.16828 8.58363C5.13759 8.58108 5.10672 8.58541 5.07791 8.59631C5.04911 8.60721 5.0231 8.6244 5.00178 8.64663C4.92191 8.7265 4.81166 8.79062 4.87803 8.9515C4.91403 9.04037 4.73966 9.12362 4.63953 9.07525C4.55869 9.03068 4.47196 8.99773 4.38191 8.97738C4.15691 8.9425 4.09841 8.91775 4.12428 8.69388C4.13203 8.57046 4.11165 8.44689 4.06469 8.3325C4.01772 8.2181 3.94539 8.11587 3.85316 8.0335C3.56291 7.696 3.29066 7.3405 3.00716 6.994C2.98742 6.97479 2.97307 6.95074 2.96553 6.92425C2.94078 6.625 2.90141 6.33138 2.89016 6.03437C2.9095 5.81877 2.86447 5.60227 2.76078 5.41225C2.74909 5.39626 2.74119 5.37783 2.73769 5.35834C2.73418 5.33884 2.73515 5.31881 2.74053 5.29975C2.81028 5.16587 2.73041 5.11188 2.62803 5.0545C2.58416 5.02975 2.55716 4.97687 2.51553 4.942C2.42216 4.852 2.32203 4.76875 2.23541 4.67313C2.18021 4.60805 2.13229 4.53713 2.09253 4.46162C2.02306 4.33937 1.99153 4.1992 2.00195 4.05897C2.01237 3.91874 2.06426 3.78478 2.15103 3.67413C2.24903 3.51428 2.33333 3.34643 2.40303 3.17237C2.40896 3.14414 2.4085 3.11495 2.40169 3.08692C2.39487 3.05889 2.38188 3.03274 2.36366 3.01038C2.32483 2.964 2.30084 2.90701 2.29482 2.84682C2.2888 2.78663 2.30103 2.72602 2.32991 2.67287C2.35353 2.611 2.38278 2.55138 2.40866 2.4895C2.48428 2.37373 2.52023 2.23652 2.5111 2.09855C2.50197 1.96057 2.44825 1.8293 2.35803 1.7245C2.32622 1.68687 2.30765 1.63984 2.30516 1.59062C2.29841 1.39712 2.30178 1.20475 2.30178 1H8.64678V1.19013C8.64678 3.03588 8.64678 4.88125 8.64678 6.72625C8.64372 6.78028 8.6532 6.8343 8.67447 6.88406C8.69574 6.93383 8.72823 6.978 8.76941 7.01312C11.3749 9.44462 13.9774 11.8788 16.5769 14.3155C16.6731 14.4093 16.7449 14.5251 16.7862 14.653C16.8374 14.8219 16.9245 14.9776 17.0415 15.1097C17.1203 15.1986 17.1698 15.3134 17.2407 15.4101C17.287 15.4765 17.344 15.5346 17.4094 15.5822C17.5332 15.6666 17.5624 15.751 17.4555 15.8601C17.3487 15.9692 17.1934 16.0851 17.028 16.2235C17.0033 16.3956 16.9707 16.6263 16.9358 16.8569C16.9203 16.9205 16.9094 16.9852 16.9032 17.0504C16.9067 17.1155 16.894 17.1805 16.8661 17.2394C16.8382 17.2983 16.796 17.3494 16.7434 17.3879C16.5837 17.5083 16.5938 17.551 16.7142 17.6995C16.7485 17.7576 16.7678 17.8233 16.7704 17.8908C16.775 17.9465 16.775 18.0026 16.7704 18.0584C16.8773 18.1349 17.0044 18.1799 17.0494 18.2676C17.1304 18.4274 17.0145 18.5736 16.8165 18.5961C16.3988 18.6434 15.9803 18.6884 15.561 18.7311L13.0174 19C12.9972 19 12.9758 19 12.9432 19Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.96532 14.077C5.91358 14.0835 5.86356 14.0999 5.818 14.1253C5.69674 14.2286 5.58392 14.3415 5.4806 14.4627C5.46491 14.4915 5.44311 14.5166 5.41673 14.5361C5.39035 14.5556 5.36002 14.569 5.32788 14.5756C5.29573 14.5821 5.26254 14.5815 5.23064 14.5739C5.19874 14.5663 5.1689 14.5517 5.14321 14.5313C5.09649 14.5135 5.04484 14.5135 4.99813 14.5313C4.8508 14.5808 4.70909 14.6438 4.56289 14.6933C4.46279 14.7293 4.3582 14.7551 4.23674 14.7922L4.27048 14.8676L4.09278 14.9879L3.91396 14.8878L3.9657 15.0745L3.7329 15.4018L3.40787 15.3636L3.3359 15.5379L3.0075 15.4052L2.86917 15.7594L2.74096 15.6177L2.40356 16.0519L2.35408 16.0192C2.3597 15.9349 2.54302 15.8674 2.38219 15.7606L2.28885 15.8607L2.21125 15.7482L1.59719 16.1632C1.59719 16.1519 1.58257 16.1227 1.59157 16.1047C1.68941 15.9203 1.58482 15.7808 1.49709 15.6346C1.33177 15.3613 1.17207 15.0835 1 14.79L3.31903 13.4146C3.20252 13.2023 3.07332 12.9972 2.93215 12.8005C2.83895 12.675 2.77258 12.5316 2.73717 12.3794C2.70177 12.2271 2.69808 12.0692 2.72634 11.9154C2.81518 10.9212 2.88379 9.92589 2.95914 8.92945C3.03449 7.93301 3.11097 6.93883 3.18407 5.94351C3.2448 5.03704 3.30216 4.1272 3.35951 3.22074C3.37413 2.99581 3.36851 2.99581 3.59906 3.00143L7.29241 3.11502C7.97732 3.13639 8.66785 3.16226 9.35501 3.17913C9.4911 3.17913 9.52821 3.23536 9.51696 3.36132C9.50797 3.45916 9.51696 3.55813 9.51696 3.68972C9.66093 3.66989 9.80363 3.64173 9.94433 3.60537C9.98032 3.593 10.0017 3.50865 10.0163 3.45241C10.0647 3.23423 10.0883 3.20274 10.3076 3.21286C10.651 3.21238 10.9939 3.23871 11.3333 3.29159C11.512 3.31272 11.6928 3.31007 11.8709 3.28372C12.4759 3.25785 13.09 3.2511 13.6995 3.25673C14.5318 3.2646 15.364 3.29159 16.1963 3.30734C17.0285 3.32308 17.8382 3.33995 18.6615 3.33995C18.8054 3.33995 18.8358 3.39281 18.8392 3.52327C18.8673 4.62205 18.9055 5.71971 18.9303 6.81849C18.9595 8.10509 18.9775 9.39281 19 10.6805C19 10.7446 19 10.8087 19 10.8301C18.8718 10.8818 18.7751 10.9133 18.6918 10.9583C18.5794 11.0146 18.5884 11.1113 18.6109 11.2181C18.6334 11.325 18.6379 11.443 18.6514 11.5555C18.6535 11.5932 18.658 11.6308 18.6649 11.668C18.7245 11.9086 18.7076 11.9413 18.4647 12.0301C18.3522 11.9109 18.2397 11.7838 18.0553 11.9435C18.0328 11.9638 17.9552 11.9233 17.8821 11.9053L17.8079 11.9997C17.7022 11.9435 17.5931 11.8794 17.4795 11.8277C17.439 11.8086 17.3569 11.7973 17.3423 11.8176C17.2467 11.9446 17.1657 12.083 17.0634 12.2427C16.997 12.0301 17.0026 12.0369 16.8485 12.1392C16.8103 12.1651 16.7293 12.1291 16.6675 12.1178C16.627 12.1111 16.5753 12.0773 16.555 12.092C16.4358 12.1617 16.3897 12.092 16.3616 11.9986C16.3132 11.8355 16.2727 11.6702 16.2289 11.506H16.1783C16.1906 11.6635 16.1918 11.8232 16.2176 11.9784C16.2401 12.1111 16.2367 12.2314 16.1052 12.2933C16.0444 12.3341 15.9711 12.3522 15.8983 12.3443C15.8255 12.3365 15.7578 12.3033 15.707 12.2505C15.6362 12.1718 15.5799 12.1752 15.5327 12.2101C15.4382 12.1741 15.3291 12.0897 15.2504 12.1122C15.0502 12.1696 15.1863 12.3574 15.1458 12.5002C15.1065 12.4599 15.0644 12.4223 15.0199 12.3877C14.978 12.3534 14.9252 12.3352 14.8711 12.3367C14.8169 12.3381 14.7652 12.3591 14.7252 12.3956C14.6489 12.4603 14.5612 12.5103 14.4665 12.5429C14.3483 12.5748 14.2281 12.5988 14.1067 12.6149C14.0394 12.5331 13.9763 12.4479 13.9177 12.3596C13.8792 12.3078 13.8601 12.2441 13.8637 12.1797C13.893 12.1018 13.8934 12.016 13.8649 11.9379C13.8365 11.8597 13.781 11.7943 13.7085 11.7534C13.6131 11.6679 13.4991 11.6056 13.3756 11.5713C13.4487 11.7051 13.3531 11.9086 13.6107 11.9086C13.6545 11.9086 13.7288 12.0211 13.731 12.0818C13.7248 12.2295 13.7075 12.3765 13.6793 12.5216L13.8007 12.5688L13.6287 12.652L13.6422 12.6858L13.8255 12.6745L13.8412 12.7386L13.4813 12.8354C13.4319 12.6678 13.3329 12.5947 13.1698 12.6273C13.0394 12.6532 12.9067 12.6734 12.7762 12.7015C12.7413 12.7094 12.711 12.7375 12.6761 12.7465C12.5636 12.7746 12.4512 12.7994 12.332 12.8252V12.8781L12.251 12.7488L12.0261 12.9962C11.8439 12.7004 11.547 12.7465 11.268 12.7386C10.9909 12.7577 10.7283 12.8694 10.5224 13.0558L10.5438 12.9141C10.3869 12.8323 10.2185 12.7747 10.0444 12.7431C9.87782 12.7637 9.71607 12.8132 9.56645 12.8893C9.52328 12.9103 9.48255 12.936 9.44499 12.9658L9.4045 12.9175L9.55183 12.8545C9.38763 12.7847 9.38763 12.7847 9.30103 12.9231L9.27629 12.8815C9.22006 12.9051 9.16382 12.9332 9.10534 12.9523C9.00209 12.9916 8.89608 13.0231 8.78819 13.0468C8.76907 13.0468 8.72971 12.9737 8.70722 12.9343C8.68472 12.895 8.69709 12.859 8.6791 12.8309C8.54752 12.6307 8.55764 12.5744 8.7522 12.435C8.76555 12.4258 8.77637 12.4134 8.78369 12.399C8.78881 12.3784 8.79145 12.3572 8.79157 12.336C8.57901 12.3686 8.48229 12.525 8.36083 12.6734L8.50815 12.7791C8.49466 12.8027 8.48904 12.8275 8.47441 12.8387C8.26073 13.0119 8.0448 13.1829 7.83112 13.3538C7.80188 13.3774 7.76364 13.3977 7.74902 13.428C7.66692 13.5979 7.52409 13.527 7.39588 13.5259C7.36101 13.5259 7.30815 13.4989 7.29241 13.5135C7.12371 13.6822 6.95501 13.8509 6.80094 14.0342C6.7762 14.0623 6.80094 14.1377 6.81106 14.2108L6.49503 14.2727C6.49503 14.2547 6.49503 14.2355 6.50066 14.2176C6.44926 14.2004 6.39956 14.1786 6.3522 14.1523C6.29372 14.113 6.24874 14.0522 6.18913 14.0174C6.12782 13.9891 6.06375 13.9672 5.99794 13.9521L5.98107 14.005L6.15989 14.0961L5.82249 14.3109L5.78875 14.2772L6.01368 14.1478L5.96532 14.077Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.39452 1C8.62839 1.04432 8.85907 1.10405 9.08505 1.17882C9.28993 1.2784 9.48694 1.39345 9.67435 1.52295C9.5349 1.63542 9.44943 1.71639 9.34259 1.78049C9.24839 1.83149 9.16829 1.90501 9.10942 1.99449C9.05055 2.08397 9.01474 2.18664 9.0052 2.29332C8.97482 2.54319 8.8648 2.77664 8.69143 2.95911C8.6284 3.03043 8.56981 3.10554 8.51598 3.18403C8.46677 3.26607 8.4016 3.33741 8.32433 3.39381C8.24707 3.45022 8.15927 3.49055 8.06613 3.51242C8.01652 3.5219 7.97131 3.54717 7.93725 3.58447C7.90319 3.62177 7.88213 3.66909 7.87719 3.71936C7.87475 3.74436 7.8679 3.76872 7.85695 3.79133C7.7085 4.04437 7.79622 4.22544 8.0009 4.41213C8.14865 4.52891 8.24448 4.69918 8.26763 4.88609C8.29078 5.07299 8.2394 5.26149 8.12461 5.4108C8.03191 5.51981 7.98425 5.66007 7.99136 5.803C7.99846 5.94592 8.05979 6.08076 8.16285 6.18005C8.47302 6.57174 8.72423 7.0067 8.90848 7.47112C8.9366 7.5296 9.02094 7.56334 9.08167 7.60158C9.1424 7.63982 9.22787 7.64769 9.27174 7.69605C9.61034 8.08117 9.81615 8.56494 9.85879 9.07597C9.86553 9.29071 9.8497 9.50557 9.81156 9.71701C9.77486 9.97518 9.80149 10.2384 9.88916 10.484C9.92566 10.5925 9.93719 10.7078 9.9229 10.8214C9.90378 11.0115 9.89928 11.179 10.1175 11.2712C10.1803 11.3012 10.2319 11.3505 10.2648 11.4118C10.4879 11.762 10.6495 12.1476 10.7428 12.5522C10.7591 12.6559 10.7651 12.761 10.7607 12.866C10.7552 12.9286 10.7662 12.9916 10.7926 13.0486C10.8191 13.1057 10.86 13.1548 10.9114 13.191C11.2776 13.47 11.5904 13.8129 11.8348 14.2032C11.9283 14.349 12.0595 14.4667 12.2146 14.5439C12.3696 14.6212 12.5427 14.655 12.7154 14.6418C13.0527 14.6294 13.0786 14.6676 13.1011 15.0016C13.127 15.3705 13.1675 15.7383 13.1899 16.1072C13.1907 16.2533 13.1828 16.3994 13.1663 16.5446H13.1258C13.1168 16.4142 13.1112 16.2826 13.0966 16.1521C13.073 15.9272 12.9841 15.8586 12.7705 15.8575H12.6805C12.405 15.8575 12.4016 15.8575 12.5118 16.1229L12.6153 16.3714C12.5613 16.3591 12.5064 16.3512 12.4511 16.3478C12.4056 16.3536 12.3608 16.3638 12.3172 16.3782L12.2981 16.4344L12.7738 16.7246C12.6963 16.785 12.6126 16.837 12.5242 16.8798C12.3695 16.9365 12.2109 16.9816 12.0496 17.0147C11.9862 17.0326 11.9277 17.0647 11.8786 17.1085C11.8295 17.1524 11.7911 17.2068 11.7662 17.2678L11.9472 17.2959L11.7549 17.5703C11.8393 17.5604 11.9225 17.5423 12.0035 17.5163C12.1508 17.4488 12.288 17.3622 12.4364 17.2914C12.5343 17.2475 12.6074 17.2981 12.6614 17.3892C12.6843 17.4281 12.7095 17.4657 12.7367 17.5017C12.8042 17.5995 12.8751 17.6142 12.9482 17.5073C13.0606 17.3577 13.2214 17.234 13.1787 17.0136C13.1787 16.9979 13.2034 16.9754 13.2473 16.9124C13.2777 17.0327 13.3294 17.1204 13.3125 17.1936C13.2375 17.6433 13.273 18.1045 13.416 18.5375C13.4334 18.6597 13.4307 18.7839 13.4081 18.9052C13.3991 19.0042 13.326 19.0177 13.2552 18.9761C13.1427 18.9131 13.0516 18.8468 12.9493 18.9851C12.9335 19.0065 12.8739 18.9986 12.8368 18.9986C10.8762 18.9986 8.91598 18.9967 6.95612 18.993C6.81554 18.993 6.76718 18.9491 6.76044 18.8051C6.67834 17.2115 6.59512 15.6202 6.52089 14.0356C6.47366 13.0673 6.43654 12.0979 6.39043 11.1295C6.3252 9.75637 6.25773 8.3832 6.19025 7.01002C6.14526 6.06084 6.10478 5.10265 6.06204 4.14896C6.04405 3.75422 6.02493 3.36172 6.00244 2.96473C5.9964 2.91233 6.00161 2.85925 6.0177 2.80903C6.0338 2.7588 6.06042 2.71258 6.09578 2.67345C6.20897 2.5211 6.31012 2.36017 6.3983 2.19211C6.48265 2.06053 6.56587 1.93119 6.63898 1.79511C6.7695 1.57181 6.95411 1.38494 7.17579 1.25169C7.39748 1.11845 7.64912 1.04311 7.90756 1.03261L8.15948 1H8.39452Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.5342 3.0025C13.7288 3.0025 13.9245 2.99688 14.1191 3.0025C14.163 3.0025 14.2316 3.05649 14.2417 3.09249C14.3645 3.86397 14.6058 4.61183 14.9571 5.30957C15.217 5.87199 15.4959 6.43442 15.8053 6.97547C15.9743 7.22033 16.1689 7.44656 16.3857 7.65038C16.5915 7.87535 16.8075 8.0947 17.0145 8.32529C17.0305 8.34436 17.0416 8.36696 17.0471 8.39122C17.0526 8.41548 17.0522 8.44069 17.046 8.46477C16.9988 8.54794 16.9717 8.64097 16.9668 8.73647C16.9619 8.83196 16.9794 8.92728 17.0179 9.01482C17.1105 9.294 17.2327 9.56248 17.3823 9.81572C17.8851 10.5514 18.3362 11.3211 18.7321 12.1194C18.9172 12.477 19.0005 12.8786 18.9729 13.2803C18.9361 13.6577 18.9361 14.0378 18.9729 14.4152C19.0048 14.5351 19.0086 14.6607 18.984 14.7822C18.9594 14.9038 18.9071 15.018 18.8311 15.116C18.7121 15.3147 18.6754 15.552 18.7288 15.7774C18.737 15.8556 18.7144 15.9339 18.6658 15.9956C18.4718 16.169 18.2678 16.3309 18.055 16.4805C17.995 16.5216 17.9265 16.5485 17.8545 16.559C17.7825 16.5696 17.7091 16.5635 17.6399 16.5412C17.5715 16.513 17.4948 16.5127 17.4262 16.5405C17.3576 16.5682 17.3027 16.6218 17.2732 16.6897C17.2293 16.7853 17.1731 16.7583 17.1124 16.7234C17.043 16.6852 16.9858 16.6282 16.9474 16.559C16.909 16.4897 16.8909 16.411 16.8953 16.332C16.884 16.1124 16.8273 15.8976 16.7287 15.7011C16.6302 15.5046 16.4919 15.3306 16.3227 15.1903C16.2304 15.0942 16.1173 15.0207 15.992 14.9754C15.9223 14.9495 15.8244 15.0058 15.7378 15.0181C15.668 15.0283 15.5724 15.0575 15.5319 15.0249C15.4079 14.946 15.3008 14.843 15.2172 14.7221C15.1335 14.6012 15.0749 14.4647 15.0449 14.3207C15.0288 14.1895 14.9788 14.0647 14.8999 13.9587C14.8211 13.8526 14.716 13.7688 14.5949 13.7156C14.4825 13.6616 14.4656 13.6031 14.4746 13.4906C14.4911 13.2525 14.4941 13.0136 14.4836 12.7752C14.4813 12.7438 14.4715 12.7135 14.4551 12.6867C14.4386 12.6598 14.416 12.6374 14.3891 12.6211C14.343 12.6087 14.2699 12.6616 14.2237 12.7032C14.172 12.7541 14.1267 12.8112 14.0888 12.8731C13.9695 13.0463 13.9684 13.0485 13.8244 12.8843C13.5005 12.5154 13.1754 12.1487 12.8593 11.7741C12.7029 11.5885 12.7209 11.5412 12.8863 11.368C13.0663 11.1855 13.236 10.9933 13.3947 10.7921C13.5308 10.6144 13.5072 10.5559 13.3025 10.4749C13.1371 10.4085 12.965 10.3511 12.7997 10.2983C12.7475 10.2901 12.6944 10.2901 12.6422 10.2983C12.6498 10.3556 12.6615 10.4124 12.6771 10.4681C12.7267 10.5843 12.7703 10.7029 12.8076 10.8236C12.8199 10.8776 12.7749 10.9451 12.7558 11.0069C12.7078 10.9742 12.6633 10.9365 12.6231 10.8944C12.4645 10.6899 12.3548 10.4518 12.3021 10.1984C12.2495 9.94501 12.2554 9.68293 12.3194 9.43214C12.3905 9.08427 12.4312 8.73085 12.4409 8.37591C12.4543 8.26964 12.4335 8.16187 12.3815 8.06822C12.3295 7.97457 12.249 7.89992 12.1518 7.8551C12.0647 7.7952 12.0005 7.70758 11.9695 7.60651C11.9533 7.55054 11.9209 7.50057 11.8765 7.46278C11.8322 7.425 11.7777 7.40105 11.7198 7.39391C11.5466 7.36917 11.3711 7.35455 11.1979 7.32867C11.1653 7.32867 11.1158 7.28368 11.1124 7.25668C11.1083 7.16036 11.0772 7.06712 11.0227 6.98758C10.9682 6.90804 10.8925 6.84539 10.8042 6.80674C10.6748 6.73925 10.5995 6.5694 10.4982 6.44679C10.462 6.39539 10.4201 6.34822 10.3734 6.30618C10.1807 6.1562 9.98568 6.01185 9.78846 5.87312C9.71767 5.81372 9.64075 5.76206 9.55899 5.71901C9.38913 5.6459 9.21366 5.58066 9.04043 5.51429C9.01576 5.50246 8.98901 5.49558 8.96169 5.49404C8.80147 5.48343 8.64156 5.51889 8.50084 5.59622C8.36013 5.67356 8.24447 5.78954 8.16755 5.93048C8.0437 6.16854 7.8684 6.37604 7.65438 6.53791C7.44036 6.69979 7.19299 6.81199 6.93021 6.86636C6.86597 6.8846 6.80059 6.8985 6.73449 6.90798C6.658 6.91923 6.57926 6.92485 6.50164 6.9316C6.50608 6.8645 6.50116 6.79712 6.48702 6.73138C6.45301 6.61546 6.39601 6.50758 6.31942 6.41417C6.20158 6.2957 6.06518 6.19729 5.9156 6.12283C5.54552 5.94286 5.16645 5.77975 4.79075 5.61665C4.31518 5.44765 3.80618 5.39443 3.30594 5.46142C2.78634 5.48239 2.27354 5.58723 1.7874 5.77188C1.77666 5.77506 1.76578 5.77769 1.75477 5.77975C1.48819 5.85062 1.48819 5.85062 1.47806 5.57616C1.46794 5.2522 1.44994 4.93162 1.44994 4.60654C1.45478 4.55984 1.44545 4.51278 1.42319 4.47145C1.40092 4.43013 1.36674 4.39646 1.32508 4.37482C1.24556 4.3338 1.17211 4.28194 1.10686 4.22071C1.06342 4.16248 1.02751 4.09898 1 4.03174C1.04908 3.99842 1.10348 3.9737 1.16085 3.95862C1.69966 3.90575 2.23734 3.86076 2.77614 3.81352L5.64113 3.55705C5.71918 3.55819 5.79716 3.55179 5.87398 3.53793C6.01102 3.48943 6.16104 3.49248 6.29601 3.54651C6.43097 3.60053 6.54165 3.70184 6.60738 3.83151C6.65013 3.89538 6.71097 3.94502 6.78212 3.97408C6.85326 4.00314 6.93147 4.01029 7.0067 3.99462C8.24066 3.91925 9.478 3.86976 10.7142 3.80677C11.1821 3.78427 11.6501 3.76627 12.1169 3.73478C12.2553 3.72578 12.2856 3.77415 12.2845 3.90125C12.2845 4.20946 12.2418 4.17234 12.5612 4.17347C12.6939 4.17347 12.8683 4.21396 12.9493 4.14647C13.0303 4.07898 13.0067 3.90125 13.0291 3.7719C13.0291 3.7494 13.037 3.72803 13.0404 3.70553C13.073 3.50193 13.1045 3.29946 12.9088 3.14311C12.8762 3.12511 12.8717 3.06437 12.8537 3.01937C12.896 3.01058 12.9388 3.00457 12.9819 3.00137C13.1664 3.00137 13.3497 3.00137 13.5342 3.00137V3.0025Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.1198 18.1964C12.6429 18.165 12.1492 18.1346 11.6577 18.1009C10.7658 18.0401 9.87393 17.9738 8.98205 17.9187C8.09018 17.8635 7.16793 17.8174 6.26031 17.7691C5.73621 17.7421 5.21323 17.7173 4.68575 17.6937C4.59268 17.6912 4.50325 17.657 4.43214 17.5969C4.36102 17.5369 4.31243 17.4544 4.29436 17.3631C4.28185 17.3169 4.27542 17.2692 4.27524 17.2213C4.27206 17.1002 4.2329 16.9828 4.16277 16.8839C4.09845 16.785 4.05483 16.674 4.03456 16.5578C4.01961 16.3351 3.91929 16.1268 3.75451 15.9763C3.73983 15.965 3.72918 15.9492 3.72414 15.9313C3.70615 15.8061 3.6904 15.6805 3.67691 15.5546C3.67691 15.5433 3.68928 15.5298 3.6949 15.5174C3.72324 15.4626 3.74586 15.4049 3.76238 15.3454C3.7815 15.2329 3.78375 15.1272 3.79837 15.0192C3.81862 14.8719 3.8636 14.7245 3.88048 14.5828C3.89188 14.4842 3.88289 14.3843 3.85406 14.2893C3.82523 14.1943 3.77718 14.1063 3.7129 14.0306C3.68484 14.0008 3.66365 13.9652 3.65083 13.9264C3.63801 13.8875 3.63385 13.8463 3.63867 13.8057C3.63902 13.678 3.6262 13.5506 3.60043 13.4255C3.59122 13.377 3.59206 13.3271 3.60289 13.279C3.61372 13.2308 3.63432 13.1854 3.66341 13.1455C3.78594 12.9858 3.852 12.79 3.85123 12.5888C3.83555 12.4919 3.83555 12.3932 3.85123 12.2963C3.88846 12.2079 3.9477 12.1305 4.02331 12.0714C4.13578 11.9679 4.26962 11.8813 4.39333 11.7869V11.7374C4.29979 11.6716 4.20211 11.6118 4.10091 11.5586C4.00756 11.5158 4.00194 11.4843 4.05255 11.3955C4.09416 11.3027 4.12437 11.2053 4.14253 11.1053C4.14253 11.0941 4.13578 11.0704 4.12791 11.0671C4.02219 11.0333 4.05705 10.9377 4.03118 10.8657C4.00002 10.7689 3.95079 10.6788 3.8861 10.6003C3.78442 10.4942 3.72485 10.3547 3.71852 10.2078C3.71852 10.1662 3.66678 10.1291 3.65441 10.0852C3.6263 9.99186 3.61055 9.89514 3.58581 9.80067C3.57359 9.76884 3.55969 9.73768 3.54419 9.70732C3.52282 9.65221 3.50371 9.59485 3.48571 9.53974C3.48571 9.52737 3.49583 9.50712 3.48571 9.497C3.37947 9.27089 3.3198 9.02572 3.31026 8.77608C3.15843 7.93032 3.02234 7.08793 2.88288 6.24666C2.74567 5.42339 2.61633 4.599 2.47462 3.77685C2.34415 3.02443 2.20132 2.28102 2.06636 1.53198C2.04049 1.38689 2.02362 1.24068 2 1.08098C2.04949 1.07873 2.08773 1.07535 2.12596 1.07535C3.10557 1.06973 4.08517 1.06298 5.06477 1.05961C5.92965 1.05961 6.79341 1.05961 7.6583 1.05961C7.92035 1.05961 8.18352 1.05961 8.44558 1.05174C8.99892 1.03824 9.55227 1.02024 10.1056 1C10.1371 1 10.1697 1 10.2181 1.00562C10.1427 1.12596 10.1517 1.25755 10.0111 1.34303C9.87055 1.42851 9.71197 1.50049 9.67373 1.68943C9.67373 1.70293 9.63999 1.71193 9.62087 1.72092C9.54102 1.75691 9.3577 2.09207 9.40268 2.1573C9.47327 2.24852 9.55616 2.32952 9.64899 2.39798C9.74121 2.47221 9.82107 2.57793 9.96615 2.55657C9.98527 2.55657 10.0134 2.61392 10.0381 2.64429C10.1191 2.74664 10.2113 2.84224 10.2979 2.93671C10.3665 3.01094 10.4768 3.12791 10.6252 3.04918C10.6323 3.04806 10.6395 3.04806 10.6466 3.04918C10.9413 3.01431 10.9975 3.05593 11.0582 3.35059C11.0602 3.39856 11.0732 3.44542 11.0962 3.48755C11.1192 3.52968 11.1516 3.56594 11.1909 3.59353C11.2157 3.60815 11.2258 3.65313 11.2382 3.68687C11.2629 3.75323 11.2652 3.83083 11.3506 3.86233C11.3709 3.8702 11.3821 3.91631 11.3878 3.94555C11.4035 4.02878 11.4114 4.11426 11.4271 4.19636C11.4334 4.24245 11.4499 4.28656 11.4754 4.32547C11.5009 4.36439 11.5347 4.39712 11.5745 4.42129C11.6442 4.46403 11.6802 4.56301 11.7308 4.63723C11.7403 4.65287 11.7489 4.66901 11.7567 4.6856C11.8241 4.81156 11.8939 4.93528 11.9568 5.06237C11.985 5.12085 12.0007 5.17483 12.0862 5.17483C12.1132 5.17483 12.1492 5.20858 12.1705 5.23444C12.2563 5.3512 12.3721 5.44254 12.5057 5.49874C12.6288 5.56421 12.7424 5.64634 12.8431 5.7428C12.9007 5.79344 12.9555 5.84713 13.0073 5.90363C13.0152 5.9115 13.0264 5.91713 13.0309 5.92613C13.0883 6.06334 13.1501 6.19942 13.1996 6.34001C13.2202 6.38933 13.2508 6.43382 13.2895 6.47062C13.3283 6.50741 13.3743 6.53571 13.4246 6.5537C13.516 6.57115 13.6027 6.60811 13.6785 6.66207C13.7544 6.71602 13.8178 6.7857 13.8643 6.86636C13.9087 6.92611 13.964 6.97687 14.0274 7.01595C14.1084 7.06656 14.1567 7.12054 14.1252 7.22176C14.1001 7.29509 14.0809 7.37031 14.0679 7.4467C14.0679 7.46408 14.0718 7.48124 14.0792 7.49698C14.0865 7.51272 14.0973 7.52665 14.1106 7.5378C14.1815 7.59291 14.2602 7.64015 14.3277 7.68401C14.3423 7.7155 14.3592 7.74699 14.3738 7.77961C14.3792 7.79554 14.3819 7.81227 14.3817 7.82909C14.3817 7.86171 14.3693 7.90557 14.3817 7.92469C14.4256 7.97398 14.4764 8.01677 14.5324 8.05178C14.547 8.0619 14.5852 8.03604 14.6302 8.02029C14.6258 8.06442 14.6258 8.10888 14.6302 8.153C14.6403 8.20249 14.6505 8.26547 14.6853 8.29359C14.7978 8.36894 14.9193 8.42855 15.0374 8.49491C15.0925 8.52527 15.1498 8.55564 15.2016 8.59051C15.2814 8.64337 15.3579 8.70297 15.4389 8.75359C15.4733 8.77141 15.5006 8.80032 15.5165 8.83563C15.5325 8.87094 15.536 8.91058 15.5266 8.94816C15.5206 9.02252 15.5321 9.09727 15.5603 9.16635C15.5987 9.29189 15.6648 9.4072 15.7538 9.50375C15.7613 9.51212 15.7657 9.52286 15.7662 9.53412C15.7662 9.66795 15.7729 9.80179 15.7785 9.93563C15.778 9.97388 15.784 10.0119 15.7965 10.0481C15.8155 10.0821 15.8268 10.1199 15.8297 10.1587C15.8326 10.1976 15.827 10.2366 15.8134 10.273C15.8074 10.2855 15.8043 10.2991 15.8043 10.313C15.8043 10.3268 15.8074 10.3404 15.8134 10.3529C15.9011 10.4451 15.9787 10.5508 16.1261 10.561C16.1705 10.5717 16.2101 10.597 16.2385 10.6329C16.3319 10.733 16.4185 10.8399 16.5141 10.9512C16.4578 11.0277 16.4691 11.0929 16.5343 11.1762C16.616 11.2981 16.6856 11.4277 16.7424 11.5631C16.747 11.5772 16.7484 11.5923 16.7464 11.6071C16.7445 11.6219 16.7393 11.636 16.7311 11.6485C16.6254 11.7925 16.6277 11.7891 16.7244 11.9252C16.7508 11.9683 16.7618 12.019 16.7559 12.0692C16.7446 12.1323 16.7564 12.1975 16.789 12.2527C16.8216 12.308 16.8729 12.3498 16.9336 12.3706C16.9687 12.3875 17.0091 12.3899 17.0461 12.3773C17.0713 12.3591 17.1026 12.3514 17.1335 12.3558C17.1643 12.3602 17.1922 12.3764 17.2114 12.4009C17.3153 12.5176 17.4549 12.5967 17.6084 12.6259C17.6298 12.6259 17.6601 12.6832 17.659 12.7136C17.6444 12.7669 17.6171 12.8159 17.5795 12.8564C17.5419 12.8969 17.4951 12.9278 17.4431 12.9464C17.4262 12.9464 17.3981 12.9532 17.3902 12.9464C17.3227 12.8699 17.2777 12.9127 17.2519 12.9779C17.2429 13.0071 17.2901 13.0544 17.3261 13.1185L17.1776 13.2816L16.9797 13.2107L16.9212 13.3895L17.0618 13.4323C16.9755 13.5182 16.8965 13.6111 16.8256 13.7101C16.7424 13.8507 16.6254 13.7708 16.5219 13.7753C16.5118 13.8878 16.5219 13.8878 16.7053 13.8968C16.7269 13.9856 16.7292 14.078 16.7121 14.1678C16.6951 14.2577 16.659 14.3428 16.6063 14.4175C16.4668 14.3973 16.3251 14.449 16.3128 14.5367C16.369 14.5367 16.4252 14.5288 16.4781 14.5277C16.5028 14.5277 16.5411 14.5277 16.5512 14.5435C16.557 14.5558 16.56 14.5692 16.56 14.5828C16.56 14.5964 16.557 14.6099 16.5512 14.6222C16.5028 14.7133 16.4455 14.7999 16.3971 14.891C16.3423 14.9863 16.2964 15.0865 16.2599 15.1902C16.2539 15.2509 16.2721 15.3115 16.3105 15.3589C16.2925 15.4297 16.2723 15.4995 16.2576 15.5703C16.2363 15.6715 16.2396 15.7784 16.1058 15.82C16.0619 15.8335 16.0383 15.9111 16.0012 15.9561C15.9641 16.0011 15.9326 16.0258 15.9022 16.0685C15.8814 16.0899 15.8663 16.1162 15.8584 16.145C15.8505 16.1956 15.864 16.2507 15.8516 16.2991C15.828 16.3868 15.8663 16.5139 15.7032 16.524C15.6537 16.524 15.6076 16.5971 15.5423 16.6511L15.7605 16.7344L15.8291 16.641C15.8431 16.677 15.8511 16.7149 15.8528 16.7535C15.8356 16.9101 15.8013 17.0644 15.7504 17.2135C15.7126 17.2798 15.6893 17.3534 15.682 17.4293C15.6746 17.5053 15.6834 17.582 15.7077 17.6544C15.5249 17.6545 15.3425 17.6395 15.1622 17.6094C14.9498 17.5855 14.7461 17.5111 14.5684 17.3923C14.5481 17.3754 14.5054 17.3855 14.4739 17.3788C14.4166 17.3684 14.3603 17.3537 14.3052 17.3349C14.2208 17.3023 14.1387 17.263 14.051 17.2225L13.9802 17.4125L13.8857 17.3766C13.8463 17.4373 13.7867 17.489 13.7867 17.5408C13.7867 17.6768 13.6889 17.8129 13.78 17.9479C13.8817 18.1541 13.8982 18.392 13.8261 18.6103C13.8137 18.7014 13.7935 18.7914 13.7833 18.8825C13.7732 18.9736 13.7305 19.0152 13.6371 18.995C13.564 18.9837 13.4932 18.9646 13.4201 18.9545C13.257 18.9309 13.1884 18.8488 13.212 18.6846C13.2279 18.638 13.2308 18.588 13.2205 18.5398C13.2102 18.4917 13.1871 18.4473 13.1535 18.4113C13.1175 18.3719 13.1344 18.2774 13.1198 18.1964Z" fill="black"/>
|
|
3
|
+
</svg>
|