@sd-angular/core 19.0.0-beta.2 → 19.0.0-beta.4
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/components/document-builder/src/document-builder.config.d.ts +21 -0
- package/components/document-builder/src/document-builder.utils.d.ts +10 -0
- package/fesm2022/sd-angular-core-components-document-builder.mjs +426 -154
- package/fesm2022/sd-angular-core-components-document-builder.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-table.mjs +5 -5
- package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-workflow.mjs +23 -23
- package/fesm2022/sd-angular-core-components-workflow.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-autocomplete.mjs +22 -2
- package/fesm2022/sd-angular-core-forms-autocomplete.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-date.mjs +13 -3
- package/fesm2022/sd-angular-core-forms-date.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-input-number.mjs +17 -3
- package/fesm2022/sd-angular-core-forms-input-number.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-input.mjs +18 -6
- package/fesm2022/sd-angular-core-forms-input.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-radio.mjs +15 -2
- package/fesm2022/sd-angular-core-forms-radio.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-select.mjs +13 -2
- package/fesm2022/sd-angular-core-forms-select.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-textarea.mjs +9 -2
- package/fesm2022/sd-angular-core-forms-textarea.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules-auth.mjs +137 -0
- package/fesm2022/sd-angular-core-modules-auth.mjs.map +1 -0
- package/fesm2022/sd-angular-core-modules-layout.mjs +1 -1
- package/fesm2022/sd-angular-core-modules-layout.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules.mjs +1 -0
- package/fesm2022/sd-angular-core-modules.mjs.map +1 -1
- package/fesm2022/sd-angular-core-services-confirm.mjs +5 -8
- package/fesm2022/sd-angular-core-services-confirm.mjs.map +1 -1
- package/fesm2022/sd-angular-core-utilities-extensions.mjs +66 -1
- package/fesm2022/sd-angular-core-utilities-extensions.mjs.map +1 -1
- package/fesm2022/sd-angular-core-utilities-models.mjs +12 -3
- package/fesm2022/sd-angular-core-utilities-models.mjs.map +1 -1
- package/forms/autocomplete/src/autocomplete.component.d.ts +5 -1
- package/forms/date/src/date.component.d.ts +4 -1
- package/forms/input/src/input.component.d.ts +6 -4
- package/forms/input-number/src/input-number.component.d.ts +4 -1
- package/forms/radio/src/radio.component.d.ts +5 -1
- package/forms/select/src/select.component.d.ts +5 -1
- package/forms/textarea/src/textarea.component.d.ts +3 -1
- package/modules/auth/configurations/auth.configuration.d.ts +19 -0
- package/modules/auth/configurations/index.d.ts +1 -0
- package/modules/auth/guards/auth.guard.d.ts +11 -0
- package/modules/auth/guards/index.d.ts +2 -0
- package/modules/auth/guards/portal.guard.d.ts +11 -0
- package/modules/auth/index.d.ts +3 -0
- package/modules/auth/services/auth.model.d.ts +8 -0
- package/modules/auth/services/auth.service.d.ts +17 -0
- package/modules/auth/services/index.d.ts +2 -0
- package/modules/index.d.ts +1 -0
- package/package.json +78 -74
- package/utilities/extensions/index.d.ts +1 -0
- package/utilities/extensions/src/color.extension.d.ts +20 -0
- package/utilities/models/src/maybe-async.model.d.ts +1 -0
- package/utilities/models/src/pattern.model.d.ts +2 -2
|
@@ -152,6 +152,12 @@ class SdSelect {
|
|
|
152
152
|
this.formControl.enable();
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
|
+
viewed = false;
|
|
156
|
+
set _viewed(val) {
|
|
157
|
+
this.viewed = val === '' || !!val;
|
|
158
|
+
}
|
|
159
|
+
viewedText;
|
|
160
|
+
hyperlink;
|
|
155
161
|
multiple = false;
|
|
156
162
|
set _multiple(val) {
|
|
157
163
|
this.multiple = val === '' || !!val;
|
|
@@ -500,7 +506,7 @@ class SdSelect {
|
|
|
500
506
|
return item;
|
|
501
507
|
};
|
|
502
508
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: SD_FORM_CONFIGURATION, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
503
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: SdSelect, isStandalone: true, selector: "sd-select", inputs: { _autoId: ["autoId", "_autoId"], name: "name", appearance: "appearance", _hideInlineError: ["hideInlineError", "_hideInlineError"], size: "size", form: "form", _label: ["label", "_label"], _helperText: ["helperText", "_helperText"], placeholder: "placeholder", model: "model", items: "items", valueField: "valueField", displayField: "displayField", disabledField: "disabledField", cacheChecksum: "cacheChecksum", _required: ["required", "_required"], _validator: ["validator", "_validator"], _inlineError: ["inlineError", "_inlineError"], disabled: "disabled", _multiple: ["multiple", "_multiple"], limit: "limit" }, outputs: { modelChange: "modelChange", sdChange: "sdChange", sdSelection: "sdSelection" }, queries: [{ propertyName: "itemDef", first: true, predicate: SdItemDefDefDirective, descendants: true }, { propertyName: "sdLabelDef", first: true, predicate: SdLabelDefDirective, descendants: true }, { propertyName: "sdViewDef", first: true, predicate: SdViewDefDirective, descendants: true }], viewQueries: [{ propertyName: "input", first: true, predicate: MatInput, descendants: true }, { propertyName: "select", first: true, predicate: ["select"], descendants: true }], ngImport: i0, template: "@if (!appearance && sdLabelDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"sdLabelDef?.templateRef!\"> </ng-container>\r\n}\r\n@if (!appearance && label && !sdLabelDef?.templateRef) {\r\n <sd-label [label]=\"label\" [required]=\"required\"></sd-label>\r\n}\r\n<div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"sdViewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n aria-hidden=\"true\">\r\n @if (sdViewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n sdViewDef!.templateRef;\r\n context: {\r\n value: formControl.value,\r\n selectedItems: selectedItems | async\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size === 'md'\"\r\n [class.sd-sm]=\"size === 'sm'\"\r\n [class.hide-inline-error]=\"hideInlineError\"\r\n [appearance]=\"appearance\">\r\n @if (appearance && label) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ label }}</span>\r\n @if (helperText) {\r\n <mat-icon [matTooltip]=\"helperText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n \r\n @if (multiple) {\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n multiple\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value?.length\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !formControl.value?.length\"\r\n [matTooltip]=\"tooltip\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n } @else {\r\n \r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value !== undefined && formControl.value !== null\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n }\r\n\r\n @if (\r\n (multiple ? formControl.value?.length : formControl.value !== undefined && formControl.value !== null) &&\r\n !required &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"/>\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\"/>\r\n </svg>\r\n </span>\r\n }\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n</div>", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"97\" height=\"96\" viewBox=\"0 0 97 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M17.9657 72.84C8.63101 65.685 2.2812 55.23 0.806245 43.55C-0.773708 31.025 3.06618 15.9 28.8604 12.175C77.634 5.13499 110.693 47.8 90.4436 68.9C73.2191 86.85 41.73 91.05 17.9657 72.835V72.84Z\" fill=\"%23F2F2F2\"/>%0D%0A<path d=\"M68.8944 62.84H27.5107L22.1708 47.51C22.0558 47.185 22.3008 46.845 22.6408 46.845H74.3343C74.6843 46.845 74.9293 47.195 74.7993 47.525L68.8944 62.84Z\" fill=\"black\"/>%0D%0A<path d=\"M68.8943 63.09H27.5106C27.4056 63.09 27.3106 63.025 27.2756 62.92L21.9357 47.59C21.8557 47.36 21.8907 47.105 22.0307 46.91C22.1707 46.715 22.4007 46.595 22.6407 46.595H74.3342C74.5792 46.595 74.8142 46.715 74.9542 46.92C75.0942 47.125 75.1242 47.385 75.0342 47.615L69.1293 62.93C69.0943 63.025 68.9993 63.09 68.8943 63.09ZM27.6906 62.59H68.7243L74.5692 47.435C74.5992 47.355 74.5892 47.27 74.5442 47.205C74.4992 47.135 74.4192 47.095 74.3392 47.095H22.6407C22.5607 47.095 22.4857 47.135 22.4357 47.2C22.3857 47.265 22.3757 47.35 22.4057 47.425L27.6906 62.585V62.59Z\" fill=\"black\"/>%0D%0A<path d=\"M15.8561 58.295L10.5811 58.925C10.2511 58.965 9.98106 58.66 10.0611 58.335L10.7411 55.6C10.8111 55.31 11.1311 55.155 11.4061 55.28L16.0061 57.39C16.4461 57.59 16.3411 58.245 15.8611 58.3L15.8561 58.295ZM17.5611 55.435L16.6161 49.065C16.5611 48.685 16.1761 48.455 15.8161 48.58L12.4261 49.755C12.0261 49.895 11.8861 50.395 12.1561 50.72L16.4911 55.915C16.8861 56.385 17.6511 56.045 17.5611 55.435Z\" fill=\"%234CAF50\"/>%0D%0A<path d=\"M34.81 33.265C34.81 33.265 44.2198 36.035 49.1596 35.715L53.0745 40.145C53.0745 40.145 47.3047 59.815 46.5097 61.8C46.5097 61.8 38.1299 59.175 26.4253 58.005C26.4253 58.005 31.5651 46.315 34.805 33.27L34.81 33.265Z\" fill=\"white\"/>%0D%0A<path d=\"M46.6996 61.525C46.6746 61.525 46.6446 61.525 46.6196 61.51C46.4896 61.465 46.4196 61.325 46.4646 61.195C46.6346 60.69 46.8946 59.89 47.2296 58.81C47.2696 58.68 47.4095 58.605 47.5445 58.645C47.6745 58.685 47.7495 58.825 47.7095 58.96C47.3745 60.04 47.1146 60.845 46.9396 61.355C46.9046 61.46 46.8046 61.525 46.7046 61.525H46.6996ZM44.6346 61.525C44.6346 61.525 44.5896 61.525 44.5696 61.515C43.9146 61.34 43.1047 61.13 42.1497 60.905C42.0147 60.875 41.9347 60.74 41.9647 60.605C41.9947 60.47 42.1297 60.385 42.2647 60.42C43.2247 60.65 44.0396 60.86 44.6946 61.035C44.8296 61.07 44.9096 61.21 44.8696 61.34C44.8396 61.45 44.7396 61.525 44.6296 61.525H44.6346ZM39.7698 60.36C39.7698 60.36 39.7348 60.36 39.7148 60.355C38.9548 60.19 38.1348 60.025 37.2698 59.855C37.1349 59.83 37.0449 59.695 37.0699 59.56C37.0949 59.425 37.2348 59.335 37.3648 59.36C38.2348 59.53 39.0548 59.695 39.8198 59.86C39.9548 59.89 40.0398 60.02 40.0098 60.155C39.9848 60.27 39.8798 60.35 39.7648 60.35L39.7698 60.36ZM34.8599 59.41C34.8599 59.41 34.8299 59.41 34.8149 59.41C34.0249 59.275 33.2 59.14 32.35 59.01C32.215 58.99 32.12 58.86 32.14 58.725C32.16 58.59 32.29 58.495 32.425 58.515C33.28 58.645 34.1049 58.78 34.8999 58.915C35.0349 58.94 35.1299 59.07 35.1049 59.205C35.0849 59.325 34.9799 59.415 34.8599 59.415V59.41ZM29.9151 58.66C29.9151 58.66 29.8951 58.66 29.8801 58.66C29.0751 58.555 28.2501 58.455 27.4001 58.365C27.2651 58.35 27.1651 58.225 27.1801 58.09C27.1951 57.955 27.3201 57.855 27.4551 57.87C28.3051 57.965 29.1351 58.065 29.9451 58.17C30.0801 58.19 30.1801 58.315 30.1601 58.45C30.1451 58.575 30.0351 58.67 29.9101 58.67L29.9151 58.66ZM27.0101 56.885C26.9801 56.885 26.9452 56.88 26.9152 56.865C26.7852 56.81 26.7252 56.665 26.7802 56.54C27.0301 55.94 27.3501 55.16 27.7201 54.225C27.7701 54.095 27.9151 54.035 28.0451 54.085C28.1751 54.135 28.2351 54.28 28.1851 54.41C27.8101 55.35 27.4901 56.13 27.2451 56.735C27.2051 56.83 27.1101 56.89 27.0151 56.89L27.0101 56.885ZM48.2045 56.745C48.2045 56.745 48.1545 56.745 48.1295 56.735C47.9995 56.695 47.9245 56.555 47.9645 56.425C48.1945 55.665 48.4395 54.86 48.6895 54.025C48.7295 53.895 48.8695 53.815 48.9995 53.86C49.1295 53.9 49.2045 54.04 49.1645 54.17C48.9145 55 48.6695 55.81 48.4395 56.57C48.4045 56.68 48.3095 56.745 48.1995 56.745H48.2045ZM28.8551 52.235C28.8251 52.235 28.7951 52.23 28.7651 52.22C28.6351 52.17 28.5701 52.025 28.6201 51.9C28.8951 51.17 29.1901 50.39 29.4951 49.56C29.5401 49.43 29.6901 49.365 29.8151 49.41C29.9451 49.455 30.0101 49.6 29.9651 49.73C29.6601 50.565 29.3701 51.35 29.0901 52.08C29.0501 52.18 28.9551 52.24 28.8551 52.24V52.235ZM49.6495 51.95C49.6495 51.95 49.5995 51.95 49.5795 51.94C49.4495 51.9 49.3695 51.76 49.4145 51.63L50.1295 49.23C50.1695 49.1 50.3045 49.025 50.4395 49.06C50.5695 49.1 50.6495 49.24 50.6095 49.37L49.8895 51.77C49.8595 51.88 49.7595 51.95 49.6495 51.95ZM30.575 47.535C30.55 47.535 30.52 47.535 30.49 47.52C30.36 47.475 30.2901 47.33 30.335 47.2C30.6 46.44 30.87 45.65 31.145 44.835C31.19 44.705 31.33 44.63 31.46 44.68C31.59 44.725 31.66 44.865 31.615 44.995C31.34 45.81 31.07 46.6 30.805 47.365C30.77 47.47 30.67 47.53 30.57 47.53L30.575 47.535ZM51.0844 47.145C51.0844 47.145 51.0394 47.145 51.0144 47.135C50.8844 47.095 50.8044 46.955 50.8444 46.825L51.5544 44.42C51.5944 44.29 51.7344 44.21 51.8644 44.25C51.9944 44.29 52.0744 44.43 52.0344 44.56L51.3244 46.965C51.2944 47.075 51.1944 47.145 51.0844 47.145ZM32.165 42.79C32.165 42.79 32.115 42.79 32.09 42.78C31.96 42.74 31.885 42.595 31.93 42.465C32.18 41.685 32.425 40.89 32.67 40.08C32.71 39.95 32.85 39.875 32.98 39.915C33.11 39.955 33.185 40.095 33.145 40.225C32.9 41.04 32.65 41.835 32.4 42.62C32.365 42.725 32.27 42.795 32.16 42.795L32.165 42.79ZM52.5044 42.335C52.5044 42.335 52.4594 42.335 52.4344 42.325C52.3044 42.285 52.2244 42.145 52.2644 42.015L52.7944 40.215L52.5544 39.945C52.4644 39.84 52.4744 39.685 52.5744 39.59C52.6744 39.5 52.8344 39.505 52.9294 39.61L53.2594 39.985C53.3144 40.05 53.3344 40.14 53.3094 40.22L52.7394 42.155C52.7094 42.265 52.6094 42.335 52.4994 42.335H52.5044ZM51.0894 38.155C51.0194 38.155 50.9494 38.125 50.8994 38.07L49.2445 36.195C49.1545 36.09 49.1645 35.935 49.2645 35.84C49.3645 35.75 49.5245 35.755 49.6195 35.86L51.2744 37.735C51.3644 37.84 51.3544 37.995 51.2544 38.09C51.2094 38.13 51.1494 38.15 51.0894 38.15V38.155ZM33.615 38C33.615 38 33.57 38 33.545 37.99C33.41 37.95 33.335 37.815 33.375 37.68C33.6 36.885 33.8249 36.085 34.0399 35.275C34.0749 35.14 34.2099 35.06 34.3449 35.095C34.4799 35.13 34.5599 35.265 34.5249 35.4C34.3099 36.215 34.0849 37.02 33.8599 37.815C33.8299 37.925 33.7299 37.995 33.62 37.995L33.615 38ZM47.0746 35.955C47.0746 35.955 47.0646 35.955 47.0596 35.955C46.3096 35.905 45.4646 35.815 44.5546 35.685C44.4196 35.665 44.3246 35.54 44.3446 35.4C44.3646 35.26 44.4946 35.17 44.6296 35.19C45.5296 35.32 46.3596 35.405 47.0996 35.455C47.2395 35.465 47.3395 35.585 47.3345 35.72C47.3245 35.85 47.2146 35.955 47.0846 35.955H47.0746ZM42.1197 35.275C42.1197 35.275 42.0897 35.275 42.0747 35.275C41.2897 35.125 40.4648 34.95 39.6148 34.76C39.4798 34.73 39.3948 34.595 39.4248 34.46C39.4548 34.325 39.5898 34.24 39.7248 34.27C40.5647 34.46 41.3897 34.63 42.1647 34.78C42.2997 34.805 42.3897 34.935 42.3647 35.07C42.3397 35.19 42.2347 35.275 42.1197 35.275ZM37.2348 34.175C37.2348 34.175 37.1948 34.175 37.1748 34.165C35.7249 33.795 34.7549 33.51 34.7449 33.51C34.6149 33.47 34.5349 33.33 34.5749 33.2C34.6149 33.07 34.7499 32.995 34.8849 33.03C34.8949 33.03 35.8549 33.315 37.2948 33.68C37.4298 33.715 37.5098 33.85 37.4748 33.985C37.4448 34.1 37.3448 34.175 37.2348 34.175ZM46.3096 41.255C46.3096 41.255 46.2796 41.255 46.2646 41.255L45.3196 41.08C45.1846 41.055 45.0946 40.925 45.1196 40.79C45.1446 40.655 45.2746 40.565 45.4096 40.59L46.3546 40.765C46.4896 40.79 46.5796 40.92 46.5546 41.055C46.5346 41.175 46.4296 41.26 46.3096 41.26V41.255ZM43.8896 40.805C43.8896 40.805 43.8597 40.805 43.8447 40.805L42.3697 40.53C42.2347 40.505 42.1447 40.375 42.1697 40.24C42.1947 40.105 42.3247 40.015 42.4597 40.04L43.9347 40.315C44.0696 40.34 44.1596 40.47 44.1346 40.605C44.1146 40.725 44.0096 40.81 43.8896 40.81V40.805ZM40.9397 40.255C40.9397 40.255 40.9097 40.255 40.8947 40.255L39.4198 39.98C39.2848 39.955 39.1948 39.825 39.2198 39.69C39.2448 39.555 39.3748 39.465 39.5098 39.49L40.9847 39.765C41.1197 39.79 41.2097 39.92 41.1847 40.055C41.1647 40.175 41.0597 40.26 40.9397 40.26V40.255ZM37.9898 39.705C37.9898 39.705 37.9598 39.705 37.9448 39.705L36.4699 39.43C36.3349 39.405 36.2449 39.275 36.2699 39.14C36.2949 39.005 36.4249 38.915 36.5599 38.94L38.0348 39.215C38.1698 39.24 38.2598 39.37 38.2348 39.505C38.2148 39.625 38.1098 39.71 37.9898 39.71V39.705ZM45.1546 45.82C45.1546 45.82 45.1246 45.82 45.1096 45.82L44.3396 45.675C44.2046 45.65 44.1146 45.52 44.1396 45.385C44.1646 45.25 44.2946 45.16 44.4296 45.185L45.1996 45.33C45.3346 45.355 45.4246 45.485 45.3996 45.62C45.3746 45.74 45.2746 45.825 45.1546 45.825V45.82ZM42.9097 45.395C42.9097 45.395 42.8797 45.395 42.8647 45.395L41.3897 45.115C41.2547 45.09 41.1647 44.96 41.1897 44.825C41.2147 44.69 41.3447 44.6 41.4797 44.625L42.9547 44.905C43.0897 44.93 43.1797 45.06 43.1547 45.195C43.1297 45.315 43.0297 45.4 42.9097 45.4V45.395ZM39.9648 44.835C39.9648 44.835 39.9348 44.835 39.9198 44.835L38.4448 44.555C38.3098 44.53 38.2198 44.4 38.2448 44.265C38.2698 44.13 38.3998 44.04 38.5348 44.065L40.0098 44.345C40.1448 44.37 40.2348 44.5 40.2098 44.635C40.1848 44.755 40.0848 44.84 39.9648 44.84V44.835ZM37.0199 44.275C37.0199 44.275 36.9899 44.275 36.9749 44.275L35.4999 43.995C35.3649 43.97 35.2749 43.84 35.2999 43.705C35.3249 43.57 35.4549 43.48 35.5899 43.505L37.0649 43.785C37.1998 43.81 37.2898 43.94 37.2648 44.075C37.2398 44.195 37.1398 44.28 37.0199 44.28V44.275ZM37.8898 51.275C37.8898 51.275 37.8598 51.275 37.8448 51.275L36.3699 51C36.2349 50.975 36.1449 50.845 36.1699 50.71C36.1949 50.575 36.3299 50.485 36.4599 50.51L37.9348 50.785C38.0698 50.81 38.1598 50.94 38.1348 51.075C38.1148 51.195 38.0098 51.28 37.8898 51.28V51.275ZM34.9399 50.72C34.9399 50.72 34.9099 50.72 34.8949 50.72L33.42 50.445C33.285 50.42 33.195 50.29 33.22 50.155C33.245 50.02 33.38 49.93 33.51 49.955L34.9849 50.23C35.1199 50.255 35.2099 50.385 35.1849 50.52C35.1649 50.64 35.0599 50.725 34.9399 50.725V50.72ZM46.0446 52.975C46.0446 52.975 46.0146 52.975 45.9946 52.975L44.5246 52.69C44.3896 52.665 44.2996 52.53 44.3246 52.395C44.3496 52.26 44.4846 52.175 44.6196 52.195L46.0896 52.48C46.2246 52.505 46.3146 52.64 46.2896 52.775C46.2646 52.895 46.1596 52.975 46.0446 52.975ZM43.0997 52.4C43.0997 52.4 43.0697 52.4 43.0497 52.4L41.5797 52.115C41.4447 52.09 41.3547 51.955 41.3797 51.82C41.4047 51.685 41.5397 51.6 41.6747 51.62L43.1447 51.905C43.2797 51.93 43.3697 52.065 43.3447 52.2C43.3197 52.32 43.2147 52.4 43.0997 52.4Z\" fill=\"black\"/>%0D%0A<path d=\"M53.3047 40.05C52.5347 38.205 51.2247 36.68 49.5147 35.64L49.2897 35.505C49.2147 35.46 49.1197 35.455 49.0397 35.5C48.9597 35.54 48.9097 35.62 48.9097 35.71C48.9097 35.735 48.7947 38.185 47.8497 39.21C47.7897 39.275 47.7697 39.365 47.7947 39.445C47.8197 39.53 47.8797 39.595 47.9647 39.62C48.0997 39.66 50.8447 40.465 52.4547 40.465C52.7247 40.465 52.9597 40.445 53.1447 40.39C53.2147 40.37 53.2697 40.325 53.3047 40.26C53.3347 40.195 53.3397 40.12 53.3097 40.055L53.3047 40.05Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M78.2888 85.9H18.7456C18.6056 85.9 18.4956 85.79 18.4956 85.65C18.4956 85.51 18.6056 85.4 18.7456 85.4H78.2888C78.4288 85.4 78.5388 85.51 78.5388 85.65C78.5388 85.79 78.4288 85.9 78.2888 85.9Z\" fill=\"black\"/>%0D%0A<path d=\"M50.9396 51.85L46.9848 56.125C46.5098 56.635 45.8448 56.925 45.1498 56.925H19.7456C19.4106 56.925 19.1706 57.245 19.2656 57.565L27.6103 85.645H68.2641L77.7538 51.675C77.8438 51.355 77.6039 51.04 77.2739 51.04H52.7796C52.0846 51.04 51.4196 51.33 50.9446 51.84L50.9396 51.85Z\" fill=\"white\"/>%0D%0A<path d=\"M68.2592 85.9H27.6054C27.4954 85.9 27.3954 85.825 27.3654 85.72L19.0207 57.64C18.9507 57.41 18.9957 57.17 19.1407 56.98C19.2857 56.79 19.5007 56.68 19.7407 56.68H45.1449C45.7699 56.68 46.3699 56.415 46.7949 55.96L50.7547 51.685C51.2747 51.125 52.0097 50.805 52.7747 50.805H77.269C77.5039 50.805 77.7239 50.915 77.8689 51.1C78.0139 51.285 78.0589 51.525 77.9939 51.755L68.5042 85.725C68.4742 85.835 68.3742 85.91 68.2642 85.91L68.2592 85.9ZM27.7904 85.4H68.0692L77.5089 51.615C77.5289 51.54 77.514 51.46 77.469 51.395C77.419 51.33 77.3489 51.295 77.269 51.295H52.7747C52.1497 51.295 51.5497 51.56 51.1247 52.015L47.1648 56.29C46.6449 56.85 45.9099 57.17 45.1449 57.17H19.7407C19.6607 57.17 19.5907 57.205 19.5407 57.27C19.4957 57.335 19.4807 57.415 19.5007 57.49L27.7904 85.395V85.4Z\" fill=\"black\"/>%0D%0A<path d=\"M55.4401 74.565H51.4051C51.2651 74.565 51.1551 74.455 51.1551 74.315V72.025C51.1551 71.25 50.7251 70.55 50.0301 70.2C49.2801 69.825 48.4051 69.935 47.6251 70.515C47.2751 70.77 47.0701 71.205 47.0701 71.675V74.315C47.0701 74.455 46.9601 74.565 46.8201 74.565H42.7851C42.6451 74.565 42.5351 74.455 42.5351 74.315V66.15C42.5351 66.07 42.5701 66 42.6351 65.95L48.9601 61.12C49.0501 61.05 49.1751 61.05 49.2651 61.12L55.5901 65.95C55.6501 65.995 55.6901 66.07 55.6901 66.15V74.315C55.6901 74.455 55.5801 74.565 55.4401 74.565ZM51.6551 74.065H55.1901V66.275L49.1151 61.635L43.0401 66.275V74.065H46.5751V71.675C46.5751 71.045 46.8601 70.46 47.3351 70.11C48.2751 69.415 49.3401 69.285 50.2601 69.755C51.1201 70.19 51.6601 71.06 51.6601 72.025V74.065H51.6551ZM55.7551 75.755C55.7551 75.615 55.6451 75.505 55.5051 75.505H42.7251C42.5851 75.505 42.4751 75.615 42.4751 75.755C42.4751 75.895 42.5851 76.005 42.7251 76.005H55.5051C55.6451 76.005 55.7551 75.895 55.7551 75.755Z\" fill=\"black\"/>%0D%0A<path d=\"M73.3638 84.85V82.285C73.3638 81.99 73.1238 81.755 72.8288 81.755H59.4742C59.1792 81.76 58.9442 82 58.9442 82.295V84.86C58.9442 85.155 59.1842 85.39 59.4792 85.39H72.8338C73.1288 85.385 73.3638 85.145 73.3638 84.85ZM73.9738 84.735V82.42C73.9738 82.08 74.2887 81.825 74.6237 81.9L80.0286 83.15C80.5886 83.28 80.5736 84.08 80.0136 84.19L74.6087 85.26C74.2787 85.325 73.9738 85.075 73.9738 84.74V84.735ZM57.5942 85.39L40.0398 85.4C39.7448 85.4 39.5098 85.16 39.5098 84.87C39.5098 83.16 40.8947 81.77 42.6047 81.77L57.5942 81.76C57.8892 81.76 58.1242 82 58.1242 82.29V84.855C58.1242 85.15 57.8892 85.385 57.5942 85.385V85.39Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M43.0249 83.035C43.0249 81.5 44.2749 80.245 45.8099 80.245H55.8499V80.74H45.8099C44.5499 80.75 43.5249 81.775 43.5249 83.035H43.0249Z\" fill=\"black\"/>%0D%0A<path d=\"M80.0286 83.15L77.3286 82.525V84.72L80.0136 84.19C80.5736 84.08 80.5886 83.28 80.0286 83.15Z\" fill=\"black\"/>%0D%0A<path d=\"M6.90088 26.615C6.90088 26.615 15.1306 21.25 16.8156 19.39L21.6854 20.35C21.6854 20.35 26.8853 28.71 31.5851 30.19C31.5851 30.19 24.4804 35.25 20.4955 40.155C20.4955 40.155 9.35581 33.715 6.90088 26.61V26.615Z\" fill=\"white\"/>%0D%0A<path d=\"M20.4957 40.41C20.4507 40.41 20.4107 40.4 20.3707 40.375C20.3707 40.375 19.9757 40.15 19.3257 39.73C19.2107 39.655 19.1757 39.5 19.2507 39.385C19.3257 39.27 19.4807 39.235 19.5957 39.31C19.9757 39.555 20.2657 39.73 20.4407 39.835C20.6657 39.56 20.9057 39.285 21.1457 39.01C21.2357 38.905 21.3957 38.9 21.5007 38.99C21.6056 39.08 21.6156 39.24 21.5207 39.345C21.2307 39.67 20.9557 39.995 20.6907 40.32C20.6407 40.38 20.5707 40.41 20.4957 40.41ZM17.3758 38.38C17.3258 38.38 17.2758 38.365 17.2308 38.335C16.5358 37.845 15.8558 37.345 15.2058 36.84C15.0958 36.755 15.0758 36.6 15.1608 36.49C15.2458 36.38 15.4008 36.36 15.5108 36.445C16.1508 36.945 16.8258 37.44 17.5158 37.925C17.6308 38.005 17.6558 38.16 17.5758 38.275C17.5258 38.345 17.4508 38.38 17.3708 38.38H17.3758ZM23.0556 37.615C22.9906 37.615 22.9256 37.59 22.8806 37.54C22.7856 37.44 22.7856 37.285 22.8806 37.185C23.4406 36.625 24.0556 36.045 24.7056 35.455C24.8056 35.365 24.9655 35.37 25.0605 35.47C25.1555 35.57 25.1455 35.73 25.0455 35.825C24.4006 36.41 23.7956 36.985 23.2356 37.54C23.1856 37.59 23.1256 37.615 23.0606 37.615H23.0556ZM13.4259 35.305C13.3659 35.305 13.3109 35.285 13.2609 35.245C12.6059 34.68 11.9859 34.105 11.4109 33.535C11.311 33.44 11.311 33.28 11.4109 33.18C11.5059 33.08 11.6659 33.08 11.7659 33.18C12.3309 33.74 12.9459 34.305 13.5909 34.865C13.6959 34.955 13.7059 35.115 13.6159 35.22C13.5659 35.275 13.4959 35.305 13.4259 35.305ZM26.7555 34.245C26.6855 34.245 26.6155 34.215 26.5655 34.155C26.4755 34.05 26.4905 33.89 26.5955 33.8C27.2205 33.27 27.8705 32.735 28.5354 32.205C28.6404 32.12 28.8004 32.135 28.8854 32.245C28.9704 32.355 28.9554 32.51 28.8454 32.595C28.1855 33.12 27.5355 33.655 26.9155 34.18C26.8705 34.22 26.8105 34.24 26.7555 34.24V34.245ZM9.88599 31.775C9.816 31.775 9.746 31.745 9.696 31.685C9.12102 31.005 8.60603 30.325 8.17105 29.665C8.09605 29.55 8.12605 29.395 8.24104 29.32C8.35604 29.245 8.51103 29.275 8.58603 29.39C9.01102 30.035 9.51101 30.7 10.076 31.36C10.166 31.465 10.151 31.625 10.046 31.71C10.001 31.75 9.94099 31.77 9.88599 31.77V31.775ZM30.6704 31.12C30.5954 31.12 30.5204 31.085 30.4704 31.02C30.3854 30.91 30.4104 30.755 30.5204 30.67C30.7354 30.51 30.9154 30.375 31.0604 30.27C30.7854 30.16 30.5054 30.03 30.2204 29.875C30.1004 29.81 30.0554 29.655 30.1204 29.535C30.1854 29.415 30.3404 29.37 30.4604 29.435C30.8754 29.66 31.2804 29.835 31.6653 29.955C31.7553 29.985 31.8203 30.06 31.8353 30.155C31.8503 30.25 31.8103 30.345 31.7353 30.4C31.7353 30.4 31.3954 30.645 30.8204 31.075C30.7754 31.11 30.7204 31.125 30.6704 31.125V31.12ZM28.2905 28.475C28.2355 28.475 28.1755 28.455 28.1305 28.415C27.5355 27.915 26.9155 27.335 26.2905 26.68C26.1955 26.58 26.2005 26.42 26.3005 26.325C26.4005 26.23 26.5605 26.235 26.6555 26.335C27.2705 26.975 27.8755 27.545 28.4554 28.03C28.5604 28.12 28.5754 28.275 28.4854 28.38C28.4354 28.44 28.3654 28.47 28.2955 28.47L28.2905 28.475ZM7.18607 27.585C7.09108 27.585 6.99608 27.53 6.95608 27.435C6.85108 27.19 6.75609 26.945 6.67109 26.7C6.63109 26.59 6.67109 26.47 6.77109 26.41C6.77109 26.41 7.63606 25.845 8.86102 25.02C8.97602 24.945 9.13102 24.975 9.20601 25.09C9.28101 25.205 9.25101 25.36 9.13602 25.435C8.22604 26.05 7.51606 26.515 7.20607 26.72C7.27107 26.895 7.34107 27.07 7.41607 27.24C7.47107 27.365 7.41607 27.515 7.28607 27.57C7.25607 27.585 7.22107 27.59 7.18607 27.59V27.585ZM24.8106 24.885C24.7406 24.885 24.6656 24.855 24.6156 24.795C24.1006 24.175 23.5806 23.505 23.0706 22.805C22.9906 22.695 23.0106 22.535 23.1256 22.455C23.2356 22.375 23.3906 22.395 23.4756 22.51C23.9806 23.2 24.4956 23.86 25.0055 24.475C25.0955 24.58 25.0805 24.74 24.9705 24.825C24.9255 24.865 24.8656 24.88 24.8106 24.88V24.885ZM11.066 24.065C10.986 24.065 10.911 24.025 10.861 23.955C10.781 23.84 10.811 23.685 10.926 23.605C11.6009 23.14 12.2959 22.65 12.9709 22.165C13.0809 22.085 13.2409 22.11 13.3209 22.22C13.4009 22.33 13.3759 22.49 13.2659 22.57C12.5909 23.055 11.8909 23.55 11.216 24.015C11.171 24.045 11.121 24.06 11.076 24.06L11.066 24.065ZM15.1208 21.125C15.0458 21.125 14.9758 21.09 14.9258 21.03C14.8408 20.92 14.8608 20.765 14.9708 20.68C15.7708 20.055 16.3308 19.565 16.6358 19.23C16.6958 19.165 16.7858 19.135 16.8708 19.155L17.1158 19.205C17.2508 19.23 17.3408 19.365 17.3108 19.5C17.2808 19.635 17.1508 19.725 17.0158 19.695L16.9058 19.675C16.5658 20.025 16.0208 20.495 15.2758 21.08C15.2308 21.115 15.1758 21.135 15.1208 21.135V21.125ZM21.8456 20.85C21.7656 20.85 21.6856 20.81 21.6356 20.735L21.5357 20.58L19.4707 20.17C19.3357 20.145 19.2457 20.01 19.2757 19.875C19.3007 19.74 19.4357 19.65 19.5707 19.68L21.7406 20.11C21.8106 20.125 21.8656 20.165 21.9056 20.225L22.0606 20.465C22.1356 20.58 22.1006 20.735 21.9856 20.81C21.9456 20.835 21.8956 20.85 21.8506 20.85H21.8456ZM12.3159 29.575C12.2409 29.575 12.1659 29.54 12.1159 29.475C12.0309 29.365 12.0559 29.205 12.1659 29.125L13.3709 28.23C13.4809 28.15 13.6409 28.17 13.7209 28.28C13.8059 28.39 13.7809 28.55 13.6709 28.63L12.4659 29.525C12.4209 29.56 12.3709 29.575 12.3159 29.575ZM14.7259 27.785C14.6509 27.785 14.5759 27.75 14.5259 27.685C14.4409 27.575 14.4659 27.415 14.5759 27.335L15.7808 26.44C15.8908 26.36 16.0508 26.38 16.1308 26.49C16.2158 26.6 16.1908 26.76 16.0808 26.84L14.8758 27.735C14.8308 27.77 14.7809 27.785 14.7259 27.785ZM17.1358 25.995C17.0608 25.995 16.9858 25.96 16.9358 25.895C16.8508 25.785 16.8758 25.63 16.9858 25.545L18.1907 24.65C18.3007 24.57 18.4607 24.59 18.5407 24.7C18.6257 24.81 18.6007 24.965 18.4907 25.05L17.2858 25.945C17.2408 25.98 17.1908 25.995 17.1358 25.995ZM16.3558 33.41C16.2808 33.41 16.2108 33.38 16.1608 33.315C16.0758 33.21 16.0908 33.05 16.2008 32.965L17.3708 32.025C17.4758 31.94 17.6358 31.955 17.7208 32.065C17.8058 32.17 17.7908 32.33 17.6808 32.415L16.5108 33.355C16.4658 33.39 16.4108 33.41 16.3558 33.41ZM18.6907 31.53C18.6157 31.53 18.5457 31.5 18.4957 31.435C18.4107 31.33 18.4257 31.17 18.5357 31.085L19.7057 30.145C19.8107 30.06 19.9707 30.075 20.0557 30.185C20.1407 30.29 20.1257 30.45 20.0157 30.535L18.8457 31.475C18.8007 31.51 18.7457 31.53 18.6907 31.53ZM21.0257 29.65C20.9507 29.65 20.8807 29.62 20.8307 29.555C20.7457 29.45 20.7607 29.29 20.8707 29.205L21.2157 28.925C21.3207 28.84 21.4807 28.855 21.5656 28.965C21.6506 29.07 21.6356 29.23 21.5257 29.315L21.1807 29.595C21.1357 29.63 21.0807 29.65 21.0257 29.65Z\" fill=\"black\"/>%0D%0A<path d=\"M21.7308 20.11L16.8608 19.15C16.7558 19.13 16.6508 19.175 16.5958 19.27C16.5408 19.36 16.5508 19.48 16.6208 19.56L18.6458 21.91C18.6908 21.96 18.7508 21.99 18.8208 21.995C18.8258 21.995 18.8308 21.995 18.8358 21.995C18.8958 21.995 18.9558 21.975 19.0008 21.93C19.0108 21.925 19.8208 21.21 21.7558 20.595C21.8658 20.56 21.9358 20.455 21.9308 20.345C21.9258 20.23 21.8408 20.135 21.7308 20.115V20.11Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M56.2847 35.76C56.2847 35.76 67.4593 20.42 68.4443 12.83C68.4443 12.83 83.0589 23.72 87.9637 24.295C87.9637 24.295 75.4441 41.105 70.7092 49.35C70.7092 49.35 66.6044 41.54 56.2847 35.76Z\" fill=\"white\"/>%0D%0A<path d=\"M70.2791 48.865C70.1941 48.865 70.1141 48.825 70.0691 48.745C69.7891 48.3 69.3191 47.585 68.6591 46.705C68.5741 46.595 68.5991 46.44 68.7091 46.355C68.8191 46.275 68.9741 46.295 69.0591 46.405C69.7341 47.295 70.2141 48.025 70.4941 48.48C70.5691 48.595 70.5291 48.75 70.4141 48.825C70.3741 48.85 70.3291 48.865 70.2841 48.865H70.2791ZM71.554 48.17C71.509 48.17 71.464 48.16 71.424 48.135C71.304 48.065 71.269 47.91 71.339 47.79C71.749 47.115 72.194 46.405 72.669 45.66C72.744 45.545 72.899 45.51 73.014 45.585C73.129 45.66 73.164 45.815 73.089 45.93C72.619 46.67 72.174 47.38 71.769 48.05C71.724 48.125 71.639 48.17 71.554 48.17ZM67.2792 44.865C67.2092 44.865 67.1392 44.835 67.0892 44.78C66.5542 44.165 65.9842 43.555 65.3942 42.96C65.2942 42.86 65.2992 42.705 65.3942 42.605C65.4942 42.505 65.6492 42.51 65.7492 42.605C66.3442 43.205 66.9192 43.825 67.4641 44.445C67.5541 44.55 67.5441 44.705 67.4391 44.8C67.3942 44.84 67.3342 44.86 67.2742 44.86L67.2792 44.865ZM74.2389 43.945C74.1939 43.945 74.1439 43.93 74.0989 43.905C73.984 43.83 73.954 43.675 74.029 43.56C74.4789 42.88 74.9439 42.18 75.4189 41.475C75.4989 41.36 75.6539 41.33 75.7639 41.41C75.8789 41.485 75.9089 41.64 75.8289 41.755C75.3539 42.46 74.8889 43.155 74.4389 43.835C74.3889 43.91 74.3089 43.945 74.229 43.945H74.2389ZM63.7593 41.32C63.6993 41.32 63.6393 41.3 63.5943 41.255C62.9793 40.71 62.3393 40.17 61.6893 39.66C61.5793 39.575 61.5643 39.415 61.6493 39.31C61.7343 39.2 61.8943 39.185 61.9993 39.27C62.6543 39.79 63.3043 40.33 63.9293 40.885C64.0342 40.975 64.0392 41.135 63.9493 41.24C63.8993 41.295 63.8293 41.325 63.7643 41.325L63.7593 41.32ZM77.0439 39.795C76.9939 39.795 76.9439 39.78 76.9039 39.75C76.7889 39.67 76.7589 39.515 76.8389 39.4C77.3089 38.71 77.7888 38.025 78.2638 37.34C78.3438 37.225 78.4988 37.2 78.6138 37.28C78.7288 37.36 78.7538 37.515 78.6738 37.63C78.1988 38.315 77.7188 39 77.2489 39.69C77.1989 39.76 77.1239 39.8 77.0439 39.8V39.795ZM59.8344 38.23C59.7844 38.23 59.7344 38.215 59.6894 38.185C59.0094 37.71 58.3094 37.255 57.6094 36.83C57.4894 36.76 57.4544 36.605 57.5244 36.485C57.5944 36.365 57.7494 36.33 57.8694 36.4C58.5794 36.835 59.2844 37.295 59.9744 37.775C60.0894 37.855 60.1144 38.01 60.0344 38.125C59.9844 38.195 59.9094 38.23 59.8294 38.23H59.8344ZM56.2845 36.01C56.2345 36.01 56.1795 35.995 56.1395 35.96C56.0295 35.88 56.0045 35.72 56.0845 35.61C56.0845 35.61 56.6445 34.84 57.5244 33.56C57.6044 33.445 57.7594 33.415 57.8744 33.495C57.9894 33.575 58.0194 33.73 57.9394 33.845C57.0545 35.13 56.4895 35.905 56.4895 35.905C56.4395 35.97 56.3645 36.01 56.2895 36.01H56.2845ZM79.9038 35.685C79.8538 35.685 79.8038 35.67 79.7588 35.64C79.6438 35.56 79.6188 35.405 79.6988 35.29C80.1888 34.595 80.6738 33.91 81.1487 33.245C81.2287 33.135 81.3837 33.105 81.4987 33.185C81.6087 33.265 81.6387 33.42 81.5587 33.535C81.0837 34.2 80.5988 34.885 80.1138 35.575C80.0638 35.645 79.9888 35.68 79.9088 35.68L79.9038 35.685ZM59.1344 31.875C59.0844 31.875 59.0394 31.86 58.9944 31.835C58.8794 31.76 58.8494 31.605 58.9244 31.49C59.3544 30.845 59.8144 30.14 60.2894 29.395C60.3644 29.28 60.5193 29.245 60.6343 29.32C60.7493 29.395 60.7843 29.55 60.7093 29.665C60.2294 30.415 59.7694 31.12 59.3394 31.765C59.2894 31.84 59.2094 31.875 59.1294 31.875H59.1344ZM82.8087 31.605C82.7587 31.605 82.7087 31.59 82.6637 31.56C82.5537 31.48 82.5237 31.325 82.6087 31.21C83.1237 30.495 83.6137 29.815 84.0737 29.18C84.1537 29.065 84.3137 29.045 84.4236 29.125C84.5336 29.205 84.5586 29.36 84.4786 29.475C84.0187 30.11 83.5237 30.79 83.0137 31.505C82.9637 31.575 82.8887 31.61 82.8087 31.61V31.605ZM61.8293 27.655C61.7843 27.655 61.7393 27.645 61.6993 27.62C61.5793 27.55 61.5443 27.395 61.6143 27.275C62.0393 26.58 62.4743 25.86 62.8993 25.13C62.9693 25.01 63.1243 24.97 63.2393 25.04C63.3593 25.11 63.3993 25.265 63.3293 25.38C62.8993 26.115 62.4693 26.835 62.0393 27.535C61.9943 27.61 61.9093 27.655 61.8243 27.655H61.8293ZM85.7486 27.55C85.6986 27.55 85.6436 27.535 85.6036 27.5C85.4936 27.42 85.4686 27.26 85.5486 27.15C86.1536 26.325 86.6586 25.635 87.0336 25.13C87.1186 25.02 87.2736 24.995 87.3836 25.075C87.4936 25.155 87.5186 25.315 87.4386 25.425C87.0636 25.935 86.5586 26.62 85.9536 27.445C85.9036 27.51 85.8286 27.55 85.7536 27.55H85.7486ZM86.7136 24.25C86.6886 24.25 86.6636 24.25 86.6386 24.24C85.9736 24.025 85.1786 23.7 84.2887 23.275C84.1637 23.215 84.1137 23.065 84.1687 22.94C84.2236 22.815 84.3786 22.765 84.5036 22.82C85.3736 23.235 86.1436 23.55 86.7886 23.76C86.9186 23.8 86.9936 23.945 86.9486 24.075C86.9136 24.18 86.8186 24.25 86.7086 24.25H86.7136ZM64.3492 23.325C64.3092 23.325 64.2692 23.315 64.2292 23.295C64.1092 23.23 64.0642 23.075 64.1292 22.955C64.5492 22.19 64.9392 21.445 65.2892 20.745C65.3492 20.62 65.4992 20.57 65.6242 20.635C65.7492 20.695 65.7992 20.845 65.7342 20.97C65.3792 21.675 64.9842 22.425 64.5642 23.195C64.5192 23.28 64.4342 23.325 64.3442 23.325H64.3492ZM82.1737 22.145C82.1337 22.145 82.0887 22.135 82.0537 22.115C81.3737 21.74 80.6438 21.315 79.8788 20.855C79.7588 20.785 79.7238 20.63 79.7938 20.51C79.8638 20.39 80.0188 20.355 80.1388 20.425C80.8987 20.88 81.6237 21.3 82.2987 21.675C82.4187 21.74 82.4637 21.895 82.3987 22.015C82.3537 22.1 82.2687 22.145 82.1787 22.145H82.1737ZM77.8788 19.575C77.8338 19.575 77.7888 19.56 77.7438 19.535C77.0289 19.08 76.3239 18.625 75.6389 18.17C75.5239 18.095 75.4939 17.94 75.5689 17.825C75.6439 17.71 75.7989 17.68 75.9139 17.755C76.5989 18.205 77.2989 18.665 78.0088 19.115C78.1238 19.19 78.1588 19.345 78.0838 19.46C78.0388 19.535 77.9538 19.575 77.8738 19.575H77.8788ZM66.5892 18.85C66.5542 18.85 66.5192 18.845 66.4892 18.83C66.3642 18.775 66.3042 18.625 66.3642 18.5C66.7242 17.685 67.0392 16.91 67.2992 16.2C67.3442 16.07 67.4891 16.005 67.6191 16.05C67.7491 16.095 67.8141 16.24 67.7691 16.37C67.5091 17.095 67.1892 17.88 66.8192 18.705C66.7792 18.8 66.6842 18.855 66.5892 18.855V18.85ZM73.699 16.81C73.649 16.81 73.599 16.795 73.559 16.765C72.819 16.26 72.124 15.775 71.499 15.335C71.384 15.255 71.359 15.1 71.439 14.985C71.519 14.87 71.674 14.845 71.789 14.925C72.414 15.365 73.104 15.845 73.844 16.355C73.959 16.435 73.989 16.59 73.909 16.7C73.859 16.77 73.784 16.81 73.704 16.81H73.699ZM68.2491 14.135C68.2491 14.135 68.2141 14.135 68.1941 14.13C68.0591 14.1 67.9741 13.965 68.0041 13.83C68.0841 13.47 68.1491 13.12 68.1891 12.795C68.1991 12.705 68.2591 12.63 68.3391 12.595C68.4191 12.56 68.5141 12.57 68.5841 12.625C68.5841 12.625 69.0091 12.945 69.7391 13.47C69.8491 13.55 69.8741 13.705 69.7941 13.82C69.7141 13.93 69.5591 13.955 69.4441 13.875C69.0941 13.62 68.8141 13.415 68.6191 13.27C68.5841 13.485 68.5391 13.71 68.4891 13.935C68.4641 14.05 68.3591 14.13 68.2441 14.13L68.2491 14.135ZM78.7638 28.24C78.7138 28.24 78.6588 28.225 78.6138 28.19C78.3988 28.03 77.9788 27.755 77.3739 27.365C77.2589 27.29 77.2239 27.135 77.2989 27.02C77.3739 26.905 77.5288 26.87 77.6438 26.945C78.2588 27.34 78.6888 27.625 78.9138 27.79C79.0238 27.87 79.0488 28.03 78.9688 28.14C78.9188 28.205 78.8438 28.24 78.7688 28.24H78.7638ZM76.2389 26.605C76.1939 26.605 76.1489 26.595 76.1089 26.565C75.7039 26.31 75.2689 26.045 74.8339 25.775C74.7189 25.705 74.6789 25.55 74.7539 25.43C74.8289 25.31 74.9789 25.28 75.0989 25.35C75.5389 25.62 75.9689 25.89 76.3789 26.145C76.4939 26.22 76.5339 26.37 76.4589 26.49C76.4139 26.565 76.3289 26.61 76.2489 26.61L76.2389 26.605ZM73.679 25.025C73.634 25.025 73.589 25.015 73.549 24.99L72.264 24.205C72.144 24.135 72.109 23.98 72.179 23.86C72.249 23.74 72.404 23.705 72.524 23.775L73.809 24.56C73.929 24.63 73.964 24.785 73.894 24.905C73.849 24.98 73.764 25.025 73.679 25.025ZM71.109 23.46C71.064 23.46 71.019 23.45 70.979 23.425L69.6891 22.645C69.5691 22.575 69.5341 22.42 69.6041 22.3C69.6741 22.18 69.8291 22.145 69.9491 22.215L71.239 22.995C71.359 23.065 71.394 23.22 71.324 23.34C71.279 23.415 71.194 23.46 71.109 23.46ZM70.974 29.76C70.929 29.76 70.884 29.75 70.844 29.72L69.5741 28.925C69.4591 28.85 69.4191 28.695 69.4941 28.58C69.5691 28.46 69.7241 28.43 69.8391 28.5L71.109 29.295C71.224 29.37 71.264 29.525 71.189 29.64C71.144 29.715 71.059 29.76 70.979 29.76H70.974ZM68.4291 28.17C68.3841 28.17 68.3391 28.16 68.2991 28.13L67.0292 27.335C66.9142 27.26 66.8742 27.105 66.9492 26.99C67.0242 26.875 67.1792 26.84 67.2941 26.91L68.5641 27.705C68.6791 27.78 68.7191 27.935 68.6441 28.05C68.5991 28.125 68.5141 28.17 68.4341 28.17H68.4291ZM72.099 38.565C72.029 38.565 71.954 38.535 71.909 38.475C71.649 38.16 71.304 37.805 70.889 37.42C70.789 37.325 70.784 37.17 70.874 37.065C70.964 36.96 71.124 36.96 71.229 37.05C71.664 37.45 72.019 37.82 72.294 38.155C72.384 38.26 72.369 38.42 72.259 38.505C72.214 38.545 72.154 38.565 72.099 38.565ZM69.9191 36.505C69.8641 36.505 69.8091 36.485 69.7591 36.45C69.3841 36.14 68.9891 35.83 68.5841 35.525C68.4741 35.44 68.4541 35.285 68.5391 35.175C68.6241 35.065 68.7791 35.045 68.8891 35.13C69.2941 35.44 69.6941 35.755 70.0791 36.065C70.1841 36.15 70.1991 36.31 70.1141 36.415C70.0641 36.475 69.9941 36.505 69.9191 36.505ZM67.5341 34.68C67.4841 34.68 67.4341 34.665 67.3891 34.635C66.9692 34.33 66.5542 34.04 66.1642 33.77C66.0492 33.69 66.0242 33.535 66.0992 33.42C66.1792 33.305 66.3342 33.275 66.4492 33.355C66.8392 33.625 67.2542 33.92 67.6791 34.225C67.7891 34.305 67.8191 34.46 67.7341 34.575C67.6841 34.645 67.6091 34.68 67.5291 34.68H67.5341ZM65.0642 32.97C65.0142 32.97 64.9692 32.955 64.9242 32.93C64.1642 32.425 63.6693 32.11 63.6693 32.11C63.5543 32.035 63.5193 31.88 63.5893 31.765C63.6643 31.65 63.8193 31.615 63.9343 31.685C63.9343 31.685 64.4342 32 65.2042 32.51C65.3192 32.585 65.3492 32.74 65.2742 32.855C65.2242 32.925 65.1492 32.965 65.0642 32.965V32.97Z\" fill=\"black\"/>%0D%0A<path d=\"M51.3748 32.205C51.3448 32.205 51.3198 32.205 51.2898 32.19C51.0298 32.095 50.5348 31.68 50.0548 31.155C49.9598 31.055 49.9698 30.895 50.0698 30.8C50.1698 30.705 50.3298 30.715 50.4248 30.815C50.9648 31.405 51.3648 31.68 51.4648 31.72C51.5948 31.765 51.6598 31.91 51.6148 32.04C51.5798 32.14 51.4798 32.205 51.3798 32.205H51.3748ZM49.3198 30.05C49.2398 30.05 49.1598 30.01 49.1098 29.935C48.8198 29.485 48.5798 29.02 48.3948 28.56C48.3448 28.43 48.4048 28.285 48.5348 28.235C48.6648 28.185 48.8098 28.245 48.8598 28.375C49.0298 28.805 49.2548 29.235 49.5298 29.66C49.6048 29.775 49.5698 29.93 49.4548 30.005C49.4148 30.03 49.3648 30.045 49.3198 30.045V30.05ZM48.2498 27.275C48.1248 27.275 48.0198 27.18 47.9998 27.055C47.9748 26.855 47.9648 26.65 47.9648 26.45C47.9648 26.125 47.9998 25.8 48.0648 25.48C48.0948 25.345 48.2248 25.26 48.3598 25.285C48.4948 25.315 48.5798 25.445 48.5548 25.58C48.4948 25.865 48.4648 26.155 48.4648 26.45C48.4648 26.63 48.4748 26.815 48.4948 26.995C48.5098 27.13 48.4148 27.255 48.2748 27.275C48.2648 27.275 48.2548 27.275 48.2448 27.275H48.2498ZM48.8398 24.385C48.7998 24.385 48.7548 24.375 48.7148 24.35C48.5948 24.28 48.5548 24.13 48.6198 24.01C48.7398 23.795 48.8798 23.585 49.0348 23.38C49.1998 23.16 49.3698 22.955 49.5348 22.76C49.6248 22.655 49.7848 22.645 49.8898 22.735C49.9948 22.825 50.0048 22.985 49.9148 23.09C49.7548 23.275 49.5948 23.47 49.4348 23.68C49.2948 23.87 49.1648 24.06 49.0548 24.255C49.0098 24.335 48.9248 24.38 48.8398 24.38V24.385ZM55.0298 23.64C54.8898 23.64 54.7798 23.53 54.7798 23.39C54.7798 23.25 54.8898 23.14 55.0298 23.14C55.3848 23.14 55.5948 22.94 55.5948 22.61C55.5948 22.555 55.5898 22.495 55.5748 22.43C55.5498 22.295 55.6398 22.165 55.7748 22.14C55.9048 22.115 56.0398 22.205 56.0648 22.34C56.0848 22.435 56.0898 22.525 56.0898 22.61C56.0898 23.22 55.6548 23.64 55.0298 23.64ZM53.7348 22.97C53.6648 22.97 53.5998 22.94 53.5498 22.885C53.3248 22.635 53.1348 22.33 52.9798 21.985C52.9098 21.83 52.8498 21.66 52.7948 21.48C52.7548 21.35 52.8298 21.21 52.9598 21.17C53.0948 21.13 53.2298 21.205 53.2698 21.335C53.3198 21.495 53.3748 21.645 53.4348 21.785C53.5648 22.08 53.7298 22.34 53.9198 22.55C54.0098 22.655 54.0048 22.81 53.8998 22.905C53.8498 22.95 53.7948 22.97 53.7348 22.97ZM50.8048 22.14C50.7298 22.14 50.6598 22.11 50.6098 22.045C50.5248 21.935 50.5398 21.78 50.6498 21.695C51.0848 21.35 51.5348 21.075 51.9848 20.885C52.1098 20.83 52.2598 20.885 52.3148 21.015C52.3698 21.14 52.3098 21.29 52.1848 21.345C51.7748 21.52 51.3648 21.77 50.9648 22.085C50.9198 22.12 50.8648 22.14 50.8098 22.14H50.8048ZM54.9648 21.45C54.9198 21.45 54.8698 21.435 54.8298 21.41C54.4648 21.18 54.0198 21.055 53.5348 21.05C53.3948 21.05 53.2848 20.935 53.2848 20.8C53.2848 20.66 53.3948 20.55 53.5348 20.55C54.1098 20.55 54.6498 20.705 55.0948 20.99C55.2098 21.065 55.2448 21.22 55.1698 21.335C55.1198 21.41 55.0398 21.45 54.9598 21.45H54.9648ZM52.8098 20.17C52.6698 20.17 52.5598 20.065 52.5598 19.925V19.91C52.5598 19.375 52.6398 18.855 52.7948 18.37C52.8348 18.24 52.9798 18.165 53.1098 18.205C53.2398 18.245 53.3148 18.39 53.2748 18.52C53.1348 18.96 53.0648 19.425 53.0648 19.91C53.0648 20.05 52.9548 20.165 52.8148 20.165L52.8098 20.17ZM53.7248 17.38C53.6698 17.38 53.6148 17.365 53.5698 17.325C53.4598 17.24 53.4398 17.085 53.5248 16.975C53.8398 16.57 54.2348 16.215 54.6898 15.915C54.8048 15.84 54.9598 15.87 55.0348 15.99C55.1098 16.105 55.0748 16.26 54.9598 16.335C54.5498 16.6 54.1998 16.92 53.9198 17.285C53.8698 17.35 53.7948 17.38 53.7248 17.38ZM56.1798 15.735C56.0748 15.735 55.9798 15.67 55.9448 15.565C55.8998 15.435 55.9698 15.295 56.1048 15.25C56.5648 15.1 57.0698 14.98 57.6048 14.905C57.7348 14.885 57.8698 14.98 57.8898 15.115C57.9098 15.25 57.8148 15.38 57.6798 15.4C57.1698 15.475 56.6948 15.585 56.2648 15.725C56.2398 15.735 56.2098 15.74 56.1848 15.74L56.1798 15.735Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M55.7846 11.56C55.7496 11.56 55.7146 11.555 55.6796 11.535C55.5546 11.475 55.4996 11.33 55.5546 11.205C56.9596 8.145 59.4396 9.105 59.4646 9.115C59.5946 9.165 59.6546 9.31 59.6046 9.44C59.5546 9.565 59.4096 9.63 59.2796 9.58C59.1946 9.545 57.2096 8.795 56.0096 11.415C55.9696 11.505 55.8796 11.56 55.7846 11.56ZM55.2246 9.215C56.2246 7.4 57.6146 7.72 57.6746 7.73C57.8096 7.76 57.9446 7.68 57.9796 7.55C58.0146 7.415 57.9346 7.28 57.7996 7.245C57.7796 7.245 55.9796 6.81 54.7896 8.97C54.7246 9.09 54.7646 9.245 54.8896 9.31C54.9296 9.33 54.9696 9.34 55.0096 9.34C55.0996 9.34 55.1846 9.295 55.2296 9.21L55.2246 9.215Z\" fill=\"black\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198Z\" fill=\"white\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198ZM61.2898 12.54C61.2898 12.54 61.3547 12.49 61.3897 12.455C61.4947 12.355 61.4947 12.335 61.4247 12.215C61.4047 12.18 61.3797 12.15 61.3547 12.12C60.9847 11.715 60.5198 11.47 59.9898 11.34C59.8348 11.3 59.6798 11.29 59.5198 11.325C59.3998 11.35 59.3047 11.405 59.2447 11.515C59.0797 11.825 59.1597 12.255 59.4247 12.485C59.9247 12.925 60.7148 12.955 61.2898 12.54ZM61.7898 13.24C61.2898 13.62 61.0797 14.285 61.2647 14.9C61.3797 15.28 61.6847 15.505 62.0847 15.5C62.2697 15.5 62.3947 15.42 62.4747 15.255C62.5397 15.12 62.5698 14.975 62.5798 14.83C62.6098 14.365 62.5297 13.92 62.3347 13.5C62.2797 13.385 62.1998 13.28 62.1248 13.175C62.0848 13.12 62.0298 13.11 61.9698 13.145C61.9098 13.18 61.8498 13.215 61.7898 13.25V13.24ZM60.6648 14.885C60.0398 14.455 59.5998 13.895 59.3598 13.175C59.1298 13.515 59.1798 14.085 59.4698 14.46C59.7498 14.825 60.2898 15.015 60.6648 14.88V14.885ZM60.9197 14.09C60.9197 14.09 60.9298 14.07 60.9298 14.065C60.9948 13.775 61.1248 13.515 61.3098 13.285C61.3198 13.27 61.3248 13.23 61.3098 13.215C61.2648 13.145 61.2148 13.08 61.1648 13.015C61.1398 12.98 61.1097 12.975 61.0697 12.99C60.8047 13.1 60.5248 13.145 60.2398 13.125C60.2248 13.125 60.2098 13.125 60.1848 13.125C60.3498 13.51 60.5948 13.825 60.9148 14.085L60.9197 14.09Z\" fill=\"black\"/>%0D%0A<path d=\"M62.0797 15.86C61.6847 15.86 61.2097 15.68 60.9847 15.17C60.9397 15.19 60.8997 15.205 60.8547 15.22C60.3197 15.375 59.8297 15.265 59.3947 14.9C59.3597 14.87 59.3447 14.865 59.3047 14.875C59.1997 14.905 59.1147 14.92 59.0397 14.93C58.9897 14.935 58.9247 14.92 58.8847 14.885C58.8597 14.865 58.8047 14.805 58.8697 14.695C58.8847 14.665 58.9047 14.635 58.9197 14.605C58.9447 14.555 58.9747 14.5 59.0047 14.455C59.0197 14.43 59.0197 14.415 59.0047 14.38C58.7947 13.915 58.8047 13.455 59.0347 13.015C59.0697 12.945 59.1197 12.88 59.1597 12.82C59.1697 12.805 59.1797 12.79 59.1947 12.77L59.1597 12.74C58.7247 12.345 58.7247 11.75 58.9097 11.37C59.0197 11.14 59.2197 11 59.5047 10.96C59.8347 10.915 60.1397 10.995 60.3697 11.075C60.6547 11.175 60.9347 11.32 61.2047 11.51C61.3647 11.35 61.5447 11.255 61.7597 11.22C62.0197 11.175 62.2797 11.23 62.5347 11.365C62.5447 11.365 62.5497 11.37 62.5497 11.37C62.5497 11.37 62.5497 11.37 62.5597 11.36C62.8697 10.995 62.9547 10.59 62.8147 10.12C62.7797 9.99999 62.8147 9.89999 62.8997 9.84999C62.9597 9.81499 63.0247 9.80999 63.0797 9.83499C63.1397 9.85999 63.1897 9.90999 63.2147 9.98499C63.3597 10.43 63.3347 10.855 63.1397 11.255C63.0897 11.36 63.0247 11.455 62.9597 11.545C62.9397 11.575 62.9197 11.605 62.8997 11.64L63.1447 11.97L63.1697 11.96C63.2197 11.94 63.2747 11.915 63.3297 11.9C63.8497 11.74 64.3447 11.815 64.8097 12.13C64.8697 12.17 64.9097 12.225 64.9197 12.285C64.9297 12.34 64.9197 12.395 64.8847 12.44C64.8147 12.54 64.6897 12.56 64.5697 12.48C64.1647 12.21 63.7497 12.17 63.3047 12.365C63.2947 12.365 63.2947 12.37 63.2997 12.385C63.3697 12.735 63.3197 13.035 63.1397 13.3C63.0547 13.425 62.9347 13.53 62.7897 13.61H62.7797C62.7847 13.64 62.7947 13.67 62.7997 13.695C62.8247 13.785 62.8497 13.875 62.8697 13.965C62.9597 14.365 62.9747 14.72 62.9197 15.055C62.8747 15.31 62.7897 15.5 62.6497 15.645C62.5197 15.785 62.3447 15.86 62.1397 15.87C62.1197 15.87 62.0997 15.87 62.0797 15.87V15.86ZM61.0447 15.015L61.0697 15.06C61.0697 15.06 61.0847 15.09 61.0897 15.1C61.2997 15.595 61.7647 15.755 62.1347 15.735C62.3097 15.725 62.4497 15.665 62.5597 15.55C62.6797 15.42 62.7547 15.255 62.7947 15.02C62.8497 14.705 62.8347 14.365 62.7447 13.98C62.7247 13.895 62.6997 13.805 62.6747 13.72C62.6647 13.68 62.6497 13.635 62.6397 13.59L62.6247 13.545L62.7197 13.49C62.8497 13.42 62.9497 13.335 63.0247 13.22C63.1847 12.985 63.2297 12.715 63.1647 12.4C63.1547 12.345 63.1547 12.28 63.2447 12.24C63.7247 12.03 64.1897 12.07 64.6297 12.365C64.6897 12.405 64.7397 12.405 64.7697 12.355C64.7847 12.335 64.7897 12.315 64.7847 12.295C64.7847 12.27 64.7597 12.24 64.7297 12.22C64.2997 11.93 63.8397 11.86 63.3597 12.005C63.3097 12.02 63.2597 12.04 63.2097 12.06L63.0947 12.105L62.7397 11.63L62.7647 11.595C62.7947 11.55 62.8247 11.505 62.8497 11.465C62.9147 11.37 62.9747 11.28 63.0197 11.185C63.1997 10.82 63.2247 10.425 63.0897 10.01C63.0797 9.97499 63.0597 9.94999 63.0297 9.93999C63.0047 9.92999 62.9797 9.93499 62.9547 9.94999C62.9397 9.95999 62.8947 9.98499 62.9247 10.075C63.0747 10.58 62.9847 11.035 62.6497 11.43C62.5947 11.49 62.5397 11.5 62.4697 11.46C62.2397 11.335 62.0097 11.29 61.7747 11.325C61.5747 11.355 61.4047 11.455 61.2547 11.615L61.2197 11.655L61.1547 11.61C61.1547 11.61 61.1347 11.595 61.1247 11.59C60.8647 11.41 60.5947 11.27 60.3197 11.175C60.1047 11.1 59.8197 11.02 59.5147 11.065C59.2747 11.1 59.1097 11.21 59.0147 11.405C58.8497 11.745 58.8497 12.275 59.2347 12.63L59.3447 12.735L59.3147 12.78C59.2947 12.815 59.2697 12.845 59.2497 12.875C59.2047 12.935 59.1647 12.995 59.1297 13.06C58.9197 13.465 58.9097 13.89 59.1047 14.315C59.1247 14.365 59.1447 14.43 59.0947 14.505C59.0647 14.55 59.0397 14.6 59.0147 14.65C58.9997 14.68 58.9797 14.715 58.9647 14.745C58.9497 14.77 58.9547 14.78 58.9547 14.78C58.9697 14.79 58.9947 14.8 59.0097 14.795C59.0847 14.785 59.1597 14.77 59.2597 14.74C59.3347 14.72 59.3947 14.735 59.4597 14.79C59.8597 15.13 60.3097 15.23 60.7997 15.085C60.8397 15.075 60.8797 15.06 60.9197 15.04L61.0297 15L61.0447 15.015ZM62.0847 15.56C61.6597 15.56 61.3297 15.32 61.2097 14.915C61.0197 14.28 61.2397 13.585 61.7547 13.19H61.7597L61.9397 13.085C62.0297 13.03 62.1197 13.055 62.1747 13.135C62.1897 13.16 62.2097 13.185 62.2297 13.21C62.2897 13.29 62.3497 13.375 62.3897 13.47C62.5897 13.9 62.6697 14.36 62.6397 14.83C62.6297 15 62.5947 15.145 62.5297 15.28C62.4397 15.465 62.2897 15.56 62.0847 15.56ZM61.8297 13.29C61.3547 13.655 61.1547 14.295 61.3297 14.875C61.4347 15.23 61.7097 15.435 62.0847 15.435C62.2447 15.435 62.3497 15.37 62.4197 15.225C62.4747 15.105 62.5097 14.975 62.5197 14.82C62.5497 14.365 62.4697 13.93 62.2797 13.52C62.2397 13.435 62.1847 13.36 62.1297 13.28C62.1097 13.255 62.0947 13.23 62.0747 13.2C62.0597 13.175 62.0397 13.165 62.0047 13.185L61.8297 13.285V13.29ZM60.4097 14.99C60.0547 14.99 59.6597 14.8 59.4297 14.5C59.1197 14.1 59.0697 13.505 59.3147 13.14L59.3847 13.035L59.4247 13.155C59.6597 13.855 60.0797 14.405 60.7047 14.83L60.8047 14.9L60.6897 14.94C60.5997 14.97 60.5047 14.985 60.4047 14.985L60.4097 14.99ZM59.3547 13.33C59.2147 13.65 59.2797 14.105 59.5247 14.425C59.7597 14.725 60.1897 14.905 60.5247 14.86C59.9847 14.46 59.5897 13.945 59.3547 13.33ZM60.9547 14.175L60.8897 14.14C60.5547 13.87 60.3097 13.545 60.1397 13.155L60.0997 13.07H60.1947C60.2297 13.07 60.2397 13.07 60.2597 13.07C60.5347 13.09 60.8047 13.045 61.0597 12.94C61.1297 12.91 61.1897 12.925 61.2297 12.985L61.2647 13.035C61.3047 13.085 61.3397 13.135 61.3747 13.19C61.3997 13.23 61.3947 13.295 61.3697 13.335C61.1897 13.56 61.0647 13.815 61.0047 14.09L60.9947 14.12L60.9597 14.185L60.9547 14.175ZM60.2947 13.195C60.4397 13.5 60.6397 13.755 60.8947 13.98C60.9647 13.715 61.0897 13.465 61.2697 13.245C61.2347 13.2 61.1997 13.15 61.1647 13.1L61.1297 13.05C61.1297 13.05 61.1197 13.045 61.1047 13.05C60.8447 13.16 60.5697 13.205 60.2947 13.195ZM60.3797 12.895C60.0197 12.895 59.6597 12.77 59.3847 12.53C59.0997 12.28 59.0147 11.82 59.1947 11.485C59.2547 11.365 59.3647 11.29 59.5097 11.26C59.6647 11.225 59.8297 11.235 60.0047 11.275C60.5697 11.415 61.0397 11.68 61.3997 12.07C61.4297 12.1 61.4547 12.135 61.4797 12.175C61.5697 12.325 61.5597 12.375 61.4347 12.495C61.4097 12.52 61.3797 12.545 61.3597 12.56L61.3297 12.585C61.0447 12.79 60.7097 12.89 60.3797 12.89V12.895ZM59.7147 11.365C59.6547 11.365 59.5947 11.37 59.5347 11.385C59.4247 11.41 59.3497 11.46 59.3047 11.545C59.1547 11.835 59.2247 12.225 59.4697 12.44C59.9547 12.865 60.7047 12.89 61.2597 12.495L61.2847 12.475C61.2847 12.475 61.3297 12.435 61.3547 12.415C61.4047 12.365 61.4114 12.31 61.3747 12.25C61.3547 12.22 61.3347 12.19 61.3097 12.165C60.9597 11.785 60.5247 11.54 59.9747 11.405C59.8797 11.385 59.7947 11.37 59.7097 11.37L59.7147 11.365Z\" fill=\"black\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.9091 17.015L86.109 18.425C86.5391 18.615 86.7041 19.135 86.4691 19.54L81.544 28.025C81.349 28.365 80.929 28.505 80.569 28.36L78.759 27.62C78.364 27.46 78.169 27.01 78.324 26.61L81.854 17.45C82.014 17.03 82.494 16.835 82.904 17.015H82.9091ZM79.219 28.62C78.299 28.245 77.249 28.685 76.874 29.605C76.499 30.525 76.939 31.575 77.859 31.95C78.779 32.325 79.829 31.885 80.204 30.965C80.579 30.045 80.139 28.995 79.219 28.62Z\" fill=\"%23F82C13\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "directive", type: i3.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i3.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i4.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i6.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i6.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i6.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i7.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: SdLabel, selector: "sd-label", inputs: ["label", "description", "required", "helperText"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
509
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: SdSelect, isStandalone: true, selector: "sd-select", inputs: { _autoId: ["autoId", "_autoId"], name: "name", appearance: "appearance", _hideInlineError: ["hideInlineError", "_hideInlineError"], size: "size", form: "form", _label: ["label", "_label"], _helperText: ["helperText", "_helperText"], placeholder: "placeholder", model: "model", items: "items", valueField: "valueField", displayField: "displayField", disabledField: "disabledField", cacheChecksum: "cacheChecksum", _required: ["required", "_required"], _validator: ["validator", "_validator"], _inlineError: ["inlineError", "_inlineError"], disabled: "disabled", _viewed: ["viewed", "_viewed"], hyperlink: "hyperlink", _multiple: ["multiple", "_multiple"], limit: "limit" }, outputs: { modelChange: "modelChange", sdChange: "sdChange", sdSelection: "sdSelection" }, queries: [{ propertyName: "itemDef", first: true, predicate: SdItemDefDefDirective, descendants: true }, { propertyName: "sdLabelDef", first: true, predicate: SdLabelDefDirective, descendants: true }, { propertyName: "sdViewDef", first: true, predicate: SdViewDefDirective, descendants: true }], viewQueries: [{ propertyName: "input", first: true, predicate: MatInput, descendants: true }, { propertyName: "select", first: true, predicate: ["select"], descendants: true }], ngImport: i0, template: "@if (viewed) {\r\n @if (sdLabelDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"sdLabelDef!.templateRef\"> </ng-container>\r\n } @else if (label) {\r\n <div class=\"text-secondary\">{{ label }}</div>\r\n }\r\n @if (hyperlink) {\r\n <!-- N\u1EBFu c\u00F3 hyperlink th\u00EC d\u00F9ng th\u1EBB a -->\r\n <a [href]=\"hyperlink\">{{ display | async }}</a>\r\n } @else {\r\n <!-- Ngo\u00E0i ra d\u00F9ng th\u1EBB m\u1EB7c \u0111\u1ECBnh -->\r\n <div class=\"T16M\">{{ display | async }}</div>\r\n }\r\n} @else {\r\n@if (!appearance && sdLabelDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"sdLabelDef?.templateRef!\"> </ng-container>\r\n}\r\n@if (!appearance && label && !sdLabelDef?.templateRef) {\r\n <sd-label [label]=\"label\" [required]=\"required\"></sd-label>\r\n}\r\n<div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"sdViewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n aria-hidden=\"true\">\r\n @if (sdViewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n sdViewDef!.templateRef;\r\n context: {\r\n value: formControl.value,\r\n selectedItems: selectedItems | async\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size === 'md'\"\r\n [class.sd-sm]=\"size === 'sm'\"\r\n [class.hide-inline-error]=\"hideInlineError\"\r\n [appearance]=\"appearance\">\r\n @if (appearance && label) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ label }}</span>\r\n @if (helperText) {\r\n <mat-icon [matTooltip]=\"helperText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n \r\n @if (multiple) {\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n multiple\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value?.length\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !formControl.value?.length\"\r\n [matTooltip]=\"tooltip\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n } @else {\r\n \r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value !== undefined && formControl.value !== null\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n }\r\n\r\n @if (\r\n (multiple ? formControl.value?.length : formControl.value !== undefined && formControl.value !== null) &&\r\n !required &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"/>\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\"/>\r\n </svg>\r\n </span>\r\n }\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n</div>\r\n}\r\n", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"97\" height=\"96\" viewBox=\"0 0 97 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M17.9657 72.84C8.63101 65.685 2.2812 55.23 0.806245 43.55C-0.773708 31.025 3.06618 15.9 28.8604 12.175C77.634 5.13499 110.693 47.8 90.4436 68.9C73.2191 86.85 41.73 91.05 17.9657 72.835V72.84Z\" fill=\"%23F2F2F2\"/>%0D%0A<path d=\"M68.8944 62.84H27.5107L22.1708 47.51C22.0558 47.185 22.3008 46.845 22.6408 46.845H74.3343C74.6843 46.845 74.9293 47.195 74.7993 47.525L68.8944 62.84Z\" fill=\"black\"/>%0D%0A<path d=\"M68.8943 63.09H27.5106C27.4056 63.09 27.3106 63.025 27.2756 62.92L21.9357 47.59C21.8557 47.36 21.8907 47.105 22.0307 46.91C22.1707 46.715 22.4007 46.595 22.6407 46.595H74.3342C74.5792 46.595 74.8142 46.715 74.9542 46.92C75.0942 47.125 75.1242 47.385 75.0342 47.615L69.1293 62.93C69.0943 63.025 68.9993 63.09 68.8943 63.09ZM27.6906 62.59H68.7243L74.5692 47.435C74.5992 47.355 74.5892 47.27 74.5442 47.205C74.4992 47.135 74.4192 47.095 74.3392 47.095H22.6407C22.5607 47.095 22.4857 47.135 22.4357 47.2C22.3857 47.265 22.3757 47.35 22.4057 47.425L27.6906 62.585V62.59Z\" fill=\"black\"/>%0D%0A<path d=\"M15.8561 58.295L10.5811 58.925C10.2511 58.965 9.98106 58.66 10.0611 58.335L10.7411 55.6C10.8111 55.31 11.1311 55.155 11.4061 55.28L16.0061 57.39C16.4461 57.59 16.3411 58.245 15.8611 58.3L15.8561 58.295ZM17.5611 55.435L16.6161 49.065C16.5611 48.685 16.1761 48.455 15.8161 48.58L12.4261 49.755C12.0261 49.895 11.8861 50.395 12.1561 50.72L16.4911 55.915C16.8861 56.385 17.6511 56.045 17.5611 55.435Z\" fill=\"%234CAF50\"/>%0D%0A<path d=\"M34.81 33.265C34.81 33.265 44.2198 36.035 49.1596 35.715L53.0745 40.145C53.0745 40.145 47.3047 59.815 46.5097 61.8C46.5097 61.8 38.1299 59.175 26.4253 58.005C26.4253 58.005 31.5651 46.315 34.805 33.27L34.81 33.265Z\" fill=\"white\"/>%0D%0A<path d=\"M46.6996 61.525C46.6746 61.525 46.6446 61.525 46.6196 61.51C46.4896 61.465 46.4196 61.325 46.4646 61.195C46.6346 60.69 46.8946 59.89 47.2296 58.81C47.2696 58.68 47.4095 58.605 47.5445 58.645C47.6745 58.685 47.7495 58.825 47.7095 58.96C47.3745 60.04 47.1146 60.845 46.9396 61.355C46.9046 61.46 46.8046 61.525 46.7046 61.525H46.6996ZM44.6346 61.525C44.6346 61.525 44.5896 61.525 44.5696 61.515C43.9146 61.34 43.1047 61.13 42.1497 60.905C42.0147 60.875 41.9347 60.74 41.9647 60.605C41.9947 60.47 42.1297 60.385 42.2647 60.42C43.2247 60.65 44.0396 60.86 44.6946 61.035C44.8296 61.07 44.9096 61.21 44.8696 61.34C44.8396 61.45 44.7396 61.525 44.6296 61.525H44.6346ZM39.7698 60.36C39.7698 60.36 39.7348 60.36 39.7148 60.355C38.9548 60.19 38.1348 60.025 37.2698 59.855C37.1349 59.83 37.0449 59.695 37.0699 59.56C37.0949 59.425 37.2348 59.335 37.3648 59.36C38.2348 59.53 39.0548 59.695 39.8198 59.86C39.9548 59.89 40.0398 60.02 40.0098 60.155C39.9848 60.27 39.8798 60.35 39.7648 60.35L39.7698 60.36ZM34.8599 59.41C34.8599 59.41 34.8299 59.41 34.8149 59.41C34.0249 59.275 33.2 59.14 32.35 59.01C32.215 58.99 32.12 58.86 32.14 58.725C32.16 58.59 32.29 58.495 32.425 58.515C33.28 58.645 34.1049 58.78 34.8999 58.915C35.0349 58.94 35.1299 59.07 35.1049 59.205C35.0849 59.325 34.9799 59.415 34.8599 59.415V59.41ZM29.9151 58.66C29.9151 58.66 29.8951 58.66 29.8801 58.66C29.0751 58.555 28.2501 58.455 27.4001 58.365C27.2651 58.35 27.1651 58.225 27.1801 58.09C27.1951 57.955 27.3201 57.855 27.4551 57.87C28.3051 57.965 29.1351 58.065 29.9451 58.17C30.0801 58.19 30.1801 58.315 30.1601 58.45C30.1451 58.575 30.0351 58.67 29.9101 58.67L29.9151 58.66ZM27.0101 56.885C26.9801 56.885 26.9452 56.88 26.9152 56.865C26.7852 56.81 26.7252 56.665 26.7802 56.54C27.0301 55.94 27.3501 55.16 27.7201 54.225C27.7701 54.095 27.9151 54.035 28.0451 54.085C28.1751 54.135 28.2351 54.28 28.1851 54.41C27.8101 55.35 27.4901 56.13 27.2451 56.735C27.2051 56.83 27.1101 56.89 27.0151 56.89L27.0101 56.885ZM48.2045 56.745C48.2045 56.745 48.1545 56.745 48.1295 56.735C47.9995 56.695 47.9245 56.555 47.9645 56.425C48.1945 55.665 48.4395 54.86 48.6895 54.025C48.7295 53.895 48.8695 53.815 48.9995 53.86C49.1295 53.9 49.2045 54.04 49.1645 54.17C48.9145 55 48.6695 55.81 48.4395 56.57C48.4045 56.68 48.3095 56.745 48.1995 56.745H48.2045ZM28.8551 52.235C28.8251 52.235 28.7951 52.23 28.7651 52.22C28.6351 52.17 28.5701 52.025 28.6201 51.9C28.8951 51.17 29.1901 50.39 29.4951 49.56C29.5401 49.43 29.6901 49.365 29.8151 49.41C29.9451 49.455 30.0101 49.6 29.9651 49.73C29.6601 50.565 29.3701 51.35 29.0901 52.08C29.0501 52.18 28.9551 52.24 28.8551 52.24V52.235ZM49.6495 51.95C49.6495 51.95 49.5995 51.95 49.5795 51.94C49.4495 51.9 49.3695 51.76 49.4145 51.63L50.1295 49.23C50.1695 49.1 50.3045 49.025 50.4395 49.06C50.5695 49.1 50.6495 49.24 50.6095 49.37L49.8895 51.77C49.8595 51.88 49.7595 51.95 49.6495 51.95ZM30.575 47.535C30.55 47.535 30.52 47.535 30.49 47.52C30.36 47.475 30.2901 47.33 30.335 47.2C30.6 46.44 30.87 45.65 31.145 44.835C31.19 44.705 31.33 44.63 31.46 44.68C31.59 44.725 31.66 44.865 31.615 44.995C31.34 45.81 31.07 46.6 30.805 47.365C30.77 47.47 30.67 47.53 30.57 47.53L30.575 47.535ZM51.0844 47.145C51.0844 47.145 51.0394 47.145 51.0144 47.135C50.8844 47.095 50.8044 46.955 50.8444 46.825L51.5544 44.42C51.5944 44.29 51.7344 44.21 51.8644 44.25C51.9944 44.29 52.0744 44.43 52.0344 44.56L51.3244 46.965C51.2944 47.075 51.1944 47.145 51.0844 47.145ZM32.165 42.79C32.165 42.79 32.115 42.79 32.09 42.78C31.96 42.74 31.885 42.595 31.93 42.465C32.18 41.685 32.425 40.89 32.67 40.08C32.71 39.95 32.85 39.875 32.98 39.915C33.11 39.955 33.185 40.095 33.145 40.225C32.9 41.04 32.65 41.835 32.4 42.62C32.365 42.725 32.27 42.795 32.16 42.795L32.165 42.79ZM52.5044 42.335C52.5044 42.335 52.4594 42.335 52.4344 42.325C52.3044 42.285 52.2244 42.145 52.2644 42.015L52.7944 40.215L52.5544 39.945C52.4644 39.84 52.4744 39.685 52.5744 39.59C52.6744 39.5 52.8344 39.505 52.9294 39.61L53.2594 39.985C53.3144 40.05 53.3344 40.14 53.3094 40.22L52.7394 42.155C52.7094 42.265 52.6094 42.335 52.4994 42.335H52.5044ZM51.0894 38.155C51.0194 38.155 50.9494 38.125 50.8994 38.07L49.2445 36.195C49.1545 36.09 49.1645 35.935 49.2645 35.84C49.3645 35.75 49.5245 35.755 49.6195 35.86L51.2744 37.735C51.3644 37.84 51.3544 37.995 51.2544 38.09C51.2094 38.13 51.1494 38.15 51.0894 38.15V38.155ZM33.615 38C33.615 38 33.57 38 33.545 37.99C33.41 37.95 33.335 37.815 33.375 37.68C33.6 36.885 33.8249 36.085 34.0399 35.275C34.0749 35.14 34.2099 35.06 34.3449 35.095C34.4799 35.13 34.5599 35.265 34.5249 35.4C34.3099 36.215 34.0849 37.02 33.8599 37.815C33.8299 37.925 33.7299 37.995 33.62 37.995L33.615 38ZM47.0746 35.955C47.0746 35.955 47.0646 35.955 47.0596 35.955C46.3096 35.905 45.4646 35.815 44.5546 35.685C44.4196 35.665 44.3246 35.54 44.3446 35.4C44.3646 35.26 44.4946 35.17 44.6296 35.19C45.5296 35.32 46.3596 35.405 47.0996 35.455C47.2395 35.465 47.3395 35.585 47.3345 35.72C47.3245 35.85 47.2146 35.955 47.0846 35.955H47.0746ZM42.1197 35.275C42.1197 35.275 42.0897 35.275 42.0747 35.275C41.2897 35.125 40.4648 34.95 39.6148 34.76C39.4798 34.73 39.3948 34.595 39.4248 34.46C39.4548 34.325 39.5898 34.24 39.7248 34.27C40.5647 34.46 41.3897 34.63 42.1647 34.78C42.2997 34.805 42.3897 34.935 42.3647 35.07C42.3397 35.19 42.2347 35.275 42.1197 35.275ZM37.2348 34.175C37.2348 34.175 37.1948 34.175 37.1748 34.165C35.7249 33.795 34.7549 33.51 34.7449 33.51C34.6149 33.47 34.5349 33.33 34.5749 33.2C34.6149 33.07 34.7499 32.995 34.8849 33.03C34.8949 33.03 35.8549 33.315 37.2948 33.68C37.4298 33.715 37.5098 33.85 37.4748 33.985C37.4448 34.1 37.3448 34.175 37.2348 34.175ZM46.3096 41.255C46.3096 41.255 46.2796 41.255 46.2646 41.255L45.3196 41.08C45.1846 41.055 45.0946 40.925 45.1196 40.79C45.1446 40.655 45.2746 40.565 45.4096 40.59L46.3546 40.765C46.4896 40.79 46.5796 40.92 46.5546 41.055C46.5346 41.175 46.4296 41.26 46.3096 41.26V41.255ZM43.8896 40.805C43.8896 40.805 43.8597 40.805 43.8447 40.805L42.3697 40.53C42.2347 40.505 42.1447 40.375 42.1697 40.24C42.1947 40.105 42.3247 40.015 42.4597 40.04L43.9347 40.315C44.0696 40.34 44.1596 40.47 44.1346 40.605C44.1146 40.725 44.0096 40.81 43.8896 40.81V40.805ZM40.9397 40.255C40.9397 40.255 40.9097 40.255 40.8947 40.255L39.4198 39.98C39.2848 39.955 39.1948 39.825 39.2198 39.69C39.2448 39.555 39.3748 39.465 39.5098 39.49L40.9847 39.765C41.1197 39.79 41.2097 39.92 41.1847 40.055C41.1647 40.175 41.0597 40.26 40.9397 40.26V40.255ZM37.9898 39.705C37.9898 39.705 37.9598 39.705 37.9448 39.705L36.4699 39.43C36.3349 39.405 36.2449 39.275 36.2699 39.14C36.2949 39.005 36.4249 38.915 36.5599 38.94L38.0348 39.215C38.1698 39.24 38.2598 39.37 38.2348 39.505C38.2148 39.625 38.1098 39.71 37.9898 39.71V39.705ZM45.1546 45.82C45.1546 45.82 45.1246 45.82 45.1096 45.82L44.3396 45.675C44.2046 45.65 44.1146 45.52 44.1396 45.385C44.1646 45.25 44.2946 45.16 44.4296 45.185L45.1996 45.33C45.3346 45.355 45.4246 45.485 45.3996 45.62C45.3746 45.74 45.2746 45.825 45.1546 45.825V45.82ZM42.9097 45.395C42.9097 45.395 42.8797 45.395 42.8647 45.395L41.3897 45.115C41.2547 45.09 41.1647 44.96 41.1897 44.825C41.2147 44.69 41.3447 44.6 41.4797 44.625L42.9547 44.905C43.0897 44.93 43.1797 45.06 43.1547 45.195C43.1297 45.315 43.0297 45.4 42.9097 45.4V45.395ZM39.9648 44.835C39.9648 44.835 39.9348 44.835 39.9198 44.835L38.4448 44.555C38.3098 44.53 38.2198 44.4 38.2448 44.265C38.2698 44.13 38.3998 44.04 38.5348 44.065L40.0098 44.345C40.1448 44.37 40.2348 44.5 40.2098 44.635C40.1848 44.755 40.0848 44.84 39.9648 44.84V44.835ZM37.0199 44.275C37.0199 44.275 36.9899 44.275 36.9749 44.275L35.4999 43.995C35.3649 43.97 35.2749 43.84 35.2999 43.705C35.3249 43.57 35.4549 43.48 35.5899 43.505L37.0649 43.785C37.1998 43.81 37.2898 43.94 37.2648 44.075C37.2398 44.195 37.1398 44.28 37.0199 44.28V44.275ZM37.8898 51.275C37.8898 51.275 37.8598 51.275 37.8448 51.275L36.3699 51C36.2349 50.975 36.1449 50.845 36.1699 50.71C36.1949 50.575 36.3299 50.485 36.4599 50.51L37.9348 50.785C38.0698 50.81 38.1598 50.94 38.1348 51.075C38.1148 51.195 38.0098 51.28 37.8898 51.28V51.275ZM34.9399 50.72C34.9399 50.72 34.9099 50.72 34.8949 50.72L33.42 50.445C33.285 50.42 33.195 50.29 33.22 50.155C33.245 50.02 33.38 49.93 33.51 49.955L34.9849 50.23C35.1199 50.255 35.2099 50.385 35.1849 50.52C35.1649 50.64 35.0599 50.725 34.9399 50.725V50.72ZM46.0446 52.975C46.0446 52.975 46.0146 52.975 45.9946 52.975L44.5246 52.69C44.3896 52.665 44.2996 52.53 44.3246 52.395C44.3496 52.26 44.4846 52.175 44.6196 52.195L46.0896 52.48C46.2246 52.505 46.3146 52.64 46.2896 52.775C46.2646 52.895 46.1596 52.975 46.0446 52.975ZM43.0997 52.4C43.0997 52.4 43.0697 52.4 43.0497 52.4L41.5797 52.115C41.4447 52.09 41.3547 51.955 41.3797 51.82C41.4047 51.685 41.5397 51.6 41.6747 51.62L43.1447 51.905C43.2797 51.93 43.3697 52.065 43.3447 52.2C43.3197 52.32 43.2147 52.4 43.0997 52.4Z\" fill=\"black\"/>%0D%0A<path d=\"M53.3047 40.05C52.5347 38.205 51.2247 36.68 49.5147 35.64L49.2897 35.505C49.2147 35.46 49.1197 35.455 49.0397 35.5C48.9597 35.54 48.9097 35.62 48.9097 35.71C48.9097 35.735 48.7947 38.185 47.8497 39.21C47.7897 39.275 47.7697 39.365 47.7947 39.445C47.8197 39.53 47.8797 39.595 47.9647 39.62C48.0997 39.66 50.8447 40.465 52.4547 40.465C52.7247 40.465 52.9597 40.445 53.1447 40.39C53.2147 40.37 53.2697 40.325 53.3047 40.26C53.3347 40.195 53.3397 40.12 53.3097 40.055L53.3047 40.05Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M78.2888 85.9H18.7456C18.6056 85.9 18.4956 85.79 18.4956 85.65C18.4956 85.51 18.6056 85.4 18.7456 85.4H78.2888C78.4288 85.4 78.5388 85.51 78.5388 85.65C78.5388 85.79 78.4288 85.9 78.2888 85.9Z\" fill=\"black\"/>%0D%0A<path d=\"M50.9396 51.85L46.9848 56.125C46.5098 56.635 45.8448 56.925 45.1498 56.925H19.7456C19.4106 56.925 19.1706 57.245 19.2656 57.565L27.6103 85.645H68.2641L77.7538 51.675C77.8438 51.355 77.6039 51.04 77.2739 51.04H52.7796C52.0846 51.04 51.4196 51.33 50.9446 51.84L50.9396 51.85Z\" fill=\"white\"/>%0D%0A<path d=\"M68.2592 85.9H27.6054C27.4954 85.9 27.3954 85.825 27.3654 85.72L19.0207 57.64C18.9507 57.41 18.9957 57.17 19.1407 56.98C19.2857 56.79 19.5007 56.68 19.7407 56.68H45.1449C45.7699 56.68 46.3699 56.415 46.7949 55.96L50.7547 51.685C51.2747 51.125 52.0097 50.805 52.7747 50.805H77.269C77.5039 50.805 77.7239 50.915 77.8689 51.1C78.0139 51.285 78.0589 51.525 77.9939 51.755L68.5042 85.725C68.4742 85.835 68.3742 85.91 68.2642 85.91L68.2592 85.9ZM27.7904 85.4H68.0692L77.5089 51.615C77.5289 51.54 77.514 51.46 77.469 51.395C77.419 51.33 77.3489 51.295 77.269 51.295H52.7747C52.1497 51.295 51.5497 51.56 51.1247 52.015L47.1648 56.29C46.6449 56.85 45.9099 57.17 45.1449 57.17H19.7407C19.6607 57.17 19.5907 57.205 19.5407 57.27C19.4957 57.335 19.4807 57.415 19.5007 57.49L27.7904 85.395V85.4Z\" fill=\"black\"/>%0D%0A<path d=\"M55.4401 74.565H51.4051C51.2651 74.565 51.1551 74.455 51.1551 74.315V72.025C51.1551 71.25 50.7251 70.55 50.0301 70.2C49.2801 69.825 48.4051 69.935 47.6251 70.515C47.2751 70.77 47.0701 71.205 47.0701 71.675V74.315C47.0701 74.455 46.9601 74.565 46.8201 74.565H42.7851C42.6451 74.565 42.5351 74.455 42.5351 74.315V66.15C42.5351 66.07 42.5701 66 42.6351 65.95L48.9601 61.12C49.0501 61.05 49.1751 61.05 49.2651 61.12L55.5901 65.95C55.6501 65.995 55.6901 66.07 55.6901 66.15V74.315C55.6901 74.455 55.5801 74.565 55.4401 74.565ZM51.6551 74.065H55.1901V66.275L49.1151 61.635L43.0401 66.275V74.065H46.5751V71.675C46.5751 71.045 46.8601 70.46 47.3351 70.11C48.2751 69.415 49.3401 69.285 50.2601 69.755C51.1201 70.19 51.6601 71.06 51.6601 72.025V74.065H51.6551ZM55.7551 75.755C55.7551 75.615 55.6451 75.505 55.5051 75.505H42.7251C42.5851 75.505 42.4751 75.615 42.4751 75.755C42.4751 75.895 42.5851 76.005 42.7251 76.005H55.5051C55.6451 76.005 55.7551 75.895 55.7551 75.755Z\" fill=\"black\"/>%0D%0A<path d=\"M73.3638 84.85V82.285C73.3638 81.99 73.1238 81.755 72.8288 81.755H59.4742C59.1792 81.76 58.9442 82 58.9442 82.295V84.86C58.9442 85.155 59.1842 85.39 59.4792 85.39H72.8338C73.1288 85.385 73.3638 85.145 73.3638 84.85ZM73.9738 84.735V82.42C73.9738 82.08 74.2887 81.825 74.6237 81.9L80.0286 83.15C80.5886 83.28 80.5736 84.08 80.0136 84.19L74.6087 85.26C74.2787 85.325 73.9738 85.075 73.9738 84.74V84.735ZM57.5942 85.39L40.0398 85.4C39.7448 85.4 39.5098 85.16 39.5098 84.87C39.5098 83.16 40.8947 81.77 42.6047 81.77L57.5942 81.76C57.8892 81.76 58.1242 82 58.1242 82.29V84.855C58.1242 85.15 57.8892 85.385 57.5942 85.385V85.39Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M43.0249 83.035C43.0249 81.5 44.2749 80.245 45.8099 80.245H55.8499V80.74H45.8099C44.5499 80.75 43.5249 81.775 43.5249 83.035H43.0249Z\" fill=\"black\"/>%0D%0A<path d=\"M80.0286 83.15L77.3286 82.525V84.72L80.0136 84.19C80.5736 84.08 80.5886 83.28 80.0286 83.15Z\" fill=\"black\"/>%0D%0A<path d=\"M6.90088 26.615C6.90088 26.615 15.1306 21.25 16.8156 19.39L21.6854 20.35C21.6854 20.35 26.8853 28.71 31.5851 30.19C31.5851 30.19 24.4804 35.25 20.4955 40.155C20.4955 40.155 9.35581 33.715 6.90088 26.61V26.615Z\" fill=\"white\"/>%0D%0A<path d=\"M20.4957 40.41C20.4507 40.41 20.4107 40.4 20.3707 40.375C20.3707 40.375 19.9757 40.15 19.3257 39.73C19.2107 39.655 19.1757 39.5 19.2507 39.385C19.3257 39.27 19.4807 39.235 19.5957 39.31C19.9757 39.555 20.2657 39.73 20.4407 39.835C20.6657 39.56 20.9057 39.285 21.1457 39.01C21.2357 38.905 21.3957 38.9 21.5007 38.99C21.6056 39.08 21.6156 39.24 21.5207 39.345C21.2307 39.67 20.9557 39.995 20.6907 40.32C20.6407 40.38 20.5707 40.41 20.4957 40.41ZM17.3758 38.38C17.3258 38.38 17.2758 38.365 17.2308 38.335C16.5358 37.845 15.8558 37.345 15.2058 36.84C15.0958 36.755 15.0758 36.6 15.1608 36.49C15.2458 36.38 15.4008 36.36 15.5108 36.445C16.1508 36.945 16.8258 37.44 17.5158 37.925C17.6308 38.005 17.6558 38.16 17.5758 38.275C17.5258 38.345 17.4508 38.38 17.3708 38.38H17.3758ZM23.0556 37.615C22.9906 37.615 22.9256 37.59 22.8806 37.54C22.7856 37.44 22.7856 37.285 22.8806 37.185C23.4406 36.625 24.0556 36.045 24.7056 35.455C24.8056 35.365 24.9655 35.37 25.0605 35.47C25.1555 35.57 25.1455 35.73 25.0455 35.825C24.4006 36.41 23.7956 36.985 23.2356 37.54C23.1856 37.59 23.1256 37.615 23.0606 37.615H23.0556ZM13.4259 35.305C13.3659 35.305 13.3109 35.285 13.2609 35.245C12.6059 34.68 11.9859 34.105 11.4109 33.535C11.311 33.44 11.311 33.28 11.4109 33.18C11.5059 33.08 11.6659 33.08 11.7659 33.18C12.3309 33.74 12.9459 34.305 13.5909 34.865C13.6959 34.955 13.7059 35.115 13.6159 35.22C13.5659 35.275 13.4959 35.305 13.4259 35.305ZM26.7555 34.245C26.6855 34.245 26.6155 34.215 26.5655 34.155C26.4755 34.05 26.4905 33.89 26.5955 33.8C27.2205 33.27 27.8705 32.735 28.5354 32.205C28.6404 32.12 28.8004 32.135 28.8854 32.245C28.9704 32.355 28.9554 32.51 28.8454 32.595C28.1855 33.12 27.5355 33.655 26.9155 34.18C26.8705 34.22 26.8105 34.24 26.7555 34.24V34.245ZM9.88599 31.775C9.816 31.775 9.746 31.745 9.696 31.685C9.12102 31.005 8.60603 30.325 8.17105 29.665C8.09605 29.55 8.12605 29.395 8.24104 29.32C8.35604 29.245 8.51103 29.275 8.58603 29.39C9.01102 30.035 9.51101 30.7 10.076 31.36C10.166 31.465 10.151 31.625 10.046 31.71C10.001 31.75 9.94099 31.77 9.88599 31.77V31.775ZM30.6704 31.12C30.5954 31.12 30.5204 31.085 30.4704 31.02C30.3854 30.91 30.4104 30.755 30.5204 30.67C30.7354 30.51 30.9154 30.375 31.0604 30.27C30.7854 30.16 30.5054 30.03 30.2204 29.875C30.1004 29.81 30.0554 29.655 30.1204 29.535C30.1854 29.415 30.3404 29.37 30.4604 29.435C30.8754 29.66 31.2804 29.835 31.6653 29.955C31.7553 29.985 31.8203 30.06 31.8353 30.155C31.8503 30.25 31.8103 30.345 31.7353 30.4C31.7353 30.4 31.3954 30.645 30.8204 31.075C30.7754 31.11 30.7204 31.125 30.6704 31.125V31.12ZM28.2905 28.475C28.2355 28.475 28.1755 28.455 28.1305 28.415C27.5355 27.915 26.9155 27.335 26.2905 26.68C26.1955 26.58 26.2005 26.42 26.3005 26.325C26.4005 26.23 26.5605 26.235 26.6555 26.335C27.2705 26.975 27.8755 27.545 28.4554 28.03C28.5604 28.12 28.5754 28.275 28.4854 28.38C28.4354 28.44 28.3654 28.47 28.2955 28.47L28.2905 28.475ZM7.18607 27.585C7.09108 27.585 6.99608 27.53 6.95608 27.435C6.85108 27.19 6.75609 26.945 6.67109 26.7C6.63109 26.59 6.67109 26.47 6.77109 26.41C6.77109 26.41 7.63606 25.845 8.86102 25.02C8.97602 24.945 9.13102 24.975 9.20601 25.09C9.28101 25.205 9.25101 25.36 9.13602 25.435C8.22604 26.05 7.51606 26.515 7.20607 26.72C7.27107 26.895 7.34107 27.07 7.41607 27.24C7.47107 27.365 7.41607 27.515 7.28607 27.57C7.25607 27.585 7.22107 27.59 7.18607 27.59V27.585ZM24.8106 24.885C24.7406 24.885 24.6656 24.855 24.6156 24.795C24.1006 24.175 23.5806 23.505 23.0706 22.805C22.9906 22.695 23.0106 22.535 23.1256 22.455C23.2356 22.375 23.3906 22.395 23.4756 22.51C23.9806 23.2 24.4956 23.86 25.0055 24.475C25.0955 24.58 25.0805 24.74 24.9705 24.825C24.9255 24.865 24.8656 24.88 24.8106 24.88V24.885ZM11.066 24.065C10.986 24.065 10.911 24.025 10.861 23.955C10.781 23.84 10.811 23.685 10.926 23.605C11.6009 23.14 12.2959 22.65 12.9709 22.165C13.0809 22.085 13.2409 22.11 13.3209 22.22C13.4009 22.33 13.3759 22.49 13.2659 22.57C12.5909 23.055 11.8909 23.55 11.216 24.015C11.171 24.045 11.121 24.06 11.076 24.06L11.066 24.065ZM15.1208 21.125C15.0458 21.125 14.9758 21.09 14.9258 21.03C14.8408 20.92 14.8608 20.765 14.9708 20.68C15.7708 20.055 16.3308 19.565 16.6358 19.23C16.6958 19.165 16.7858 19.135 16.8708 19.155L17.1158 19.205C17.2508 19.23 17.3408 19.365 17.3108 19.5C17.2808 19.635 17.1508 19.725 17.0158 19.695L16.9058 19.675C16.5658 20.025 16.0208 20.495 15.2758 21.08C15.2308 21.115 15.1758 21.135 15.1208 21.135V21.125ZM21.8456 20.85C21.7656 20.85 21.6856 20.81 21.6356 20.735L21.5357 20.58L19.4707 20.17C19.3357 20.145 19.2457 20.01 19.2757 19.875C19.3007 19.74 19.4357 19.65 19.5707 19.68L21.7406 20.11C21.8106 20.125 21.8656 20.165 21.9056 20.225L22.0606 20.465C22.1356 20.58 22.1006 20.735 21.9856 20.81C21.9456 20.835 21.8956 20.85 21.8506 20.85H21.8456ZM12.3159 29.575C12.2409 29.575 12.1659 29.54 12.1159 29.475C12.0309 29.365 12.0559 29.205 12.1659 29.125L13.3709 28.23C13.4809 28.15 13.6409 28.17 13.7209 28.28C13.8059 28.39 13.7809 28.55 13.6709 28.63L12.4659 29.525C12.4209 29.56 12.3709 29.575 12.3159 29.575ZM14.7259 27.785C14.6509 27.785 14.5759 27.75 14.5259 27.685C14.4409 27.575 14.4659 27.415 14.5759 27.335L15.7808 26.44C15.8908 26.36 16.0508 26.38 16.1308 26.49C16.2158 26.6 16.1908 26.76 16.0808 26.84L14.8758 27.735C14.8308 27.77 14.7809 27.785 14.7259 27.785ZM17.1358 25.995C17.0608 25.995 16.9858 25.96 16.9358 25.895C16.8508 25.785 16.8758 25.63 16.9858 25.545L18.1907 24.65C18.3007 24.57 18.4607 24.59 18.5407 24.7C18.6257 24.81 18.6007 24.965 18.4907 25.05L17.2858 25.945C17.2408 25.98 17.1908 25.995 17.1358 25.995ZM16.3558 33.41C16.2808 33.41 16.2108 33.38 16.1608 33.315C16.0758 33.21 16.0908 33.05 16.2008 32.965L17.3708 32.025C17.4758 31.94 17.6358 31.955 17.7208 32.065C17.8058 32.17 17.7908 32.33 17.6808 32.415L16.5108 33.355C16.4658 33.39 16.4108 33.41 16.3558 33.41ZM18.6907 31.53C18.6157 31.53 18.5457 31.5 18.4957 31.435C18.4107 31.33 18.4257 31.17 18.5357 31.085L19.7057 30.145C19.8107 30.06 19.9707 30.075 20.0557 30.185C20.1407 30.29 20.1257 30.45 20.0157 30.535L18.8457 31.475C18.8007 31.51 18.7457 31.53 18.6907 31.53ZM21.0257 29.65C20.9507 29.65 20.8807 29.62 20.8307 29.555C20.7457 29.45 20.7607 29.29 20.8707 29.205L21.2157 28.925C21.3207 28.84 21.4807 28.855 21.5656 28.965C21.6506 29.07 21.6356 29.23 21.5257 29.315L21.1807 29.595C21.1357 29.63 21.0807 29.65 21.0257 29.65Z\" fill=\"black\"/>%0D%0A<path d=\"M21.7308 20.11L16.8608 19.15C16.7558 19.13 16.6508 19.175 16.5958 19.27C16.5408 19.36 16.5508 19.48 16.6208 19.56L18.6458 21.91C18.6908 21.96 18.7508 21.99 18.8208 21.995C18.8258 21.995 18.8308 21.995 18.8358 21.995C18.8958 21.995 18.9558 21.975 19.0008 21.93C19.0108 21.925 19.8208 21.21 21.7558 20.595C21.8658 20.56 21.9358 20.455 21.9308 20.345C21.9258 20.23 21.8408 20.135 21.7308 20.115V20.11Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M56.2847 35.76C56.2847 35.76 67.4593 20.42 68.4443 12.83C68.4443 12.83 83.0589 23.72 87.9637 24.295C87.9637 24.295 75.4441 41.105 70.7092 49.35C70.7092 49.35 66.6044 41.54 56.2847 35.76Z\" fill=\"white\"/>%0D%0A<path d=\"M70.2791 48.865C70.1941 48.865 70.1141 48.825 70.0691 48.745C69.7891 48.3 69.3191 47.585 68.6591 46.705C68.5741 46.595 68.5991 46.44 68.7091 46.355C68.8191 46.275 68.9741 46.295 69.0591 46.405C69.7341 47.295 70.2141 48.025 70.4941 48.48C70.5691 48.595 70.5291 48.75 70.4141 48.825C70.3741 48.85 70.3291 48.865 70.2841 48.865H70.2791ZM71.554 48.17C71.509 48.17 71.464 48.16 71.424 48.135C71.304 48.065 71.269 47.91 71.339 47.79C71.749 47.115 72.194 46.405 72.669 45.66C72.744 45.545 72.899 45.51 73.014 45.585C73.129 45.66 73.164 45.815 73.089 45.93C72.619 46.67 72.174 47.38 71.769 48.05C71.724 48.125 71.639 48.17 71.554 48.17ZM67.2792 44.865C67.2092 44.865 67.1392 44.835 67.0892 44.78C66.5542 44.165 65.9842 43.555 65.3942 42.96C65.2942 42.86 65.2992 42.705 65.3942 42.605C65.4942 42.505 65.6492 42.51 65.7492 42.605C66.3442 43.205 66.9192 43.825 67.4641 44.445C67.5541 44.55 67.5441 44.705 67.4391 44.8C67.3942 44.84 67.3342 44.86 67.2742 44.86L67.2792 44.865ZM74.2389 43.945C74.1939 43.945 74.1439 43.93 74.0989 43.905C73.984 43.83 73.954 43.675 74.029 43.56C74.4789 42.88 74.9439 42.18 75.4189 41.475C75.4989 41.36 75.6539 41.33 75.7639 41.41C75.8789 41.485 75.9089 41.64 75.8289 41.755C75.3539 42.46 74.8889 43.155 74.4389 43.835C74.3889 43.91 74.3089 43.945 74.229 43.945H74.2389ZM63.7593 41.32C63.6993 41.32 63.6393 41.3 63.5943 41.255C62.9793 40.71 62.3393 40.17 61.6893 39.66C61.5793 39.575 61.5643 39.415 61.6493 39.31C61.7343 39.2 61.8943 39.185 61.9993 39.27C62.6543 39.79 63.3043 40.33 63.9293 40.885C64.0342 40.975 64.0392 41.135 63.9493 41.24C63.8993 41.295 63.8293 41.325 63.7643 41.325L63.7593 41.32ZM77.0439 39.795C76.9939 39.795 76.9439 39.78 76.9039 39.75C76.7889 39.67 76.7589 39.515 76.8389 39.4C77.3089 38.71 77.7888 38.025 78.2638 37.34C78.3438 37.225 78.4988 37.2 78.6138 37.28C78.7288 37.36 78.7538 37.515 78.6738 37.63C78.1988 38.315 77.7188 39 77.2489 39.69C77.1989 39.76 77.1239 39.8 77.0439 39.8V39.795ZM59.8344 38.23C59.7844 38.23 59.7344 38.215 59.6894 38.185C59.0094 37.71 58.3094 37.255 57.6094 36.83C57.4894 36.76 57.4544 36.605 57.5244 36.485C57.5944 36.365 57.7494 36.33 57.8694 36.4C58.5794 36.835 59.2844 37.295 59.9744 37.775C60.0894 37.855 60.1144 38.01 60.0344 38.125C59.9844 38.195 59.9094 38.23 59.8294 38.23H59.8344ZM56.2845 36.01C56.2345 36.01 56.1795 35.995 56.1395 35.96C56.0295 35.88 56.0045 35.72 56.0845 35.61C56.0845 35.61 56.6445 34.84 57.5244 33.56C57.6044 33.445 57.7594 33.415 57.8744 33.495C57.9894 33.575 58.0194 33.73 57.9394 33.845C57.0545 35.13 56.4895 35.905 56.4895 35.905C56.4395 35.97 56.3645 36.01 56.2895 36.01H56.2845ZM79.9038 35.685C79.8538 35.685 79.8038 35.67 79.7588 35.64C79.6438 35.56 79.6188 35.405 79.6988 35.29C80.1888 34.595 80.6738 33.91 81.1487 33.245C81.2287 33.135 81.3837 33.105 81.4987 33.185C81.6087 33.265 81.6387 33.42 81.5587 33.535C81.0837 34.2 80.5988 34.885 80.1138 35.575C80.0638 35.645 79.9888 35.68 79.9088 35.68L79.9038 35.685ZM59.1344 31.875C59.0844 31.875 59.0394 31.86 58.9944 31.835C58.8794 31.76 58.8494 31.605 58.9244 31.49C59.3544 30.845 59.8144 30.14 60.2894 29.395C60.3644 29.28 60.5193 29.245 60.6343 29.32C60.7493 29.395 60.7843 29.55 60.7093 29.665C60.2294 30.415 59.7694 31.12 59.3394 31.765C59.2894 31.84 59.2094 31.875 59.1294 31.875H59.1344ZM82.8087 31.605C82.7587 31.605 82.7087 31.59 82.6637 31.56C82.5537 31.48 82.5237 31.325 82.6087 31.21C83.1237 30.495 83.6137 29.815 84.0737 29.18C84.1537 29.065 84.3137 29.045 84.4236 29.125C84.5336 29.205 84.5586 29.36 84.4786 29.475C84.0187 30.11 83.5237 30.79 83.0137 31.505C82.9637 31.575 82.8887 31.61 82.8087 31.61V31.605ZM61.8293 27.655C61.7843 27.655 61.7393 27.645 61.6993 27.62C61.5793 27.55 61.5443 27.395 61.6143 27.275C62.0393 26.58 62.4743 25.86 62.8993 25.13C62.9693 25.01 63.1243 24.97 63.2393 25.04C63.3593 25.11 63.3993 25.265 63.3293 25.38C62.8993 26.115 62.4693 26.835 62.0393 27.535C61.9943 27.61 61.9093 27.655 61.8243 27.655H61.8293ZM85.7486 27.55C85.6986 27.55 85.6436 27.535 85.6036 27.5C85.4936 27.42 85.4686 27.26 85.5486 27.15C86.1536 26.325 86.6586 25.635 87.0336 25.13C87.1186 25.02 87.2736 24.995 87.3836 25.075C87.4936 25.155 87.5186 25.315 87.4386 25.425C87.0636 25.935 86.5586 26.62 85.9536 27.445C85.9036 27.51 85.8286 27.55 85.7536 27.55H85.7486ZM86.7136 24.25C86.6886 24.25 86.6636 24.25 86.6386 24.24C85.9736 24.025 85.1786 23.7 84.2887 23.275C84.1637 23.215 84.1137 23.065 84.1687 22.94C84.2236 22.815 84.3786 22.765 84.5036 22.82C85.3736 23.235 86.1436 23.55 86.7886 23.76C86.9186 23.8 86.9936 23.945 86.9486 24.075C86.9136 24.18 86.8186 24.25 86.7086 24.25H86.7136ZM64.3492 23.325C64.3092 23.325 64.2692 23.315 64.2292 23.295C64.1092 23.23 64.0642 23.075 64.1292 22.955C64.5492 22.19 64.9392 21.445 65.2892 20.745C65.3492 20.62 65.4992 20.57 65.6242 20.635C65.7492 20.695 65.7992 20.845 65.7342 20.97C65.3792 21.675 64.9842 22.425 64.5642 23.195C64.5192 23.28 64.4342 23.325 64.3442 23.325H64.3492ZM82.1737 22.145C82.1337 22.145 82.0887 22.135 82.0537 22.115C81.3737 21.74 80.6438 21.315 79.8788 20.855C79.7588 20.785 79.7238 20.63 79.7938 20.51C79.8638 20.39 80.0188 20.355 80.1388 20.425C80.8987 20.88 81.6237 21.3 82.2987 21.675C82.4187 21.74 82.4637 21.895 82.3987 22.015C82.3537 22.1 82.2687 22.145 82.1787 22.145H82.1737ZM77.8788 19.575C77.8338 19.575 77.7888 19.56 77.7438 19.535C77.0289 19.08 76.3239 18.625 75.6389 18.17C75.5239 18.095 75.4939 17.94 75.5689 17.825C75.6439 17.71 75.7989 17.68 75.9139 17.755C76.5989 18.205 77.2989 18.665 78.0088 19.115C78.1238 19.19 78.1588 19.345 78.0838 19.46C78.0388 19.535 77.9538 19.575 77.8738 19.575H77.8788ZM66.5892 18.85C66.5542 18.85 66.5192 18.845 66.4892 18.83C66.3642 18.775 66.3042 18.625 66.3642 18.5C66.7242 17.685 67.0392 16.91 67.2992 16.2C67.3442 16.07 67.4891 16.005 67.6191 16.05C67.7491 16.095 67.8141 16.24 67.7691 16.37C67.5091 17.095 67.1892 17.88 66.8192 18.705C66.7792 18.8 66.6842 18.855 66.5892 18.855V18.85ZM73.699 16.81C73.649 16.81 73.599 16.795 73.559 16.765C72.819 16.26 72.124 15.775 71.499 15.335C71.384 15.255 71.359 15.1 71.439 14.985C71.519 14.87 71.674 14.845 71.789 14.925C72.414 15.365 73.104 15.845 73.844 16.355C73.959 16.435 73.989 16.59 73.909 16.7C73.859 16.77 73.784 16.81 73.704 16.81H73.699ZM68.2491 14.135C68.2491 14.135 68.2141 14.135 68.1941 14.13C68.0591 14.1 67.9741 13.965 68.0041 13.83C68.0841 13.47 68.1491 13.12 68.1891 12.795C68.1991 12.705 68.2591 12.63 68.3391 12.595C68.4191 12.56 68.5141 12.57 68.5841 12.625C68.5841 12.625 69.0091 12.945 69.7391 13.47C69.8491 13.55 69.8741 13.705 69.7941 13.82C69.7141 13.93 69.5591 13.955 69.4441 13.875C69.0941 13.62 68.8141 13.415 68.6191 13.27C68.5841 13.485 68.5391 13.71 68.4891 13.935C68.4641 14.05 68.3591 14.13 68.2441 14.13L68.2491 14.135ZM78.7638 28.24C78.7138 28.24 78.6588 28.225 78.6138 28.19C78.3988 28.03 77.9788 27.755 77.3739 27.365C77.2589 27.29 77.2239 27.135 77.2989 27.02C77.3739 26.905 77.5288 26.87 77.6438 26.945C78.2588 27.34 78.6888 27.625 78.9138 27.79C79.0238 27.87 79.0488 28.03 78.9688 28.14C78.9188 28.205 78.8438 28.24 78.7688 28.24H78.7638ZM76.2389 26.605C76.1939 26.605 76.1489 26.595 76.1089 26.565C75.7039 26.31 75.2689 26.045 74.8339 25.775C74.7189 25.705 74.6789 25.55 74.7539 25.43C74.8289 25.31 74.9789 25.28 75.0989 25.35C75.5389 25.62 75.9689 25.89 76.3789 26.145C76.4939 26.22 76.5339 26.37 76.4589 26.49C76.4139 26.565 76.3289 26.61 76.2489 26.61L76.2389 26.605ZM73.679 25.025C73.634 25.025 73.589 25.015 73.549 24.99L72.264 24.205C72.144 24.135 72.109 23.98 72.179 23.86C72.249 23.74 72.404 23.705 72.524 23.775L73.809 24.56C73.929 24.63 73.964 24.785 73.894 24.905C73.849 24.98 73.764 25.025 73.679 25.025ZM71.109 23.46C71.064 23.46 71.019 23.45 70.979 23.425L69.6891 22.645C69.5691 22.575 69.5341 22.42 69.6041 22.3C69.6741 22.18 69.8291 22.145 69.9491 22.215L71.239 22.995C71.359 23.065 71.394 23.22 71.324 23.34C71.279 23.415 71.194 23.46 71.109 23.46ZM70.974 29.76C70.929 29.76 70.884 29.75 70.844 29.72L69.5741 28.925C69.4591 28.85 69.4191 28.695 69.4941 28.58C69.5691 28.46 69.7241 28.43 69.8391 28.5L71.109 29.295C71.224 29.37 71.264 29.525 71.189 29.64C71.144 29.715 71.059 29.76 70.979 29.76H70.974ZM68.4291 28.17C68.3841 28.17 68.3391 28.16 68.2991 28.13L67.0292 27.335C66.9142 27.26 66.8742 27.105 66.9492 26.99C67.0242 26.875 67.1792 26.84 67.2941 26.91L68.5641 27.705C68.6791 27.78 68.7191 27.935 68.6441 28.05C68.5991 28.125 68.5141 28.17 68.4341 28.17H68.4291ZM72.099 38.565C72.029 38.565 71.954 38.535 71.909 38.475C71.649 38.16 71.304 37.805 70.889 37.42C70.789 37.325 70.784 37.17 70.874 37.065C70.964 36.96 71.124 36.96 71.229 37.05C71.664 37.45 72.019 37.82 72.294 38.155C72.384 38.26 72.369 38.42 72.259 38.505C72.214 38.545 72.154 38.565 72.099 38.565ZM69.9191 36.505C69.8641 36.505 69.8091 36.485 69.7591 36.45C69.3841 36.14 68.9891 35.83 68.5841 35.525C68.4741 35.44 68.4541 35.285 68.5391 35.175C68.6241 35.065 68.7791 35.045 68.8891 35.13C69.2941 35.44 69.6941 35.755 70.0791 36.065C70.1841 36.15 70.1991 36.31 70.1141 36.415C70.0641 36.475 69.9941 36.505 69.9191 36.505ZM67.5341 34.68C67.4841 34.68 67.4341 34.665 67.3891 34.635C66.9692 34.33 66.5542 34.04 66.1642 33.77C66.0492 33.69 66.0242 33.535 66.0992 33.42C66.1792 33.305 66.3342 33.275 66.4492 33.355C66.8392 33.625 67.2542 33.92 67.6791 34.225C67.7891 34.305 67.8191 34.46 67.7341 34.575C67.6841 34.645 67.6091 34.68 67.5291 34.68H67.5341ZM65.0642 32.97C65.0142 32.97 64.9692 32.955 64.9242 32.93C64.1642 32.425 63.6693 32.11 63.6693 32.11C63.5543 32.035 63.5193 31.88 63.5893 31.765C63.6643 31.65 63.8193 31.615 63.9343 31.685C63.9343 31.685 64.4342 32 65.2042 32.51C65.3192 32.585 65.3492 32.74 65.2742 32.855C65.2242 32.925 65.1492 32.965 65.0642 32.965V32.97Z\" fill=\"black\"/>%0D%0A<path d=\"M51.3748 32.205C51.3448 32.205 51.3198 32.205 51.2898 32.19C51.0298 32.095 50.5348 31.68 50.0548 31.155C49.9598 31.055 49.9698 30.895 50.0698 30.8C50.1698 30.705 50.3298 30.715 50.4248 30.815C50.9648 31.405 51.3648 31.68 51.4648 31.72C51.5948 31.765 51.6598 31.91 51.6148 32.04C51.5798 32.14 51.4798 32.205 51.3798 32.205H51.3748ZM49.3198 30.05C49.2398 30.05 49.1598 30.01 49.1098 29.935C48.8198 29.485 48.5798 29.02 48.3948 28.56C48.3448 28.43 48.4048 28.285 48.5348 28.235C48.6648 28.185 48.8098 28.245 48.8598 28.375C49.0298 28.805 49.2548 29.235 49.5298 29.66C49.6048 29.775 49.5698 29.93 49.4548 30.005C49.4148 30.03 49.3648 30.045 49.3198 30.045V30.05ZM48.2498 27.275C48.1248 27.275 48.0198 27.18 47.9998 27.055C47.9748 26.855 47.9648 26.65 47.9648 26.45C47.9648 26.125 47.9998 25.8 48.0648 25.48C48.0948 25.345 48.2248 25.26 48.3598 25.285C48.4948 25.315 48.5798 25.445 48.5548 25.58C48.4948 25.865 48.4648 26.155 48.4648 26.45C48.4648 26.63 48.4748 26.815 48.4948 26.995C48.5098 27.13 48.4148 27.255 48.2748 27.275C48.2648 27.275 48.2548 27.275 48.2448 27.275H48.2498ZM48.8398 24.385C48.7998 24.385 48.7548 24.375 48.7148 24.35C48.5948 24.28 48.5548 24.13 48.6198 24.01C48.7398 23.795 48.8798 23.585 49.0348 23.38C49.1998 23.16 49.3698 22.955 49.5348 22.76C49.6248 22.655 49.7848 22.645 49.8898 22.735C49.9948 22.825 50.0048 22.985 49.9148 23.09C49.7548 23.275 49.5948 23.47 49.4348 23.68C49.2948 23.87 49.1648 24.06 49.0548 24.255C49.0098 24.335 48.9248 24.38 48.8398 24.38V24.385ZM55.0298 23.64C54.8898 23.64 54.7798 23.53 54.7798 23.39C54.7798 23.25 54.8898 23.14 55.0298 23.14C55.3848 23.14 55.5948 22.94 55.5948 22.61C55.5948 22.555 55.5898 22.495 55.5748 22.43C55.5498 22.295 55.6398 22.165 55.7748 22.14C55.9048 22.115 56.0398 22.205 56.0648 22.34C56.0848 22.435 56.0898 22.525 56.0898 22.61C56.0898 23.22 55.6548 23.64 55.0298 23.64ZM53.7348 22.97C53.6648 22.97 53.5998 22.94 53.5498 22.885C53.3248 22.635 53.1348 22.33 52.9798 21.985C52.9098 21.83 52.8498 21.66 52.7948 21.48C52.7548 21.35 52.8298 21.21 52.9598 21.17C53.0948 21.13 53.2298 21.205 53.2698 21.335C53.3198 21.495 53.3748 21.645 53.4348 21.785C53.5648 22.08 53.7298 22.34 53.9198 22.55C54.0098 22.655 54.0048 22.81 53.8998 22.905C53.8498 22.95 53.7948 22.97 53.7348 22.97ZM50.8048 22.14C50.7298 22.14 50.6598 22.11 50.6098 22.045C50.5248 21.935 50.5398 21.78 50.6498 21.695C51.0848 21.35 51.5348 21.075 51.9848 20.885C52.1098 20.83 52.2598 20.885 52.3148 21.015C52.3698 21.14 52.3098 21.29 52.1848 21.345C51.7748 21.52 51.3648 21.77 50.9648 22.085C50.9198 22.12 50.8648 22.14 50.8098 22.14H50.8048ZM54.9648 21.45C54.9198 21.45 54.8698 21.435 54.8298 21.41C54.4648 21.18 54.0198 21.055 53.5348 21.05C53.3948 21.05 53.2848 20.935 53.2848 20.8C53.2848 20.66 53.3948 20.55 53.5348 20.55C54.1098 20.55 54.6498 20.705 55.0948 20.99C55.2098 21.065 55.2448 21.22 55.1698 21.335C55.1198 21.41 55.0398 21.45 54.9598 21.45H54.9648ZM52.8098 20.17C52.6698 20.17 52.5598 20.065 52.5598 19.925V19.91C52.5598 19.375 52.6398 18.855 52.7948 18.37C52.8348 18.24 52.9798 18.165 53.1098 18.205C53.2398 18.245 53.3148 18.39 53.2748 18.52C53.1348 18.96 53.0648 19.425 53.0648 19.91C53.0648 20.05 52.9548 20.165 52.8148 20.165L52.8098 20.17ZM53.7248 17.38C53.6698 17.38 53.6148 17.365 53.5698 17.325C53.4598 17.24 53.4398 17.085 53.5248 16.975C53.8398 16.57 54.2348 16.215 54.6898 15.915C54.8048 15.84 54.9598 15.87 55.0348 15.99C55.1098 16.105 55.0748 16.26 54.9598 16.335C54.5498 16.6 54.1998 16.92 53.9198 17.285C53.8698 17.35 53.7948 17.38 53.7248 17.38ZM56.1798 15.735C56.0748 15.735 55.9798 15.67 55.9448 15.565C55.8998 15.435 55.9698 15.295 56.1048 15.25C56.5648 15.1 57.0698 14.98 57.6048 14.905C57.7348 14.885 57.8698 14.98 57.8898 15.115C57.9098 15.25 57.8148 15.38 57.6798 15.4C57.1698 15.475 56.6948 15.585 56.2648 15.725C56.2398 15.735 56.2098 15.74 56.1848 15.74L56.1798 15.735Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M55.7846 11.56C55.7496 11.56 55.7146 11.555 55.6796 11.535C55.5546 11.475 55.4996 11.33 55.5546 11.205C56.9596 8.145 59.4396 9.105 59.4646 9.115C59.5946 9.165 59.6546 9.31 59.6046 9.44C59.5546 9.565 59.4096 9.63 59.2796 9.58C59.1946 9.545 57.2096 8.795 56.0096 11.415C55.9696 11.505 55.8796 11.56 55.7846 11.56ZM55.2246 9.215C56.2246 7.4 57.6146 7.72 57.6746 7.73C57.8096 7.76 57.9446 7.68 57.9796 7.55C58.0146 7.415 57.9346 7.28 57.7996 7.245C57.7796 7.245 55.9796 6.81 54.7896 8.97C54.7246 9.09 54.7646 9.245 54.8896 9.31C54.9296 9.33 54.9696 9.34 55.0096 9.34C55.0996 9.34 55.1846 9.295 55.2296 9.21L55.2246 9.215Z\" fill=\"black\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198Z\" fill=\"white\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198ZM61.2898 12.54C61.2898 12.54 61.3547 12.49 61.3897 12.455C61.4947 12.355 61.4947 12.335 61.4247 12.215C61.4047 12.18 61.3797 12.15 61.3547 12.12C60.9847 11.715 60.5198 11.47 59.9898 11.34C59.8348 11.3 59.6798 11.29 59.5198 11.325C59.3998 11.35 59.3047 11.405 59.2447 11.515C59.0797 11.825 59.1597 12.255 59.4247 12.485C59.9247 12.925 60.7148 12.955 61.2898 12.54ZM61.7898 13.24C61.2898 13.62 61.0797 14.285 61.2647 14.9C61.3797 15.28 61.6847 15.505 62.0847 15.5C62.2697 15.5 62.3947 15.42 62.4747 15.255C62.5397 15.12 62.5698 14.975 62.5798 14.83C62.6098 14.365 62.5297 13.92 62.3347 13.5C62.2797 13.385 62.1998 13.28 62.1248 13.175C62.0848 13.12 62.0298 13.11 61.9698 13.145C61.9098 13.18 61.8498 13.215 61.7898 13.25V13.24ZM60.6648 14.885C60.0398 14.455 59.5998 13.895 59.3598 13.175C59.1298 13.515 59.1798 14.085 59.4698 14.46C59.7498 14.825 60.2898 15.015 60.6648 14.88V14.885ZM60.9197 14.09C60.9197 14.09 60.9298 14.07 60.9298 14.065C60.9948 13.775 61.1248 13.515 61.3098 13.285C61.3198 13.27 61.3248 13.23 61.3098 13.215C61.2648 13.145 61.2148 13.08 61.1648 13.015C61.1398 12.98 61.1097 12.975 61.0697 12.99C60.8047 13.1 60.5248 13.145 60.2398 13.125C60.2248 13.125 60.2098 13.125 60.1848 13.125C60.3498 13.51 60.5948 13.825 60.9148 14.085L60.9197 14.09Z\" fill=\"black\"/>%0D%0A<path d=\"M62.0797 15.86C61.6847 15.86 61.2097 15.68 60.9847 15.17C60.9397 15.19 60.8997 15.205 60.8547 15.22C60.3197 15.375 59.8297 15.265 59.3947 14.9C59.3597 14.87 59.3447 14.865 59.3047 14.875C59.1997 14.905 59.1147 14.92 59.0397 14.93C58.9897 14.935 58.9247 14.92 58.8847 14.885C58.8597 14.865 58.8047 14.805 58.8697 14.695C58.8847 14.665 58.9047 14.635 58.9197 14.605C58.9447 14.555 58.9747 14.5 59.0047 14.455C59.0197 14.43 59.0197 14.415 59.0047 14.38C58.7947 13.915 58.8047 13.455 59.0347 13.015C59.0697 12.945 59.1197 12.88 59.1597 12.82C59.1697 12.805 59.1797 12.79 59.1947 12.77L59.1597 12.74C58.7247 12.345 58.7247 11.75 58.9097 11.37C59.0197 11.14 59.2197 11 59.5047 10.96C59.8347 10.915 60.1397 10.995 60.3697 11.075C60.6547 11.175 60.9347 11.32 61.2047 11.51C61.3647 11.35 61.5447 11.255 61.7597 11.22C62.0197 11.175 62.2797 11.23 62.5347 11.365C62.5447 11.365 62.5497 11.37 62.5497 11.37C62.5497 11.37 62.5497 11.37 62.5597 11.36C62.8697 10.995 62.9547 10.59 62.8147 10.12C62.7797 9.99999 62.8147 9.89999 62.8997 9.84999C62.9597 9.81499 63.0247 9.80999 63.0797 9.83499C63.1397 9.85999 63.1897 9.90999 63.2147 9.98499C63.3597 10.43 63.3347 10.855 63.1397 11.255C63.0897 11.36 63.0247 11.455 62.9597 11.545C62.9397 11.575 62.9197 11.605 62.8997 11.64L63.1447 11.97L63.1697 11.96C63.2197 11.94 63.2747 11.915 63.3297 11.9C63.8497 11.74 64.3447 11.815 64.8097 12.13C64.8697 12.17 64.9097 12.225 64.9197 12.285C64.9297 12.34 64.9197 12.395 64.8847 12.44C64.8147 12.54 64.6897 12.56 64.5697 12.48C64.1647 12.21 63.7497 12.17 63.3047 12.365C63.2947 12.365 63.2947 12.37 63.2997 12.385C63.3697 12.735 63.3197 13.035 63.1397 13.3C63.0547 13.425 62.9347 13.53 62.7897 13.61H62.7797C62.7847 13.64 62.7947 13.67 62.7997 13.695C62.8247 13.785 62.8497 13.875 62.8697 13.965C62.9597 14.365 62.9747 14.72 62.9197 15.055C62.8747 15.31 62.7897 15.5 62.6497 15.645C62.5197 15.785 62.3447 15.86 62.1397 15.87C62.1197 15.87 62.0997 15.87 62.0797 15.87V15.86ZM61.0447 15.015L61.0697 15.06C61.0697 15.06 61.0847 15.09 61.0897 15.1C61.2997 15.595 61.7647 15.755 62.1347 15.735C62.3097 15.725 62.4497 15.665 62.5597 15.55C62.6797 15.42 62.7547 15.255 62.7947 15.02C62.8497 14.705 62.8347 14.365 62.7447 13.98C62.7247 13.895 62.6997 13.805 62.6747 13.72C62.6647 13.68 62.6497 13.635 62.6397 13.59L62.6247 13.545L62.7197 13.49C62.8497 13.42 62.9497 13.335 63.0247 13.22C63.1847 12.985 63.2297 12.715 63.1647 12.4C63.1547 12.345 63.1547 12.28 63.2447 12.24C63.7247 12.03 64.1897 12.07 64.6297 12.365C64.6897 12.405 64.7397 12.405 64.7697 12.355C64.7847 12.335 64.7897 12.315 64.7847 12.295C64.7847 12.27 64.7597 12.24 64.7297 12.22C64.2997 11.93 63.8397 11.86 63.3597 12.005C63.3097 12.02 63.2597 12.04 63.2097 12.06L63.0947 12.105L62.7397 11.63L62.7647 11.595C62.7947 11.55 62.8247 11.505 62.8497 11.465C62.9147 11.37 62.9747 11.28 63.0197 11.185C63.1997 10.82 63.2247 10.425 63.0897 10.01C63.0797 9.97499 63.0597 9.94999 63.0297 9.93999C63.0047 9.92999 62.9797 9.93499 62.9547 9.94999C62.9397 9.95999 62.8947 9.98499 62.9247 10.075C63.0747 10.58 62.9847 11.035 62.6497 11.43C62.5947 11.49 62.5397 11.5 62.4697 11.46C62.2397 11.335 62.0097 11.29 61.7747 11.325C61.5747 11.355 61.4047 11.455 61.2547 11.615L61.2197 11.655L61.1547 11.61C61.1547 11.61 61.1347 11.595 61.1247 11.59C60.8647 11.41 60.5947 11.27 60.3197 11.175C60.1047 11.1 59.8197 11.02 59.5147 11.065C59.2747 11.1 59.1097 11.21 59.0147 11.405C58.8497 11.745 58.8497 12.275 59.2347 12.63L59.3447 12.735L59.3147 12.78C59.2947 12.815 59.2697 12.845 59.2497 12.875C59.2047 12.935 59.1647 12.995 59.1297 13.06C58.9197 13.465 58.9097 13.89 59.1047 14.315C59.1247 14.365 59.1447 14.43 59.0947 14.505C59.0647 14.55 59.0397 14.6 59.0147 14.65C58.9997 14.68 58.9797 14.715 58.9647 14.745C58.9497 14.77 58.9547 14.78 58.9547 14.78C58.9697 14.79 58.9947 14.8 59.0097 14.795C59.0847 14.785 59.1597 14.77 59.2597 14.74C59.3347 14.72 59.3947 14.735 59.4597 14.79C59.8597 15.13 60.3097 15.23 60.7997 15.085C60.8397 15.075 60.8797 15.06 60.9197 15.04L61.0297 15L61.0447 15.015ZM62.0847 15.56C61.6597 15.56 61.3297 15.32 61.2097 14.915C61.0197 14.28 61.2397 13.585 61.7547 13.19H61.7597L61.9397 13.085C62.0297 13.03 62.1197 13.055 62.1747 13.135C62.1897 13.16 62.2097 13.185 62.2297 13.21C62.2897 13.29 62.3497 13.375 62.3897 13.47C62.5897 13.9 62.6697 14.36 62.6397 14.83C62.6297 15 62.5947 15.145 62.5297 15.28C62.4397 15.465 62.2897 15.56 62.0847 15.56ZM61.8297 13.29C61.3547 13.655 61.1547 14.295 61.3297 14.875C61.4347 15.23 61.7097 15.435 62.0847 15.435C62.2447 15.435 62.3497 15.37 62.4197 15.225C62.4747 15.105 62.5097 14.975 62.5197 14.82C62.5497 14.365 62.4697 13.93 62.2797 13.52C62.2397 13.435 62.1847 13.36 62.1297 13.28C62.1097 13.255 62.0947 13.23 62.0747 13.2C62.0597 13.175 62.0397 13.165 62.0047 13.185L61.8297 13.285V13.29ZM60.4097 14.99C60.0547 14.99 59.6597 14.8 59.4297 14.5C59.1197 14.1 59.0697 13.505 59.3147 13.14L59.3847 13.035L59.4247 13.155C59.6597 13.855 60.0797 14.405 60.7047 14.83L60.8047 14.9L60.6897 14.94C60.5997 14.97 60.5047 14.985 60.4047 14.985L60.4097 14.99ZM59.3547 13.33C59.2147 13.65 59.2797 14.105 59.5247 14.425C59.7597 14.725 60.1897 14.905 60.5247 14.86C59.9847 14.46 59.5897 13.945 59.3547 13.33ZM60.9547 14.175L60.8897 14.14C60.5547 13.87 60.3097 13.545 60.1397 13.155L60.0997 13.07H60.1947C60.2297 13.07 60.2397 13.07 60.2597 13.07C60.5347 13.09 60.8047 13.045 61.0597 12.94C61.1297 12.91 61.1897 12.925 61.2297 12.985L61.2647 13.035C61.3047 13.085 61.3397 13.135 61.3747 13.19C61.3997 13.23 61.3947 13.295 61.3697 13.335C61.1897 13.56 61.0647 13.815 61.0047 14.09L60.9947 14.12L60.9597 14.185L60.9547 14.175ZM60.2947 13.195C60.4397 13.5 60.6397 13.755 60.8947 13.98C60.9647 13.715 61.0897 13.465 61.2697 13.245C61.2347 13.2 61.1997 13.15 61.1647 13.1L61.1297 13.05C61.1297 13.05 61.1197 13.045 61.1047 13.05C60.8447 13.16 60.5697 13.205 60.2947 13.195ZM60.3797 12.895C60.0197 12.895 59.6597 12.77 59.3847 12.53C59.0997 12.28 59.0147 11.82 59.1947 11.485C59.2547 11.365 59.3647 11.29 59.5097 11.26C59.6647 11.225 59.8297 11.235 60.0047 11.275C60.5697 11.415 61.0397 11.68 61.3997 12.07C61.4297 12.1 61.4547 12.135 61.4797 12.175C61.5697 12.325 61.5597 12.375 61.4347 12.495C61.4097 12.52 61.3797 12.545 61.3597 12.56L61.3297 12.585C61.0447 12.79 60.7097 12.89 60.3797 12.89V12.895ZM59.7147 11.365C59.6547 11.365 59.5947 11.37 59.5347 11.385C59.4247 11.41 59.3497 11.46 59.3047 11.545C59.1547 11.835 59.2247 12.225 59.4697 12.44C59.9547 12.865 60.7047 12.89 61.2597 12.495L61.2847 12.475C61.2847 12.475 61.3297 12.435 61.3547 12.415C61.4047 12.365 61.4114 12.31 61.3747 12.25C61.3547 12.22 61.3347 12.19 61.3097 12.165C60.9597 11.785 60.5247 11.54 59.9747 11.405C59.8797 11.385 59.7947 11.37 59.7097 11.37L59.7147 11.365Z\" fill=\"black\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.9091 17.015L86.109 18.425C86.5391 18.615 86.7041 19.135 86.4691 19.54L81.544 28.025C81.349 28.365 80.929 28.505 80.569 28.36L78.759 27.62C78.364 27.46 78.169 27.01 78.324 26.61L81.854 17.45C82.014 17.03 82.494 16.835 82.904 17.015H82.9091ZM79.219 28.62C78.299 28.245 77.249 28.685 76.874 29.605C76.499 30.525 76.939 31.575 77.859 31.95C78.779 32.325 79.829 31.885 80.204 30.965C80.579 30.045 80.139 28.995 79.219 28.62Z\" fill=\"%23F82C13\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "directive", type: i3.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i3.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i4.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i6.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i6.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i6.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i7.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: SdLabel, selector: "sd-label", inputs: ["label", "description", "required", "helperText"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
504
510
|
}
|
|
505
511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdSelect, decorators: [{
|
|
506
512
|
type: Component,
|
|
@@ -516,7 +522,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
516
522
|
MatCheckboxModule,
|
|
517
523
|
MatProgressSpinnerModule,
|
|
518
524
|
SdLabel,
|
|
519
|
-
], template: "@if (!appearance && sdLabelDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"sdLabelDef?.templateRef!\"> </ng-container>\r\n}\r\n@if (!appearance && label && !sdLabelDef?.templateRef) {\r\n <sd-label [label]=\"label\" [required]=\"required\"></sd-label>\r\n}\r\n<div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"sdViewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n aria-hidden=\"true\">\r\n @if (sdViewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n sdViewDef!.templateRef;\r\n context: {\r\n value: formControl.value,\r\n selectedItems: selectedItems | async\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size === 'md'\"\r\n [class.sd-sm]=\"size === 'sm'\"\r\n [class.hide-inline-error]=\"hideInlineError\"\r\n [appearance]=\"appearance\">\r\n @if (appearance && label) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ label }}</span>\r\n @if (helperText) {\r\n <mat-icon [matTooltip]=\"helperText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n \r\n @if (multiple) {\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n multiple\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value?.length\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !formControl.value?.length\"\r\n [matTooltip]=\"tooltip\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n } @else {\r\n \r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value !== undefined && formControl.value !== null\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n }\r\n\r\n @if (\r\n (multiple ? formControl.value?.length : formControl.value !== undefined && formControl.value !== null) &&\r\n !required &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"/>\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\"/>\r\n </svg>\r\n </span>\r\n }\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n</div>", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"97\" height=\"96\" viewBox=\"0 0 97 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M17.9657 72.84C8.63101 65.685 2.2812 55.23 0.806245 43.55C-0.773708 31.025 3.06618 15.9 28.8604 12.175C77.634 5.13499 110.693 47.8 90.4436 68.9C73.2191 86.85 41.73 91.05 17.9657 72.835V72.84Z\" fill=\"%23F2F2F2\"/>%0D%0A<path d=\"M68.8944 62.84H27.5107L22.1708 47.51C22.0558 47.185 22.3008 46.845 22.6408 46.845H74.3343C74.6843 46.845 74.9293 47.195 74.7993 47.525L68.8944 62.84Z\" fill=\"black\"/>%0D%0A<path d=\"M68.8943 63.09H27.5106C27.4056 63.09 27.3106 63.025 27.2756 62.92L21.9357 47.59C21.8557 47.36 21.8907 47.105 22.0307 46.91C22.1707 46.715 22.4007 46.595 22.6407 46.595H74.3342C74.5792 46.595 74.8142 46.715 74.9542 46.92C75.0942 47.125 75.1242 47.385 75.0342 47.615L69.1293 62.93C69.0943 63.025 68.9993 63.09 68.8943 63.09ZM27.6906 62.59H68.7243L74.5692 47.435C74.5992 47.355 74.5892 47.27 74.5442 47.205C74.4992 47.135 74.4192 47.095 74.3392 47.095H22.6407C22.5607 47.095 22.4857 47.135 22.4357 47.2C22.3857 47.265 22.3757 47.35 22.4057 47.425L27.6906 62.585V62.59Z\" fill=\"black\"/>%0D%0A<path d=\"M15.8561 58.295L10.5811 58.925C10.2511 58.965 9.98106 58.66 10.0611 58.335L10.7411 55.6C10.8111 55.31 11.1311 55.155 11.4061 55.28L16.0061 57.39C16.4461 57.59 16.3411 58.245 15.8611 58.3L15.8561 58.295ZM17.5611 55.435L16.6161 49.065C16.5611 48.685 16.1761 48.455 15.8161 48.58L12.4261 49.755C12.0261 49.895 11.8861 50.395 12.1561 50.72L16.4911 55.915C16.8861 56.385 17.6511 56.045 17.5611 55.435Z\" fill=\"%234CAF50\"/>%0D%0A<path d=\"M34.81 33.265C34.81 33.265 44.2198 36.035 49.1596 35.715L53.0745 40.145C53.0745 40.145 47.3047 59.815 46.5097 61.8C46.5097 61.8 38.1299 59.175 26.4253 58.005C26.4253 58.005 31.5651 46.315 34.805 33.27L34.81 33.265Z\" fill=\"white\"/>%0D%0A<path d=\"M46.6996 61.525C46.6746 61.525 46.6446 61.525 46.6196 61.51C46.4896 61.465 46.4196 61.325 46.4646 61.195C46.6346 60.69 46.8946 59.89 47.2296 58.81C47.2696 58.68 47.4095 58.605 47.5445 58.645C47.6745 58.685 47.7495 58.825 47.7095 58.96C47.3745 60.04 47.1146 60.845 46.9396 61.355C46.9046 61.46 46.8046 61.525 46.7046 61.525H46.6996ZM44.6346 61.525C44.6346 61.525 44.5896 61.525 44.5696 61.515C43.9146 61.34 43.1047 61.13 42.1497 60.905C42.0147 60.875 41.9347 60.74 41.9647 60.605C41.9947 60.47 42.1297 60.385 42.2647 60.42C43.2247 60.65 44.0396 60.86 44.6946 61.035C44.8296 61.07 44.9096 61.21 44.8696 61.34C44.8396 61.45 44.7396 61.525 44.6296 61.525H44.6346ZM39.7698 60.36C39.7698 60.36 39.7348 60.36 39.7148 60.355C38.9548 60.19 38.1348 60.025 37.2698 59.855C37.1349 59.83 37.0449 59.695 37.0699 59.56C37.0949 59.425 37.2348 59.335 37.3648 59.36C38.2348 59.53 39.0548 59.695 39.8198 59.86C39.9548 59.89 40.0398 60.02 40.0098 60.155C39.9848 60.27 39.8798 60.35 39.7648 60.35L39.7698 60.36ZM34.8599 59.41C34.8599 59.41 34.8299 59.41 34.8149 59.41C34.0249 59.275 33.2 59.14 32.35 59.01C32.215 58.99 32.12 58.86 32.14 58.725C32.16 58.59 32.29 58.495 32.425 58.515C33.28 58.645 34.1049 58.78 34.8999 58.915C35.0349 58.94 35.1299 59.07 35.1049 59.205C35.0849 59.325 34.9799 59.415 34.8599 59.415V59.41ZM29.9151 58.66C29.9151 58.66 29.8951 58.66 29.8801 58.66C29.0751 58.555 28.2501 58.455 27.4001 58.365C27.2651 58.35 27.1651 58.225 27.1801 58.09C27.1951 57.955 27.3201 57.855 27.4551 57.87C28.3051 57.965 29.1351 58.065 29.9451 58.17C30.0801 58.19 30.1801 58.315 30.1601 58.45C30.1451 58.575 30.0351 58.67 29.9101 58.67L29.9151 58.66ZM27.0101 56.885C26.9801 56.885 26.9452 56.88 26.9152 56.865C26.7852 56.81 26.7252 56.665 26.7802 56.54C27.0301 55.94 27.3501 55.16 27.7201 54.225C27.7701 54.095 27.9151 54.035 28.0451 54.085C28.1751 54.135 28.2351 54.28 28.1851 54.41C27.8101 55.35 27.4901 56.13 27.2451 56.735C27.2051 56.83 27.1101 56.89 27.0151 56.89L27.0101 56.885ZM48.2045 56.745C48.2045 56.745 48.1545 56.745 48.1295 56.735C47.9995 56.695 47.9245 56.555 47.9645 56.425C48.1945 55.665 48.4395 54.86 48.6895 54.025C48.7295 53.895 48.8695 53.815 48.9995 53.86C49.1295 53.9 49.2045 54.04 49.1645 54.17C48.9145 55 48.6695 55.81 48.4395 56.57C48.4045 56.68 48.3095 56.745 48.1995 56.745H48.2045ZM28.8551 52.235C28.8251 52.235 28.7951 52.23 28.7651 52.22C28.6351 52.17 28.5701 52.025 28.6201 51.9C28.8951 51.17 29.1901 50.39 29.4951 49.56C29.5401 49.43 29.6901 49.365 29.8151 49.41C29.9451 49.455 30.0101 49.6 29.9651 49.73C29.6601 50.565 29.3701 51.35 29.0901 52.08C29.0501 52.18 28.9551 52.24 28.8551 52.24V52.235ZM49.6495 51.95C49.6495 51.95 49.5995 51.95 49.5795 51.94C49.4495 51.9 49.3695 51.76 49.4145 51.63L50.1295 49.23C50.1695 49.1 50.3045 49.025 50.4395 49.06C50.5695 49.1 50.6495 49.24 50.6095 49.37L49.8895 51.77C49.8595 51.88 49.7595 51.95 49.6495 51.95ZM30.575 47.535C30.55 47.535 30.52 47.535 30.49 47.52C30.36 47.475 30.2901 47.33 30.335 47.2C30.6 46.44 30.87 45.65 31.145 44.835C31.19 44.705 31.33 44.63 31.46 44.68C31.59 44.725 31.66 44.865 31.615 44.995C31.34 45.81 31.07 46.6 30.805 47.365C30.77 47.47 30.67 47.53 30.57 47.53L30.575 47.535ZM51.0844 47.145C51.0844 47.145 51.0394 47.145 51.0144 47.135C50.8844 47.095 50.8044 46.955 50.8444 46.825L51.5544 44.42C51.5944 44.29 51.7344 44.21 51.8644 44.25C51.9944 44.29 52.0744 44.43 52.0344 44.56L51.3244 46.965C51.2944 47.075 51.1944 47.145 51.0844 47.145ZM32.165 42.79C32.165 42.79 32.115 42.79 32.09 42.78C31.96 42.74 31.885 42.595 31.93 42.465C32.18 41.685 32.425 40.89 32.67 40.08C32.71 39.95 32.85 39.875 32.98 39.915C33.11 39.955 33.185 40.095 33.145 40.225C32.9 41.04 32.65 41.835 32.4 42.62C32.365 42.725 32.27 42.795 32.16 42.795L32.165 42.79ZM52.5044 42.335C52.5044 42.335 52.4594 42.335 52.4344 42.325C52.3044 42.285 52.2244 42.145 52.2644 42.015L52.7944 40.215L52.5544 39.945C52.4644 39.84 52.4744 39.685 52.5744 39.59C52.6744 39.5 52.8344 39.505 52.9294 39.61L53.2594 39.985C53.3144 40.05 53.3344 40.14 53.3094 40.22L52.7394 42.155C52.7094 42.265 52.6094 42.335 52.4994 42.335H52.5044ZM51.0894 38.155C51.0194 38.155 50.9494 38.125 50.8994 38.07L49.2445 36.195C49.1545 36.09 49.1645 35.935 49.2645 35.84C49.3645 35.75 49.5245 35.755 49.6195 35.86L51.2744 37.735C51.3644 37.84 51.3544 37.995 51.2544 38.09C51.2094 38.13 51.1494 38.15 51.0894 38.15V38.155ZM33.615 38C33.615 38 33.57 38 33.545 37.99C33.41 37.95 33.335 37.815 33.375 37.68C33.6 36.885 33.8249 36.085 34.0399 35.275C34.0749 35.14 34.2099 35.06 34.3449 35.095C34.4799 35.13 34.5599 35.265 34.5249 35.4C34.3099 36.215 34.0849 37.02 33.8599 37.815C33.8299 37.925 33.7299 37.995 33.62 37.995L33.615 38ZM47.0746 35.955C47.0746 35.955 47.0646 35.955 47.0596 35.955C46.3096 35.905 45.4646 35.815 44.5546 35.685C44.4196 35.665 44.3246 35.54 44.3446 35.4C44.3646 35.26 44.4946 35.17 44.6296 35.19C45.5296 35.32 46.3596 35.405 47.0996 35.455C47.2395 35.465 47.3395 35.585 47.3345 35.72C47.3245 35.85 47.2146 35.955 47.0846 35.955H47.0746ZM42.1197 35.275C42.1197 35.275 42.0897 35.275 42.0747 35.275C41.2897 35.125 40.4648 34.95 39.6148 34.76C39.4798 34.73 39.3948 34.595 39.4248 34.46C39.4548 34.325 39.5898 34.24 39.7248 34.27C40.5647 34.46 41.3897 34.63 42.1647 34.78C42.2997 34.805 42.3897 34.935 42.3647 35.07C42.3397 35.19 42.2347 35.275 42.1197 35.275ZM37.2348 34.175C37.2348 34.175 37.1948 34.175 37.1748 34.165C35.7249 33.795 34.7549 33.51 34.7449 33.51C34.6149 33.47 34.5349 33.33 34.5749 33.2C34.6149 33.07 34.7499 32.995 34.8849 33.03C34.8949 33.03 35.8549 33.315 37.2948 33.68C37.4298 33.715 37.5098 33.85 37.4748 33.985C37.4448 34.1 37.3448 34.175 37.2348 34.175ZM46.3096 41.255C46.3096 41.255 46.2796 41.255 46.2646 41.255L45.3196 41.08C45.1846 41.055 45.0946 40.925 45.1196 40.79C45.1446 40.655 45.2746 40.565 45.4096 40.59L46.3546 40.765C46.4896 40.79 46.5796 40.92 46.5546 41.055C46.5346 41.175 46.4296 41.26 46.3096 41.26V41.255ZM43.8896 40.805C43.8896 40.805 43.8597 40.805 43.8447 40.805L42.3697 40.53C42.2347 40.505 42.1447 40.375 42.1697 40.24C42.1947 40.105 42.3247 40.015 42.4597 40.04L43.9347 40.315C44.0696 40.34 44.1596 40.47 44.1346 40.605C44.1146 40.725 44.0096 40.81 43.8896 40.81V40.805ZM40.9397 40.255C40.9397 40.255 40.9097 40.255 40.8947 40.255L39.4198 39.98C39.2848 39.955 39.1948 39.825 39.2198 39.69C39.2448 39.555 39.3748 39.465 39.5098 39.49L40.9847 39.765C41.1197 39.79 41.2097 39.92 41.1847 40.055C41.1647 40.175 41.0597 40.26 40.9397 40.26V40.255ZM37.9898 39.705C37.9898 39.705 37.9598 39.705 37.9448 39.705L36.4699 39.43C36.3349 39.405 36.2449 39.275 36.2699 39.14C36.2949 39.005 36.4249 38.915 36.5599 38.94L38.0348 39.215C38.1698 39.24 38.2598 39.37 38.2348 39.505C38.2148 39.625 38.1098 39.71 37.9898 39.71V39.705ZM45.1546 45.82C45.1546 45.82 45.1246 45.82 45.1096 45.82L44.3396 45.675C44.2046 45.65 44.1146 45.52 44.1396 45.385C44.1646 45.25 44.2946 45.16 44.4296 45.185L45.1996 45.33C45.3346 45.355 45.4246 45.485 45.3996 45.62C45.3746 45.74 45.2746 45.825 45.1546 45.825V45.82ZM42.9097 45.395C42.9097 45.395 42.8797 45.395 42.8647 45.395L41.3897 45.115C41.2547 45.09 41.1647 44.96 41.1897 44.825C41.2147 44.69 41.3447 44.6 41.4797 44.625L42.9547 44.905C43.0897 44.93 43.1797 45.06 43.1547 45.195C43.1297 45.315 43.0297 45.4 42.9097 45.4V45.395ZM39.9648 44.835C39.9648 44.835 39.9348 44.835 39.9198 44.835L38.4448 44.555C38.3098 44.53 38.2198 44.4 38.2448 44.265C38.2698 44.13 38.3998 44.04 38.5348 44.065L40.0098 44.345C40.1448 44.37 40.2348 44.5 40.2098 44.635C40.1848 44.755 40.0848 44.84 39.9648 44.84V44.835ZM37.0199 44.275C37.0199 44.275 36.9899 44.275 36.9749 44.275L35.4999 43.995C35.3649 43.97 35.2749 43.84 35.2999 43.705C35.3249 43.57 35.4549 43.48 35.5899 43.505L37.0649 43.785C37.1998 43.81 37.2898 43.94 37.2648 44.075C37.2398 44.195 37.1398 44.28 37.0199 44.28V44.275ZM37.8898 51.275C37.8898 51.275 37.8598 51.275 37.8448 51.275L36.3699 51C36.2349 50.975 36.1449 50.845 36.1699 50.71C36.1949 50.575 36.3299 50.485 36.4599 50.51L37.9348 50.785C38.0698 50.81 38.1598 50.94 38.1348 51.075C38.1148 51.195 38.0098 51.28 37.8898 51.28V51.275ZM34.9399 50.72C34.9399 50.72 34.9099 50.72 34.8949 50.72L33.42 50.445C33.285 50.42 33.195 50.29 33.22 50.155C33.245 50.02 33.38 49.93 33.51 49.955L34.9849 50.23C35.1199 50.255 35.2099 50.385 35.1849 50.52C35.1649 50.64 35.0599 50.725 34.9399 50.725V50.72ZM46.0446 52.975C46.0446 52.975 46.0146 52.975 45.9946 52.975L44.5246 52.69C44.3896 52.665 44.2996 52.53 44.3246 52.395C44.3496 52.26 44.4846 52.175 44.6196 52.195L46.0896 52.48C46.2246 52.505 46.3146 52.64 46.2896 52.775C46.2646 52.895 46.1596 52.975 46.0446 52.975ZM43.0997 52.4C43.0997 52.4 43.0697 52.4 43.0497 52.4L41.5797 52.115C41.4447 52.09 41.3547 51.955 41.3797 51.82C41.4047 51.685 41.5397 51.6 41.6747 51.62L43.1447 51.905C43.2797 51.93 43.3697 52.065 43.3447 52.2C43.3197 52.32 43.2147 52.4 43.0997 52.4Z\" fill=\"black\"/>%0D%0A<path d=\"M53.3047 40.05C52.5347 38.205 51.2247 36.68 49.5147 35.64L49.2897 35.505C49.2147 35.46 49.1197 35.455 49.0397 35.5C48.9597 35.54 48.9097 35.62 48.9097 35.71C48.9097 35.735 48.7947 38.185 47.8497 39.21C47.7897 39.275 47.7697 39.365 47.7947 39.445C47.8197 39.53 47.8797 39.595 47.9647 39.62C48.0997 39.66 50.8447 40.465 52.4547 40.465C52.7247 40.465 52.9597 40.445 53.1447 40.39C53.2147 40.37 53.2697 40.325 53.3047 40.26C53.3347 40.195 53.3397 40.12 53.3097 40.055L53.3047 40.05Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M78.2888 85.9H18.7456C18.6056 85.9 18.4956 85.79 18.4956 85.65C18.4956 85.51 18.6056 85.4 18.7456 85.4H78.2888C78.4288 85.4 78.5388 85.51 78.5388 85.65C78.5388 85.79 78.4288 85.9 78.2888 85.9Z\" fill=\"black\"/>%0D%0A<path d=\"M50.9396 51.85L46.9848 56.125C46.5098 56.635 45.8448 56.925 45.1498 56.925H19.7456C19.4106 56.925 19.1706 57.245 19.2656 57.565L27.6103 85.645H68.2641L77.7538 51.675C77.8438 51.355 77.6039 51.04 77.2739 51.04H52.7796C52.0846 51.04 51.4196 51.33 50.9446 51.84L50.9396 51.85Z\" fill=\"white\"/>%0D%0A<path d=\"M68.2592 85.9H27.6054C27.4954 85.9 27.3954 85.825 27.3654 85.72L19.0207 57.64C18.9507 57.41 18.9957 57.17 19.1407 56.98C19.2857 56.79 19.5007 56.68 19.7407 56.68H45.1449C45.7699 56.68 46.3699 56.415 46.7949 55.96L50.7547 51.685C51.2747 51.125 52.0097 50.805 52.7747 50.805H77.269C77.5039 50.805 77.7239 50.915 77.8689 51.1C78.0139 51.285 78.0589 51.525 77.9939 51.755L68.5042 85.725C68.4742 85.835 68.3742 85.91 68.2642 85.91L68.2592 85.9ZM27.7904 85.4H68.0692L77.5089 51.615C77.5289 51.54 77.514 51.46 77.469 51.395C77.419 51.33 77.3489 51.295 77.269 51.295H52.7747C52.1497 51.295 51.5497 51.56 51.1247 52.015L47.1648 56.29C46.6449 56.85 45.9099 57.17 45.1449 57.17H19.7407C19.6607 57.17 19.5907 57.205 19.5407 57.27C19.4957 57.335 19.4807 57.415 19.5007 57.49L27.7904 85.395V85.4Z\" fill=\"black\"/>%0D%0A<path d=\"M55.4401 74.565H51.4051C51.2651 74.565 51.1551 74.455 51.1551 74.315V72.025C51.1551 71.25 50.7251 70.55 50.0301 70.2C49.2801 69.825 48.4051 69.935 47.6251 70.515C47.2751 70.77 47.0701 71.205 47.0701 71.675V74.315C47.0701 74.455 46.9601 74.565 46.8201 74.565H42.7851C42.6451 74.565 42.5351 74.455 42.5351 74.315V66.15C42.5351 66.07 42.5701 66 42.6351 65.95L48.9601 61.12C49.0501 61.05 49.1751 61.05 49.2651 61.12L55.5901 65.95C55.6501 65.995 55.6901 66.07 55.6901 66.15V74.315C55.6901 74.455 55.5801 74.565 55.4401 74.565ZM51.6551 74.065H55.1901V66.275L49.1151 61.635L43.0401 66.275V74.065H46.5751V71.675C46.5751 71.045 46.8601 70.46 47.3351 70.11C48.2751 69.415 49.3401 69.285 50.2601 69.755C51.1201 70.19 51.6601 71.06 51.6601 72.025V74.065H51.6551ZM55.7551 75.755C55.7551 75.615 55.6451 75.505 55.5051 75.505H42.7251C42.5851 75.505 42.4751 75.615 42.4751 75.755C42.4751 75.895 42.5851 76.005 42.7251 76.005H55.5051C55.6451 76.005 55.7551 75.895 55.7551 75.755Z\" fill=\"black\"/>%0D%0A<path d=\"M73.3638 84.85V82.285C73.3638 81.99 73.1238 81.755 72.8288 81.755H59.4742C59.1792 81.76 58.9442 82 58.9442 82.295V84.86C58.9442 85.155 59.1842 85.39 59.4792 85.39H72.8338C73.1288 85.385 73.3638 85.145 73.3638 84.85ZM73.9738 84.735V82.42C73.9738 82.08 74.2887 81.825 74.6237 81.9L80.0286 83.15C80.5886 83.28 80.5736 84.08 80.0136 84.19L74.6087 85.26C74.2787 85.325 73.9738 85.075 73.9738 84.74V84.735ZM57.5942 85.39L40.0398 85.4C39.7448 85.4 39.5098 85.16 39.5098 84.87C39.5098 83.16 40.8947 81.77 42.6047 81.77L57.5942 81.76C57.8892 81.76 58.1242 82 58.1242 82.29V84.855C58.1242 85.15 57.8892 85.385 57.5942 85.385V85.39Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M43.0249 83.035C43.0249 81.5 44.2749 80.245 45.8099 80.245H55.8499V80.74H45.8099C44.5499 80.75 43.5249 81.775 43.5249 83.035H43.0249Z\" fill=\"black\"/>%0D%0A<path d=\"M80.0286 83.15L77.3286 82.525V84.72L80.0136 84.19C80.5736 84.08 80.5886 83.28 80.0286 83.15Z\" fill=\"black\"/>%0D%0A<path d=\"M6.90088 26.615C6.90088 26.615 15.1306 21.25 16.8156 19.39L21.6854 20.35C21.6854 20.35 26.8853 28.71 31.5851 30.19C31.5851 30.19 24.4804 35.25 20.4955 40.155C20.4955 40.155 9.35581 33.715 6.90088 26.61V26.615Z\" fill=\"white\"/>%0D%0A<path d=\"M20.4957 40.41C20.4507 40.41 20.4107 40.4 20.3707 40.375C20.3707 40.375 19.9757 40.15 19.3257 39.73C19.2107 39.655 19.1757 39.5 19.2507 39.385C19.3257 39.27 19.4807 39.235 19.5957 39.31C19.9757 39.555 20.2657 39.73 20.4407 39.835C20.6657 39.56 20.9057 39.285 21.1457 39.01C21.2357 38.905 21.3957 38.9 21.5007 38.99C21.6056 39.08 21.6156 39.24 21.5207 39.345C21.2307 39.67 20.9557 39.995 20.6907 40.32C20.6407 40.38 20.5707 40.41 20.4957 40.41ZM17.3758 38.38C17.3258 38.38 17.2758 38.365 17.2308 38.335C16.5358 37.845 15.8558 37.345 15.2058 36.84C15.0958 36.755 15.0758 36.6 15.1608 36.49C15.2458 36.38 15.4008 36.36 15.5108 36.445C16.1508 36.945 16.8258 37.44 17.5158 37.925C17.6308 38.005 17.6558 38.16 17.5758 38.275C17.5258 38.345 17.4508 38.38 17.3708 38.38H17.3758ZM23.0556 37.615C22.9906 37.615 22.9256 37.59 22.8806 37.54C22.7856 37.44 22.7856 37.285 22.8806 37.185C23.4406 36.625 24.0556 36.045 24.7056 35.455C24.8056 35.365 24.9655 35.37 25.0605 35.47C25.1555 35.57 25.1455 35.73 25.0455 35.825C24.4006 36.41 23.7956 36.985 23.2356 37.54C23.1856 37.59 23.1256 37.615 23.0606 37.615H23.0556ZM13.4259 35.305C13.3659 35.305 13.3109 35.285 13.2609 35.245C12.6059 34.68 11.9859 34.105 11.4109 33.535C11.311 33.44 11.311 33.28 11.4109 33.18C11.5059 33.08 11.6659 33.08 11.7659 33.18C12.3309 33.74 12.9459 34.305 13.5909 34.865C13.6959 34.955 13.7059 35.115 13.6159 35.22C13.5659 35.275 13.4959 35.305 13.4259 35.305ZM26.7555 34.245C26.6855 34.245 26.6155 34.215 26.5655 34.155C26.4755 34.05 26.4905 33.89 26.5955 33.8C27.2205 33.27 27.8705 32.735 28.5354 32.205C28.6404 32.12 28.8004 32.135 28.8854 32.245C28.9704 32.355 28.9554 32.51 28.8454 32.595C28.1855 33.12 27.5355 33.655 26.9155 34.18C26.8705 34.22 26.8105 34.24 26.7555 34.24V34.245ZM9.88599 31.775C9.816 31.775 9.746 31.745 9.696 31.685C9.12102 31.005 8.60603 30.325 8.17105 29.665C8.09605 29.55 8.12605 29.395 8.24104 29.32C8.35604 29.245 8.51103 29.275 8.58603 29.39C9.01102 30.035 9.51101 30.7 10.076 31.36C10.166 31.465 10.151 31.625 10.046 31.71C10.001 31.75 9.94099 31.77 9.88599 31.77V31.775ZM30.6704 31.12C30.5954 31.12 30.5204 31.085 30.4704 31.02C30.3854 30.91 30.4104 30.755 30.5204 30.67C30.7354 30.51 30.9154 30.375 31.0604 30.27C30.7854 30.16 30.5054 30.03 30.2204 29.875C30.1004 29.81 30.0554 29.655 30.1204 29.535C30.1854 29.415 30.3404 29.37 30.4604 29.435C30.8754 29.66 31.2804 29.835 31.6653 29.955C31.7553 29.985 31.8203 30.06 31.8353 30.155C31.8503 30.25 31.8103 30.345 31.7353 30.4C31.7353 30.4 31.3954 30.645 30.8204 31.075C30.7754 31.11 30.7204 31.125 30.6704 31.125V31.12ZM28.2905 28.475C28.2355 28.475 28.1755 28.455 28.1305 28.415C27.5355 27.915 26.9155 27.335 26.2905 26.68C26.1955 26.58 26.2005 26.42 26.3005 26.325C26.4005 26.23 26.5605 26.235 26.6555 26.335C27.2705 26.975 27.8755 27.545 28.4554 28.03C28.5604 28.12 28.5754 28.275 28.4854 28.38C28.4354 28.44 28.3654 28.47 28.2955 28.47L28.2905 28.475ZM7.18607 27.585C7.09108 27.585 6.99608 27.53 6.95608 27.435C6.85108 27.19 6.75609 26.945 6.67109 26.7C6.63109 26.59 6.67109 26.47 6.77109 26.41C6.77109 26.41 7.63606 25.845 8.86102 25.02C8.97602 24.945 9.13102 24.975 9.20601 25.09C9.28101 25.205 9.25101 25.36 9.13602 25.435C8.22604 26.05 7.51606 26.515 7.20607 26.72C7.27107 26.895 7.34107 27.07 7.41607 27.24C7.47107 27.365 7.41607 27.515 7.28607 27.57C7.25607 27.585 7.22107 27.59 7.18607 27.59V27.585ZM24.8106 24.885C24.7406 24.885 24.6656 24.855 24.6156 24.795C24.1006 24.175 23.5806 23.505 23.0706 22.805C22.9906 22.695 23.0106 22.535 23.1256 22.455C23.2356 22.375 23.3906 22.395 23.4756 22.51C23.9806 23.2 24.4956 23.86 25.0055 24.475C25.0955 24.58 25.0805 24.74 24.9705 24.825C24.9255 24.865 24.8656 24.88 24.8106 24.88V24.885ZM11.066 24.065C10.986 24.065 10.911 24.025 10.861 23.955C10.781 23.84 10.811 23.685 10.926 23.605C11.6009 23.14 12.2959 22.65 12.9709 22.165C13.0809 22.085 13.2409 22.11 13.3209 22.22C13.4009 22.33 13.3759 22.49 13.2659 22.57C12.5909 23.055 11.8909 23.55 11.216 24.015C11.171 24.045 11.121 24.06 11.076 24.06L11.066 24.065ZM15.1208 21.125C15.0458 21.125 14.9758 21.09 14.9258 21.03C14.8408 20.92 14.8608 20.765 14.9708 20.68C15.7708 20.055 16.3308 19.565 16.6358 19.23C16.6958 19.165 16.7858 19.135 16.8708 19.155L17.1158 19.205C17.2508 19.23 17.3408 19.365 17.3108 19.5C17.2808 19.635 17.1508 19.725 17.0158 19.695L16.9058 19.675C16.5658 20.025 16.0208 20.495 15.2758 21.08C15.2308 21.115 15.1758 21.135 15.1208 21.135V21.125ZM21.8456 20.85C21.7656 20.85 21.6856 20.81 21.6356 20.735L21.5357 20.58L19.4707 20.17C19.3357 20.145 19.2457 20.01 19.2757 19.875C19.3007 19.74 19.4357 19.65 19.5707 19.68L21.7406 20.11C21.8106 20.125 21.8656 20.165 21.9056 20.225L22.0606 20.465C22.1356 20.58 22.1006 20.735 21.9856 20.81C21.9456 20.835 21.8956 20.85 21.8506 20.85H21.8456ZM12.3159 29.575C12.2409 29.575 12.1659 29.54 12.1159 29.475C12.0309 29.365 12.0559 29.205 12.1659 29.125L13.3709 28.23C13.4809 28.15 13.6409 28.17 13.7209 28.28C13.8059 28.39 13.7809 28.55 13.6709 28.63L12.4659 29.525C12.4209 29.56 12.3709 29.575 12.3159 29.575ZM14.7259 27.785C14.6509 27.785 14.5759 27.75 14.5259 27.685C14.4409 27.575 14.4659 27.415 14.5759 27.335L15.7808 26.44C15.8908 26.36 16.0508 26.38 16.1308 26.49C16.2158 26.6 16.1908 26.76 16.0808 26.84L14.8758 27.735C14.8308 27.77 14.7809 27.785 14.7259 27.785ZM17.1358 25.995C17.0608 25.995 16.9858 25.96 16.9358 25.895C16.8508 25.785 16.8758 25.63 16.9858 25.545L18.1907 24.65C18.3007 24.57 18.4607 24.59 18.5407 24.7C18.6257 24.81 18.6007 24.965 18.4907 25.05L17.2858 25.945C17.2408 25.98 17.1908 25.995 17.1358 25.995ZM16.3558 33.41C16.2808 33.41 16.2108 33.38 16.1608 33.315C16.0758 33.21 16.0908 33.05 16.2008 32.965L17.3708 32.025C17.4758 31.94 17.6358 31.955 17.7208 32.065C17.8058 32.17 17.7908 32.33 17.6808 32.415L16.5108 33.355C16.4658 33.39 16.4108 33.41 16.3558 33.41ZM18.6907 31.53C18.6157 31.53 18.5457 31.5 18.4957 31.435C18.4107 31.33 18.4257 31.17 18.5357 31.085L19.7057 30.145C19.8107 30.06 19.9707 30.075 20.0557 30.185C20.1407 30.29 20.1257 30.45 20.0157 30.535L18.8457 31.475C18.8007 31.51 18.7457 31.53 18.6907 31.53ZM21.0257 29.65C20.9507 29.65 20.8807 29.62 20.8307 29.555C20.7457 29.45 20.7607 29.29 20.8707 29.205L21.2157 28.925C21.3207 28.84 21.4807 28.855 21.5656 28.965C21.6506 29.07 21.6356 29.23 21.5257 29.315L21.1807 29.595C21.1357 29.63 21.0807 29.65 21.0257 29.65Z\" fill=\"black\"/>%0D%0A<path d=\"M21.7308 20.11L16.8608 19.15C16.7558 19.13 16.6508 19.175 16.5958 19.27C16.5408 19.36 16.5508 19.48 16.6208 19.56L18.6458 21.91C18.6908 21.96 18.7508 21.99 18.8208 21.995C18.8258 21.995 18.8308 21.995 18.8358 21.995C18.8958 21.995 18.9558 21.975 19.0008 21.93C19.0108 21.925 19.8208 21.21 21.7558 20.595C21.8658 20.56 21.9358 20.455 21.9308 20.345C21.9258 20.23 21.8408 20.135 21.7308 20.115V20.11Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M56.2847 35.76C56.2847 35.76 67.4593 20.42 68.4443 12.83C68.4443 12.83 83.0589 23.72 87.9637 24.295C87.9637 24.295 75.4441 41.105 70.7092 49.35C70.7092 49.35 66.6044 41.54 56.2847 35.76Z\" fill=\"white\"/>%0D%0A<path d=\"M70.2791 48.865C70.1941 48.865 70.1141 48.825 70.0691 48.745C69.7891 48.3 69.3191 47.585 68.6591 46.705C68.5741 46.595 68.5991 46.44 68.7091 46.355C68.8191 46.275 68.9741 46.295 69.0591 46.405C69.7341 47.295 70.2141 48.025 70.4941 48.48C70.5691 48.595 70.5291 48.75 70.4141 48.825C70.3741 48.85 70.3291 48.865 70.2841 48.865H70.2791ZM71.554 48.17C71.509 48.17 71.464 48.16 71.424 48.135C71.304 48.065 71.269 47.91 71.339 47.79C71.749 47.115 72.194 46.405 72.669 45.66C72.744 45.545 72.899 45.51 73.014 45.585C73.129 45.66 73.164 45.815 73.089 45.93C72.619 46.67 72.174 47.38 71.769 48.05C71.724 48.125 71.639 48.17 71.554 48.17ZM67.2792 44.865C67.2092 44.865 67.1392 44.835 67.0892 44.78C66.5542 44.165 65.9842 43.555 65.3942 42.96C65.2942 42.86 65.2992 42.705 65.3942 42.605C65.4942 42.505 65.6492 42.51 65.7492 42.605C66.3442 43.205 66.9192 43.825 67.4641 44.445C67.5541 44.55 67.5441 44.705 67.4391 44.8C67.3942 44.84 67.3342 44.86 67.2742 44.86L67.2792 44.865ZM74.2389 43.945C74.1939 43.945 74.1439 43.93 74.0989 43.905C73.984 43.83 73.954 43.675 74.029 43.56C74.4789 42.88 74.9439 42.18 75.4189 41.475C75.4989 41.36 75.6539 41.33 75.7639 41.41C75.8789 41.485 75.9089 41.64 75.8289 41.755C75.3539 42.46 74.8889 43.155 74.4389 43.835C74.3889 43.91 74.3089 43.945 74.229 43.945H74.2389ZM63.7593 41.32C63.6993 41.32 63.6393 41.3 63.5943 41.255C62.9793 40.71 62.3393 40.17 61.6893 39.66C61.5793 39.575 61.5643 39.415 61.6493 39.31C61.7343 39.2 61.8943 39.185 61.9993 39.27C62.6543 39.79 63.3043 40.33 63.9293 40.885C64.0342 40.975 64.0392 41.135 63.9493 41.24C63.8993 41.295 63.8293 41.325 63.7643 41.325L63.7593 41.32ZM77.0439 39.795C76.9939 39.795 76.9439 39.78 76.9039 39.75C76.7889 39.67 76.7589 39.515 76.8389 39.4C77.3089 38.71 77.7888 38.025 78.2638 37.34C78.3438 37.225 78.4988 37.2 78.6138 37.28C78.7288 37.36 78.7538 37.515 78.6738 37.63C78.1988 38.315 77.7188 39 77.2489 39.69C77.1989 39.76 77.1239 39.8 77.0439 39.8V39.795ZM59.8344 38.23C59.7844 38.23 59.7344 38.215 59.6894 38.185C59.0094 37.71 58.3094 37.255 57.6094 36.83C57.4894 36.76 57.4544 36.605 57.5244 36.485C57.5944 36.365 57.7494 36.33 57.8694 36.4C58.5794 36.835 59.2844 37.295 59.9744 37.775C60.0894 37.855 60.1144 38.01 60.0344 38.125C59.9844 38.195 59.9094 38.23 59.8294 38.23H59.8344ZM56.2845 36.01C56.2345 36.01 56.1795 35.995 56.1395 35.96C56.0295 35.88 56.0045 35.72 56.0845 35.61C56.0845 35.61 56.6445 34.84 57.5244 33.56C57.6044 33.445 57.7594 33.415 57.8744 33.495C57.9894 33.575 58.0194 33.73 57.9394 33.845C57.0545 35.13 56.4895 35.905 56.4895 35.905C56.4395 35.97 56.3645 36.01 56.2895 36.01H56.2845ZM79.9038 35.685C79.8538 35.685 79.8038 35.67 79.7588 35.64C79.6438 35.56 79.6188 35.405 79.6988 35.29C80.1888 34.595 80.6738 33.91 81.1487 33.245C81.2287 33.135 81.3837 33.105 81.4987 33.185C81.6087 33.265 81.6387 33.42 81.5587 33.535C81.0837 34.2 80.5988 34.885 80.1138 35.575C80.0638 35.645 79.9888 35.68 79.9088 35.68L79.9038 35.685ZM59.1344 31.875C59.0844 31.875 59.0394 31.86 58.9944 31.835C58.8794 31.76 58.8494 31.605 58.9244 31.49C59.3544 30.845 59.8144 30.14 60.2894 29.395C60.3644 29.28 60.5193 29.245 60.6343 29.32C60.7493 29.395 60.7843 29.55 60.7093 29.665C60.2294 30.415 59.7694 31.12 59.3394 31.765C59.2894 31.84 59.2094 31.875 59.1294 31.875H59.1344ZM82.8087 31.605C82.7587 31.605 82.7087 31.59 82.6637 31.56C82.5537 31.48 82.5237 31.325 82.6087 31.21C83.1237 30.495 83.6137 29.815 84.0737 29.18C84.1537 29.065 84.3137 29.045 84.4236 29.125C84.5336 29.205 84.5586 29.36 84.4786 29.475C84.0187 30.11 83.5237 30.79 83.0137 31.505C82.9637 31.575 82.8887 31.61 82.8087 31.61V31.605ZM61.8293 27.655C61.7843 27.655 61.7393 27.645 61.6993 27.62C61.5793 27.55 61.5443 27.395 61.6143 27.275C62.0393 26.58 62.4743 25.86 62.8993 25.13C62.9693 25.01 63.1243 24.97 63.2393 25.04C63.3593 25.11 63.3993 25.265 63.3293 25.38C62.8993 26.115 62.4693 26.835 62.0393 27.535C61.9943 27.61 61.9093 27.655 61.8243 27.655H61.8293ZM85.7486 27.55C85.6986 27.55 85.6436 27.535 85.6036 27.5C85.4936 27.42 85.4686 27.26 85.5486 27.15C86.1536 26.325 86.6586 25.635 87.0336 25.13C87.1186 25.02 87.2736 24.995 87.3836 25.075C87.4936 25.155 87.5186 25.315 87.4386 25.425C87.0636 25.935 86.5586 26.62 85.9536 27.445C85.9036 27.51 85.8286 27.55 85.7536 27.55H85.7486ZM86.7136 24.25C86.6886 24.25 86.6636 24.25 86.6386 24.24C85.9736 24.025 85.1786 23.7 84.2887 23.275C84.1637 23.215 84.1137 23.065 84.1687 22.94C84.2236 22.815 84.3786 22.765 84.5036 22.82C85.3736 23.235 86.1436 23.55 86.7886 23.76C86.9186 23.8 86.9936 23.945 86.9486 24.075C86.9136 24.18 86.8186 24.25 86.7086 24.25H86.7136ZM64.3492 23.325C64.3092 23.325 64.2692 23.315 64.2292 23.295C64.1092 23.23 64.0642 23.075 64.1292 22.955C64.5492 22.19 64.9392 21.445 65.2892 20.745C65.3492 20.62 65.4992 20.57 65.6242 20.635C65.7492 20.695 65.7992 20.845 65.7342 20.97C65.3792 21.675 64.9842 22.425 64.5642 23.195C64.5192 23.28 64.4342 23.325 64.3442 23.325H64.3492ZM82.1737 22.145C82.1337 22.145 82.0887 22.135 82.0537 22.115C81.3737 21.74 80.6438 21.315 79.8788 20.855C79.7588 20.785 79.7238 20.63 79.7938 20.51C79.8638 20.39 80.0188 20.355 80.1388 20.425C80.8987 20.88 81.6237 21.3 82.2987 21.675C82.4187 21.74 82.4637 21.895 82.3987 22.015C82.3537 22.1 82.2687 22.145 82.1787 22.145H82.1737ZM77.8788 19.575C77.8338 19.575 77.7888 19.56 77.7438 19.535C77.0289 19.08 76.3239 18.625 75.6389 18.17C75.5239 18.095 75.4939 17.94 75.5689 17.825C75.6439 17.71 75.7989 17.68 75.9139 17.755C76.5989 18.205 77.2989 18.665 78.0088 19.115C78.1238 19.19 78.1588 19.345 78.0838 19.46C78.0388 19.535 77.9538 19.575 77.8738 19.575H77.8788ZM66.5892 18.85C66.5542 18.85 66.5192 18.845 66.4892 18.83C66.3642 18.775 66.3042 18.625 66.3642 18.5C66.7242 17.685 67.0392 16.91 67.2992 16.2C67.3442 16.07 67.4891 16.005 67.6191 16.05C67.7491 16.095 67.8141 16.24 67.7691 16.37C67.5091 17.095 67.1892 17.88 66.8192 18.705C66.7792 18.8 66.6842 18.855 66.5892 18.855V18.85ZM73.699 16.81C73.649 16.81 73.599 16.795 73.559 16.765C72.819 16.26 72.124 15.775 71.499 15.335C71.384 15.255 71.359 15.1 71.439 14.985C71.519 14.87 71.674 14.845 71.789 14.925C72.414 15.365 73.104 15.845 73.844 16.355C73.959 16.435 73.989 16.59 73.909 16.7C73.859 16.77 73.784 16.81 73.704 16.81H73.699ZM68.2491 14.135C68.2491 14.135 68.2141 14.135 68.1941 14.13C68.0591 14.1 67.9741 13.965 68.0041 13.83C68.0841 13.47 68.1491 13.12 68.1891 12.795C68.1991 12.705 68.2591 12.63 68.3391 12.595C68.4191 12.56 68.5141 12.57 68.5841 12.625C68.5841 12.625 69.0091 12.945 69.7391 13.47C69.8491 13.55 69.8741 13.705 69.7941 13.82C69.7141 13.93 69.5591 13.955 69.4441 13.875C69.0941 13.62 68.8141 13.415 68.6191 13.27C68.5841 13.485 68.5391 13.71 68.4891 13.935C68.4641 14.05 68.3591 14.13 68.2441 14.13L68.2491 14.135ZM78.7638 28.24C78.7138 28.24 78.6588 28.225 78.6138 28.19C78.3988 28.03 77.9788 27.755 77.3739 27.365C77.2589 27.29 77.2239 27.135 77.2989 27.02C77.3739 26.905 77.5288 26.87 77.6438 26.945C78.2588 27.34 78.6888 27.625 78.9138 27.79C79.0238 27.87 79.0488 28.03 78.9688 28.14C78.9188 28.205 78.8438 28.24 78.7688 28.24H78.7638ZM76.2389 26.605C76.1939 26.605 76.1489 26.595 76.1089 26.565C75.7039 26.31 75.2689 26.045 74.8339 25.775C74.7189 25.705 74.6789 25.55 74.7539 25.43C74.8289 25.31 74.9789 25.28 75.0989 25.35C75.5389 25.62 75.9689 25.89 76.3789 26.145C76.4939 26.22 76.5339 26.37 76.4589 26.49C76.4139 26.565 76.3289 26.61 76.2489 26.61L76.2389 26.605ZM73.679 25.025C73.634 25.025 73.589 25.015 73.549 24.99L72.264 24.205C72.144 24.135 72.109 23.98 72.179 23.86C72.249 23.74 72.404 23.705 72.524 23.775L73.809 24.56C73.929 24.63 73.964 24.785 73.894 24.905C73.849 24.98 73.764 25.025 73.679 25.025ZM71.109 23.46C71.064 23.46 71.019 23.45 70.979 23.425L69.6891 22.645C69.5691 22.575 69.5341 22.42 69.6041 22.3C69.6741 22.18 69.8291 22.145 69.9491 22.215L71.239 22.995C71.359 23.065 71.394 23.22 71.324 23.34C71.279 23.415 71.194 23.46 71.109 23.46ZM70.974 29.76C70.929 29.76 70.884 29.75 70.844 29.72L69.5741 28.925C69.4591 28.85 69.4191 28.695 69.4941 28.58C69.5691 28.46 69.7241 28.43 69.8391 28.5L71.109 29.295C71.224 29.37 71.264 29.525 71.189 29.64C71.144 29.715 71.059 29.76 70.979 29.76H70.974ZM68.4291 28.17C68.3841 28.17 68.3391 28.16 68.2991 28.13L67.0292 27.335C66.9142 27.26 66.8742 27.105 66.9492 26.99C67.0242 26.875 67.1792 26.84 67.2941 26.91L68.5641 27.705C68.6791 27.78 68.7191 27.935 68.6441 28.05C68.5991 28.125 68.5141 28.17 68.4341 28.17H68.4291ZM72.099 38.565C72.029 38.565 71.954 38.535 71.909 38.475C71.649 38.16 71.304 37.805 70.889 37.42C70.789 37.325 70.784 37.17 70.874 37.065C70.964 36.96 71.124 36.96 71.229 37.05C71.664 37.45 72.019 37.82 72.294 38.155C72.384 38.26 72.369 38.42 72.259 38.505C72.214 38.545 72.154 38.565 72.099 38.565ZM69.9191 36.505C69.8641 36.505 69.8091 36.485 69.7591 36.45C69.3841 36.14 68.9891 35.83 68.5841 35.525C68.4741 35.44 68.4541 35.285 68.5391 35.175C68.6241 35.065 68.7791 35.045 68.8891 35.13C69.2941 35.44 69.6941 35.755 70.0791 36.065C70.1841 36.15 70.1991 36.31 70.1141 36.415C70.0641 36.475 69.9941 36.505 69.9191 36.505ZM67.5341 34.68C67.4841 34.68 67.4341 34.665 67.3891 34.635C66.9692 34.33 66.5542 34.04 66.1642 33.77C66.0492 33.69 66.0242 33.535 66.0992 33.42C66.1792 33.305 66.3342 33.275 66.4492 33.355C66.8392 33.625 67.2542 33.92 67.6791 34.225C67.7891 34.305 67.8191 34.46 67.7341 34.575C67.6841 34.645 67.6091 34.68 67.5291 34.68H67.5341ZM65.0642 32.97C65.0142 32.97 64.9692 32.955 64.9242 32.93C64.1642 32.425 63.6693 32.11 63.6693 32.11C63.5543 32.035 63.5193 31.88 63.5893 31.765C63.6643 31.65 63.8193 31.615 63.9343 31.685C63.9343 31.685 64.4342 32 65.2042 32.51C65.3192 32.585 65.3492 32.74 65.2742 32.855C65.2242 32.925 65.1492 32.965 65.0642 32.965V32.97Z\" fill=\"black\"/>%0D%0A<path d=\"M51.3748 32.205C51.3448 32.205 51.3198 32.205 51.2898 32.19C51.0298 32.095 50.5348 31.68 50.0548 31.155C49.9598 31.055 49.9698 30.895 50.0698 30.8C50.1698 30.705 50.3298 30.715 50.4248 30.815C50.9648 31.405 51.3648 31.68 51.4648 31.72C51.5948 31.765 51.6598 31.91 51.6148 32.04C51.5798 32.14 51.4798 32.205 51.3798 32.205H51.3748ZM49.3198 30.05C49.2398 30.05 49.1598 30.01 49.1098 29.935C48.8198 29.485 48.5798 29.02 48.3948 28.56C48.3448 28.43 48.4048 28.285 48.5348 28.235C48.6648 28.185 48.8098 28.245 48.8598 28.375C49.0298 28.805 49.2548 29.235 49.5298 29.66C49.6048 29.775 49.5698 29.93 49.4548 30.005C49.4148 30.03 49.3648 30.045 49.3198 30.045V30.05ZM48.2498 27.275C48.1248 27.275 48.0198 27.18 47.9998 27.055C47.9748 26.855 47.9648 26.65 47.9648 26.45C47.9648 26.125 47.9998 25.8 48.0648 25.48C48.0948 25.345 48.2248 25.26 48.3598 25.285C48.4948 25.315 48.5798 25.445 48.5548 25.58C48.4948 25.865 48.4648 26.155 48.4648 26.45C48.4648 26.63 48.4748 26.815 48.4948 26.995C48.5098 27.13 48.4148 27.255 48.2748 27.275C48.2648 27.275 48.2548 27.275 48.2448 27.275H48.2498ZM48.8398 24.385C48.7998 24.385 48.7548 24.375 48.7148 24.35C48.5948 24.28 48.5548 24.13 48.6198 24.01C48.7398 23.795 48.8798 23.585 49.0348 23.38C49.1998 23.16 49.3698 22.955 49.5348 22.76C49.6248 22.655 49.7848 22.645 49.8898 22.735C49.9948 22.825 50.0048 22.985 49.9148 23.09C49.7548 23.275 49.5948 23.47 49.4348 23.68C49.2948 23.87 49.1648 24.06 49.0548 24.255C49.0098 24.335 48.9248 24.38 48.8398 24.38V24.385ZM55.0298 23.64C54.8898 23.64 54.7798 23.53 54.7798 23.39C54.7798 23.25 54.8898 23.14 55.0298 23.14C55.3848 23.14 55.5948 22.94 55.5948 22.61C55.5948 22.555 55.5898 22.495 55.5748 22.43C55.5498 22.295 55.6398 22.165 55.7748 22.14C55.9048 22.115 56.0398 22.205 56.0648 22.34C56.0848 22.435 56.0898 22.525 56.0898 22.61C56.0898 23.22 55.6548 23.64 55.0298 23.64ZM53.7348 22.97C53.6648 22.97 53.5998 22.94 53.5498 22.885C53.3248 22.635 53.1348 22.33 52.9798 21.985C52.9098 21.83 52.8498 21.66 52.7948 21.48C52.7548 21.35 52.8298 21.21 52.9598 21.17C53.0948 21.13 53.2298 21.205 53.2698 21.335C53.3198 21.495 53.3748 21.645 53.4348 21.785C53.5648 22.08 53.7298 22.34 53.9198 22.55C54.0098 22.655 54.0048 22.81 53.8998 22.905C53.8498 22.95 53.7948 22.97 53.7348 22.97ZM50.8048 22.14C50.7298 22.14 50.6598 22.11 50.6098 22.045C50.5248 21.935 50.5398 21.78 50.6498 21.695C51.0848 21.35 51.5348 21.075 51.9848 20.885C52.1098 20.83 52.2598 20.885 52.3148 21.015C52.3698 21.14 52.3098 21.29 52.1848 21.345C51.7748 21.52 51.3648 21.77 50.9648 22.085C50.9198 22.12 50.8648 22.14 50.8098 22.14H50.8048ZM54.9648 21.45C54.9198 21.45 54.8698 21.435 54.8298 21.41C54.4648 21.18 54.0198 21.055 53.5348 21.05C53.3948 21.05 53.2848 20.935 53.2848 20.8C53.2848 20.66 53.3948 20.55 53.5348 20.55C54.1098 20.55 54.6498 20.705 55.0948 20.99C55.2098 21.065 55.2448 21.22 55.1698 21.335C55.1198 21.41 55.0398 21.45 54.9598 21.45H54.9648ZM52.8098 20.17C52.6698 20.17 52.5598 20.065 52.5598 19.925V19.91C52.5598 19.375 52.6398 18.855 52.7948 18.37C52.8348 18.24 52.9798 18.165 53.1098 18.205C53.2398 18.245 53.3148 18.39 53.2748 18.52C53.1348 18.96 53.0648 19.425 53.0648 19.91C53.0648 20.05 52.9548 20.165 52.8148 20.165L52.8098 20.17ZM53.7248 17.38C53.6698 17.38 53.6148 17.365 53.5698 17.325C53.4598 17.24 53.4398 17.085 53.5248 16.975C53.8398 16.57 54.2348 16.215 54.6898 15.915C54.8048 15.84 54.9598 15.87 55.0348 15.99C55.1098 16.105 55.0748 16.26 54.9598 16.335C54.5498 16.6 54.1998 16.92 53.9198 17.285C53.8698 17.35 53.7948 17.38 53.7248 17.38ZM56.1798 15.735C56.0748 15.735 55.9798 15.67 55.9448 15.565C55.8998 15.435 55.9698 15.295 56.1048 15.25C56.5648 15.1 57.0698 14.98 57.6048 14.905C57.7348 14.885 57.8698 14.98 57.8898 15.115C57.9098 15.25 57.8148 15.38 57.6798 15.4C57.1698 15.475 56.6948 15.585 56.2648 15.725C56.2398 15.735 56.2098 15.74 56.1848 15.74L56.1798 15.735Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M55.7846 11.56C55.7496 11.56 55.7146 11.555 55.6796 11.535C55.5546 11.475 55.4996 11.33 55.5546 11.205C56.9596 8.145 59.4396 9.105 59.4646 9.115C59.5946 9.165 59.6546 9.31 59.6046 9.44C59.5546 9.565 59.4096 9.63 59.2796 9.58C59.1946 9.545 57.2096 8.795 56.0096 11.415C55.9696 11.505 55.8796 11.56 55.7846 11.56ZM55.2246 9.215C56.2246 7.4 57.6146 7.72 57.6746 7.73C57.8096 7.76 57.9446 7.68 57.9796 7.55C58.0146 7.415 57.9346 7.28 57.7996 7.245C57.7796 7.245 55.9796 6.81 54.7896 8.97C54.7246 9.09 54.7646 9.245 54.8896 9.31C54.9296 9.33 54.9696 9.34 55.0096 9.34C55.0996 9.34 55.1846 9.295 55.2296 9.21L55.2246 9.215Z\" fill=\"black\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198Z\" fill=\"white\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198ZM61.2898 12.54C61.2898 12.54 61.3547 12.49 61.3897 12.455C61.4947 12.355 61.4947 12.335 61.4247 12.215C61.4047 12.18 61.3797 12.15 61.3547 12.12C60.9847 11.715 60.5198 11.47 59.9898 11.34C59.8348 11.3 59.6798 11.29 59.5198 11.325C59.3998 11.35 59.3047 11.405 59.2447 11.515C59.0797 11.825 59.1597 12.255 59.4247 12.485C59.9247 12.925 60.7148 12.955 61.2898 12.54ZM61.7898 13.24C61.2898 13.62 61.0797 14.285 61.2647 14.9C61.3797 15.28 61.6847 15.505 62.0847 15.5C62.2697 15.5 62.3947 15.42 62.4747 15.255C62.5397 15.12 62.5698 14.975 62.5798 14.83C62.6098 14.365 62.5297 13.92 62.3347 13.5C62.2797 13.385 62.1998 13.28 62.1248 13.175C62.0848 13.12 62.0298 13.11 61.9698 13.145C61.9098 13.18 61.8498 13.215 61.7898 13.25V13.24ZM60.6648 14.885C60.0398 14.455 59.5998 13.895 59.3598 13.175C59.1298 13.515 59.1798 14.085 59.4698 14.46C59.7498 14.825 60.2898 15.015 60.6648 14.88V14.885ZM60.9197 14.09C60.9197 14.09 60.9298 14.07 60.9298 14.065C60.9948 13.775 61.1248 13.515 61.3098 13.285C61.3198 13.27 61.3248 13.23 61.3098 13.215C61.2648 13.145 61.2148 13.08 61.1648 13.015C61.1398 12.98 61.1097 12.975 61.0697 12.99C60.8047 13.1 60.5248 13.145 60.2398 13.125C60.2248 13.125 60.2098 13.125 60.1848 13.125C60.3498 13.51 60.5948 13.825 60.9148 14.085L60.9197 14.09Z\" fill=\"black\"/>%0D%0A<path d=\"M62.0797 15.86C61.6847 15.86 61.2097 15.68 60.9847 15.17C60.9397 15.19 60.8997 15.205 60.8547 15.22C60.3197 15.375 59.8297 15.265 59.3947 14.9C59.3597 14.87 59.3447 14.865 59.3047 14.875C59.1997 14.905 59.1147 14.92 59.0397 14.93C58.9897 14.935 58.9247 14.92 58.8847 14.885C58.8597 14.865 58.8047 14.805 58.8697 14.695C58.8847 14.665 58.9047 14.635 58.9197 14.605C58.9447 14.555 58.9747 14.5 59.0047 14.455C59.0197 14.43 59.0197 14.415 59.0047 14.38C58.7947 13.915 58.8047 13.455 59.0347 13.015C59.0697 12.945 59.1197 12.88 59.1597 12.82C59.1697 12.805 59.1797 12.79 59.1947 12.77L59.1597 12.74C58.7247 12.345 58.7247 11.75 58.9097 11.37C59.0197 11.14 59.2197 11 59.5047 10.96C59.8347 10.915 60.1397 10.995 60.3697 11.075C60.6547 11.175 60.9347 11.32 61.2047 11.51C61.3647 11.35 61.5447 11.255 61.7597 11.22C62.0197 11.175 62.2797 11.23 62.5347 11.365C62.5447 11.365 62.5497 11.37 62.5497 11.37C62.5497 11.37 62.5497 11.37 62.5597 11.36C62.8697 10.995 62.9547 10.59 62.8147 10.12C62.7797 9.99999 62.8147 9.89999 62.8997 9.84999C62.9597 9.81499 63.0247 9.80999 63.0797 9.83499C63.1397 9.85999 63.1897 9.90999 63.2147 9.98499C63.3597 10.43 63.3347 10.855 63.1397 11.255C63.0897 11.36 63.0247 11.455 62.9597 11.545C62.9397 11.575 62.9197 11.605 62.8997 11.64L63.1447 11.97L63.1697 11.96C63.2197 11.94 63.2747 11.915 63.3297 11.9C63.8497 11.74 64.3447 11.815 64.8097 12.13C64.8697 12.17 64.9097 12.225 64.9197 12.285C64.9297 12.34 64.9197 12.395 64.8847 12.44C64.8147 12.54 64.6897 12.56 64.5697 12.48C64.1647 12.21 63.7497 12.17 63.3047 12.365C63.2947 12.365 63.2947 12.37 63.2997 12.385C63.3697 12.735 63.3197 13.035 63.1397 13.3C63.0547 13.425 62.9347 13.53 62.7897 13.61H62.7797C62.7847 13.64 62.7947 13.67 62.7997 13.695C62.8247 13.785 62.8497 13.875 62.8697 13.965C62.9597 14.365 62.9747 14.72 62.9197 15.055C62.8747 15.31 62.7897 15.5 62.6497 15.645C62.5197 15.785 62.3447 15.86 62.1397 15.87C62.1197 15.87 62.0997 15.87 62.0797 15.87V15.86ZM61.0447 15.015L61.0697 15.06C61.0697 15.06 61.0847 15.09 61.0897 15.1C61.2997 15.595 61.7647 15.755 62.1347 15.735C62.3097 15.725 62.4497 15.665 62.5597 15.55C62.6797 15.42 62.7547 15.255 62.7947 15.02C62.8497 14.705 62.8347 14.365 62.7447 13.98C62.7247 13.895 62.6997 13.805 62.6747 13.72C62.6647 13.68 62.6497 13.635 62.6397 13.59L62.6247 13.545L62.7197 13.49C62.8497 13.42 62.9497 13.335 63.0247 13.22C63.1847 12.985 63.2297 12.715 63.1647 12.4C63.1547 12.345 63.1547 12.28 63.2447 12.24C63.7247 12.03 64.1897 12.07 64.6297 12.365C64.6897 12.405 64.7397 12.405 64.7697 12.355C64.7847 12.335 64.7897 12.315 64.7847 12.295C64.7847 12.27 64.7597 12.24 64.7297 12.22C64.2997 11.93 63.8397 11.86 63.3597 12.005C63.3097 12.02 63.2597 12.04 63.2097 12.06L63.0947 12.105L62.7397 11.63L62.7647 11.595C62.7947 11.55 62.8247 11.505 62.8497 11.465C62.9147 11.37 62.9747 11.28 63.0197 11.185C63.1997 10.82 63.2247 10.425 63.0897 10.01C63.0797 9.97499 63.0597 9.94999 63.0297 9.93999C63.0047 9.92999 62.9797 9.93499 62.9547 9.94999C62.9397 9.95999 62.8947 9.98499 62.9247 10.075C63.0747 10.58 62.9847 11.035 62.6497 11.43C62.5947 11.49 62.5397 11.5 62.4697 11.46C62.2397 11.335 62.0097 11.29 61.7747 11.325C61.5747 11.355 61.4047 11.455 61.2547 11.615L61.2197 11.655L61.1547 11.61C61.1547 11.61 61.1347 11.595 61.1247 11.59C60.8647 11.41 60.5947 11.27 60.3197 11.175C60.1047 11.1 59.8197 11.02 59.5147 11.065C59.2747 11.1 59.1097 11.21 59.0147 11.405C58.8497 11.745 58.8497 12.275 59.2347 12.63L59.3447 12.735L59.3147 12.78C59.2947 12.815 59.2697 12.845 59.2497 12.875C59.2047 12.935 59.1647 12.995 59.1297 13.06C58.9197 13.465 58.9097 13.89 59.1047 14.315C59.1247 14.365 59.1447 14.43 59.0947 14.505C59.0647 14.55 59.0397 14.6 59.0147 14.65C58.9997 14.68 58.9797 14.715 58.9647 14.745C58.9497 14.77 58.9547 14.78 58.9547 14.78C58.9697 14.79 58.9947 14.8 59.0097 14.795C59.0847 14.785 59.1597 14.77 59.2597 14.74C59.3347 14.72 59.3947 14.735 59.4597 14.79C59.8597 15.13 60.3097 15.23 60.7997 15.085C60.8397 15.075 60.8797 15.06 60.9197 15.04L61.0297 15L61.0447 15.015ZM62.0847 15.56C61.6597 15.56 61.3297 15.32 61.2097 14.915C61.0197 14.28 61.2397 13.585 61.7547 13.19H61.7597L61.9397 13.085C62.0297 13.03 62.1197 13.055 62.1747 13.135C62.1897 13.16 62.2097 13.185 62.2297 13.21C62.2897 13.29 62.3497 13.375 62.3897 13.47C62.5897 13.9 62.6697 14.36 62.6397 14.83C62.6297 15 62.5947 15.145 62.5297 15.28C62.4397 15.465 62.2897 15.56 62.0847 15.56ZM61.8297 13.29C61.3547 13.655 61.1547 14.295 61.3297 14.875C61.4347 15.23 61.7097 15.435 62.0847 15.435C62.2447 15.435 62.3497 15.37 62.4197 15.225C62.4747 15.105 62.5097 14.975 62.5197 14.82C62.5497 14.365 62.4697 13.93 62.2797 13.52C62.2397 13.435 62.1847 13.36 62.1297 13.28C62.1097 13.255 62.0947 13.23 62.0747 13.2C62.0597 13.175 62.0397 13.165 62.0047 13.185L61.8297 13.285V13.29ZM60.4097 14.99C60.0547 14.99 59.6597 14.8 59.4297 14.5C59.1197 14.1 59.0697 13.505 59.3147 13.14L59.3847 13.035L59.4247 13.155C59.6597 13.855 60.0797 14.405 60.7047 14.83L60.8047 14.9L60.6897 14.94C60.5997 14.97 60.5047 14.985 60.4047 14.985L60.4097 14.99ZM59.3547 13.33C59.2147 13.65 59.2797 14.105 59.5247 14.425C59.7597 14.725 60.1897 14.905 60.5247 14.86C59.9847 14.46 59.5897 13.945 59.3547 13.33ZM60.9547 14.175L60.8897 14.14C60.5547 13.87 60.3097 13.545 60.1397 13.155L60.0997 13.07H60.1947C60.2297 13.07 60.2397 13.07 60.2597 13.07C60.5347 13.09 60.8047 13.045 61.0597 12.94C61.1297 12.91 61.1897 12.925 61.2297 12.985L61.2647 13.035C61.3047 13.085 61.3397 13.135 61.3747 13.19C61.3997 13.23 61.3947 13.295 61.3697 13.335C61.1897 13.56 61.0647 13.815 61.0047 14.09L60.9947 14.12L60.9597 14.185L60.9547 14.175ZM60.2947 13.195C60.4397 13.5 60.6397 13.755 60.8947 13.98C60.9647 13.715 61.0897 13.465 61.2697 13.245C61.2347 13.2 61.1997 13.15 61.1647 13.1L61.1297 13.05C61.1297 13.05 61.1197 13.045 61.1047 13.05C60.8447 13.16 60.5697 13.205 60.2947 13.195ZM60.3797 12.895C60.0197 12.895 59.6597 12.77 59.3847 12.53C59.0997 12.28 59.0147 11.82 59.1947 11.485C59.2547 11.365 59.3647 11.29 59.5097 11.26C59.6647 11.225 59.8297 11.235 60.0047 11.275C60.5697 11.415 61.0397 11.68 61.3997 12.07C61.4297 12.1 61.4547 12.135 61.4797 12.175C61.5697 12.325 61.5597 12.375 61.4347 12.495C61.4097 12.52 61.3797 12.545 61.3597 12.56L61.3297 12.585C61.0447 12.79 60.7097 12.89 60.3797 12.89V12.895ZM59.7147 11.365C59.6547 11.365 59.5947 11.37 59.5347 11.385C59.4247 11.41 59.3497 11.46 59.3047 11.545C59.1547 11.835 59.2247 12.225 59.4697 12.44C59.9547 12.865 60.7047 12.89 61.2597 12.495L61.2847 12.475C61.2847 12.475 61.3297 12.435 61.3547 12.415C61.4047 12.365 61.4114 12.31 61.3747 12.25C61.3547 12.22 61.3347 12.19 61.3097 12.165C60.9597 11.785 60.5247 11.54 59.9747 11.405C59.8797 11.385 59.7947 11.37 59.7097 11.37L59.7147 11.365Z\" fill=\"black\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.9091 17.015L86.109 18.425C86.5391 18.615 86.7041 19.135 86.4691 19.54L81.544 28.025C81.349 28.365 80.929 28.505 80.569 28.36L78.759 27.62C78.364 27.46 78.169 27.01 78.324 26.61L81.854 17.45C82.014 17.03 82.494 16.835 82.904 17.015H82.9091ZM79.219 28.62C78.299 28.245 77.249 28.685 76.874 29.605C76.499 30.525 76.939 31.575 77.859 31.95C78.779 32.325 79.829 31.885 80.204 30.965C80.579 30.045 80.139 28.995 79.219 28.62Z\" fill=\"%23F82C13\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
525
|
+
], template: "@if (viewed) {\r\n @if (sdLabelDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"sdLabelDef!.templateRef\"> </ng-container>\r\n } @else if (label) {\r\n <div class=\"text-secondary\">{{ label }}</div>\r\n }\r\n @if (hyperlink) {\r\n <!-- N\u1EBFu c\u00F3 hyperlink th\u00EC d\u00F9ng th\u1EBB a -->\r\n <a [href]=\"hyperlink\">{{ display | async }}</a>\r\n } @else {\r\n <!-- Ngo\u00E0i ra d\u00F9ng th\u1EBB m\u1EB7c \u0111\u1ECBnh -->\r\n <div class=\"T16M\">{{ display | async }}</div>\r\n }\r\n} @else {\r\n@if (!appearance && sdLabelDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"sdLabelDef?.templateRef!\"> </ng-container>\r\n}\r\n@if (!appearance && label && !sdLabelDef?.templateRef) {\r\n <sd-label [label]=\"label\" [required]=\"required\"></sd-label>\r\n}\r\n<div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"sdViewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n aria-hidden=\"true\">\r\n @if (sdViewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n sdViewDef!.templateRef;\r\n context: {\r\n value: formControl.value,\r\n selectedItems: selectedItems | async\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size === 'md'\"\r\n [class.sd-sm]=\"size === 'sm'\"\r\n [class.hide-inline-error]=\"hideInlineError\"\r\n [appearance]=\"appearance\">\r\n @if (appearance && label) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ label }}</span>\r\n @if (helperText) {\r\n <mat-icon [matTooltip]=\"helperText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n \r\n @if (multiple) {\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n multiple\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value?.length\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !formControl.value?.length\"\r\n [matTooltip]=\"tooltip\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n } @else {\r\n \r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder || label || ''\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n panelClass=\"sd-select-panel\"\r\n [class.sd-selected]=\"!required && formControl.value !== undefined && formControl.value !== null\"\r\n [required]=\"required\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId\">\r\n <mat-select-trigger>\r\n {{ display | async }}\r\n </mat-select-trigger>\r\n \r\n @if (filtered) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n #input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @if (loading$ | async) {\r\n <mat-option disabled style=\"display: flex; justify-content: center; align-items: center; height: 50px;\">\r\n <mat-spinner diameter=\"25\"></mat-spinner>\r\n </mat-option>\r\n } @else {\r\n @let asyncItems = filteredItems | async;\r\n @if (asyncItems) {\r\n @if (!asyncItems.length) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @if (valueField && displayField) {\r\n @for (item of asyncItems; track item?.[valueField]) {\r\n <mat-option [value]=\"item[valueField]\" [disabled]=\"item[disabledField]\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item[displayField]\">\r\n @if(itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item[displayField] }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField && !displayField) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (itemDef?.templateRef) {\r\n <ng-container *ngTemplateOutlet=\"itemDef?.templateRef ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n }\r\n </mat-select>\r\n }\r\n\r\n @if (\r\n (multiple ? formControl.value?.length : formControl.value !== undefined && formControl.value !== null) &&\r\n !required &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\"/>\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\"/>\r\n </svg>\r\n </span>\r\n }\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideInlineError) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n</div>\r\n}\r\n", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"97\" height=\"96\" viewBox=\"0 0 97 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M17.9657 72.84C8.63101 65.685 2.2812 55.23 0.806245 43.55C-0.773708 31.025 3.06618 15.9 28.8604 12.175C77.634 5.13499 110.693 47.8 90.4436 68.9C73.2191 86.85 41.73 91.05 17.9657 72.835V72.84Z\" fill=\"%23F2F2F2\"/>%0D%0A<path d=\"M68.8944 62.84H27.5107L22.1708 47.51C22.0558 47.185 22.3008 46.845 22.6408 46.845H74.3343C74.6843 46.845 74.9293 47.195 74.7993 47.525L68.8944 62.84Z\" fill=\"black\"/>%0D%0A<path d=\"M68.8943 63.09H27.5106C27.4056 63.09 27.3106 63.025 27.2756 62.92L21.9357 47.59C21.8557 47.36 21.8907 47.105 22.0307 46.91C22.1707 46.715 22.4007 46.595 22.6407 46.595H74.3342C74.5792 46.595 74.8142 46.715 74.9542 46.92C75.0942 47.125 75.1242 47.385 75.0342 47.615L69.1293 62.93C69.0943 63.025 68.9993 63.09 68.8943 63.09ZM27.6906 62.59H68.7243L74.5692 47.435C74.5992 47.355 74.5892 47.27 74.5442 47.205C74.4992 47.135 74.4192 47.095 74.3392 47.095H22.6407C22.5607 47.095 22.4857 47.135 22.4357 47.2C22.3857 47.265 22.3757 47.35 22.4057 47.425L27.6906 62.585V62.59Z\" fill=\"black\"/>%0D%0A<path d=\"M15.8561 58.295L10.5811 58.925C10.2511 58.965 9.98106 58.66 10.0611 58.335L10.7411 55.6C10.8111 55.31 11.1311 55.155 11.4061 55.28L16.0061 57.39C16.4461 57.59 16.3411 58.245 15.8611 58.3L15.8561 58.295ZM17.5611 55.435L16.6161 49.065C16.5611 48.685 16.1761 48.455 15.8161 48.58L12.4261 49.755C12.0261 49.895 11.8861 50.395 12.1561 50.72L16.4911 55.915C16.8861 56.385 17.6511 56.045 17.5611 55.435Z\" fill=\"%234CAF50\"/>%0D%0A<path d=\"M34.81 33.265C34.81 33.265 44.2198 36.035 49.1596 35.715L53.0745 40.145C53.0745 40.145 47.3047 59.815 46.5097 61.8C46.5097 61.8 38.1299 59.175 26.4253 58.005C26.4253 58.005 31.5651 46.315 34.805 33.27L34.81 33.265Z\" fill=\"white\"/>%0D%0A<path d=\"M46.6996 61.525C46.6746 61.525 46.6446 61.525 46.6196 61.51C46.4896 61.465 46.4196 61.325 46.4646 61.195C46.6346 60.69 46.8946 59.89 47.2296 58.81C47.2696 58.68 47.4095 58.605 47.5445 58.645C47.6745 58.685 47.7495 58.825 47.7095 58.96C47.3745 60.04 47.1146 60.845 46.9396 61.355C46.9046 61.46 46.8046 61.525 46.7046 61.525H46.6996ZM44.6346 61.525C44.6346 61.525 44.5896 61.525 44.5696 61.515C43.9146 61.34 43.1047 61.13 42.1497 60.905C42.0147 60.875 41.9347 60.74 41.9647 60.605C41.9947 60.47 42.1297 60.385 42.2647 60.42C43.2247 60.65 44.0396 60.86 44.6946 61.035C44.8296 61.07 44.9096 61.21 44.8696 61.34C44.8396 61.45 44.7396 61.525 44.6296 61.525H44.6346ZM39.7698 60.36C39.7698 60.36 39.7348 60.36 39.7148 60.355C38.9548 60.19 38.1348 60.025 37.2698 59.855C37.1349 59.83 37.0449 59.695 37.0699 59.56C37.0949 59.425 37.2348 59.335 37.3648 59.36C38.2348 59.53 39.0548 59.695 39.8198 59.86C39.9548 59.89 40.0398 60.02 40.0098 60.155C39.9848 60.27 39.8798 60.35 39.7648 60.35L39.7698 60.36ZM34.8599 59.41C34.8599 59.41 34.8299 59.41 34.8149 59.41C34.0249 59.275 33.2 59.14 32.35 59.01C32.215 58.99 32.12 58.86 32.14 58.725C32.16 58.59 32.29 58.495 32.425 58.515C33.28 58.645 34.1049 58.78 34.8999 58.915C35.0349 58.94 35.1299 59.07 35.1049 59.205C35.0849 59.325 34.9799 59.415 34.8599 59.415V59.41ZM29.9151 58.66C29.9151 58.66 29.8951 58.66 29.8801 58.66C29.0751 58.555 28.2501 58.455 27.4001 58.365C27.2651 58.35 27.1651 58.225 27.1801 58.09C27.1951 57.955 27.3201 57.855 27.4551 57.87C28.3051 57.965 29.1351 58.065 29.9451 58.17C30.0801 58.19 30.1801 58.315 30.1601 58.45C30.1451 58.575 30.0351 58.67 29.9101 58.67L29.9151 58.66ZM27.0101 56.885C26.9801 56.885 26.9452 56.88 26.9152 56.865C26.7852 56.81 26.7252 56.665 26.7802 56.54C27.0301 55.94 27.3501 55.16 27.7201 54.225C27.7701 54.095 27.9151 54.035 28.0451 54.085C28.1751 54.135 28.2351 54.28 28.1851 54.41C27.8101 55.35 27.4901 56.13 27.2451 56.735C27.2051 56.83 27.1101 56.89 27.0151 56.89L27.0101 56.885ZM48.2045 56.745C48.2045 56.745 48.1545 56.745 48.1295 56.735C47.9995 56.695 47.9245 56.555 47.9645 56.425C48.1945 55.665 48.4395 54.86 48.6895 54.025C48.7295 53.895 48.8695 53.815 48.9995 53.86C49.1295 53.9 49.2045 54.04 49.1645 54.17C48.9145 55 48.6695 55.81 48.4395 56.57C48.4045 56.68 48.3095 56.745 48.1995 56.745H48.2045ZM28.8551 52.235C28.8251 52.235 28.7951 52.23 28.7651 52.22C28.6351 52.17 28.5701 52.025 28.6201 51.9C28.8951 51.17 29.1901 50.39 29.4951 49.56C29.5401 49.43 29.6901 49.365 29.8151 49.41C29.9451 49.455 30.0101 49.6 29.9651 49.73C29.6601 50.565 29.3701 51.35 29.0901 52.08C29.0501 52.18 28.9551 52.24 28.8551 52.24V52.235ZM49.6495 51.95C49.6495 51.95 49.5995 51.95 49.5795 51.94C49.4495 51.9 49.3695 51.76 49.4145 51.63L50.1295 49.23C50.1695 49.1 50.3045 49.025 50.4395 49.06C50.5695 49.1 50.6495 49.24 50.6095 49.37L49.8895 51.77C49.8595 51.88 49.7595 51.95 49.6495 51.95ZM30.575 47.535C30.55 47.535 30.52 47.535 30.49 47.52C30.36 47.475 30.2901 47.33 30.335 47.2C30.6 46.44 30.87 45.65 31.145 44.835C31.19 44.705 31.33 44.63 31.46 44.68C31.59 44.725 31.66 44.865 31.615 44.995C31.34 45.81 31.07 46.6 30.805 47.365C30.77 47.47 30.67 47.53 30.57 47.53L30.575 47.535ZM51.0844 47.145C51.0844 47.145 51.0394 47.145 51.0144 47.135C50.8844 47.095 50.8044 46.955 50.8444 46.825L51.5544 44.42C51.5944 44.29 51.7344 44.21 51.8644 44.25C51.9944 44.29 52.0744 44.43 52.0344 44.56L51.3244 46.965C51.2944 47.075 51.1944 47.145 51.0844 47.145ZM32.165 42.79C32.165 42.79 32.115 42.79 32.09 42.78C31.96 42.74 31.885 42.595 31.93 42.465C32.18 41.685 32.425 40.89 32.67 40.08C32.71 39.95 32.85 39.875 32.98 39.915C33.11 39.955 33.185 40.095 33.145 40.225C32.9 41.04 32.65 41.835 32.4 42.62C32.365 42.725 32.27 42.795 32.16 42.795L32.165 42.79ZM52.5044 42.335C52.5044 42.335 52.4594 42.335 52.4344 42.325C52.3044 42.285 52.2244 42.145 52.2644 42.015L52.7944 40.215L52.5544 39.945C52.4644 39.84 52.4744 39.685 52.5744 39.59C52.6744 39.5 52.8344 39.505 52.9294 39.61L53.2594 39.985C53.3144 40.05 53.3344 40.14 53.3094 40.22L52.7394 42.155C52.7094 42.265 52.6094 42.335 52.4994 42.335H52.5044ZM51.0894 38.155C51.0194 38.155 50.9494 38.125 50.8994 38.07L49.2445 36.195C49.1545 36.09 49.1645 35.935 49.2645 35.84C49.3645 35.75 49.5245 35.755 49.6195 35.86L51.2744 37.735C51.3644 37.84 51.3544 37.995 51.2544 38.09C51.2094 38.13 51.1494 38.15 51.0894 38.15V38.155ZM33.615 38C33.615 38 33.57 38 33.545 37.99C33.41 37.95 33.335 37.815 33.375 37.68C33.6 36.885 33.8249 36.085 34.0399 35.275C34.0749 35.14 34.2099 35.06 34.3449 35.095C34.4799 35.13 34.5599 35.265 34.5249 35.4C34.3099 36.215 34.0849 37.02 33.8599 37.815C33.8299 37.925 33.7299 37.995 33.62 37.995L33.615 38ZM47.0746 35.955C47.0746 35.955 47.0646 35.955 47.0596 35.955C46.3096 35.905 45.4646 35.815 44.5546 35.685C44.4196 35.665 44.3246 35.54 44.3446 35.4C44.3646 35.26 44.4946 35.17 44.6296 35.19C45.5296 35.32 46.3596 35.405 47.0996 35.455C47.2395 35.465 47.3395 35.585 47.3345 35.72C47.3245 35.85 47.2146 35.955 47.0846 35.955H47.0746ZM42.1197 35.275C42.1197 35.275 42.0897 35.275 42.0747 35.275C41.2897 35.125 40.4648 34.95 39.6148 34.76C39.4798 34.73 39.3948 34.595 39.4248 34.46C39.4548 34.325 39.5898 34.24 39.7248 34.27C40.5647 34.46 41.3897 34.63 42.1647 34.78C42.2997 34.805 42.3897 34.935 42.3647 35.07C42.3397 35.19 42.2347 35.275 42.1197 35.275ZM37.2348 34.175C37.2348 34.175 37.1948 34.175 37.1748 34.165C35.7249 33.795 34.7549 33.51 34.7449 33.51C34.6149 33.47 34.5349 33.33 34.5749 33.2C34.6149 33.07 34.7499 32.995 34.8849 33.03C34.8949 33.03 35.8549 33.315 37.2948 33.68C37.4298 33.715 37.5098 33.85 37.4748 33.985C37.4448 34.1 37.3448 34.175 37.2348 34.175ZM46.3096 41.255C46.3096 41.255 46.2796 41.255 46.2646 41.255L45.3196 41.08C45.1846 41.055 45.0946 40.925 45.1196 40.79C45.1446 40.655 45.2746 40.565 45.4096 40.59L46.3546 40.765C46.4896 40.79 46.5796 40.92 46.5546 41.055C46.5346 41.175 46.4296 41.26 46.3096 41.26V41.255ZM43.8896 40.805C43.8896 40.805 43.8597 40.805 43.8447 40.805L42.3697 40.53C42.2347 40.505 42.1447 40.375 42.1697 40.24C42.1947 40.105 42.3247 40.015 42.4597 40.04L43.9347 40.315C44.0696 40.34 44.1596 40.47 44.1346 40.605C44.1146 40.725 44.0096 40.81 43.8896 40.81V40.805ZM40.9397 40.255C40.9397 40.255 40.9097 40.255 40.8947 40.255L39.4198 39.98C39.2848 39.955 39.1948 39.825 39.2198 39.69C39.2448 39.555 39.3748 39.465 39.5098 39.49L40.9847 39.765C41.1197 39.79 41.2097 39.92 41.1847 40.055C41.1647 40.175 41.0597 40.26 40.9397 40.26V40.255ZM37.9898 39.705C37.9898 39.705 37.9598 39.705 37.9448 39.705L36.4699 39.43C36.3349 39.405 36.2449 39.275 36.2699 39.14C36.2949 39.005 36.4249 38.915 36.5599 38.94L38.0348 39.215C38.1698 39.24 38.2598 39.37 38.2348 39.505C38.2148 39.625 38.1098 39.71 37.9898 39.71V39.705ZM45.1546 45.82C45.1546 45.82 45.1246 45.82 45.1096 45.82L44.3396 45.675C44.2046 45.65 44.1146 45.52 44.1396 45.385C44.1646 45.25 44.2946 45.16 44.4296 45.185L45.1996 45.33C45.3346 45.355 45.4246 45.485 45.3996 45.62C45.3746 45.74 45.2746 45.825 45.1546 45.825V45.82ZM42.9097 45.395C42.9097 45.395 42.8797 45.395 42.8647 45.395L41.3897 45.115C41.2547 45.09 41.1647 44.96 41.1897 44.825C41.2147 44.69 41.3447 44.6 41.4797 44.625L42.9547 44.905C43.0897 44.93 43.1797 45.06 43.1547 45.195C43.1297 45.315 43.0297 45.4 42.9097 45.4V45.395ZM39.9648 44.835C39.9648 44.835 39.9348 44.835 39.9198 44.835L38.4448 44.555C38.3098 44.53 38.2198 44.4 38.2448 44.265C38.2698 44.13 38.3998 44.04 38.5348 44.065L40.0098 44.345C40.1448 44.37 40.2348 44.5 40.2098 44.635C40.1848 44.755 40.0848 44.84 39.9648 44.84V44.835ZM37.0199 44.275C37.0199 44.275 36.9899 44.275 36.9749 44.275L35.4999 43.995C35.3649 43.97 35.2749 43.84 35.2999 43.705C35.3249 43.57 35.4549 43.48 35.5899 43.505L37.0649 43.785C37.1998 43.81 37.2898 43.94 37.2648 44.075C37.2398 44.195 37.1398 44.28 37.0199 44.28V44.275ZM37.8898 51.275C37.8898 51.275 37.8598 51.275 37.8448 51.275L36.3699 51C36.2349 50.975 36.1449 50.845 36.1699 50.71C36.1949 50.575 36.3299 50.485 36.4599 50.51L37.9348 50.785C38.0698 50.81 38.1598 50.94 38.1348 51.075C38.1148 51.195 38.0098 51.28 37.8898 51.28V51.275ZM34.9399 50.72C34.9399 50.72 34.9099 50.72 34.8949 50.72L33.42 50.445C33.285 50.42 33.195 50.29 33.22 50.155C33.245 50.02 33.38 49.93 33.51 49.955L34.9849 50.23C35.1199 50.255 35.2099 50.385 35.1849 50.52C35.1649 50.64 35.0599 50.725 34.9399 50.725V50.72ZM46.0446 52.975C46.0446 52.975 46.0146 52.975 45.9946 52.975L44.5246 52.69C44.3896 52.665 44.2996 52.53 44.3246 52.395C44.3496 52.26 44.4846 52.175 44.6196 52.195L46.0896 52.48C46.2246 52.505 46.3146 52.64 46.2896 52.775C46.2646 52.895 46.1596 52.975 46.0446 52.975ZM43.0997 52.4C43.0997 52.4 43.0697 52.4 43.0497 52.4L41.5797 52.115C41.4447 52.09 41.3547 51.955 41.3797 51.82C41.4047 51.685 41.5397 51.6 41.6747 51.62L43.1447 51.905C43.2797 51.93 43.3697 52.065 43.3447 52.2C43.3197 52.32 43.2147 52.4 43.0997 52.4Z\" fill=\"black\"/>%0D%0A<path d=\"M53.3047 40.05C52.5347 38.205 51.2247 36.68 49.5147 35.64L49.2897 35.505C49.2147 35.46 49.1197 35.455 49.0397 35.5C48.9597 35.54 48.9097 35.62 48.9097 35.71C48.9097 35.735 48.7947 38.185 47.8497 39.21C47.7897 39.275 47.7697 39.365 47.7947 39.445C47.8197 39.53 47.8797 39.595 47.9647 39.62C48.0997 39.66 50.8447 40.465 52.4547 40.465C52.7247 40.465 52.9597 40.445 53.1447 40.39C53.2147 40.37 53.2697 40.325 53.3047 40.26C53.3347 40.195 53.3397 40.12 53.3097 40.055L53.3047 40.05Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M78.2888 85.9H18.7456C18.6056 85.9 18.4956 85.79 18.4956 85.65C18.4956 85.51 18.6056 85.4 18.7456 85.4H78.2888C78.4288 85.4 78.5388 85.51 78.5388 85.65C78.5388 85.79 78.4288 85.9 78.2888 85.9Z\" fill=\"black\"/>%0D%0A<path d=\"M50.9396 51.85L46.9848 56.125C46.5098 56.635 45.8448 56.925 45.1498 56.925H19.7456C19.4106 56.925 19.1706 57.245 19.2656 57.565L27.6103 85.645H68.2641L77.7538 51.675C77.8438 51.355 77.6039 51.04 77.2739 51.04H52.7796C52.0846 51.04 51.4196 51.33 50.9446 51.84L50.9396 51.85Z\" fill=\"white\"/>%0D%0A<path d=\"M68.2592 85.9H27.6054C27.4954 85.9 27.3954 85.825 27.3654 85.72L19.0207 57.64C18.9507 57.41 18.9957 57.17 19.1407 56.98C19.2857 56.79 19.5007 56.68 19.7407 56.68H45.1449C45.7699 56.68 46.3699 56.415 46.7949 55.96L50.7547 51.685C51.2747 51.125 52.0097 50.805 52.7747 50.805H77.269C77.5039 50.805 77.7239 50.915 77.8689 51.1C78.0139 51.285 78.0589 51.525 77.9939 51.755L68.5042 85.725C68.4742 85.835 68.3742 85.91 68.2642 85.91L68.2592 85.9ZM27.7904 85.4H68.0692L77.5089 51.615C77.5289 51.54 77.514 51.46 77.469 51.395C77.419 51.33 77.3489 51.295 77.269 51.295H52.7747C52.1497 51.295 51.5497 51.56 51.1247 52.015L47.1648 56.29C46.6449 56.85 45.9099 57.17 45.1449 57.17H19.7407C19.6607 57.17 19.5907 57.205 19.5407 57.27C19.4957 57.335 19.4807 57.415 19.5007 57.49L27.7904 85.395V85.4Z\" fill=\"black\"/>%0D%0A<path d=\"M55.4401 74.565H51.4051C51.2651 74.565 51.1551 74.455 51.1551 74.315V72.025C51.1551 71.25 50.7251 70.55 50.0301 70.2C49.2801 69.825 48.4051 69.935 47.6251 70.515C47.2751 70.77 47.0701 71.205 47.0701 71.675V74.315C47.0701 74.455 46.9601 74.565 46.8201 74.565H42.7851C42.6451 74.565 42.5351 74.455 42.5351 74.315V66.15C42.5351 66.07 42.5701 66 42.6351 65.95L48.9601 61.12C49.0501 61.05 49.1751 61.05 49.2651 61.12L55.5901 65.95C55.6501 65.995 55.6901 66.07 55.6901 66.15V74.315C55.6901 74.455 55.5801 74.565 55.4401 74.565ZM51.6551 74.065H55.1901V66.275L49.1151 61.635L43.0401 66.275V74.065H46.5751V71.675C46.5751 71.045 46.8601 70.46 47.3351 70.11C48.2751 69.415 49.3401 69.285 50.2601 69.755C51.1201 70.19 51.6601 71.06 51.6601 72.025V74.065H51.6551ZM55.7551 75.755C55.7551 75.615 55.6451 75.505 55.5051 75.505H42.7251C42.5851 75.505 42.4751 75.615 42.4751 75.755C42.4751 75.895 42.5851 76.005 42.7251 76.005H55.5051C55.6451 76.005 55.7551 75.895 55.7551 75.755Z\" fill=\"black\"/>%0D%0A<path d=\"M73.3638 84.85V82.285C73.3638 81.99 73.1238 81.755 72.8288 81.755H59.4742C59.1792 81.76 58.9442 82 58.9442 82.295V84.86C58.9442 85.155 59.1842 85.39 59.4792 85.39H72.8338C73.1288 85.385 73.3638 85.145 73.3638 84.85ZM73.9738 84.735V82.42C73.9738 82.08 74.2887 81.825 74.6237 81.9L80.0286 83.15C80.5886 83.28 80.5736 84.08 80.0136 84.19L74.6087 85.26C74.2787 85.325 73.9738 85.075 73.9738 84.74V84.735ZM57.5942 85.39L40.0398 85.4C39.7448 85.4 39.5098 85.16 39.5098 84.87C39.5098 83.16 40.8947 81.77 42.6047 81.77L57.5942 81.76C57.8892 81.76 58.1242 82 58.1242 82.29V84.855C58.1242 85.15 57.8892 85.385 57.5942 85.385V85.39Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M43.0249 83.035C43.0249 81.5 44.2749 80.245 45.8099 80.245H55.8499V80.74H45.8099C44.5499 80.75 43.5249 81.775 43.5249 83.035H43.0249Z\" fill=\"black\"/>%0D%0A<path d=\"M80.0286 83.15L77.3286 82.525V84.72L80.0136 84.19C80.5736 84.08 80.5886 83.28 80.0286 83.15Z\" fill=\"black\"/>%0D%0A<path d=\"M6.90088 26.615C6.90088 26.615 15.1306 21.25 16.8156 19.39L21.6854 20.35C21.6854 20.35 26.8853 28.71 31.5851 30.19C31.5851 30.19 24.4804 35.25 20.4955 40.155C20.4955 40.155 9.35581 33.715 6.90088 26.61V26.615Z\" fill=\"white\"/>%0D%0A<path d=\"M20.4957 40.41C20.4507 40.41 20.4107 40.4 20.3707 40.375C20.3707 40.375 19.9757 40.15 19.3257 39.73C19.2107 39.655 19.1757 39.5 19.2507 39.385C19.3257 39.27 19.4807 39.235 19.5957 39.31C19.9757 39.555 20.2657 39.73 20.4407 39.835C20.6657 39.56 20.9057 39.285 21.1457 39.01C21.2357 38.905 21.3957 38.9 21.5007 38.99C21.6056 39.08 21.6156 39.24 21.5207 39.345C21.2307 39.67 20.9557 39.995 20.6907 40.32C20.6407 40.38 20.5707 40.41 20.4957 40.41ZM17.3758 38.38C17.3258 38.38 17.2758 38.365 17.2308 38.335C16.5358 37.845 15.8558 37.345 15.2058 36.84C15.0958 36.755 15.0758 36.6 15.1608 36.49C15.2458 36.38 15.4008 36.36 15.5108 36.445C16.1508 36.945 16.8258 37.44 17.5158 37.925C17.6308 38.005 17.6558 38.16 17.5758 38.275C17.5258 38.345 17.4508 38.38 17.3708 38.38H17.3758ZM23.0556 37.615C22.9906 37.615 22.9256 37.59 22.8806 37.54C22.7856 37.44 22.7856 37.285 22.8806 37.185C23.4406 36.625 24.0556 36.045 24.7056 35.455C24.8056 35.365 24.9655 35.37 25.0605 35.47C25.1555 35.57 25.1455 35.73 25.0455 35.825C24.4006 36.41 23.7956 36.985 23.2356 37.54C23.1856 37.59 23.1256 37.615 23.0606 37.615H23.0556ZM13.4259 35.305C13.3659 35.305 13.3109 35.285 13.2609 35.245C12.6059 34.68 11.9859 34.105 11.4109 33.535C11.311 33.44 11.311 33.28 11.4109 33.18C11.5059 33.08 11.6659 33.08 11.7659 33.18C12.3309 33.74 12.9459 34.305 13.5909 34.865C13.6959 34.955 13.7059 35.115 13.6159 35.22C13.5659 35.275 13.4959 35.305 13.4259 35.305ZM26.7555 34.245C26.6855 34.245 26.6155 34.215 26.5655 34.155C26.4755 34.05 26.4905 33.89 26.5955 33.8C27.2205 33.27 27.8705 32.735 28.5354 32.205C28.6404 32.12 28.8004 32.135 28.8854 32.245C28.9704 32.355 28.9554 32.51 28.8454 32.595C28.1855 33.12 27.5355 33.655 26.9155 34.18C26.8705 34.22 26.8105 34.24 26.7555 34.24V34.245ZM9.88599 31.775C9.816 31.775 9.746 31.745 9.696 31.685C9.12102 31.005 8.60603 30.325 8.17105 29.665C8.09605 29.55 8.12605 29.395 8.24104 29.32C8.35604 29.245 8.51103 29.275 8.58603 29.39C9.01102 30.035 9.51101 30.7 10.076 31.36C10.166 31.465 10.151 31.625 10.046 31.71C10.001 31.75 9.94099 31.77 9.88599 31.77V31.775ZM30.6704 31.12C30.5954 31.12 30.5204 31.085 30.4704 31.02C30.3854 30.91 30.4104 30.755 30.5204 30.67C30.7354 30.51 30.9154 30.375 31.0604 30.27C30.7854 30.16 30.5054 30.03 30.2204 29.875C30.1004 29.81 30.0554 29.655 30.1204 29.535C30.1854 29.415 30.3404 29.37 30.4604 29.435C30.8754 29.66 31.2804 29.835 31.6653 29.955C31.7553 29.985 31.8203 30.06 31.8353 30.155C31.8503 30.25 31.8103 30.345 31.7353 30.4C31.7353 30.4 31.3954 30.645 30.8204 31.075C30.7754 31.11 30.7204 31.125 30.6704 31.125V31.12ZM28.2905 28.475C28.2355 28.475 28.1755 28.455 28.1305 28.415C27.5355 27.915 26.9155 27.335 26.2905 26.68C26.1955 26.58 26.2005 26.42 26.3005 26.325C26.4005 26.23 26.5605 26.235 26.6555 26.335C27.2705 26.975 27.8755 27.545 28.4554 28.03C28.5604 28.12 28.5754 28.275 28.4854 28.38C28.4354 28.44 28.3654 28.47 28.2955 28.47L28.2905 28.475ZM7.18607 27.585C7.09108 27.585 6.99608 27.53 6.95608 27.435C6.85108 27.19 6.75609 26.945 6.67109 26.7C6.63109 26.59 6.67109 26.47 6.77109 26.41C6.77109 26.41 7.63606 25.845 8.86102 25.02C8.97602 24.945 9.13102 24.975 9.20601 25.09C9.28101 25.205 9.25101 25.36 9.13602 25.435C8.22604 26.05 7.51606 26.515 7.20607 26.72C7.27107 26.895 7.34107 27.07 7.41607 27.24C7.47107 27.365 7.41607 27.515 7.28607 27.57C7.25607 27.585 7.22107 27.59 7.18607 27.59V27.585ZM24.8106 24.885C24.7406 24.885 24.6656 24.855 24.6156 24.795C24.1006 24.175 23.5806 23.505 23.0706 22.805C22.9906 22.695 23.0106 22.535 23.1256 22.455C23.2356 22.375 23.3906 22.395 23.4756 22.51C23.9806 23.2 24.4956 23.86 25.0055 24.475C25.0955 24.58 25.0805 24.74 24.9705 24.825C24.9255 24.865 24.8656 24.88 24.8106 24.88V24.885ZM11.066 24.065C10.986 24.065 10.911 24.025 10.861 23.955C10.781 23.84 10.811 23.685 10.926 23.605C11.6009 23.14 12.2959 22.65 12.9709 22.165C13.0809 22.085 13.2409 22.11 13.3209 22.22C13.4009 22.33 13.3759 22.49 13.2659 22.57C12.5909 23.055 11.8909 23.55 11.216 24.015C11.171 24.045 11.121 24.06 11.076 24.06L11.066 24.065ZM15.1208 21.125C15.0458 21.125 14.9758 21.09 14.9258 21.03C14.8408 20.92 14.8608 20.765 14.9708 20.68C15.7708 20.055 16.3308 19.565 16.6358 19.23C16.6958 19.165 16.7858 19.135 16.8708 19.155L17.1158 19.205C17.2508 19.23 17.3408 19.365 17.3108 19.5C17.2808 19.635 17.1508 19.725 17.0158 19.695L16.9058 19.675C16.5658 20.025 16.0208 20.495 15.2758 21.08C15.2308 21.115 15.1758 21.135 15.1208 21.135V21.125ZM21.8456 20.85C21.7656 20.85 21.6856 20.81 21.6356 20.735L21.5357 20.58L19.4707 20.17C19.3357 20.145 19.2457 20.01 19.2757 19.875C19.3007 19.74 19.4357 19.65 19.5707 19.68L21.7406 20.11C21.8106 20.125 21.8656 20.165 21.9056 20.225L22.0606 20.465C22.1356 20.58 22.1006 20.735 21.9856 20.81C21.9456 20.835 21.8956 20.85 21.8506 20.85H21.8456ZM12.3159 29.575C12.2409 29.575 12.1659 29.54 12.1159 29.475C12.0309 29.365 12.0559 29.205 12.1659 29.125L13.3709 28.23C13.4809 28.15 13.6409 28.17 13.7209 28.28C13.8059 28.39 13.7809 28.55 13.6709 28.63L12.4659 29.525C12.4209 29.56 12.3709 29.575 12.3159 29.575ZM14.7259 27.785C14.6509 27.785 14.5759 27.75 14.5259 27.685C14.4409 27.575 14.4659 27.415 14.5759 27.335L15.7808 26.44C15.8908 26.36 16.0508 26.38 16.1308 26.49C16.2158 26.6 16.1908 26.76 16.0808 26.84L14.8758 27.735C14.8308 27.77 14.7809 27.785 14.7259 27.785ZM17.1358 25.995C17.0608 25.995 16.9858 25.96 16.9358 25.895C16.8508 25.785 16.8758 25.63 16.9858 25.545L18.1907 24.65C18.3007 24.57 18.4607 24.59 18.5407 24.7C18.6257 24.81 18.6007 24.965 18.4907 25.05L17.2858 25.945C17.2408 25.98 17.1908 25.995 17.1358 25.995ZM16.3558 33.41C16.2808 33.41 16.2108 33.38 16.1608 33.315C16.0758 33.21 16.0908 33.05 16.2008 32.965L17.3708 32.025C17.4758 31.94 17.6358 31.955 17.7208 32.065C17.8058 32.17 17.7908 32.33 17.6808 32.415L16.5108 33.355C16.4658 33.39 16.4108 33.41 16.3558 33.41ZM18.6907 31.53C18.6157 31.53 18.5457 31.5 18.4957 31.435C18.4107 31.33 18.4257 31.17 18.5357 31.085L19.7057 30.145C19.8107 30.06 19.9707 30.075 20.0557 30.185C20.1407 30.29 20.1257 30.45 20.0157 30.535L18.8457 31.475C18.8007 31.51 18.7457 31.53 18.6907 31.53ZM21.0257 29.65C20.9507 29.65 20.8807 29.62 20.8307 29.555C20.7457 29.45 20.7607 29.29 20.8707 29.205L21.2157 28.925C21.3207 28.84 21.4807 28.855 21.5656 28.965C21.6506 29.07 21.6356 29.23 21.5257 29.315L21.1807 29.595C21.1357 29.63 21.0807 29.65 21.0257 29.65Z\" fill=\"black\"/>%0D%0A<path d=\"M21.7308 20.11L16.8608 19.15C16.7558 19.13 16.6508 19.175 16.5958 19.27C16.5408 19.36 16.5508 19.48 16.6208 19.56L18.6458 21.91C18.6908 21.96 18.7508 21.99 18.8208 21.995C18.8258 21.995 18.8308 21.995 18.8358 21.995C18.8958 21.995 18.9558 21.975 19.0008 21.93C19.0108 21.925 19.8208 21.21 21.7558 20.595C21.8658 20.56 21.9358 20.455 21.9308 20.345C21.9258 20.23 21.8408 20.135 21.7308 20.115V20.11Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M56.2847 35.76C56.2847 35.76 67.4593 20.42 68.4443 12.83C68.4443 12.83 83.0589 23.72 87.9637 24.295C87.9637 24.295 75.4441 41.105 70.7092 49.35C70.7092 49.35 66.6044 41.54 56.2847 35.76Z\" fill=\"white\"/>%0D%0A<path d=\"M70.2791 48.865C70.1941 48.865 70.1141 48.825 70.0691 48.745C69.7891 48.3 69.3191 47.585 68.6591 46.705C68.5741 46.595 68.5991 46.44 68.7091 46.355C68.8191 46.275 68.9741 46.295 69.0591 46.405C69.7341 47.295 70.2141 48.025 70.4941 48.48C70.5691 48.595 70.5291 48.75 70.4141 48.825C70.3741 48.85 70.3291 48.865 70.2841 48.865H70.2791ZM71.554 48.17C71.509 48.17 71.464 48.16 71.424 48.135C71.304 48.065 71.269 47.91 71.339 47.79C71.749 47.115 72.194 46.405 72.669 45.66C72.744 45.545 72.899 45.51 73.014 45.585C73.129 45.66 73.164 45.815 73.089 45.93C72.619 46.67 72.174 47.38 71.769 48.05C71.724 48.125 71.639 48.17 71.554 48.17ZM67.2792 44.865C67.2092 44.865 67.1392 44.835 67.0892 44.78C66.5542 44.165 65.9842 43.555 65.3942 42.96C65.2942 42.86 65.2992 42.705 65.3942 42.605C65.4942 42.505 65.6492 42.51 65.7492 42.605C66.3442 43.205 66.9192 43.825 67.4641 44.445C67.5541 44.55 67.5441 44.705 67.4391 44.8C67.3942 44.84 67.3342 44.86 67.2742 44.86L67.2792 44.865ZM74.2389 43.945C74.1939 43.945 74.1439 43.93 74.0989 43.905C73.984 43.83 73.954 43.675 74.029 43.56C74.4789 42.88 74.9439 42.18 75.4189 41.475C75.4989 41.36 75.6539 41.33 75.7639 41.41C75.8789 41.485 75.9089 41.64 75.8289 41.755C75.3539 42.46 74.8889 43.155 74.4389 43.835C74.3889 43.91 74.3089 43.945 74.229 43.945H74.2389ZM63.7593 41.32C63.6993 41.32 63.6393 41.3 63.5943 41.255C62.9793 40.71 62.3393 40.17 61.6893 39.66C61.5793 39.575 61.5643 39.415 61.6493 39.31C61.7343 39.2 61.8943 39.185 61.9993 39.27C62.6543 39.79 63.3043 40.33 63.9293 40.885C64.0342 40.975 64.0392 41.135 63.9493 41.24C63.8993 41.295 63.8293 41.325 63.7643 41.325L63.7593 41.32ZM77.0439 39.795C76.9939 39.795 76.9439 39.78 76.9039 39.75C76.7889 39.67 76.7589 39.515 76.8389 39.4C77.3089 38.71 77.7888 38.025 78.2638 37.34C78.3438 37.225 78.4988 37.2 78.6138 37.28C78.7288 37.36 78.7538 37.515 78.6738 37.63C78.1988 38.315 77.7188 39 77.2489 39.69C77.1989 39.76 77.1239 39.8 77.0439 39.8V39.795ZM59.8344 38.23C59.7844 38.23 59.7344 38.215 59.6894 38.185C59.0094 37.71 58.3094 37.255 57.6094 36.83C57.4894 36.76 57.4544 36.605 57.5244 36.485C57.5944 36.365 57.7494 36.33 57.8694 36.4C58.5794 36.835 59.2844 37.295 59.9744 37.775C60.0894 37.855 60.1144 38.01 60.0344 38.125C59.9844 38.195 59.9094 38.23 59.8294 38.23H59.8344ZM56.2845 36.01C56.2345 36.01 56.1795 35.995 56.1395 35.96C56.0295 35.88 56.0045 35.72 56.0845 35.61C56.0845 35.61 56.6445 34.84 57.5244 33.56C57.6044 33.445 57.7594 33.415 57.8744 33.495C57.9894 33.575 58.0194 33.73 57.9394 33.845C57.0545 35.13 56.4895 35.905 56.4895 35.905C56.4395 35.97 56.3645 36.01 56.2895 36.01H56.2845ZM79.9038 35.685C79.8538 35.685 79.8038 35.67 79.7588 35.64C79.6438 35.56 79.6188 35.405 79.6988 35.29C80.1888 34.595 80.6738 33.91 81.1487 33.245C81.2287 33.135 81.3837 33.105 81.4987 33.185C81.6087 33.265 81.6387 33.42 81.5587 33.535C81.0837 34.2 80.5988 34.885 80.1138 35.575C80.0638 35.645 79.9888 35.68 79.9088 35.68L79.9038 35.685ZM59.1344 31.875C59.0844 31.875 59.0394 31.86 58.9944 31.835C58.8794 31.76 58.8494 31.605 58.9244 31.49C59.3544 30.845 59.8144 30.14 60.2894 29.395C60.3644 29.28 60.5193 29.245 60.6343 29.32C60.7493 29.395 60.7843 29.55 60.7093 29.665C60.2294 30.415 59.7694 31.12 59.3394 31.765C59.2894 31.84 59.2094 31.875 59.1294 31.875H59.1344ZM82.8087 31.605C82.7587 31.605 82.7087 31.59 82.6637 31.56C82.5537 31.48 82.5237 31.325 82.6087 31.21C83.1237 30.495 83.6137 29.815 84.0737 29.18C84.1537 29.065 84.3137 29.045 84.4236 29.125C84.5336 29.205 84.5586 29.36 84.4786 29.475C84.0187 30.11 83.5237 30.79 83.0137 31.505C82.9637 31.575 82.8887 31.61 82.8087 31.61V31.605ZM61.8293 27.655C61.7843 27.655 61.7393 27.645 61.6993 27.62C61.5793 27.55 61.5443 27.395 61.6143 27.275C62.0393 26.58 62.4743 25.86 62.8993 25.13C62.9693 25.01 63.1243 24.97 63.2393 25.04C63.3593 25.11 63.3993 25.265 63.3293 25.38C62.8993 26.115 62.4693 26.835 62.0393 27.535C61.9943 27.61 61.9093 27.655 61.8243 27.655H61.8293ZM85.7486 27.55C85.6986 27.55 85.6436 27.535 85.6036 27.5C85.4936 27.42 85.4686 27.26 85.5486 27.15C86.1536 26.325 86.6586 25.635 87.0336 25.13C87.1186 25.02 87.2736 24.995 87.3836 25.075C87.4936 25.155 87.5186 25.315 87.4386 25.425C87.0636 25.935 86.5586 26.62 85.9536 27.445C85.9036 27.51 85.8286 27.55 85.7536 27.55H85.7486ZM86.7136 24.25C86.6886 24.25 86.6636 24.25 86.6386 24.24C85.9736 24.025 85.1786 23.7 84.2887 23.275C84.1637 23.215 84.1137 23.065 84.1687 22.94C84.2236 22.815 84.3786 22.765 84.5036 22.82C85.3736 23.235 86.1436 23.55 86.7886 23.76C86.9186 23.8 86.9936 23.945 86.9486 24.075C86.9136 24.18 86.8186 24.25 86.7086 24.25H86.7136ZM64.3492 23.325C64.3092 23.325 64.2692 23.315 64.2292 23.295C64.1092 23.23 64.0642 23.075 64.1292 22.955C64.5492 22.19 64.9392 21.445 65.2892 20.745C65.3492 20.62 65.4992 20.57 65.6242 20.635C65.7492 20.695 65.7992 20.845 65.7342 20.97C65.3792 21.675 64.9842 22.425 64.5642 23.195C64.5192 23.28 64.4342 23.325 64.3442 23.325H64.3492ZM82.1737 22.145C82.1337 22.145 82.0887 22.135 82.0537 22.115C81.3737 21.74 80.6438 21.315 79.8788 20.855C79.7588 20.785 79.7238 20.63 79.7938 20.51C79.8638 20.39 80.0188 20.355 80.1388 20.425C80.8987 20.88 81.6237 21.3 82.2987 21.675C82.4187 21.74 82.4637 21.895 82.3987 22.015C82.3537 22.1 82.2687 22.145 82.1787 22.145H82.1737ZM77.8788 19.575C77.8338 19.575 77.7888 19.56 77.7438 19.535C77.0289 19.08 76.3239 18.625 75.6389 18.17C75.5239 18.095 75.4939 17.94 75.5689 17.825C75.6439 17.71 75.7989 17.68 75.9139 17.755C76.5989 18.205 77.2989 18.665 78.0088 19.115C78.1238 19.19 78.1588 19.345 78.0838 19.46C78.0388 19.535 77.9538 19.575 77.8738 19.575H77.8788ZM66.5892 18.85C66.5542 18.85 66.5192 18.845 66.4892 18.83C66.3642 18.775 66.3042 18.625 66.3642 18.5C66.7242 17.685 67.0392 16.91 67.2992 16.2C67.3442 16.07 67.4891 16.005 67.6191 16.05C67.7491 16.095 67.8141 16.24 67.7691 16.37C67.5091 17.095 67.1892 17.88 66.8192 18.705C66.7792 18.8 66.6842 18.855 66.5892 18.855V18.85ZM73.699 16.81C73.649 16.81 73.599 16.795 73.559 16.765C72.819 16.26 72.124 15.775 71.499 15.335C71.384 15.255 71.359 15.1 71.439 14.985C71.519 14.87 71.674 14.845 71.789 14.925C72.414 15.365 73.104 15.845 73.844 16.355C73.959 16.435 73.989 16.59 73.909 16.7C73.859 16.77 73.784 16.81 73.704 16.81H73.699ZM68.2491 14.135C68.2491 14.135 68.2141 14.135 68.1941 14.13C68.0591 14.1 67.9741 13.965 68.0041 13.83C68.0841 13.47 68.1491 13.12 68.1891 12.795C68.1991 12.705 68.2591 12.63 68.3391 12.595C68.4191 12.56 68.5141 12.57 68.5841 12.625C68.5841 12.625 69.0091 12.945 69.7391 13.47C69.8491 13.55 69.8741 13.705 69.7941 13.82C69.7141 13.93 69.5591 13.955 69.4441 13.875C69.0941 13.62 68.8141 13.415 68.6191 13.27C68.5841 13.485 68.5391 13.71 68.4891 13.935C68.4641 14.05 68.3591 14.13 68.2441 14.13L68.2491 14.135ZM78.7638 28.24C78.7138 28.24 78.6588 28.225 78.6138 28.19C78.3988 28.03 77.9788 27.755 77.3739 27.365C77.2589 27.29 77.2239 27.135 77.2989 27.02C77.3739 26.905 77.5288 26.87 77.6438 26.945C78.2588 27.34 78.6888 27.625 78.9138 27.79C79.0238 27.87 79.0488 28.03 78.9688 28.14C78.9188 28.205 78.8438 28.24 78.7688 28.24H78.7638ZM76.2389 26.605C76.1939 26.605 76.1489 26.595 76.1089 26.565C75.7039 26.31 75.2689 26.045 74.8339 25.775C74.7189 25.705 74.6789 25.55 74.7539 25.43C74.8289 25.31 74.9789 25.28 75.0989 25.35C75.5389 25.62 75.9689 25.89 76.3789 26.145C76.4939 26.22 76.5339 26.37 76.4589 26.49C76.4139 26.565 76.3289 26.61 76.2489 26.61L76.2389 26.605ZM73.679 25.025C73.634 25.025 73.589 25.015 73.549 24.99L72.264 24.205C72.144 24.135 72.109 23.98 72.179 23.86C72.249 23.74 72.404 23.705 72.524 23.775L73.809 24.56C73.929 24.63 73.964 24.785 73.894 24.905C73.849 24.98 73.764 25.025 73.679 25.025ZM71.109 23.46C71.064 23.46 71.019 23.45 70.979 23.425L69.6891 22.645C69.5691 22.575 69.5341 22.42 69.6041 22.3C69.6741 22.18 69.8291 22.145 69.9491 22.215L71.239 22.995C71.359 23.065 71.394 23.22 71.324 23.34C71.279 23.415 71.194 23.46 71.109 23.46ZM70.974 29.76C70.929 29.76 70.884 29.75 70.844 29.72L69.5741 28.925C69.4591 28.85 69.4191 28.695 69.4941 28.58C69.5691 28.46 69.7241 28.43 69.8391 28.5L71.109 29.295C71.224 29.37 71.264 29.525 71.189 29.64C71.144 29.715 71.059 29.76 70.979 29.76H70.974ZM68.4291 28.17C68.3841 28.17 68.3391 28.16 68.2991 28.13L67.0292 27.335C66.9142 27.26 66.8742 27.105 66.9492 26.99C67.0242 26.875 67.1792 26.84 67.2941 26.91L68.5641 27.705C68.6791 27.78 68.7191 27.935 68.6441 28.05C68.5991 28.125 68.5141 28.17 68.4341 28.17H68.4291ZM72.099 38.565C72.029 38.565 71.954 38.535 71.909 38.475C71.649 38.16 71.304 37.805 70.889 37.42C70.789 37.325 70.784 37.17 70.874 37.065C70.964 36.96 71.124 36.96 71.229 37.05C71.664 37.45 72.019 37.82 72.294 38.155C72.384 38.26 72.369 38.42 72.259 38.505C72.214 38.545 72.154 38.565 72.099 38.565ZM69.9191 36.505C69.8641 36.505 69.8091 36.485 69.7591 36.45C69.3841 36.14 68.9891 35.83 68.5841 35.525C68.4741 35.44 68.4541 35.285 68.5391 35.175C68.6241 35.065 68.7791 35.045 68.8891 35.13C69.2941 35.44 69.6941 35.755 70.0791 36.065C70.1841 36.15 70.1991 36.31 70.1141 36.415C70.0641 36.475 69.9941 36.505 69.9191 36.505ZM67.5341 34.68C67.4841 34.68 67.4341 34.665 67.3891 34.635C66.9692 34.33 66.5542 34.04 66.1642 33.77C66.0492 33.69 66.0242 33.535 66.0992 33.42C66.1792 33.305 66.3342 33.275 66.4492 33.355C66.8392 33.625 67.2542 33.92 67.6791 34.225C67.7891 34.305 67.8191 34.46 67.7341 34.575C67.6841 34.645 67.6091 34.68 67.5291 34.68H67.5341ZM65.0642 32.97C65.0142 32.97 64.9692 32.955 64.9242 32.93C64.1642 32.425 63.6693 32.11 63.6693 32.11C63.5543 32.035 63.5193 31.88 63.5893 31.765C63.6643 31.65 63.8193 31.615 63.9343 31.685C63.9343 31.685 64.4342 32 65.2042 32.51C65.3192 32.585 65.3492 32.74 65.2742 32.855C65.2242 32.925 65.1492 32.965 65.0642 32.965V32.97Z\" fill=\"black\"/>%0D%0A<path d=\"M51.3748 32.205C51.3448 32.205 51.3198 32.205 51.2898 32.19C51.0298 32.095 50.5348 31.68 50.0548 31.155C49.9598 31.055 49.9698 30.895 50.0698 30.8C50.1698 30.705 50.3298 30.715 50.4248 30.815C50.9648 31.405 51.3648 31.68 51.4648 31.72C51.5948 31.765 51.6598 31.91 51.6148 32.04C51.5798 32.14 51.4798 32.205 51.3798 32.205H51.3748ZM49.3198 30.05C49.2398 30.05 49.1598 30.01 49.1098 29.935C48.8198 29.485 48.5798 29.02 48.3948 28.56C48.3448 28.43 48.4048 28.285 48.5348 28.235C48.6648 28.185 48.8098 28.245 48.8598 28.375C49.0298 28.805 49.2548 29.235 49.5298 29.66C49.6048 29.775 49.5698 29.93 49.4548 30.005C49.4148 30.03 49.3648 30.045 49.3198 30.045V30.05ZM48.2498 27.275C48.1248 27.275 48.0198 27.18 47.9998 27.055C47.9748 26.855 47.9648 26.65 47.9648 26.45C47.9648 26.125 47.9998 25.8 48.0648 25.48C48.0948 25.345 48.2248 25.26 48.3598 25.285C48.4948 25.315 48.5798 25.445 48.5548 25.58C48.4948 25.865 48.4648 26.155 48.4648 26.45C48.4648 26.63 48.4748 26.815 48.4948 26.995C48.5098 27.13 48.4148 27.255 48.2748 27.275C48.2648 27.275 48.2548 27.275 48.2448 27.275H48.2498ZM48.8398 24.385C48.7998 24.385 48.7548 24.375 48.7148 24.35C48.5948 24.28 48.5548 24.13 48.6198 24.01C48.7398 23.795 48.8798 23.585 49.0348 23.38C49.1998 23.16 49.3698 22.955 49.5348 22.76C49.6248 22.655 49.7848 22.645 49.8898 22.735C49.9948 22.825 50.0048 22.985 49.9148 23.09C49.7548 23.275 49.5948 23.47 49.4348 23.68C49.2948 23.87 49.1648 24.06 49.0548 24.255C49.0098 24.335 48.9248 24.38 48.8398 24.38V24.385ZM55.0298 23.64C54.8898 23.64 54.7798 23.53 54.7798 23.39C54.7798 23.25 54.8898 23.14 55.0298 23.14C55.3848 23.14 55.5948 22.94 55.5948 22.61C55.5948 22.555 55.5898 22.495 55.5748 22.43C55.5498 22.295 55.6398 22.165 55.7748 22.14C55.9048 22.115 56.0398 22.205 56.0648 22.34C56.0848 22.435 56.0898 22.525 56.0898 22.61C56.0898 23.22 55.6548 23.64 55.0298 23.64ZM53.7348 22.97C53.6648 22.97 53.5998 22.94 53.5498 22.885C53.3248 22.635 53.1348 22.33 52.9798 21.985C52.9098 21.83 52.8498 21.66 52.7948 21.48C52.7548 21.35 52.8298 21.21 52.9598 21.17C53.0948 21.13 53.2298 21.205 53.2698 21.335C53.3198 21.495 53.3748 21.645 53.4348 21.785C53.5648 22.08 53.7298 22.34 53.9198 22.55C54.0098 22.655 54.0048 22.81 53.8998 22.905C53.8498 22.95 53.7948 22.97 53.7348 22.97ZM50.8048 22.14C50.7298 22.14 50.6598 22.11 50.6098 22.045C50.5248 21.935 50.5398 21.78 50.6498 21.695C51.0848 21.35 51.5348 21.075 51.9848 20.885C52.1098 20.83 52.2598 20.885 52.3148 21.015C52.3698 21.14 52.3098 21.29 52.1848 21.345C51.7748 21.52 51.3648 21.77 50.9648 22.085C50.9198 22.12 50.8648 22.14 50.8098 22.14H50.8048ZM54.9648 21.45C54.9198 21.45 54.8698 21.435 54.8298 21.41C54.4648 21.18 54.0198 21.055 53.5348 21.05C53.3948 21.05 53.2848 20.935 53.2848 20.8C53.2848 20.66 53.3948 20.55 53.5348 20.55C54.1098 20.55 54.6498 20.705 55.0948 20.99C55.2098 21.065 55.2448 21.22 55.1698 21.335C55.1198 21.41 55.0398 21.45 54.9598 21.45H54.9648ZM52.8098 20.17C52.6698 20.17 52.5598 20.065 52.5598 19.925V19.91C52.5598 19.375 52.6398 18.855 52.7948 18.37C52.8348 18.24 52.9798 18.165 53.1098 18.205C53.2398 18.245 53.3148 18.39 53.2748 18.52C53.1348 18.96 53.0648 19.425 53.0648 19.91C53.0648 20.05 52.9548 20.165 52.8148 20.165L52.8098 20.17ZM53.7248 17.38C53.6698 17.38 53.6148 17.365 53.5698 17.325C53.4598 17.24 53.4398 17.085 53.5248 16.975C53.8398 16.57 54.2348 16.215 54.6898 15.915C54.8048 15.84 54.9598 15.87 55.0348 15.99C55.1098 16.105 55.0748 16.26 54.9598 16.335C54.5498 16.6 54.1998 16.92 53.9198 17.285C53.8698 17.35 53.7948 17.38 53.7248 17.38ZM56.1798 15.735C56.0748 15.735 55.9798 15.67 55.9448 15.565C55.8998 15.435 55.9698 15.295 56.1048 15.25C56.5648 15.1 57.0698 14.98 57.6048 14.905C57.7348 14.885 57.8698 14.98 57.8898 15.115C57.9098 15.25 57.8148 15.38 57.6798 15.4C57.1698 15.475 56.6948 15.585 56.2648 15.725C56.2398 15.735 56.2098 15.74 56.1848 15.74L56.1798 15.735Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M55.7846 11.56C55.7496 11.56 55.7146 11.555 55.6796 11.535C55.5546 11.475 55.4996 11.33 55.5546 11.205C56.9596 8.145 59.4396 9.105 59.4646 9.115C59.5946 9.165 59.6546 9.31 59.6046 9.44C59.5546 9.565 59.4096 9.63 59.2796 9.58C59.1946 9.545 57.2096 8.795 56.0096 11.415C55.9696 11.505 55.8796 11.56 55.7846 11.56ZM55.2246 9.215C56.2246 7.4 57.6146 7.72 57.6746 7.73C57.8096 7.76 57.9446 7.68 57.9796 7.55C58.0146 7.415 57.9346 7.28 57.7996 7.245C57.7796 7.245 55.9796 6.81 54.7896 8.97C54.7246 9.09 54.7646 9.245 54.8896 9.31C54.9296 9.33 54.9696 9.34 55.0096 9.34C55.0996 9.34 55.1846 9.295 55.2296 9.21L55.2246 9.215Z\" fill=\"black\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198Z\" fill=\"white\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198ZM61.2898 12.54C61.2898 12.54 61.3547 12.49 61.3897 12.455C61.4947 12.355 61.4947 12.335 61.4247 12.215C61.4047 12.18 61.3797 12.15 61.3547 12.12C60.9847 11.715 60.5198 11.47 59.9898 11.34C59.8348 11.3 59.6798 11.29 59.5198 11.325C59.3998 11.35 59.3047 11.405 59.2447 11.515C59.0797 11.825 59.1597 12.255 59.4247 12.485C59.9247 12.925 60.7148 12.955 61.2898 12.54ZM61.7898 13.24C61.2898 13.62 61.0797 14.285 61.2647 14.9C61.3797 15.28 61.6847 15.505 62.0847 15.5C62.2697 15.5 62.3947 15.42 62.4747 15.255C62.5397 15.12 62.5698 14.975 62.5798 14.83C62.6098 14.365 62.5297 13.92 62.3347 13.5C62.2797 13.385 62.1998 13.28 62.1248 13.175C62.0848 13.12 62.0298 13.11 61.9698 13.145C61.9098 13.18 61.8498 13.215 61.7898 13.25V13.24ZM60.6648 14.885C60.0398 14.455 59.5998 13.895 59.3598 13.175C59.1298 13.515 59.1798 14.085 59.4698 14.46C59.7498 14.825 60.2898 15.015 60.6648 14.88V14.885ZM60.9197 14.09C60.9197 14.09 60.9298 14.07 60.9298 14.065C60.9948 13.775 61.1248 13.515 61.3098 13.285C61.3198 13.27 61.3248 13.23 61.3098 13.215C61.2648 13.145 61.2148 13.08 61.1648 13.015C61.1398 12.98 61.1097 12.975 61.0697 12.99C60.8047 13.1 60.5248 13.145 60.2398 13.125C60.2248 13.125 60.2098 13.125 60.1848 13.125C60.3498 13.51 60.5948 13.825 60.9148 14.085L60.9197 14.09Z\" fill=\"black\"/>%0D%0A<path d=\"M62.0797 15.86C61.6847 15.86 61.2097 15.68 60.9847 15.17C60.9397 15.19 60.8997 15.205 60.8547 15.22C60.3197 15.375 59.8297 15.265 59.3947 14.9C59.3597 14.87 59.3447 14.865 59.3047 14.875C59.1997 14.905 59.1147 14.92 59.0397 14.93C58.9897 14.935 58.9247 14.92 58.8847 14.885C58.8597 14.865 58.8047 14.805 58.8697 14.695C58.8847 14.665 58.9047 14.635 58.9197 14.605C58.9447 14.555 58.9747 14.5 59.0047 14.455C59.0197 14.43 59.0197 14.415 59.0047 14.38C58.7947 13.915 58.8047 13.455 59.0347 13.015C59.0697 12.945 59.1197 12.88 59.1597 12.82C59.1697 12.805 59.1797 12.79 59.1947 12.77L59.1597 12.74C58.7247 12.345 58.7247 11.75 58.9097 11.37C59.0197 11.14 59.2197 11 59.5047 10.96C59.8347 10.915 60.1397 10.995 60.3697 11.075C60.6547 11.175 60.9347 11.32 61.2047 11.51C61.3647 11.35 61.5447 11.255 61.7597 11.22C62.0197 11.175 62.2797 11.23 62.5347 11.365C62.5447 11.365 62.5497 11.37 62.5497 11.37C62.5497 11.37 62.5497 11.37 62.5597 11.36C62.8697 10.995 62.9547 10.59 62.8147 10.12C62.7797 9.99999 62.8147 9.89999 62.8997 9.84999C62.9597 9.81499 63.0247 9.80999 63.0797 9.83499C63.1397 9.85999 63.1897 9.90999 63.2147 9.98499C63.3597 10.43 63.3347 10.855 63.1397 11.255C63.0897 11.36 63.0247 11.455 62.9597 11.545C62.9397 11.575 62.9197 11.605 62.8997 11.64L63.1447 11.97L63.1697 11.96C63.2197 11.94 63.2747 11.915 63.3297 11.9C63.8497 11.74 64.3447 11.815 64.8097 12.13C64.8697 12.17 64.9097 12.225 64.9197 12.285C64.9297 12.34 64.9197 12.395 64.8847 12.44C64.8147 12.54 64.6897 12.56 64.5697 12.48C64.1647 12.21 63.7497 12.17 63.3047 12.365C63.2947 12.365 63.2947 12.37 63.2997 12.385C63.3697 12.735 63.3197 13.035 63.1397 13.3C63.0547 13.425 62.9347 13.53 62.7897 13.61H62.7797C62.7847 13.64 62.7947 13.67 62.7997 13.695C62.8247 13.785 62.8497 13.875 62.8697 13.965C62.9597 14.365 62.9747 14.72 62.9197 15.055C62.8747 15.31 62.7897 15.5 62.6497 15.645C62.5197 15.785 62.3447 15.86 62.1397 15.87C62.1197 15.87 62.0997 15.87 62.0797 15.87V15.86ZM61.0447 15.015L61.0697 15.06C61.0697 15.06 61.0847 15.09 61.0897 15.1C61.2997 15.595 61.7647 15.755 62.1347 15.735C62.3097 15.725 62.4497 15.665 62.5597 15.55C62.6797 15.42 62.7547 15.255 62.7947 15.02C62.8497 14.705 62.8347 14.365 62.7447 13.98C62.7247 13.895 62.6997 13.805 62.6747 13.72C62.6647 13.68 62.6497 13.635 62.6397 13.59L62.6247 13.545L62.7197 13.49C62.8497 13.42 62.9497 13.335 63.0247 13.22C63.1847 12.985 63.2297 12.715 63.1647 12.4C63.1547 12.345 63.1547 12.28 63.2447 12.24C63.7247 12.03 64.1897 12.07 64.6297 12.365C64.6897 12.405 64.7397 12.405 64.7697 12.355C64.7847 12.335 64.7897 12.315 64.7847 12.295C64.7847 12.27 64.7597 12.24 64.7297 12.22C64.2997 11.93 63.8397 11.86 63.3597 12.005C63.3097 12.02 63.2597 12.04 63.2097 12.06L63.0947 12.105L62.7397 11.63L62.7647 11.595C62.7947 11.55 62.8247 11.505 62.8497 11.465C62.9147 11.37 62.9747 11.28 63.0197 11.185C63.1997 10.82 63.2247 10.425 63.0897 10.01C63.0797 9.97499 63.0597 9.94999 63.0297 9.93999C63.0047 9.92999 62.9797 9.93499 62.9547 9.94999C62.9397 9.95999 62.8947 9.98499 62.9247 10.075C63.0747 10.58 62.9847 11.035 62.6497 11.43C62.5947 11.49 62.5397 11.5 62.4697 11.46C62.2397 11.335 62.0097 11.29 61.7747 11.325C61.5747 11.355 61.4047 11.455 61.2547 11.615L61.2197 11.655L61.1547 11.61C61.1547 11.61 61.1347 11.595 61.1247 11.59C60.8647 11.41 60.5947 11.27 60.3197 11.175C60.1047 11.1 59.8197 11.02 59.5147 11.065C59.2747 11.1 59.1097 11.21 59.0147 11.405C58.8497 11.745 58.8497 12.275 59.2347 12.63L59.3447 12.735L59.3147 12.78C59.2947 12.815 59.2697 12.845 59.2497 12.875C59.2047 12.935 59.1647 12.995 59.1297 13.06C58.9197 13.465 58.9097 13.89 59.1047 14.315C59.1247 14.365 59.1447 14.43 59.0947 14.505C59.0647 14.55 59.0397 14.6 59.0147 14.65C58.9997 14.68 58.9797 14.715 58.9647 14.745C58.9497 14.77 58.9547 14.78 58.9547 14.78C58.9697 14.79 58.9947 14.8 59.0097 14.795C59.0847 14.785 59.1597 14.77 59.2597 14.74C59.3347 14.72 59.3947 14.735 59.4597 14.79C59.8597 15.13 60.3097 15.23 60.7997 15.085C60.8397 15.075 60.8797 15.06 60.9197 15.04L61.0297 15L61.0447 15.015ZM62.0847 15.56C61.6597 15.56 61.3297 15.32 61.2097 14.915C61.0197 14.28 61.2397 13.585 61.7547 13.19H61.7597L61.9397 13.085C62.0297 13.03 62.1197 13.055 62.1747 13.135C62.1897 13.16 62.2097 13.185 62.2297 13.21C62.2897 13.29 62.3497 13.375 62.3897 13.47C62.5897 13.9 62.6697 14.36 62.6397 14.83C62.6297 15 62.5947 15.145 62.5297 15.28C62.4397 15.465 62.2897 15.56 62.0847 15.56ZM61.8297 13.29C61.3547 13.655 61.1547 14.295 61.3297 14.875C61.4347 15.23 61.7097 15.435 62.0847 15.435C62.2447 15.435 62.3497 15.37 62.4197 15.225C62.4747 15.105 62.5097 14.975 62.5197 14.82C62.5497 14.365 62.4697 13.93 62.2797 13.52C62.2397 13.435 62.1847 13.36 62.1297 13.28C62.1097 13.255 62.0947 13.23 62.0747 13.2C62.0597 13.175 62.0397 13.165 62.0047 13.185L61.8297 13.285V13.29ZM60.4097 14.99C60.0547 14.99 59.6597 14.8 59.4297 14.5C59.1197 14.1 59.0697 13.505 59.3147 13.14L59.3847 13.035L59.4247 13.155C59.6597 13.855 60.0797 14.405 60.7047 14.83L60.8047 14.9L60.6897 14.94C60.5997 14.97 60.5047 14.985 60.4047 14.985L60.4097 14.99ZM59.3547 13.33C59.2147 13.65 59.2797 14.105 59.5247 14.425C59.7597 14.725 60.1897 14.905 60.5247 14.86C59.9847 14.46 59.5897 13.945 59.3547 13.33ZM60.9547 14.175L60.8897 14.14C60.5547 13.87 60.3097 13.545 60.1397 13.155L60.0997 13.07H60.1947C60.2297 13.07 60.2397 13.07 60.2597 13.07C60.5347 13.09 60.8047 13.045 61.0597 12.94C61.1297 12.91 61.1897 12.925 61.2297 12.985L61.2647 13.035C61.3047 13.085 61.3397 13.135 61.3747 13.19C61.3997 13.23 61.3947 13.295 61.3697 13.335C61.1897 13.56 61.0647 13.815 61.0047 14.09L60.9947 14.12L60.9597 14.185L60.9547 14.175ZM60.2947 13.195C60.4397 13.5 60.6397 13.755 60.8947 13.98C60.9647 13.715 61.0897 13.465 61.2697 13.245C61.2347 13.2 61.1997 13.15 61.1647 13.1L61.1297 13.05C61.1297 13.05 61.1197 13.045 61.1047 13.05C60.8447 13.16 60.5697 13.205 60.2947 13.195ZM60.3797 12.895C60.0197 12.895 59.6597 12.77 59.3847 12.53C59.0997 12.28 59.0147 11.82 59.1947 11.485C59.2547 11.365 59.3647 11.29 59.5097 11.26C59.6647 11.225 59.8297 11.235 60.0047 11.275C60.5697 11.415 61.0397 11.68 61.3997 12.07C61.4297 12.1 61.4547 12.135 61.4797 12.175C61.5697 12.325 61.5597 12.375 61.4347 12.495C61.4097 12.52 61.3797 12.545 61.3597 12.56L61.3297 12.585C61.0447 12.79 60.7097 12.89 60.3797 12.89V12.895ZM59.7147 11.365C59.6547 11.365 59.5947 11.37 59.5347 11.385C59.4247 11.41 59.3497 11.46 59.3047 11.545C59.1547 11.835 59.2247 12.225 59.4697 12.44C59.9547 12.865 60.7047 12.89 61.2597 12.495L61.2847 12.475C61.2847 12.475 61.3297 12.435 61.3547 12.415C61.4047 12.365 61.4114 12.31 61.3747 12.25C61.3547 12.22 61.3347 12.19 61.3097 12.165C60.9597 11.785 60.5247 11.54 59.9747 11.405C59.8797 11.385 59.7947 11.37 59.7097 11.37L59.7147 11.365Z\" fill=\"black\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.9091 17.015L86.109 18.425C86.5391 18.615 86.7041 19.135 86.4691 19.54L81.544 28.025C81.349 28.365 80.929 28.505 80.569 28.36L78.759 27.62C78.364 27.46 78.169 27.01 78.324 26.61L81.854 17.45C82.014 17.03 82.494 16.835 82.904 17.015H82.9091ZM79.219 28.62C78.299 28.245 77.249 28.685 76.874 29.605C76.499 30.525 76.939 31.575 77.859 31.95C78.779 32.325 79.829 31.885 80.204 30.965C80.579 30.045 80.139 28.995 79.219 28.62Z\" fill=\"%23F82C13\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
520
526
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
|
|
521
527
|
type: Inject,
|
|
522
528
|
args: [SD_FORM_CONFIGURATION]
|
|
@@ -575,6 +581,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
575
581
|
args: ['inlineError']
|
|
576
582
|
}], disabled: [{
|
|
577
583
|
type: Input
|
|
584
|
+
}], _viewed: [{
|
|
585
|
+
type: Input,
|
|
586
|
+
args: ['viewed']
|
|
587
|
+
}], hyperlink: [{
|
|
588
|
+
type: Input
|
|
578
589
|
}], _multiple: [{
|
|
579
590
|
type: Input,
|
|
580
591
|
args: ['multiple']
|