ca-components 0.0.55 → 0.0.57
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/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.mjs +2 -2
- package/esm2022/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.mjs +6 -3
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +1 -3
- package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +7 -7
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.mjs +1 -1
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +16 -10
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +13 -38
- package/esm2022/lib/components/ca-period-content/models/payroll-report-tables.type.mjs +2 -0
- package/esm2022/lib/components/ca-period-content/models/payroll-report.type.mjs +2 -0
- package/esm2022/lib/components/ca-period-content/pipes/period_status.pipe.mjs +44 -0
- package/esm2022/lib/components/ca-period-content/utils/helpers/payroll-period-content.helper.mjs +7 -9
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +6 -4
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +3 -3
- package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +20 -20
- package/esm2022/lib/components/ca-search-multiple-states/utils/pipes/chip-class.pipe.mjs +4 -4
- package/esm2022/lib/pipes/date-from-string.pipe.mjs +4 -1
- package/esm2022/lib/pipes/user-initials.pipe.mjs +22 -0
- package/fesm2022/ca-components.mjs +121 -76
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-custom-datetime-pickers/ca-custom-datetime-pickers.component.d.ts +3 -3
- package/lib/components/ca-input/components/ca-input-datetime-picker/ca-input-datetime-picker.component.d.ts +1 -0
- package/lib/components/ca-period-content/ca-period-content.component.d.ts +3 -2
- package/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.d.ts +2 -2
- package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +4 -3
- package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.d.ts +3 -7
- package/lib/components/ca-period-content/models/payroll-report-tables.type.d.ts +8 -0
- package/lib/components/ca-period-content/models/payroll-report.type.d.ts +40 -0
- package/lib/components/ca-period-content/pipes/period_status.pipe.d.ts +13 -0
- package/lib/components/ca-period-content/utils/helpers/payroll-period-content.helper.d.ts +4 -1
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +2 -3
- package/lib/pipes/user-initials.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/src/assets/ca-components/svg/comment/exclamation-mark.svg +3 -0
- package/src/assets/ca-components/svg/comment/trash.svg +32 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { ElementRef, EventEmitter, OnInit, ViewContainerRef, OnDestroy,
|
|
2
|
+
import { ElementRef, EventEmitter, OnInit, ViewContainerRef, OnDestroy, AfterContentInit } from '@angular/core';
|
|
3
3
|
import { CalendarDateTimePickerService } from './services/calendar-datetime-picker.service';
|
|
4
4
|
import { CaCustomDateTimePickersDateCalendarsComponent } from './components/ca-custom-datetime-pickers-date-calendars/ca-custom-datetime-pickers-date-calendars.component';
|
|
5
5
|
import { ICaInput } from '../ca-input/config/ca-input.config';
|
|
6
6
|
import { ScrollType } from './models/scroll-type.model';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class CaCustomDatetimePickersComponent implements OnInit, OnDestroy,
|
|
8
|
+
export declare class CaCustomDatetimePickersComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
9
9
|
private calendarService;
|
|
10
10
|
dateTime: Date;
|
|
11
11
|
ref: ViewContainerRef;
|
|
@@ -40,7 +40,7 @@ export declare class CaCustomDatetimePickersComponent implements OnInit, OnDestr
|
|
|
40
40
|
set calendarType(calendarType: string);
|
|
41
41
|
set placeholder(placeholder: string);
|
|
42
42
|
ngOnInit(): void;
|
|
43
|
-
|
|
43
|
+
ngAfterContentInit(): void;
|
|
44
44
|
initDateChangedListener(): void;
|
|
45
45
|
setTimeValue(): void;
|
|
46
46
|
setListPreview(value: string): void;
|
|
@@ -37,6 +37,7 @@ export declare class CaInputDatetimePickerComponent implements AfterViewInit {
|
|
|
37
37
|
onBlur(): void;
|
|
38
38
|
changeSelection(e: KeyboardEvent, noPreventDefault?: boolean): void;
|
|
39
39
|
onFocus(event?: FocusEvent): void;
|
|
40
|
+
toggleDropdownOptions(): void;
|
|
40
41
|
setSelection(event: {
|
|
41
42
|
preventDefault: () => void;
|
|
42
43
|
stopPropagation: () => void;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { PeriodContentSvgRoutes } from './utils/svg-routes';
|
|
3
3
|
import { PayrollTypeEnum } from './enums';
|
|
4
|
-
import { DriverInfo, ExtraPayments, PaymentComponentData
|
|
4
|
+
import { DriverInfo, ExtraPayments, PaymentComponentData } from './models';
|
|
5
|
+
import { PayrollReport } from './models/payroll-report.type';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class CaPeriodContentComponent {
|
|
7
8
|
isOpen: boolean;
|
|
8
9
|
type: PayrollTypeEnum;
|
|
9
|
-
componentData:
|
|
10
|
+
componentData: PayrollReport;
|
|
10
11
|
reorderedDataEmiter: EventEmitter<PaymentComponentData | ExtraPayments>;
|
|
11
12
|
salary: number;
|
|
12
13
|
totalEarnings: number;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CaPeriodContentExtraInfoComponent {
|
|
3
3
|
title: string;
|
|
4
|
-
amount: number;
|
|
5
|
-
stopsCount: number;
|
|
4
|
+
amount: number | undefined;
|
|
5
|
+
stopsCount: number | undefined;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaPeriodContentExtraInfoComponent, never>;
|
|
7
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentExtraInfoComponent, "app-ca-period-content-extra-info", never, { "title": { "alias": "title"; "required": false; }; "amount": { "alias": "amount"; "required": false; }; "stopsCount": { "alias": "stopsCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -3,8 +3,11 @@ import { PeriodContentSvgRoutes } from '../../utils/svg-routes';
|
|
|
3
3
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
4
4
|
import { ComponentData, PaymentComponentData, PaymentSum } from '../../models';
|
|
5
5
|
import { IItemList } from '../../../../models/dropdown.model';
|
|
6
|
+
import { PayrollReportTableResponse } from '../../models/payroll-report-tables.type';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class CaPeriodContentPaymentComponent implements OnInit {
|
|
9
|
+
included: PayrollReportTableResponse[] | undefined;
|
|
10
|
+
excluded: PayrollReportTableResponse[] | undefined;
|
|
8
11
|
isOpen: boolean;
|
|
9
12
|
title: string;
|
|
10
13
|
componentData: {
|
|
@@ -24,8 +27,6 @@ export declare class CaPeriodContentPaymentComponent implements OnInit {
|
|
|
24
27
|
alternateIcon: string;
|
|
25
28
|
currentIcon: string;
|
|
26
29
|
currentIcons: string[];
|
|
27
|
-
included: PaymentComponentData;
|
|
28
|
-
excluded: PaymentComponentData;
|
|
29
30
|
constructor();
|
|
30
31
|
ngOnInit(): void;
|
|
31
32
|
private setIncludedAndExcludedData;
|
|
@@ -43,5 +44,5 @@ export declare class CaPeriodContentPaymentComponent implements OnInit {
|
|
|
43
44
|
getSvgPath(propertyName: keyof typeof PeriodContentSvgRoutes): string;
|
|
44
45
|
identity(index: number): number;
|
|
45
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaPeriodContentPaymentComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentPaymentComponent, "app-ca-period-content-payment", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "title": { "alias": "title"; "required": false; }; "componentData": { "alias": "componentData"; "required": false; }; }, { "sumPaymentTypeEmitter": "sumPaymentTypeEmitter"; "reorderedDataEmiter": "reorderedDataEmiter"; }, never, never, true, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentPaymentComponent, "app-ca-period-content-payment", never, { "included": { "alias": "included"; "required": false; }; "excluded": { "alias": "excluded"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "title": { "alias": "title"; "required": false; }; "componentData": { "alias": "componentData"; "required": false; }; }, { "sumPaymentTypeEmitter": "sumPaymentTypeEmitter"; "reorderedDataEmiter": "reorderedDataEmiter"; }, never, never, true, never>;
|
|
47
48
|
}
|
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
import { ComponentData, DriverInfo } from '../../models';
|
|
2
1
|
import { PeriodContentSvgRoutes } from '../../utils/svg-routes';
|
|
3
2
|
import { PayrollTypeEnum } from '../../enums';
|
|
3
|
+
import { PayrollReport } from '../../models/payroll-report.type';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CaPeriodContentUserInfoComponent {
|
|
6
|
-
componentData:
|
|
6
|
+
componentData: PayrollReport;
|
|
7
7
|
type: PayrollTypeEnum;
|
|
8
8
|
paymentStatus: string;
|
|
9
9
|
isOpen: boolean;
|
|
10
|
-
userInfo: DriverInfo;
|
|
11
10
|
status: number;
|
|
12
|
-
title: string;
|
|
13
11
|
currentIcon: string;
|
|
14
|
-
setCurrentIconAndClass(): string;
|
|
15
12
|
getSvgPath(propertyName: keyof typeof PeriodContentSvgRoutes): string;
|
|
16
|
-
getUserInitials(userName: string): string;
|
|
17
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaPeriodContentUserInfoComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentUserInfoComponent, "app-ca-period-content-user-info", never, { "componentData": { "alias": "componentData"; "required": false; }; "type": { "alias": "type"; "required": false; }; "paymentStatus": { "alias": "paymentStatus"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentUserInfoComponent, "app-ca-period-content-user-info", never, { "componentData": { "alias": "componentData"; "required": false; }; "type": { "alias": "type"; "required": false; }; "paymentStatus": { "alias": "paymentStatus"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
15
|
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { PayrollLoadMinimalResponse } from './payroll-load-minimal-response';
|
|
2
|
+
import { PayrollReportTableResponse } from './payroll-report-tables.type';
|
|
3
|
+
export interface PayrollReport {
|
|
4
|
+
id?: number;
|
|
5
|
+
fullName: string;
|
|
6
|
+
userId: number;
|
|
7
|
+
avatar: string | null;
|
|
8
|
+
periodStart?: string;
|
|
9
|
+
periodEnd?: string;
|
|
10
|
+
payrollNumber?: string | null;
|
|
11
|
+
daysUntilPayment: number;
|
|
12
|
+
mileagePay?: number;
|
|
13
|
+
totalEarnings?: number;
|
|
14
|
+
salary?: number | null;
|
|
15
|
+
extraStopPay?: number;
|
|
16
|
+
extraStopCount?: number;
|
|
17
|
+
loadCount?: number;
|
|
18
|
+
payrollDeadLine: {
|
|
19
|
+
numberOfDays: number;
|
|
20
|
+
period: string;
|
|
21
|
+
};
|
|
22
|
+
perMilesEntity?: {
|
|
23
|
+
emptyMile: number;
|
|
24
|
+
loadedMile: number;
|
|
25
|
+
perStop: number;
|
|
26
|
+
};
|
|
27
|
+
includedDeductions?: Array<PayrollReportTableResponse> | null;
|
|
28
|
+
excludedDeductions?: Array<PayrollReportTableResponse> | null;
|
|
29
|
+
totalDeduction?: number;
|
|
30
|
+
includedCredits?: Array<PayrollReportTableResponse> | null;
|
|
31
|
+
excludedCredits?: Array<PayrollReportTableResponse> | null;
|
|
32
|
+
totalCredits?: number;
|
|
33
|
+
includedBonus?: Array<PayrollReportTableResponse> | null;
|
|
34
|
+
excludedBonus?: Array<PayrollReportTableResponse> | null;
|
|
35
|
+
totalBonus?: number;
|
|
36
|
+
includedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
37
|
+
excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
38
|
+
mapLocations?: Array<any> | null;
|
|
39
|
+
sums?: any | null;
|
|
40
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PeriodStatusPipe implements PipeTransform {
|
|
4
|
+
transform(paymentStatus: string, isOpen: boolean, status: {
|
|
5
|
+
numberOfDays: number;
|
|
6
|
+
period: string;
|
|
7
|
+
}): {
|
|
8
|
+
title: string;
|
|
9
|
+
url: string;
|
|
10
|
+
};
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PeriodStatusPipe, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PeriodStatusPipe, "periodStatus", true>;
|
|
13
|
+
}
|
|
@@ -25,7 +25,10 @@ export declare class PayrollPeriodContentHelper {
|
|
|
25
25
|
private static extractExtraPayments;
|
|
26
26
|
private static extractOwnerCommissionInfo;
|
|
27
27
|
private static extractDriverOrOwnerInfo;
|
|
28
|
-
static getIcon(status:
|
|
28
|
+
static getIcon(status: {
|
|
29
|
+
numberOfDays: number;
|
|
30
|
+
period: string;
|
|
31
|
+
}): {
|
|
29
32
|
title: string;
|
|
30
33
|
url: string;
|
|
31
34
|
};
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { SearchMultipleStatesRoutes } from './utils/svg-routes';
|
|
3
3
|
import { CaSearchMultipleStatesService } from './utils/services';
|
|
4
|
-
import { ChipClassPipe } from './utils/pipes/';
|
|
5
4
|
import { ChipsModel, TabData } from './models';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class CaSearchMultipleStatesComponent implements OnInit, OnDestroy {
|
|
8
7
|
private searchMultipleStatesService;
|
|
9
|
-
chipClassPipe: ChipClassPipe;
|
|
10
8
|
tableSearchInput: ElementRef;
|
|
11
9
|
toolbarSearch?: boolean;
|
|
12
10
|
selectedTabData: TabData;
|
|
@@ -18,7 +16,7 @@ export declare class CaSearchMultipleStatesComponent implements OnInit, OnDestro
|
|
|
18
16
|
chipToDelete: number;
|
|
19
17
|
private chipsForHighlightSearch;
|
|
20
18
|
private typingTimeout;
|
|
21
|
-
constructor(searchMultipleStatesService: CaSearchMultipleStatesService
|
|
19
|
+
constructor(searchMultipleStatesService: CaSearchMultipleStatesService);
|
|
22
20
|
ngOnInit(): void;
|
|
23
21
|
toggleSearch(): void;
|
|
24
22
|
onTyping(event: MouseEvent | KeyboardEvent): void;
|
|
@@ -34,6 +32,7 @@ export declare class CaSearchMultipleStatesComponent implements OnInit, OnDestro
|
|
|
34
32
|
private getChipQuery;
|
|
35
33
|
getSvgPath(propertyName: keyof typeof SearchMultipleStatesRoutes): string;
|
|
36
34
|
trackByIdentity(index: number, chip: ChipsModel): number;
|
|
35
|
+
capitalizeInput(text: string): void;
|
|
37
36
|
ngOnDestroy(): void;
|
|
38
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaSearchMultipleStatesComponent, never>;
|
|
39
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaSearchMultipleStatesComponent, "app-ca-search-multiple-states", never, { "toolbarSearch": { "alias": "toolbarSearch"; "required": false; }; "selectedTabData": { "alias": "selectedTabData"; "required": false; }; "searchType": { "alias": "searchType"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UserNameInitialsPipe implements PipeTransform {
|
|
4
|
+
transform(userName: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserNameInitialsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<UserNameInitialsPipe, "userNameInitials", true>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="6" height="18" viewBox="0 0 6 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.67134 14.8784C5.67134 15.4068 5.51464 15.9234 5.22105 16.3628C4.92746 16.8022 4.51018 17.1446 4.02196 17.3468C3.53375 17.5491 2.99653 17.602 2.47824 17.4989C1.95995 17.3958 1.48387 17.1413 1.1102 16.7677C0.736539 16.394 0.482071 15.9179 0.378977 15.3996C0.275883 14.8813 0.328794 14.3441 0.53102 13.8559C0.733246 13.3677 1.07571 12.9504 1.51509 12.6568C1.95447 12.3632 2.47105 12.2065 2.99949 12.2065C3.70787 12.2073 4.387 12.4891 4.8879 12.99C5.38879 13.4909 5.67055 14.17 5.67134 14.8784ZM0.636621 1.29313L1.0906 10.3766C1.10037 10.5821 1.18894 10.776 1.33792 10.9179C1.48689 11.0598 1.68481 11.1388 1.89055 11.1386H4.10743C4.31317 11.1388 4.51108 11.0598 4.66006 10.9179C4.80903 10.776 4.89761 10.5821 4.90738 10.3766L5.36136 1.29313C5.36706 1.1846 5.35059 1.07604 5.31296 0.974085C5.27532 0.87213 5.2173 0.778913 5.14244 0.700124C5.06758 0.621335 4.97745 0.558626 4.87755 0.515824C4.77766 0.473022 4.67008 0.451025 4.5614 0.451175H1.43758C1.32881 0.450889 1.22113 0.472786 1.12111 0.515527C1.0211 0.558269 0.930849 0.620957 0.855883 0.699761C0.780917 0.778564 0.722808 0.871827 0.685108 0.97385C0.647409 1.07587 0.63091 1.18451 0.636621 1.29313Z" fill="#E66767"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.4" clip-path="url(#clip0_22911_3385)">
|
|
3
|
+
<path d="M73.6284 16.8931C73.6284 16.8931 75.673 15.2863 71.6758 12.2355C67.6786 9.18465 61.0132 4.50668 58.989 6.1338C56.9648 7.76092 51.9453 2.62532 51.9453 2.62532H52.0271C52.6711 2.23888 56.9853 0.042272 64.2948 4.72024C68.5987 7.45583 72.3914 9.87617 74.8552 12.4287C76.9611 14.6253 78.0959 16.9135 77.7278 19.5982L73.6284 16.8931Z" fill="#E66767"/>
|
|
4
|
+
<path d="M73.6284 16.8928C73.6284 16.8928 75.673 15.286 71.6758 12.2352C67.6786 9.18432 61.0132 4.50636 58.989 6.13347C56.9648 7.76059 51.9453 2.625 51.9453 2.625H52.0271C52.4178 2.70855 52.8035 2.8138 53.1823 2.94025C55.1469 4.0516 57.3849 4.59407 59.6433 4.50636C62.8533 4.21144 70.4797 9.5911 72.8106 12.0216C74.0373 13.303 74.6609 13.0386 74.8552 12.3775C76.9611 14.5742 78.0959 16.8623 77.7278 19.547L73.6284 16.8928Z" fill="#C20C0C"/>
|
|
5
|
+
<path d="M84.4659 29.6525C83.6378 30.9339 81.5012 31.2389 78.4957 30.7203C74.6211 30.0593 69.2949 28.005 63.5904 24.883C61.8321 23.9067 60.0669 22.8525 58.2949 21.7203C50.5458 16.8186 44.4733 11.4084 41.5598 7.19826C39.8219 4.70674 39.2085 2.64233 40.0365 1.36097C40.7419 0.272838 42.4083 -0.113603 44.7596 0.120296C49.7791 0.62877 57.886 3.97453 66.228 9.27284C68.1397 10.4932 69.9492 11.7339 71.636 12.9949C78.0049 17.7237 82.6258 22.5339 84.2001 25.9915C84.8748 27.5372 85.0282 28.7779 84.4659 29.6525Z" fill="#E66767"/>
|
|
6
|
+
<path d="M83.9809 34.2082L36.0859 3.69971C36.0859 3.69971 39.2755 -0.378252 44.3359 0.0285277L44.7653 0.0895446C50.2858 1.01497 66.2848 10.737 66.2848 10.737L69.546 13.3302C69.546 13.3302 70.7727 14.215 72.5209 15.5268C76.1705 18.2726 82.0897 22.9201 83.8378 25.3506C83.9908 25.5602 84.1275 25.7812 84.2467 26.0116C86.1073 29.5811 83.9809 34.2082 83.9809 34.2082Z" fill="#E66767"/>
|
|
7
|
+
<path d="M83.9781 34.2088L78.4986 30.7207C74.624 30.0597 69.2978 28.0055 63.5934 24.8834L63.4094 24.7512C61.052 23.1613 58.8511 21.3533 56.8359 19.3512L58.4614 14.541L65.4131 13.6258C65.4131 13.6258 71.0971 17.6936 72.4261 15.6597C72.4559 15.6191 72.48 15.5746 72.4976 15.5275C72.8043 14.8563 72.3852 13.9512 71.6594 13.0156C78.0283 17.7444 82.6491 22.5546 84.2235 26.0122C86.1045 29.5817 83.9781 34.2088 83.9781 34.2088Z" fill="#C20C0C"/>
|
|
8
|
+
<path d="M83.9762 34.221C82.0542 37.2006 73.1806 35.0956 62.7224 29.5532C60.4734 28.3634 58.1425 27.0108 55.8014 25.4854C42.5728 17.1057 33.7605 7.33285 36.071 3.71251C38.3814 0.0921686 51.017 3.98708 64.2457 12.4074C66.9343 14.1159 69.4288 15.8752 71.6983 17.6345C80.6026 24.5396 85.8265 31.3328 83.9762 34.221Z" fill="#ED9292"/>
|
|
9
|
+
<path d="M81.5452 32.4618C81.5079 32.6564 81.4351 32.8425 81.3305 33.011C79.6131 35.6754 69.8603 32.5534 58.9421 26.0144L58.8501 25.9635C58.0629 25.4957 57.2757 24.9974 56.4783 24.4991C55.2107 23.6856 53.9839 22.8686 52.798 22.0483C42.9634 15.1737 36.6456 8.16694 38.2915 5.60422C38.3946 5.43366 38.5342 5.28782 38.7004 5.17711C41.1131 3.42795 49.6391 6.19405 59.351 11.828L61.0991 12.8449L61.1911 12.9059C61.825 13.2822 62.4486 13.6788 63.0824 14.0856C72.4467 20.0347 79.4393 26.5534 81.1568 30.4381C81.4918 31.0571 81.6275 31.7636 81.5452 32.4618Z" fill="#DF3C3C"/>
|
|
10
|
+
<path d="M81.5452 32.4644C81.5079 32.659 81.4351 32.8451 81.3305 33.0136C79.6131 35.678 69.8603 32.556 58.9421 26.017L58.8501 25.9661C58.0629 25.4983 57.2757 25 56.4783 24.5017C55.2107 23.6882 53.9839 22.8712 52.798 22.0509C42.9634 15.1763 36.6456 8.16952 38.2915 5.60681C38.3946 5.43624 38.5342 5.2904 38.7004 5.17969C38.0973 8.08816 44.2209 14.6373 53.4216 21.0644C54.5973 21.8882 55.8343 22.7017 57.1019 23.5153C57.8891 24.0136 58.6865 24.5322 59.4634 24.9797L59.5554 25.0407C69.8194 31.1729 79.0304 34.2949 81.5452 32.4644Z" fill="#E66767"/>
|
|
11
|
+
<path d="M56.141 23.999C57.0406 24.6702 57.9811 25.3414 58.9421 26.0329L58.8501 25.9821C58.0629 25.5143 57.2757 25.016 56.4783 24.5177C55.2107 23.7041 53.9839 22.8871 52.798 22.0668C42.9634 15.1719 36.6456 8.16511 38.2915 5.6024C39.9374 3.03969 48.9746 5.81596 59.3203 11.8261C50.7636 7.00579 43.6893 4.92104 42.1763 7.14816C40.4486 9.60918 46.5415 16.8295 56.141 23.999Z" fill="#C20C0C"/>
|
|
12
|
+
<path d="M64.5446 28.6152C73.1013 32.5711 79.6543 33.5881 80.9833 31.3711C81.1377 31.1057 81.2155 30.8031 81.2082 30.4965C81.2082 30.5575 81.2082 30.6084 81.2798 30.6694C81.3081 30.7321 81.332 30.7967 81.3513 30.8626L81.4127 31.0559V31.2287C81.5157 31.5183 81.5571 31.8261 81.5342 32.1325C81.5113 32.4388 81.4247 32.7371 81.2798 33.0084C79.5521 35.683 69.7584 32.5304 58.7891 25.9609L64.5446 28.6152Z" fill="#E66767"/>
|
|
13
|
+
<path d="M56.105 42.0735L50.6766 82.0091C50.5478 82.9977 50.1813 83.9409 49.6083 84.7587C49.0353 85.5766 48.2726 86.245 47.3848 86.7074C44.4507 88.2125 39.1041 90.0328 30.2918 90.0328C23.2073 90.0328 18.2491 88.8837 15.1106 87.6125C14.6812 87.4498 14.303 87.2769 13.9452 87.104C13.005 86.6566 12.1913 85.9836 11.5775 85.1458C10.9636 84.3079 10.5687 83.3313 10.4284 82.304L5 42.0735C14.763 38.6972 27.0307 38.5853 37.1004 39.3684C43.4875 39.8594 49.8358 40.763 56.105 42.0735Z" fill="#ED9292"/>
|
|
14
|
+
<path d="M56.1038 42.0723L50.6754 82.0079C50.5465 82.9965 50.1801 83.9397 49.6071 84.7575C49.0341 85.5754 48.2714 86.2438 47.3835 86.7062C44.4495 88.2113 39.1029 90.0316 30.2906 90.0316C23.206 90.0316 18.2479 88.8824 15.1094 87.6113C20.8241 88.6282 35.7293 90.4485 41.6893 83.8892C49.1112 75.6824 47.4653 41.2485 39.2153 40.018C38.4751 39.9508 37.7575 39.729 37.1094 39.3672C43.4931 39.8586 49.8379 40.7622 56.1038 42.0723Z" fill="#C20C0C"/>
|
|
15
|
+
<path d="M56.105 42.0719C56.105 43.4041 53.7639 44.6142 49.8894 45.5498C49.3169 45.6922 48.7138 45.8244 48.0697 45.9464C42.2903 46.97 36.4277 47.4568 30.5576 47.4007C25.1704 47.4388 19.7889 47.0409 14.4665 46.2109C8.70074 45.1939 5 43.7397 5 42.0719C5 41.0041 6.51301 40.038 9.08922 39.1736C11.7358 38.3816 14.4493 37.8301 17.1961 37.5261C21.6256 36.9866 26.0849 36.7251 30.5474 36.7431C34.289 36.7431 37.8569 36.9058 41.0567 37.2109C49.9303 38.0448 56.105 39.9058 56.105 42.0719Z" fill="#DF3C3C"/>
|
|
16
|
+
<path d="M14.4665 46.2092C8.70074 45.1922 5 43.738 5 42.0702C5 41.0024 6.51301 40.0363 9.08922 39.1719C10.5417 41.7565 12.3518 44.1254 14.4665 46.2092Z" fill="#C20C0C"/>
|
|
17
|
+
<path d="M27.7685 86.1888C27.7868 86.5172 27.7247 86.8452 27.5876 87.1445C27.4505 87.4438 27.2425 87.7056 26.9813 87.9074C26.6516 88.1765 26.2421 88.3302 25.8159 88.3447C25.5448 88.3612 25.2732 88.3238 25.0168 88.2346C24.7605 88.1455 24.5245 88.0065 24.3228 87.8257C24.121 87.6449 23.9575 87.4259 23.8417 87.1815C23.726 86.9371 23.6603 86.6722 23.6486 86.4023L21.8085 51.6125C21.7919 51.3421 21.8299 51.071 21.9201 50.8154C22.0103 50.5597 22.151 50.3245 22.3338 50.1237C22.5167 49.9228 22.738 49.7604 22.9849 49.6458C23.2317 49.5313 23.4991 49.4669 23.7713 49.4566H23.8735C23.9991 49.4416 24.1261 49.4416 24.2518 49.4566C24.7095 49.537 25.1261 49.7703 25.4327 50.1178C25.7393 50.4654 25.9178 50.9065 25.9386 51.3684L27.7685 86.1888Z" fill="#DF3C3C"/>
|
|
18
|
+
<path d="M26.9813 87.9074C26.6516 88.1765 26.2421 88.3302 25.8159 88.3447C25.5448 88.3612 25.2732 88.3238 25.0168 88.2346C24.7605 88.1455 24.5245 88.0065 24.3228 87.8257C24.121 87.6449 23.9575 87.4259 23.8417 87.1815C23.726 86.9371 23.6603 86.6722 23.6486 86.4023L21.8085 51.6125C21.7919 51.3421 21.8299 51.071 21.9201 50.8154C22.0103 50.5597 22.151 50.3245 22.3338 50.1237C22.5167 49.9228 22.738 49.7604 22.9849 49.6458C23.2317 49.5313 23.4991 49.4669 23.7713 49.4566H23.8735C23.9991 49.4416 24.1261 49.4416 24.2518 49.4566C24.0043 49.6461 23.8038 49.8894 23.6656 50.1679C23.5274 50.4464 23.4551 50.7527 23.4544 51.0634C23.4544 51.0634 23.4544 51.1345 23.4544 51.1752L25.2843 85.9651C25.2987 86.4338 25.4755 86.8832 25.7847 87.2372C26.094 87.5911 26.5167 87.8279 26.9813 87.9074Z" fill="#C20C0C"/>
|
|
19
|
+
<path d="M50.8431 49.1482C50.8482 49.2159 50.8482 49.2839 50.8431 49.3516L46.4574 84.7821C46.4445 84.8893 46.4205 84.995 46.3858 85.0974C46.2695 85.4549 46.0309 85.7606 45.7116 85.9612C45.3922 86.1619 45.0122 86.2448 44.6377 86.1957C44.2192 86.1397 43.8383 85.9259 43.5738 85.5985C43.3093 85.271 43.1814 84.8549 43.2167 84.4363L47.6126 48.9448C47.6645 48.6057 47.8228 48.2915 48.0649 48.0472C48.307 47.8029 48.6206 47.641 48.9608 47.5846C49.3009 47.5282 49.6503 47.5802 49.959 47.7332C50.2677 47.8862 50.5199 48.1323 50.6795 48.4363C50.7869 48.6585 50.8428 48.9017 50.8431 49.1482Z" fill="#C20C0C"/>
|
|
20
|
+
<path d="M50.8423 49.147C50.8474 49.2147 50.8474 49.2827 50.8423 49.3504L46.4566 84.7809C46.4437 84.8881 46.4197 84.9938 46.385 85.0962C46.1418 84.9277 45.9489 84.6971 45.8265 84.4286C45.7042 84.1601 45.657 83.8637 45.6899 83.5707L49.8813 49.6453C49.909 49.3967 49.9957 49.1582 50.1344 48.9496C50.273 48.7409 50.4596 48.5681 50.6787 48.4453C50.7846 48.6643 50.8405 48.904 50.8423 49.147Z" fill="#DF3C3C"/>
|
|
21
|
+
<path d="M17.2694 86.0113C16.9846 86.2711 16.6289 86.4409 16.2471 86.4995C15.9663 86.5349 15.6812 86.512 15.4099 86.4322C15.1385 86.3523 14.8867 86.2173 14.6705 86.0357C14.4543 85.8541 14.2784 85.6298 14.1538 85.377C14.0292 85.1243 13.9588 84.8485 13.9469 84.5673L9.68386 50.4385C9.60211 49.9219 9.70318 49.3931 9.9698 48.9424C10.2364 48.4916 10.6521 48.147 11.1458 47.9673C11.2386 47.9363 11.3346 47.9158 11.432 47.9062H11.6774C12.1991 47.9269 12.6953 48.137 13.072 48.4967C13.4487 48.8565 13.6799 49.341 13.722 49.8588L17.9645 83.9673C18.0204 84.3384 17.9865 84.7175 17.8656 85.073C17.7447 85.4285 17.5403 85.7502 17.2694 86.0113Z" fill="#DF3C3C"/>
|
|
22
|
+
<path d="M17.2694 86.0128C16.9846 86.2725 16.6289 86.4424 16.2471 86.5009C15.9663 86.5364 15.6813 86.5135 15.4099 86.4336C15.1385 86.3538 14.8867 86.2188 14.6705 86.0372C14.4543 85.8556 14.2784 85.6313 14.1538 85.3785C14.0292 85.1257 13.9588 84.85 13.9469 84.5687L9.68386 50.4399C9.60211 49.9233 9.70318 49.3945 9.9698 48.9438C10.2364 48.4931 10.6521 48.1485 11.1458 47.9688C10.8729 48.2274 10.665 48.5462 10.5389 48.8996C10.4128 49.2529 10.372 49.6308 10.4199 50.0026L14.6829 84.1315C14.725 84.6492 14.9562 85.1338 15.3329 85.4935C15.7096 85.8533 16.2058 86.0633 16.7275 86.084H16.9831L17.2694 86.0128Z" fill="#C20C0C"/>
|
|
23
|
+
<path d="M39.3155 51.3267V51.4284L37.4652 86.625C37.4652 86.7064 37.4652 86.7674 37.4652 86.8386C37.4149 87.1449 37.2873 87.4334 37.0941 87.6771C36.901 87.9208 36.6487 88.1117 36.3611 88.2318C36.2495 88.2812 36.133 88.3187 36.0135 88.3437H35.901C35.7786 88.3539 35.6555 88.3539 35.533 88.3437C35.1516 88.3238 34.7857 88.1871 34.4855 87.9522C34.1854 87.7174 33.9656 87.3959 33.8564 87.0318C33.7956 86.8274 33.7714 86.614 33.7849 86.4013L35.6352 51.2047C35.6617 50.7154 35.882 50.2565 36.2481 49.9286C36.6141 49.6007 37.0959 49.4306 37.5878 49.4555C38.0607 49.4838 38.5052 49.6896 38.8316 50.0312C39.158 50.3729 39.3419 50.8249 39.3462 51.2962L39.3155 51.3267Z" fill="#DF3C3C"/>
|
|
24
|
+
<path d="M38.7839 50.0454C38.4676 50.1825 38.1959 50.4045 37.9991 50.6864C37.8023 50.9684 37.6883 51.2992 37.6696 51.642L35.809 86.025C35.809 86.5538 35.901 87.9165 37.4345 86.8386C37.3872 87.1417 37.2642 87.4281 37.0766 87.6715C36.889 87.915 36.643 88.1076 36.3611 88.2318C36.2495 88.2812 36.133 88.3187 36.0135 88.3437H35.901H35.533C35.1485 88.3347 34.7774 88.202 34.4751 87.9655C34.1728 87.7289 33.9558 87.4014 33.8564 87.0318C33.7956 86.8274 33.7714 86.614 33.7849 86.4013L35.6352 51.2047C35.6617 50.7154 35.882 50.2565 36.2481 49.9286C36.6141 49.6007 37.0959 49.4306 37.5878 49.4555C38.0481 49.4913 38.4767 49.7026 38.7839 50.0454Z" fill="#C20C0C"/>
|
|
25
|
+
<path d="M56.1018 42.0719C56.1018 43.4041 53.7607 44.6142 49.8862 45.5498C49.215 44.5447 48.3946 43.6464 47.4531 42.8854C41.0739 37.882 23.5312 37.4956 17.2031 37.5261C21.6326 36.9866 26.0919 36.7251 30.5544 36.7431C34.2961 36.7431 37.8639 36.9058 41.0637 37.2109C49.9271 38.0448 56.1018 39.9058 56.1018 42.0719Z" fill="#ED9292"/>
|
|
26
|
+
</g>
|
|
27
|
+
<defs>
|
|
28
|
+
<clipPath id="clip0_22911_3385">
|
|
29
|
+
<rect width="90" height="90" fill="white"/>
|
|
30
|
+
</clipPath>
|
|
31
|
+
</defs>
|
|
32
|
+
</svg>
|