diff --git a/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts b/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts index 68d1de1970cc3c875b7d33e818be0cb03ad2efd2..dbdc60ac3e19ac5f973eff709bb43aeeacbecfc9 100644 --- a/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts +++ b/src/app/form/orientation-form-view/enums/MeetingRDVSSteps.enum.ts @@ -1,4 +1,5 @@ export enum MeetingRDVSSteps { + infoScreen, structureOrientator, publicTypeMandatory, publicTypeOptional, diff --git a/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts b/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts index b7911a36d4ee7a20bb87449b827a88eb48ef3cfe..e966b8aaf4daae5b468582d61e503a45c958b2a0 100644 --- a/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts +++ b/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts @@ -1,4 +1,5 @@ export enum HotlineMediationSteps { + infoScreen, mediationBeneciaryInfo, mediationHoursSelection, mediationLanguageSelection, diff --git a/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.html b/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.html new file mode 100644 index 0000000000000000000000000000000000000000..cf036c5c4d90afe778c59142c5b2c2e397a821a5 --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.html @@ -0,0 +1,18 @@ +<div class="container" *ngIf="currentType === currentTypeEnum.meetings"> + <img src="../../../../../assets/img/rdvsBeginning.svg" alt="Meeting image" /> + <h2>Vous vous apprêtez à prendre RDV auprès d'un Conseiller numérique</h2> + <p> + Ces professionnels sont là pour accompagner les publics sur des problématiques liées au numérique et non aux + démarches administratives en elles-mêmes. Si le frein est uniquement administratif, merci d'orienter le bénéficiaire + vers un lieu type "Maison France services" + </p> +</div> +<div class="container" *ngIf="currentType === currentTypeEnum.onlineMediation"> + <img src="../../../../../assets/img/onlineMediationBeginning.svg" alt="Illustration RDV en ligne" /> + <h2>Vous êtes sur le point de prendre un rendez-vous avec un médiateur ou une médiatrice à distance</h2> + <p> + Ce service d’accompagnement numérique permettra au bénéficiaire d’être assisté depuis son domicile pour apprendre à + utiliser son matériel ou effectuer une démarche sur internet par exemple. En choisissant de prendre un rendez-vous, + le bénéficiaire sera recontacté par l’un de nos médiateurs numériques sur le créneau sélectionné. + </p> +</div> diff --git a/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.scss b/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..00cf038cd14635c1e121bbc660a05ca1ea31694c --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.scss @@ -0,0 +1,12 @@ +.container { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + justify-content: center; + height: 90%; + h2 { + margin-top: 2rem; + margin-bottom: 0.5rem; + } +} diff --git a/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.ts b/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..dad34f296e9d3b8f05382c7c2a8cb519d29bb537 --- /dev/null +++ b/src/app/form/orientation-form-view/global-components/information-screen/information-screen.component.ts @@ -0,0 +1,18 @@ +import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; +import { OnlineDemarche } from '../../enums/onlineDemarche.enum'; + +@Component({ + selector: 'app-information-screen', + templateUrl: './information-screen.component.html', + styleUrls: ['./information-screen.component.scss'], +}) +export class InformationScreenComponent implements OnInit { + @Input() currentType: OnlineDemarche; + @Output() checkValidation = new EventEmitter<boolean>(); + + public currentTypeEnum = OnlineDemarche; + + ngOnInit(): void { + this.checkValidation.emit(); + } +} diff --git a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html index e182623a35e23c6168d021f5a472b702c7ca8213..41cff0b868f406648f72e9262d9bdf4b42d5a2f9 100644 --- a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html +++ b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.html @@ -13,6 +13,11 @@ </ng-container> <!-- MEETING FORM (RDVS) --> <ng-container *ngIf="currentType === onlineDemarcheTypeEnum.meetings"> + <app-information-screen + *ngIf="currentStep === onlineDemarchesMeetingSteps.infoScreen" + [currentType]="currentType" + (checkValidation)="checkValidation()" + ></app-information-screen> <app-structure-orientator *ngIf="currentStep === onlineDemarchesMeetingSteps.structureOrientator" [profile]="profile" @@ -71,6 +76,11 @@ </ng-container> <!-- ONLINE MEDIATION FORM --> <ng-container *ngIf="currentType === onlineDemarcheTypeEnum.onlineMediation"> + <app-information-screen + *ngIf="currentStep === HotlineMediationStepsEnum.infoScreen" + [currentType]="currentType" + (checkValidation)="checkValidation()" + ></app-information-screen> <app-online-demarch *ngIf="currentStep === HotlineMediationStepsEnum.onlineDemarch" [form]="form" diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.ts b/src/app/form/orientation-form-view/orientation-form-view.component.ts index 43725bd6a429dfd5505af8cee85f4cc6e8dfbb06..53b0f9c90e94542d35d473e118b74a7a153170c5 100644 --- a/src/app/form/orientation-form-view/orientation-form-view.component.ts +++ b/src/app/form/orientation-form-view/orientation-form-view.component.ts @@ -216,15 +216,15 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked ); break; case OnlineDemarche.meetings: - this.currentStep = MeetingRDVSSteps.structureOrientator; this.currentType = OnlineDemarche.meetings; + this.currentStep = MeetingRDVSSteps.infoScreen; this.setStepNumber(Object.keys(MeetingRDVSSteps).length); this.skipStructureOrientator(); this.onlineDemarchForm = this.orientationUtils.createMeetingRDVSForm(this.filters, this.orientator); break; case OnlineDemarche.onlineMediation: this.currentType = OnlineDemarche.onlineMediation; - this.currentStep = HotlineMediationSteps.mediationBeneciaryInfo; + this.currentStep = HotlineMediationSteps.infoScreen; this.setStepNumber(Object.keys(HotlineMediationSteps).length); this.onlineDemarchForm = this.orientationUtils.createOnlineMediationForm( this.utils.convertFiltersToModule(this.filters) diff --git a/src/app/form/orientation-form-view/orientation.module.ts b/src/app/form/orientation-form-view/orientation.module.ts index 0479e796f3da41749380c86d9db0a3a5c4540a65..2f38f553b80d8c8951ca81f78f999985d46c2ef5 100644 --- a/src/app/form/orientation-form-view/orientation.module.ts +++ b/src/app/form/orientation-form-view/orientation.module.ts @@ -28,6 +28,7 @@ import { SelectComponent } from './global-components/select/select.component'; import { MeetingDigitalPassComponent } from './online-demarch/meeting-rdvs/meeting-digital-pass/meeting-digital-pass.component'; import { MeetingRdvsDoingComponent } from './online-demarch/meeting-rdvs/meeting-rdvs-doing/meeting-rdvs-doing.component'; import { MediationBeneciaryInfoComponent } from './online-demarch/online-mediation/mediation-beneciary-info/mediation-beneciary-info.component'; +import { InformationScreenComponent } from './global-components/information-screen/information-screen.component'; @NgModule({ declarations: [ @@ -57,6 +58,7 @@ import { MediationBeneciaryInfoComponent } from './online-demarch/online-mediati SelectComponent, MeetingDigitalPassComponent, MeetingRdvsDoingComponent, + InformationScreenComponent, ], imports: [OrientationRoutingModule, CartoModule, SharedModule], }) diff --git a/src/app/utils/orientationUtils.ts b/src/app/utils/orientationUtils.ts index 74bd48cf50b86870587c2b1231be7f0a8c704eb6..3c69623c992420a254b16a7b43d4a2e5ba98d8ef 100644 --- a/src/app/utils/orientationUtils.ts +++ b/src/app/utils/orientationUtils.ts @@ -164,6 +164,9 @@ export class OrientationUtils { updatePageValid: (isValid: boolean) => void, step: HotlineMediationSteps ): void { + pagesValidation[HotlineMediationSteps.infoScreen] = { + valid: true, + }; pagesValidation[HotlineMediationSteps.mediationBeneciaryInfo] = { valid: form.get('name').valid && form.get('surname').valid && form.get('phone').valid, }; @@ -223,6 +226,9 @@ export class OrientationUtils { updatePageValid: (isValid: boolean) => void, step: MeetingRDVSSteps ): void { + pagesValidation[MeetingRDVSSteps.infoScreen] = { + valid: true, + }; pagesValidation[MeetingRDVSSteps.structureOrientator] = { valid: form.get('structureOrientator').valid, }; diff --git a/src/assets/img/onlineMediationBeginning.svg b/src/assets/img/onlineMediationBeginning.svg new file mode 100644 index 0000000000000000000000000000000000000000..39de98a87959b2ae17d9c02c7b081a704d62b81f --- /dev/null +++ b/src/assets/img/onlineMediationBeginning.svg @@ -0,0 +1,233 @@ +<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_11300_191566)"> +<path d="M34.0001 113.833L12.9833 101.799C6.72166 98.2133 6.70077 92.3723 12.9367 88.7719L40.3447 72.9479C46.5625 69.3581 56.6436 69.3581 62.8614 72.9479L178.986 139.993" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M109.406 131.833L28.0001 178.833" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M34 113.833L115.406 160.833" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M180.084 142.273L190.103 147.951C196.42 151.53 196.467 157.397 190.208 161.011L164.414 175.903C158.196 179.493 148.115 179.493 141.898 175.903L115.292 160.543" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M183.915 137.345C187.146 139.207 187.16 142.228 183.955 144.097C180.75 145.966 175.531 145.959 172.3 144.097C169.069 142.235 169.056 139.214 172.267 137.345C175.472 135.483 180.684 135.483 183.915 137.345Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M178 95.5L178 140.5" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<path d="M94.6214 57.1831C96.4501 58.0939 96.4615 59.5728 94.6441 60.4836C92.8268 61.3944 89.8722 61.3944 88.0435 60.4836C86.2148 59.5728 86.2072 58.0939 88.0246 57.1831C89.8419 56.2723 92.7928 56.2723 94.6214 57.1831Z" fill="#EDEDED"/> +<path d="M156.014 122.542L119.826 101.614C119.236 101.272 118.282 101.272 117.698 101.614L54.3054 138.519C54.0106 138.687 53.8661 138.913 53.8661 139.139L53.8545 143.089C53.8545 143.314 53.999 143.54 54.2996 143.708L90.4878 164.637C91.0775 164.978 92.0313 164.978 92.6209 164.637L156.014 127.737C156.303 127.569 156.453 127.343 156.453 127.123L156.465 123.173C156.465 123.202 156.453 123.237 156.447 123.266C156.494 123.005 156.355 122.739 156.014 122.542Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M153.395 122.044L118.924 102.106C118.363 101.781 117.455 101.781 116.895 102.106L56.5193 137.257C56.2419 137.419 56.1031 137.633 56.1031 137.847L56.0916 141.606C56.0916 141.82 56.2303 142.034 56.5136 142.196L90.9848 162.135C91.5456 162.459 92.4589 162.459 93.0139 162.135L153.389 126.984C153.667 126.821 153.805 126.613 153.805 126.399L153.817 122.64C153.817 122.669 153.805 122.698 153.8 122.727C153.852 122.478 153.719 122.229 153.395 122.044Z" fill="#EDEDED"/> +<path d="M97.5812 52.529L100.951 52.5C100.818 52.5 100.68 52.5405 100.547 52.6158L97.1765 52.6448C97.3037 52.5637 97.4424 52.529 97.5812 52.529Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M58.0283 134.39L54.6581 134.419C54.2708 134.425 53.9008 134.136 53.7332 133.661L57.1034 133.632C57.2768 134.112 57.6468 134.396 58.0283 134.39Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M41.6569 86.6729L38.2866 86.7018L97.1763 52.6394L100.546 52.6162L41.6569 86.6729Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M57.1036 133.631L53.7334 133.66L37.7898 88.4098L41.16 88.3809L57.1036 133.631Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M41.1599 88.3812L37.7897 88.4101C37.5585 87.7558 37.7839 86.9914 38.2868 86.7018L41.6571 86.6729C41.1542 86.9624 40.9287 87.7268 41.1599 88.3812Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M100.547 52.6158C101.055 52.3204 101.645 52.6158 101.876 53.2643L117.82 98.5149C118.051 99.1635 117.826 99.9279 117.323 100.217L58.433 134.28C57.9243 134.575 57.3289 134.28 57.1034 133.631L41.1598 88.3808C40.9286 87.7264 41.154 86.962 41.657 86.6724L100.547 52.6158Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M100.061 56.6402C100.541 56.3622 101.096 56.6402 101.316 57.254L116.352 99.9219C116.566 100.536 116.357 101.254 115.883 101.532L60.3582 133.648C59.8784 133.926 59.3177 133.648 59.1038 133.04L44.062 90.3668C43.8481 89.7529 44.0562 89.0291 44.536 88.7569L100.061 56.6402Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M154.02 120.069L154.008 123.845C154.008 124.059 153.87 124.268 153.592 124.43L153.604 120.654C153.881 120.492 154.02 120.284 154.02 120.069Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M55.884 139.116L55.8956 135.34C55.8956 135.554 56.0343 135.768 56.3176 135.936L56.306 139.712C56.0228 139.544 55.884 139.33 55.884 139.116Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M153.604 120.654L153.592 124.43L92.9624 159.732L92.974 155.956L153.604 120.654Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M90.9333 155.956L90.9217 159.732L56.3059 139.712L56.3175 135.937L90.9333 155.956Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M92.9741 155.956L92.9625 159.732C92.4018 160.056 91.4884 160.056 90.9219 159.732L90.9334 155.956C91.4942 156.28 92.4076 156.28 92.9741 155.956Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M153.598 119.473C154.159 119.797 154.164 120.33 153.604 120.654L92.9739 155.956C92.4132 156.28 91.4998 156.28 90.9333 155.956L56.3175 135.936C55.7568 135.612 55.751 135.079 56.3117 134.755L116.941 99.459C117.502 99.1347 118.416 99.1347 118.976 99.459L153.598 119.473Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M127.63 132.653C127.752 132.722 127.752 132.838 127.63 132.908L114.635 140.471C114.514 140.54 114.317 140.54 114.196 140.471L106.779 136.179C106.657 136.11 106.657 135.994 106.779 135.925L119.774 128.362C119.896 128.292 120.092 128.292 120.214 128.362L127.63 132.653Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M74.4121 70.1439C74.8715 69.9128 75.1359 69.5101 75.0027 69.2442C74.8695 68.9784 74.3891 68.9502 73.9297 69.1813C73.4703 69.4123 73.2059 69.8151 73.3391 70.0809C73.4724 70.3467 73.9528 70.3749 74.4121 70.1439Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M78.5153 141.9C78.3303 141.9 78.1569 141.86 78.0355 141.79L75.6076 140.383C75.5093 140.325 75.4919 140.279 75.4919 140.267C75.4919 140.256 75.5093 140.209 75.6018 140.157L79.8218 137.702C79.9432 137.632 80.1166 137.592 80.3016 137.592C80.4866 137.592 80.66 137.632 80.7872 137.702L83.2152 139.109C83.3134 139.167 83.3308 139.213 83.3308 139.225C83.3308 139.236 83.3134 139.283 83.221 139.335L79.0009 141.79C78.868 141.86 78.6945 141.9 78.5153 141.9Z" fill="white"/> +<path d="M80.296 137.882C80.4521 137.882 80.5735 137.922 80.6371 137.957L82.828 139.225L78.8508 141.542C78.793 141.576 78.6716 141.611 78.5155 141.611C78.3594 141.611 78.238 141.576 78.1802 141.542L75.9892 140.274L79.9665 137.957C80.0185 137.917 80.1399 137.882 80.296 137.882ZM80.296 137.303C80.0705 137.303 79.8451 137.355 79.6716 137.453L75.4516 139.909C75.1105 140.111 75.1105 140.436 75.4574 140.638L77.8854 142.046C78.0588 142.144 78.2842 142.196 78.5097 142.196C78.7351 142.196 78.9606 142.144 79.134 142.046L83.3541 139.59C83.6951 139.387 83.6951 139.063 83.3483 138.866L80.9203 137.459C80.7469 137.355 80.5214 137.303 80.296 137.303Z" fill="#706F6F"/> +<path d="M73.7231 139.132C73.5381 139.132 73.3647 139.091 73.2433 139.022L70.8153 137.615C70.7171 137.557 70.6997 137.51 70.6997 137.499C70.6997 137.487 70.7171 137.441 70.8095 137.389L77.7177 133.37C77.8391 133.3 78.0125 133.26 78.1975 133.26C78.3825 133.26 78.5559 133.3 78.6831 133.37L81.111 134.777C81.1978 134.829 81.2267 134.875 81.2267 134.893C81.2267 134.904 81.1978 134.957 81.111 135.003L74.2029 139.022C74.0815 139.091 73.9081 139.132 73.7231 139.132Z" fill="white"/> +<path d="M78.1918 133.544C78.3479 133.544 78.4693 133.584 78.5329 133.619L80.7239 134.887L74.0585 138.767C74.0007 138.802 73.8793 138.837 73.7232 138.837C73.5903 138.837 73.4631 138.808 73.3879 138.762L71.197 137.493L77.8623 133.613C77.9201 133.584 78.0358 133.544 78.1918 133.544ZM78.1918 132.965C77.9664 132.965 77.7409 133.017 77.5675 133.115L70.6594 137.134C70.3183 137.337 70.3183 137.661 70.6652 137.864L73.0931 139.271C73.2665 139.37 73.492 139.422 73.7175 139.422C73.9429 139.422 74.1684 139.37 74.3418 139.271L81.2499 135.252C81.591 135.05 81.591 134.725 81.2441 134.528L78.8162 133.121C78.6485 133.017 78.4173 132.965 78.1918 132.965Z" fill="#706F6F"/> +<path d="M68.9364 136.364C68.7514 136.364 68.578 136.323 68.4508 136.254L66.0228 134.847C65.9246 134.789 65.9072 134.742 65.9072 134.731C65.9072 134.719 65.9246 134.673 66.0171 134.621L68.4277 133.214C68.5491 133.144 68.7225 133.104 68.9075 133.104C69.0925 133.104 69.2659 133.144 69.3931 133.214L71.821 134.621C71.9193 134.679 71.9367 134.725 71.9367 134.737C71.9367 134.748 71.9193 134.794 71.821 134.847L69.4104 136.254C69.2948 136.323 69.1214 136.364 68.9364 136.364Z" fill="white"/> +<path d="M68.9133 133.394C69.0694 133.394 69.1908 133.434 69.2544 133.469L71.4453 134.737L69.2717 136.005C69.2139 136.04 69.0925 136.075 68.9365 136.075C68.7804 136.075 68.659 136.034 68.5954 135.999L66.4044 134.731L68.578 133.469C68.6358 133.428 68.7572 133.394 68.9133 133.394ZM68.9133 132.814C68.6879 132.814 68.4566 132.867 68.289 132.965L65.8784 134.372C65.5373 134.575 65.5373 134.899 65.8842 135.102L68.3121 136.509C68.4855 136.608 68.7168 136.66 68.9422 136.66C69.1677 136.66 69.3931 136.608 69.5666 136.509L71.9772 135.102C72.324 134.899 72.324 134.575 71.9714 134.372L69.5434 132.965C69.37 132.861 69.1388 132.814 68.9133 132.814Z" fill="#706F6F"/> +<path d="M100.384 118.053C100.199 118.053 100.026 118.013 99.8988 117.943L97.4708 116.536C97.3726 116.478 97.3552 116.432 97.3552 116.42C97.3552 116.409 97.3726 116.362 97.4708 116.31L99.8815 114.903C100.003 114.834 100.176 114.793 100.361 114.793C100.546 114.793 100.72 114.834 100.847 114.903L103.275 116.31C103.362 116.362 103.396 116.409 103.396 116.426C103.396 116.438 103.367 116.484 103.281 116.536L100.87 117.943C100.743 118.013 100.564 118.053 100.384 118.053Z" fill="white"/> +<path d="M100.355 115.088C100.488 115.088 100.616 115.117 100.697 115.163L102.887 116.431L100.714 117.694C100.656 117.729 100.535 117.769 100.379 117.769C100.222 117.769 100.101 117.729 100.038 117.694L97.8466 116.426L100.02 115.163C100.084 115.123 100.205 115.088 100.355 115.088ZM100.355 114.509C100.13 114.509 99.9045 114.561 99.7311 114.659L97.3205 116.067C96.9736 116.269 96.9794 116.594 97.3263 116.796L99.7542 118.203C99.9277 118.302 100.153 118.354 100.384 118.354C100.616 118.354 100.835 118.302 101.009 118.203L103.419 116.796C103.766 116.594 103.76 116.269 103.414 116.067L100.986 114.659C100.812 114.555 100.587 114.509 100.355 114.509Z" fill="#706F6F"/> +<path d="M109.957 123.594C109.772 123.594 109.599 123.554 109.478 123.484L107.05 122.077C106.951 122.019 106.934 121.973 106.934 121.961C106.934 121.95 106.951 121.903 107.05 121.851L109.46 120.444C109.582 120.375 109.755 120.334 109.94 120.334C110.125 120.334 110.299 120.375 110.426 120.444L112.854 121.851C112.94 121.903 112.969 121.95 112.969 121.967C112.969 121.979 112.94 122.031 112.854 122.077L110.443 123.484C110.316 123.554 110.142 123.594 109.957 123.594Z" fill="white"/> +<path d="M109.935 120.624C110.068 120.624 110.195 120.653 110.276 120.699L112.467 121.968L110.293 123.23C110.235 123.265 110.114 123.305 109.958 123.305C109.802 123.305 109.68 123.27 109.622 123.236L107.431 121.968L109.605 120.699C109.663 120.665 109.778 120.624 109.935 120.624ZM109.935 120.045C109.709 120.045 109.484 120.097 109.31 120.195L106.9 121.603C106.553 121.805 106.559 122.13 106.905 122.332L109.333 123.74C109.507 123.838 109.732 123.89 109.958 123.89C110.183 123.89 110.414 123.838 110.588 123.74L112.998 122.332C113.345 122.13 113.339 121.805 112.993 121.608L110.565 120.201C110.391 120.097 110.16 120.045 109.935 120.045Z" fill="#706F6F"/> +<path d="M123.138 110.362C122.953 110.362 122.78 110.322 122.658 110.252L115.438 106.077C115.34 106.019 115.322 105.973 115.322 105.961C115.322 105.95 115.34 105.903 115.432 105.851L117.849 104.444C117.97 104.375 118.143 104.334 118.328 104.334C118.513 104.334 118.687 104.375 118.814 104.444L126.028 108.619C126.115 108.671 126.144 108.718 126.144 108.735C126.144 108.747 126.115 108.799 126.028 108.845L123.612 110.252C123.496 110.322 123.323 110.362 123.138 110.362Z" fill="white"/> +<path d="M118.328 104.624C118.484 104.624 118.606 104.665 118.669 104.699L125.647 108.736L123.473 109.998C123.415 110.033 123.294 110.068 123.138 110.068C123.005 110.068 122.878 110.039 122.803 109.992L115.819 105.95L117.993 104.688C118.051 104.665 118.172 104.624 118.328 104.624ZM118.328 104.045C118.103 104.045 117.877 104.097 117.704 104.195L115.288 105.603C114.946 105.805 114.946 106.13 115.293 106.332L122.508 110.508C122.681 110.606 122.907 110.658 123.132 110.658C123.358 110.658 123.583 110.606 123.757 110.508L126.173 109.1C126.514 108.898 126.514 108.573 126.167 108.377L118.953 104.201C118.779 104.097 118.554 104.045 118.328 104.045Z" fill="#706F6F"/> +<path d="M114.449 120.977C114.264 120.977 114.091 120.937 113.97 120.867L111.542 119.46C111.443 119.402 111.426 119.356 111.426 119.344C111.426 119.332 111.443 119.286 111.536 119.234L113.952 117.827C114.074 117.757 114.247 117.717 114.432 117.717C114.617 117.717 114.79 117.757 114.918 117.827L117.346 119.234C117.432 119.286 117.461 119.332 117.461 119.35C117.461 119.361 117.444 119.408 117.351 119.46L114.935 120.867C114.808 120.937 114.634 120.977 114.449 120.977Z" fill="white"/> +<path d="M114.426 118.007C114.582 118.007 114.704 118.047 114.767 118.082L116.958 119.35L114.785 120.619C114.727 120.653 114.605 120.688 114.449 120.688C114.293 120.688 114.172 120.653 114.114 120.619L111.923 119.35L114.097 118.088C114.154 118.047 114.27 118.007 114.426 118.007ZM114.426 117.428C114.201 117.428 113.975 117.48 113.802 117.578L111.385 118.986C111.044 119.188 111.044 119.512 111.391 119.715L113.819 121.122C113.993 121.221 114.218 121.273 114.444 121.273C114.669 121.273 114.894 121.221 115.068 121.122L117.484 119.715C117.825 119.512 117.825 119.188 117.478 118.991L115.051 117.584C114.883 117.48 114.657 117.428 114.426 117.428Z" fill="#706F6F"/> +<path d="M119.242 123.747C119.057 123.747 118.883 123.706 118.762 123.637L116.328 122.229C116.23 122.172 116.212 122.125 116.212 122.114C116.212 122.102 116.23 122.056 116.322 122.004L118.739 120.596C118.86 120.527 119.033 120.486 119.218 120.486C119.403 120.486 119.577 120.527 119.698 120.596L122.132 122.004C122.23 122.061 122.248 122.108 122.248 122.119C122.248 122.131 122.23 122.177 122.132 122.229L119.716 123.637C119.594 123.706 119.421 123.747 119.242 123.747Z" fill="white"/> +<path d="M119.219 120.781C119.375 120.781 119.496 120.816 119.554 120.851L121.745 122.119L119.571 123.387C119.513 123.422 119.392 123.457 119.236 123.457C119.08 123.457 118.959 123.422 118.901 123.387L116.71 122.119L118.883 120.851C118.941 120.816 119.063 120.781 119.219 120.781ZM119.219 120.202C118.993 120.202 118.768 120.254 118.594 120.353L116.178 121.76C115.837 121.963 115.837 122.287 116.184 122.484L118.617 123.891C118.791 123.989 119.016 124.042 119.242 124.042C119.467 124.042 119.693 123.989 119.866 123.891L122.283 122.484C122.624 122.281 122.624 121.957 122.277 121.76L119.843 120.353C119.67 120.248 119.444 120.202 119.219 120.202Z" fill="#706F6F"/> +<path d="M123.433 115.748C123.248 115.748 123.074 115.707 122.953 115.638L120.525 114.231C120.438 114.179 120.404 114.132 120.404 114.115C120.404 114.103 120.432 114.057 120.519 114.005L127.427 109.986C127.549 109.917 127.722 109.876 127.907 109.876C128.092 109.876 128.266 109.917 128.393 109.986L130.821 111.393C130.907 111.445 130.936 111.492 130.936 111.509C130.936 111.521 130.919 111.567 130.826 111.619L123.918 115.638C123.791 115.707 123.618 115.748 123.433 115.748Z" fill="white"/> +<path d="M127.907 110.166C128.063 110.166 128.185 110.207 128.248 110.241L130.439 111.51L123.774 115.389C123.716 115.424 123.595 115.459 123.439 115.459C123.282 115.459 123.161 115.418 123.103 115.384L120.912 114.115L127.578 110.235C127.63 110.201 127.751 110.166 127.907 110.166ZM127.907 109.587C127.682 109.587 127.456 109.639 127.283 109.737L120.375 113.756C120.028 113.959 120.034 114.283 120.38 114.486L122.808 115.893C122.982 115.992 123.207 116.044 123.433 116.044C123.658 116.044 123.884 115.992 124.057 115.893L130.965 111.874C131.306 111.672 131.306 111.347 130.959 111.15L128.531 109.743C128.358 109.633 128.133 109.587 127.907 109.587Z" fill="#706F6F"/> +<path d="M132.717 115.905C132.532 115.905 132.358 115.864 132.237 115.795L129.803 114.388C129.716 114.335 129.688 114.289 129.688 114.272C129.688 114.26 129.705 114.214 129.797 114.162L132.214 112.755C132.335 112.685 132.509 112.645 132.694 112.645C132.879 112.645 133.052 112.685 133.173 112.755L135.607 114.162C135.694 114.214 135.723 114.26 135.723 114.278C135.723 114.289 135.705 114.335 135.613 114.388L133.196 115.795C133.075 115.864 132.902 115.905 132.717 115.905Z" fill="white"/> +<path d="M132.694 112.935C132.85 112.935 132.971 112.969 133.029 113.004L135.22 114.272L133.046 115.541C132.989 115.575 132.867 115.61 132.711 115.61C132.555 115.61 132.434 115.575 132.376 115.541L130.185 114.272L132.358 113.004C132.422 112.969 132.538 112.935 132.694 112.935ZM132.694 112.355C132.468 112.355 132.243 112.408 132.069 112.506L129.653 113.913C129.312 114.116 129.312 114.44 129.659 114.637L132.093 116.044C132.266 116.143 132.491 116.195 132.717 116.195C132.942 116.195 133.168 116.143 133.341 116.044L135.758 114.637C136.099 114.434 136.099 114.11 135.752 113.913L133.318 112.506C133.145 112.408 132.919 112.355 132.694 112.355Z" fill="#706F6F"/> +<path d="M118.941 118.366C118.756 118.366 118.583 118.325 118.461 118.256L116.033 116.849C115.935 116.791 115.918 116.744 115.918 116.733C115.918 116.721 115.935 116.675 116.028 116.623L118.444 115.215C118.565 115.146 118.739 115.105 118.924 115.105C119.109 115.105 119.282 115.146 119.409 115.215L121.837 116.623C121.924 116.675 121.953 116.721 121.953 116.739C121.953 116.75 121.936 116.796 121.843 116.849L119.427 118.256C119.3 118.325 119.126 118.366 118.941 118.366Z" fill="white"/> +<path d="M118.918 115.396C119.074 115.396 119.195 115.436 119.259 115.471L121.45 116.739L119.276 118.007C119.218 118.042 119.097 118.077 118.941 118.077C118.785 118.077 118.664 118.042 118.606 118.007L116.415 116.739L118.588 115.477C118.646 115.43 118.762 115.396 118.918 115.396ZM118.918 114.816C118.692 114.816 118.467 114.869 118.294 114.967L115.877 116.374C115.536 116.577 115.536 116.901 115.883 117.104L118.311 118.511C118.484 118.609 118.71 118.662 118.935 118.662C119.161 118.662 119.386 118.609 119.56 118.511L121.976 117.104C122.317 116.901 122.317 116.577 121.97 116.38L119.542 114.973C119.375 114.869 119.149 114.816 118.918 114.816Z" fill="#706F6F"/> +<path d="M128.225 118.516C128.04 118.516 127.867 118.476 127.745 118.406L125.311 116.999C125.225 116.947 125.196 116.9 125.196 116.883C125.196 116.872 125.225 116.819 125.311 116.773L127.722 115.366C127.843 115.296 128.023 115.256 128.202 115.256C128.387 115.256 128.56 115.296 128.682 115.366L131.115 116.773C131.214 116.831 131.231 116.877 131.231 116.889C131.231 116.9 131.214 116.947 131.115 116.999L128.705 118.406C128.583 118.476 128.41 118.516 128.225 118.516Z" fill="white"/> +<path d="M128.202 115.546C128.358 115.546 128.479 115.581 128.537 115.615L130.728 116.884L128.554 118.152C128.497 118.187 128.375 118.221 128.219 118.221C128.063 118.221 127.942 118.187 127.884 118.146L125.693 116.878L127.867 115.615C127.924 115.586 128.046 115.546 128.202 115.546ZM128.202 114.967C127.976 114.967 127.745 115.019 127.572 115.117L125.161 116.525C124.814 116.727 124.82 117.052 125.167 117.248L127.601 118.656C127.774 118.754 127.999 118.806 128.225 118.806C128.45 118.806 128.676 118.754 128.849 118.656L131.26 117.248C131.607 117.046 131.601 116.721 131.26 116.519L128.826 115.112C128.653 115.019 128.427 114.967 128.202 114.967Z" fill="#706F6F"/> +<path d="M123.733 121.133C123.548 121.133 123.375 121.093 123.253 121.023L120.82 119.616C120.721 119.558 120.704 119.512 120.704 119.5C120.704 119.489 120.721 119.442 120.814 119.39L123.23 117.983C123.352 117.914 123.525 117.873 123.71 117.873C123.895 117.873 124.069 117.914 124.19 117.983L126.624 119.39C126.722 119.448 126.739 119.495 126.739 119.506C126.739 119.518 126.722 119.564 126.629 119.616L124.213 121.023C124.086 121.093 123.912 121.133 123.733 121.133Z" fill="white"/> +<path d="M123.71 118.163C123.866 118.163 123.988 118.198 124.046 118.233L126.237 119.501L124.063 120.763C124.005 120.798 123.884 120.833 123.728 120.833C123.572 120.833 123.45 120.798 123.392 120.763L121.201 119.495L123.375 118.227C123.433 118.204 123.554 118.163 123.71 118.163ZM123.71 117.584C123.485 117.584 123.259 117.636 123.086 117.735L120.67 119.142C120.329 119.344 120.329 119.669 120.675 119.866L123.109 121.273C123.283 121.371 123.508 121.423 123.733 121.423C123.959 121.423 124.184 121.371 124.358 121.273L126.774 119.866C127.115 119.663 127.115 119.339 126.768 119.142L124.335 117.735C124.161 117.636 123.936 117.584 123.71 117.584Z" fill="#706F6F"/> +<path d="M118.646 112.98C118.461 112.98 118.288 112.94 118.167 112.87L115.739 111.463C115.652 111.411 115.617 111.364 115.617 111.347C115.617 111.335 115.646 111.289 115.733 111.237L118.143 109.83C118.265 109.76 118.438 109.72 118.623 109.72C118.808 109.72 118.982 109.76 119.109 109.83L121.537 111.237C121.623 111.289 121.652 111.335 121.652 111.353C121.652 111.37 121.623 111.416 121.537 111.463L119.126 112.87C119.005 112.94 118.831 112.98 118.646 112.98Z" fill="white"/> +<path d="M118.623 110.01C118.779 110.01 118.901 110.05 118.964 110.085L121.155 111.353L118.981 112.621C118.924 112.656 118.802 112.697 118.646 112.697C118.513 112.697 118.386 112.668 118.311 112.621L116.12 111.353L118.294 110.091C118.351 110.045 118.467 110.01 118.623 110.01ZM118.623 109.431C118.398 109.431 118.172 109.483 117.999 109.581L115.588 110.988C115.241 111.191 115.247 111.515 115.594 111.718L118.022 113.125C118.195 113.224 118.421 113.276 118.646 113.276C118.872 113.276 119.097 113.224 119.27 113.125L121.681 111.718C122.028 111.515 122.028 111.191 121.681 110.988L119.253 109.581C119.08 109.483 118.854 109.431 118.623 109.431Z" fill="#706F6F"/> +<path d="M114.154 115.592C113.969 115.592 113.796 115.552 113.674 115.482L111.246 114.075C111.148 114.017 111.131 113.971 111.131 113.959C111.131 113.948 111.148 113.901 111.24 113.849L113.657 112.442C113.778 112.373 113.952 112.332 114.137 112.332C114.322 112.332 114.495 112.373 114.622 112.442L117.05 113.849C117.137 113.901 117.166 113.948 117.166 113.965C117.166 113.977 117.137 114.029 117.05 114.075L114.634 115.482C114.512 115.552 114.333 115.592 114.154 115.592Z" fill="white"/> +<path d="M114.131 112.627C114.287 112.627 114.409 112.667 114.472 112.702L116.663 113.97L114.489 115.239C114.432 115.273 114.31 115.308 114.154 115.308C114.021 115.308 113.894 115.279 113.819 115.233L111.628 113.965L113.802 112.702C113.859 112.662 113.975 112.627 114.131 112.627ZM114.131 112.048C113.906 112.048 113.68 112.1 113.507 112.198L111.09 113.606C110.749 113.808 110.749 114.133 111.096 114.335L113.524 115.742C113.697 115.841 113.923 115.893 114.148 115.893C114.374 115.893 114.599 115.841 114.773 115.742L117.189 114.335C117.53 114.133 117.536 113.808 117.183 113.611L114.755 112.204C114.588 112.094 114.356 112.048 114.131 112.048Z" fill="#706F6F"/> +<path d="M104.876 115.441C104.691 115.441 104.517 115.4 104.39 115.331L101.962 113.924C101.864 113.866 101.847 113.82 101.847 113.808C101.847 113.796 101.864 113.75 101.957 113.698L104.373 112.291C104.494 112.221 104.668 112.181 104.853 112.181C105.038 112.181 105.211 112.221 105.338 112.291L107.766 113.698C107.865 113.756 107.882 113.802 107.882 113.814C107.882 113.825 107.865 113.872 107.772 113.924L105.356 115.331C105.234 115.4 105.061 115.441 104.876 115.441Z" fill="white"/> +<path d="M104.853 112.471C105.009 112.471 105.13 112.511 105.194 112.546L107.385 113.814L105.211 115.082C105.154 115.117 105.032 115.152 104.876 115.152C104.72 115.152 104.599 115.111 104.535 115.077L102.344 113.808L104.518 112.546C104.575 112.505 104.697 112.471 104.853 112.471ZM104.853 111.892C104.627 111.892 104.402 111.944 104.229 112.042L101.812 113.449C101.471 113.652 101.471 113.976 101.818 114.179L104.246 115.586C104.419 115.685 104.651 115.737 104.876 115.737C105.102 115.737 105.327 115.685 105.5 115.586L107.917 114.179C108.258 113.976 108.258 113.652 107.911 113.449L105.483 112.042C105.304 111.944 105.078 111.892 104.853 111.892Z" fill="#706F6F"/> +<path d="M109.662 118.21C109.477 118.21 109.304 118.169 109.182 118.1L106.755 116.692C106.656 116.634 106.639 116.588 106.639 116.576C106.639 116.565 106.656 116.519 106.749 116.466L109.165 115.059C109.287 114.99 109.46 114.949 109.645 114.949C109.83 114.949 110.003 114.99 110.131 115.059L112.559 116.466C112.645 116.519 112.674 116.565 112.674 116.582C112.674 116.594 112.645 116.646 112.559 116.692L110.142 118.1C110.021 118.169 109.842 118.21 109.662 118.21Z" fill="white"/> +<path d="M109.639 115.239C109.795 115.239 109.917 115.28 109.98 115.315L112.171 116.583L109.998 117.845C109.94 117.88 109.819 117.915 109.662 117.915C109.529 117.915 109.402 117.886 109.327 117.839L107.136 116.571L109.31 115.303C109.368 115.28 109.483 115.239 109.639 115.239ZM109.639 114.66C109.414 114.66 109.188 114.712 109.015 114.811L106.599 116.218C106.258 116.421 106.258 116.745 106.604 116.948L109.032 118.355C109.206 118.453 109.431 118.505 109.657 118.505C109.882 118.505 110.108 118.453 110.281 118.355L112.697 116.948C113.038 116.745 113.038 116.421 112.692 116.224L110.264 114.817C110.096 114.712 109.865 114.66 109.639 114.66Z" fill="#706F6F"/> +<path d="M105.165 120.827C104.98 120.827 104.807 120.786 104.685 120.717L102.257 119.309C102.159 119.252 102.142 119.205 102.142 119.194C102.142 119.182 102.159 119.136 102.257 119.084L104.668 117.676C104.789 117.607 104.963 117.566 105.148 117.566C105.333 117.566 105.506 117.607 105.633 117.676L108.061 119.084C108.16 119.142 108.177 119.188 108.177 119.199C108.177 119.211 108.154 119.257 108.061 119.309L105.651 120.717C105.529 120.786 105.35 120.827 105.165 120.827Z" fill="white"/> +<path d="M105.148 117.856C105.281 117.856 105.408 117.885 105.489 117.932L107.68 119.2L105.506 120.462C105.448 120.497 105.327 120.538 105.171 120.538C105.015 120.538 104.893 120.503 104.836 120.462L102.645 119.194L104.818 117.932C104.87 117.891 104.992 117.856 105.148 117.856ZM105.148 117.277C104.922 117.277 104.697 117.329 104.523 117.428L102.113 118.835C101.766 119.038 101.772 119.362 102.119 119.565L104.546 120.972C104.72 121.07 104.945 121.123 105.171 121.123C105.396 121.123 105.627 121.07 105.801 120.972L108.212 119.565C108.558 119.362 108.553 119.038 108.206 118.841L105.778 117.434C105.599 117.329 105.373 117.277 105.148 117.277Z" fill="#706F6F"/> +<path d="M92.2855 139.439C92.1005 139.439 91.9271 139.398 91.8057 139.329L89.372 137.922C89.2853 137.87 89.2563 137.823 89.2563 137.806C89.2563 137.794 89.2853 137.742 89.372 137.696L91.7826 136.289C91.904 136.219 92.0832 136.179 92.2624 136.179C92.4474 136.179 92.6208 136.219 92.7422 136.289L95.176 137.696C95.2742 137.754 95.2916 137.8 95.2916 137.812C95.2916 137.823 95.2742 137.87 95.176 137.922L92.7653 139.329C92.6439 139.398 92.4705 139.439 92.2855 139.439Z" fill="white"/> +<path d="M92.2683 136.469C92.4244 136.469 92.5458 136.503 92.6036 136.538L94.7945 137.806L92.6209 139.075C92.5631 139.109 92.4417 139.144 92.2856 139.144C92.1296 139.144 92.0082 139.104 91.9503 139.069L89.7594 137.801L91.933 136.538C91.9908 136.509 92.1064 136.469 92.2683 136.469ZM92.2683 135.89C92.0428 135.89 91.8116 135.942 91.644 136.04L89.2333 137.447C88.8865 137.65 88.8923 137.974 89.2391 138.171L91.6729 139.578C91.8463 139.677 92.0717 139.729 92.2972 139.729C92.5227 139.729 92.7481 139.677 92.9215 139.578L95.3321 138.171C95.679 137.969 95.679 137.644 95.3321 137.442L92.8984 136.034C92.7192 135.942 92.4937 135.89 92.2683 135.89Z" fill="#706F6F"/> +<path d="M96.777 136.822C96.592 136.822 96.4186 136.781 96.2972 136.712L93.8634 135.305C93.7767 135.252 93.7478 135.206 93.7478 135.189C93.7478 135.177 93.7651 135.131 93.8576 135.079L96.274 133.672C96.3954 133.602 96.5689 133.562 96.7538 133.562C96.9388 133.562 97.1123 133.602 97.2337 133.672L99.6674 135.079C99.7541 135.131 99.783 135.177 99.783 135.195C99.783 135.206 99.7657 135.252 99.6732 135.305L97.2568 136.712C97.1354 136.781 96.962 136.822 96.777 136.822Z" fill="white"/> +<path d="M96.7538 133.856C96.9099 133.856 97.0313 133.891 97.0891 133.926L99.2801 135.194L97.1065 136.462C97.0487 136.497 96.9273 136.532 96.7712 136.532C96.6151 136.532 96.4937 136.497 96.4359 136.462L94.2449 135.194L96.4185 133.926C96.4821 133.891 96.5977 133.856 96.7538 133.856ZM96.7538 133.277C96.5284 133.277 96.3029 133.329 96.1295 133.428L93.7131 134.835C93.372 135.038 93.372 135.362 93.7189 135.559L96.1526 136.966C96.326 137.065 96.5515 137.117 96.7769 137.117C97.0024 137.117 97.2279 137.065 97.4013 136.966L99.8177 135.559C100.159 135.356 100.159 135.032 99.8119 134.835L97.3782 133.428C97.2105 133.324 96.9793 133.277 96.7538 133.277Z" fill="#706F6F"/> +<path d="M95.8925 120.67C95.7075 120.67 95.534 120.63 95.4069 120.56L92.9789 119.153C92.8806 119.095 92.8633 119.049 92.8633 119.037C92.8633 119.026 92.8806 118.98 92.9731 118.927L95.3895 117.52C95.5109 117.451 95.6843 117.41 95.8693 117.41C96.0543 117.41 96.2277 117.451 96.3549 117.52L98.7829 118.927C98.8812 118.985 98.8985 119.032 98.8985 119.043C98.8985 119.055 98.8812 119.101 98.7887 119.153L96.3723 120.56C96.2509 120.63 96.0717 120.67 95.8925 120.67Z" fill="white"/> +<path d="M95.8637 117.7C96.0198 117.7 96.1412 117.741 96.2048 117.775L98.3957 119.044L96.2221 120.306C96.1643 120.341 96.0429 120.376 95.8868 120.376C95.7307 120.376 95.6093 120.335 95.5457 120.3L93.3548 119.032L95.5284 117.764C95.592 117.741 95.7134 117.7 95.8637 117.7ZM95.8637 117.121C95.6382 117.121 95.4128 117.173 95.2394 117.272L92.823 118.679C92.4819 118.882 92.4819 119.206 92.8287 119.409L95.2567 120.816C95.4301 120.914 95.6614 120.966 95.8868 120.966C96.1123 120.966 96.3377 120.914 96.5111 120.816L98.9275 119.409C99.2686 119.206 99.2686 118.882 98.9218 118.679L96.4938 117.272C96.3204 117.173 96.0949 117.121 95.8637 117.121Z" fill="#706F6F"/> +<path d="M91.4008 123.288C91.2158 123.288 91.0423 123.247 90.9152 123.178L88.4872 121.77C88.3889 121.713 88.3716 121.666 88.3716 121.655C88.3716 121.643 88.3889 121.597 88.4814 121.545L90.892 120.137C91.0134 120.068 91.1869 120.027 91.3718 120.027C91.5568 120.027 91.7303 120.068 91.8574 120.137L94.2854 121.545C94.3837 121.602 94.401 121.649 94.401 121.66C94.401 121.672 94.3837 121.718 94.2854 121.77L91.8748 123.178C91.7592 123.247 91.58 123.288 91.4008 123.288Z" fill="white"/> +<path d="M91.3774 120.317C91.5335 120.317 91.6549 120.358 91.7185 120.393L93.9095 121.661L91.7359 122.929C91.678 122.964 91.5566 122.999 91.4006 122.999C91.2445 122.999 91.1231 122.958 91.0595 122.923L88.8685 121.655L91.0422 120.393C91.1 120.352 91.2214 120.317 91.3774 120.317ZM91.3774 119.738C91.152 119.738 90.9208 119.79 90.7531 119.889L88.3425 121.296C88.0014 121.499 88.0014 121.823 88.3483 122.026L90.7762 123.433C90.9497 123.531 91.1809 123.583 91.4063 123.583C91.6318 123.583 91.8573 123.531 92.0307 123.433L94.4413 122.026C94.7881 121.823 94.7824 121.499 94.4355 121.296L92.0076 119.889C91.8283 119.785 91.6029 119.738 91.3774 119.738Z" fill="#706F6F"/> +<path d="M100.679 123.439C100.494 123.439 100.321 123.398 100.2 123.329L97.7716 121.922C97.6734 121.864 97.656 121.818 97.656 121.806C97.656 121.794 97.6733 121.748 97.7658 121.696L100.182 120.289C100.304 120.219 100.477 120.179 100.662 120.179C100.847 120.179 101.02 120.219 101.148 120.289L103.576 121.696C103.662 121.748 103.691 121.794 103.691 121.812C103.691 121.823 103.662 121.875 103.576 121.922L101.159 123.329C101.032 123.398 100.859 123.439 100.679 123.439Z" fill="white"/> +<path d="M100.656 120.469C100.812 120.469 100.933 120.509 100.997 120.544L103.188 121.812L101.014 123.08C100.957 123.115 100.835 123.15 100.679 123.15C100.523 123.15 100.402 123.115 100.344 123.075L98.1528 121.806L100.326 120.544C100.378 120.509 100.5 120.469 100.656 120.469ZM100.656 119.89C100.43 119.89 100.205 119.942 100.032 120.04L97.6152 121.447C97.2741 121.65 97.2741 121.974 97.621 122.177L100.049 123.584C100.222 123.683 100.448 123.735 100.673 123.735C100.899 123.735 101.124 123.683 101.298 123.584L103.714 122.177C104.055 121.974 104.055 121.65 103.708 121.453L101.28 120.046C101.107 119.942 100.881 119.89 100.656 119.89Z" fill="#706F6F"/> +<path d="M86.9034 125.9C86.7184 125.9 86.545 125.859 86.4178 125.79L83.9899 124.383C83.8916 124.325 83.8743 124.278 83.8743 124.267C83.8743 124.255 83.8916 124.209 83.9899 124.157L86.4005 122.75C86.5219 122.68 86.6953 122.64 86.8803 122.64C87.0653 122.64 87.2387 122.68 87.3659 122.75L89.7939 124.157C89.8806 124.209 89.9153 124.255 89.9153 124.273C89.9153 124.284 89.8864 124.331 89.7996 124.383L87.389 125.79C87.2676 125.859 87.0884 125.9 86.9034 125.9Z" fill="white"/> +<path d="M86.8801 122.93C87.0131 122.93 87.1402 122.959 87.2212 123.005L89.4121 124.273L87.2385 125.536C87.1807 125.57 87.0593 125.611 86.9032 125.611C86.7471 125.611 86.6258 125.57 86.5622 125.536L84.3712 124.267L86.5448 123.005C86.6084 122.97 86.724 122.93 86.8801 122.93ZM86.8801 122.351C86.6547 122.351 86.4292 122.403 86.2558 122.501L83.8452 123.908C83.4983 124.111 83.5041 124.435 83.8509 124.638L86.2789 126.045C86.4523 126.144 86.6778 126.196 86.909 126.196C87.1345 126.196 87.3657 126.144 87.5333 126.045L89.944 124.638C90.2908 124.435 90.285 124.111 89.9382 123.908L87.5102 122.501C87.3368 122.403 87.1056 122.351 86.8801 122.351Z" fill="#706F6F"/> +<path d="M96.187 126.056C96.002 126.056 95.8286 126.016 95.7072 125.946L93.2792 124.539C93.1809 124.481 93.1636 124.435 93.1636 124.423C93.1636 124.412 93.1809 124.365 93.2734 124.313L95.684 122.906C95.8054 122.836 95.9789 122.796 96.1638 122.796C96.3488 122.796 96.5223 122.836 96.6494 122.906L99.0774 124.313C99.1641 124.365 99.193 124.412 99.193 124.429C99.193 124.441 99.1641 124.493 99.0774 124.539L96.6668 125.946C96.5454 126.016 96.3662 126.056 96.187 126.056Z" fill="white"/> +<path d="M96.1643 123.086C96.3204 123.086 96.4418 123.126 96.5054 123.161L98.6963 124.429L96.5227 125.698C96.4649 125.732 96.3435 125.767 96.1874 125.767C96.0545 125.767 95.9273 125.738 95.8521 125.692L93.6612 124.424L95.8348 123.161C95.8868 123.121 96.0082 123.086 96.1643 123.086ZM96.1643 122.507C95.9389 122.507 95.7076 122.559 95.54 122.657L93.1294 124.065C92.7883 124.267 92.7883 124.592 93.1351 124.794L95.5631 126.201C95.7365 126.3 95.962 126.352 96.1874 126.352C96.4129 126.352 96.6383 126.3 96.8118 126.201L99.2224 124.794C99.5692 124.592 99.5692 124.267 99.2224 124.065L96.7944 122.657C96.6152 122.559 96.3898 122.507 96.1643 122.507Z" fill="#706F6F"/> +<path d="M82.4171 128.517C82.2321 128.517 82.0587 128.477 81.9315 128.407L79.5036 127C79.4053 126.942 79.3879 126.896 79.3879 126.884C79.3879 126.873 79.4053 126.826 79.4978 126.774L81.9142 125.367C82.0356 125.297 82.209 125.257 82.394 125.257C82.579 125.257 82.7524 125.297 82.8796 125.367L85.3075 126.774C85.4058 126.832 85.4232 126.878 85.4232 126.89C85.4232 126.901 85.4058 126.948 85.3133 127L82.8969 128.407C82.7697 128.477 82.5963 128.517 82.4171 128.517Z" fill="white"/> +<path d="M82.3883 125.547C82.5444 125.547 82.6658 125.587 82.7294 125.622L84.9204 126.89L82.7468 128.153C82.689 128.188 82.5676 128.222 82.4115 128.222C82.2554 128.222 82.134 128.182 82.0704 128.147L79.8795 126.879L82.0531 125.611C82.1166 125.582 82.2323 125.547 82.3883 125.547ZM82.3883 124.968C82.1629 124.968 81.9374 125.02 81.764 125.118L79.3476 126.526C79.0065 126.728 79.0065 127.053 79.3534 127.255L81.7814 128.662C81.9548 128.761 82.186 128.813 82.4115 128.813C82.6369 128.813 82.8624 128.761 83.0358 128.662L85.4522 127.255C85.7933 127.053 85.7933 126.728 85.4464 126.526L83.0185 125.118C82.845 125.02 82.6138 124.968 82.3883 124.968Z" fill="#706F6F"/> +<path d="M91.6894 128.669C91.5044 128.669 91.331 128.628 91.2096 128.558L88.7816 127.151C88.6834 127.093 88.666 127.047 88.666 127.035C88.666 127.024 88.6834 126.978 88.7816 126.925L91.1923 125.518C91.3137 125.449 91.4871 125.408 91.6721 125.408C91.857 125.408 92.0305 125.449 92.1577 125.518L94.5856 126.925C94.6839 126.983 94.7012 127.03 94.7012 127.041C94.7012 127.053 94.6781 127.099 94.5856 127.151L92.175 128.558C92.0478 128.628 91.8744 128.669 91.6894 128.669Z" fill="white"/> +<path d="M91.6665 125.703C91.7994 125.703 91.9266 125.732 92.0076 125.778L94.1985 127.047L92.0249 128.309C91.9671 128.344 91.8457 128.384 91.6896 128.384C91.5624 128.384 91.4295 128.355 91.3543 128.309L89.1634 127.041L91.337 125.773C91.3948 125.738 91.5162 125.703 91.6665 125.703ZM91.6665 125.124C91.441 125.124 91.2156 125.176 91.0422 125.275L88.6315 126.682C88.2847 126.884 88.2905 127.209 88.6373 127.411L91.0653 128.819C91.2387 128.917 91.4642 128.969 91.6896 128.969C91.9151 128.969 92.1463 128.917 92.3197 128.819L94.7303 127.411C95.0772 127.209 95.0714 126.884 94.7246 126.688L92.2966 125.28C92.1232 125.17 91.8977 125.124 91.6665 125.124Z" fill="#706F6F"/> +<path d="M77.9258 131.129C77.7408 131.129 77.5674 131.089 77.4402 131.019L75.0123 129.612C74.9256 129.56 74.8909 129.514 74.8909 129.496C74.8909 129.485 74.9198 129.438 75.0065 129.386L77.4171 127.979C77.5385 127.91 77.7119 127.869 77.8969 127.869C78.0819 127.869 78.2553 127.91 78.3825 127.979L80.8105 129.386C80.9087 129.444 80.9261 129.491 80.9261 129.502C80.9261 129.514 80.9087 129.56 80.8105 129.612L78.3999 131.019C78.2785 131.089 78.105 131.129 77.9258 131.129Z" fill="white"/> +<path d="M77.8967 128.164C78.0528 128.164 78.1742 128.205 78.2378 128.239L80.4287 129.508L78.2551 130.77C78.1973 130.805 78.0759 130.839 77.9198 130.839C77.7869 130.839 77.6597 130.811 77.5788 130.764L75.3878 129.496L77.5614 128.234C77.625 128.199 77.7406 128.164 77.8967 128.164ZM77.8967 127.585C77.6713 127.585 77.4458 127.637 77.2724 127.736L74.8618 129.143C74.5149 129.345 74.5207 129.67 74.8675 129.872L77.2955 131.28C77.4689 131.378 77.7002 131.43 77.9256 131.43C78.1511 131.43 78.3765 131.378 78.5499 131.28L80.9606 129.872C81.3074 129.67 81.3016 129.345 80.9548 129.143L78.5268 127.736C78.3534 127.631 78.1279 127.585 77.8967 127.585Z" fill="#706F6F"/> +<path d="M87.1984 131.286C87.0135 131.286 86.84 131.245 86.7186 131.176L84.2907 129.768C84.1924 129.711 84.175 129.664 84.175 129.653C84.175 129.641 84.1924 129.595 84.2849 129.543L86.7013 128.135C86.8227 128.066 86.9961 128.025 87.1811 128.025C87.3661 128.025 87.5395 128.066 87.6667 128.135L90.0947 129.543C90.1814 129.595 90.2103 129.641 90.2103 129.658C90.2103 129.67 90.1814 129.722 90.0947 129.768L87.6783 131.176C87.5569 131.245 87.3834 131.286 87.1984 131.286Z" fill="white"/> +<path d="M87.1752 128.315C87.3313 128.315 87.4527 128.356 87.5163 128.391L89.7072 129.659L87.5336 130.927C87.4758 130.962 87.3544 130.997 87.1983 130.997C87.0423 130.997 86.9209 130.962 86.863 130.921L84.6721 129.653L86.8457 128.391C86.9035 128.356 87.0249 128.315 87.1752 128.315ZM87.1752 127.736C86.9498 127.736 86.7243 127.788 86.5509 127.887L84.1345 129.294C83.7934 129.497 83.7934 129.821 84.1403 130.024L86.5682 131.431C86.7417 131.529 86.9671 131.582 87.1926 131.582C87.418 131.582 87.6435 131.529 87.8169 131.431L90.2333 130.024C90.5744 129.821 90.5744 129.497 90.2275 129.3L87.7995 127.893C87.6319 127.788 87.4064 127.736 87.1752 127.736Z" fill="#706F6F"/> +<path d="M96.4768 131.442C96.2918 131.442 96.1183 131.401 95.9969 131.332L93.569 129.925C93.4707 129.867 93.4534 129.82 93.4534 129.809C93.4534 129.797 93.4707 129.751 93.569 129.699L95.9796 128.292C96.101 128.222 96.2744 128.182 96.4594 128.182C96.6444 128.182 96.8178 128.222 96.945 128.292L99.373 129.699C99.4597 129.751 99.4886 129.797 99.4886 129.815C99.4886 129.826 99.4597 129.878 99.373 129.925L96.9624 131.332C96.841 131.396 96.6617 131.442 96.4768 131.442Z" fill="white"/> +<path d="M96.459 128.472C96.5919 128.472 96.7191 128.501 96.8 128.547L98.991 129.815L96.8174 131.078C96.7596 131.112 96.6382 131.153 96.4821 131.153C96.326 131.153 96.2046 131.118 96.1468 131.083L93.9501 129.809L96.1237 128.547C96.1815 128.506 96.3029 128.472 96.459 128.472ZM96.459 127.893C96.2335 127.893 96.0081 127.945 95.8346 128.043L93.424 129.45C93.0772 129.653 93.0829 129.977 93.4298 130.18L95.8578 131.587C96.0312 131.686 96.2566 131.738 96.4821 131.738C96.7075 131.738 96.9388 131.686 97.1122 131.587L99.5228 130.18C99.8697 129.977 99.8639 129.653 99.517 129.456L97.0891 128.049C96.9099 127.945 96.6844 127.893 96.459 127.893Z" fill="#706F6F"/> +<path d="M82.7062 133.903C82.5212 133.903 82.3478 133.862 82.2264 133.793L79.7984 132.386C79.7117 132.334 79.677 132.287 79.677 132.27C79.677 132.258 79.7059 132.212 79.7926 132.16L82.2032 130.753C82.3246 130.683 82.4981 130.643 82.6831 130.643C82.868 130.643 83.0415 130.683 83.1686 130.753L85.5966 132.16C85.6833 132.212 85.7122 132.258 85.7122 132.276C85.7122 132.293 85.6833 132.339 85.5966 132.386L83.186 133.793C83.0646 133.857 82.8912 133.903 82.7062 133.903Z" fill="white"/> +<path d="M82.6889 130.933C82.845 130.933 82.9664 130.973 83.03 131.008L85.221 132.276L83.0474 133.544C82.9896 133.579 82.8682 133.62 82.7121 133.62C82.5791 133.62 82.4519 133.591 82.3768 133.544L80.1858 132.276L82.3594 131.014C82.4115 130.967 82.5329 130.933 82.6889 130.933ZM82.6889 130.354C82.4635 130.354 82.238 130.406 82.0646 130.504L79.654 131.911C79.3071 132.114 79.3129 132.438 79.6598 132.641L82.0877 134.048C82.2612 134.147 82.4866 134.199 82.7121 134.199C82.9375 134.199 83.163 134.147 83.3364 134.048L85.747 132.641C86.0939 132.438 86.0939 132.114 85.747 131.911L83.3191 130.504C83.1399 130.4 82.9144 130.354 82.6889 130.354Z" fill="#706F6F"/> +<path d="M91.9904 134.053C91.8054 134.053 91.632 134.013 91.5106 133.943L89.0827 132.536C88.9844 132.478 88.967 132.432 88.967 132.42C88.967 132.409 88.9844 132.362 89.0769 132.31L91.4933 130.903C91.6147 130.834 91.7881 130.793 91.9731 130.793C92.1581 130.793 92.3315 130.834 92.4587 130.903L94.8866 132.31C94.9734 132.362 95.0023 132.409 95.0023 132.426C95.0023 132.438 94.9849 132.484 94.8924 132.536L92.476 133.943C92.3488 134.013 92.1696 134.053 91.9904 134.053Z" fill="white"/> +<path d="M91.9674 131.083C92.1235 131.083 92.2449 131.124 92.3085 131.158L94.4995 132.427L92.3259 133.689C92.2681 133.724 92.1467 133.758 91.9906 133.758C91.8345 133.758 91.7131 133.724 91.6553 133.689L89.4643 132.421L91.6379 131.153C91.69 131.124 91.8114 131.083 91.9674 131.083ZM91.9674 130.504C91.742 130.504 91.5165 130.556 91.3431 130.654L88.9267 132.062C88.5856 132.264 88.5856 132.589 88.9325 132.791L91.3605 134.199C91.5339 134.297 91.7593 134.349 91.9848 134.349C92.2102 134.349 92.4357 134.297 92.6091 134.199L95.0255 132.791C95.3666 132.589 95.3666 132.264 95.0197 132.067L92.5918 130.66C92.4241 130.556 92.1929 130.504 91.9674 130.504Z" fill="#706F6F"/> +<path d="M84.8339 138.217C84.649 138.217 84.4755 138.176 84.3541 138.107L81.9262 136.699C81.8279 136.642 81.8105 136.595 81.8105 136.584C81.8105 136.572 81.8279 136.526 81.9262 136.474L87.0018 133.52C87.1232 133.451 87.2966 133.41 87.4816 133.41C87.6666 133.41 87.84 133.451 87.9672 133.52L90.3951 134.927C90.4934 134.985 90.5107 135.032 90.5107 135.037C90.5107 135.049 90.4934 135.095 90.3951 135.147L85.3195 138.101C85.1923 138.176 85.0189 138.217 84.8339 138.217Z" fill="white"/> +<path d="M87.4758 133.7C87.6318 133.7 87.7532 133.741 87.8168 133.775L90.0078 135.044L85.175 137.858C85.1172 137.893 84.9958 137.933 84.8397 137.933C84.6836 137.933 84.5622 137.899 84.5044 137.864L82.3134 136.596L87.1462 133.781C87.1983 133.735 87.3197 133.7 87.4758 133.7ZM87.4758 133.121C87.2503 133.121 87.0191 133.173 86.8514 133.272L81.7758 136.225C81.429 136.428 81.4347 136.752 81.7816 136.955L84.2096 138.362C84.383 138.46 84.6084 138.512 84.8339 138.512C85.0594 138.512 85.2906 138.46 85.464 138.362L90.5396 135.409C90.8865 135.206 90.8807 134.882 90.5396 134.679L88.1116 133.272C87.9324 133.173 87.7012 133.121 87.4758 133.121Z" fill="#706F6F"/> +<path d="M73.4283 133.747C73.2434 133.747 73.0699 133.706 72.9427 133.637L70.5148 132.229C70.4165 132.171 70.3992 132.125 70.3992 132.114C70.3992 132.102 70.4165 132.056 70.5148 132.004L72.9254 130.596C73.0468 130.527 73.2202 130.486 73.4052 130.486C73.5902 130.486 73.7636 130.527 73.8908 130.596L76.3188 132.004C76.417 132.061 76.4344 132.108 76.4344 132.119C76.4344 132.131 76.417 132.177 76.3246 132.229L73.9139 133.637C73.7868 133.706 73.6133 133.747 73.4283 133.747Z" fill="white"/> +<path d="M73.405 130.776C73.5611 130.776 73.6825 130.817 73.7461 130.852L75.937 132.12L73.7634 133.382C73.7056 133.417 73.5842 133.458 73.4281 133.458C73.2721 133.458 73.1507 133.417 73.0871 133.382L70.8961 132.114L73.0697 130.852C73.1333 130.817 73.2489 130.776 73.405 130.776ZM73.405 130.197C73.1796 130.197 72.9541 130.249 72.7807 130.348L70.3701 131.755C70.0232 131.958 70.029 132.282 70.3758 132.485L72.8038 133.892C72.9772 133.99 73.2027 134.042 73.4339 134.042C73.6594 134.042 73.8906 133.99 74.0582 133.892L76.4689 132.485C76.8099 132.282 76.8099 131.958 76.4631 131.755L74.0351 130.348C73.8617 130.249 73.6305 130.197 73.405 130.197Z" fill="#706F6F"/> +<path d="M109.368 112.823C109.183 112.823 109.009 112.783 108.882 112.713L106.454 111.306C106.356 111.248 106.339 111.202 106.339 111.19C106.339 111.179 106.356 111.132 106.448 111.08L113.357 107.061C113.478 106.992 113.651 106.951 113.836 106.951C114.021 106.951 114.195 106.992 114.322 107.061L116.75 108.468C116.848 108.526 116.866 108.573 116.866 108.584C116.866 108.596 116.848 108.642 116.75 108.694L109.842 112.713C109.726 112.783 109.553 112.823 109.368 112.823Z" fill="white"/> +<path d="M113.836 107.241C113.992 107.241 114.114 107.282 114.177 107.316L116.368 108.585L109.703 112.465C109.645 112.499 109.524 112.534 109.368 112.534C109.212 112.534 109.09 112.494 109.027 112.459L106.836 111.191L113.501 107.311C113.559 107.276 113.68 107.241 113.836 107.241ZM113.836 106.662C113.611 106.662 113.385 106.714 113.212 106.813L106.304 110.832C105.963 111.034 105.963 111.359 106.31 111.561L108.738 112.968C108.911 113.067 109.142 113.119 109.368 113.119C109.593 113.119 109.819 113.067 109.992 112.968L116.9 108.95C117.247 108.747 117.241 108.423 116.894 108.22L114.466 106.813C114.293 106.708 114.062 106.662 113.836 106.662Z" fill="#706F6F"/> +<path d="M83.3016 144.668C83.1166 144.668 82.9432 144.627 82.8218 144.558L80.3881 143.151C80.2898 143.093 80.2725 143.046 80.2725 143.035C80.2725 143.023 80.2898 142.977 80.3823 142.925L87.2904 138.906C87.4118 138.836 87.5853 138.796 87.7702 138.796C87.9552 138.796 88.1287 138.836 88.2501 138.906L90.6838 140.313C90.7821 140.371 90.7994 140.417 90.7994 140.429C90.7994 140.441 90.7821 140.487 90.6896 140.539L83.7814 144.558C83.66 144.627 83.4866 144.668 83.3016 144.668Z" fill="white"/> +<path d="M87.7705 139.086C87.9265 139.086 88.0479 139.121 88.1057 139.155L90.2967 140.424L83.6314 144.304C83.5736 144.338 83.4522 144.373 83.2961 144.373C83.14 144.373 83.0186 144.338 82.9608 144.304L80.7698 143.035L87.4352 139.155C87.4988 139.121 87.6144 139.086 87.7705 139.086ZM87.7705 138.507C87.545 138.507 87.3196 138.559 87.1461 138.657L80.238 142.676C79.8969 142.879 79.8969 143.203 80.2438 143.4L82.6775 144.807C82.8509 144.906 83.0764 144.958 83.3019 144.958C83.5273 144.958 83.7528 144.906 83.9262 144.807L90.8343 140.788C91.1754 140.586 91.1754 140.262 90.8285 140.065L88.3948 138.657C88.2214 138.559 87.9959 138.507 87.7705 138.507Z" fill="#706F6F"/> +<path d="M105.466 126.208C105.281 126.208 105.107 126.167 104.986 126.098L102.558 124.69C102.46 124.632 102.442 124.586 102.442 124.575C102.442 124.563 102.46 124.517 102.552 124.464L104.969 123.057C105.09 122.988 105.263 122.947 105.448 122.947C105.633 122.947 105.807 122.988 105.934 123.057L108.362 124.464C108.46 124.522 108.478 124.569 108.478 124.58C108.478 124.592 108.46 124.638 108.368 124.69L105.951 126.098C105.824 126.167 105.651 126.208 105.466 126.208Z" fill="white"/> +<path d="M105.443 123.242C105.599 123.242 105.72 123.283 105.784 123.317L107.975 124.586L105.801 125.848C105.743 125.883 105.622 125.918 105.466 125.918C105.31 125.918 105.188 125.883 105.131 125.848L102.94 124.58L105.113 123.312C105.171 123.277 105.287 123.242 105.443 123.242ZM105.443 122.663C105.217 122.663 104.992 122.715 104.818 122.814L102.402 124.221C102.061 124.424 102.061 124.748 102.408 124.951L104.836 126.358C105.009 126.456 105.235 126.508 105.46 126.508C105.686 126.508 105.911 126.456 106.084 126.358L108.501 124.951C108.842 124.748 108.842 124.424 108.495 124.227L106.067 122.819C105.899 122.709 105.668 122.663 105.443 122.663Z" fill="#706F6F"/> +<path d="M100.974 128.824C100.789 128.824 100.615 128.783 100.494 128.714L98.0658 127.307C97.9675 127.249 97.9502 127.202 97.9502 127.191C97.9502 127.179 97.9675 127.133 98.06 127.081L100.471 125.674C100.592 125.604 100.765 125.563 100.95 125.563C101.135 125.563 101.309 125.604 101.436 125.674L103.864 127.081C103.962 127.139 103.98 127.185 103.98 127.197C103.98 127.208 103.962 127.254 103.864 127.307L101.453 128.714C101.332 128.783 101.159 128.824 100.974 128.824Z" fill="white"/> +<path d="M100.951 125.854C101.107 125.854 101.228 125.894 101.292 125.929L103.483 127.197L101.309 128.465C101.251 128.5 101.13 128.535 100.974 128.535C100.818 128.535 100.696 128.5 100.639 128.465L98.4476 127.197L100.621 125.935C100.673 125.894 100.795 125.854 100.951 125.854ZM100.951 125.274C100.725 125.274 100.5 125.327 100.326 125.425L97.9157 126.832C97.5747 127.035 97.5747 127.359 97.9215 127.562L100.349 128.969C100.523 129.068 100.748 129.12 100.974 129.12C101.199 129.12 101.425 129.068 101.598 128.969L104.009 127.562C104.356 127.359 104.35 127.035 104.009 126.832L101.581 125.425C101.407 125.327 101.182 125.274 100.951 125.274Z" fill="#706F6F"/> +<path d="M101.269 134.209C101.084 134.209 100.91 134.169 100.789 134.099L98.3551 132.692C98.2568 132.634 98.2395 132.588 98.2395 132.582C98.2395 132.571 98.2568 132.524 98.3551 132.472L114.143 123.282C114.264 123.212 114.437 123.172 114.622 123.172C114.807 123.172 114.981 123.212 115.102 123.282L117.536 124.689C117.634 124.747 117.652 124.793 117.652 124.805C117.652 124.817 117.634 124.863 117.542 124.915L101.754 134.105C101.627 134.169 101.454 134.209 101.269 134.209Z" fill="white"/> +<path d="M114.622 123.45C114.779 123.45 114.9 123.485 114.958 123.52L117.149 124.788L101.598 133.839C101.54 133.874 101.419 133.914 101.263 133.914C101.107 133.914 100.985 133.88 100.928 133.845L98.7367 132.577L114.287 123.525C114.351 123.491 114.466 123.456 114.622 123.45ZM114.622 122.871C114.397 122.871 114.172 122.923 113.998 123.022L98.2106 132.212C97.8638 132.415 97.8695 132.739 98.2106 132.942L100.644 134.349C100.818 134.447 101.043 134.499 101.269 134.499C101.494 134.499 101.725 134.447 101.899 134.349L117.686 125.159C118.027 124.956 118.027 124.632 117.681 124.435L115.247 123.027C115.079 122.923 114.848 122.871 114.622 122.871Z" fill="#706F6F"/> +<path d="M73.875 152.382C75.9153 153.558 75.928 155.468 73.9003 156.644C71.8727 157.82 68.5763 157.82 66.536 156.644C64.4958 155.468 64.4873 153.558 66.5149 152.382C68.5425 151.206 71.8348 151.206 73.875 152.382Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M38.1123 73.8438C43.0202 76.6786 43.0519 81.2745 38.1705 84.1092C33.2943 86.9439 25.3559 86.9439 20.448 84.1092C15.5401 81.2745 15.5137 76.6786 20.3951 73.8438C25.2766 71.0091 33.2044 71.0091 38.1123 73.8438Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<path d="M36.7056 74.5427C40.8255 76.9227 40.852 80.7781 36.7585 83.158C32.665 85.538 26.0013 85.538 21.8761 83.158C17.7562 80.7781 17.735 76.9227 21.8285 74.5427C25.9219 72.1628 32.5804 72.1628 36.7056 74.5427Z" fill="#EDEDED"/> +<path d="M38.9585 74.3038C38.9532 74.3514 38.9532 74.399 38.9479 74.4519C38.9426 74.4942 38.9373 74.5365 38.932 74.5788C38.9267 74.6264 38.9162 74.674 38.9109 74.7216C38.9056 74.7639 38.895 74.8063 38.8844 74.8486C38.8739 74.8962 38.8633 74.9438 38.8474 74.9914C38.8368 75.0337 38.821 75.076 38.8104 75.1183C38.7945 75.1659 38.7787 75.2135 38.7628 75.2558C38.7469 75.2981 38.7311 75.3404 38.7152 75.3827C38.6941 75.4303 38.6729 75.4779 38.6517 75.5308C38.6359 75.5731 38.6147 75.6101 38.5936 75.6524C38.5724 75.7 38.546 75.7476 38.5195 75.7952C38.4984 75.8323 38.4772 75.8746 38.4561 75.9116C38.4243 75.9698 38.3873 76.0279 38.3503 76.0808C38.3291 76.1179 38.308 76.1496 38.2815 76.1866C38.2392 76.2501 38.1916 76.3135 38.144 76.3717C38.1229 76.3982 38.1017 76.4246 38.0806 76.4563C38.0012 76.5568 37.9166 76.652 37.832 76.7472C37.8108 76.7737 37.7844 76.7948 37.7632 76.8212C37.6945 76.8953 37.6204 76.9693 37.5464 77.0381C37.5094 77.0698 37.4776 77.1016 37.4406 77.1333C37.393 77.1756 37.3454 77.2126 37.2978 77.2549C37.2555 77.2919 37.2132 77.329 37.1656 77.366C37.118 77.4083 37.0651 77.4453 37.0122 77.4876C36.9646 77.5246 36.917 77.5617 36.8694 77.5934C36.8166 77.6304 36.7637 77.6727 36.7055 77.7098C36.6526 77.7468 36.605 77.7785 36.5521 77.8155C36.4939 77.8525 36.4358 77.8896 36.3776 77.9266C36.3036 77.9742 36.2295 78.0165 36.1555 78.0641C35.9439 78.1857 35.7271 78.2968 35.505 78.4079C35.4468 78.4343 35.3886 78.466 35.3251 78.4925C35.1242 78.5877 34.9179 78.6723 34.7064 78.7569C34.6799 78.7675 34.6535 78.7781 34.6217 78.7886C34.3943 78.8733 34.1616 78.9526 33.9289 79.0266C33.765 79.0795 33.5957 79.1218 33.4318 79.1694C33.3049 79.2065 33.1779 79.2382 33.051 79.2699C32.8765 79.3122 32.6967 79.3492 32.5168 79.3863C32.3846 79.4127 32.2577 79.4444 32.1255 79.4656C32.0726 79.4762 32.0144 79.4815 31.9615 79.492C31.7394 79.5291 31.5173 79.5608 31.2899 79.5872C31.2264 79.5925 31.1576 79.6031 31.0942 79.6084C30.9673 79.6243 30.835 79.6296 30.7028 79.6401C30.486 79.656 30.2691 79.6719 30.047 79.6824C29.9095 79.6877 29.7667 79.693 29.6292 79.693C29.4547 79.6983 29.2749 79.6983 29.1003 79.693C28.9523 79.693 28.8042 79.6877 28.6561 79.6824C28.4921 79.6771 28.3282 79.6666 28.1642 79.656C28.0162 79.6454 27.8681 79.6348 27.7147 79.619C27.5507 79.6031 27.3921 79.5872 27.2334 79.5661C27.0906 79.5502 26.9426 79.5291 26.7998 79.5026C26.6252 79.4762 26.456 79.4445 26.2868 79.4127C26.1545 79.3863 26.017 79.3598 25.8848 79.3334C25.6838 79.2911 25.4829 79.2382 25.2819 79.1853C25.155 79.1536 25.0227 79.1218 24.8958 79.0795C24.8271 79.0584 24.7583 79.0372 24.6948 79.0161C24.4939 78.9526 24.2982 78.8838 24.1078 78.8151C24.0496 78.7939 23.9967 78.7728 23.9386 78.7516C23.764 78.6829 23.5948 78.6088 23.4256 78.5348C23.3409 78.4978 23.2563 78.466 23.177 78.4237C22.9337 78.3074 22.6957 78.1857 22.4683 78.0535C20.5591 76.9535 19.6071 75.5044 19.6124 74.0605L19.6018 78.2228C19.5965 79.6666 20.5485 81.1104 22.4577 82.2157C22.6851 82.3479 22.9231 82.4696 23.1664 82.5859C23.2457 82.623 23.3356 82.66 23.415 82.697C23.5578 82.7605 23.7006 82.8292 23.8487 82.8874C23.8751 82.898 23.9015 82.9085 23.928 82.9138C23.9809 82.935 24.0391 82.9561 24.0972 82.9773C24.2876 83.0461 24.4886 83.1148 24.6843 83.1783C24.753 83.1994 24.8218 83.2206 24.8905 83.2417C24.9381 83.2576 24.9804 83.2735 25.028 83.284C25.1074 83.3052 25.192 83.3211 25.2766 83.3422C25.4776 83.3951 25.6733 83.4427 25.8795 83.4903C25.9324 83.5009 25.9853 83.5167 26.0382 83.5273C26.1175 83.5432 26.1968 83.5538 26.2762 83.5696C26.4454 83.6014 26.6199 83.6331 26.7892 83.6595C26.8579 83.6701 26.9267 83.686 26.9954 83.6966C27.0695 83.7071 27.1488 83.7124 27.2228 83.723C27.3815 83.7442 27.5455 83.76 27.7094 83.7759C27.7887 83.7812 27.8628 83.797 27.9421 83.8023C28.0162 83.8076 28.0849 83.8076 28.1589 83.8129C28.3229 83.8235 28.4869 83.8341 28.6508 83.8394C28.7354 83.8446 28.8148 83.8499 28.8994 83.8499C28.9628 83.8499 29.0316 83.8499 29.0951 83.8499C29.2696 83.8499 29.4494 83.8499 29.6239 83.8499C29.7138 83.8499 29.7984 83.8499 29.8884 83.8499C29.9412 83.8499 29.9941 83.8394 30.0417 83.8394C30.2586 83.8288 30.4807 83.8129 30.6975 83.797C30.7874 83.7918 30.8721 83.7865 30.962 83.7812C31.0043 83.7759 31.0466 83.7706 31.0889 83.7653C31.1524 83.76 31.2211 83.7495 31.2846 83.7442C31.512 83.7177 31.7341 83.686 31.9562 83.649C32.0091 83.6384 32.0673 83.6331 32.1202 83.6225C32.1466 83.6172 32.1731 83.6172 32.1995 83.6119C32.3053 83.5908 32.4058 83.5643 32.5116 83.5432C32.6914 83.5062 32.8712 83.4692 33.0457 83.4268C33.1726 83.3951 33.2996 83.3581 33.4265 83.3264C33.5957 83.2788 33.7597 83.2364 33.9236 83.1835C33.9607 83.173 33.9977 83.1624 34.0294 83.1518C34.2304 83.0884 34.4261 83.0196 34.6165 82.9456C34.6429 82.935 34.6693 82.9244 34.7011 82.9138C34.9126 82.8292 35.1189 82.7446 35.3199 82.6494C35.378 82.623 35.4415 82.5965 35.4997 82.5648C35.7218 82.459 35.9439 82.3427 36.1502 82.221C36.1925 82.1999 36.2295 82.1734 36.2665 82.1523C36.3036 82.1311 36.3353 82.11 36.3723 82.0835C36.4305 82.0465 36.4887 82.0095 36.5468 81.9724C36.5997 81.9354 36.6526 81.9037 36.7002 81.8667C36.7531 81.8296 36.8113 81.7926 36.8642 81.7503C36.9118 81.7133 36.9594 81.6763 37.007 81.6393C37.0598 81.6022 37.1074 81.5599 37.1603 81.5229C37.2079 81.4859 37.2502 81.4489 37.2925 81.4118C37.3401 81.3695 37.3877 81.3325 37.43 81.2902C37.4512 81.2743 37.4671 81.2585 37.4882 81.2426C37.5041 81.2267 37.52 81.2109 37.5358 81.195C37.6099 81.121 37.6839 81.0522 37.7527 80.9782C37.7738 80.9517 37.8003 80.9306 37.8214 80.9041C37.9113 80.8089 37.9959 80.7084 38.07 80.6133C38.0753 80.608 38.0753 80.6027 38.0806 80.6027C38.0964 80.5815 38.1123 80.5551 38.1334 80.5339C38.181 80.4705 38.2286 80.4123 38.271 80.3488C38.2921 80.3118 38.3186 80.2801 38.3397 80.243C38.3767 80.1849 38.4137 80.1267 38.4455 80.0738C38.4561 80.0579 38.4666 80.0421 38.4719 80.0262C38.4825 80.005 38.4931 79.9786 38.5089 79.9575C38.5354 79.9099 38.5618 79.8622 38.583 79.8147C38.6041 79.7723 38.62 79.7353 38.6412 79.693C38.6623 79.6454 38.6835 79.5978 38.7046 79.5449C38.7152 79.5238 38.7258 79.5026 38.7311 79.4815C38.7364 79.4603 38.7416 79.4392 38.7522 79.4233C38.7681 79.3757 38.784 79.3281 38.7998 79.2858C38.8104 79.2435 38.8263 79.2012 38.8368 79.1589C38.8474 79.1113 38.8633 79.0637 38.8739 79.0161C38.8792 78.9896 38.8897 78.9632 38.895 78.942C38.9003 78.9262 38.9003 78.905 38.9056 78.8891C38.9162 78.8415 38.9215 78.7939 38.9268 78.7463C38.932 78.704 38.9373 78.6617 38.9426 78.6194C38.9479 78.5718 38.9479 78.5242 38.9532 78.4713C38.9532 78.4449 38.9585 78.4132 38.9585 78.3867C38.9585 78.3603 38.9585 78.3285 38.9585 78.3021L38.9691 74.1399C38.9691 74.1928 38.9638 74.2457 38.9585 74.3038Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M36.1079 70.1421C39.8999 72.3317 39.921 75.8804 36.1555 78.0699C32.3899 80.2594 26.2603 80.2594 22.4683 78.0699C18.6763 75.8804 18.6605 72.3317 22.426 70.1421C26.1916 67.9526 32.3159 67.9526 36.1079 70.1421Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M29.1126 69.7641C29.3652 69.6183 29.7749 69.6183 30.0276 69.7641L31.0125 70.3328C31.2361 70.4619 31.2653 70.6654 31.0815 70.814L29.3903 72.181C29.2252 72.3144 28.9287 72.3701 28.6592 72.3182L27.5969 72.1138C26.8385 73.1413 26.8385 74.3109 27.5969 75.3385L28.6592 75.134C28.9287 75.0822 29.2252 75.1378 29.3903 75.2713L31.0815 76.6382C31.2653 76.7868 31.2361 76.9903 31.0125 77.1195L30.0276 77.6881C29.7749 77.834 29.3652 77.834 29.1126 77.6881L28.1976 77.1598C24.9129 75.2634 24.9129 72.1888 28.1976 70.2924L29.1126 69.7641Z" fill="#DA3635"/> +<path d="M54.4905 173.511L36.5021 163.126C35.7987 162.721 34.6628 162.721 33.9664 163.126L2.9412 181.156C2.38906 181.459 2.4207 181.884 2.4207 181.884L2.41016 185.626C2.41016 185.893 2.586 186.161 2.9412 186.365L20.9296 196.75C21.633 197.154 22.7654 197.154 23.4653 196.75L54.487 178.719C54.8316 178.519 55.0075 178.255 55.0075 177.991L55.018 174.249C54.9618 173.701 54.4905 173.511 54.4905 173.511Z" fill="#EDEDED"/> +<path d="M55.8692 173.718L36.9171 162.778C36.1751 162.348 34.9793 162.352 34.2478 162.778L1.55916 181.772C0.97537 182.088 1.01054 182.538 1.01054 182.538L1 186.481C1 186.762 1.18638 187.043 1.55916 187.258L20.5112 198.199C21.2533 198.628 22.4455 198.628 23.1805 198.199L55.8692 179.204C56.2349 178.993 56.4178 178.716 56.4178 178.438L56.4283 174.495C56.3685 173.919 55.8692 173.718 55.8692 173.718Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M54.3992 173.613L23.4934 191.573L23.4829 195.301L54.3887 177.341C54.7333 177.14 54.9056 176.877 54.9092 176.616L54.9197 172.889C54.9162 173.149 54.7439 173.413 54.3992 173.613Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M3.05029 181.226C2.69861 181.022 2.52277 180.755 2.52277 180.491L2.51221 184.219C2.51221 184.486 2.68805 184.75 3.03973 184.954L20.9578 195.3L20.9684 191.573L3.05029 181.226Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M23.4936 191.573L23.4831 195.301C22.7867 195.706 21.6578 195.706 20.958 195.301L20.9685 191.573C21.6684 191.978 22.7973 191.978 23.4936 191.573Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M54.389 172.15C55.0889 172.554 55.0924 173.208 54.3961 173.613L23.4903 191.573C22.794 191.978 21.6651 191.978 20.9653 191.573L3.04711 181.227C2.34727 180.822 2.34374 180.168 3.04007 179.764L33.9458 161.803C34.6386 161.399 35.771 161.399 36.4709 161.803L54.389 172.15Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M17.318 186.055L15.848 186.91C15.7706 186.956 15.6721 186.956 15.5948 186.91L10.3934 183.907C10.2246 183.808 10.2246 183.565 10.3934 183.467L11.8635 182.612C11.9408 182.567 12.0393 182.567 12.1167 182.612L17.318 185.616C17.4833 185.718 17.4833 185.96 17.318 186.055Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M36.0941 162.601C36.3051 162.721 36.3051 162.918 36.0976 163.037C35.8901 163.157 35.5525 163.157 35.3415 163.037C35.1305 162.918 35.1306 162.721 35.338 162.601C35.549 162.482 35.8866 162.482 36.0941 162.601Z" fill="#706F6F"/> +<path d="M37.4553 163.333C37.6663 163.452 37.6663 163.649 37.4588 163.769C37.2513 163.888 36.9137 163.888 36.7027 163.769C36.4916 163.649 36.4916 163.452 36.6991 163.333C36.9102 163.213 37.2478 163.213 37.4553 163.333Z" fill="#706F6F"/> +<path d="M47.4781 169.182C47.6644 169.291 47.6644 169.463 47.4781 169.572C47.2917 169.681 46.9892 169.681 46.8028 169.572L39.6603 165.447C39.4739 165.338 39.4739 165.165 39.6567 165.056C39.8431 164.947 40.1456 164.947 40.332 165.056L47.4781 169.182Z" fill="#706F6F"/> +<path d="M192.859 54.0173L187.727 51.0346C184.398 49.1005 179.79 49.3714 174.701 52.3104L179.833 55.293C184.922 52.357 189.53 52.0832 192.859 54.0173Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M161.795 95.6582L166.927 98.6409C163.641 96.7301 161.603 92.6698 161.588 86.8996C161.556 75.2835 169.726 61.1304 179.836 55.2932L174.704 52.3105C164.594 58.1477 156.424 72.3008 156.456 83.9169C156.47 89.6871 158.509 93.7475 161.795 95.6582Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M166.924 98.6375C159.786 94.489 159.806 81.1362 166.968 68.8132C174.13 56.4902 185.722 49.8634 192.86 54.0119C199.998 58.1604 199.979 71.5132 192.817 83.8362C185.655 96.1592 174.062 102.786 166.924 98.6375Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M180.914 57.6665C180.593 57.85 180.337 58.2986 180.337 58.6656L180.351 64.0018C180.351 64.3659 180.611 64.5144 180.931 64.3309C181.249 64.1474 181.508 63.7018 181.505 63.3348L181.49 57.9986C181.49 57.6316 181.231 57.483 180.914 57.6665Z" fill="#DA3635"/> +<path d="M180.998 87.2457C180.678 87.4292 180.421 87.8778 180.421 88.2419L180.436 93.581C180.436 93.9451 180.695 94.0936 181.016 93.9101C181.333 93.7266 181.592 93.2809 181.589 92.9139L181.575 87.5748C181.575 87.2108 181.316 87.0622 180.998 87.2457Z" fill="#DA3635"/> +<path d="M165.77 83.8991C165.453 84.0826 165.194 84.5282 165.197 84.8952C165.197 85.2623 165.456 85.4108 165.776 85.2273L170.419 82.5476C170.74 82.3641 170.996 81.9155 170.996 81.5485C170.996 81.1844 170.737 81.0358 170.416 81.2193L165.77 83.8991Z" fill="#DA3635"/> +<path d="M191.511 69.0358C191.19 69.2193 190.934 69.6679 190.934 70.032C190.934 70.399 191.193 70.5475 191.514 70.364L196.157 67.6843C196.474 67.5008 196.733 67.0522 196.733 66.6852C196.733 66.3211 196.471 66.1726 196.154 66.3561L191.511 69.0358Z" fill="#DA3635"/> +<path d="M170.186 68.9862C170.037 69.0706 169.892 69.2221 169.778 69.4173C169.554 69.8047 169.554 70.227 169.781 70.3552L173.075 72.2339C173.189 72.298 173.338 72.2776 173.483 72.1931C173.632 72.1086 173.777 71.9572 173.891 71.7649C174.115 71.3746 174.115 70.9552 173.888 70.827L170.594 68.9483C170.48 68.8784 170.332 68.8988 170.186 68.9862Z" fill="#DA3635"/> +<path d="M188.446 79.3899C188.297 79.4744 188.152 79.6259 188.038 79.8181C187.814 80.2084 187.814 80.6278 188.041 80.7589L191.335 82.6347C191.449 82.6988 191.597 82.6813 191.743 82.594C191.892 82.5095 192.037 82.358 192.151 82.1629C192.375 81.7755 192.375 81.356 192.148 81.225L188.854 79.3462C188.743 79.2821 188.594 79.3054 188.446 79.3899Z" fill="#DA3635"/> +<path d="M173.527 88.0032C173.378 88.0877 173.232 88.2391 173.119 88.4314L169.845 94.1025C169.621 94.4928 169.621 94.9123 169.848 95.0404C169.961 95.1045 170.11 95.0841 170.259 94.9996C170.407 94.9152 170.553 94.7637 170.666 94.5686L173.94 88.9003C174.165 88.51 174.165 88.0906 173.937 87.9595C173.824 87.8954 173.675 87.9187 173.527 88.0032Z" fill="#DA3635"/> +<path d="M191.67 56.5805C191.522 56.665 191.376 56.8165 191.263 57.0087L187.989 62.6799C187.764 63.0673 187.764 63.4867 187.992 63.6178C188.105 63.6818 188.254 63.6615 188.399 63.577C188.548 63.4925 188.694 63.3411 188.807 63.1488L192.081 57.4777C192.305 57.0903 192.305 56.6679 192.078 56.5398C191.968 56.4728 191.819 56.4932 191.67 56.5805Z" fill="#DA3635"/> +<path d="M188.53 73.4276L186.477 72.2334L178.968 77.0278L181.021 78.222L188.53 73.4276Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M181.021 78.2226L178.968 77.0283L179.084 79.3265L181.138 80.5207L181.021 78.2226Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M188.53 73.4277L181.021 78.2221L181.138 80.5203L188.644 75.7259L188.53 73.4277Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M174.855 66.9267L172.802 65.7324L171.022 67.9432L173.073 69.1374L174.855 66.9267Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M173.073 69.1376L171.022 67.9434L179.067 79.2507L181.121 80.4449L173.073 69.1376Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M174.855 66.9268L173.072 69.1375L181.12 80.4449L182.9 78.2312L174.855 66.9268Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M181.788 76.8933C182.213 76.6486 182.598 76.6253 182.874 76.7855L183.302 77.0331C183.026 76.8729 182.641 76.8933 182.216 77.1409C181.371 77.6273 180.69 78.8099 180.693 79.7799C180.693 80.2605 180.864 80.6013 181.138 80.7585L180.71 80.511C180.436 80.3508 180.264 80.0129 180.264 79.5323C180.262 78.5623 180.943 77.3797 181.788 76.8933Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M181.139 80.7539C180.543 80.4079 180.545 79.2942 181.143 78.2664C181.74 77.2385 182.707 76.6858 183.302 77.0318C183.897 77.3777 183.896 78.4914 183.298 79.5193C182.701 80.5471 181.734 81.0999 181.139 80.7539Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M143.293 183.592C142.765 183.969 142.041 184.104 141.385 184.083C140.216 184.052 139.053 183.654 138.164 182.982C137.621 182.573 137.047 182.273 136.437 181.979C135.863 181.7 135.336 181.291 134.762 180.976C133.795 180.448 132.807 179.89 131.835 179.352C131.406 179.125 129.534 178.086 130.108 177.496C130.667 177.775 133.081 179.254 133.821 179.662C134.891 180.273 135.909 180.945 136.959 181.586C137.419 181.865 139.11 182.77 139.539 182.868C139.916 182.951 141.069 183.313 142.005 183.08C142.383 182.982 143.598 182.175 143.815 181.911C144.047 182.656 143.851 183.199 143.293 183.592Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M143.768 182.082C143.127 182.889 141.747 183.364 140.697 183.116C140.123 182.987 139.529 182.92 138.955 182.723C138.231 182.475 137.59 181.999 136.949 181.606C135.666 180.821 134.384 180.045 133.086 179.306C132.559 179.026 132.12 178.665 131.623 178.354C131.277 178.142 130.372 177.879 130.212 177.517C129.902 176.876 132.099 176.023 132.559 175.955C133.578 175.826 134.348 176.565 135.155 177.041C135.925 177.501 136.762 177.811 137.538 178.308C138.308 178.799 139.146 179.176 139.937 179.673C140.676 180.133 141.318 180.738 142.088 181.136C142.398 181.301 143.499 182.123 143.794 181.943" fill="white"/> +<path d="M143.768 182.082C143.127 182.889 141.747 183.364 140.697 183.116C140.123 182.987 139.529 182.92 138.955 182.723C138.231 182.475 137.59 181.999 136.949 181.606C135.666 180.821 134.384 180.045 133.086 179.306C132.559 179.026 132.12 178.665 131.623 178.354C131.277 178.142 130.372 177.879 130.212 177.517C129.902 176.876 132.099 176.023 132.559 175.955C133.578 175.826 134.348 176.565 135.155 177.041C135.925 177.501 136.762 177.811 137.538 178.308C138.308 178.799 139.146 179.176 139.937 179.673C140.676 180.133 141.318 180.738 142.088 181.136C142.398 181.301 143.499 182.123 143.794 181.943" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M143.768 182.082C143.127 182.889 141.747 183.364 140.697 183.116C140.123 182.987 139.529 182.92 138.955 182.723C138.231 182.475 137.59 181.999 136.949 181.606C135.666 180.821 134.384 180.045 133.086 179.306C132.559 179.026 132.12 178.665 131.623 178.354C131.277 178.142 130.372 177.879 130.212 177.517C129.902 176.876 132.099 176.023 132.559 175.955C133.578 175.826 134.348 176.565 135.155 177.041C135.925 177.501 136.762 177.811 137.538 178.308C138.308 178.799 139.146 179.176 139.937 179.673C140.676 180.133 141.318 180.738 142.088 181.136C142.398 181.301 143.499 182.123 143.794 181.943" fill="white"/> +<path d="M143.768 182.082C143.127 182.889 141.747 183.364 140.697 183.116C140.123 182.987 139.529 182.92 138.955 182.723C138.231 182.475 137.59 181.999 136.949 181.606C135.666 180.821 134.384 180.045 133.086 179.306C132.559 179.026 132.12 178.665 131.623 178.354C131.277 178.142 130.372 177.879 130.212 177.517C129.902 176.876 132.099 176.023 132.559 175.955C133.578 175.826 134.348 176.565 135.155 177.041C135.925 177.501 136.762 177.811 137.538 178.308C138.308 178.799 139.146 179.176 139.937 179.673C140.676 180.133 141.318 180.738 142.088 181.136C142.398 181.301 143.499 182.123 143.794 181.943" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M131.727 181.063C132.466 180.934 132.368 179.274 131.66 179.486C131.117 179.6 131.117 181.177 131.727 181.063Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M138.081 182.951C137.373 182.754 137.274 184.399 138.014 184.528C138.624 184.657 138.624 183.065 138.081 182.951Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M140.728 162.926C140.464 163.092 139.022 163.516 138.624 162.993C138.412 162.714 139.053 161.975 139.053 161.644C139.053 161.267 138.774 160.905 138.805 160.558C138.82 160.248 138.934 160.362 139.136 160.248C139.187 160.233 139.265 160.315 139.348 160.264C139.415 160.212 139.332 160.098 139.363 160.052C139.741 159.576 140.578 158.935 141.25 159.312C141.938 159.69 141.84 160.76 141.416 161.298C141.188 161.577 140.925 161.809 140.594 161.939C140.345 162.037 140.118 162.037 140.201 162.383" fill="white"/> +<path d="M140.728 162.926C140.464 163.092 139.022 163.516 138.624 162.993C138.412 162.714 139.053 161.975 139.053 161.644C139.053 161.267 138.774 160.905 138.805 160.558C138.82 160.248 138.934 160.362 139.136 160.248C139.187 160.233 139.265 160.315 139.348 160.264C139.415 160.212 139.332 160.098 139.363 160.052C139.741 159.576 140.578 158.935 141.25 159.312C141.938 159.69 141.84 160.76 141.416 161.298C141.188 161.577 140.925 161.809 140.594 161.939C140.345 162.037 140.118 162.037 140.201 162.383" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M140.728 162.926C140.464 163.092 139.022 163.516 138.624 162.993C138.412 162.714 139.053 161.975 139.053 161.644C139.053 161.267 138.774 160.905 138.805 160.558C138.82 160.248 138.934 160.362 139.136 160.248C139.187 160.233 139.265 160.315 139.348 160.264C139.415 160.212 139.332 160.098 139.363 160.052C139.741 159.576 140.578 158.935 141.25 159.312C141.938 159.69 141.84 160.76 141.416 161.298C141.188 161.577 140.925 161.809 140.594 161.939C140.345 162.037 140.118 162.037 140.201 162.383" fill="white"/> +<path d="M140.728 162.926C140.464 163.092 139.022 163.516 138.624 162.993C138.412 162.714 139.053 161.975 139.053 161.644C139.053 161.267 138.774 160.905 138.805 160.558C138.82 160.248 138.934 160.362 139.136 160.248C139.187 160.233 139.265 160.315 139.348 160.264C139.415 160.212 139.332 160.098 139.363 160.052C139.741 159.576 140.578 158.935 141.25 159.312C141.938 159.69 141.84 160.76 141.416 161.298C141.188 161.577 140.925 161.809 140.594 161.939C140.345 162.037 140.118 162.037 140.201 162.383" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M141.188 165.573C141.007 165.377 140.201 165.604 140.154 165.821C140.102 166.018 140.925 168.039 141.338 168.401C141.829 168.83 142.667 169.073 143.262 169.368C143.67 169.58 144.151 169.745 144.513 170.025C144.807 170.252 144.942 170.635 145.237 170.862C145.464 171.043 145.847 171.172 146.007 170.811C146.09 170.599 145.924 170.335 145.841 170.138C145.645 169.611 145.547 169.27 145.05 168.991C144.161 168.499 143.163 168.22 142.522 167.398C142.191 166.969 141.271 166.069 141.307 165.526" fill="white"/> +<path d="M141.188 165.573C141.007 165.377 140.201 165.604 140.154 165.821C140.102 166.018 140.925 168.039 141.338 168.401C141.829 168.83 142.667 169.073 143.262 169.368C143.67 169.58 144.151 169.745 144.513 170.025C144.807 170.252 144.942 170.635 145.237 170.862C145.464 171.043 145.847 171.172 146.007 170.811C146.09 170.599 145.924 170.335 145.841 170.138C145.645 169.611 145.547 169.27 145.05 168.991C144.161 168.499 143.163 168.22 142.522 167.398C142.191 166.969 141.271 166.069 141.307 165.526" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M141.188 165.573C141.007 165.377 140.201 165.604 140.154 165.821C140.102 166.018 140.925 168.039 141.338 168.401C141.829 168.83 142.667 169.073 143.262 169.368C143.67 169.58 144.151 169.745 144.513 170.025C144.807 170.252 144.942 170.635 145.237 170.862C145.464 171.043 145.847 171.172 146.007 170.811C146.09 170.599 145.924 170.335 145.841 170.138C145.645 169.611 145.547 169.27 145.05 168.991C144.161 168.499 143.163 168.22 142.522 167.398C142.191 166.969 141.271 166.069 141.307 165.526" fill="white"/> +<path d="M141.188 165.573C141.007 165.377 140.201 165.604 140.154 165.821C140.102 166.018 140.925 168.039 141.338 168.401C141.829 168.83 142.667 169.073 143.262 169.368C143.67 169.58 144.151 169.745 144.513 170.025C144.807 170.252 144.942 170.635 145.237 170.862C145.464 171.043 145.847 171.172 146.007 170.811C146.09 170.599 145.924 170.335 145.841 170.138C145.645 169.611 145.547 169.27 145.05 168.991C144.161 168.499 143.163 168.22 142.522 167.398C142.191 166.969 141.271 166.069 141.307 165.526" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M134.979 164.668C135.604 164.818 136.246 165.159 135.884 165.898C135.573 166.54 135.129 167.031 135.212 167.786C135.279 168.261 135.491 168.737 135.506 169.213C135.522 169.704 135.439 170.428 135.294 170.919C135.196 171.281 134.984 171.705 134.57 171.787C134.224 171.855 133.862 171.575 133.862 171.198C133.878 170.671 134.353 170.195 134.307 169.606C134.276 169.228 134.141 168.866 134.126 168.504C134.11 168.06 134.059 167.615 134.028 167.155C134.012 166.612 134.157 166.266 134.436 165.811C134.601 165.516 135.046 165.071 135.046 164.74" fill="white"/> +<path d="M134.979 164.668C135.604 164.818 136.246 165.159 135.884 165.898C135.573 166.54 135.129 167.031 135.212 167.786C135.279 168.261 135.491 168.737 135.506 169.213C135.522 169.704 135.439 170.428 135.294 170.919C135.196 171.281 134.984 171.705 134.57 171.787C134.224 171.855 133.862 171.575 133.862 171.198C133.878 170.671 134.353 170.195 134.307 169.606C134.276 169.228 134.141 168.866 134.126 168.504C134.11 168.06 134.059 167.615 134.028 167.155C134.012 166.612 134.157 166.266 134.436 165.811C134.601 165.516 135.046 165.071 135.046 164.74" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M134.979 164.668C135.604 164.818 136.246 165.159 135.884 165.898C135.573 166.54 135.129 167.031 135.212 167.786C135.279 168.261 135.491 168.737 135.506 169.213C135.522 169.704 135.439 170.428 135.294 170.919C135.196 171.281 134.984 171.705 134.57 171.787C134.224 171.855 133.862 171.575 133.862 171.198C133.878 170.671 134.353 170.195 134.307 169.606C134.276 169.228 134.141 168.866 134.126 168.504C134.11 168.06 134.059 167.615 134.028 167.155C134.012 166.612 134.157 166.266 134.436 165.811C134.601 165.516 135.046 165.071 135.046 164.74" fill="white"/> +<path d="M134.979 164.668C135.604 164.818 136.246 165.159 135.884 165.898C135.573 166.54 135.129 167.031 135.212 167.786C135.279 168.261 135.491 168.737 135.506 169.213C135.522 169.704 135.439 170.428 135.294 170.919C135.196 171.281 134.984 171.705 134.57 171.787C134.224 171.855 133.862 171.575 133.862 171.198C133.878 170.671 134.353 170.195 134.307 169.606C134.276 169.228 134.141 168.866 134.126 168.504C134.11 168.06 134.059 167.615 134.028 167.155C134.012 166.612 134.157 166.266 134.436 165.811C134.601 165.516 135.046 165.071 135.046 164.74" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M137.983 175.903C138.624 176.001 137.817 175.195 137.688 175.097C137.326 174.817 137.099 174.554 136.654 174.554C136.261 174.569 135.863 174.652 135.454 174.683C135.077 174.698 134.715 174.631 134.338 174.698C134.059 174.75 133.728 174.812 133.629 175.107C133.547 175.386 133.728 175.779 133.94 175.862C134.167 175.945 134.71 175.846 134.974 175.831C137.14 175.733 133.857 175.65 136.023 175.748C136.535 175.779 137.766 176.374 138.029 175.815" fill="white"/> +<path d="M137.983 175.903C138.624 176.001 137.817 175.195 137.688 175.097C137.326 174.817 137.099 174.554 136.654 174.554C136.261 174.569 135.863 174.652 135.454 174.683C135.077 174.698 134.715 174.631 134.338 174.698C134.059 174.75 133.728 174.812 133.629 175.107C133.547 175.386 133.728 175.779 133.94 175.862C134.167 175.945 134.71 175.846 134.974 175.831C137.14 175.733 133.857 175.65 136.023 175.748C136.535 175.779 137.766 176.374 138.029 175.815" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M137.983 175.903C138.624 176.001 137.817 175.195 137.688 175.097C137.326 174.817 137.099 174.554 136.654 174.554C136.261 174.569 135.863 174.652 135.454 174.683C135.077 174.698 134.715 174.631 134.338 174.698C134.059 174.75 133.728 174.812 133.629 175.107C133.547 175.386 133.728 175.779 133.94 175.862C134.167 175.945 134.71 175.846 134.974 175.831C137.14 175.733 133.857 175.65 136.023 175.748C136.535 175.779 137.766 176.374 138.029 175.815" fill="white"/> +<path d="M137.983 175.903C138.624 176.001 137.817 175.195 137.688 175.097C137.326 174.817 137.099 174.554 136.654 174.554C136.261 174.569 135.863 174.652 135.454 174.683C135.077 174.698 134.715 174.631 134.338 174.698C134.059 174.75 133.728 174.812 133.629 175.107C133.547 175.386 133.728 175.779 133.94 175.862C134.167 175.945 134.71 175.846 134.974 175.831C137.14 175.733 133.857 175.65 136.023 175.748C136.535 175.779 137.766 176.374 138.029 175.815" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M139.43 180.635C139.053 180.764 138.82 180.536 138.526 180.567C138.246 180.583 138.278 180.847 138.262 181.141C138.246 181.865 138.572 182.01 139.131 182.372C139.56 182.651 139.885 182.982 140.444 182.749C141.592 182.289 139.606 181.322 139.508 180.81" fill="white"/> +<path d="M139.43 180.635C139.053 180.764 138.82 180.536 138.526 180.567C138.246 180.583 138.278 180.847 138.262 181.141C138.246 181.865 138.572 182.01 139.131 182.372C139.56 182.651 139.885 182.982 140.444 182.749C141.592 182.289 139.606 181.322 139.508 180.81" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M139.43 180.635C139.053 180.764 138.82 180.536 138.526 180.567C138.246 180.583 138.278 180.847 138.262 181.141C138.246 181.865 138.572 182.01 139.131 182.372C139.56 182.651 139.885 182.982 140.444 182.749C141.592 182.289 139.606 181.322 139.508 180.81" fill="white"/> +<path d="M139.43 180.635C139.053 180.764 138.82 180.536 138.526 180.567C138.246 180.583 138.278 180.847 138.262 181.141C138.246 181.865 138.572 182.01 139.131 182.372C139.56 182.651 139.885 182.982 140.444 182.749C141.592 182.289 139.606 181.322 139.508 180.81" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M133.727 174.937C133.531 175.345 133.795 175.511 133.841 175.841C133.872 176.09 133.479 176.333 133.329 176.529C133.148 176.757 132.621 177.698 132.295 177.63C131.933 177.563 131.721 176.581 131.783 176.281C131.882 175.935 132.244 175.112 132.538 174.916C132.9 174.652 133.474 174.999 133.852 174.849" fill="white"/> +<path d="M133.727 174.937C133.531 175.345 133.795 175.511 133.841 175.841C133.872 176.09 133.479 176.333 133.329 176.529C133.148 176.757 132.621 177.698 132.295 177.63C131.933 177.563 131.721 176.581 131.783 176.281C131.882 175.935 132.244 175.112 132.538 174.916C132.9 174.652 133.474 174.999 133.852 174.849" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M133.727 174.937C133.531 175.345 133.795 175.511 133.841 175.841C133.872 176.09 133.479 176.333 133.329 176.529C133.148 176.757 132.621 177.698 132.295 177.63C131.933 177.563 131.721 176.581 131.783 176.281C131.882 175.935 132.244 175.112 132.538 174.916C132.9 174.652 133.474 174.999 133.852 174.849" fill="white"/> +<path d="M133.727 174.937C133.531 175.345 133.795 175.511 133.841 175.841C133.872 176.09 133.479 176.333 133.329 176.529C133.148 176.757 132.621 177.698 132.295 177.63C131.933 177.563 131.721 176.581 131.783 176.281C131.882 175.935 132.244 175.112 132.538 174.916C132.9 174.652 133.474 174.999 133.852 174.849" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M135.387 169.188C135.16 169.761 134.994 170.304 135.123 170.945C135.237 171.519 135.749 171.964 136.044 172.471C136.752 173.639 137.357 174.854 137.734 176.152C137.884 176.679 138.081 180.407 138.624 180.355C138.903 180.34 139.167 180.304 139.43 180.257C140.102 180.128 139.921 176.281 139.808 175.707C139.627 174.87 139.56 174.017 139.348 173.179C139.234 172.75 139.068 172.393 139.084 171.948C139.099 171.519 139.363 170.552 139.311 170.144" fill="white"/> +<path d="M135.387 169.188C135.16 169.761 134.994 170.304 135.123 170.945C135.237 171.519 135.749 171.964 136.044 172.471C136.752 173.639 137.357 174.854 137.734 176.152C137.884 176.679 138.081 180.407 138.624 180.355C138.903 180.34 139.167 180.304 139.43 180.257C140.102 180.128 139.921 176.281 139.808 175.707C139.627 174.87 139.56 174.017 139.348 173.179C139.234 172.75 139.068 172.393 139.084 171.948C139.099 171.519 139.363 170.552 139.311 170.144" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M135.387 169.188C135.16 169.761 134.994 170.304 135.123 170.945C135.237 171.519 135.749 171.964 136.044 172.471C136.752 173.639 137.357 174.854 137.734 176.152C137.884 176.679 138.081 180.407 138.624 180.355C138.903 180.34 139.167 180.304 139.43 180.257C140.102 180.128 139.921 176.281 139.808 175.707C139.627 174.87 139.56 174.017 139.348 173.179C139.234 172.75 139.068 172.393 139.084 171.948C139.099 171.519 139.363 170.552 139.311 170.144" fill="white"/> +<path d="M135.387 169.188C135.16 169.761 134.994 170.304 135.123 170.945C135.237 171.519 135.749 171.964 136.044 172.471C136.752 173.639 137.357 174.854 137.734 176.152C137.884 176.679 138.081 180.407 138.624 180.355C138.903 180.34 139.167 180.304 139.43 180.257C140.102 180.128 139.921 176.281 139.808 175.707C139.627 174.87 139.56 174.017 139.348 173.179C139.234 172.75 139.068 172.393 139.084 171.948C139.099 171.519 139.363 170.552 139.311 170.144" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M138.841 162.207C138.35 163.407 140.666 163.49 140.289 162.419C141.421 162.487 141.571 163.8 141.654 164.684C141.669 164.932 141.685 165.258 141.638 165.491C141.555 165.868 141.555 165.77 141.261 165.837C141.08 165.868 140.852 165.821 140.671 165.889C140.377 166.018 140.506 165.956 140.408 166.235C140.159 166.907 139.999 167.683 139.818 168.386C139.72 168.779 139.653 169.208 139.622 169.616C139.606 169.782 139.673 170.227 139.591 170.34C139.492 170.521 139.342 170.439 139.131 170.454C138.195 170.506 137.554 170.485 136.716 170.025C136.24 169.777 135.765 169.467 135.336 169.12C134.808 168.691 134.906 168.562 135.186 167.952C135.413 167.445 135.563 166.918 135.76 166.39C135.971 165.847 135.925 165.749 135.548 165.341C135.32 165.092 134.86 164.881 134.937 164.586C135.02 164.276 135.48 164.043 135.728 163.831C136.302 163.34 136.814 162.828 137.517 162.482C137.766 162.352 138.748 162.285 138.784 162.218C138.738 162.156 138.888 162.171 138.841 162.207Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M140.842 158.133C141.204 158.247 141.416 158.661 141.452 159.023C141.504 159.679 141.24 159.731 140.682 159.829C140.206 159.912 139.663 159.798 139.513 160.356C139.363 160.868 140.004 161.261 139.461 161.706C138.851 162.197 137.44 161.623 137.274 160.967C137.078 160.113 137.44 158.816 138.081 158.221C138.82 157.534 140.449 157.006 140.956 158.252" fill="white"/> +<path d="M140.842 158.133C141.204 158.247 141.416 158.661 141.452 159.023C141.504 159.679 141.24 159.731 140.682 159.829C140.206 159.912 139.663 159.798 139.513 160.356C139.363 160.868 140.004 161.261 139.461 161.706C138.851 162.197 137.44 161.623 137.274 160.967C137.078 160.113 137.44 158.816 138.081 158.221C138.82 157.534 140.449 157.006 140.956 158.252" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M140.842 158.133C141.204 158.247 141.416 158.661 141.452 159.023C141.504 159.679 141.24 159.731 140.682 159.829C140.206 159.912 139.663 159.798 139.513 160.356C139.363 160.868 140.004 161.261 139.461 161.706C138.851 162.197 137.44 161.623 137.274 160.967C137.078 160.113 137.44 158.816 138.081 158.221C138.82 157.534 140.449 157.006 140.956 158.252" fill="#DA3635"/> +<path d="M140.842 158.133C141.204 158.247 141.416 158.661 141.452 159.023C141.504 159.679 141.24 159.731 140.682 159.829C140.206 159.912 139.663 159.798 139.513 160.356C139.363 160.868 140.004 161.261 139.461 161.706C138.851 162.197 137.44 161.623 137.274 160.967C137.078 160.113 137.44 158.816 138.081 158.221C138.82 157.534 140.449 157.006 140.956 158.252" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.5807 37.101C12.1007 35.4911 15.6913 34.7774 15.5695 37.0844C15.4976 38.2296 15.1712 38.6612 13.9928 38.7829C13.0412 38.8548 11.4258 37.9862 11.5807 36.8908" fill="white"/> +<path d="M11.5807 37.101C12.1007 35.4911 15.6913 34.7774 15.5695 37.0844C15.4976 38.2296 15.1712 38.6612 13.9928 38.7829C13.0412 38.8548 11.4258 37.9862 11.5807 36.8908" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.5807 37.101C12.1007 35.4911 15.6913 34.7774 15.5695 37.0844C15.4976 38.2296 15.1712 38.6612 13.9928 38.7829C13.0412 38.8548 11.4258 37.9862 11.5807 36.8908" fill="white"/> +<path d="M11.5807 37.101C12.1007 35.4911 15.6913 34.7774 15.5695 37.0844C15.4976 38.2296 15.1712 38.6612 13.9928 38.7829C13.0412 38.8548 11.4258 37.9862 11.5807 36.8908" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M12.2391 38.6767C11.9791 39.5066 11.2156 41.1884 12.831 40.7071C13.3345 40.5522 14.4797 40.3088 14.1146 39.6836C13.8711 39.2521 12.8144 39.0751 12.5378 38.5938" fill="white"/> +<path d="M12.2391 38.6767C11.9791 39.5066 11.2156 41.1884 12.831 40.7071C13.3345 40.5522 14.4797 40.3088 14.1146 39.6836C13.8711 39.2521 12.8144 39.0751 12.5378 38.5938" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M12.2391 38.6767C11.9791 39.5066 11.2156 41.1884 12.831 40.7071C13.3345 40.5522 14.4797 40.3088 14.1146 39.6836C13.8711 39.2521 12.8144 39.0751 12.5378 38.5938" fill="white"/> +<path d="M12.2391 38.6767C11.9791 39.5066 11.2156 41.1884 12.831 40.7071C13.3345 40.5522 14.4797 40.3088 14.1146 39.6836C13.8711 39.2521 12.8144 39.0751 12.5378 38.5938" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M14.0425 54.9596C14.0259 58.0134 12.5487 61.0452 12.8475 64.0769C12.9194 64.7187 13.1407 65.4102 12.9692 66.0686C12.7811 66.7103 11.9955 67.2138 11.4422 66.5167C11.0937 66.0852 11.1822 64.8183 11.1656 64.2816C11.1324 63.3964 11.2707 62.633 11.1158 61.7699C10.7507 59.8834 11.4478 57.9028 10.889 56.0494C10.5958 55.0591 10.3524 54.6995 10.5792 53.676C10.9111 52.2044 10.3192 51.2307 12.1393 51.0426C13.2126 50.9375 14.2748 50.7328 15.3149 50.4894C15.6247 50.4175 16.8253 49.7978 17.1185 49.9693C17.5334 50.2128 17.1849 52.6415 17.1849 53.2279C17.1849 55.2417 16.9746 57.1448 17.1849 59.1033C17.3398 60.4532 16.9082 61.8418 16.7865 63.1751C16.7201 64.005 17.1517 66.0354 15.7132 65.6868C14.4629 65.3936 14.8281 61.7146 14.7783 60.6247C14.7285 59.0646 15.4034 56.2541 14.1863 55.0425" fill="white"/> +<path d="M14.0425 54.9596C14.0259 58.0134 12.5487 61.0452 12.8475 64.0769C12.9194 64.7187 13.1407 65.4102 12.9692 66.0686C12.7811 66.7103 11.9955 67.2138 11.4422 66.5167C11.0937 66.0852 11.1822 64.8183 11.1656 64.2816C11.1324 63.3964 11.2707 62.633 11.1158 61.7699C10.7507 59.8834 11.4478 57.9028 10.889 56.0494C10.5958 55.0591 10.3524 54.6995 10.5792 53.676C10.9111 52.2044 10.3192 51.2307 12.1393 51.0426C13.2126 50.9375 14.2748 50.7328 15.3149 50.4894C15.6247 50.4175 16.8253 49.7978 17.1185 49.9693C17.5334 50.2128 17.1849 52.6415 17.1849 53.2279C17.1849 55.2417 16.9746 57.1448 17.1849 59.1033C17.3398 60.4532 16.9082 61.8418 16.7865 63.1751C16.7201 64.005 17.1517 66.0354 15.7132 65.6868C14.4629 65.3936 14.8281 61.7146 14.7783 60.6247C14.7285 59.0646 15.4034 56.2541 14.1863 55.0425" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M14.0425 54.9596C14.0259 58.0134 12.5487 61.0452 12.8475 64.0769C12.9194 64.7187 13.1407 65.4102 12.9692 66.0686C12.7811 66.7103 11.9955 67.2138 11.4422 66.5167C11.0937 66.0852 11.1822 64.8183 11.1656 64.2816C11.1324 63.3964 11.2707 62.633 11.1158 61.7699C10.7507 59.8834 11.4478 57.9028 10.889 56.0494C10.5958 55.0591 10.3524 54.6995 10.5792 53.676C10.9111 52.2044 10.3192 51.2307 12.1393 51.0426C13.2126 50.9375 14.2748 50.7328 15.3149 50.4894C15.6247 50.4175 16.8253 49.7978 17.1185 49.9693C17.5334 50.2128 17.1849 52.6415 17.1849 53.2279C17.1849 55.2417 16.9746 57.1448 17.1849 59.1033C17.3398 60.4532 16.9082 61.8418 16.7865 63.1751C16.7201 64.005 17.1517 66.0354 15.7132 65.6868C14.4629 65.3936 14.8281 61.7146 14.7783 60.6247C14.7285 59.0646 15.4034 56.2541 14.1863 55.0425" fill="white"/> +<path d="M14.0425 54.9596C14.0259 58.0134 12.5487 61.0452 12.8475 64.0769C12.9194 64.7187 13.1407 65.4102 12.9692 66.0686C12.7811 66.7103 11.9955 67.2138 11.4422 66.5167C11.0937 66.0852 11.1822 64.8183 11.1656 64.2816C11.1324 63.3964 11.2707 62.633 11.1158 61.7699C10.7507 59.8834 11.4478 57.9028 10.889 56.0494C10.5958 55.0591 10.3524 54.6995 10.5792 53.676C10.9111 52.2044 10.3192 51.2307 12.1393 51.0426C13.2126 50.9375 14.2748 50.7328 15.3149 50.4894C15.6247 50.4175 16.8253 49.7978 17.1185 49.9693C17.5334 50.2128 17.1849 52.6415 17.1849 53.2279C17.1849 55.2417 16.9746 57.1448 17.1849 59.1033C17.3398 60.4532 16.9082 61.8418 16.7865 63.1751C16.7201 64.005 17.1517 66.0354 15.7132 65.6868C14.4629 65.3936 14.8281 61.7146 14.7783 60.6247C14.7285 59.0646 15.4034 56.2541 14.1863 55.0425" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.3262 65.4482C15.376 65.7581 15.2211 65.8964 15.0662 66.1564C15.9181 67.0581 16.1228 66.2449 16.4161 65.5865C15.8794 65.7083 15.8075 65.7415 15.4258 65.5534" fill="white"/> +<path d="M15.3262 65.4482C15.376 65.7581 15.2211 65.8964 15.0662 66.1564C15.9181 67.0581 16.1228 66.2449 16.4161 65.5865C15.8794 65.7083 15.8075 65.7415 15.4258 65.5534" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.3262 65.4482C15.376 65.7581 15.2211 65.8964 15.0662 66.1564C15.9181 67.0581 16.1228 66.2449 16.4161 65.5865C15.8794 65.7083 15.8075 65.7415 15.4258 65.5534" fill="white"/> +<path d="M15.3262 65.4482C15.376 65.7581 15.2211 65.8964 15.0662 66.1564C15.9181 67.0581 16.1228 66.2449 16.4161 65.5865C15.8794 65.7083 15.8075 65.7415 15.4258 65.5534" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.0663 66.2788C14.2364 67.6287 16.7315 67.5126 17.6001 67.5126C19.1769 67.496 17.8767 66.7491 17.1852 66.4171C16.8588 66.2622 16.5766 66.0686 16.2502 66.1239C15.7468 66.1903 15.6251 66.8155 15.0884 66.1405" fill="white"/> +<path d="M15.0663 66.2788C14.2364 67.6287 16.7315 67.5126 17.6001 67.5126C19.1769 67.496 17.8767 66.7491 17.1852 66.4171C16.8588 66.2622 16.5766 66.0686 16.2502 66.1239C15.7468 66.1903 15.6251 66.8155 15.0884 66.1405" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.0663 66.2788C14.2364 67.6287 16.7315 67.5126 17.6001 67.5126C19.1769 67.496 17.8767 66.7491 17.1852 66.4171C16.8588 66.2622 16.5766 66.0686 16.2502 66.1239C15.7468 66.1903 15.6251 66.8155 15.0884 66.1405" fill="white"/> +<path d="M15.0663 66.2788C14.2364 67.6287 16.7315 67.5126 17.6001 67.5126C19.1769 67.496 17.8767 66.7491 17.1852 66.4171C16.8588 66.2622 16.5766 66.0686 16.2502 66.1239C15.7468 66.1903 15.6251 66.8155 15.0884 66.1405" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.5806 66.6767C11.5806 66.9534 11.4921 67.147 11.5087 67.4236C12.6705 68.2756 12.5819 67.4402 12.5819 66.6104C12.2887 66.7321 11.9402 66.8206 11.647 66.6823" fill="white"/> +<path d="M11.5806 66.6767C11.5806 66.9534 11.4921 67.147 11.5087 67.4236C12.6705 68.2756 12.5819 67.4402 12.5819 66.6104C12.2887 66.7321 11.9402 66.8206 11.647 66.6823" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.5806 66.6767C11.5806 66.9534 11.4921 67.147 11.5087 67.4236C12.6705 68.2756 12.5819 67.4402 12.5819 66.6104C12.2887 66.7321 11.9402 66.8206 11.647 66.6823" fill="white"/> +<path d="M11.5806 66.6767C11.5806 66.9534 11.4921 67.147 11.5087 67.4236C12.6705 68.2756 12.5819 67.4402 12.5819 66.6104C12.2887 66.7321 11.9402 66.8206 11.647 66.6823" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.3704 67.3516C11.2819 68.0818 11.2487 68.2699 11.8407 68.8785C12.3275 69.3653 12.7757 69.8301 13.4727 69.902C13.7992 69.1551 12.9859 68.0984 12.5378 67.5452C12.1892 67.7167 11.7024 67.7554 11.5143 67.3737" fill="white"/> +<path d="M11.3704 67.3516C11.2819 68.0818 11.2487 68.2699 11.8407 68.8785C12.3275 69.3653 12.7757 69.8301 13.4727 69.902C13.7992 69.1551 12.9859 68.0984 12.5378 67.5452C12.1892 67.7167 11.7024 67.7554 11.5143 67.3737" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.3704 67.3516C11.2819 68.0818 11.2487 68.2699 11.8407 68.8785C12.3275 69.3653 12.7757 69.8301 13.4727 69.902C13.7992 69.1551 12.9859 68.0984 12.5378 67.5452C12.1892 67.7167 11.7024 67.7554 11.5143 67.3737" fill="white"/> +<path d="M11.3704 67.3516C11.2819 68.0818 11.2487 68.2699 11.8407 68.8785C12.3275 69.3653 12.7757 69.8301 13.4727 69.902C13.7992 69.1551 12.9859 68.0984 12.5378 67.5452C12.1892 67.7167 11.7024 67.7554 11.5143 67.3737" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.5807 39.7344C11.0662 39.9115 10.6955 40.2379 10.3138 40.603C9.86569 41.0346 9.1686 41.4329 8.89199 42.0249C8.47706 42.9266 8.26683 44.5919 8.18384 45.5766C8.06213 46.7716 8.15064 47.9666 8.25023 49.1672C8.25023 49.1672 8.22257 49.9306 10.0427 49.0178C10.0427 49.0178 9.74951 51.1256 10.7951 51.4742C11.8684 52.0661 12.9804 51.8393 14.192 51.8393C15.5087 51.8227 16.7756 51.5627 17.3123 50.2792C17.6276 49.7315 17.3067 48.1049 17.3067 48.1049C18.1919 48.625 19.3759 47.6955 19.3759 47.6955C19.6027 45.9971 18.4907 44.1936 17.8655 42.6666C17.5336 41.87 17.1518 41.2448 16.582 40.5864C16.3552 40.3098 16.062 39.7566 15.7853 39.5629C15.3372 39.2144 15.6636 39.3361 15.1436 39.4578C14.0703 39.7178 12.3331 41.7095 11.7246 39.751C11.7356 39.751 11.7246 39.6847 11.5807 39.7344Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.7356 39.751C12.3442 41.7095 14.0759 39.7178 15.1547 39.4578C15.6747 39.3361 15.3428 39.2144 15.7964 39.5629C16.073 39.751 16.3663 40.3098 16.5931 40.5864C17.1629 41.2448 17.5447 41.87 17.8766 42.6666C18.5018 44.1936 19.6082 45.9971 19.3869 47.6955C19.3869 47.6955 18.2085 48.625 17.3178 48.1049C17.3178 48.1049 17.6387 49.7315 17.3234 50.2792C16.7867 51.5627 15.5198 51.8227 14.2031 51.8393C12.9915 51.8393 11.8795 52.0661 10.8062 51.4742C9.76059 51.1256 10.0538 49.0178 10.0538 49.0178C8.22812 49.9306 8.26131 49.1672 8.26131 49.1672C8.1562 47.9722 8.07321 46.7772 8.19492 45.5766C8.28344 44.5863 8.48814 42.9266 8.90307 42.0249C9.17969 41.4329 9.87677 41.0346 10.3249 40.603C10.7066 40.2379 11.0718 39.8949 11.5918 39.7344C11.5807 39.7344 11.6748 39.6791 11.7356 39.751Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M12.5322 37.0508C12.6705 37.0176 12.5654 36.7023 12.7424 36.6193C13.1408 36.3924 13.0523 36.741 13.4727 36.741C13.9928 36.741 14.5626 36.1878 15.066 35.9941C15.1546 36.1822 15.2763 36.6525 15.5695 36.6193C15.8793 36.5695 15.9678 35.9609 15.9346 35.7175C15.8461 35.0757 15.2929 34.9706 14.7562 34.8157C14.2528 34.6774 13.6663 34.5391 13.1463 34.5059C12.1947 34.434 11.8462 35.0259 11.481 35.8945C11.2044 36.5363 11.0993 37.1946 11.5308 37.8032C11.896 38.3233 12.6263 39.1365 13.1463 39.5183C13.7383 39.9498 14.9167 40.2098 15.2597 39.4685C15.658 38.6165 15.2597 38.1849 14.5128 38.3952C13.4727 38.705 13.3344 38.7437 12.5543 38.03C12.3441 37.8585 11.7577 37.77 11.7577 37.3551C11.7743 36.8848 12.2611 36.9236 12.416 37.3053" fill="white"/> +<path d="M12.5322 37.0508C12.6705 37.0176 12.5654 36.7023 12.7424 36.6193C13.1408 36.3924 13.0523 36.741 13.4727 36.741C13.9928 36.741 14.5626 36.1878 15.066 35.9941C15.1546 36.1822 15.2763 36.6525 15.5695 36.6193C15.8793 36.5695 15.9678 35.9609 15.9346 35.7175C15.8461 35.0757 15.2929 34.9706 14.7562 34.8157C14.2528 34.6774 13.6663 34.5391 13.1463 34.5059C12.1947 34.434 11.8462 35.0259 11.481 35.8945C11.2044 36.5363 11.0993 37.1946 11.5308 37.8032C11.896 38.3233 12.6263 39.1365 13.1463 39.5183C13.7383 39.9498 14.9167 40.2098 15.2597 39.4685C15.658 38.6165 15.2597 38.1849 14.5128 38.3952C13.4727 38.705 13.3344 38.7437 12.5543 38.03C12.3441 37.8585 11.7577 37.77 11.7577 37.3551C11.7743 36.8848 12.2611 36.9236 12.416 37.3053" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M12.5322 37.0508C12.6705 37.0176 12.5654 36.7023 12.7424 36.6193C13.1408 36.3924 13.0523 36.741 13.4727 36.741C13.9928 36.741 14.5626 36.1878 15.066 35.9941C15.1546 36.1822 15.2763 36.6525 15.5695 36.6193C15.8793 36.5695 15.9678 35.9609 15.9346 35.7175C15.8461 35.0757 15.2929 34.9706 14.7562 34.8157C14.2528 34.6774 13.6663 34.5391 13.1463 34.5059C12.1947 34.434 11.8462 35.0259 11.481 35.8945C11.2044 36.5363 11.0993 37.1946 11.5308 37.8032C11.896 38.3233 12.6263 39.1365 13.1463 39.5183C13.7383 39.9498 14.9167 40.2098 15.2597 39.4685C15.658 38.6165 15.2597 38.1849 14.5128 38.3952C13.4727 38.705 13.3344 38.7437 12.5543 38.03C12.3441 37.8585 11.7577 37.77 11.7577 37.3551C11.7743 36.8848 12.2611 36.9236 12.416 37.3053" fill="#DA3635"/> +<path d="M12.5322 37.0508C12.6705 37.0176 12.5654 36.7023 12.7424 36.6193C13.1408 36.3924 13.0523 36.741 13.4727 36.741C13.9928 36.741 14.5626 36.1878 15.066 35.9941C15.1546 36.1822 15.2763 36.6525 15.5695 36.6193C15.8793 36.5695 15.9678 35.9609 15.9346 35.7175C15.8461 35.0757 15.2929 34.9706 14.7562 34.8157C14.2528 34.6774 13.6663 34.5391 13.1463 34.5059C12.1947 34.434 11.8462 35.0259 11.481 35.8945C11.2044 36.5363 11.0993 37.1946 11.5308 37.8032C11.896 38.3233 12.6263 39.1365 13.1463 39.5183C13.7383 39.9498 14.9167 40.2098 15.2597 39.4685C15.658 38.6165 15.2597 38.1849 14.5128 38.3952C13.4727 38.705 13.3344 38.7437 12.5543 38.03C12.3441 37.8585 11.7577 37.77 11.7577 37.3551C11.7743 36.8848 12.2611 36.9236 12.416 37.3053" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M8 41.9693L8.36513 40.21L10.4398 39.0039L12.1493 39.5571L25.9415 63.2966L21.7922 65.7088L8 41.9693Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M21.7922 65.7092L22.1352 63.9056L24.2099 62.7051L25.9415 63.297L26.7548 69.4767L21.7922 65.7092Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M24.6138 67.8495L24.8572 67.3682C25.0453 66.992 25.4436 66.7596 25.8696 66.7817L26.4062 66.8094L26.7603 69.4815L24.6138 67.8495Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.4399 39.0039L24.2101 62.7047L25.9417 63.2966L12.1495 39.5571L10.4399 39.0039Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M22.1352 63.9052L8.36513 40.21L8 41.9693L21.7922 65.7088L22.1352 63.9052Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M8.90308 48.9343C8.90308 48.9343 10.7066 48.6964 11.5697 47.9053L10.9556 46.7988C10.9556 46.7988 9.35673 47.4185 9.19629 47.6453C9.03585 47.8776 8.90308 48.9343 8.90308 48.9343Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.9612 46.7989C10.9612 46.7989 10.9612 45.7975 11.3484 45.4822C11.7413 45.1724 11.3484 46.218 11.3484 46.218C11.3484 46.218 12.2724 45.4213 12.5379 45.5043C12.8035 45.5873 13.0912 46.4504 13.0082 46.8653C12.9252 47.2802 11.7191 47.7284 11.5697 47.9054L10.9612 46.7989Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M9.07471 49.4046C9.07471 49.4046 11.3485 48.1598 11.5698 47.9053L10.9557 46.7988C10.9557 46.7988 9.63901 47.2635 9.25728 47.5844" fill="white"/> +<path d="M9.07471 49.4046C9.07471 49.4046 11.3485 48.1598 11.5698 47.9053L10.9557 46.7988C10.9557 46.7988 9.63901 47.2635 9.25728 47.5844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M17.8214 46.1517C17.8214 46.1517 15.5918 45.6815 15.1548 45.1338L16.3553 47.4021C16.3553 47.4021 17.152 48.243 18.4963 48.1047" fill="white"/> +<path d="M17.8214 46.1517C17.8214 46.1517 15.5918 45.6815 15.1548 45.1338L16.3553 47.4021C16.3553 47.4021 17.152 48.243 18.4963 48.1047" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.5752 42.8545C15.5752 42.8545 16.3331 45.5377 17.1353 45.9858L15.5752 42.8545Z" fill="white"/> +<path d="M15.5752 42.8545C15.5752 42.8545 16.3331 45.5377 17.1353 45.9858" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +</g> +<defs> +<clipPath id="clip0_11300_191566"> +<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/> +</clipPath> +</defs> +</svg> diff --git a/src/assets/img/rdvsBeginning.svg b/src/assets/img/rdvsBeginning.svg new file mode 100644 index 0000000000000000000000000000000000000000..a08a04978edb4f207a5816b618a2bd18a61e9453 --- /dev/null +++ b/src/assets/img/rdvsBeginning.svg @@ -0,0 +1,213 @@ +<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_10191_199277)"> +<path d="M34.0001 113.833L12.9833 101.799C6.72166 98.2133 6.70077 92.3723 12.9367 88.7719L40.3447 72.9479C46.5625 69.3581 56.6436 69.3581 62.8614 72.9479L178.986 139.993" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M109.406 131.833L28.0001 178.833" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M34 113.833L115.406 160.833" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M180.084 142.273L190.103 147.951C196.42 151.53 196.467 157.397 190.208 161.011L164.414 175.903C158.196 179.493 148.115 179.493 141.898 175.903L115.292 160.543" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/> +<path d="M183.915 137.345C187.146 139.207 187.16 142.228 183.955 144.097C180.75 145.966 175.531 145.959 172.3 144.097C169.069 142.235 169.056 139.214 172.267 137.345C175.472 135.483 180.684 135.483 183.915 137.345Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M178 107.833L178 140.5" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/> +<rect x="0.433013" y="0.25" width="44.4182" height="78.6483" rx="4.5" transform="matrix(0.866025 -0.5 2.20305e-08 1 156.725 34.945)" fill="white" stroke="#706F6F"/> +<path d="M197.06 9.24126C197.357 9.06874 197.599 9.20677 197.603 9.55183L197.616 14.3696C197.616 14.7104 197.375 15.1288 197.077 15.3013L193.652 17.2767C193.355 17.4492 193.113 17.3112 193.109 16.9662L193.096 12.1483C193.096 11.8076 193.337 11.3892 193.635 11.2167L197.06 9.24126Z" fill="#DA3635"/> +<path d="M196.391 11.6265C196.421 11.6093 196.447 11.6049 196.473 11.6179C196.516 11.6438 196.516 11.7257 196.473 11.8033L195.723 13.1016V13.1879L196.477 13.6192C196.521 13.6451 196.521 13.727 196.477 13.8047C196.456 13.8435 196.43 13.8693 196.4 13.8866C196.374 13.9039 196.344 13.9082 196.318 13.8952L195.563 13.4639L195.49 13.507L194.739 14.8053C194.718 14.8441 194.692 14.87 194.662 14.8873C194.631 14.9045 194.606 14.9088 194.58 14.8959C194.537 14.8657 194.537 14.7837 194.58 14.7104L195.33 13.4122V13.3259L194.575 12.8946C194.532 12.8687 194.532 12.7868 194.575 12.7091C194.597 12.6703 194.627 12.6401 194.653 12.6272C194.683 12.6099 194.709 12.6056 194.735 12.6185L195.49 13.0498L195.563 13.0067L196.314 11.7085C196.331 11.674 196.361 11.6438 196.391 11.6265Z" fill="white"/> +<path d="M165.838 52.925C166.636 52.4635 167.287 52.8344 167.291 53.7531L167.304 58.0835C167.309 59.0022 166.657 60.1237 165.859 60.5852L161.986 62.8237C161.188 63.2852 160.537 62.91 160.537 61.9956L160.524 57.6652C160.52 56.7465 161.171 55.625 161.965 55.1679L165.838 52.925ZM166.998 58.2604L166.985 53.93C166.985 53.2054 166.468 52.9121 165.838 53.2787L161.965 55.5172C161.335 55.8795 160.826 56.7637 160.83 57.4883L160.843 61.8187C160.843 62.5434 161.361 62.8323 161.986 62.47L165.859 60.2315C166.489 59.8649 166.998 58.985 166.998 58.2604Z" fill="#706F6F"/> +<path d="M165.838 53.2743C166.467 52.912 166.981 53.201 166.985 53.9256L166.998 58.256C166.998 58.9806 166.489 59.8605 165.859 60.2271L161.986 62.4657C161.356 62.828 160.843 62.539 160.843 61.8144L160.83 57.484C160.83 56.7594 161.339 55.8752 161.964 55.5129L165.838 53.2743Z" fill="white"/> +<path d="M190.315 30.273C190.652 30.0789 190.928 30.2342 190.928 30.6224C190.928 31.0106 190.656 31.485 190.32 31.6791L165.631 45.9341C165.29 46.1282 165.019 45.9686 165.019 45.5848C165.019 45.1966 165.29 44.7264 165.627 44.528L190.315 30.273Z" fill="#DA3635"/> +<path d="M185.911 29.8414C186.252 29.6473 186.524 29.8026 186.524 30.1907C186.524 30.5789 186.252 31.0491 185.916 31.2475L170.035 40.4173C169.698 40.6114 169.426 40.4518 169.422 40.0679C169.422 39.6797 169.694 39.2096 170.03 39.0155L185.911 29.8414Z" fill="#DA3635"/> +<path d="M182.068 46.9983C182.236 46.9034 182.374 46.9767 182.374 47.1708C182.374 47.3649 182.236 47.6022 182.068 47.697L169.357 55.038C169.189 55.1329 169.051 55.0596 169.051 54.8612C169.051 54.6671 169.189 54.4342 169.357 54.335L182.068 46.9983Z" fill="#706F6F"/> +<path d="M187.192 46.1319C187.365 46.0327 187.498 46.1104 187.498 46.3088C187.498 46.5029 187.365 46.7401 187.192 46.835L169.461 57.0744C169.288 57.1736 169.155 57.0917 169.155 56.8976C169.155 56.7035 169.288 56.4706 169.461 56.3714L187.192 46.1319Z" fill="#706F6F"/> +<path d="M165.838 64.2679C166.636 63.8064 167.287 64.1773 167.291 65.0917L167.304 69.4221C167.309 70.3365 166.657 71.4579 165.859 71.9194L161.986 74.158C161.188 74.6195 160.537 74.2442 160.537 73.3298L160.524 68.9994C160.52 68.085 161.171 66.9636 161.965 66.5021L165.838 64.2679ZM166.998 69.5989L166.985 65.2685C166.985 64.5482 166.467 64.2549 165.838 64.6172L161.965 66.8558C161.335 67.2181 160.826 68.1023 160.83 68.8226L160.843 73.153C160.843 73.8733 161.361 74.1666 161.986 73.8043L165.859 71.5658C166.489 71.2078 166.998 70.3236 166.998 69.5989Z" fill="#706F6F"/> +<path d="M165.838 64.6171C166.467 64.2548 166.981 64.5438 166.985 65.2684L166.998 69.5988C166.998 70.3191 166.489 71.2033 165.859 71.5699L161.986 73.8084C161.356 74.1708 160.843 73.8775 160.843 73.1572L160.83 68.8267C160.83 68.1064 161.339 67.2222 161.964 66.8599L165.838 64.6171Z" fill="white"/> +<path d="M185.92 55.7552C186.093 55.656 186.226 55.7379 186.226 55.932C186.226 56.1261 186.093 56.359 185.92 56.4582L169.241 66.0852C169.069 66.1844 168.935 66.1025 168.935 65.9084C168.935 65.7143 169.069 65.4814 169.241 65.3822L185.92 55.7552Z" fill="#706F6F"/> +<path d="M179.463 61.2582C179.631 61.1633 179.769 61.2409 179.769 61.435C179.769 61.6291 179.631 61.8663 179.463 61.9612L169.275 67.8444C169.107 67.9392 168.969 67.8616 168.969 67.6675C168.969 67.4734 169.107 67.2362 169.275 67.1413L179.463 61.2582Z" fill="#706F6F"/> +<path d="M165.838 76.3798C166.467 76.0175 166.981 76.3065 166.985 77.0311L166.998 81.3615C166.998 82.0818 166.489 82.966 165.859 83.3326L161.986 85.5711C161.356 85.9334 160.843 85.6401 160.843 84.9198L160.83 80.5894C160.83 79.8648 161.339 78.9806 161.964 78.6183L165.838 76.3798Z" fill="white"/> +<path d="M165.838 76.0305C166.636 75.569 167.287 75.9399 167.291 76.8586L167.304 81.189C167.309 82.1077 166.657 83.2291 165.859 83.6907L161.986 85.9292C161.188 86.3907 160.537 86.0154 160.537 85.101L160.524 80.7706C160.52 79.8519 161.171 78.7305 161.965 78.2733L165.838 76.0305ZM166.998 81.3615L166.985 77.0311C166.985 76.3065 166.468 76.0132 165.838 76.3798L161.965 78.6184C161.335 78.9807 160.826 79.8649 160.83 80.5895L160.843 84.9199C160.843 85.6402 161.361 85.9335 161.986 85.5712L165.859 83.3327C166.489 82.9704 166.998 82.0861 166.998 81.3615Z" fill="#706F6F"/> +<path d="M179.511 71.4845C179.679 71.3896 179.817 71.463 179.817 71.6614C179.817 71.8555 179.679 72.0884 179.511 72.1876L169.56 77.9327C169.392 78.0276 169.254 77.9543 169.254 77.7602C169.254 77.5661 169.392 77.3289 169.56 77.234L179.511 71.4845Z" fill="#706F6F"/> +<path d="M187.434 67.0033C187.602 66.9084 187.74 66.986 187.74 67.1801C187.74 67.3742 187.602 67.6114 187.434 67.7063L181.003 71.42C180.83 71.5192 180.697 71.4415 180.697 71.2431C180.697 71.049 180.83 70.8118 181.003 70.7169L187.434 67.0033Z" fill="#706F6F"/> +<path d="M187.192 69.2374C187.365 69.1382 187.498 69.2158 187.498 69.4142C187.498 69.6083 187.365 69.8412 187.192 69.9405L169.461 80.1799C169.288 80.2791 169.155 80.2014 169.155 80.0074C169.155 79.8133 169.288 79.5804 169.461 79.4812L187.192 69.2374Z" fill="#706F6F"/> +<path d="M165.838 88.6378C166.636 88.1763 167.287 88.5429 167.291 89.4616L167.304 93.792C167.309 94.7107 166.657 95.8322 165.859 96.2937L161.986 98.5322C161.188 98.9937 160.537 98.6185 160.537 97.7041L160.524 93.3737C160.52 92.4549 161.171 91.3378 161.965 90.8763L165.838 88.6378ZM166.998 93.9689L166.985 89.6385C166.985 88.9182 166.468 88.6249 165.838 88.9872L161.965 91.2257C161.335 91.588 160.826 92.4722 160.83 93.1925L160.843 97.5229C160.843 98.2475 161.361 98.5408 161.986 98.1785L165.859 95.94C166.489 95.5777 166.998 94.6935 166.998 93.9689Z" fill="#706F6F"/> +<path d="M165.838 88.9872C166.467 88.6249 166.981 88.9139 166.985 89.6385L166.998 93.9689C166.998 94.6935 166.489 95.5777 165.859 95.94L161.986 98.1786C161.356 98.5409 160.843 98.2476 160.843 97.523L160.83 93.1925C160.83 92.4722 161.339 91.588 161.964 91.2257L165.838 88.9872Z" fill="white"/> +<path d="M182.068 82.7072C182.236 82.6123 182.374 82.6856 182.374 82.884C182.374 83.0781 182.236 83.3153 182.068 83.4102L169.357 90.7513C169.189 90.8461 169.051 90.7685 169.051 90.5744C169.051 90.3803 169.189 90.1431 169.357 90.0482L182.068 82.7072Z" fill="#706F6F"/> +<path d="M187.192 81.8401C187.365 81.7409 187.498 81.8229 187.498 82.017C187.498 82.2111 187.365 82.444 187.192 82.5432L169.461 92.7826C169.288 92.8818 169.155 92.7999 169.155 92.6058C169.155 92.4117 169.288 92.1788 169.461 92.0796L187.192 81.8401Z" fill="#706F6F"/> +<path d="M165.368 66.7228C165.475 66.6581 165.583 66.6451 165.67 66.6926C165.838 66.7875 165.838 67.098 165.67 67.3827L163.927 70.3976C163.819 70.5831 163.681 70.7297 163.53 70.816C163.379 70.9022 163.237 70.9195 163.129 70.8548L162.482 70.4838C162.314 70.3889 162.314 70.0784 162.482 69.7937C162.564 69.6514 162.672 69.5393 162.784 69.4789C162.892 69.4142 163 69.4012 163.086 69.4487L163.535 69.7032L165.074 67.0333C165.152 66.8953 165.26 66.7875 165.368 66.7228Z" fill="#DA3635"/> +<path d="M165.368 55.8146C165.475 55.7499 165.583 55.7369 165.67 55.7844C165.838 55.8793 165.838 56.1898 165.67 56.4745L163.927 59.4894C163.819 59.6748 163.681 59.8215 163.53 59.9077C163.379 59.994 163.237 60.0112 163.129 59.9466L162.482 59.5756C162.314 59.4807 162.314 59.1702 162.482 58.8855C162.564 58.7432 162.672 58.631 162.784 58.5706C162.892 58.506 163 58.493 163.086 58.5405L163.535 58.7949L165.074 56.1251C165.152 55.9871 165.26 55.8749 165.368 55.8146Z" fill="#DA3635"/> +<path d="M165.368 78.9161C165.475 78.8514 165.583 78.8385 165.67 78.8859C165.838 78.9808 165.838 79.2914 165.67 79.576L163.927 82.5909C163.819 82.7764 163.681 82.923 163.53 83.0093C163.379 83.0956 163.237 83.1128 163.129 83.0481L162.482 82.6772C162.314 82.5823 162.314 82.2718 162.482 81.9871C162.564 81.8448 162.672 81.7326 162.784 81.6722C162.892 81.6075 163 81.5946 163.086 81.642L163.535 81.8965L165.074 79.2267C165.152 79.0929 165.26 78.9808 165.368 78.9161Z" fill="#DA3635"/> +<path d="M165.368 91.0148C165.475 90.9501 165.583 90.9371 165.67 90.9846C165.838 91.0794 165.838 91.39 165.67 91.6747L163.927 94.6896C163.819 94.875 163.681 95.0217 163.53 95.1079C163.379 95.1942 163.237 95.2115 163.129 95.1468L162.482 94.7758C162.314 94.6809 162.314 94.3704 162.482 94.0857C162.564 93.9434 162.672 93.8313 162.784 93.7709C162.892 93.7062 163 93.6932 163.086 93.7407L163.535 93.9951L165.074 91.3253C165.152 91.1916 165.26 91.0795 165.368 91.0148Z" fill="#DA3635"/> +<path d="M94.6214 57.1831C96.4501 58.0939 96.4615 59.5728 94.6441 60.4836C92.8268 61.3944 89.8722 61.3944 88.0435 60.4836C86.2148 59.5728 86.2072 58.0939 88.0246 57.1831C89.8419 56.2723 92.7928 56.2723 94.6214 57.1831Z" fill="#EDEDED"/> +<path d="M183.136 103.698C185.545 99.5537 185.551 95.0626 183.151 93.6672C180.75 92.2719 176.851 94.5008 174.442 98.6456C172.033 102.79 172.026 107.282 174.427 108.677C176.828 110.072 180.727 107.843 183.136 103.698Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M156.014 122.542L119.826 101.614C119.236 101.272 118.282 101.272 117.698 101.614L54.3054 138.519C54.0106 138.687 53.8661 138.913 53.8661 139.139L53.8545 143.089C53.8545 143.314 53.999 143.54 54.2996 143.708L90.4878 164.637C91.0775 164.978 92.0313 164.978 92.6209 164.637L156.014 127.737C156.303 127.569 156.453 127.343 156.453 127.123L156.465 123.173C156.465 123.202 156.453 123.237 156.447 123.266C156.494 123.005 156.355 122.739 156.014 122.542Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M153.395 122.044L118.924 102.106C118.363 101.781 117.455 101.781 116.895 102.106L56.5193 137.257C56.2419 137.419 56.1031 137.633 56.1031 137.847L56.0916 141.606C56.0916 141.82 56.2303 142.034 56.5136 142.196L90.9848 162.135C91.5456 162.459 92.4589 162.459 93.0139 162.135L153.389 126.984C153.667 126.821 153.805 126.613 153.805 126.399L153.817 122.64C153.817 122.669 153.805 122.698 153.8 122.727C153.852 122.478 153.719 122.229 153.395 122.044Z" fill="#EDEDED"/> +<path d="M97.5812 52.529L100.951 52.5C100.818 52.5 100.68 52.5405 100.547 52.6158L97.1765 52.6448C97.3037 52.5637 97.4424 52.529 97.5812 52.529Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M58.0283 134.39L54.6581 134.419C54.2708 134.425 53.9008 134.136 53.7332 133.661L57.1034 133.632C57.2768 134.112 57.6468 134.396 58.0283 134.39Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M41.6569 86.6729L38.2866 86.7018L97.1763 52.6394L100.546 52.6162L41.6569 86.6729Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M57.1036 133.631L53.7334 133.66L37.7898 88.4098L41.16 88.3809L57.1036 133.631Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M41.1599 88.3812L37.7897 88.4101C37.5585 87.7558 37.7839 86.9914 38.2868 86.7018L41.6571 86.6729C41.1542 86.9624 40.9287 87.7268 41.1599 88.3812Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M100.547 52.6158C101.055 52.3204 101.645 52.6158 101.876 53.2643L117.82 98.5149C118.051 99.1635 117.826 99.9279 117.323 100.217L58.433 134.28C57.9243 134.575 57.3289 134.28 57.1034 133.631L41.1598 88.3808C40.9286 87.7264 41.154 86.962 41.657 86.6724L100.547 52.6158Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M100.061 56.6402C100.541 56.3622 101.096 56.6402 101.316 57.254L116.352 99.9219C116.566 100.536 116.357 101.254 115.883 101.532L60.3582 133.648C59.8784 133.926 59.3177 133.648 59.1038 133.04L44.062 90.3668C43.8481 89.7529 44.0562 89.0291 44.536 88.7569L100.061 56.6402Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M154.02 120.069L154.008 123.845C154.008 124.059 153.87 124.268 153.592 124.43L153.604 120.654C153.881 120.492 154.02 120.284 154.02 120.069Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M55.884 139.116L55.8956 135.34C55.8956 135.554 56.0343 135.768 56.3176 135.936L56.306 139.712C56.0228 139.544 55.884 139.33 55.884 139.116Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M153.604 120.654L153.592 124.43L92.9624 159.732L92.974 155.956L153.604 120.654Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M90.9333 155.956L90.9217 159.732L56.3059 139.712L56.3175 135.937L90.9333 155.956Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M92.9741 155.956L92.9625 159.732C92.4018 160.056 91.4884 160.056 90.9219 159.732L90.9334 155.956C91.4942 156.28 92.4076 156.28 92.9741 155.956Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M153.598 119.473C154.159 119.797 154.164 120.33 153.604 120.654L92.9739 155.956C92.4132 156.28 91.4998 156.28 90.9333 155.956L56.3175 135.936C55.7568 135.612 55.751 135.079 56.3117 134.755L116.941 99.459C117.502 99.1347 118.416 99.1347 118.976 99.459L153.598 119.473Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M127.63 132.653C127.752 132.722 127.752 132.838 127.63 132.908L114.635 140.471C114.514 140.54 114.317 140.54 114.196 140.471L106.779 136.179C106.657 136.11 106.657 135.994 106.779 135.925L119.774 128.362C119.896 128.292 120.092 128.292 120.214 128.362L127.63 132.653Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M74.4121 70.1439C74.8715 69.9128 75.1359 69.5101 75.0027 69.2442C74.8695 68.9784 74.3891 68.9502 73.9297 69.1813C73.4703 69.4123 73.2059 69.8151 73.3391 70.0809C73.4724 70.3467 73.9528 70.3749 74.4121 70.1439Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M78.5153 141.9C78.3303 141.9 78.1569 141.86 78.0355 141.79L75.6076 140.383C75.5093 140.325 75.4919 140.279 75.4919 140.267C75.4919 140.256 75.5093 140.209 75.6018 140.157L79.8218 137.702C79.9432 137.632 80.1166 137.592 80.3016 137.592C80.4866 137.592 80.66 137.632 80.7872 137.702L83.2152 139.109C83.3134 139.167 83.3308 139.213 83.3308 139.225C83.3308 139.236 83.3134 139.283 83.221 139.335L79.0009 141.79C78.868 141.86 78.6945 141.9 78.5153 141.9Z" fill="white"/> +<path d="M80.296 137.882C80.4521 137.882 80.5735 137.922 80.6371 137.957L82.828 139.225L78.8508 141.542C78.793 141.576 78.6716 141.611 78.5155 141.611C78.3594 141.611 78.238 141.576 78.1802 141.542L75.9892 140.274L79.9665 137.957C80.0185 137.917 80.1399 137.882 80.296 137.882ZM80.296 137.303C80.0705 137.303 79.8451 137.355 79.6716 137.453L75.4516 139.909C75.1105 140.111 75.1105 140.436 75.4574 140.638L77.8854 142.046C78.0588 142.144 78.2842 142.196 78.5097 142.196C78.7351 142.196 78.9606 142.144 79.134 142.046L83.3541 139.59C83.6951 139.387 83.6951 139.063 83.3483 138.866L80.9203 137.459C80.7469 137.355 80.5214 137.303 80.296 137.303Z" fill="#706F6F"/> +<path d="M73.7231 139.132C73.5381 139.132 73.3647 139.091 73.2433 139.022L70.8153 137.615C70.7171 137.557 70.6997 137.51 70.6997 137.499C70.6997 137.487 70.7171 137.441 70.8095 137.389L77.7177 133.37C77.8391 133.3 78.0125 133.26 78.1975 133.26C78.3825 133.26 78.5559 133.3 78.6831 133.37L81.111 134.777C81.1978 134.829 81.2267 134.875 81.2267 134.893C81.2267 134.904 81.1978 134.957 81.111 135.003L74.2029 139.022C74.0815 139.091 73.9081 139.132 73.7231 139.132Z" fill="white"/> +<path d="M78.1918 133.544C78.3479 133.544 78.4693 133.584 78.5329 133.619L80.7239 134.887L74.0585 138.767C74.0007 138.802 73.8793 138.837 73.7232 138.837C73.5903 138.837 73.4631 138.808 73.3879 138.762L71.197 137.493L77.8623 133.613C77.9201 133.584 78.0358 133.544 78.1918 133.544ZM78.1918 132.965C77.9664 132.965 77.7409 133.017 77.5675 133.115L70.6594 137.134C70.3183 137.337 70.3183 137.661 70.6652 137.864L73.0931 139.271C73.2665 139.37 73.492 139.422 73.7175 139.422C73.9429 139.422 74.1684 139.37 74.3418 139.271L81.2499 135.252C81.591 135.05 81.591 134.725 81.2441 134.528L78.8162 133.121C78.6485 133.017 78.4173 132.965 78.1918 132.965Z" fill="#706F6F"/> +<path d="M68.9364 136.364C68.7514 136.364 68.578 136.323 68.4508 136.254L66.0228 134.847C65.9246 134.789 65.9072 134.742 65.9072 134.731C65.9072 134.719 65.9246 134.673 66.0171 134.621L68.4277 133.214C68.5491 133.144 68.7225 133.104 68.9075 133.104C69.0925 133.104 69.2659 133.144 69.3931 133.214L71.821 134.621C71.9193 134.679 71.9367 134.725 71.9367 134.737C71.9367 134.748 71.9193 134.794 71.821 134.847L69.4104 136.254C69.2948 136.323 69.1214 136.364 68.9364 136.364Z" fill="white"/> +<path d="M68.9133 133.394C69.0694 133.394 69.1908 133.434 69.2544 133.469L71.4453 134.737L69.2717 136.005C69.2139 136.04 69.0925 136.075 68.9365 136.075C68.7804 136.075 68.659 136.034 68.5954 135.999L66.4044 134.731L68.578 133.469C68.6358 133.428 68.7572 133.394 68.9133 133.394ZM68.9133 132.814C68.6879 132.814 68.4566 132.867 68.289 132.965L65.8784 134.372C65.5373 134.575 65.5373 134.899 65.8842 135.102L68.3121 136.509C68.4855 136.608 68.7168 136.66 68.9422 136.66C69.1677 136.66 69.3931 136.608 69.5666 136.509L71.9772 135.102C72.324 134.899 72.324 134.575 71.9714 134.372L69.5434 132.965C69.37 132.861 69.1388 132.814 68.9133 132.814Z" fill="#706F6F"/> +<path d="M100.384 118.053C100.199 118.053 100.026 118.013 99.8988 117.943L97.4708 116.536C97.3726 116.478 97.3552 116.432 97.3552 116.42C97.3552 116.409 97.3726 116.362 97.4708 116.31L99.8815 114.903C100.003 114.834 100.176 114.793 100.361 114.793C100.546 114.793 100.72 114.834 100.847 114.903L103.275 116.31C103.362 116.362 103.396 116.409 103.396 116.426C103.396 116.438 103.367 116.484 103.281 116.536L100.87 117.943C100.743 118.013 100.564 118.053 100.384 118.053Z" fill="white"/> +<path d="M100.355 115.088C100.488 115.088 100.616 115.117 100.697 115.163L102.887 116.431L100.714 117.694C100.656 117.729 100.535 117.769 100.379 117.769C100.222 117.769 100.101 117.729 100.038 117.694L97.8466 116.426L100.02 115.163C100.084 115.123 100.205 115.088 100.355 115.088ZM100.355 114.509C100.13 114.509 99.9045 114.561 99.7311 114.659L97.3205 116.067C96.9736 116.269 96.9794 116.594 97.3263 116.796L99.7542 118.203C99.9277 118.302 100.153 118.354 100.384 118.354C100.616 118.354 100.835 118.302 101.009 118.203L103.419 116.796C103.766 116.594 103.76 116.269 103.414 116.067L100.986 114.659C100.812 114.555 100.587 114.509 100.355 114.509Z" fill="#706F6F"/> +<path d="M109.957 123.594C109.772 123.594 109.599 123.554 109.478 123.484L107.05 122.077C106.951 122.019 106.934 121.973 106.934 121.961C106.934 121.95 106.951 121.903 107.05 121.851L109.46 120.444C109.582 120.375 109.755 120.334 109.94 120.334C110.125 120.334 110.299 120.375 110.426 120.444L112.854 121.851C112.94 121.903 112.969 121.95 112.969 121.967C112.969 121.979 112.94 122.031 112.854 122.077L110.443 123.484C110.316 123.554 110.142 123.594 109.957 123.594Z" fill="white"/> +<path d="M109.935 120.624C110.068 120.624 110.195 120.653 110.276 120.699L112.467 121.968L110.293 123.23C110.235 123.265 110.114 123.305 109.958 123.305C109.802 123.305 109.68 123.27 109.622 123.236L107.431 121.968L109.605 120.699C109.663 120.665 109.778 120.624 109.935 120.624ZM109.935 120.045C109.709 120.045 109.484 120.097 109.31 120.195L106.9 121.603C106.553 121.805 106.559 122.13 106.905 122.332L109.333 123.74C109.507 123.838 109.732 123.89 109.958 123.89C110.183 123.89 110.414 123.838 110.588 123.74L112.998 122.332C113.345 122.13 113.339 121.805 112.993 121.608L110.565 120.201C110.391 120.097 110.16 120.045 109.935 120.045Z" fill="#706F6F"/> +<path d="M123.138 110.362C122.953 110.362 122.78 110.322 122.658 110.252L115.438 106.077C115.34 106.019 115.322 105.973 115.322 105.961C115.322 105.95 115.34 105.903 115.432 105.851L117.849 104.444C117.97 104.375 118.143 104.334 118.328 104.334C118.513 104.334 118.687 104.375 118.814 104.444L126.028 108.619C126.115 108.671 126.144 108.718 126.144 108.735C126.144 108.747 126.115 108.799 126.028 108.845L123.612 110.252C123.496 110.322 123.323 110.362 123.138 110.362Z" fill="white"/> +<path d="M118.328 104.624C118.484 104.624 118.606 104.665 118.669 104.699L125.647 108.736L123.473 109.998C123.415 110.033 123.294 110.068 123.138 110.068C123.005 110.068 122.878 110.039 122.803 109.992L115.819 105.95L117.993 104.688C118.051 104.665 118.172 104.624 118.328 104.624ZM118.328 104.045C118.103 104.045 117.877 104.097 117.704 104.195L115.288 105.603C114.946 105.805 114.946 106.13 115.293 106.332L122.508 110.508C122.681 110.606 122.907 110.658 123.132 110.658C123.358 110.658 123.583 110.606 123.757 110.508L126.173 109.1C126.514 108.898 126.514 108.573 126.167 108.377L118.953 104.201C118.779 104.097 118.554 104.045 118.328 104.045Z" fill="#706F6F"/> +<path d="M114.449 120.977C114.264 120.977 114.091 120.937 113.97 120.867L111.542 119.46C111.443 119.402 111.426 119.356 111.426 119.344C111.426 119.332 111.443 119.286 111.536 119.234L113.952 117.827C114.074 117.757 114.247 117.717 114.432 117.717C114.617 117.717 114.79 117.757 114.918 117.827L117.346 119.234C117.432 119.286 117.461 119.332 117.461 119.35C117.461 119.361 117.444 119.408 117.351 119.46L114.935 120.867C114.808 120.937 114.634 120.977 114.449 120.977Z" fill="white"/> +<path d="M114.426 118.007C114.582 118.007 114.704 118.047 114.767 118.082L116.958 119.35L114.785 120.619C114.727 120.653 114.605 120.688 114.449 120.688C114.293 120.688 114.172 120.653 114.114 120.619L111.923 119.35L114.097 118.088C114.154 118.047 114.27 118.007 114.426 118.007ZM114.426 117.428C114.201 117.428 113.975 117.48 113.802 117.578L111.385 118.986C111.044 119.188 111.044 119.512 111.391 119.715L113.819 121.122C113.993 121.221 114.218 121.273 114.444 121.273C114.669 121.273 114.894 121.221 115.068 121.122L117.484 119.715C117.825 119.512 117.825 119.188 117.478 118.991L115.051 117.584C114.883 117.48 114.657 117.428 114.426 117.428Z" fill="#706F6F"/> +<path d="M119.242 123.747C119.057 123.747 118.883 123.706 118.762 123.637L116.328 122.229C116.23 122.172 116.212 122.125 116.212 122.114C116.212 122.102 116.23 122.056 116.322 122.004L118.739 120.596C118.86 120.527 119.033 120.486 119.218 120.486C119.403 120.486 119.577 120.527 119.698 120.596L122.132 122.004C122.23 122.061 122.248 122.108 122.248 122.119C122.248 122.131 122.23 122.177 122.132 122.229L119.716 123.637C119.594 123.706 119.421 123.747 119.242 123.747Z" fill="white"/> +<path d="M119.219 120.781C119.375 120.781 119.496 120.816 119.554 120.851L121.745 122.119L119.571 123.387C119.513 123.422 119.392 123.457 119.236 123.457C119.08 123.457 118.959 123.422 118.901 123.387L116.71 122.119L118.883 120.851C118.941 120.816 119.063 120.781 119.219 120.781ZM119.219 120.202C118.993 120.202 118.768 120.254 118.594 120.353L116.178 121.76C115.837 121.963 115.837 122.287 116.184 122.484L118.617 123.891C118.791 123.989 119.016 124.042 119.242 124.042C119.467 124.042 119.693 123.989 119.866 123.891L122.283 122.484C122.624 122.281 122.624 121.957 122.277 121.76L119.843 120.353C119.67 120.248 119.444 120.202 119.219 120.202Z" fill="#706F6F"/> +<path d="M123.433 115.748C123.248 115.748 123.074 115.707 122.953 115.638L120.525 114.231C120.438 114.179 120.404 114.132 120.404 114.115C120.404 114.103 120.432 114.057 120.519 114.005L127.427 109.986C127.549 109.917 127.722 109.876 127.907 109.876C128.092 109.876 128.266 109.917 128.393 109.986L130.821 111.393C130.907 111.445 130.936 111.492 130.936 111.509C130.936 111.521 130.919 111.567 130.826 111.619L123.918 115.638C123.791 115.707 123.618 115.748 123.433 115.748Z" fill="white"/> +<path d="M127.907 110.166C128.063 110.166 128.185 110.207 128.248 110.241L130.439 111.51L123.774 115.389C123.716 115.424 123.595 115.459 123.439 115.459C123.282 115.459 123.161 115.418 123.103 115.384L120.912 114.115L127.578 110.235C127.63 110.201 127.751 110.166 127.907 110.166ZM127.907 109.587C127.682 109.587 127.456 109.639 127.283 109.737L120.375 113.756C120.028 113.959 120.034 114.283 120.38 114.486L122.808 115.893C122.982 115.992 123.207 116.044 123.433 116.044C123.658 116.044 123.884 115.992 124.057 115.893L130.965 111.874C131.306 111.672 131.306 111.347 130.959 111.15L128.531 109.743C128.358 109.633 128.133 109.587 127.907 109.587Z" fill="#706F6F"/> +<path d="M132.717 115.905C132.532 115.905 132.358 115.864 132.237 115.795L129.803 114.388C129.716 114.335 129.688 114.289 129.688 114.272C129.688 114.26 129.705 114.214 129.797 114.162L132.214 112.755C132.335 112.685 132.509 112.645 132.694 112.645C132.879 112.645 133.052 112.685 133.173 112.755L135.607 114.162C135.694 114.214 135.723 114.26 135.723 114.278C135.723 114.289 135.705 114.335 135.613 114.388L133.196 115.795C133.075 115.864 132.902 115.905 132.717 115.905Z" fill="white"/> +<path d="M132.694 112.935C132.85 112.935 132.971 112.969 133.029 113.004L135.22 114.272L133.046 115.541C132.989 115.575 132.867 115.61 132.711 115.61C132.555 115.61 132.434 115.575 132.376 115.541L130.185 114.272L132.358 113.004C132.422 112.969 132.538 112.935 132.694 112.935ZM132.694 112.355C132.468 112.355 132.243 112.408 132.069 112.506L129.653 113.913C129.312 114.116 129.312 114.44 129.659 114.637L132.093 116.044C132.266 116.143 132.491 116.195 132.717 116.195C132.942 116.195 133.168 116.143 133.341 116.044L135.758 114.637C136.099 114.434 136.099 114.11 135.752 113.913L133.318 112.506C133.145 112.408 132.919 112.355 132.694 112.355Z" fill="#706F6F"/> +<path d="M118.941 118.366C118.756 118.366 118.583 118.325 118.461 118.256L116.033 116.849C115.935 116.791 115.918 116.744 115.918 116.733C115.918 116.721 115.935 116.675 116.028 116.623L118.444 115.215C118.565 115.146 118.739 115.105 118.924 115.105C119.109 115.105 119.282 115.146 119.409 115.215L121.837 116.623C121.924 116.675 121.953 116.721 121.953 116.739C121.953 116.75 121.936 116.796 121.843 116.849L119.427 118.256C119.3 118.325 119.126 118.366 118.941 118.366Z" fill="white"/> +<path d="M118.918 115.396C119.074 115.396 119.195 115.436 119.259 115.471L121.45 116.739L119.276 118.007C119.218 118.042 119.097 118.077 118.941 118.077C118.785 118.077 118.664 118.042 118.606 118.007L116.415 116.739L118.588 115.477C118.646 115.43 118.762 115.396 118.918 115.396ZM118.918 114.816C118.692 114.816 118.467 114.869 118.294 114.967L115.877 116.374C115.536 116.577 115.536 116.901 115.883 117.104L118.311 118.511C118.484 118.609 118.71 118.662 118.935 118.662C119.161 118.662 119.386 118.609 119.56 118.511L121.976 117.104C122.317 116.901 122.317 116.577 121.97 116.38L119.542 114.973C119.375 114.869 119.149 114.816 118.918 114.816Z" fill="#706F6F"/> +<path d="M128.225 118.516C128.04 118.516 127.867 118.476 127.745 118.406L125.311 116.999C125.225 116.947 125.196 116.9 125.196 116.883C125.196 116.872 125.225 116.819 125.311 116.773L127.722 115.366C127.843 115.296 128.023 115.256 128.202 115.256C128.387 115.256 128.56 115.296 128.682 115.366L131.115 116.773C131.214 116.831 131.231 116.877 131.231 116.889C131.231 116.9 131.214 116.947 131.115 116.999L128.705 118.406C128.583 118.476 128.41 118.516 128.225 118.516Z" fill="white"/> +<path d="M128.202 115.546C128.358 115.546 128.479 115.581 128.537 115.615L130.728 116.884L128.554 118.152C128.497 118.187 128.375 118.221 128.219 118.221C128.063 118.221 127.942 118.187 127.884 118.146L125.693 116.878L127.867 115.615C127.924 115.586 128.046 115.546 128.202 115.546ZM128.202 114.967C127.976 114.967 127.745 115.019 127.572 115.117L125.161 116.525C124.814 116.727 124.82 117.052 125.167 117.248L127.601 118.656C127.774 118.754 127.999 118.806 128.225 118.806C128.45 118.806 128.676 118.754 128.849 118.656L131.26 117.248C131.607 117.046 131.601 116.721 131.26 116.519L128.826 115.112C128.653 115.019 128.427 114.967 128.202 114.967Z" fill="#706F6F"/> +<path d="M123.733 121.133C123.548 121.133 123.375 121.093 123.253 121.023L120.82 119.616C120.721 119.558 120.704 119.512 120.704 119.5C120.704 119.489 120.721 119.442 120.814 119.39L123.23 117.983C123.352 117.914 123.525 117.873 123.71 117.873C123.895 117.873 124.069 117.914 124.19 117.983L126.624 119.39C126.722 119.448 126.739 119.495 126.739 119.506C126.739 119.518 126.722 119.564 126.629 119.616L124.213 121.023C124.086 121.093 123.912 121.133 123.733 121.133Z" fill="white"/> +<path d="M123.71 118.163C123.866 118.163 123.988 118.198 124.046 118.233L126.237 119.501L124.063 120.763C124.005 120.798 123.884 120.833 123.728 120.833C123.572 120.833 123.45 120.798 123.392 120.763L121.201 119.495L123.375 118.227C123.433 118.204 123.554 118.163 123.71 118.163ZM123.71 117.584C123.485 117.584 123.259 117.636 123.086 117.735L120.67 119.142C120.329 119.344 120.329 119.669 120.675 119.866L123.109 121.273C123.283 121.371 123.508 121.423 123.733 121.423C123.959 121.423 124.184 121.371 124.358 121.273L126.774 119.866C127.115 119.663 127.115 119.339 126.768 119.142L124.335 117.735C124.161 117.636 123.936 117.584 123.71 117.584Z" fill="#706F6F"/> +<path d="M118.646 112.98C118.461 112.98 118.288 112.94 118.167 112.87L115.739 111.463C115.652 111.411 115.617 111.364 115.617 111.347C115.617 111.335 115.646 111.289 115.733 111.237L118.143 109.83C118.265 109.76 118.438 109.72 118.623 109.72C118.808 109.72 118.982 109.76 119.109 109.83L121.537 111.237C121.623 111.289 121.652 111.335 121.652 111.353C121.652 111.37 121.623 111.416 121.537 111.463L119.126 112.87C119.005 112.94 118.831 112.98 118.646 112.98Z" fill="white"/> +<path d="M118.623 110.01C118.779 110.01 118.901 110.05 118.964 110.085L121.155 111.353L118.981 112.621C118.924 112.656 118.802 112.697 118.646 112.697C118.513 112.697 118.386 112.668 118.311 112.621L116.12 111.353L118.294 110.091C118.351 110.045 118.467 110.01 118.623 110.01ZM118.623 109.431C118.398 109.431 118.172 109.483 117.999 109.581L115.588 110.988C115.241 111.191 115.247 111.515 115.594 111.718L118.022 113.125C118.195 113.224 118.421 113.276 118.646 113.276C118.872 113.276 119.097 113.224 119.27 113.125L121.681 111.718C122.028 111.515 122.028 111.191 121.681 110.988L119.253 109.581C119.08 109.483 118.854 109.431 118.623 109.431Z" fill="#706F6F"/> +<path d="M114.154 115.592C113.969 115.592 113.796 115.552 113.674 115.482L111.246 114.075C111.148 114.017 111.131 113.971 111.131 113.959C111.131 113.948 111.148 113.901 111.24 113.849L113.657 112.442C113.778 112.373 113.952 112.332 114.137 112.332C114.322 112.332 114.495 112.373 114.622 112.442L117.05 113.849C117.137 113.901 117.166 113.948 117.166 113.965C117.166 113.977 117.137 114.029 117.05 114.075L114.634 115.482C114.512 115.552 114.333 115.592 114.154 115.592Z" fill="white"/> +<path d="M114.131 112.627C114.287 112.627 114.409 112.667 114.472 112.702L116.663 113.97L114.489 115.239C114.432 115.273 114.31 115.308 114.154 115.308C114.021 115.308 113.894 115.279 113.819 115.233L111.628 113.965L113.802 112.702C113.859 112.662 113.975 112.627 114.131 112.627ZM114.131 112.048C113.906 112.048 113.68 112.1 113.507 112.198L111.09 113.606C110.749 113.808 110.749 114.133 111.096 114.335L113.524 115.742C113.697 115.841 113.923 115.893 114.148 115.893C114.374 115.893 114.599 115.841 114.773 115.742L117.189 114.335C117.53 114.133 117.536 113.808 117.183 113.611L114.755 112.204C114.588 112.094 114.356 112.048 114.131 112.048Z" fill="#706F6F"/> +<path d="M104.876 115.441C104.691 115.441 104.517 115.4 104.39 115.331L101.962 113.924C101.864 113.866 101.847 113.82 101.847 113.808C101.847 113.796 101.864 113.75 101.957 113.698L104.373 112.291C104.494 112.221 104.668 112.181 104.853 112.181C105.038 112.181 105.211 112.221 105.338 112.291L107.766 113.698C107.865 113.756 107.882 113.802 107.882 113.814C107.882 113.825 107.865 113.872 107.772 113.924L105.356 115.331C105.234 115.4 105.061 115.441 104.876 115.441Z" fill="white"/> +<path d="M104.853 112.471C105.009 112.471 105.13 112.511 105.194 112.546L107.385 113.814L105.211 115.082C105.154 115.117 105.032 115.152 104.876 115.152C104.72 115.152 104.599 115.111 104.535 115.077L102.344 113.808L104.518 112.546C104.575 112.505 104.697 112.471 104.853 112.471ZM104.853 111.892C104.627 111.892 104.402 111.944 104.229 112.042L101.812 113.449C101.471 113.652 101.471 113.976 101.818 114.179L104.246 115.586C104.419 115.685 104.651 115.737 104.876 115.737C105.102 115.737 105.327 115.685 105.5 115.586L107.917 114.179C108.258 113.976 108.258 113.652 107.911 113.449L105.483 112.042C105.304 111.944 105.078 111.892 104.853 111.892Z" fill="#706F6F"/> +<path d="M109.662 118.21C109.477 118.21 109.304 118.169 109.182 118.1L106.755 116.692C106.656 116.634 106.639 116.588 106.639 116.576C106.639 116.565 106.656 116.519 106.749 116.466L109.165 115.059C109.287 114.99 109.46 114.949 109.645 114.949C109.83 114.949 110.003 114.99 110.131 115.059L112.559 116.466C112.645 116.519 112.674 116.565 112.674 116.582C112.674 116.594 112.645 116.646 112.559 116.692L110.142 118.1C110.021 118.169 109.842 118.21 109.662 118.21Z" fill="white"/> +<path d="M109.639 115.239C109.795 115.239 109.917 115.28 109.98 115.315L112.171 116.583L109.998 117.845C109.94 117.88 109.819 117.915 109.662 117.915C109.529 117.915 109.402 117.886 109.327 117.839L107.136 116.571L109.31 115.303C109.368 115.28 109.483 115.239 109.639 115.239ZM109.639 114.66C109.414 114.66 109.188 114.712 109.015 114.811L106.599 116.218C106.258 116.421 106.258 116.745 106.604 116.948L109.032 118.355C109.206 118.453 109.431 118.505 109.657 118.505C109.882 118.505 110.108 118.453 110.281 118.355L112.697 116.948C113.038 116.745 113.038 116.421 112.692 116.224L110.264 114.817C110.096 114.712 109.865 114.66 109.639 114.66Z" fill="#706F6F"/> +<path d="M105.165 120.827C104.98 120.827 104.807 120.786 104.685 120.717L102.257 119.309C102.159 119.252 102.142 119.205 102.142 119.194C102.142 119.182 102.159 119.136 102.257 119.084L104.668 117.676C104.789 117.607 104.963 117.566 105.148 117.566C105.333 117.566 105.506 117.607 105.633 117.676L108.061 119.084C108.16 119.142 108.177 119.188 108.177 119.199C108.177 119.211 108.154 119.257 108.061 119.309L105.651 120.717C105.529 120.786 105.35 120.827 105.165 120.827Z" fill="white"/> +<path d="M105.148 117.856C105.281 117.856 105.408 117.885 105.489 117.932L107.68 119.2L105.506 120.462C105.448 120.497 105.327 120.538 105.171 120.538C105.015 120.538 104.893 120.503 104.836 120.462L102.645 119.194L104.818 117.932C104.87 117.891 104.992 117.856 105.148 117.856ZM105.148 117.277C104.922 117.277 104.697 117.329 104.523 117.428L102.113 118.835C101.766 119.038 101.772 119.362 102.119 119.565L104.546 120.972C104.72 121.07 104.945 121.123 105.171 121.123C105.396 121.123 105.627 121.07 105.801 120.972L108.212 119.565C108.558 119.362 108.553 119.038 108.206 118.841L105.778 117.434C105.599 117.329 105.373 117.277 105.148 117.277Z" fill="#706F6F"/> +<path d="M92.2855 139.439C92.1005 139.439 91.9271 139.398 91.8057 139.329L89.372 137.922C89.2853 137.87 89.2563 137.823 89.2563 137.806C89.2563 137.794 89.2853 137.742 89.372 137.696L91.7826 136.289C91.904 136.219 92.0832 136.179 92.2624 136.179C92.4474 136.179 92.6208 136.219 92.7422 136.289L95.176 137.696C95.2742 137.754 95.2916 137.8 95.2916 137.812C95.2916 137.823 95.2742 137.87 95.176 137.922L92.7653 139.329C92.6439 139.398 92.4705 139.439 92.2855 139.439Z" fill="white"/> +<path d="M92.2683 136.469C92.4244 136.469 92.5458 136.503 92.6036 136.538L94.7945 137.806L92.6209 139.075C92.5631 139.109 92.4417 139.144 92.2856 139.144C92.1296 139.144 92.0082 139.104 91.9503 139.069L89.7594 137.801L91.933 136.538C91.9908 136.509 92.1064 136.469 92.2683 136.469ZM92.2683 135.89C92.0428 135.89 91.8116 135.942 91.644 136.04L89.2333 137.447C88.8865 137.65 88.8923 137.974 89.2391 138.171L91.6729 139.578C91.8463 139.677 92.0717 139.729 92.2972 139.729C92.5227 139.729 92.7481 139.677 92.9215 139.578L95.3321 138.171C95.679 137.969 95.679 137.644 95.3321 137.442L92.8984 136.034C92.7192 135.942 92.4937 135.89 92.2683 135.89Z" fill="#706F6F"/> +<path d="M96.777 136.822C96.592 136.822 96.4186 136.781 96.2972 136.712L93.8634 135.305C93.7767 135.252 93.7478 135.206 93.7478 135.189C93.7478 135.177 93.7651 135.131 93.8576 135.079L96.274 133.672C96.3954 133.602 96.5689 133.562 96.7538 133.562C96.9388 133.562 97.1123 133.602 97.2337 133.672L99.6674 135.079C99.7541 135.131 99.783 135.177 99.783 135.195C99.783 135.206 99.7657 135.252 99.6732 135.305L97.2568 136.712C97.1354 136.781 96.962 136.822 96.777 136.822Z" fill="white"/> +<path d="M96.7538 133.856C96.9099 133.856 97.0313 133.891 97.0891 133.926L99.2801 135.194L97.1065 136.462C97.0487 136.497 96.9273 136.532 96.7712 136.532C96.6151 136.532 96.4937 136.497 96.4359 136.462L94.2449 135.194L96.4185 133.926C96.4821 133.891 96.5977 133.856 96.7538 133.856ZM96.7538 133.277C96.5284 133.277 96.3029 133.329 96.1295 133.428L93.7131 134.835C93.372 135.038 93.372 135.362 93.7189 135.559L96.1526 136.966C96.326 137.065 96.5515 137.117 96.7769 137.117C97.0024 137.117 97.2279 137.065 97.4013 136.966L99.8177 135.559C100.159 135.356 100.159 135.032 99.8119 134.835L97.3782 133.428C97.2105 133.324 96.9793 133.277 96.7538 133.277Z" fill="#706F6F"/> +<path d="M95.8925 120.67C95.7075 120.67 95.534 120.63 95.4069 120.56L92.9789 119.153C92.8806 119.095 92.8633 119.049 92.8633 119.037C92.8633 119.026 92.8806 118.98 92.9731 118.927L95.3895 117.52C95.5109 117.451 95.6843 117.41 95.8693 117.41C96.0543 117.41 96.2277 117.451 96.3549 117.52L98.7829 118.927C98.8812 118.985 98.8985 119.032 98.8985 119.043C98.8985 119.055 98.8812 119.101 98.7887 119.153L96.3723 120.56C96.2509 120.63 96.0717 120.67 95.8925 120.67Z" fill="white"/> +<path d="M95.8637 117.7C96.0198 117.7 96.1412 117.741 96.2048 117.775L98.3957 119.044L96.2221 120.306C96.1643 120.341 96.0429 120.376 95.8868 120.376C95.7307 120.376 95.6093 120.335 95.5457 120.3L93.3548 119.032L95.5284 117.764C95.592 117.741 95.7134 117.7 95.8637 117.7ZM95.8637 117.121C95.6382 117.121 95.4128 117.173 95.2394 117.272L92.823 118.679C92.4819 118.882 92.4819 119.206 92.8287 119.409L95.2567 120.816C95.4301 120.914 95.6614 120.966 95.8868 120.966C96.1123 120.966 96.3377 120.914 96.5111 120.816L98.9275 119.409C99.2686 119.206 99.2686 118.882 98.9218 118.679L96.4938 117.272C96.3204 117.173 96.0949 117.121 95.8637 117.121Z" fill="#706F6F"/> +<path d="M91.4008 123.288C91.2158 123.288 91.0423 123.247 90.9152 123.178L88.4872 121.77C88.3889 121.713 88.3716 121.666 88.3716 121.655C88.3716 121.643 88.3889 121.597 88.4814 121.545L90.892 120.137C91.0134 120.068 91.1869 120.027 91.3718 120.027C91.5568 120.027 91.7303 120.068 91.8574 120.137L94.2854 121.545C94.3837 121.602 94.401 121.649 94.401 121.66C94.401 121.672 94.3837 121.718 94.2854 121.77L91.8748 123.178C91.7592 123.247 91.58 123.288 91.4008 123.288Z" fill="white"/> +<path d="M91.3774 120.317C91.5335 120.317 91.6549 120.358 91.7185 120.393L93.9095 121.661L91.7359 122.929C91.678 122.964 91.5566 122.999 91.4006 122.999C91.2445 122.999 91.1231 122.958 91.0595 122.923L88.8685 121.655L91.0422 120.393C91.1 120.352 91.2214 120.317 91.3774 120.317ZM91.3774 119.738C91.152 119.738 90.9208 119.79 90.7531 119.889L88.3425 121.296C88.0014 121.499 88.0014 121.823 88.3483 122.026L90.7762 123.433C90.9497 123.531 91.1809 123.583 91.4063 123.583C91.6318 123.583 91.8573 123.531 92.0307 123.433L94.4413 122.026C94.7881 121.823 94.7824 121.499 94.4355 121.296L92.0076 119.889C91.8283 119.785 91.6029 119.738 91.3774 119.738Z" fill="#706F6F"/> +<path d="M100.679 123.439C100.494 123.439 100.321 123.398 100.2 123.329L97.7716 121.922C97.6734 121.864 97.656 121.818 97.656 121.806C97.656 121.794 97.6733 121.748 97.7658 121.696L100.182 120.289C100.304 120.219 100.477 120.179 100.662 120.179C100.847 120.179 101.02 120.219 101.148 120.289L103.576 121.696C103.662 121.748 103.691 121.794 103.691 121.812C103.691 121.823 103.662 121.875 103.576 121.922L101.159 123.329C101.032 123.398 100.859 123.439 100.679 123.439Z" fill="white"/> +<path d="M100.656 120.469C100.812 120.469 100.933 120.509 100.997 120.544L103.188 121.812L101.014 123.08C100.957 123.115 100.835 123.15 100.679 123.15C100.523 123.15 100.402 123.115 100.344 123.075L98.1528 121.806L100.326 120.544C100.378 120.509 100.5 120.469 100.656 120.469ZM100.656 119.89C100.43 119.89 100.205 119.942 100.032 120.04L97.6152 121.447C97.2741 121.65 97.2741 121.974 97.621 122.177L100.049 123.584C100.222 123.683 100.448 123.735 100.673 123.735C100.899 123.735 101.124 123.683 101.298 123.584L103.714 122.177C104.055 121.974 104.055 121.65 103.708 121.453L101.28 120.046C101.107 119.942 100.881 119.89 100.656 119.89Z" fill="#706F6F"/> +<path d="M86.9034 125.9C86.7184 125.9 86.545 125.859 86.4178 125.79L83.9899 124.383C83.8916 124.325 83.8743 124.278 83.8743 124.267C83.8743 124.255 83.8916 124.209 83.9899 124.157L86.4005 122.75C86.5219 122.68 86.6953 122.64 86.8803 122.64C87.0653 122.64 87.2387 122.68 87.3659 122.75L89.7939 124.157C89.8806 124.209 89.9153 124.255 89.9153 124.273C89.9153 124.284 89.8864 124.331 89.7996 124.383L87.389 125.79C87.2676 125.859 87.0884 125.9 86.9034 125.9Z" fill="white"/> +<path d="M86.8801 122.93C87.0131 122.93 87.1402 122.959 87.2212 123.005L89.4121 124.273L87.2385 125.536C87.1807 125.57 87.0593 125.611 86.9032 125.611C86.7471 125.611 86.6258 125.57 86.5622 125.536L84.3712 124.267L86.5448 123.005C86.6084 122.97 86.724 122.93 86.8801 122.93ZM86.8801 122.351C86.6547 122.351 86.4292 122.403 86.2558 122.501L83.8452 123.908C83.4983 124.111 83.5041 124.435 83.8509 124.638L86.2789 126.045C86.4523 126.144 86.6778 126.196 86.909 126.196C87.1345 126.196 87.3657 126.144 87.5333 126.045L89.944 124.638C90.2908 124.435 90.285 124.111 89.9382 123.908L87.5102 122.501C87.3368 122.403 87.1056 122.351 86.8801 122.351Z" fill="#706F6F"/> +<path d="M96.187 126.056C96.002 126.056 95.8286 126.016 95.7072 125.946L93.2792 124.539C93.1809 124.481 93.1636 124.435 93.1636 124.423C93.1636 124.412 93.1809 124.365 93.2734 124.313L95.684 122.906C95.8054 122.836 95.9789 122.796 96.1638 122.796C96.3488 122.796 96.5223 122.836 96.6494 122.906L99.0774 124.313C99.1641 124.365 99.193 124.412 99.193 124.429C99.193 124.441 99.1641 124.493 99.0774 124.539L96.6668 125.946C96.5454 126.016 96.3662 126.056 96.187 126.056Z" fill="white"/> +<path d="M96.1643 123.086C96.3204 123.086 96.4418 123.126 96.5054 123.161L98.6963 124.429L96.5227 125.698C96.4649 125.732 96.3435 125.767 96.1874 125.767C96.0545 125.767 95.9273 125.738 95.8521 125.692L93.6612 124.424L95.8348 123.161C95.8868 123.121 96.0082 123.086 96.1643 123.086ZM96.1643 122.507C95.9389 122.507 95.7076 122.559 95.54 122.657L93.1294 124.065C92.7883 124.267 92.7883 124.592 93.1351 124.794L95.5631 126.201C95.7365 126.3 95.962 126.352 96.1874 126.352C96.4129 126.352 96.6383 126.3 96.8118 126.201L99.2224 124.794C99.5692 124.592 99.5692 124.267 99.2224 124.065L96.7944 122.657C96.6152 122.559 96.3898 122.507 96.1643 122.507Z" fill="#706F6F"/> +<path d="M82.4171 128.517C82.2321 128.517 82.0587 128.477 81.9315 128.407L79.5036 127C79.4053 126.942 79.3879 126.896 79.3879 126.884C79.3879 126.873 79.4053 126.826 79.4978 126.774L81.9142 125.367C82.0356 125.297 82.209 125.257 82.394 125.257C82.579 125.257 82.7524 125.297 82.8796 125.367L85.3075 126.774C85.4058 126.832 85.4232 126.878 85.4232 126.89C85.4232 126.901 85.4058 126.948 85.3133 127L82.8969 128.407C82.7697 128.477 82.5963 128.517 82.4171 128.517Z" fill="white"/> +<path d="M82.3883 125.547C82.5444 125.547 82.6658 125.587 82.7294 125.622L84.9204 126.89L82.7468 128.153C82.689 128.188 82.5676 128.222 82.4115 128.222C82.2554 128.222 82.134 128.182 82.0704 128.147L79.8795 126.879L82.0531 125.611C82.1166 125.582 82.2323 125.547 82.3883 125.547ZM82.3883 124.968C82.1629 124.968 81.9374 125.02 81.764 125.118L79.3476 126.526C79.0065 126.728 79.0065 127.053 79.3534 127.255L81.7814 128.662C81.9548 128.761 82.186 128.813 82.4115 128.813C82.6369 128.813 82.8624 128.761 83.0358 128.662L85.4522 127.255C85.7933 127.053 85.7933 126.728 85.4464 126.526L83.0185 125.118C82.845 125.02 82.6138 124.968 82.3883 124.968Z" fill="#706F6F"/> +<path d="M91.6894 128.669C91.5044 128.669 91.331 128.628 91.2096 128.558L88.7816 127.151C88.6834 127.093 88.666 127.047 88.666 127.035C88.666 127.024 88.6834 126.978 88.7816 126.925L91.1923 125.518C91.3137 125.449 91.4871 125.408 91.6721 125.408C91.857 125.408 92.0305 125.449 92.1577 125.518L94.5856 126.925C94.6839 126.983 94.7012 127.03 94.7012 127.041C94.7012 127.053 94.6781 127.099 94.5856 127.151L92.175 128.558C92.0478 128.628 91.8744 128.669 91.6894 128.669Z" fill="white"/> +<path d="M91.6665 125.703C91.7994 125.703 91.9266 125.732 92.0076 125.778L94.1985 127.047L92.0249 128.309C91.9671 128.344 91.8457 128.384 91.6896 128.384C91.5624 128.384 91.4295 128.355 91.3543 128.309L89.1634 127.041L91.337 125.773C91.3948 125.738 91.5162 125.703 91.6665 125.703ZM91.6665 125.124C91.441 125.124 91.2156 125.176 91.0422 125.275L88.6315 126.682C88.2847 126.884 88.2905 127.209 88.6373 127.411L91.0653 128.819C91.2387 128.917 91.4642 128.969 91.6896 128.969C91.9151 128.969 92.1463 128.917 92.3197 128.819L94.7303 127.411C95.0772 127.209 95.0714 126.884 94.7246 126.688L92.2966 125.28C92.1232 125.17 91.8977 125.124 91.6665 125.124Z" fill="#706F6F"/> +<path d="M77.9258 131.129C77.7408 131.129 77.5674 131.089 77.4402 131.019L75.0123 129.612C74.9256 129.56 74.8909 129.514 74.8909 129.496C74.8909 129.485 74.9198 129.438 75.0065 129.386L77.4171 127.979C77.5385 127.91 77.7119 127.869 77.8969 127.869C78.0819 127.869 78.2553 127.91 78.3825 127.979L80.8105 129.386C80.9087 129.444 80.9261 129.491 80.9261 129.502C80.9261 129.514 80.9087 129.56 80.8105 129.612L78.3999 131.019C78.2785 131.089 78.105 131.129 77.9258 131.129Z" fill="white"/> +<path d="M77.8967 128.164C78.0528 128.164 78.1742 128.205 78.2378 128.239L80.4287 129.508L78.2551 130.77C78.1973 130.805 78.0759 130.839 77.9198 130.839C77.7869 130.839 77.6597 130.811 77.5788 130.764L75.3878 129.496L77.5614 128.234C77.625 128.199 77.7406 128.164 77.8967 128.164ZM77.8967 127.585C77.6713 127.585 77.4458 127.637 77.2724 127.736L74.8618 129.143C74.5149 129.345 74.5207 129.67 74.8675 129.872L77.2955 131.28C77.4689 131.378 77.7002 131.43 77.9256 131.43C78.1511 131.43 78.3765 131.378 78.5499 131.28L80.9606 129.872C81.3074 129.67 81.3016 129.345 80.9548 129.143L78.5268 127.736C78.3534 127.631 78.1279 127.585 77.8967 127.585Z" fill="#706F6F"/> +<path d="M87.1984 131.286C87.0135 131.286 86.84 131.245 86.7186 131.176L84.2907 129.768C84.1924 129.711 84.175 129.664 84.175 129.653C84.175 129.641 84.1924 129.595 84.2849 129.543L86.7013 128.135C86.8227 128.066 86.9961 128.025 87.1811 128.025C87.3661 128.025 87.5395 128.066 87.6667 128.135L90.0947 129.543C90.1814 129.595 90.2103 129.641 90.2103 129.658C90.2103 129.67 90.1814 129.722 90.0947 129.768L87.6783 131.176C87.5569 131.245 87.3834 131.286 87.1984 131.286Z" fill="white"/> +<path d="M87.1752 128.315C87.3313 128.315 87.4527 128.356 87.5163 128.391L89.7072 129.659L87.5336 130.927C87.4758 130.962 87.3544 130.997 87.1983 130.997C87.0423 130.997 86.9209 130.962 86.863 130.921L84.6721 129.653L86.8457 128.391C86.9035 128.356 87.0249 128.315 87.1752 128.315ZM87.1752 127.736C86.9498 127.736 86.7243 127.788 86.5509 127.887L84.1345 129.294C83.7934 129.497 83.7934 129.821 84.1403 130.024L86.5682 131.431C86.7417 131.529 86.9671 131.582 87.1926 131.582C87.418 131.582 87.6435 131.529 87.8169 131.431L90.2333 130.024C90.5744 129.821 90.5744 129.497 90.2275 129.3L87.7995 127.893C87.6319 127.788 87.4064 127.736 87.1752 127.736Z" fill="#706F6F"/> +<path d="M96.4768 131.442C96.2918 131.442 96.1183 131.401 95.9969 131.332L93.569 129.925C93.4707 129.867 93.4534 129.82 93.4534 129.809C93.4534 129.797 93.4707 129.751 93.569 129.699L95.9796 128.292C96.101 128.222 96.2744 128.182 96.4594 128.182C96.6444 128.182 96.8178 128.222 96.945 128.292L99.373 129.699C99.4597 129.751 99.4886 129.797 99.4886 129.815C99.4886 129.826 99.4597 129.878 99.373 129.925L96.9624 131.332C96.841 131.396 96.6617 131.442 96.4768 131.442Z" fill="white"/> +<path d="M96.459 128.472C96.5919 128.472 96.7191 128.501 96.8 128.547L98.991 129.815L96.8174 131.078C96.7596 131.112 96.6382 131.153 96.4821 131.153C96.326 131.153 96.2046 131.118 96.1468 131.083L93.9501 129.809L96.1237 128.547C96.1815 128.506 96.3029 128.472 96.459 128.472ZM96.459 127.893C96.2335 127.893 96.0081 127.945 95.8346 128.043L93.424 129.45C93.0772 129.653 93.0829 129.977 93.4298 130.18L95.8578 131.587C96.0312 131.686 96.2566 131.738 96.4821 131.738C96.7075 131.738 96.9388 131.686 97.1122 131.587L99.5228 130.18C99.8697 129.977 99.8639 129.653 99.517 129.456L97.0891 128.049C96.9099 127.945 96.6844 127.893 96.459 127.893Z" fill="#706F6F"/> +<path d="M82.7062 133.903C82.5212 133.903 82.3478 133.862 82.2264 133.793L79.7984 132.386C79.7117 132.334 79.677 132.287 79.677 132.27C79.677 132.258 79.7059 132.212 79.7926 132.16L82.2032 130.753C82.3246 130.683 82.4981 130.643 82.6831 130.643C82.868 130.643 83.0415 130.683 83.1686 130.753L85.5966 132.16C85.6833 132.212 85.7122 132.258 85.7122 132.276C85.7122 132.293 85.6833 132.339 85.5966 132.386L83.186 133.793C83.0646 133.857 82.8912 133.903 82.7062 133.903Z" fill="white"/> +<path d="M82.6889 130.933C82.845 130.933 82.9664 130.973 83.03 131.008L85.221 132.276L83.0474 133.544C82.9896 133.579 82.8682 133.62 82.7121 133.62C82.5791 133.62 82.4519 133.591 82.3768 133.544L80.1858 132.276L82.3594 131.014C82.4115 130.967 82.5329 130.933 82.6889 130.933ZM82.6889 130.354C82.4635 130.354 82.238 130.406 82.0646 130.504L79.654 131.911C79.3071 132.114 79.3129 132.438 79.6598 132.641L82.0877 134.048C82.2612 134.147 82.4866 134.199 82.7121 134.199C82.9375 134.199 83.163 134.147 83.3364 134.048L85.747 132.641C86.0939 132.438 86.0939 132.114 85.747 131.911L83.3191 130.504C83.1399 130.4 82.9144 130.354 82.6889 130.354Z" fill="#706F6F"/> +<path d="M91.9904 134.053C91.8054 134.053 91.632 134.013 91.5106 133.943L89.0827 132.536C88.9844 132.478 88.967 132.432 88.967 132.42C88.967 132.409 88.9844 132.362 89.0769 132.31L91.4933 130.903C91.6147 130.834 91.7881 130.793 91.9731 130.793C92.1581 130.793 92.3315 130.834 92.4587 130.903L94.8866 132.31C94.9734 132.362 95.0023 132.409 95.0023 132.426C95.0023 132.438 94.9849 132.484 94.8924 132.536L92.476 133.943C92.3488 134.013 92.1696 134.053 91.9904 134.053Z" fill="white"/> +<path d="M91.9674 131.083C92.1235 131.083 92.2449 131.124 92.3085 131.158L94.4995 132.427L92.3259 133.689C92.2681 133.724 92.1467 133.758 91.9906 133.758C91.8345 133.758 91.7131 133.724 91.6553 133.689L89.4643 132.421L91.6379 131.153C91.69 131.124 91.8114 131.083 91.9674 131.083ZM91.9674 130.504C91.742 130.504 91.5165 130.556 91.3431 130.654L88.9267 132.062C88.5856 132.264 88.5856 132.589 88.9325 132.791L91.3605 134.199C91.5339 134.297 91.7593 134.349 91.9848 134.349C92.2102 134.349 92.4357 134.297 92.6091 134.199L95.0255 132.791C95.3666 132.589 95.3666 132.264 95.0197 132.067L92.5918 130.66C92.4241 130.556 92.1929 130.504 91.9674 130.504Z" fill="#706F6F"/> +<path d="M84.8339 138.217C84.649 138.217 84.4755 138.176 84.3541 138.107L81.9262 136.699C81.8279 136.642 81.8105 136.595 81.8105 136.584C81.8105 136.572 81.8279 136.526 81.9262 136.474L87.0018 133.52C87.1232 133.451 87.2966 133.41 87.4816 133.41C87.6666 133.41 87.84 133.451 87.9672 133.52L90.3951 134.927C90.4934 134.985 90.5107 135.032 90.5107 135.037C90.5107 135.049 90.4934 135.095 90.3951 135.147L85.3195 138.101C85.1923 138.176 85.0189 138.217 84.8339 138.217Z" fill="white"/> +<path d="M87.4758 133.7C87.6318 133.7 87.7532 133.741 87.8168 133.775L90.0078 135.044L85.175 137.858C85.1172 137.893 84.9958 137.933 84.8397 137.933C84.6836 137.933 84.5622 137.899 84.5044 137.864L82.3134 136.596L87.1462 133.781C87.1983 133.735 87.3197 133.7 87.4758 133.7ZM87.4758 133.121C87.2503 133.121 87.0191 133.173 86.8514 133.272L81.7758 136.225C81.429 136.428 81.4347 136.752 81.7816 136.955L84.2096 138.362C84.383 138.46 84.6084 138.512 84.8339 138.512C85.0594 138.512 85.2906 138.46 85.464 138.362L90.5396 135.409C90.8865 135.206 90.8807 134.882 90.5396 134.679L88.1116 133.272C87.9324 133.173 87.7012 133.121 87.4758 133.121Z" fill="#706F6F"/> +<path d="M73.4283 133.747C73.2434 133.747 73.0699 133.706 72.9427 133.637L70.5148 132.229C70.4165 132.171 70.3992 132.125 70.3992 132.114C70.3992 132.102 70.4165 132.056 70.5148 132.004L72.9254 130.596C73.0468 130.527 73.2202 130.486 73.4052 130.486C73.5902 130.486 73.7636 130.527 73.8908 130.596L76.3188 132.004C76.417 132.061 76.4344 132.108 76.4344 132.119C76.4344 132.131 76.417 132.177 76.3246 132.229L73.9139 133.637C73.7868 133.706 73.6133 133.747 73.4283 133.747Z" fill="white"/> +<path d="M73.405 130.776C73.5611 130.776 73.6825 130.817 73.7461 130.852L75.937 132.12L73.7634 133.382C73.7056 133.417 73.5842 133.458 73.4281 133.458C73.2721 133.458 73.1507 133.417 73.0871 133.382L70.8961 132.114L73.0697 130.852C73.1333 130.817 73.2489 130.776 73.405 130.776ZM73.405 130.197C73.1796 130.197 72.9541 130.249 72.7807 130.348L70.3701 131.755C70.0232 131.958 70.029 132.282 70.3758 132.485L72.8038 133.892C72.9772 133.99 73.2027 134.042 73.4339 134.042C73.6594 134.042 73.8906 133.99 74.0582 133.892L76.4689 132.485C76.8099 132.282 76.8099 131.958 76.4631 131.755L74.0351 130.348C73.8617 130.249 73.6305 130.197 73.405 130.197Z" fill="#706F6F"/> +<path d="M109.368 112.823C109.183 112.823 109.009 112.783 108.882 112.713L106.454 111.306C106.356 111.248 106.339 111.202 106.339 111.19C106.339 111.179 106.356 111.132 106.448 111.08L113.357 107.061C113.478 106.992 113.651 106.951 113.836 106.951C114.021 106.951 114.195 106.992 114.322 107.061L116.75 108.468C116.848 108.526 116.866 108.573 116.866 108.584C116.866 108.596 116.848 108.642 116.75 108.694L109.842 112.713C109.726 112.783 109.553 112.823 109.368 112.823Z" fill="white"/> +<path d="M113.836 107.241C113.992 107.241 114.114 107.282 114.177 107.316L116.368 108.585L109.703 112.465C109.645 112.499 109.524 112.534 109.368 112.534C109.212 112.534 109.09 112.494 109.027 112.459L106.836 111.191L113.501 107.311C113.559 107.276 113.68 107.241 113.836 107.241ZM113.836 106.662C113.611 106.662 113.385 106.714 113.212 106.813L106.304 110.832C105.963 111.034 105.963 111.359 106.31 111.561L108.738 112.968C108.911 113.067 109.142 113.119 109.368 113.119C109.593 113.119 109.819 113.067 109.992 112.968L116.9 108.95C117.247 108.747 117.241 108.423 116.894 108.22L114.466 106.813C114.293 106.708 114.062 106.662 113.836 106.662Z" fill="#706F6F"/> +<path d="M83.3016 144.668C83.1166 144.668 82.9432 144.627 82.8218 144.558L80.3881 143.151C80.2898 143.093 80.2725 143.046 80.2725 143.035C80.2725 143.023 80.2898 142.977 80.3823 142.925L87.2904 138.906C87.4118 138.836 87.5853 138.796 87.7702 138.796C87.9552 138.796 88.1287 138.836 88.2501 138.906L90.6838 140.313C90.7821 140.371 90.7994 140.417 90.7994 140.429C90.7994 140.441 90.7821 140.487 90.6896 140.539L83.7814 144.558C83.66 144.627 83.4866 144.668 83.3016 144.668Z" fill="white"/> +<path d="M87.7705 139.086C87.9265 139.086 88.0479 139.121 88.1057 139.155L90.2967 140.424L83.6314 144.304C83.5736 144.338 83.4522 144.373 83.2961 144.373C83.14 144.373 83.0186 144.338 82.9608 144.304L80.7698 143.035L87.4352 139.155C87.4988 139.121 87.6144 139.086 87.7705 139.086ZM87.7705 138.507C87.545 138.507 87.3196 138.559 87.1461 138.657L80.238 142.676C79.8969 142.879 79.8969 143.203 80.2438 143.4L82.6775 144.807C82.8509 144.906 83.0764 144.958 83.3019 144.958C83.5273 144.958 83.7528 144.906 83.9262 144.807L90.8343 140.788C91.1754 140.586 91.1754 140.262 90.8285 140.065L88.3948 138.657C88.2214 138.559 87.9959 138.507 87.7705 138.507Z" fill="#706F6F"/> +<path d="M105.466 126.208C105.281 126.208 105.107 126.167 104.986 126.098L102.558 124.69C102.46 124.632 102.442 124.586 102.442 124.575C102.442 124.563 102.46 124.517 102.552 124.464L104.969 123.057C105.09 122.988 105.263 122.947 105.448 122.947C105.633 122.947 105.807 122.988 105.934 123.057L108.362 124.464C108.46 124.522 108.478 124.569 108.478 124.58C108.478 124.592 108.46 124.638 108.368 124.69L105.951 126.098C105.824 126.167 105.651 126.208 105.466 126.208Z" fill="white"/> +<path d="M105.443 123.242C105.599 123.242 105.72 123.283 105.784 123.317L107.975 124.586L105.801 125.848C105.743 125.883 105.622 125.918 105.466 125.918C105.31 125.918 105.188 125.883 105.131 125.848L102.94 124.58L105.113 123.312C105.171 123.277 105.287 123.242 105.443 123.242ZM105.443 122.663C105.217 122.663 104.992 122.715 104.818 122.814L102.402 124.221C102.061 124.424 102.061 124.748 102.408 124.951L104.836 126.358C105.009 126.456 105.235 126.508 105.46 126.508C105.686 126.508 105.911 126.456 106.084 126.358L108.501 124.951C108.842 124.748 108.842 124.424 108.495 124.227L106.067 122.819C105.899 122.709 105.668 122.663 105.443 122.663Z" fill="#706F6F"/> +<path d="M100.974 128.824C100.789 128.824 100.615 128.783 100.494 128.714L98.0658 127.307C97.9675 127.249 97.9502 127.202 97.9502 127.191C97.9502 127.179 97.9675 127.133 98.06 127.081L100.471 125.674C100.592 125.604 100.765 125.563 100.95 125.563C101.135 125.563 101.309 125.604 101.436 125.674L103.864 127.081C103.962 127.139 103.98 127.185 103.98 127.197C103.98 127.208 103.962 127.254 103.864 127.307L101.453 128.714C101.332 128.783 101.159 128.824 100.974 128.824Z" fill="white"/> +<path d="M100.951 125.854C101.107 125.854 101.228 125.894 101.292 125.929L103.483 127.197L101.309 128.465C101.251 128.5 101.13 128.535 100.974 128.535C100.818 128.535 100.696 128.5 100.639 128.465L98.4476 127.197L100.621 125.935C100.673 125.894 100.795 125.854 100.951 125.854ZM100.951 125.274C100.725 125.274 100.5 125.327 100.326 125.425L97.9157 126.832C97.5747 127.035 97.5747 127.359 97.9215 127.562L100.349 128.969C100.523 129.068 100.748 129.12 100.974 129.12C101.199 129.12 101.425 129.068 101.598 128.969L104.009 127.562C104.356 127.359 104.35 127.035 104.009 126.832L101.581 125.425C101.407 125.327 101.182 125.274 100.951 125.274Z" fill="#706F6F"/> +<path d="M101.269 134.209C101.084 134.209 100.91 134.169 100.789 134.099L98.3551 132.692C98.2568 132.634 98.2395 132.588 98.2395 132.582C98.2395 132.571 98.2568 132.524 98.3551 132.472L114.143 123.282C114.264 123.212 114.437 123.172 114.622 123.172C114.807 123.172 114.981 123.212 115.102 123.282L117.536 124.689C117.634 124.747 117.652 124.793 117.652 124.805C117.652 124.817 117.634 124.863 117.542 124.915L101.754 134.105C101.627 134.169 101.454 134.209 101.269 134.209Z" fill="white"/> +<path d="M114.622 123.45C114.779 123.45 114.9 123.485 114.958 123.52L117.149 124.788L101.598 133.839C101.54 133.874 101.419 133.914 101.263 133.914C101.107 133.914 100.985 133.88 100.928 133.845L98.7367 132.577L114.287 123.525C114.351 123.491 114.466 123.456 114.622 123.45ZM114.622 122.871C114.397 122.871 114.172 122.923 113.998 123.022L98.2106 132.212C97.8638 132.415 97.8695 132.739 98.2106 132.942L100.644 134.349C100.818 134.447 101.043 134.499 101.269 134.499C101.494 134.499 101.725 134.447 101.899 134.349L117.686 125.159C118.027 124.956 118.027 124.632 117.681 124.435L115.247 123.027C115.079 122.923 114.848 122.871 114.622 122.871Z" fill="#706F6F"/> +<path d="M73.875 152.382C75.9153 153.558 75.928 155.468 73.9003 156.644C71.8727 157.82 68.5763 157.82 66.536 156.644C64.4958 155.468 64.4873 153.558 66.5149 152.382C68.5425 151.206 71.8348 151.206 73.875 152.382Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M35.2055 75.4088C38.4708 77.3628 38.4895 80.5239 35.2466 82.4779C32.0037 84.4319 26.7246 84.4319 23.4593 82.4779C20.194 80.5239 20.179 77.3628 23.4219 75.4088C26.6648 73.4549 31.9402 73.4549 35.2055 75.4088Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/> +<path d="M33.4245 76.8223C35.5151 77.9942 35.5266 79.8925 33.4515 81.0644C31.3764 82.2363 27.9977 82.2363 25.9072 81.0644C23.8167 79.8925 23.809 77.9942 25.884 76.8223C27.9591 75.6504 31.334 75.6504 33.4245 76.8223Z" fill="#EDEDED"/> +<path d="M24.5883 49.3686L30.3103 46.041C29.5816 46.4652 29.1265 47.3674 29.1265 48.6475C29.1188 51.2232 30.9349 54.3695 33.179 55.6651L27.457 58.9926C25.2129 57.6971 23.3969 54.5546 23.4046 51.9751C23.4046 50.695 23.8595 49.7927 24.5883 49.3686Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M36.0708 55.9504L30.3489 59.2779C29.6086 59.7059 28.5868 59.6481 27.457 58.9965L33.179 55.6689C34.3087 56.3206 35.3305 56.3823 36.0708 55.9504Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M37.9447 59.3432L43.6667 56.0156C43.6474 62.6591 33.6455 76.1236 33.1172 76.8331L27.3953 80.1606C27.9197 79.455 37.9254 65.9906 37.9447 59.3432Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M20.0576 40.5349L25.7796 37.2074C27.6844 36.1008 30.3179 36.255 33.229 37.9361L27.507 41.2637C24.5959 39.5864 21.9585 39.4283 20.0576 40.5349Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M27.5032 41.2641L33.2251 37.9365C39.0088 41.2756 43.6821 49.3728 43.6628 56.0163L37.9408 59.3438C37.96 52.7003 33.2869 44.6032 27.5032 41.2641Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/> +<path d="M27.5032 41.264C33.2869 44.6031 37.9601 52.7002 37.9408 59.3437C37.9215 65.9873 27.9196 79.4517 27.3914 80.1612C26.8708 78.8463 16.9807 53.8994 17 47.252C17.0193 40.6046 21.7234 37.9287 27.5032 41.264ZM27.4531 58.9929C29.701 60.2884 31.5248 59.2473 31.5325 56.6678C31.5402 54.0844 29.728 50.9459 27.48 49.6503C25.236 48.3548 23.4083 49.392 23.4006 51.9753C23.3968 54.5549 25.2129 57.7012 27.4531 58.9929Z" fill="#706F6F" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.5672 182.287C7.97666 183.78 7.96057 186.205 10.5351 187.698C13.1096 189.192 17.2951 189.192 19.8856 187.698C22.4762 186.205 22.4869 183.78 19.9124 182.287C17.3433 180.794 13.1578 180.794 10.5672 182.287Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/> +<path d="M13.1056 158.77C12.8323 159.41 11.7389 159.543 11.5456 158.737C11.4323 158.29 11.3389 158.35 11.0922 157.963C10.8656 157.577 10.5789 157.95 10.3656 157.463C10.0789 156.803 10.1389 154.81 10.6856 154.31C11.1989 153.843 11.599 153.97 12.0856 154.377C12.3256 154.603 12.4523 154.877 12.7123 155.083C12.9056 155.23 13.1923 155.31 13.3523 155.37C14.4589 155.837 13.7056 156.51 13.5456 157.183C13.4789 157.443 13.499 157.823 13.399 158.07C13.2723 158.39 12.999 158.55 12.899 158.843" fill="white"/> +<path d="M13.1056 158.77C12.8323 159.41 11.7389 159.543 11.5456 158.737C11.4323 158.29 11.3389 158.35 11.0922 157.963C10.8656 157.577 10.5789 157.95 10.3656 157.463C10.0789 156.803 10.1389 154.81 10.6856 154.31C11.1989 153.843 11.599 153.97 12.0856 154.377C12.3256 154.603 12.4523 154.877 12.7123 155.083C12.9056 155.23 13.1923 155.31 13.3523 155.37C14.4589 155.837 13.7056 156.51 13.5456 157.183C13.4789 157.443 13.499 157.823 13.399 158.07C13.2723 158.39 12.999 158.55 12.899 158.843" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M13.1056 158.77C12.8323 159.41 11.7389 159.543 11.5456 158.737C11.4323 158.29 11.3389 158.35 11.0922 157.963C10.8656 157.577 10.5789 157.95 10.3656 157.463C10.0789 156.803 10.1389 154.81 10.6856 154.31C11.1989 153.843 11.599 153.97 12.0856 154.377C12.3256 154.603 12.4523 154.877 12.7123 155.083C12.9056 155.23 13.1923 155.31 13.3523 155.37C14.4589 155.837 13.7056 156.51 13.5456 157.183C13.4789 157.443 13.499 157.823 13.399 158.07C13.2723 158.39 12.999 158.55 12.899 158.843" fill="white"/> +<path d="M13.1056 158.77C12.8323 159.41 11.7389 159.543 11.5456 158.737C11.4323 158.29 11.3389 158.35 11.0922 157.963C10.8656 157.577 10.5789 157.95 10.3656 157.463C10.0789 156.803 10.1389 154.81 10.6856 154.31C11.1989 153.843 11.599 153.97 12.0856 154.377C12.3256 154.603 12.4523 154.877 12.7123 155.083C12.9056 155.23 13.1923 155.31 13.3523 155.37C14.4589 155.837 13.7056 156.51 13.5456 157.183C13.4789 157.443 13.499 157.823 13.399 158.07C13.2723 158.39 12.999 158.55 12.899 158.843" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M7.37894 162.983C7.68561 164.203 7.73229 165.73 7.73229 167.143C7.73229 168.703 7.33227 170.15 7.37894 171.69C7.92561 171.803 8.48562 167.723 8.56562 167.123C8.71229 166.177 8.80561 165.143 8.63227 164.217C8.56561 163.83 7.84562 161.883 7.23229 162.69" fill="white"/> +<path d="M7.37894 162.983C7.68561 164.203 7.73229 165.73 7.73229 167.143C7.73229 168.703 7.33227 170.15 7.37894 171.69C7.92561 171.803 8.48562 167.723 8.56562 167.123C8.71229 166.177 8.80561 165.143 8.63227 164.217C8.56561 163.83 7.84562 161.883 7.23229 162.69" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M7.37894 162.983C7.68561 164.203 7.73229 165.73 7.73229 167.143C7.73229 168.703 7.33227 170.15 7.37894 171.69C7.92561 171.803 8.48562 167.723 8.56562 167.123C8.71229 166.177 8.80561 165.143 8.63227 164.217C8.56561 163.83 7.84562 161.883 7.23229 162.69" fill="white"/> +<path d="M7.37894 162.983C7.68561 164.203 7.73229 165.73 7.73229 167.143C7.73229 168.703 7.33227 170.15 7.37894 171.69C7.92561 171.803 8.48562 167.723 8.56562 167.123C8.71229 166.177 8.80561 165.143 8.63227 164.217C8.56561 163.83 7.84562 161.883 7.23229 162.69" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M16.8789 164.557C17.9722 164.397 17.7989 168.51 17.8123 169.33C17.8256 170.263 17.9056 171.017 18.2456 171.903C18.3589 172.177 18.8389 172.897 18.5189 173.19C18.0856 173.59 17.6056 172.837 17.5056 172.497C17.5723 172.837 17.4256 172.85 17.2989 173.03C16.9456 172.37 16.9456 171.343 16.7389 170.617C16.5123 169.783 16.3056 169.01 16.3056 168.143C16.3056 167.163 16.2389 166.197 16.2389 165.25C16.2389 165.043 16.1122 164.223 16.2722 164.077C16.6122 163.77 17.0256 164.257 17.0256 164.61" fill="white"/> +<path d="M16.8789 164.557C17.9722 164.397 17.7989 168.51 17.8123 169.33C17.8256 170.263 17.9056 171.017 18.2456 171.903C18.3589 172.177 18.8389 172.897 18.5189 173.19C18.0856 173.59 17.6056 172.837 17.5056 172.497C17.5723 172.837 17.4256 172.85 17.2989 173.03C16.9456 172.37 16.9456 171.343 16.7389 170.617C16.5123 169.783 16.3056 169.01 16.3056 168.143C16.3056 167.163 16.2389 166.197 16.2389 165.25C16.2389 165.043 16.1122 164.223 16.2722 164.077C16.6122 163.77 17.0256 164.257 17.0256 164.61" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M16.8789 164.557C17.9722 164.397 17.7989 168.51 17.8123 169.33C17.8256 170.263 17.9056 171.017 18.2456 171.903C18.3589 172.177 18.8389 172.897 18.5189 173.19C18.0856 173.59 17.6056 172.837 17.5056 172.497C17.5723 172.837 17.4256 172.85 17.2989 173.03C16.9456 172.37 16.9456 171.343 16.7389 170.617C16.5123 169.783 16.3056 169.01 16.3056 168.143C16.3056 167.163 16.2389 166.197 16.2389 165.25C16.2389 165.043 16.1122 164.223 16.2722 164.077C16.6122 163.77 17.0256 164.257 17.0256 164.61" fill="white"/> +<path d="M16.8789 164.557C17.9722 164.397 17.7989 168.51 17.8123 169.33C17.8256 170.263 17.9056 171.017 18.2456 171.903C18.3589 172.177 18.8389 172.897 18.5189 173.19C18.0856 173.59 17.6056 172.837 17.5056 172.497C17.5723 172.837 17.4256 172.85 17.2989 173.03C16.9456 172.37 16.9456 171.343 16.7389 170.617C16.5123 169.783 16.3056 169.01 16.3056 168.143C16.3056 167.163 16.2389 166.197 16.2389 165.25C16.2389 165.043 16.1122 164.223 16.2722 164.077C16.6122 163.77 17.0256 164.257 17.0256 164.61" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.6589 177.043C16.0589 177.523 16.4922 178.023 16.9455 178.476C17.6722 179.216 17.7189 179.743 17.6722 180.789C17.6056 181.756 16.5122 183.136 16.6722 181.429C16.7522 180.576 16.7722 180.656 16.1122 180.223C15.4522 179.789 14.5055 179.036 14.1322 178.323C13.5855 177.263 15.1455 176.056 15.8189 176.969" fill="white"/> +<path d="M15.6589 177.043C16.0589 177.523 16.4922 178.023 16.9455 178.476C17.6722 179.216 17.7189 179.743 17.6722 180.789C17.6056 181.756 16.5122 183.136 16.6722 181.429C16.7522 180.576 16.7722 180.656 16.1122 180.223C15.4522 179.789 14.5055 179.036 14.1322 178.323C13.5855 177.263 15.1455 176.056 15.8189 176.969" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M15.6589 177.043C16.0589 177.523 16.4922 178.023 16.9455 178.476C17.6722 179.216 17.7189 179.743 17.6722 180.789C17.6056 181.756 16.5122 183.136 16.6722 181.429C16.7522 180.576 16.7722 180.656 16.1122 180.223C15.4522 179.789 14.5055 179.036 14.1322 178.323C13.5855 177.263 15.1455 176.056 15.8189 176.969" fill="white"/> +<path d="M15.6589 177.043C16.0589 177.523 16.4922 178.023 16.9455 178.476C17.6722 179.216 17.7189 179.743 17.6722 180.789C17.6056 181.756 16.5122 183.136 16.6722 181.429C16.7522 180.576 16.7722 180.656 16.1122 180.223C15.4522 179.789 14.5055 179.036 14.1322 178.323C13.5855 177.263 15.1455 176.056 15.8189 176.969" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.3855 177.336C10.3855 178.896 10.1788 180.436 10.1121 182.016C10.0788 182.79 10.1921 183.703 10.1121 184.456C10.0321 185.276 9.17882 185.776 8.53882 186.323C8.05882 185.763 8.73213 184.476 8.76546 183.77C8.83213 182.63 8.53881 181.55 8.36548 180.443C8.26548 179.783 7.72547 177.87 8.10547 177.23C8.7188 176.203 10.1655 177.163 10.4055 177.983" fill="white"/> +<path d="M10.3855 177.336C10.3855 178.896 10.1788 180.436 10.1121 182.016C10.0788 182.79 10.1921 183.703 10.1121 184.456C10.0321 185.276 9.17882 185.776 8.53882 186.323C8.05882 185.763 8.73213 184.476 8.76546 183.77C8.83213 182.63 8.53881 181.55 8.36548 180.443C8.26548 179.783 7.72547 177.87 8.10547 177.23C8.7188 176.203 10.1655 177.163 10.4055 177.983" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.3855 177.336C10.3855 178.896 10.1788 180.436 10.1121 182.016C10.0788 182.79 10.1921 183.703 10.1121 184.456C10.0321 185.276 9.17882 185.776 8.53882 186.323C8.05882 185.763 8.73213 184.476 8.76546 183.77C8.83213 182.63 8.53881 181.55 8.36548 180.443C8.26548 179.783 7.72547 177.87 8.10547 177.23C8.7188 176.203 10.1655 177.163 10.4055 177.983" fill="white"/> +<path d="M10.3855 177.336C10.3855 178.896 10.1788 180.436 10.1121 182.016C10.0788 182.79 10.1921 183.703 10.1121 184.456C10.0321 185.276 9.17882 185.776 8.53882 186.323C8.05882 185.763 8.73213 184.476 8.76546 183.77C8.83213 182.63 8.53881 181.55 8.36548 180.443C8.26548 179.783 7.72547 177.87 8.10547 177.23C8.7188 176.203 10.1655 177.163 10.4055 177.983" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M17.6723 179.183C18.8456 179.309 17.8989 182.669 17.0589 182.989C16.1456 183.343 16.7856 181.829 16.9656 181.383C17.1922 180.789 17.6389 179.649 17.5922 179.036" fill="white"/> +<path d="M17.6723 179.183C18.8456 179.309 17.8989 182.669 17.0589 182.989C16.1456 183.343 16.7856 181.829 16.9656 181.383C17.1922 180.789 17.6389 179.649 17.5922 179.036" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M17.6723 179.183C18.8456 179.309 17.8989 182.669 17.0589 182.989C16.1456 183.343 16.7856 181.829 16.9656 181.383C17.1922 180.789 17.6389 179.649 17.5922 179.036" fill="white"/> +<path d="M17.6723 179.183C18.8456 179.309 17.8989 182.669 17.0589 182.989C16.1456 183.343 16.7856 181.829 16.9656 181.383C17.1922 180.789 17.6389 179.649 17.5922 179.036" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.159 184.116C10.7723 185.196 10.059 186.256 9.07897 186.896C8.64563 187.182 7.98561 187.522 7.72561 186.896C7.49895 186.336 8.17891 185.496 8.35224 184.996C8.33891 187.116 9.75229 184.869 10.1523 184.062C10.299 184.142 10.2523 184.209 10.2789 184.336" fill="white"/> +<path d="M10.159 184.116C10.7723 185.196 10.059 186.256 9.07897 186.896C8.64563 187.182 7.98561 187.522 7.72561 186.896C7.49895 186.336 8.17891 185.496 8.35224 184.996C8.33891 187.116 9.75229 184.869 10.1523 184.062C10.299 184.142 10.2523 184.209 10.2789 184.336" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.159 184.116C10.7723 185.196 10.059 186.256 9.07897 186.896C8.64563 187.182 7.98561 187.522 7.72561 186.896C7.49895 186.336 8.17891 185.496 8.35224 184.996C8.33891 187.116 9.75229 184.869 10.1523 184.062C10.299 184.142 10.2523 184.209 10.2789 184.336" fill="white"/> +<path d="M10.159 184.116C10.7723 185.196 10.059 186.256 9.07897 186.896C8.64563 187.182 7.98561 187.522 7.72561 186.896C7.49895 186.336 8.17891 185.496 8.35224 184.996C8.33891 187.116 9.75229 184.869 10.1523 184.062C10.299 184.142 10.2523 184.209 10.2789 184.336" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M24.6987 169.909C24.1187 170.103 23.9121 170.923 24.0055 171.449C24.0721 171.789 24.2121 172.009 24.2321 172.383C24.2454 172.689 24.1187 173.216 24.3787 173.396C24.6387 173.576 25.2321 173.296 25.3921 173.089C25.6988 172.669 25.5188 172.449 25.5055 172.043C25.4921 171.596 26.1987 171.463 26.0187 170.996C25.8521 170.603 25.1321 169.703 24.6987 169.909Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M27.6521 175.409C27.4921 176.163 27.5054 177.003 27.4454 177.756C27.3787 178.369 27.6387 179.843 27.2854 180.329C26.5121 181.409 26.3187 179.109 26.2854 178.689C26.1921 177.629 26.5254 176.843 26.592 175.829" fill="white"/> +<path d="M27.6521 175.409C27.4921 176.163 27.5054 177.003 27.4454 177.756C27.3787 178.369 27.6387 179.843 27.2854 180.329C26.5121 181.409 26.3187 179.109 26.2854 178.689C26.1921 177.629 26.5254 176.843 26.592 175.829" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M27.6521 175.409C27.4921 176.163 27.5054 177.003 27.4454 177.756C27.3787 178.369 27.6387 179.843 27.2854 180.329C26.5121 181.409 26.3187 179.109 26.2854 178.689C26.1921 177.629 26.5254 176.843 26.592 175.829" fill="white"/> +<path d="M27.6521 175.409C27.4921 176.163 27.5054 177.003 27.4454 177.756C27.3787 178.369 27.6387 179.843 27.2854 180.329C26.5121 181.409 26.3187 179.109 26.2854 178.689C26.1921 177.629 26.5254 176.843 26.592 175.829" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M26.3854 181.549C26.3721 181.709 26.3987 181.903 26.4654 182.029C27.3987 182.256 29.9054 182.463 29.1521 183.669C28.6187 183.716 27.9921 183.383 27.4654 183.249C26.9054 183.103 26.2921 183.103 25.7321 182.943C25.1187 182.783 24.7988 182.463 25.0054 181.756C25.1188 181.356 25.0854 181.243 25.6187 181.256C25.9254 181.269 26.1654 181.209 26.2321 181.609" fill="white"/> +<path d="M26.3854 181.549C26.3721 181.709 26.3987 181.903 26.4654 182.029C27.3987 182.256 29.9054 182.463 29.1521 183.669C28.6187 183.716 27.9921 183.383 27.4654 183.249C26.9054 183.103 26.2921 183.103 25.7321 182.943C25.1187 182.783 24.7988 182.463 25.0054 181.756C25.1188 181.356 25.0854 181.243 25.6187 181.256C25.9254 181.269 26.1654 181.209 26.2321 181.609" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M26.3854 181.549C26.3721 181.709 26.3987 181.903 26.4654 182.029C27.3987 182.256 29.9054 182.463 29.1521 183.669C28.6187 183.716 27.9921 183.383 27.4654 183.249C26.9054 183.103 26.2921 183.103 25.7321 182.943C25.1187 182.783 24.7988 182.463 25.0054 181.756C25.1188 181.356 25.0854 181.243 25.6187 181.256C25.9254 181.269 26.1654 181.209 26.2321 181.609" fill="white"/> +<path d="M26.3854 181.549C26.3721 181.709 26.3987 181.903 26.4654 182.029C27.3987 182.256 29.9054 182.463 29.1521 183.669C28.6187 183.716 27.9921 183.383 27.4654 183.249C26.9054 183.103 26.2921 183.103 25.7321 182.943C25.1187 182.783 24.7988 182.463 25.0054 181.756C25.1188 181.356 25.0854 181.243 25.6187 181.256C25.9254 181.269 26.1654 181.209 26.2321 181.609" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.9388 181.55C24.2121 181.903 24.0188 183.417 24.0055 184.023C23.9922 185.003 24.0188 186.27 22.8655 186.19C22.8321 185.083 22.8788 183.99 22.9321 182.897C22.9454 182.543 22.7522 181.657 22.9188 181.383C23.1655 181.03 23.9388 180.937 23.9388 181.55Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M29.2122 182.976C29.9522 182.043 29.9389 183.796 29.6589 184.276C29.0189 185.436 29.0989 183.15 29.2255 182.91" fill="white"/> +<path d="M29.2122 182.976C29.9522 182.043 29.9389 183.796 29.6589 184.276C29.0189 185.436 29.0989 183.15 29.2255 182.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M29.2122 182.976C29.9522 182.043 29.9389 183.796 29.6589 184.276C29.0189 185.436 29.0989 183.15 29.2255 182.91" fill="white"/> +<path d="M29.2122 182.976C29.9522 182.043 29.9389 183.796 29.6589 184.276C29.0189 185.436 29.0989 183.15 29.2255 182.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.4455 158.417C10.4655 158.417 9.38549 158.27 8.72549 159.137C8.29215 159.717 6.99218 161.583 7.08551 162.27C7.17885 162.997 8.22545 163.25 8.35879 164.003C8.48545 164.73 8.34547 165.87 8.29214 166.61C8.16547 168.51 7.67883 170.323 7.65216 172.25C7.63883 173.277 7.17215 174.277 7.21881 175.27C7.25215 175.963 7.83211 177.31 8.51878 177.583C9.03211 177.777 9.3388 177.437 9.79214 177.357C10.2921 177.29 10.5188 177.47 10.9521 177.677C12.2255 178.317 13.2655 178.483 14.4721 177.61C14.8921 177.323 15.2122 177.03 15.6588 176.79C16.2722 176.483 16.4788 176.597 16.5121 175.743C16.5788 174.923 16.4654 174.103 16.5121 173.297C16.5788 172.19 16.1122 171.017 15.8988 169.923C15.6722 168.637 15.8322 167.817 16.0788 166.563C16.1455 166.243 15.9988 165.323 16.2588 165.103C16.5988 164.797 17.3521 165.377 17.7188 165.037C18.3455 164.503 16.8655 162.11 16.3988 161.617C15.6255 160.763 14.6655 159.803 13.7788 159.09C13.6788 159.023 13.3455 158.737 13.2188 158.723C12.7521 158.657 13.0588 158.823 12.7188 158.95C12.1388 159.257 11.7855 159.27 11.4455 158.417Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M9.45217 158.917C9.4655 158.77 9.59885 158.757 9.46551 158.643C9.99885 161.697 11.8922 164.463 13.1655 167.29C13.3922 167.803 13.7255 168.783 14.2455 169.01C14.7589 169.217 15.7255 168.997 16.2588 168.93C17.3521 168.817 17.1121 169.41 17.2588 170.363C17.4188 171.443 17.7055 171.857 16.3255 171.923C15.4722 171.97 14.0255 172.21 13.5455 171.363C13.0455 170.497 13.1922 169.13 14.2722 169.117C13.6322 168.957 12.9988 167.43 12.5188 166.677C11.9722 165.81 11.5722 164.617 10.9922 163.77C10.3189 162.803 9.51219 161.583 9.14553 160.457C9.01886 160.057 8.66553 158.11 9.56553 158.577" fill="white"/> +<path d="M9.45217 158.917C9.4655 158.77 9.59885 158.757 9.46551 158.643C9.99885 161.697 11.8922 164.463 13.1655 167.29C13.3922 167.803 13.7255 168.783 14.2455 169.01C14.7589 169.217 15.7255 168.997 16.2588 168.93C17.3521 168.817 17.1121 169.41 17.2588 170.363C17.4188 171.443 17.7055 171.857 16.3255 171.923C15.4722 171.97 14.0255 172.21 13.5455 171.363C13.0455 170.497 13.1922 169.13 14.2722 169.117C13.6322 168.957 12.9988 167.43 12.5188 166.677C11.9722 165.81 11.5722 164.617 10.9922 163.77C10.3189 162.803 9.51219 161.583 9.14553 160.457C9.01886 160.057 8.66553 158.11 9.56553 158.577" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M9.45217 158.917C9.4655 158.77 9.59885 158.757 9.46551 158.643C9.99885 161.697 11.8922 164.463 13.1655 167.29C13.3922 167.803 13.7255 168.783 14.2455 169.01C14.7589 169.217 15.7255 168.997 16.2588 168.93C17.3521 168.817 17.1121 169.41 17.2588 170.363C17.4188 171.443 17.7055 171.857 16.3255 171.923C15.4722 171.97 14.0255 172.21 13.5455 171.363C13.0455 170.497 13.1922 169.13 14.2722 169.117C13.6322 168.957 12.9988 167.43 12.5188 166.677C11.9722 165.81 11.5722 164.617 10.9922 163.77C10.3189 162.803 9.51219 161.583 9.14553 160.457C9.01886 160.057 8.66553 158.11 9.56553 158.577" fill="white"/> +<path d="M9.45217 158.917C9.4655 158.77 9.59885 158.757 9.46551 158.643C9.99885 161.697 11.8922 164.463 13.1655 167.29C13.3922 167.803 13.7255 168.783 14.2455 169.01C14.7589 169.217 15.7255 168.997 16.2588 168.93C17.3521 168.817 17.1121 169.41 17.2588 170.363C17.4188 171.443 17.7055 171.857 16.3255 171.923C15.4722 171.97 14.0255 172.21 13.5455 171.363C13.0455 170.497 13.1922 169.13 14.2722 169.117C13.6322 168.957 12.9988 167.43 12.5188 166.677C11.9722 165.81 11.5722 164.617 10.9922 163.77C10.3189 162.803 9.51219 161.583 9.14553 160.457C9.01886 160.057 8.66553 158.11 9.56553 158.577" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M13.0254 155.556C12.9921 155.783 12.8788 156.036 12.7521 156.196C12.7188 155.41 12.2388 154.49 11.4654 154.17C10.4721 153.77 10.5321 154.683 10.4388 155.436C10.3588 156.243 10.1654 157.03 10.8721 157.576C11.1321 157.77 11.8522 157.756 11.3388 158.19C11.1122 158.383 10.5321 158.123 10.2321 158.383C10.0521 157.903 10.1388 157.47 9.89212 156.97C9.65212 156.436 9.27881 155.943 9.41214 155.33C9.63881 154.35 11.1655 153.416 12.0788 153.21C13.3988 152.903 14.1054 154.316 14.3588 155.443C14.5054 156.103 14.4254 156.423 14.9521 156.903C15.4988 157.403 16.1921 157.676 16.7054 158.256C17.5254 159.17 17.6721 160.89 16.6388 161.73C16.1588 161.07 15.4321 160.783 14.8055 160.283C14.3521 159.93 13.3388 159.303 13.0855 158.836C12.7655 158.243 13.0721 157.456 13.3255 156.99C13.4721 156.73 13.8587 156.396 13.7587 156.056C13.6454 155.716 13.2454 155.576 13.0187 155.83" fill="white"/> +<path d="M13.0254 155.556C12.9921 155.783 12.8788 156.036 12.7521 156.196C12.7188 155.41 12.2388 154.49 11.4654 154.17C10.4721 153.77 10.5321 154.683 10.4388 155.436C10.3588 156.243 10.1654 157.03 10.8721 157.576C11.1321 157.77 11.8522 157.756 11.3388 158.19C11.1122 158.383 10.5321 158.123 10.2321 158.383C10.0521 157.903 10.1388 157.47 9.89212 156.97C9.65212 156.436 9.27881 155.943 9.41214 155.33C9.63881 154.35 11.1655 153.416 12.0788 153.21C13.3988 152.903 14.1054 154.316 14.3588 155.443C14.5054 156.103 14.4254 156.423 14.9521 156.903C15.4988 157.403 16.1921 157.676 16.7054 158.256C17.5254 159.17 17.6721 160.89 16.6388 161.73C16.1588 161.07 15.4321 160.783 14.8055 160.283C14.3521 159.93 13.3388 159.303 13.0855 158.836C12.7655 158.243 13.0721 157.456 13.3255 156.99C13.4721 156.73 13.8587 156.396 13.7587 156.056C13.6454 155.716 13.2454 155.576 13.0187 155.83" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M13.0254 155.556C12.9921 155.783 12.8788 156.036 12.7521 156.196C12.7188 155.41 12.2388 154.49 11.4654 154.17C10.4721 153.77 10.5321 154.683 10.4388 155.436C10.3588 156.243 10.1654 157.03 10.8721 157.576C11.1321 157.77 11.8522 157.756 11.3388 158.19C11.1122 158.383 10.5321 158.123 10.2321 158.383C10.0521 157.903 10.1388 157.47 9.89212 156.97C9.65212 156.436 9.27881 155.943 9.41214 155.33C9.63881 154.35 11.1655 153.416 12.0788 153.21C13.3988 152.903 14.1054 154.316 14.3588 155.443C14.5054 156.103 14.4254 156.423 14.9521 156.903C15.4988 157.403 16.1921 157.676 16.7054 158.256C17.5254 159.17 17.6721 160.89 16.6388 161.73C16.1588 161.07 15.4321 160.783 14.8055 160.283C14.3521 159.93 13.3388 159.303 13.0855 158.836C12.7655 158.243 13.0721 157.456 13.3255 156.99C13.4721 156.73 13.8587 156.396 13.7587 156.056C13.6454 155.716 13.2454 155.576 13.0187 155.83" fill="#DA3635"/> +<path d="M13.0254 155.556C12.9921 155.783 12.8788 156.036 12.7521 156.196C12.7188 155.41 12.2388 154.49 11.4654 154.17C10.4721 153.77 10.5321 154.683 10.4388 155.436C10.3588 156.243 10.1654 157.03 10.8721 157.576C11.1321 157.77 11.8522 157.756 11.3388 158.19C11.1122 158.383 10.5321 158.123 10.2321 158.383C10.0521 157.903 10.1388 157.47 9.89212 156.97C9.65212 156.436 9.27881 155.943 9.41214 155.33C9.63881 154.35 11.1655 153.416 12.0788 153.21C13.3988 152.903 14.1054 154.316 14.3588 155.443C14.5054 156.103 14.4254 156.423 14.9521 156.903C15.4988 157.403 16.1921 157.676 16.7054 158.256C17.5254 159.17 17.6721 160.89 16.6388 161.73C16.1588 161.07 15.4321 160.783 14.8055 160.283C14.3521 159.93 13.3388 159.303 13.0855 158.836C12.7655 158.243 13.0721 157.456 13.3255 156.99C13.4721 156.73 13.8587 156.396 13.7587 156.056C13.6454 155.716 13.2454 155.576 13.0187 155.83" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.5322 172.897C25.7255 173.443 26.4455 173.41 26.8655 173.75C27.1855 174.023 27.6722 174.443 27.6522 175.15C27.6389 175.73 27.1389 175.55 26.8789 175.923C26.7189 176.163 26.7989 177.063 26.7322 177.383C26.6522 177.863 26.6056 178.283 26.5856 178.783C26.5523 179.717 26.7456 180.583 26.7322 181.517C26.4589 181.617 25.1256 181.857 24.8856 181.677C24.5789 181.45 24.6922 180.197 24.6589 179.843C24.5789 180.197 24.5589 181.063 24.3056 181.323C24.0456 181.597 23.1322 181.757 22.9056 181.53C22.6189 181.223 22.8922 179.603 22.8589 179.183C22.8455 178.59 22.7589 177.997 22.7122 177.417C22.5989 176.15 22.1989 174.457 22.7789 173.27C23.0522 172.71 23.6322 172.29 24.1922 172.63C24.5122 172.823 24.2055 173.29 24.8522 173.323C25.0322 173.337 25.3322 172.983 25.4122 172.97" fill="white"/> +<path d="M25.5322 172.897C25.7255 173.443 26.4455 173.41 26.8655 173.75C27.1855 174.023 27.6722 174.443 27.6522 175.15C27.6389 175.73 27.1389 175.55 26.8789 175.923C26.7189 176.163 26.7989 177.063 26.7322 177.383C26.6522 177.863 26.6056 178.283 26.5856 178.783C26.5523 179.717 26.7456 180.583 26.7322 181.517C26.4589 181.617 25.1256 181.857 24.8856 181.677C24.5789 181.45 24.6922 180.197 24.6589 179.843C24.5789 180.197 24.5589 181.063 24.3056 181.323C24.0456 181.597 23.1322 181.757 22.9056 181.53C22.6189 181.223 22.8922 179.603 22.8589 179.183C22.8455 178.59 22.7589 177.997 22.7122 177.417C22.5989 176.15 22.1989 174.457 22.7789 173.27C23.0522 172.71 23.6322 172.29 24.1922 172.63C24.5122 172.823 24.2055 173.29 24.8522 173.323C25.0322 173.337 25.3322 172.983 25.4122 172.97" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M25.5322 172.897C25.7255 173.443 26.4455 173.41 26.8655 173.75C27.1855 174.023 27.6722 174.443 27.6522 175.15C27.6389 175.73 27.1389 175.55 26.8789 175.923C26.7189 176.163 26.7989 177.063 26.7322 177.383C26.6522 177.863 26.6056 178.283 26.5856 178.783C26.5523 179.717 26.7456 180.583 26.7322 181.517C26.4589 181.617 25.1256 181.857 24.8856 181.677C24.5789 181.45 24.6922 180.197 24.6589 179.843C24.5789 180.197 24.5589 181.063 24.3056 181.323C24.0456 181.597 23.1322 181.757 22.9056 181.53C22.6189 181.223 22.8922 179.603 22.8589 179.183C22.8455 178.59 22.7589 177.997 22.7122 177.417C22.5989 176.15 22.1989 174.457 22.7789 173.27C23.0522 172.71 23.6322 172.29 24.1922 172.63C24.5122 172.823 24.2055 173.29 24.8522 173.323C25.0322 173.337 25.3322 172.983 25.4122 172.97" fill="white"/> +<path d="M25.5322 172.897C25.7255 173.443 26.4455 173.41 26.8655 173.75C27.1855 174.023 27.6722 174.443 27.6522 175.15C27.6389 175.73 27.1389 175.55 26.8789 175.923C26.7189 176.163 26.7989 177.063 26.7322 177.383C26.6522 177.863 26.6056 178.283 26.5856 178.783C26.5523 179.717 26.7456 180.583 26.7322 181.517C26.4589 181.617 25.1256 181.857 24.8856 181.677C24.5789 181.45 24.6922 180.197 24.6589 179.843C24.5789 180.197 24.5589 181.063 24.3056 181.323C24.0456 181.597 23.1322 181.757 22.9056 181.53C22.6189 181.223 22.8922 179.603 22.8589 179.183C22.8455 178.59 22.7589 177.997 22.7122 177.417C22.5989 176.15 22.1989 174.457 22.7789 173.27C23.0522 172.71 23.6322 172.29 24.1922 172.63C24.5122 172.823 24.2055 173.29 24.8522 173.323C25.0322 173.337 25.3322 172.983 25.4122 172.97" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M24.4388 168.77C24.9055 168.996 24.7455 169.496 25.0788 169.75C25.4322 170.023 25.8654 169.763 26.2654 170.25C27.0188 171.15 26.3655 171.983 25.3655 172.196C25.3655 172.196 24.2721 171.456 24.5455 170.043C24.4521 169.636 24.2788 169.136 24.4388 168.77Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M11.7856 131.985L15.511 129.82C15.9124 129.585 16.1695 129.094 16.2913 128.336L12.5658 130.501C12.4441 131.259 12.1825 131.75 11.7856 131.985Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M21.9697 141.037L25.6951 138.872C25.6184 138.917 25.5417 138.958 25.4605 138.998C24.4502 139.503 23.2641 139.643 21.902 139.409C20.5444 139.179 19.0831 138.61 17.5226 137.708C15.8629 136.752 14.4016 135.701 13.1297 134.551C11.8623 133.401 10.7618 132.242 9.84177 131.069C9.6794 130.862 9.53057 130.722 9.39978 130.645C9.25996 130.564 9.14268 130.555 9.04797 130.609L5.32261 132.774C5.41733 132.72 5.53455 132.729 5.67436 132.81C5.80516 132.887 5.95399 133.027 6.11635 133.234C7.04094 134.407 8.13694 135.566 9.40881 136.716C10.6807 137.862 12.142 138.917 13.8017 139.873C15.3622 140.775 16.819 141.339 18.1811 141.574C19.5387 141.808 20.7248 141.668 21.7396 141.163C21.8163 141.123 21.893 141.082 21.9697 141.037Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M10.4147 129.5L14.1401 127.335C14.1176 127.348 14.095 127.357 14.0725 127.366C13.9011 127.439 13.7072 127.443 13.4817 127.375C13.2607 127.308 13.0216 127.204 12.769 127.06C12.2323 126.753 11.7272 126.284 11.2491 125.657C10.771 125.03 10.3471 124.29 9.98628 123.438C9.62546 122.59 9.33679 121.652 9.12481 120.633C8.91284 119.613 8.80913 118.558 8.81364 117.471C8.81815 115.744 9.06622 114.364 9.55332 113.344C9.97727 112.456 10.541 111.806 11.2356 111.4L7.51019 113.565C6.81111 113.971 6.25186 114.616 5.8279 115.509C5.33629 116.533 5.09273 117.909 5.08822 119.636C5.08371 120.727 5.18742 121.783 5.3994 122.798C5.61138 123.817 5.89553 124.751 6.26086 125.603C6.62618 126.451 7.04565 127.191 7.52373 127.822C8.00181 128.449 8.50695 128.918 9.04366 129.225C9.29172 129.369 9.53074 129.477 9.75625 129.54C9.98176 129.608 10.1757 129.603 10.3471 129.531C10.3696 129.522 10.3922 129.513 10.4147 129.5Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M17.8925 133.586L21.6179 131.421C21.2661 131.624 20.7835 131.552 20.1701 131.196C19.8319 131.002 19.4891 130.74 19.1463 130.415C18.8035 130.095 18.4743 129.685 18.1496 129.184C17.8293 128.684 17.5362 128.088 17.2701 127.394C17.004 126.704 16.783 125.896 16.5981 124.972L12.8727 127.137C13.0576 128.061 13.2786 128.868 13.5447 129.559C13.8108 130.253 14.1039 130.848 14.4241 131.349C14.7444 131.85 15.0781 132.26 15.4209 132.58C15.7637 132.905 16.1064 133.162 16.4447 133.361C17.0536 133.717 17.5362 133.789 17.8925 133.586Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M12.8726 127.136L16.5935 124.976L15.3667 118.711L11.6413 120.876L12.8726 127.136Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M19.6919 136.287L23.4173 134.122C23.494 134.077 23.5707 134.023 23.6428 133.964C23.9676 133.694 24.2066 133.292 24.369 132.756C24.5313 132.219 24.608 131.588 24.6125 130.861C24.617 129.797 24.4411 128.62 24.0893 127.33C23.7375 126.04 23.2144 124.759 22.5198 123.487C21.8252 122.215 20.9547 120.998 19.9174 119.848C18.8801 118.693 17.6758 117.723 16.3138 116.939C15.5831 116.515 14.9427 116.212 14.3879 116.027C13.8377 115.843 13.3145 115.73 12.8229 115.698L9.09748 117.863C9.58909 117.895 10.1123 118.007 10.6625 118.192C11.2127 118.377 11.8577 118.684 12.5884 119.103C13.9504 119.888 15.1546 120.858 16.192 122.012C17.2293 123.163 18.0998 124.376 18.7944 125.652C19.4889 126.929 20.0121 128.209 20.3639 129.495C20.7157 130.785 20.887 131.962 20.887 133.026C20.887 133.753 20.8059 134.384 20.6435 134.921C20.4812 135.457 20.2421 135.859 19.9174 136.129C19.8452 136.188 19.7686 136.242 19.6919 136.287Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M23.5708 143.418L27.2962 141.253C28.3696 140.631 29.222 139.629 29.8579 138.258C30.5435 136.77 30.8908 134.84 30.8998 132.458C30.9043 131.092 30.7555 129.689 30.4623 128.25C30.1692 126.811 29.7452 125.386 29.204 123.975C28.6627 122.563 28.0088 121.183 27.2511 119.834C26.4934 118.486 25.6409 117.218 24.7073 116.032C23.7692 114.846 22.7634 113.759 21.6855 112.78C20.6075 111.802 19.4755 110.967 18.2983 110.286C17.2971 109.709 16.3139 109.267 15.3532 108.965C14.3925 108.662 13.486 108.505 12.6245 108.5C11.7676 108.496 10.9783 108.644 10.2567 108.951C10.0718 109.028 9.89585 109.118 9.72446 109.217L5.9991 111.382C6.17049 111.283 6.34636 111.193 6.53127 111.116C7.2529 110.814 8.04218 110.665 8.89912 110.665C9.75605 110.669 10.6671 110.827 11.6278 111.13C12.5885 111.432 13.5716 111.874 14.5729 112.451C15.7501 113.132 16.8821 113.962 17.9601 114.945C19.038 115.924 20.0483 117.011 20.9819 118.197C21.92 119.383 22.768 120.651 23.5257 121.999C24.2879 123.348 24.9373 124.728 25.4786 126.139C26.0198 127.551 26.4392 128.976 26.7369 130.415C27.0346 131.854 27.1789 133.256 27.1744 134.623C27.1699 137.004 26.8226 138.939 26.1325 140.423C25.4966 141.799 24.6397 142.796 23.5708 143.418Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<path d="M9.09755 117.859L10.5994 125.521C10.8024 126.581 10.9061 127.42 10.9016 128.029C10.9016 128.48 10.852 128.827 10.7528 129.062C10.6535 129.301 10.5182 129.454 10.3513 129.526C10.18 129.599 9.98604 129.603 9.76053 129.535C9.53954 129.468 9.30046 129.364 9.04789 129.22C8.51118 128.913 8.00604 128.444 7.52796 127.817C7.04988 127.19 6.62596 126.45 6.26514 125.598C5.90433 124.75 5.61566 123.812 5.40368 122.793C5.1917 121.773 5.088 120.718 5.09251 119.631C5.09702 117.904 5.34508 116.523 5.83218 115.504C6.31928 114.48 6.99128 113.777 7.83919 113.398C8.68711 113.015 9.68387 112.938 10.8385 113.168C11.9886 113.398 13.2334 113.903 14.5639 114.67C16.0252 115.513 17.3918 116.623 18.6681 117.998C19.9445 119.374 21.054 120.903 21.9967 122.576C22.9438 124.254 23.688 126.022 24.2292 127.876C24.7704 129.729 25.0365 131.569 25.032 133.387C25.0275 135.516 24.7298 137.221 24.139 138.493C23.5527 139.764 22.7498 140.657 21.7395 141.163C20.7293 141.668 19.5431 141.808 18.181 141.573C16.8234 141.343 15.3622 140.775 13.8016 139.873C12.1419 138.917 10.6806 137.866 9.40873 136.716C8.14137 135.565 7.04086 134.406 6.11627 133.234C5.95391 133.026 5.80508 132.886 5.67428 132.81C5.44426 132.679 5.27738 132.733 5.16463 132.968L4.75424 133.973C5.91787 135.547 7.24384 137.022 8.7322 138.393C10.2206 139.764 11.9074 141 13.7926 142.087C15.6824 143.179 17.4369 143.846 19.0605 144.094C20.6887 144.342 22.1004 144.162 23.3001 143.558C24.4998 142.949 25.4425 141.902 26.128 140.418C26.8135 138.93 27.1608 137 27.1698 134.618C27.1743 133.252 27.0255 131.849 26.7323 130.41C26.4392 128.972 26.0152 127.546 25.474 126.135C24.9328 124.723 24.2788 123.343 23.5211 121.994C22.7634 120.646 21.911 119.378 20.9774 118.192C20.0392 117.006 19.0334 115.919 17.9555 114.94C16.8776 113.962 15.7456 113.127 14.5684 112.446C13.5671 111.869 12.5839 111.427 11.6232 111.125C10.6626 110.823 9.756 110.665 8.89456 110.66C8.03762 110.656 7.24834 110.805 6.52671 111.111C5.80508 111.418 5.18268 111.887 4.66401 112.523C4.14534 113.159 3.73493 113.962 3.44176 114.945C3.1486 115.924 2.99978 117.083 2.99978 118.427C2.99527 119.78 3.15761 121.128 3.48686 122.463C3.8161 123.803 4.27164 125.061 4.85345 126.234C5.43527 127.411 6.12079 128.466 6.91007 129.396C7.69935 130.329 8.55179 131.06 9.46736 131.588C10.3198 132.079 11.0098 132.246 11.5465 132.079C12.0833 131.917 12.4215 131.389 12.5659 130.492C13.1973 131.872 13.8829 132.995 14.6225 133.861C15.3622 134.727 16.1605 135.408 17.0084 135.895C17.6623 136.274 18.2306 136.472 18.7087 136.495C19.1913 136.513 19.5927 136.391 19.913 136.116C20.2377 135.845 20.4767 135.444 20.6391 134.907C20.8015 134.37 20.8781 133.739 20.8827 133.013C20.8872 131.948 20.7113 130.771 20.3595 129.481C20.0077 128.191 19.4845 126.91 18.7899 125.639C18.0954 124.367 17.2249 123.149 16.1875 121.999C15.1502 120.844 13.946 119.875 12.5839 119.09C11.8533 118.666 11.2128 118.364 10.6581 118.179C10.1078 118.003 9.58916 117.895 9.09755 117.859ZM12.8726 127.136L11.6458 120.876C12.0697 121.007 12.5343 121.219 13.0349 121.507C13.8513 121.981 14.6045 122.612 15.2855 123.402C15.9665 124.186 16.5484 125.043 17.04 125.968C17.5271 126.888 17.9104 127.844 18.1855 128.832C18.4606 129.82 18.596 130.744 18.596 131.61C18.5915 132.512 18.4111 133.13 18.0502 133.468C17.6894 133.807 17.1527 133.77 16.4446 133.36C16.1063 133.166 15.7636 132.904 15.4208 132.58C15.078 132.26 14.7488 131.849 14.424 131.348C14.1038 130.848 13.8107 130.252 13.5446 129.558C13.2785 128.868 13.053 128.061 12.8726 127.136Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/> +<line x1="0.5" y1="-0.5" x2="29.5" y2="-0.5" transform="matrix(-4.37114e-08 -1 -1 4.37114e-08 18.8359 172.833)" stroke="#DA3635" stroke-linecap="round"/> +</g> +<defs> +<clipPath id="clip0_10191_199277"> +<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/> +</clipPath> +</defs> +</svg>