From c0a1cde4b785f23439a21f5be40fed368545b1ab Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 29 Nov 2023 16:01:42 +0100
Subject: [PATCH 01/77] form base

---
 .../form/form-view/form-view.component.html   |   2 +-
 .../form/form-view/form-view.component.scss   |  13 +-
 src/app/form/form-view/form-view.component.ts |   2 +-
 .../progress-bar/progress-bar.component.scss  |   6 +-
 .../structure-form.component.html             | 440 +++++++++---------
 .../data-share-consent.component.html         |   1 +
 6 files changed, 233 insertions(+), 231 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.html b/src/app/form/form-view/form-view.component.html
index 881f9c02a..08356b8f4 100644
--- a/src/app/form/form-view/form-view.component.html
+++ b/src/app/form/form-view/form-view.component.html
@@ -61,7 +61,7 @@
     [form]="currentForm"
     [linkedStructureId]="linkedStructureId"
     [btnName]="['Précédent', 'Suivant']"
-    [isValid]="isPageValid"
+    [isValid]="true"
     [acceptNewsletter]="userAcceptNewsletter"
     [hasOtherPersonalOffer]="hasOtherPersonalOffer"
     [isPersonalOfferProfile]="isPersonalOfferProfile"
diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 2843c08df..fe82ffdde 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -11,6 +11,7 @@
   height: 100%;
   display: flex;
   flex-direction: column;
+  background-color: $grey-10;
 }
 
 ::ng-deep.page {
@@ -22,16 +23,18 @@
   margin-top: 1rem;
   overflow-y: auto;
   color: $grey-1;
-  background: $white;
-  border-radius: 8px;
-  border: 1px solid $grey-6;
+
   padding: 32px 48px;
+
+  display: flex;
+  justify-content: center;
+
   @media #{$tablet} {
-    margin: 0px 4px;
+    margin: 0px 0.5rem;
     width: auto;
   }
   * {
-    max-width: 700px;
+    max-width: 600px;
   }
   .no-max-width {
     max-width: none;
diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index f00392a45..ba73a2683 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureChoice;
+        this.currentPage = structureFormStep.structureAccompanimentChoice;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss b/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss
index 543c175c7..7e71e9d20 100644
--- a/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss
+++ b/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss
@@ -4,11 +4,11 @@
 @import 'breakpoint';
 
 .progressBar {
-  max-width: 980px;
-  margin: 1rem auto 0;
+  background-color: $grey-9;
+  padding: 1rem 6rem 12px 6rem;
 
   @media #{$tablet} {
-    margin: 0.625rem;
+    padding-inline: 1rem;
   }
   p {
     @include font-bold-14;
diff --git a/src/app/form/form-view/structure-form/structure-form.component.html b/src/app/form/form-view/structure-form/structure-form.component.html
index bcc6a8c26..53c30715f 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.html
+++ b/src/app/form/form-view/structure-form/structure-form.component.html
@@ -1,223 +1,221 @@
-<div class="no-max-width">
-  <ng-container *ngIf="currentStep === structureFormStep.structureChoice">
-    <app-profile-structure-choice
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (createStructure)="goToCreateStructure($event)"
-    />
-  </ng-container>
-  <ng-container
-    *ngIf="
-      currentStep === structureFormStep.structureFormTime ||
-      currentStep === structureFormStep.mailSentInfo ||
-      currentStep === structureFormStep.noStructure
-    "
-    class="no-max-width"
+<ng-container *ngIf="currentStep === structureFormStep.structureChoice">
+  <app-profile-structure-choice
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (createStructure)="goToCreateStructure($event)"
+  />
+</ng-container>
+<ng-container
+  *ngIf="
+    currentStep === structureFormStep.structureFormTime ||
+    currentStep === structureFormStep.mailSentInfo ||
+    currentStep === structureFormStep.noStructure
+  "
+  class="no-max-width"
+>
+  <app-information-step
+    [step]="currentStep"
+    [structureName]="structureForm.value.structureName"
+    [formType]="formTypeEnum.structure"
+    [isClaimed]="!structure.hasNoUserDN"
+    (goNext)="setValidationsForm()"
+  />
+</ng-container>
+<div *ngIf="currentStep === structureFormStep.structureNameAndAddress">
+  <app-structure-name-and-address
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (addressStructure)="setAddressStructure($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureContact">
+  <app-structure-contact
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureAccompanimentChoice">
+  <app-structure-accompaniment-choice
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (radioChange)="onRadioChange($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureContactCompletion">
+  <app-structure-contact-completion
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureType">
+  <app-structure-type
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (typeStructure)="setTypeStructure($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureAccessModality">
+  <app-structure-access-modality
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [accessModality]="accessModality"
+    (validateForm)="setValidationsForm()"
+    (checkChange)="onCheckChange($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureHours">
+  <app-structure-hours
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [hoursForm]="hoursForm"
+    (validateForm)="setValidationsForm()"
+    (hours)="updateHours($event)"
+    (hoursError)="setHoursError()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structurePmr">
+  <app-structure-pmr
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [title]="'La structure est-elle accessible pour les personnes à mobilité réduite ?'"
+    (radioChange)="onRadioChange($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureWebAndSocialNetwork">
+  <app-structure-web-and-social-network
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [showWebsite]="showWebsite"
+    [showSocialNetwork]="showSocialNetwork"
+    (toggleSocials)="toggleSocialNetwork()"
+    (toggleWebsite)="toggleWebSite()"
+    (validateForm)="setValidationsForm()"
+  >
+  </app-structure-web-and-social-network>
+</div>
+<div *ngIf="currentStep === structureFormStep.structurePublicTarget">
+  <app-structure-public-target
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [age]="age"
+    (validateForm)="setValidationsForm()"
+    (updateChoice)="updateChoice($event)"
   >
-    <app-information-step
-      [step]="currentStep"
-      [structureName]="structureForm.value.structureName"
-      [formType]="formTypeEnum.structure"
-      [isClaimed]="!structure.hasNoUserDN"
-      (goNext)="setValidationsForm()"
-    />
-  </ng-container>
-  <div *ngIf="currentStep === structureFormStep.structureNameAndAddress">
-    <app-structure-name-and-address
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (addressStructure)="setAddressStructure($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureContact">
-    <app-structure-contact
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureAccompanimentChoice">
-    <app-structure-accompaniment-choice
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (radioChange)="onRadioChange($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureContactCompletion">
-    <app-structure-contact-completion
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureType">
-    <app-structure-type
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (typeStructure)="setTypeStructure($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureAccessModality">
-    <app-structure-access-modality
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [accessModality]="accessModality"
-      (validateForm)="setValidationsForm()"
-      (checkChange)="onCheckChange($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureHours">
-    <app-structure-hours
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [hoursForm]="hoursForm"
-      (validateForm)="setValidationsForm()"
-      (hours)="updateHours($event)"
-      (hoursError)="setHoursError()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structurePmr">
-    <app-structure-pmr
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [title]="'La structure est-elle accessible pour les personnes à mobilité réduite ?'"
-      (radioChange)="onRadioChange($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureWebAndSocialNetwork">
-    <app-structure-web-and-social-network
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [showWebsite]="showWebsite"
-      [showSocialNetwork]="showSocialNetwork"
-      (toggleSocials)="toggleSocialNetwork()"
-      (toggleWebsite)="toggleWebSite()"
-      (validateForm)="setValidationsForm()"
-    >
-    </app-structure-web-and-social-network>
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structurePublicTarget">
-    <app-structure-public-target
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [age]="age"
-      (validateForm)="setValidationsForm()"
-      (updateChoice)="updateChoice($event)"
-    >
-    </app-structure-public-target>
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structurePublicTargetOptional">
-    <app-structure-public-target
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [handicaps]="handicaps"
-      [genre]="genre"
-      [languageAndIlliteracy]="languageAndIlliteracy"
-      [isMandatoryFields]="false"
-      (validateForm)="setValidationsForm()"
-      (updateChoice)="updateChoice($event)"
-    >
-    </app-structure-public-target>
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureDigitalHelpingAccompanimentOther">
-    <app-structure-public-target-other
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (updateChoice)="updateChoice($event)"
-    >
-    </app-structure-public-target-other>
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureTrainingType">
-    <app-structure-training-type
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [trainingCategories]="trainingCategories"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureTrainingPrice">
-    <app-structure-training-price
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (radioChange)="onRadioChange($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureWifi">
-    <app-structure-wifi
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-      (checkChange)="onCheckChange($event)"
-      (radioChange)="onRadioChange($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureEquipments">
-    <app-structure-equipments
-      [structureForm]="structureForm"
-      [selfServiceMaterial]="equipments"
-      [isEditMode]="isEditMode"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureLabels">
-    <app-structure-labels
-      [structureForm]="structureForm"
-      [labelsQualifications]="labelsQualifications"
-      [isEditMode]="isEditMode"
-      (checkChange)="onCheckChange($event)"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureSolidarityMaterial">
-    <app-structure-solidarity-material
-      [structureForm]="structureForm"
-      [solidarityMaterial]="solidarityMaterial"
-      [isEditMode]="isEditMode"
-      (validateForm)="setValidationsForm()"
-      (updateChoice)="updateChoice($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureDigitalHelpingAccompaniment">
-    <app-structure-digital-helping-accompaniment
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      [onlineProcedures]="onlineProcedures"
-      (validateForm)="setValidationsForm()"
-      (updateChoice)="updateChoice($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureDescription">
-    <app-structure-description
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureCovidInfo">
-    <app-structure-covid-info
-      [isEditMode]="isEditMode"
-      [structureForm]="structureForm"
-      (validateForm)="setValidationsForm()"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureConsent">
-    <app-structure-consent
-      [structureForm]="structureForm"
-      [isEditMode]="isEditMode"
-      (clickAcceptOpenData)="acceptOpenData($event)"
-      (clickAcceptDataBeSaved)="acceptDataBeSaved($event)"
-    />
-  </div>
-  <div *ngIf="currentStep === structureFormStep.structureCreationFinishedInfo" class="no-max-width">
-    <app-information-step
-      [step]="currentStep"
-      [formType]="formTypeEnum.structure"
-      [hasPersonalOffer]="profile.job ? profile.job.hasPersonalOffer : false"
-    />
-  </div>
+  </app-structure-public-target>
+</div>
+<div *ngIf="currentStep === structureFormStep.structurePublicTargetOptional">
+  <app-structure-public-target
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [handicaps]="handicaps"
+    [genre]="genre"
+    [languageAndIlliteracy]="languageAndIlliteracy"
+    [isMandatoryFields]="false"
+    (validateForm)="setValidationsForm()"
+    (updateChoice)="updateChoice($event)"
+  >
+  </app-structure-public-target>
+</div>
+<div *ngIf="currentStep === structureFormStep.structureDigitalHelpingAccompanimentOther">
+  <app-structure-public-target-other
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (updateChoice)="updateChoice($event)"
+  >
+  </app-structure-public-target-other>
+</div>
+<div *ngIf="currentStep === structureFormStep.structureTrainingType">
+  <app-structure-training-type
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [trainingCategories]="trainingCategories"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureTrainingPrice">
+  <app-structure-training-price
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (radioChange)="onRadioChange($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureWifi">
+  <app-structure-wifi
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+    (checkChange)="onCheckChange($event)"
+    (radioChange)="onRadioChange($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureEquipments">
+  <app-structure-equipments
+    [structureForm]="structureForm"
+    [selfServiceMaterial]="equipments"
+    [isEditMode]="isEditMode"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureLabels">
+  <app-structure-labels
+    [structureForm]="structureForm"
+    [labelsQualifications]="labelsQualifications"
+    [isEditMode]="isEditMode"
+    (checkChange)="onCheckChange($event)"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureSolidarityMaterial">
+  <app-structure-solidarity-material
+    [structureForm]="structureForm"
+    [solidarityMaterial]="solidarityMaterial"
+    [isEditMode]="isEditMode"
+    (validateForm)="setValidationsForm()"
+    (updateChoice)="updateChoice($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureDigitalHelpingAccompaniment">
+  <app-structure-digital-helping-accompaniment
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    [onlineProcedures]="onlineProcedures"
+    (validateForm)="setValidationsForm()"
+    (updateChoice)="updateChoice($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureDescription">
+  <app-structure-description
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureCovidInfo">
+  <app-structure-covid-info
+    [isEditMode]="isEditMode"
+    [structureForm]="structureForm"
+    (validateForm)="setValidationsForm()"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureConsent">
+  <app-structure-consent
+    [structureForm]="structureForm"
+    [isEditMode]="isEditMode"
+    (clickAcceptOpenData)="acceptOpenData($event)"
+    (clickAcceptDataBeSaved)="acceptDataBeSaved($event)"
+  />
+</div>
+<div *ngIf="currentStep === structureFormStep.structureCreationFinishedInfo" class="no-max-width">
+  <app-information-step
+    [step]="currentStep"
+    [formType]="formTypeEnum.structure"
+    [hasPersonalOffer]="profile.job ? profile.job.hasPersonalOffer : false"
+  />
 </div>
diff --git a/src/app/shared/components/data-share-consent/data-share-consent.component.html b/src/app/shared/components/data-share-consent/data-share-consent.component.html
index 5506dc92f..ddd9f4ec5 100644
--- a/src/app/shared/components/data-share-consent/data-share-consent.component.html
+++ b/src/app/shared/components/data-share-consent/data-share-consent.component.html
@@ -20,6 +20,7 @@
           />
 
           <div *ngFor="let structure of dataConsentPendingStructures">
+            <!-- TODO convert to switch, false by default ? -->
             <app-radio-form
               layoutGap="8px"
               name="{{ structure.structureName }}"
-- 
GitLab


From 9a0101b7a21b84000480520e756f5f929fbfdc26 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 10:41:56 +0100
Subject: [PATCH 02/77] wip radio option

---
 .../form/form-view/form-view.component.scss   |  6 ++
 src/app/form/form-view/form-view.component.ts |  2 +-
 .../progress-bar/progress-bar.component.scss  |  2 +-
 .../structure-consent.component.html          |  1 -
 .../structure-form.component.ts               |  5 +-
 .../structure-wifi.component.html             | 18 +++-
 .../structure-wifi.component.ts               |  6 +-
 src/app/shared/components/index.ts            |  3 +
 .../radio-form/radio-form.component.html      | 39 +++------
 .../radio-form/radio-form.component.scss      | 86 ++++---------------
 .../radio-form/radio-form.component.ts        |  1 +
 .../radio-form/radio-form.stories.ts          | 28 ++++++
 .../radio-option/radio-option.component.html  |  3 +
 .../radio-option/radio-option.component.ts    | 21 +++++
 .../radio-option/radio-option.stories.ts      | 39 +++++++++
 .../components/v3/radio/radio.component.scss  |  2 +-
 src/app/shared/shared.module.ts               |  2 +
 17 files changed, 157 insertions(+), 107 deletions(-)
 create mode 100644 src/app/shared/components/radio-form/radio-form.stories.ts
 create mode 100644 src/app/shared/components/radio-form/radio-option/radio-option.component.html
 create mode 100644 src/app/shared/components/radio-form/radio-option/radio-option.component.ts
 create mode 100644 src/app/shared/components/radio-form/radio-option/radio-option.stories.ts

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index fe82ffdde..16d18c787 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -48,6 +48,12 @@
       margin-left: 1rem;
     }
   }
+  // TODO move this somewhere more appropriate
+  .formGroup {
+    display: flex;
+    flex-direction: column;
+    gap: 1rem;
+  }
 }
 
 ::ng-deep.title {
diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index ba73a2683..3f1d8c2de 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureAccompanimentChoice;
+        this.currentPage = structureFormStep.structureWifi;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss b/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss
index 7e71e9d20..3d2c2b9dc 100644
--- a/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss
+++ b/src/app/form/form-view/global-components/progress-bar/progress-bar.component.scss
@@ -5,7 +5,7 @@
 
 .progressBar {
   background-color: $grey-9;
-  padding: 1rem 6rem 12px 6rem;
+  padding: 1rem 6rem;
 
   @media #{$tablet} {
     padding-inline: 1rem;
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
index 2a35cf201..4b8664a90 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
@@ -39,7 +39,6 @@
     <div class="dataShareConsent">
       <app-radio-form
         *ngIf="isEditMode"
-        [horizontal]="false"
         [selectedOption]="structureForm.get('dataShareConsentDate').value ? true : false"
         (selectedEvent)="onRadioChange($event)"
       >
diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index 41e798f81..f545fed92 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -321,8 +321,9 @@ export class StructureFormComponent implements OnChanges, OnInit {
     return false;
   }
 
-  public onRadioChange(nameAndEvent: { name: string; value: boolean }): void {
-    const { name, value } = nameAndEvent;
+  public onRadioChange({ name, value }: { name: string; value: string | boolean }): void {
+    // const { name, value } = nameAndEvent;
+    // TODO convert string to bool if necessary
     this.structureForm.get(name).setValue(value);
     this.setValidationsForm();
   }
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
index b1e261240..5bf16d970 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
@@ -13,11 +13,25 @@
       <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
     </div>
   </div>
-  <app-radio-form
+  <!-- <app-radio-form
     [selectedOption]="
       isEditMode ? isInArray('selfServiceMaterial', 'wifiEnAccesLibre') : structureForm.get('freeWifi').value
     "
     (selectedEvent)="onCheckChange($event, 'categories.selfServiceMaterial', 'wifiEnAccesLibre')"
   >
-  </app-radio-form>
+  </app-radio-form> -->
+  <div class="formGroup">
+    <app-radio-option
+      [label]="'Oui'"
+      [value]="true"
+      [selected]="structureForm.get('freeWifi').value === true"
+      (selectedEvent)="onCheckChange($event, 'categories.selfServiceMaterial', 'wifiEnAccesLibre')"
+    />
+    <app-radio-option
+      [label]="'Non'"
+      [value]="false"
+      [selected]="structureForm.get('freeWifi').value === false"
+      (selectedEvent)="onCheckChange($event, 'categories.selfServiceMaterial', 'wifiEnAccesLibre')"
+    />
+  </div>
 </form>
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
index 0222cb1c9..c21c3465f 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
@@ -20,12 +20,12 @@ export class StructureWifiComponent implements OnInit {
   public isInArray(formControlName: string, term: string): boolean {
     return this.formUtils.isInCategoryArray(term, formControlName, this.structureForm);
   }
-  public onCheckChange(event, catId: string, modId: string): void {
+  public onCheckChange(event: { name: string; value: string | boolean }, catId: string, modId: string): void {
     this.checkChange.emit({ event, formControlName: catId, value: modId });
-    this.onRadioChange('freeWifi', event);
+    this.onRadioChange('freeWifi', event.value);
   }
 
-  public onRadioChange(name: string, value: boolean): void {
+  public onRadioChange(name: string, value: string | boolean): void {
     this.radioChange.emit({ name, value });
   }
   public goBack(): void {
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index 1482ec951..68f812675 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -13,6 +13,7 @@ import { ModalConfirmationComponent } from './modal-confirmation/modal-confirmat
 import { ModalJoinConfirmationComponent } from './modal-join-confirmation/modal-join-confirmation.component';
 import { PasswordFormComponent } from './password-form/password-form.component';
 import { RadioFormComponent } from './radio-form/radio-form.component';
+import { RadioOptionComponent } from './radio-form/radio-option/radio-option.component';
 import { StructureDetailPrintComponent } from './structure-detail-print/structure-detail-print.component';
 import { StructurePmrComponent } from './structure-pmr/structure-pmr.component';
 import { StructureTypePickerComponent } from './structure-type-picker/structure-type-picker.component';
@@ -44,6 +45,7 @@ export {
   PasswordFormComponent,
   ProgressBarComponent,
   RadioFormComponent,
+  RadioOptionComponent,
   StructureDetailPrintComponent,
   StructurePmrComponent,
   StructurePublicTargetComponent,
@@ -74,6 +76,7 @@ export const SharedComponents = [
   PasswordFormComponent,
   ProgressBarComponent,
   RadioFormComponent,
+  RadioOptionComponent,
   RadioV3Component,
   StructureDetailPrintComponent,
   StructurePmrComponent,
diff --git a/src/app/shared/components/radio-form/radio-form.component.html b/src/app/shared/components/radio-form/radio-form.component.html
index 328c5850a..e9d44fdcc 100644
--- a/src/app/shared/components/radio-form/radio-form.component.html
+++ b/src/app/shared/components/radio-form/radio-form.component.html
@@ -1,35 +1,16 @@
-<div [fxLayout]="horizontal ? 'row' : 'column'" [fxLayoutGap]="horizontal ? (layoutGap ? layoutGap : '17px') : ''">
-  <div *ngIf="name" fxLayout="row" fxLayoutAlign=" center" class="name" [fxLayoutGap]="layoutGap ? layoutGap : '17px'">
+<div class="radioForm">
+  <!-- <div *ngIf="name">
     {{ name }}
+  </div> -->
+  <div class="radioButton" role="button" [ngClass]="{ selected: selectedOption === true }" (click)="clicked(true)">
+    <app-radio [id]="'oui'" [checked]="selectedOption === true" [label]="'Oui'" />
   </div>
-  <button
-    type="button"
-    fxLayout="row"
-    fxLayoutAlign=" center"
-    [ngClass]="{ selected: selectedOption === true && selectedOption !== null }"
-    [fxLayoutGap]="layoutGap ? layoutGap : '17px'"
-    (click)="clicked(true)"
-  >
-    <div class="checkmark">
-      <svg class="validate" aria-hidden="true">
-        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVectorFull'"></use>
-      </svg>
-    </div>
-    <p>Oui</p>
-  </button>
-  <button
-    type="button"
-    fxLayout="row"
-    fxLayoutAlign=" center"
+  <div
+    class="radioButton"
+    role="button"
     [ngClass]="{ selected: !selectedOption && selectedOption !== null }"
-    [fxLayoutGap]="layoutGap ? layoutGap : '17px'"
     (click)="clicked(false)"
   >
-    <div class="checkmark">
-      <svg class="validate" aria-hidden="true">
-        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVectorFull'"></use>
-      </svg>
-    </div>
-    <p>Non</p>
-  </button>
+    <app-radio [id]="'non'" [checked]="selectedOption === false" [label]="'Non'" />
+  </div>
 </div>
diff --git a/src/app/shared/components/radio-form/radio-form.component.scss b/src/app/shared/components/radio-form/radio-form.component.scss
index 819a33941..1ac9e8cb6 100644
--- a/src/app/shared/components/radio-form/radio-form.component.scss
+++ b/src/app/shared/components/radio-form/radio-form.component.scss
@@ -1,78 +1,30 @@
 @import 'color';
 @import 'typography';
 
-svg {
-  fill: $primary-color;
-  stroke: $primary-color;
-  &.validate {
-    width: 100%;
-    height: 100%;
-    stroke: $green-1;
-    display: none;
-  }
+.radioForm {
+  display: flex;
+  flex-direction: column;
+  gap: 1rem;
 }
 
-button {
-  width: 296px;
-  background: $grey-9;
-  border-radius: 4px;
-  padding: 0 16px;
-  height: 65px;
-  border: none;
+.radioButton {
+  width: 100%;
   cursor: pointer;
-  margin: 8px 0 0 0;
-  transition: unset;
-
+  box-sizing: border-box;
+  min-height: 80px;
+  background-color: $grey-10;
+  display: flex;
+  align-items: center;
+  gap: 1rem;
+  border: 1px solid $grey-4;
+  border-radius: 8px;
+  padding: 1rem;
+  transition: all 0.2s ease-in-out;
   &:hover {
-    border: 1px solid $grey-5;
-    p {
-      color: $grey-3;
-    }
+    border-color: $grey-2;
   }
-
   &.selected {
-    background: $white;
-    border: 3px solid $green-1;
-    .validate {
-      display: initial;
-    }
-    .checkmark {
-      width: 24px;
-      height: 24px;
-      // to compensate viewbox of svg
-      transform: translate(-4px);
-      margin-right: 10px !important;
-      border: none;
-    }
-  }
-  p {
-    @include font-bold-16;
-  }
-  .nomargin {
-    text-align: left !important;
-    margin: 0;
+    border-color: $red;
+    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
   }
-  .hint {
-    @include font-regular-14;
-    margin: 0;
-  }
-  .checkmark {
-    width: 20px;
-    height: 20px;
-    box-sizing: border-box;
-    background: $white;
-    border: 1px solid $grey-3;
-    border-radius: 10px;
-  }
-}
-
-.name {
-  width: 310px;
-  background: $grey-9;
-  border-radius: 4px;
-  padding: 0 16px;
-  font-size: $font-size-small;
-  outline: none;
-  border: none;
-  margin: 8px 0;
 }
diff --git a/src/app/shared/components/radio-form/radio-form.component.ts b/src/app/shared/components/radio-form/radio-form.component.ts
index 43f335c45..2fb834075 100644
--- a/src/app/shared/components/radio-form/radio-form.component.ts
+++ b/src/app/shared/components/radio-form/radio-form.component.ts
@@ -8,6 +8,7 @@ import { Observable, Subscription } from 'rxjs';
 })
 export class RadioFormComponent implements OnInit, OnDestroy {
   @Input() public selectedOption: boolean | string;
+  // TO REMOVE
   @Input() public horizontal: boolean;
   @Input() public layoutGap: string;
   @Input() public name: string;
diff --git a/src/app/shared/components/radio-form/radio-form.stories.ts b/src/app/shared/components/radio-form/radio-form.stories.ts
new file mode 100644
index 000000000..e3c420b96
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-form.stories.ts
@@ -0,0 +1,28 @@
+import { CommonModule } from '@angular/common';
+import type { Meta, StoryObj } from '@storybook/angular';
+import { componentWrapperDecorator, moduleMetadata } from '@storybook/angular';
+import { SvgIconComponent } from '../svg-icon/svg-icon.component';
+import { RadioV3Component } from '../v3/radio/radio.component';
+import { RadioFormComponent } from './radio-form.component';
+
+// More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
+const meta: Meta<RadioFormComponent> = {
+  title: 'Form/Radio group',
+  component: RadioFormComponent,
+  tags: ['autodocs'],
+  decorators: [
+    moduleMetadata({
+      declarations: [SvgIconComponent, RadioV3Component],
+      imports: [CommonModule],
+    }),
+  ],
+  argTypes: {},
+};
+
+export default meta;
+type Story = StoryObj<RadioFormComponent>;
+
+export const RadioGroup: Story = {
+  args: {},
+  decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
+};
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.html b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
new file mode 100644
index 000000000..6ab27d0b0
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
@@ -0,0 +1,3 @@
+<div class="radioButton" role="button" [ngClass]="{ selected: selected }" (click)="clicked({ name: id, value })">
+  <app-radio [id]="id" [checked]="selected === true" [label]="label" />
+</div>
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts b/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
new file mode 100644
index 000000000..fbdf33cae
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
@@ -0,0 +1,21 @@
+import { Component, EventEmitter, Input, Output } from '@angular/core';
+
+@Component({
+  selector: 'app-radio-option',
+  templateUrl: './radio-option.component.html',
+  styleUrls: ['../radio-form.component.scss'],
+})
+export class RadioOptionComponent {
+  @Input() id: string;
+  @Input() label: string;
+  @Input() value: string | boolean;
+  @Input() selected: boolean;
+
+  @Output() selectedEvent = new EventEmitter<{ name: string; value: string | boolean }>();
+
+  public clicked({ name, value }: { name: string; value: string | boolean }): void {
+    // this.selected =
+    // this.selectedOption = val;
+    this.selectedEvent.emit({ name, value });
+  }
+}
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts b/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
new file mode 100644
index 000000000..043afd845
--- /dev/null
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
@@ -0,0 +1,39 @@
+import { CommonModule } from '@angular/common';
+import type { Meta, StoryObj } from '@storybook/angular';
+import { componentWrapperDecorator, moduleMetadata } from '@storybook/angular';
+import { SvgIconComponent } from '../../svg-icon/svg-icon.component';
+import { RadioV3Component } from '../../v3/radio/radio.component';
+import { RadioOptionComponent } from './radio-option.component';
+
+// More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
+const meta: Meta<RadioOptionComponent> = {
+  title: 'Form/Radio option',
+  component: RadioOptionComponent,
+  tags: ['autodocs'],
+  decorators: [
+    moduleMetadata({
+      declarations: [SvgIconComponent, RadioV3Component],
+      imports: [CommonModule],
+    }),
+  ],
+  argTypes: {},
+};
+
+export default meta;
+type Story = StoryObj<RadioOptionComponent>;
+
+export const RadioOption: Story = {
+  args: {
+    id: 'yes',
+    label: 'Oui',
+  },
+  decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
+};
+export const RadioOptionSelected: Story = {
+  args: {
+    id: 'yes',
+    label: 'Oui',
+    selected: true,
+  },
+  decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
+};
diff --git a/src/app/shared/components/v3/radio/radio.component.scss b/src/app/shared/components/v3/radio/radio.component.scss
index 51742cd62..404f6736e 100644
--- a/src/app/shared/components/v3/radio/radio.component.scss
+++ b/src/app/shared/components/v3/radio/radio.component.scss
@@ -4,7 +4,7 @@
 .radioContainer {
   display: flex;
   gap: 8px;
-  align-items: end;
+  align-items: center;
 
   input {
     margin: 0;
diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts
index 91aa2d258..8348a640d 100644
--- a/src/app/shared/shared.module.ts
+++ b/src/app/shared/shared.module.ts
@@ -12,6 +12,7 @@ import { RadioV3Component } from './components/v3/radio/radio.component';
 import { TextareaV3Component } from './components/v3/textarea/textarea.component';
 import { SharedDirectives } from './directives';
 import { SharedPipes } from './pipes';
+import { RadioOptionComponent } from './components/radio-form/radio-option/radio-option.component';
 @NgModule({
   imports: [CommonModule, FormsModule, RouterModule, FlexLayoutModule, ReactiveFormsModule],
   declarations: [
@@ -24,6 +25,7 @@ import { SharedPipes } from './pipes';
     AppointmentChoiceComponent,
     InputV3Component,
     TextareaV3Component,
+    RadioOptionComponent,
   ],
   exports: [
     ...SharedPipes,
-- 
GitLab


From 540e1106ecff08c28c112ac86005bb319a511c1a Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 13:15:10 +0100
Subject: [PATCH 03/77] wip

---
 src/app/form/form-view/form-view-routing.module.ts           | 5 ++---
 .../form-view/structure-form/structure-form.component.ts     | 2 ++
 .../structure-wifi/structure-wifi.component.ts               | 1 +
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/app/form/form-view/form-view-routing.module.ts b/src/app/form/form-view/form-view-routing.module.ts
index 57186ba5c..256b8a79f 100644
--- a/src/app/form/form-view/form-view-routing.module.ts
+++ b/src/app/form/form-view/form-view-routing.module.ts
@@ -1,8 +1,7 @@
 import { NgModule } from '@angular/core';
-import { Routes, RouterModule } from '@angular/router';
+import { RouterModule, Routes } from '@angular/router';
 import { AuthGuard } from '../../guards/auth.guard';
 import { DeactivateGuard } from '../../guards/deactivate.guard';
-import { RoleGuard } from '../../guards/role.guard';
 import { StructureResolver } from '../../resolvers/structure.resolver';
 import { TempUserResolver } from '../../resolvers/temp-user.resolver';
 import { RouteRole } from '../../shared/enum/routeRole.enum';
@@ -17,7 +16,7 @@ const routes: Routes = [
   {
     path: 'structure/:id/:step',
     component: FormViewComponent,
-    canActivate: [RoleGuard],
+    // canActivate: [RoleGuard],
     data: { allowedRoles: [RouteRole.structureAdmin] },
     resolve: {
       structure: StructureResolver,
diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index f545fed92..69fffd76d 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -296,6 +296,7 @@ export class StructureFormComponent implements OnChanges, OnInit {
     formControlName: string;
     value: string;
   }): void {
+    console.log(event, formControlName, value);
     const formArray: UntypedFormArray = this.structureForm.get(formControlName) as UntypedFormArray;
     if (event) {
       // Add a new control in the arrayForm
@@ -324,6 +325,7 @@ export class StructureFormComponent implements OnChanges, OnInit {
   public onRadioChange({ name, value }: { name: string; value: string | boolean }): void {
     // const { name, value } = nameAndEvent;
     // TODO convert string to bool if necessary
+    console.log(name, value);
     this.structureForm.get(name).setValue(value);
     this.setValidationsForm();
   }
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
index c21c3465f..d7c337e4c 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
@@ -16,6 +16,7 @@ export class StructureWifiComponent implements OnInit {
   public formUtils = new formUtils();
   ngOnInit(): void {
     this.validateForm.emit();
+    console.log('freewifi', this.structureForm.get('freeWifi').value);
   }
   public isInArray(formControlName: string, term: string): boolean {
     return this.formUtils.isInCategoryArray(term, formControlName, this.structureForm);
-- 
GitLab


From 245d4d46b3a9dc776a39b8070fd2dc0638f743bb Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 13:27:40 +0100
Subject: [PATCH 04/77] remove inferred type

---
 .../form/form-view/structure-form/structure-form.component.ts   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index 69fffd76d..8a8cacc0d 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -85,7 +85,7 @@ export class StructureFormComponent implements OnChanges, OnInit {
 
   ngOnInit(): void {
     this.setCategories();
-    this.profileService.getProfile().then((user: User) => {
+    this.profileService.getProfile().then((user) => {
       this.profile = user;
     });
     if (this.isEditMode) {
-- 
GitLab


From 05cb521284c274951128ec658f0c5e7df9fd0e95 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 13:41:37 +0100
Subject: [PATCH 05/77] free workshop

---
 .../structure-training-price.component.html   | 71 ++++++-------------
 .../structure-wifi.component.ts               |  2 +-
 .../radio-option/radio-option.component.html  |  9 ++-
 3 files changed, 32 insertions(+), 50 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
index 6a95a9193..2744c8dc1 100644
--- a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
@@ -13,52 +13,27 @@
       <h3>Ces accompagnements sont-ils gratuits&nbsp;?</h3>
     </div>
   </div>
-  <button
-    type="button"
-    fxLayout="row"
-    fxLayoutAlign=" center"
-    fxLayoutGap="16px"
-    [ngClass]="{ selected: selectedOption === FreeWorkshop.yes }"
-    (click)="onRadioChange(FreeWorkshop.yes)"
-  >
-    <div class="checkmark">
-      <svg class="validate" aria-hidden="true">
-        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVectorFull'" />
-      </svg>
-    </div>
-    <p>Oui</p>
-  </button>
-  <button
-    type="button"
-    fxLayout="row"
-    fxLayoutAlign=" center"
-    fxLayoutGap="16px"
-    [ngClass]="{ selected: selectedOption === FreeWorkshop.underCondition }"
-    (click)="onRadioChange(FreeWorkshop.underCondition)"
-  >
-    <div class="checkmark">
-      <svg class="validate" aria-hidden="true">
-        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVectorFull'" />
-      </svg>
-    </div>
-    <div>
-      <p class="nomargin">Oui, sous condition</p>
-      <p class="hint">(adhésion à l'association...)</p>
-    </div>
-  </button>
-  <button
-    type="button"
-    fxLayout="row"
-    fxLayoutAlign=" center"
-    fxLayoutGap="16px"
-    [ngClass]="{ selected: selectedOption === FreeWorkshop.no }"
-    (click)="onRadioChange(FreeWorkshop.no)"
-  >
-    <div class="checkmark">
-      <svg class="validate" aria-hidden="true">
-        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVectorFull'" />
-      </svg>
-    </div>
-    <p>Non</p>
-  </button>
+  <div class="formGroup">
+    <app-radio-option
+      [id]="'yes'"
+      [label]="FreeWorkshop.yes"
+      [value]="FreeWorkshop.yes"
+      [selected]="selectedOption === FreeWorkshop.yes"
+      (click)="onRadioChange(FreeWorkshop.yes)"
+    />
+    <app-radio-option
+      [id]="'condition'"
+      [label]="FreeWorkshop.underCondition"
+      [value]="FreeWorkshop.underCondition"
+      [selected]="selectedOption === FreeWorkshop.underCondition"
+      (click)="onRadioChange(FreeWorkshop.underCondition)"
+    />
+    <app-radio-option
+      [id]="'no'"
+      [label]="FreeWorkshop.no"
+      [value]="FreeWorkshop.no"
+      [selected]="selectedOption === FreeWorkshop.no"
+      (click)="onRadioChange(FreeWorkshop.no)"
+    />
+  </div>
 </form>
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
index d7c337e4c..6dd5c80aa 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.ts
@@ -22,7 +22,7 @@ export class StructureWifiComponent implements OnInit {
     return this.formUtils.isInCategoryArray(term, formControlName, this.structureForm);
   }
   public onCheckChange(event: { name: string; value: string | boolean }, catId: string, modId: string): void {
-    this.checkChange.emit({ event, formControlName: catId, value: modId });
+    this.checkChange.emit({ event: event.value, formControlName: catId, value: modId });
     this.onRadioChange('freeWifi', event.value);
   }
 
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.html b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
index 6ab27d0b0..7b48e29d3 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
@@ -1,3 +1,10 @@
-<div class="radioButton" role="button" [ngClass]="{ selected: selected }" (click)="clicked({ name: id, value })">
+<div
+  class="radioButton"
+  role="button"
+  tabindex="0"
+  [ngClass]="{ selected: selected }"
+  (click)="clicked({ name: id, value })"
+  (keyup.enter)="clicked({ name: id, value })"
+>
   <app-radio [id]="id" [checked]="selected === true" [label]="label" />
 </div>
-- 
GitLab


From f9cb094787dd249c570b4e2098eff831f1d43dd2 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 15:47:20 +0100
Subject: [PATCH 06/77] consent

---
 src/app/form/form-view/form-view.component.ts |  2 +-
 ...ucture-accompaniment-choice.component.html | 20 ++++++++--
 .../structure-consent.component.html          | 40 +++++++++++--------
 .../structure-consent.component.scss          |  2 +-
 .../structure-form.component.html             | 12 ++----
 .../structure-form.component.ts               |  5 +++
 .../structure-training-price.component.html   |  6 ++-
 .../radio-option/radio-option.component.html  |  2 +-
 .../radio-option/radio-option.component.ts    |  4 +-
 .../radio-option/radio-option.stories.ts      |  9 +++++
 .../structure-pmr.component.html              | 20 ++++++++--
 11 files changed, 85 insertions(+), 37 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 684fc2cda..06a4e9f8b 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureWifi;
+        this.currentPage = structureFormStep.structureConsent;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/structure-form/structure-accompaniment-choice/structure-accompaniment-choice.component.html b/src/app/form/form-view/structure-form/structure-accompaniment-choice/structure-accompaniment-choice.component.html
index c768f4a3a..546c40ec0 100644
--- a/src/app/form/form-view/structure-form/structure-accompaniment-choice/structure-accompaniment-choice.component.html
+++ b/src/app/form/form-view/structure-form/structure-accompaniment-choice/structure-accompaniment-choice.component.html
@@ -3,8 +3,20 @@
     <h3>La structure dispose-t-elle d'un lieu d'accueil pour faire de l'accompagnement ou de la formation&nbsp;?</h3>
     <p>Exemple : accompagnement aux démarches administratives...</p>
   </div>
-  <app-radio-form
-    [selectedOption]="structureForm.get('placeOfReception').value"
-    (selectedEvent)="onRadioChange('placeOfReception', $event)"
-  />
+  <div class="formGroup">
+    <app-radio-option
+      [id]="'yes'"
+      [label]="'Oui'"
+      [value]="true"
+      [selected]="structureForm.get('placeOfReception').value === true"
+      (click)="onRadioChange('placeOfReception', true)"
+    />
+    <app-radio-option
+      [id]="'no'"
+      [label]="'Non'"
+      [value]="false"
+      [selected]="structureForm.get('placeOfReception').value === false"
+      (click)="onRadioChange('placeOfReception', false)"
+    />
+  </div>
 </form>
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
index 1e1fa2d45..6ca6d879f 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
@@ -2,9 +2,7 @@
   <div *ngIf="!isEditMode" class="section">
     <div class="title">
       <h3>
-        Acceptez-vous que les informations saisies soient enregistrées par la Métropole de Lyon<span class="asterisk"
-          >*</span
-        >
+        Acceptez-vous que les informations saisies soient enregistrées par la Métropole de Lyon<sup>1</sup>
         ?
       </h3>
     </div>
@@ -24,8 +22,9 @@
       <div class="titleContent">
         <h3>
           Acceptez-vous que les informations de votre structure soient mises à disposition sur la plateforme
-          data.grandlyon.com<span *ngIf="!isEditMode" class="asterisk">**</span
-          ><span *ngIf="isEditMode" class="asterisk">*</span> ?
+          data.grandlyon.com
+          <sup>{{ isEditMode ? '1' : '2' }}</sup>
+          ?
         </h3>
         <p *ngIf="!isEditMode">Facultatif</p>
       </div>
@@ -36,18 +35,27 @@
       [isChecked]="false"
       (checkEvent)="acceptOpenData($event)"
     />
-    <div class="dataShareConsent">
-      <app-radio-form
-        *ngIf="isEditMode"
-        [selectedOption]="structureForm.get('dataShareConsentDate').value ? true : false"
-        (selectedEvent)="onRadioChange($event)"
+    <div *ngIf="isEditMode" class="formGroup">
+      <app-radio-option
+        [id]="'yes'"
+        [label]="'Oui'"
+        [value]="true"
+        [selected]="!!structureForm.get('dataShareConsentDate').value"
+        (click)="onRadioChange(true)"
+      />
+      <app-radio-option
+        [id]="'no'"
+        [label]="'Non'"
+        [value]="false"
+        [selected]="!structureForm.get('dataShareConsentDate').value"
+        (click)="onRadioChange(false)"
       />
     </div>
   </div>
   <p *ngIf="!isEditMode" class="informationEndForm">
-    <span class="asterisk">*</span> Les informations recueillies sont enregistrées dans un fichier par la Métropole de
-    Lyon en vue de l'animation du réseau des acteurs de la médiation numérique. Elles sont conservées pendant 24 mois et
-    sont destinées aux seuls intervenants habilités de la Métropole de Lyon.<br />
+    <sup>1</sup> Les informations recueillies sont enregistrées dans un fichier par la Métropole de Lyon en vue de
+    l'animation du réseau des acteurs de la médiation numérique. Elles sont conservées pendant 24 mois et sont destinées
+    aux seuls intervenants habilités de la Métropole de Lyon.<br />
     Vos données personnelles sont traitées dans ce cadre aux fins de recensement des actions de médiation numérique sur
     le territoire de la métropole. Conformément à la loi 78-17 du 6 janvier 1978 modifiée relative à l'information, aux
     fichiers et aux libertés, et au Règlement Général européen à la Protection des Données, vous avez la possibilité
@@ -59,9 +67,9 @@
     ligne dans la Métropole de Lyon
   </p>
   <p class="informationEndForm">
-    <span *ngIf="!isEditMode" class="asterisk">**</span><span *ngIf="isEditMode" class="asterisk">*</span> La Métropole
-    de Lyon, engagée pour la transparence de l’action publique et la valorisation de ses partenaires, encourage
-    l’ouverture des données. Les données de votre structure seront publiées sur la plateforme
+    <sup>{{ isEditMode ? '1' : '2' }}</sup> La Métropole de Lyon, engagée pour la transparence de l’action publique et
+    la valorisation de ses partenaires, encourage l’ouverture des données. Les données de votre structure seront
+    publiées sur la plateforme
     <a href="https://data.grandlyon.com/" target="_blank">https://data.grandlyon.com/</a> sous la licence ouverte (open
     data) et seront donc librement accessibles et réutilisables. Vous pourrez modifier votre choix à tout moment,
     exercer vos droits d’accès et de modification, en le signifiant, par tout moyen à votre convenance, auprès de vos
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
index 03a9c1dec..7fe93fecc 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
@@ -5,7 +5,7 @@ h3 {
   @include font-bold-18;
   margin-top: 1.5rem;
 }
-.asterisk {
+sup {
   color: $primary-color;
 }
 .informationEndForm {
diff --git a/src/app/form/form-view/structure-form/structure-form.component.html b/src/app/form/form-view/structure-form/structure-form.component.html
index 53c30715f..f0b77496a 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.html
+++ b/src/app/form/form-view/structure-form/structure-form.component.html
@@ -95,8 +95,7 @@
     (toggleSocials)="toggleSocialNetwork()"
     (toggleWebsite)="toggleWebSite()"
     (validateForm)="setValidationsForm()"
-  >
-  </app-structure-web-and-social-network>
+  />
 </div>
 <div *ngIf="currentStep === structureFormStep.structurePublicTarget">
   <app-structure-public-target
@@ -105,8 +104,7 @@
     [age]="age"
     (validateForm)="setValidationsForm()"
     (updateChoice)="updateChoice($event)"
-  >
-  </app-structure-public-target>
+  />
 </div>
 <div *ngIf="currentStep === structureFormStep.structurePublicTargetOptional">
   <app-structure-public-target
@@ -118,8 +116,7 @@
     [isMandatoryFields]="false"
     (validateForm)="setValidationsForm()"
     (updateChoice)="updateChoice($event)"
-  >
-  </app-structure-public-target>
+  />
 </div>
 <div *ngIf="currentStep === structureFormStep.structureDigitalHelpingAccompanimentOther">
   <app-structure-public-target-other
@@ -127,8 +124,7 @@
     [structureForm]="structureForm"
     (validateForm)="setValidationsForm()"
     (updateChoice)="updateChoice($event)"
-  >
-  </app-structure-public-target-other>
+  />
 </div>
 <div *ngIf="currentStep === structureFormStep.structureTrainingType">
   <app-structure-training-type
diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index 8a8cacc0d..fd3509076 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -355,6 +355,11 @@ export class StructureFormComponent implements OnChanges, OnInit {
     this.setValidationsForm();
   }
   public acceptOpenData(isAccepted: boolean): void {
+    console.log(
+      '🚀 ~ file: structure-form.component.ts:358 ~ StructureFormComponent ~ acceptOpenData ~ isAccepted:',
+      isAccepted
+    );
+
     const now = isAccepted ? new Date().toString() : '';
     this.getStructureControl('dataShareConsentDate').setValue(now);
     this.setValidationsForm();
diff --git a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
index 2744c8dc1..04a0e6099 100644
--- a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
@@ -10,13 +10,15 @@
       (keyup.enter)="goBack()"
     />
     <div class="titleContent">
-      <h3>Ces accompagnements sont-ils gratuits&nbsp;?</h3>
+      <h3>Ces accompagnements aux usages numériques sont-ils gratuits&nbsp;?</h3>
+      <p>Un seul choix possible</p>
     </div>
   </div>
   <div class="formGroup">
     <app-radio-option
       [id]="'yes'"
       [label]="FreeWorkshop.yes"
+      [description]="'Tous les accompagnements sont gratuits'"
       [value]="FreeWorkshop.yes"
       [selected]="selectedOption === FreeWorkshop.yes"
       (click)="onRadioChange(FreeWorkshop.yes)"
@@ -24,6 +26,7 @@
     <app-radio-option
       [id]="'condition'"
       [label]="FreeWorkshop.underCondition"
+      [description]="'Adhésion, faibles revenus, etc.'"
       [value]="FreeWorkshop.underCondition"
       [selected]="selectedOption === FreeWorkshop.underCondition"
       (click)="onRadioChange(FreeWorkshop.underCondition)"
@@ -31,6 +34,7 @@
     <app-radio-option
       [id]="'no'"
       [label]="FreeWorkshop.no"
+      [description]="'Il s\'agit de formations payantes'"
       [value]="FreeWorkshop.no"
       [selected]="selectedOption === FreeWorkshop.no"
       (click)="onRadioChange(FreeWorkshop.no)"
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.html b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
index 7b48e29d3..7d9dc4a17 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
@@ -6,5 +6,5 @@
   (click)="clicked({ name: id, value })"
   (keyup.enter)="clicked({ name: id, value })"
 >
-  <app-radio [id]="id" [checked]="selected === true" [label]="label" />
+  <app-radio [id]="id" [checked]="selected === true" [label]="label" [description]="description" />
 </div>
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts b/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
index fbdf33cae..e42a1f056 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
@@ -7,7 +7,9 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
 })
 export class RadioOptionComponent {
   @Input() id: string;
-  @Input() label: string;
+  @Input({ required: true }) label: string;
+  @Input() description?: string;
+  // TODO maybe value is not needed ?
   @Input() value: string | boolean;
   @Input() selected: boolean;
 
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts b/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
index 043afd845..593b58b04 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
@@ -37,3 +37,12 @@ export const RadioOptionSelected: Story = {
   },
   decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
 };
+export const RadioOptionWithDescription: Story = {
+  args: {
+    id: 'yes',
+    label: 'Oui, sous conditions',
+    description: 'Adhésion, faibles revenus, etc.',
+    selected: true,
+  },
+  decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
+};
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.html b/src/app/shared/components/structure-pmr/structure-pmr.component.html
index 8cab03ef6..8ec493696 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.html
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.html
@@ -17,8 +17,20 @@
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
     <span>Il faut renseigner un champ</span>
   </p>
-  <app-radio-form
-    [selectedOption]="structureForm.get('pmrAccess').value"
-    (selectedEvent)="onRadioChange('pmrAccess', $event)"
-  />
+  <div class="formGroup">
+    <app-radio-option
+      [id]="'yes'"
+      [label]="'Oui'"
+      [value]="true"
+      [selected]="structureForm.get('pmrAccess').value === true"
+      (click)="onRadioChange('pmrAccess', true)"
+    />
+    <app-radio-option
+      [id]="'no'"
+      [label]="'Non'"
+      [value]="false"
+      [selected]="structureForm.get('pmrAccess').value === false"
+      (click)="onRadioChange('pmrAccess', false)"
+    />
+  </div>
 </form>
-- 
GitLab


From a9a801c9f4d96c4ebcc07ae41c4e955ed685cda3 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 15:59:41 +0100
Subject: [PATCH 07/77] other personal offer

---
 .../personal-offer-other-structure-choice.component.html     | 5 ++++-
 .../personal-offer-other-structure-choice.component.ts       | 3 ++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.html b/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.html
index c8b38edb4..2ce3326bb 100644
--- a/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.html
+++ b/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.html
@@ -4,5 +4,8 @@
     <h3>Intervenez-vous dans une autre structure&nbsp;?</h3>
   </div>
 
-  <app-radio-form [selectedOption]="null" (selectedEvent)="onRadioChange($event)" />
+  <div class="formGroup">
+    <app-radio-option [id]="'yes'" [label]="'Oui'" [value]="true" [selected]="choice" (click)="onRadioChange(true)" />
+    <app-radio-option [id]="'no'" [label]="'Non'" [value]="false" [selected]="!choice" (click)="onRadioChange(false)" />
+  </div>
 </form>
diff --git a/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.ts b/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.ts
index de19adb6e..559aedd97 100644
--- a/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.ts
+++ b/src/app/form/form-view/personal-offer-form/personal-offer-other-structure-choice/personal-offer-other-structure-choice.component.ts
@@ -9,11 +9,12 @@ export class PersonalOfferOtherStructureChoiceComponent {
   @Input() structureName: string;
   @Input() personalOfferForm: UntypedFormGroup;
   @Output() setOtherOffer = new EventEmitter<boolean>();
-  @Output() pageValid = new EventEmitter<any>();
+  @Output() pageValid = new EventEmitter();
 
   public choice: boolean;
 
   public onRadioChange(value: boolean): void {
+    this.choice = value;
     this.setOtherOffer.emit(value);
     this.pageValid.emit();
   }
-- 
GitLab


From 64ca815a672ee1d02b20198c6ed575df17ba24f1 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 16:52:53 +0100
Subject: [PATCH 08/77] data share consent

---
 .../structure-consent.component.scss          |   4 +-
 .../structure-wifi.component.html             |   1 +
 src/app/header/header.component.ts            |  25 ++--
 .../data-share-consent.component.html         | 118 ++++++++++--------
 .../data-share-consent.component.scss         |  66 +++-------
 .../data-share-consent.component.ts           |  10 ++
 .../radio-form/radio-form.component.html      |   4 +-
 .../radio-form/radio-form.component.ts        |   1 +
 .../radio-option/radio-option.component.html  |   2 +-
 .../radio-option/radio-option.component.ts    |   2 +
 src/styles.scss                               |   4 +
 11 files changed, 113 insertions(+), 124 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
index 7fe93fecc..49d08e461 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
@@ -5,9 +5,7 @@ h3 {
   @include font-bold-18;
   margin-top: 1.5rem;
 }
-sup {
-  color: $primary-color;
-}
+
 .informationEndForm {
   @include font-regular-12;
 }
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
index 5bf16d970..139f10258 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
@@ -13,6 +13,7 @@
       <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
     </div>
   </div>
+  <!-- TODO to fix -->
   <!-- <app-radio-form
     [selectedOption]="
       isEditMode ? isInArray('selfServiceMaterial', 'wifiEnAccesLibre') : structureForm.get('freeWifi').value
diff --git a/src/app/header/header.component.ts b/src/app/header/header.component.ts
index bcfc5eca5..dcda3dcf4 100644
--- a/src/app/header/header.component.ts
+++ b/src/app/header/header.component.ts
@@ -76,20 +76,19 @@ export class HeaderComponent {
   }
 
   public get isDisplayDataShare(): boolean {
-    if (this.displayDataShare) {
-      return this.displayDataShare;
-    } else {
-      if (this.isLoggedIn && !this.loadingDataShare) {
-        this.loadingDataShare = true;
-        this.profileService.getAllDataConsentPendingStructures().subscribe((dataConsentPendingStructures) => {
-          if (dataConsentPendingStructures.length) {
-            this.displayDataShare = true;
-            this.dataConsentPendingStructures = dataConsentPendingStructures;
-            return this.displayDataShare;
-          }
-        });
-      }
+    if (this.displayDataShare) return true;
+
+    if (this.isLoggedIn && !this.loadingDataShare) {
+      this.loadingDataShare = true;
+      this.profileService.getAllDataConsentPendingStructures().subscribe((dataConsentPendingStructures) => {
+        if (dataConsentPendingStructures.length) {
+          this.displayDataShare = true;
+          this.dataConsentPendingStructures = dataConsentPendingStructures;
+          return this.displayDataShare;
+        }
+      });
     }
+
     return false;
   }
   public goToLoginPage(): void {
diff --git a/src/app/shared/components/data-share-consent/data-share-consent.component.html b/src/app/shared/components/data-share-consent/data-share-consent.component.html
index ddd9f4ec5..b8769d455 100644
--- a/src/app/shared/components/data-share-consent/data-share-consent.component.html
+++ b/src/app/shared/components/data-share-consent/data-share-consent.component.html
@@ -1,64 +1,76 @@
 <div *ngIf="opened" class="modalBackground">
   <div class="modal">
-    <div class="contentModal" fxLayout="column" fxLayoutAlign="space-around start">
-      <div class="form">
-        <div class="modalTitle">
-          <h3>
-            Acceptez-vous que les informations de vos structures soient mises à disposition sur la plateforme
-            data.grandlyon.com* ?
-          </h3>
+    <div class="form">
+      <h1>
+        Acceptez-vous que les informations de vos structures soient mises à disposition sur la plateforme
+        data.grandlyon.com<sup>1</sup> ?
+      </h1>
+
+      <form class="dataShareConsent" [formGroup]="consentForm">
+        <div *ngIf="dataConsentPendingStructures && dataConsentPendingStructures.length > 1" class="formGroup inline">
+          Toutes les structures
+          <div class="buttons">
+            <app-radio-option
+              [id]="'allYes'"
+              [label]="'Oui'"
+              [value]="true"
+              [selected]="allSelected === true"
+              (click)="onRadioBtnChangeAll(true)"
+            />
+            <app-radio-option
+              [id]="'allNo'"
+              [label]="'Non'"
+              [value]="false"
+              [selected]="allSelected === false"
+              (click)="onRadioBtnChangeAll(false)"
+            />
+          </div>
         </div>
-        <form class="dataShareConsent" [formGroup]="consentForm">
-          <app-radio-form
-            *ngIf="dataConsentPendingStructures && dataConsentPendingStructures.length > 1"
-            name="Toutes les structures"
-            layoutGap="8px"
-            class="firstLine"
-            [horizontal]="true"
-            [events]="eventsSubject.asObservable()"
-            (selectedEvent)="onRadioBtnChangeAll($event)"
-          />
+        <hr *ngIf="dataConsentPendingStructures && dataConsentPendingStructures.length > 1" />
 
-          <div *ngFor="let structure of dataConsentPendingStructures">
-            <!-- TODO convert to switch, false by default ? -->
-            <app-radio-form
-              layoutGap="8px"
-              name="{{ structure.structureName }}"
-              [horizontal]="true"
-              [selectedOption]="
-                structure.dataShareConsentDate === undefined
-                  ? null
-                  : structure.dataShareConsentDate === null
-                  ? false
-                  : true
-              "
-              (selectedEvent)="onRadioBtnChangeStructure(structure._id, $event)"
+        <!-- TODO convert to switch, false by default ? -->
+        <div *ngFor="let structure of dataConsentPendingStructures" class="formGroup inline">
+          {{ structure.structureName }}
+          <div class="buttons">
+            <app-radio-option
+              [id]="structure._id"
+              [label]="'Oui'"
+              [value]="true"
+              [selected]="processDataShareConsentDate(structure) === true"
+              (click)="onRadioBtnChangeStructure(structure._id, true)"
+            />
+            <app-radio-option
+              [id]="structure._id"
+              [label]="'Non'"
+              [value]="false"
+              [selected]="processDataShareConsentDate(structure) === false"
+              (click)="onRadioBtnChangeStructure(structure._id, false)"
             />
           </div>
+        </div>
 
-          <p class="informationEndForm">
-            <span class="asterisk">*</span> La Métropole de Lyon, engagée pour la transparence de l’action publique et
-            la valorisation de ses partenaires, encourage l’ouverture des données. Les données de votre structure seront
-            publiées sur la plateforme
-            <a href="https://data.grandlyon.com/" target="_blank">https://data.grandlyon.com/</a> sous la licence
-            ouverte (open data) et seront donc librement accessibles et réutilisables. Vous pourrez modifier votre choix
-            à tout moment, exercer vos droits d’accès et de modification, en le signifiant, par tout moyen à votre
-            convenance, auprès de vos interlocuteurs de la Métropole de Lyon.
-          </p>
+        <p class="informationEndForm">
+          <sup>1</sup> La Métropole de Lyon, engagée pour la transparence de l’action publique et la valorisation de ses
+          partenaires, encourage l’ouverture des données. Les données de votre structure seront publiées sur la
+          plateforme <a href="https://data.grandlyon.com/" target="_blank">https://data.grandlyon.com/</a> sous la
+          licence ouverte (open data) et seront donc librement accessibles et réutilisables. Vous pourrez modifier votre
+          choix à tout moment, exercer vos droits d’accès et de modification, en le signifiant, par tout moyen à votre
+          convenance, auprès de vos interlocuteurs de la Métropole de Lyon.
+        </p>
 
-          <div class="footerModal" fxLayout="row" fxLayoutAlign="space-around center">
-            <button
-              type="button"
-              class="btn-primary"
-              [disabled]="!isPageValid"
-              [ngClass]="{ invalid: !isPageValid }"
-              (click)="onSubmit()"
-            >
-              Valider
-            </button>
-          </div>
-        </form>
-      </div>
+        <div class="footerModal">
+          <!-- V3 use button -->
+          <button
+            type="button"
+            class="btn-primary"
+            [disabled]="!isPageValid"
+            [ngClass]="{ invalid: !isPageValid }"
+            (click)="onSubmit()"
+          >
+            Valider
+          </button>
+        </div>
+      </form>
     </div>
   </div>
 </div>
diff --git a/src/app/shared/components/data-share-consent/data-share-consent.component.scss b/src/app/shared/components/data-share-consent/data-share-consent.component.scss
index e60753d79..9a4731665 100644
--- a/src/app/shared/components/data-share-consent/data-share-consent.component.scss
+++ b/src/app/shared/components/data-share-consent/data-share-consent.component.scss
@@ -12,69 +12,31 @@
     max-width: 95%;
   }
 }
-.modalTitle {
-  display: flex;
-  h3 {
-    margin-top: 6%;
-    width: 90%;
-  }
-}
-h3 {
+
+h1 {
   @include font-bold-26;
-  color: $black;
-  margin-top: 0;
 }
 .form {
   max-width: 90%;
-  margin: 0 32px;
-  margin-bottom: 8%;
+  margin: 32px;
 }
 .footerModal {
+  justify-content: center;
+  display: flex;
   button {
     &.invalid {
       opacity: 0.4;
     }
   }
 }
-.dataShareConsent {
-  ::ng-deep button,
-  ::ng-deep .name {
-    font-size: $font-size-small;
-    font-weight: normal;
-    margin: 4px 0;
-    height: 40px;
-    ::ng-deep p {
-      font-weight: normal !important;
-    }
-    @media #{$phone} {
-      height: auto;
-    }
-  }
-  ::ng-deep .name {
-    padding: 0 10px;
-  }
-  ::ng-deep button {
-    width: 162px;
-    height: 40px;
-  }
-  ::ng-deep .firstLine {
-    .name,
-    button {
-      background-color: $grey-5;
-      &.selected {
-        p {
-          color: $black;
-        }
-      }
-    }
-  }
-}
-.informationEndForm {
-  color: $grey-1;
-  font-size: $font-size-xsmall;
-  a {
-    color: $blue;
-    text-decoration: underline;
-    font-weight: bold;
+
+.formGroup {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  margin-bottom: 1rem;
+  .buttons {
+    display: flex;
+    gap: 1rem;
   }
 }
diff --git a/src/app/shared/components/data-share-consent/data-share-consent.component.ts b/src/app/shared/components/data-share-consent/data-share-consent.component.ts
index 80e66d683..13efc2565 100644
--- a/src/app/shared/components/data-share-consent/data-share-consent.component.ts
+++ b/src/app/shared/components/data-share-consent/data-share-consent.component.ts
@@ -15,6 +15,7 @@ export class DataShareConsentComponent implements OnInit {
   public loading = false;
   public submitted = false;
   public eventsSubject: Subject<Object> = new Subject<Object>();
+  public allSelected: boolean;
 
   constructor(private structureService: StructureService) {}
 
@@ -45,6 +46,7 @@ export class DataShareConsentComponent implements OnInit {
       structure.dataShareConsentDate = bool ? new Date().toString() : null;
       this.getFormControl(structure._id).setValue(bool);
     }
+    this.allSelected = bool;
     this.setValidationsForm();
   }
 
@@ -89,4 +91,12 @@ export class DataShareConsentComponent implements OnInit {
         });
     }
   }
+
+  public processDataShareConsentDate(structure: Structure): boolean | null {
+    if (structure.dataShareConsentDate === undefined) {
+      return null;
+    } else {
+      return structure.dataShareConsentDate !== null;
+    }
+  }
 }
diff --git a/src/app/shared/components/radio-form/radio-form.component.html b/src/app/shared/components/radio-form/radio-form.component.html
index e9d44fdcc..004427e81 100644
--- a/src/app/shared/components/radio-form/radio-form.component.html
+++ b/src/app/shared/components/radio-form/radio-form.component.html
@@ -1,7 +1,7 @@
 <div class="radioForm">
-  <!-- <div *ngIf="name">
+  <div *ngIf="name">
     {{ name }}
-  </div> -->
+  </div>
   <div class="radioButton" role="button" [ngClass]="{ selected: selectedOption === true }" (click)="clicked(true)">
     <app-radio [id]="'oui'" [checked]="selectedOption === true" [label]="'Oui'" />
   </div>
diff --git a/src/app/shared/components/radio-form/radio-form.component.ts b/src/app/shared/components/radio-form/radio-form.component.ts
index 2fb834075..dd6f90049 100644
--- a/src/app/shared/components/radio-form/radio-form.component.ts
+++ b/src/app/shared/components/radio-form/radio-form.component.ts
@@ -18,6 +18,7 @@ export class RadioFormComponent implements OnInit, OnDestroy {
   private eventsSubscription: Subscription;
 
   ngOnInit(): void {
+    console.log('🚀 ~ file: radio-form.component.ts:16 ~ RadioFormComponent ~ events:', this.events);
     if (this.events) this.eventsSubscription = this.events.subscribe((data: boolean) => (this.selectedOption = data));
   }
 
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.html b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
index 7d9dc4a17..1157c4fb1 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.html
@@ -6,5 +6,5 @@
   (click)="clicked({ name: id, value })"
   (keyup.enter)="clicked({ name: id, value })"
 >
-  <app-radio [id]="id" [checked]="selected === true" [label]="label" [description]="description" />
+  <app-radio [id]="id" [checked]="selected === true" [label]="label" [description]="description" [size]="size" />
 </div>
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts b/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
index e42a1f056..6df020d48 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
+++ b/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
@@ -12,6 +12,8 @@ export class RadioOptionComponent {
   // TODO maybe value is not needed ?
   @Input() value: string | boolean;
   @Input() selected: boolean;
+  /** What size should the checkbox be ? */
+  @Input() size?: 'small' | 'medium' = 'medium';
 
   @Output() selectedEvent = new EventEmitter<{ name: string; value: string | boolean }>();
 
diff --git a/src/styles.scss b/src/styles.scss
index 2621b049b..f78437610 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -622,3 +622,7 @@ button {
 .warning {
   color: $info-warning;
 }
+
+sup {
+  color: $red;
+}
-- 
GitLab


From ac916d7524f1aeeb60695943166bd0a787f4ad12 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 16:56:37 +0100
Subject: [PATCH 09/77] create todo in profile

---
 .../appointment-choice/appointment-choice.component.html       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/app/shared/components/appointment-choice/appointment-choice.component.html b/src/app/shared/components/appointment-choice/appointment-choice.component.html
index fe53cd19f..4ca0890ec 100644
--- a/src/app/shared/components/appointment-choice/appointment-choice.component.html
+++ b/src/app/shared/components/appointment-choice/appointment-choice.component.html
@@ -5,5 +5,6 @@
     besoin d'un accompagnement numérique afin de convenir d'un rendez-vous. C'est vous qui gérez la prise de rendez-vous
     sur vos outils habituels, en fonction de vos disponibilités.
   </p>
-  <app-radio-form [selectedOption]="selectedRdvChoice" [horizontal]="true" (selectedEvent)="onRdvRadioChange($event)" />
+  <!-- TODO use switch -->
+  <!-- <app-radio-form [selectedOption]="selectedRdvChoice" [horizontal]="true" (selectedEvent)="onRdvRadioChange($event)" /> -->
 </div>
-- 
GitLab


From d57f805910ee9488aca67cd4f78c02f2c26d11a0 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 17:03:43 +0100
Subject: [PATCH 10/77] move files

---
 .../data-share-consent.component.scss         |  1 -
 src/app/shared/components/index.ts            |  5 +--
 .../radio-form/radio-form.component.html      | 16 ---------
 .../radio-form/radio-form.component.ts        | 33 -------------------
 .../radio-form/radio-form.stories.ts          | 28 ----------------
 .../radio-option/radio-option.component.html  |  0
 .../radio-option.component.scss}              |  0
 .../radio-option/radio-option.component.ts    |  2 +-
 .../radio-option/radio-option.stories.ts      |  4 +--
 src/app/shared/shared.module.ts               |  2 +-
 10 files changed, 5 insertions(+), 86 deletions(-)
 delete mode 100644 src/app/shared/components/radio-form/radio-form.component.html
 delete mode 100644 src/app/shared/components/radio-form/radio-form.component.ts
 delete mode 100644 src/app/shared/components/radio-form/radio-form.stories.ts
 rename src/app/shared/components/{radio-form => }/radio-option/radio-option.component.html (100%)
 rename src/app/shared/components/{radio-form/radio-form.component.scss => radio-option/radio-option.component.scss} (100%)
 rename src/app/shared/components/{radio-form => }/radio-option/radio-option.component.ts (94%)
 rename src/app/shared/components/{radio-form => }/radio-option/radio-option.stories.ts (91%)

diff --git a/src/app/shared/components/data-share-consent/data-share-consent.component.scss b/src/app/shared/components/data-share-consent/data-share-consent.component.scss
index 9a4731665..578e8e2e7 100644
--- a/src/app/shared/components/data-share-consent/data-share-consent.component.scss
+++ b/src/app/shared/components/data-share-consent/data-share-consent.component.scss
@@ -4,7 +4,6 @@
 @import 'buttons';
 @import 'z-index';
 @import 'hyperlink';
-@import '../radio-form/radio-form.component.scss';
 
 .modalBackground .modal {
   max-width: 700px;
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index 68f812675..135af6fda 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -12,8 +12,7 @@ import { LogoCardComponent } from './logo-card/logo-card.component';
 import { ModalConfirmationComponent } from './modal-confirmation/modal-confirmation.component';
 import { ModalJoinConfirmationComponent } from './modal-join-confirmation/modal-join-confirmation.component';
 import { PasswordFormComponent } from './password-form/password-form.component';
-import { RadioFormComponent } from './radio-form/radio-form.component';
-import { RadioOptionComponent } from './radio-form/radio-option/radio-option.component';
+import { RadioOptionComponent } from './radio-option/radio-option.component';
 import { StructureDetailPrintComponent } from './structure-detail-print/structure-detail-print.component';
 import { StructurePmrComponent } from './structure-pmr/structure-pmr.component';
 import { StructureTypePickerComponent } from './structure-type-picker/structure-type-picker.component';
@@ -44,7 +43,6 @@ export {
   ModalConfirmationComponent,
   PasswordFormComponent,
   ProgressBarComponent,
-  RadioFormComponent,
   RadioOptionComponent,
   StructureDetailPrintComponent,
   StructurePmrComponent,
@@ -75,7 +73,6 @@ export const SharedComponents = [
   ModalJoinConfirmationComponent,
   PasswordFormComponent,
   ProgressBarComponent,
-  RadioFormComponent,
   RadioOptionComponent,
   RadioV3Component,
   StructureDetailPrintComponent,
diff --git a/src/app/shared/components/radio-form/radio-form.component.html b/src/app/shared/components/radio-form/radio-form.component.html
deleted file mode 100644
index 004427e81..000000000
--- a/src/app/shared/components/radio-form/radio-form.component.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<div class="radioForm">
-  <div *ngIf="name">
-    {{ name }}
-  </div>
-  <div class="radioButton" role="button" [ngClass]="{ selected: selectedOption === true }" (click)="clicked(true)">
-    <app-radio [id]="'oui'" [checked]="selectedOption === true" [label]="'Oui'" />
-  </div>
-  <div
-    class="radioButton"
-    role="button"
-    [ngClass]="{ selected: !selectedOption && selectedOption !== null }"
-    (click)="clicked(false)"
-  >
-    <app-radio [id]="'non'" [checked]="selectedOption === false" [label]="'Non'" />
-  </div>
-</div>
diff --git a/src/app/shared/components/radio-form/radio-form.component.ts b/src/app/shared/components/radio-form/radio-form.component.ts
deleted file mode 100644
index dd6f90049..000000000
--- a/src/app/shared/components/radio-form/radio-form.component.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core';
-import { Observable, Subscription } from 'rxjs';
-
-@Component({
-  selector: 'app-radio-form',
-  templateUrl: './radio-form.component.html',
-  styleUrls: ['./radio-form.component.scss'],
-})
-export class RadioFormComponent implements OnInit, OnDestroy {
-  @Input() public selectedOption: boolean | string;
-  // TO REMOVE
-  @Input() public horizontal: boolean;
-  @Input() public layoutGap: string;
-  @Input() public name: string;
-  @Input() events: Observable<Object>;
-  @Output() selectedEvent = new EventEmitter<any>();
-
-  private eventsSubscription: Subscription;
-
-  ngOnInit(): void {
-    console.log('🚀 ~ file: radio-form.component.ts:16 ~ RadioFormComponent ~ events:', this.events);
-    if (this.events) this.eventsSubscription = this.events.subscribe((data: boolean) => (this.selectedOption = data));
-  }
-
-  ngOnDestroy(): void {
-    if (this.eventsSubscription) this.eventsSubscription.unsubscribe();
-  }
-
-  public clicked(val: boolean | string): void {
-    this.selectedOption = val;
-    this.selectedEvent.emit(this.selectedOption);
-  }
-}
diff --git a/src/app/shared/components/radio-form/radio-form.stories.ts b/src/app/shared/components/radio-form/radio-form.stories.ts
deleted file mode 100644
index e3c420b96..000000000
--- a/src/app/shared/components/radio-form/radio-form.stories.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { CommonModule } from '@angular/common';
-import type { Meta, StoryObj } from '@storybook/angular';
-import { componentWrapperDecorator, moduleMetadata } from '@storybook/angular';
-import { SvgIconComponent } from '../svg-icon/svg-icon.component';
-import { RadioV3Component } from '../v3/radio/radio.component';
-import { RadioFormComponent } from './radio-form.component';
-
-// More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
-const meta: Meta<RadioFormComponent> = {
-  title: 'Form/Radio group',
-  component: RadioFormComponent,
-  tags: ['autodocs'],
-  decorators: [
-    moduleMetadata({
-      declarations: [SvgIconComponent, RadioV3Component],
-      imports: [CommonModule],
-    }),
-  ],
-  argTypes: {},
-};
-
-export default meta;
-type Story = StoryObj<RadioFormComponent>;
-
-export const RadioGroup: Story = {
-  args: {},
-  decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
-};
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.html b/src/app/shared/components/radio-option/radio-option.component.html
similarity index 100%
rename from src/app/shared/components/radio-form/radio-option/radio-option.component.html
rename to src/app/shared/components/radio-option/radio-option.component.html
diff --git a/src/app/shared/components/radio-form/radio-form.component.scss b/src/app/shared/components/radio-option/radio-option.component.scss
similarity index 100%
rename from src/app/shared/components/radio-form/radio-form.component.scss
rename to src/app/shared/components/radio-option/radio-option.component.scss
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts b/src/app/shared/components/radio-option/radio-option.component.ts
similarity index 94%
rename from src/app/shared/components/radio-form/radio-option/radio-option.component.ts
rename to src/app/shared/components/radio-option/radio-option.component.ts
index 6df020d48..d99255371 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.component.ts
+++ b/src/app/shared/components/radio-option/radio-option.component.ts
@@ -3,7 +3,7 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
 @Component({
   selector: 'app-radio-option',
   templateUrl: './radio-option.component.html',
-  styleUrls: ['../radio-form.component.scss'],
+  styleUrls: ['./radio-option.component.scss'],
 })
 export class RadioOptionComponent {
   @Input() id: string;
diff --git a/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts b/src/app/shared/components/radio-option/radio-option.stories.ts
similarity index 91%
rename from src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
rename to src/app/shared/components/radio-option/radio-option.stories.ts
index 593b58b04..7b017318a 100644
--- a/src/app/shared/components/radio-form/radio-option/radio-option.stories.ts
+++ b/src/app/shared/components/radio-option/radio-option.stories.ts
@@ -1,8 +1,8 @@
 import { CommonModule } from '@angular/common';
 import type { Meta, StoryObj } from '@storybook/angular';
 import { componentWrapperDecorator, moduleMetadata } from '@storybook/angular';
-import { SvgIconComponent } from '../../svg-icon/svg-icon.component';
-import { RadioV3Component } from '../../v3/radio/radio.component';
+import { SvgIconComponent } from '../svg-icon/svg-icon.component';
+import { RadioV3Component } from '../v3/radio/radio.component';
 import { RadioOptionComponent } from './radio-option.component';
 
 // More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts
index 8348a640d..abe09765e 100644
--- a/src/app/shared/shared.module.ts
+++ b/src/app/shared/shared.module.ts
@@ -7,12 +7,12 @@ import { SharedComponents } from './components';
 import { AddressAutocompleteComponent } from './components/address-autocomplete/address-autocomplete.component';
 import { AppointmentChoiceComponent } from './components/appointment-choice/appointment-choice.component';
 import { HourPickerComponent } from './components/hour-picker/hour-picker.component';
+import { RadioOptionComponent } from './components/radio-option/radio-option.component';
 import { InputV3Component } from './components/v3/input/input.component';
 import { RadioV3Component } from './components/v3/radio/radio.component';
 import { TextareaV3Component } from './components/v3/textarea/textarea.component';
 import { SharedDirectives } from './directives';
 import { SharedPipes } from './pipes';
-import { RadioOptionComponent } from './components/radio-form/radio-option/radio-option.component';
 @NgModule({
   imports: [CommonModule, FormsModule, RouterModule, FlexLayoutModule, ReactiveFormsModule],
   declarations: [
-- 
GitLab


From 3e0d52182b2af3ebc85f12f5309a7e491cf21f2b Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 17:07:05 +0100
Subject: [PATCH 11/77] cleaning

---
 .../components/radio-option/radio-option.component.scss    | 7 -------
 src/styles.scss                                            | 1 -
 2 files changed, 8 deletions(-)

diff --git a/src/app/shared/components/radio-option/radio-option.component.scss b/src/app/shared/components/radio-option/radio-option.component.scss
index 1ac9e8cb6..a91463106 100644
--- a/src/app/shared/components/radio-option/radio-option.component.scss
+++ b/src/app/shared/components/radio-option/radio-option.component.scss
@@ -1,11 +1,4 @@
 @import 'color';
-@import 'typography';
-
-.radioForm {
-  display: flex;
-  flex-direction: column;
-  gap: 1rem;
-}
 
 .radioButton {
   width: 100%;
diff --git a/src/styles.scss b/src/styles.scss
index f78437610..298be2ac1 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -57,7 +57,6 @@ a {
   color: $default-link-color;
   text-decoration: none;
   background-color: transparent;
-  @include font-regular-14;
   cursor: pointer;
   &:focus {
     text-decoration: none;
-- 
GitLab


From 0d879721bdf05d5e308945c1512e21a8f72ce044 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 17:19:06 +0100
Subject: [PATCH 12/77] cleanup

---
 .../structure-wifi.component.html             |  2 ++
 .../radio-option/radio-option.component.html  |  4 ++--
 .../radio-option/radio-option.component.ts    | 21 ++++++++++++-------
 3 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
index 139f10258..849b313d8 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
@@ -23,12 +23,14 @@
   </app-radio-form> -->
   <div class="formGroup">
     <app-radio-option
+      [id]="'yes'"
       [label]="'Oui'"
       [value]="true"
       [selected]="structureForm.get('freeWifi').value === true"
       (selectedEvent)="onCheckChange($event, 'categories.selfServiceMaterial', 'wifiEnAccesLibre')"
     />
     <app-radio-option
+      [id]="'no'"
       [label]="'Non'"
       [value]="false"
       [selected]="structureForm.get('freeWifi').value === false"
diff --git a/src/app/shared/components/radio-option/radio-option.component.html b/src/app/shared/components/radio-option/radio-option.component.html
index 1157c4fb1..761d3171c 100644
--- a/src/app/shared/components/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-option/radio-option.component.html
@@ -3,8 +3,8 @@
   role="button"
   tabindex="0"
   [ngClass]="{ selected: selected }"
-  (click)="clicked({ name: id, value })"
-  (keyup.enter)="clicked({ name: id, value })"
+  (click)="clicked()"
+  (keyup.enter)="clicked()"
 >
   <app-radio [id]="id" [checked]="selected === true" [label]="label" [description]="description" [size]="size" />
 </div>
diff --git a/src/app/shared/components/radio-option/radio-option.component.ts b/src/app/shared/components/radio-option/radio-option.component.ts
index d99255371..9ce43b25c 100644
--- a/src/app/shared/components/radio-option/radio-option.component.ts
+++ b/src/app/shared/components/radio-option/radio-option.component.ts
@@ -6,20 +6,27 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
   styleUrls: ['./radio-option.component.scss'],
 })
 export class RadioOptionComponent {
-  @Input() id: string;
+  /** HTML id associated with for */
+  @Input({ required: true }) id: string;
+
+  /** Label for the radio */
   @Input({ required: true }) label: string;
+
+  /** Additional label description */
   @Input() description?: string;
-  // TODO maybe value is not needed ?
+
+  /** Value to emit ? */
   @Input() value: string | boolean;
-  @Input() selected: boolean;
+
+  /** Selected or not */
+  @Input({ required: true }) selected: boolean;
+
   /** What size should the checkbox be ? */
   @Input() size?: 'small' | 'medium' = 'medium';
 
   @Output() selectedEvent = new EventEmitter<{ name: string; value: string | boolean }>();
 
-  public clicked({ name, value }: { name: string; value: string | boolean }): void {
-    // this.selected =
-    // this.selectedOption = val;
-    this.selectedEvent.emit({ name, value });
+  public clicked(): void {
+    this.selectedEvent.emit({ name: this.id, value: this.value });
   }
 }
-- 
GitLab


From 79b815c7135f41b4cf58d0b65d9600877d87a9f2 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 30 Nov 2023 17:22:11 +0100
Subject: [PATCH 13/77] fix build

---
 .../structure-training-price.component.ts                        | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.ts b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.ts
index e593fd56b..5adc222e8 100644
--- a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.ts
+++ b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.ts
@@ -5,7 +5,6 @@ import { FreeWorkshop } from '../../../../structure/enums/freeWorkshop.enum';
 @Component({
   selector: 'app-structure-training-price',
   templateUrl: './structure-training-price.component.html',
-  styleUrls: ['../../../../shared/components/radio-form/radio-form.component.scss'],
 })
 export class StructureTrainingPriceComponent implements OnInit {
   @Input() structureForm: UntypedFormGroup;
-- 
GitLab


From 3bdb69a6036c796f4d003a5eb87ca26f2c2a22ba Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 4 Dec 2023 10:43:49 +0100
Subject: [PATCH 14/77] socials

---
 src/app/form/form-view/form-view.component.ts |   2 +-
 .../structure-form.component.html             |   4 -
 .../structure-form.component.ts               |  32 +-
 ...ture-web-and-social-network.component.html | 299 ++++++++----------
 ...ture-web-and-social-network.component.scss | 168 ++--------
 ...ucture-web-and-social-network.component.ts |  16 -
 .../svg-icon/svg-icon.component.scss          |   1 +
 src/assets/tags/sprite.svg                    |  13 +
 src/styles.scss                               |   4 +
 9 files changed, 179 insertions(+), 360 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 06a4e9f8b..d2a76bef4 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureConsent;
+        this.currentPage = structureFormStep.structureWebAndSocialNetwork;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/structure-form/structure-form.component.html b/src/app/form/form-view/structure-form/structure-form.component.html
index f0b77496a..1ce93bf0a 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.html
+++ b/src/app/form/form-view/structure-form/structure-form.component.html
@@ -90,10 +90,6 @@
   <app-structure-web-and-social-network
     [isEditMode]="isEditMode"
     [structureForm]="structureForm"
-    [showWebsite]="showWebsite"
-    [showSocialNetwork]="showSocialNetwork"
-    (toggleSocials)="toggleSocialNetwork()"
-    (toggleWebsite)="toggleWebSite()"
     (validateForm)="setValidationsForm()"
   />
 </div>
diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index fd3509076..c3bbed264 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -35,10 +35,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
   public pagesValidation = [];
   public profile: User;
 
-  // Collapse var
-  public showWebsite = false;
-  public showSocialNetwork = false;
-
   // Condition form
   public isAccountMode = false;
   public userAcceptSavedDate = false;
@@ -122,25 +118,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
     this.setValidationsForm();
   }
 
-  public toggleWebSite(): void {
-    this.showWebsite = !this.showWebsite;
-    if (!this.showWebsite) {
-      this.structureForm.get('website').reset();
-    }
-    this.setValidationsForm();
-  }
-
-  public toggleSocialNetwork(): void {
-    this.showSocialNetwork = !this.showSocialNetwork;
-    if (!this.showSocialNetwork) {
-      this.structureForm.get('facebook').reset();
-      this.structureForm.get('twitter').reset();
-      this.structureForm.get('instagram').reset();
-      this.structureForm.get('linkedin').reset();
-    }
-    this.setValidationsForm();
-  }
-
   public setValidationsForm(): void {
     this.pagesValidation[structureFormStep.structureChoice] = {
       valid: this.structureForm.get('_id').valid,
@@ -178,11 +155,10 @@ export class StructureFormComponent implements OnChanges, OnInit {
     };
     this.pagesValidation[structureFormStep.structureWebAndSocialNetwork] = {
       valid:
-        (this.structureForm.get('website').valid || !this.showWebsite) &&
-        ((this.structureForm.get('facebook').valid &&
-          this.structureForm.get('twitter').valid &&
-          this.structureForm.get('instagram').valid) ||
-          !this.showSocialNetwork),
+        this.structureForm.get('website').valid &&
+        this.structureForm.get('facebook').valid &&
+        this.structureForm.get('twitter').valid &&
+        this.structureForm.get('instagram').valid,
     };
     this.pagesValidation[structureFormStep.structurePublicTarget] = {
       valid: this.structureForm.get('categories').get('age').valid,
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index aa844fab7..a5e85cbaa 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -14,36 +14,19 @@
       <p>Facultatif</p>
     </div>
   </div>
-  <div class="collapse" [ngClass]="{ notCollapsed: !showWebsite }">
-    <div fxLayout="column">
-      <div
-        fxLayout="row"
-        fxLayoutAlign=" center"
-        class="collapseHeader"
-        tabindex="0"
-        (click)="toggleWebSite()"
-        (keyup.enter)="toggleWebSite()"
-      >
-        <div class="titleCollapse">
-          <p class="no-margin" [ngClass]="{ show: showWebsite, hide: !showWebsite }">J'ajoute un site web</p>
-          <p class="no-margin" [ngClass]="{ show: !showWebsite, hide: showWebsite }">Je retire un site web</p>
-        </div>
-        <div class="logo">
-          <svg class="show" aria-hidden="true">
-            <use [attr.xlink:href]="'assets/form/sprite.svg#show'" />
-          </svg>
-          <svg class="hide" aria-hidden="true">
-            <use [attr.xlink:href]="'assets/form/sprite.svg#hide'" />
-          </svg>
-        </div>
-      </div>
-      <div *ngIf="showWebsite" class="inputSection">
-        <div class="form-group website" fxLayout="column">
+  <div class="card">
+    <h3>Site web</h3>
+
+    <div class="inputSection">
+      <div class="row">
+        <app-svg-icon [type]="'tags'" [icon]="'website'" [iconClass]="'icon-36'" />
+        <div>
+          <!-- TODO update with v3 input -->
           <label for="website">Adresse du site web</label>
           <div fxLayout="row" fxLayoutGap="7px">
             <input
               type="text"
-              placeholder="www.grandlyon.com"
+              placeholder="exemple : resin.grandlyon.com"
               formControlName="website"
               class="form-input"
               (input)="setValidationsForm()"
@@ -67,161 +50,137 @@
       </div>
     </div>
   </div>
-  <div class="collapse" [ngClass]="{ notCollapsed: !showSocialNetwork }">
+  <div class="card">
     <div fxLayout="column">
-      <div
-        class="collapseHeader"
-        fxLayout="row"
-        fxLayoutAlign=" center"
-        tabindex="0"
-        (click)="toggleSocialNetwork()"
-        (keyup.enter)="toggleSocialNetwork()"
-      >
-        <div class="titleCollapse">
-          <p class="no-margin" [ngClass]="{ show: showSocialNetwork, hide: !showSocialNetwork }">
-            J’ajoute les réseaux sociaux
-          </p>
-          <p class="no-margin" [ngClass]="{ show: !showSocialNetwork, hide: showSocialNetwork }">
-            Je retire des réseaux sociaux
-          </p>
-        </div>
-        <div class="logo">
-          <svg class="show" aria-hidden="true">
-            <use [attr.xlink:href]="'assets/form/sprite.svg#show'" />
-          </svg>
-          <svg class="hide" aria-hidden="true">
-            <use [attr.xlink:href]="'assets/form/sprite.svg#hide'" />
-          </svg>
-        </div>
-      </div>
-      <div *ngIf="showSocialNetwork" class="inputSection">
-        <div class="form-group facebook">
-          <div fxLayout="row" fxLayoutGap="7px">
-            <svg class="facebook" aria-hidden="true">
-              <use [attr.xlink:href]="'assets/form/sprite.svg#facebook'" />
-            </svg>
-            <input
-              type="text"
-              placeholder="facebook.com/resin"
-              formControlName="facebook"
-              class="form-input withIcon"
-              (input)="setValidationsForm()"
-            />
-            <app-svg-icon
-              *ngIf="
-                structureForm.get('facebook').valid &&
-                structureForm.get('facebook').value !== null &&
-                structureForm.get('facebook').value !== ''
-              "
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'validate'"
-            />
-            <app-svg-icon
-              *ngIf="structureForm.get('facebook').invalid"
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'notValidate'"
-            />
+      <h3>Réseaux sociaux</h3>
+      <div class="inputSection">
+        <div class="row">
+          <app-svg-icon [type]="'tags'" [icon]="'facebook'" [iconClass]="'icon-36'" />
+          <div class="form-group facebook">
+            <div fxLayout="row" fxLayoutGap="7px">
+              <input
+                type="text"
+                placeholder="exemple : facebook.com/resin"
+                formControlName="facebook"
+                class="form-input withIcon"
+                (input)="setValidationsForm()"
+              />
+              <app-svg-icon
+                *ngIf="
+                  structureForm.get('facebook').valid &&
+                  structureForm.get('facebook').value !== null &&
+                  structureForm.get('facebook').value !== ''
+                "
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'validate'"
+              />
+              <app-svg-icon
+                *ngIf="structureForm.get('facebook').invalid"
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'notValidate'"
+              />
+            </div>
           </div>
         </div>
         <div class="form-group twitter">
-          <div fxLayout="row" fxLayoutGap="7px">
-            <svg class="twitter" aria-hidden="true">
-              <use [attr.xlink:href]="'assets/form/sprite.svg#twitter'" />
-            </svg>
-            <input
-              type="text"
-              placeholder="twitter.com/resin"
-              formControlName="twitter"
-              class="form-input withIcon"
-              (input)="setValidationsForm()"
-            />
-            <app-svg-icon
-              *ngIf="
-                structureForm.get('twitter').valid &&
-                structureForm.get('twitter').value !== null &&
-                structureForm.get('twitter').value !== ''
-              "
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'validate'"
-            />
-            <app-svg-icon
-              *ngIf="structureForm.get('twitter').invalid"
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'notValidate'"
-            />
+          <div class="row">
+            <app-svg-icon [type]="'tags'" [icon]="'x'" [iconClass]="'icon-36'" />
+            <div fxLayout="row" fxLayoutGap="7px">
+              <input
+                type="text"
+                placeholder="exemple : twitter.com/resin"
+                formControlName="twitter"
+                class="form-input withIcon"
+                (input)="setValidationsForm()"
+              />
+              <app-svg-icon
+                *ngIf="
+                  structureForm.get('twitter').valid &&
+                  structureForm.get('twitter').value !== null &&
+                  structureForm.get('twitter').value !== ''
+                "
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'validate'"
+              />
+              <app-svg-icon
+                *ngIf="structureForm.get('twitter').invalid"
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'notValidate'"
+              />
+            </div>
           </div>
         </div>
         <div class="form-group instagram">
-          <div fxLayout="row" fxLayoutGap="7px">
-            <svg class="instagram" aria-hidden="true">
-              <use [attr.xlink:href]="'assets/form/sprite.svg#instagram'" />
-            </svg>
-            <input
-              type="text"
-              formControlName="instagram"
-              placeholder="instagram.com/resin"
-              class="form-input withIcon"
-              (input)="setValidationsForm()"
-            />
+          <div class="row">
+            <app-svg-icon [type]="'tags'" [icon]="'instagram'" [iconClass]="'icon-36'" />
+            <div fxLayout="row" fxLayoutGap="7px">
+              <input
+                type="text"
+                formControlName="instagram"
+                placeholder="exemple : instagram.com/resin"
+                class="form-input withIcon"
+                (input)="setValidationsForm()"
+              />
 
-            <app-svg-icon
-              *ngIf="
-                structureForm.get('instagram').valid &&
-                structureForm.get('instagram').value !== null &&
-                structureForm.get('instagram').value !== ''
-              "
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'validate'"
-            />
-            <app-svg-icon
-              *ngIf="structureForm.get('instagram').invalid"
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'notValidate'"
-            />
+              <app-svg-icon
+                *ngIf="
+                  structureForm.get('instagram').valid &&
+                  structureForm.get('instagram').value !== null &&
+                  structureForm.get('instagram').value !== ''
+                "
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'validate'"
+              />
+              <app-svg-icon
+                *ngIf="structureForm.get('instagram').invalid"
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'notValidate'"
+              />
+            </div>
           </div>
         </div>
         <div class="form-group linkedin">
-          <div fxLayout="row" fxLayoutGap="7px">
-            <svg class="linkedin" aria-hidden="true">
-              <use [attr.xlink:href]="'assets/form/sprite.svg#linkedin'" />
-            </svg>
-            <input
-              type="text"
-              formControlName="linkedin"
-              placeholder="linkedin.com/in/resin"
-              class="form-input withIcon"
-              (input)="setValidationsForm()"
-            />
-            <app-svg-icon
-              *ngIf="
-                structureForm.get('linkedin').valid &&
-                structureForm.get('linkedin').value !== null &&
-                structureForm.get('linkedin').value !== ''
-              "
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'validate'"
-            />
-            <app-svg-icon
-              *ngIf="structureForm.get('linkedin').invalid"
-              class="validationIcon"
-              [iconClass]="'icon-26'"
-              [type]="'form'"
-              [icon]="'notValidate'"
-            />
+          <div class="row">
+            <app-svg-icon [type]="'tags'" [icon]="'linkedin'" [iconClass]="'icon-36'" />
+            <div fxLayout="row" fxLayoutGap="7px">
+              <input
+                type="text"
+                formControlName="linkedin"
+                placeholder="exemple : linkedin.com/in/resin"
+                class="form-input withIcon"
+                (input)="setValidationsForm()"
+              />
+              <app-svg-icon
+                *ngIf="
+                  structureForm.get('linkedin').valid &&
+                  structureForm.get('linkedin').value !== null &&
+                  structureForm.get('linkedin').value !== ''
+                "
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'validate'"
+              />
+              <app-svg-icon
+                *ngIf="structureForm.get('linkedin').invalid"
+                class="validationIcon"
+                [iconClass]="'icon-26'"
+                [type]="'form'"
+                [icon]="'notValidate'"
+              />
+            </div>
           </div>
         </div>
       </div>
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss
index 82516447a..fafe6f77f 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss
@@ -2,155 +2,41 @@
 @import 'color';
 @import 'breakpoint';
 
-.collapse {
-  border: 1px solid $grey-5;
+form {
+  display: flex;
+  flex-direction: column;
+  gap: 40px;
+}
+
+.card {
+  border: 1px solid $grey-6;
   border-radius: 4px;
-  margin-bottom: 13px;
   max-width: 600px;
-  @media #{$small-phone} {
-    width: 95% !important;
+  padding: 1.5rem;
+
+  display: flex;
+  flex-direction: column;
+  gap: 1rem;
+
+  h3 {
+    text-transform: uppercase;
+    @include font-bold-18;
   }
-  &.notCollapsed {
-    margin-bottom: 8px;
-    background: $grey-9;
-    .logo {
-      .hide {
-        display: none;
-      }
-      .show {
-        display: block;
-      }
+
+  .inputSection {
+    display: flex;
+    flex-direction: column;
+    gap: 1.5rem;
+    .row {
+      display: flex;
+      gap: 1.5rem;
+      align-items: end;
     }
   }
+
   .form-group {
     margin: 0;
     color: $grey-2;
     @include font-regular-14;
-    &.website,
-    &.facebook,
-    &.twitter,
-    &.instagram,
-    &.linkedin {
-      svg {
-        height: 22px;
-        width: 22px;
-        padding: 6px;
-      }
-      &:focus-within {
-        input {
-          border-color: $grey-3;
-          fill: $primary-color;
-        }
-      }
-    }
-    app-svg-icon {
-      padding-top: 12px;
-      margin-right: 0 !important;
-    }
-    &.website {
-      &:focus-within {
-        svg {
-          &.website {
-            border-color: $grey-3;
-            fill: $primary-color;
-          }
-        }
-      }
-    }
-    &.facebook {
-      &:focus-within {
-        svg {
-          &.facebook {
-            border-color: $grey-3;
-            fill: $primary-color;
-          }
-        }
-      }
-    }
-    &.instagram {
-      &:focus-within {
-        svg {
-          &.instagram {
-            border-color: $grey-3;
-            fill: $primary-color;
-          }
-        }
-      }
-    }
-    &.twitter {
-      &:focus-within {
-        svg {
-          &.twitter {
-            border-color: $grey-3;
-            fill: $primary-color;
-          }
-        }
-      }
-    }
-    &.linkedin {
-      &:focus-within {
-        svg {
-          &.linkedin {
-            border-color: $grey-3;
-            fill: $primary-color;
-          }
-        }
-      }
-    }
-  }
-  .inputSection {
-    input {
-      width: 100%;
-      margin-top: 8px;
-      &.withIcon {
-        border-radius: 0 4px 4px 0;
-        border-left: 0;
-      }
-    }
-    padding: 0px 15px 19px 12px;
-    svg {
-      margin-top: 8px;
-      width: 22px;
-      height: 38px;
-      fill: $grey-3;
-      margin-right: 0 !important;
-      border: 1px solid $grey-5;
-      border-radius: 4px 0 0 4px;
-      border-right: 0;
-      padding-left: 16px;
-      background: $grey-9;
-    }
-  }
-  .titleCollapse {
-    width: 100%;
-    @include font-bold-16;
-    color: $grey-2;
-    p {
-      color: $grey-2;
-      @include font-bold-16;
-    }
-  }
-  .collapseHeader {
-    height: 65px;
-    padding: 0 15px 0 12px;
-    cursor: pointer;
-  }
-  .logo {
-    height: 24px;
-    width: 24px;
-    svg {
-      width: 100%;
-      height: 100%;
-      fill: $grey-1;
-    }
-  }
-  .logo,
-  .titleCollapse {
-    .hide {
-      display: block;
-    }
-    .show {
-      display: none;
-    }
   }
 }
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.ts b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.ts
index bafe4ebb8..89df0717d 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.ts
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.ts
@@ -8,29 +8,13 @@ import { UntypedFormGroup } from '@angular/forms';
 })
 export class StructureWebAndSocialNetworkComponent implements OnInit {
   @Input() structureForm: UntypedFormGroup;
-  @Input() showSocialNetwork: boolean;
-  @Input() showWebsite: boolean;
   @Input() isEditMode: boolean;
-  @Output() toggleWebsite = new EventEmitter<any>();
-  @Output() toggleSocials = new EventEmitter<any>();
   @Output() validateForm = new EventEmitter<any>();
 
   ngOnInit(): void {
-    if (this.isEditMode) {
-      this.showSocialNetwork = true;
-      this.showWebsite = true;
-    }
     this.validateForm.emit();
   }
 
-  public toggleSocialNetwork(): void {
-    this.toggleSocials.emit();
-  }
-
-  public toggleWebSite(): void {
-    this.toggleWebsite.emit();
-  }
-
   public setValidationsForm(): void {
     this.validateForm.emit();
   }
diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss
index 2bce7673a..be7d81b9a 100644
--- a/src/app/shared/components/svg-icon/svg-icon.component.scss
+++ b/src/app/shared/components/svg-icon/svg-icon.component.scss
@@ -13,6 +13,7 @@ $sizes: (
   28: 28px,
   30: 30px,
   32: 32px,
+  36: 36px,
   40: 40px,
   52: 52px,
   75: 75px,
diff --git a/src/assets/tags/sprite.svg b/src/assets/tags/sprite.svg
index c928d5582..3e77cb45b 100644
--- a/src/assets/tags/sprite.svg
+++ b/src/assets/tags/sprite.svg
@@ -74,4 +74,17 @@
       d="M8.32251 13.2725H8.30035H6.83785V8.5305H8.32251V13.2725ZM7.5691 7.88789C7.33273 7.88789 7.1333 7.80664 6.9708 7.64414C6.8083 7.46687 6.72705 7.26744 6.72705 7.04585C6.72705 6.80948 6.8083 6.61005 6.9708 6.44755C7.1333 6.27028 7.33273 6.18164 7.5691 6.18164C7.80546 6.18164 8.00489 6.27028 8.16739 6.44755C8.34466 6.61005 8.4333 6.80948 8.4333 7.04585C8.4333 7.26744 8.34466 7.46687 8.16739 7.64414C8.00489 7.80664 7.80546 7.88789 7.5691 7.88789ZM13.818 10.6799V13.2725H12.3555V10.968C12.3555 10.7907 12.3481 10.6504 12.3333 10.547C12.3185 10.4288 12.289 10.2958 12.2447 10.1481C12.2151 10.0004 12.1413 9.8896 12.0231 9.81573C11.9049 9.74187 11.7572 9.70494 11.5799 9.70494C11.2401 9.70494 11.0111 9.81573 10.893 10.0373C10.7748 10.2589 10.7157 10.5544 10.7157 10.9237V13.2725H9.23103V8.5305H10.6492V9.17312H10.6714C10.7748 8.9663 10.9447 8.78903 11.181 8.6413C11.4322 8.49357 11.7276 8.41971 12.0674 8.41971C12.4219 8.41971 12.7174 8.4788 12.9538 8.59698C13.2049 8.70039 13.3896 8.86289 13.5077 9.08448C13.6259 9.2913 13.7072 9.52028 13.7515 9.77141C13.7958 10.0225 13.818 10.3254 13.818 10.6799Z"
       fill="#DA3635" />
   </symbol>
+
+  <symbol id="facebook" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <rect width="36" height="36" rx="18" fill="#FFE5E4" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M15.9348 27.1011H19.6809V19.8009H22.4665L22.9948 16.343H19.6809V14.0857C19.6809 12.869 20.3213 12.2606 21.602 12.2606H23.0909V9.33096C22.1944 9.17087 21.3139 9.09082 20.4494 9.09082C19.5208 9.09082 18.7204 9.26692 18.048 9.61912C17.4076 9.97132 16.8953 10.4996 16.5111 11.204C16.1269 11.9084 15.9348 12.7409 15.9348 13.7015V16.343H12.9091V19.8009H15.9348V27.1011Z"
+      fill="#DA3635" />
+  </symbol>
+  <symbol id="x" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <rect width="36" height="36" rx="18" fill="#FFE5E4" />
+    <path
+      d="M23.2229 9.87012H25.9829L19.9229 16.7701L27.0029 26.1301H21.4469L17.0969 20.4421L12.1169 26.1301H9.35695L15.7769 18.7501L8.99695 9.87012H14.6909L18.6209 15.0661L23.2229 9.87012ZM22.2569 24.5101H23.7869L13.8869 11.4301H12.2429L22.2569 24.5101Z"
+      fill="#DA3635" />
+  </symbol>
 </svg>
\ No newline at end of file
diff --git a/src/styles.scss b/src/styles.scss
index b77ccafe1..b25600143 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -622,3 +622,7 @@ button {
 sup {
   color: $red;
 }
+
+h3 {
+  margin: 0;
+}
-- 
GitLab


From dc7ecc44d904bacf227c468c22db7eceb4b41001 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 4 Dec 2023 11:34:15 +0100
Subject: [PATCH 15/77] equipments

---
 src/app/form/form-view/form-view.component.ts |   2 +-
 .../structure-equipments.component.html       | 145 +++++++++---------
 .../structure-equipments.component.scss       |  42 ++---
 .../structure-equipments.component.ts         |   7 +-
 src/assets/form/sprite.svg                    |   4 +-
 src/styles.scss                               |   1 +
 6 files changed, 101 insertions(+), 100 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index d2a76bef4..d81a00b8e 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureWebAndSocialNetwork;
+        this.currentPage = structureFormStep.structureEquipments;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
index 7ebcb5901..7336b971b 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
@@ -6,80 +6,77 @@
       <p>Facultatif</p>
     </div>
   </div>
-  <ng-container *ngFor="let equipment of selfServiceMaterial">
-    <div *ngIf="['computer', 'printer', 'scanner'].includes(equipment.module.id)" class="controller equipments">
-      <div fxLayout="column">
-        <div class="controllerHeader" fxLayout="row" fxLayoutAlign="space-between center">
-          <div class="flex-item">
-            <p class="no-margin">Nombre {{ formatEquipment(equipment.module.name) }}</p>
-          </div>
-          <div class="inputSection flex-item equipments" fxLayout="row" fxLayoutAlign="center center">
-            <ng-container *ngIf="equipment.module.id === 'computer'">
-              <svg
-                class="hide"
-                aria-hidden="true"
-                [ngClass]="{ disabled: structureForm.value.nbComputers === 0 }"
-                (click)="changeValueHandler(equipment.module.id, -1)"
-              >
-                <use [attr.xlink:href]="'assets/form/sprite.svg#minus'" />
-              </svg>
-              <input
-                type="number"
-                formControlName="nbComputers"
-                min="0"
-                step="1"
-                max="1000"
-                class="form-input nbEquipment"
-                [(value)]="structureForm.value.nbComputers"
-                (input)="setValidationsForm()"
-              />
-            </ng-container>
-            <ng-container *ngIf="equipment.module.id === 'printer'">
-              <svg
-                class="hide"
-                aria-hidden="true"
-                [ngClass]="{ disabled: structureForm.value.nbPrinters === 0 }"
-                (click)="changeValueHandler(equipment.module.id, -1)"
-              >
-                <use [attr.xlink:href]="'assets/form/sprite.svg#minus'" />
-              </svg>
-              <input
-                type="number"
-                formControlName="nbPrinters"
-                min="0"
-                step="1"
-                max="1000"
-                class="form-input nbEquipment"
-                [(value)]="structureForm.value.nbPrinters"
-                (input)="setValidationsForm()"
-              />
-            </ng-container>
-            <ng-container *ngIf="equipment.module.id === 'scanner'">
-              <svg
-                class="hide"
-                aria-hidden="true"
-                [ngClass]="{ disabled: structureForm.value.nbScanners === 0 }"
-                (click)="changeValueHandler(equipment.module.id, -1)"
-              >
-                <use [attr.xlink:href]="'assets/form/sprite.svg#minus'" />
-              </svg>
-              <input
-                type="number"
-                formControlName="nbScanners"
-                min="0"
-                step="1"
-                max="1000"
-                class="form-input nbEquipment"
-                [(value)]="structureForm.value.nbScanners"
-                (input)="setValidationsForm()"
-              />
-            </ng-container>
-            <svg class="show" aria-hidden="true" (click)="changeValueHandler(equipment.module.id, 1)">
-              <use [attr.xlink:href]="'assets/form/sprite.svg#plus'" />
-            </svg>
-          </div>
+  <div class="equipments">
+    <ng-container *ngFor="let equipment of selfServiceMaterial">
+      <div *ngIf="['computer', 'printer', 'scanner'].includes(equipment.module.id)" class="controller">
+        <p>Nombre {{ formatEquipment(equipment.module.name) }}</p>
+
+        <div class="inputSection">
+          <ng-container *ngIf="equipment.module.id === 'computer'">
+            <app-v3-icon-button
+              [variant]="buttonTypeEnumV3.PrimaryBlack"
+              [iconFolder]="'form'"
+              [iconName]="'hide'"
+              [disabled]="structureForm.value.nbComputers === 0"
+              (click)="changeValueHandler(equipment.module.id, -1)"
+            />
+            <input
+              type="number"
+              formControlName="nbComputers"
+              min="0"
+              step="1"
+              max="1000"
+              class="form-input nbEquipment"
+              [(value)]="structureForm.value.nbComputers"
+              (input)="setValidationsForm()"
+            />
+          </ng-container>
+          <ng-container *ngIf="equipment.module.id === 'printer'">
+            <app-v3-icon-button
+              [variant]="buttonTypeEnumV3.PrimaryBlack"
+              [iconFolder]="'form'"
+              [iconName]="'hide'"
+              [disabled]="structureForm.value.nbPrinters === 0"
+              (click)="changeValueHandler(equipment.module.id, -1)"
+            />
+            <input
+              type="number"
+              formControlName="nbPrinters"
+              min="0"
+              step="1"
+              max="1000"
+              class="form-input nbEquipment"
+              [(value)]="structureForm.value.nbPrinters"
+              (input)="setValidationsForm()"
+            />
+          </ng-container>
+          <ng-container *ngIf="equipment.module.id === 'scanner'">
+            <app-v3-icon-button
+              [variant]="buttonTypeEnumV3.PrimaryBlack"
+              [iconFolder]="'form'"
+              [iconName]="'hide'"
+              [disabled]="structureForm.value.nbScanners === 0"
+              (click)="changeValueHandler(equipment.module.id, -1)"
+            />
+            <input
+              type="number"
+              formControlName="nbScanners"
+              min="0"
+              step="1"
+              max="1000"
+              class="form-input nbEquipment"
+              [(value)]="structureForm.value.nbScanners"
+              (input)="setValidationsForm()"
+            />
+          </ng-container>
+          <app-v3-icon-button
+            [variant]="buttonTypeEnumV3.PrimaryBlack"
+            [iconFolder]="'form'"
+            [iconName]="'show'"
+            (click)="changeValueHandler(equipment.module.id, 1)"
+          />
         </div>
       </div>
-    </div>
-  </ng-container>
+    </ng-container>
+  </div>
 </form>
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
index 42a3aa9a5..97ba6d622 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
@@ -2,11 +2,17 @@
 @import 'color';
 @import 'breakpoint';
 
-//section equipments controller
+.equipments {
+  display: flex;
+  flex-direction: column;
+  gap: 1rem;
+}
 .controller {
   border: 1px solid $grey-5;
   border-radius: 4px;
-  margin-bottom: 13px;
+
+  height: 80px;
+  box-sizing: border-box;
   max-width: 600px;
   @media #{$small-phone} {
     width: 95% !important;
@@ -14,28 +20,22 @@
   @media #{$tablet} {
     width: 296px;
   }
-  .controllerHeader {
-    height: 65px;
-    padding: 0 15px 0 12px;
-    p {
-      @include font-bold-14;
-    }
+
+  padding: 1rem;
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+
+  p {
+    @include font-bold-16;
   }
-  .equipments {
-    svg {
-      width: 32px;
-      height: 32px;
-      background-color: $grey-9;
-      border-radius: 50%;
-      cursor: pointer;
-      &.hide.disabled {
-        opacity: 0.4;
-        cursor: not-allowed;
-      }
-    }
+
+  .inputSection {
+    display: flex;
+    gap: 0.5rem;
+
     input {
       width: 56px;
-      margin: 0 6px;
       text-align: right;
     }
     input::-webkit-outer-spin-button,
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
index da5810917..5bc107392 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
@@ -1,5 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { AbstractControl, UntypedFormGroup } from '@angular/forms';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button.type';
 import { Module } from '../../../../structure-list/models/module.model';
 
 @Component({
@@ -16,6 +17,8 @@ export class StructureEquipmentsComponent implements OnInit {
   }[];
   @Output() validateForm = new EventEmitter<any>();
 
+  public buttonTypeEnumV3 = ButtonTypeV3;
+
   private vowels = ['a', 'e', 'i', 'o', 'u', 'y'];
 
   async ngOnInit(): Promise<void> {
@@ -49,9 +52,9 @@ export class StructureEquipmentsComponent implements OnInit {
    */
   public formatEquipment(equipment: string): string {
     if (this.vowels.includes(equipment.toLocaleLowerCase()[0])) {
-      return `d'${equipment.toLocaleLowerCase()}(s)`;
+      return `d'${equipment.toLocaleLowerCase()}s`;
     } else {
-      return `de ${equipment.toLocaleLowerCase()}(s)`;
+      return `de ${equipment.toLocaleLowerCase()}s`;
     }
   }
   public goBack(): void {
diff --git a/src/assets/form/sprite.svg b/src/assets/form/sprite.svg
index a9ddf9172..2f332051c 100644
--- a/src/assets/form/sprite.svg
+++ b/src/assets/form/sprite.svg
@@ -106,8 +106,8 @@
   </symbol>
 
   <symbol id="plus" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
-    <path d="M16 9.63623L16 22.3642" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
-    <path d="M22.3633 16L9.63536 16" stroke="#333333" stroke-width="1.5" stroke-linecap="round" />
+    <path d="M16 9.63623L16 22.3642" stroke="none" stroke-width="1.5" stroke-linecap="round" />
+    <path d="M22.3633 16L9.63536 16" stroke="none" stroke-width="1.5" stroke-linecap="round" />
   </symbol>
 
   <symbol id="minus" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
diff --git a/src/styles.scss b/src/styles.scss
index b25600143..3933bcc57 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -623,6 +623,7 @@ sup {
   color: $red;
 }
 
+p,
 h3 {
   margin: 0;
 }
-- 
GitLab


From 64ea5456c0553c23c25541a6bf363ebee25dfa07 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 4 Dec 2023 11:40:12 +0100
Subject: [PATCH 16/77] wip

---
 src/app/form/form-view/form-view.component.ts                   | 2 +-
 .../structure-labels/structure-labels.component.html            | 2 +-
 .../components/checkbox-form/checkbox-form.component.html       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index d81a00b8e..80e092119 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureEquipments;
+        this.currentPage = structureFormStep.structureLabels;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
index 111a559f6..47d043cf2 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
@@ -11,7 +11,7 @@
     />
     <div class="titleContent">
       <h3>La structure est-elle labellisée&nbsp;?</h3>
-      <p>Facultatif</p>
+      <p>Facultatif - Plusieurs choix possibles</p>
     </div>
   </div>
   <div *ngIf="labelsQualifications" class="labelsQualifications">
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.html b/src/app/shared/components/checkbox-form/checkbox-form.component.html
index faacae4d9..de36e4511 100644
--- a/src/app/shared/components/checkbox-form/checkbox-form.component.html
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.html
@@ -1,4 +1,4 @@
-<button type="button" [ngClass]="{ selected: isChecked }" (click)="clicked()">
+<button [ngClass]="{ selected: isChecked }" (click)="clicked()">
   <div class="checkmark">
     <svg class="validate" aria-hidden="true">
       <use *ngIf="isChecked" [attr.xlink:href]="'assets/form/sprite.svg#checkVectorSquareFull'" />
-- 
GitLab


From 6236b98b5d77a601dc312de46e9f93059fe4f650 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 4 Dec 2023 16:20:59 +0100
Subject: [PATCH 17/77] checkbox form

---
 src/app/form/form-view/form-view.component.ts |  2 +-
 .../structure-access-modality.component.html  |  2 +-
 .../structure-access-modality.component.scss  |  5 +++
 .../structure-access-modality.component.ts    |  1 +
 .../checkbox-form.component.html              | 11 +++---
 .../checkbox-form.component.scss              | 34 ++++++-------------
 .../checkbox-form/checkbox-form.stories.ts    | 31 +++++++++++++++++
 .../components/v3/input/input.stories.ts      |  1 -
 8 files changed, 54 insertions(+), 33 deletions(-)
 create mode 100644 src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.scss
 create mode 100644 src/app/shared/components/checkbox-form/checkbox-form.stories.ts

diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 80e092119..6037d5e7d 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureLabels;
+        this.currentPage = structureFormStep.structureAccessModality;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
diff --git a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
index e45141325..46ad77665 100644
--- a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
+++ b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
@@ -10,7 +10,7 @@
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
     <span>Il faut renseigner au moins un champ</span>
   </p>
-  <div *ngIf="accessModality" fxLayout="column wrap" fxLayoutAlign="flex-start" class="welcomingTerms">
+  <div *ngIf="accessModality" class="modality">
     <app-checkbox-form
       *ngFor="let module of accessModality.modules"
       [isChecked]="isInArray('accessModality', module.id)"
diff --git a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.scss b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.scss
new file mode 100644
index 000000000..f2d8504c0
--- /dev/null
+++ b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.scss
@@ -0,0 +1,5 @@
+.modality {
+  display: flex;
+  flex-direction: column;
+  gap: 1rem;
+}
diff --git a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.ts b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.ts
index c22736f7a..f10f087ae 100644
--- a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.ts
+++ b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.ts
@@ -6,6 +6,7 @@ import { Category } from '../../../../structure-list/models/category.model';
 @Component({
   selector: 'app-structure-access-modality',
   templateUrl: './structure-access-modality.component.html',
+  styleUrls: ['./structure-access-modality.component.scss'],
 })
 export class StructureAccessModalityComponent implements OnInit {
   @Input() structureForm: UntypedFormGroup;
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.html b/src/app/shared/components/checkbox-form/checkbox-form.component.html
index de36e4511..6b5181371 100644
--- a/src/app/shared/components/checkbox-form/checkbox-form.component.html
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.html
@@ -1,12 +1,9 @@
-<button [ngClass]="{ selected: isChecked }" (click)="clicked()">
-  <div class="checkmark">
-    <svg class="validate" aria-hidden="true">
-      <use *ngIf="isChecked" [attr.xlink:href]="'assets/form/sprite.svg#checkVectorSquareFull'" />
-      <use *ngIf="isChecked === false" [attr.xlink:href]="'assets/form/sprite.svg#checkVectorSquareEmpty'" />
-    </svg>
-  </div>
+<button type="button" [ngClass]="{ selected: isChecked }" (click)="clicked()">
+  <app-v3-checkbox [checked]="isChecked" />
+
   <svg *ngIf="iconSvg" aria-hidden="true" class="icon" [ngClass]="iconType">
     <use [attr.xlink:href]="'assets/form/sprite.svg#' + iconSvg" />
   </svg>
+
   <p>{{ text }}</p>
 </button>
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.scss b/src/app/shared/components/checkbox-form/checkbox-form.component.scss
index 2f83d832b..b275d28bc 100644
--- a/src/app/shared/components/checkbox-form/checkbox-form.component.scss
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.scss
@@ -2,25 +2,19 @@
 @import 'typography';
 
 button {
-  width: 300px;
-  height: 65px;
-  margin: 0;
-  background: $grey-9;
-  padding: 0 16px;
-  border-radius: 4px;
-  border: 3px solid transparent;
+  width: 100%;
+  height: 80px;
+  padding: 1rem;
+  border-radius: 8px;
+  border: 1px solid $grey-4;
   cursor: pointer;
   box-sizing: border-box;
+  background-color: $grey-10;
 
   display: flex;
   justify-content: flex-start;
   align-items: center;
-  gap: 8px;
-
-  svg.validate {
-    width: 24px;
-    height: 24px;
-  }
+  gap: 1rem;
 
   svg.icon {
     height: 44px;
@@ -30,23 +24,17 @@ button {
 
   p {
     @include font-bold-16;
-    text-align: left;
-    color: $grey-2;
+    color: $grey-1;
   }
 
   &:hover {
-    border-color: $grey-5;
+    border-color: $grey-2;
     p {
       color: $grey-3;
     }
   }
-
   &.selected {
-    background: $white;
-    border-color: $green-1;
-  }
-  .checkmark {
-    width: 24px;
-    height: 24px;
+    border-color: $red;
+    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
   }
 }
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.stories.ts b/src/app/shared/components/checkbox-form/checkbox-form.stories.ts
new file mode 100644
index 000000000..360f6271a
--- /dev/null
+++ b/src/app/shared/components/checkbox-form/checkbox-form.stories.ts
@@ -0,0 +1,31 @@
+import { CommonModule } from '@angular/common';
+import type { Meta, StoryObj } from '@storybook/angular';
+import { componentWrapperDecorator, moduleMetadata } from '@storybook/angular';
+import { CheckboxV3Component } from '../v3/checkbox/checkbox.component';
+import { CheckboxFormComponent } from './checkbox-form.component';
+
+// More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
+const meta: Meta<CheckboxFormComponent> = {
+  title: 'Form/Checkbox',
+  component: CheckboxFormComponent,
+  tags: ['autodocs'],
+  decorators: [
+    moduleMetadata({
+      declarations: [CheckboxV3Component],
+      imports: [CommonModule],
+    }),
+  ],
+  argTypes: {},
+};
+
+export default meta;
+type Story = StoryObj<CheckboxFormComponent>;
+
+export const Checkbox: Story = {
+  args: {
+    text: 'En accès libre',
+    iconSvg: 'accesLibre',
+    iconType: 'form',
+  },
+  decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
+};
diff --git a/src/app/shared/components/v3/input/input.stories.ts b/src/app/shared/components/v3/input/input.stories.ts
index 063ebddce..40150f7c4 100644
--- a/src/app/shared/components/v3/input/input.stories.ts
+++ b/src/app/shared/components/v3/input/input.stories.ts
@@ -24,7 +24,6 @@ export const Input: Story = {
   args: {
     id: 'input1',
     label: 'Label',
-    value: '',
   },
 };
 
-- 
GitLab


From e860136e2dc27275e5004bdd0d6efa750cdaab0e Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 4 Dec 2023 16:37:58 +0100
Subject: [PATCH 18/77] update socials

---
 ...ture-web-and-social-network.component.html | 244 +++++++++---------
 src/styles.scss                               |   1 +
 2 files changed, 122 insertions(+), 123 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index a5e85cbaa..0b6e9fb12 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -51,136 +51,134 @@
     </div>
   </div>
   <div class="card">
-    <div fxLayout="column">
-      <h3>Réseaux sociaux</h3>
-      <div class="inputSection">
-        <div class="row">
-          <app-svg-icon [type]="'tags'" [icon]="'facebook'" [iconClass]="'icon-36'" />
-          <div class="form-group facebook">
-            <div fxLayout="row" fxLayoutGap="7px">
-              <input
-                type="text"
-                placeholder="exemple : facebook.com/resin"
-                formControlName="facebook"
-                class="form-input withIcon"
-                (input)="setValidationsForm()"
-              />
-              <app-svg-icon
-                *ngIf="
-                  structureForm.get('facebook').valid &&
-                  structureForm.get('facebook').value !== null &&
-                  structureForm.get('facebook').value !== ''
-                "
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'validate'"
-              />
-              <app-svg-icon
-                *ngIf="structureForm.get('facebook').invalid"
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'notValidate'"
-              />
-            </div>
+    <h3>Réseaux sociaux</h3>
+    <div class="inputSection">
+      <div class="row">
+        <app-svg-icon [type]="'tags'" [icon]="'facebook'" [iconClass]="'icon-36'" />
+        <div class="form-group facebook">
+          <div fxLayout="row" fxLayoutGap="7px">
+            <input
+              type="text"
+              placeholder="exemple : facebook.com/resin"
+              formControlName="facebook"
+              class="form-input withIcon"
+              (input)="setValidationsForm()"
+            />
+            <app-svg-icon
+              *ngIf="
+                structureForm.get('facebook').valid &&
+                structureForm.get('facebook').value !== null &&
+                structureForm.get('facebook').value !== ''
+              "
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="structureForm.get('facebook').invalid"
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
           </div>
         </div>
-        <div class="form-group twitter">
-          <div class="row">
-            <app-svg-icon [type]="'tags'" [icon]="'x'" [iconClass]="'icon-36'" />
-            <div fxLayout="row" fxLayoutGap="7px">
-              <input
-                type="text"
-                placeholder="exemple : twitter.com/resin"
-                formControlName="twitter"
-                class="form-input withIcon"
-                (input)="setValidationsForm()"
-              />
-              <app-svg-icon
-                *ngIf="
-                  structureForm.get('twitter').valid &&
-                  structureForm.get('twitter').value !== null &&
-                  structureForm.get('twitter').value !== ''
-                "
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'validate'"
-              />
-              <app-svg-icon
-                *ngIf="structureForm.get('twitter').invalid"
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'notValidate'"
-              />
-            </div>
+      </div>
+      <div class="form-group twitter">
+        <div class="row">
+          <app-svg-icon [type]="'tags'" [icon]="'x'" [iconClass]="'icon-36'" />
+          <div fxLayout="row" fxLayoutGap="7px">
+            <input
+              type="text"
+              placeholder="exemple : twitter.com/resin"
+              formControlName="twitter"
+              class="form-input withIcon"
+              (input)="setValidationsForm()"
+            />
+            <app-svg-icon
+              *ngIf="
+                structureForm.get('twitter').valid &&
+                structureForm.get('twitter').value !== null &&
+                structureForm.get('twitter').value !== ''
+              "
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="structureForm.get('twitter').invalid"
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
           </div>
         </div>
-        <div class="form-group instagram">
-          <div class="row">
-            <app-svg-icon [type]="'tags'" [icon]="'instagram'" [iconClass]="'icon-36'" />
-            <div fxLayout="row" fxLayoutGap="7px">
-              <input
-                type="text"
-                formControlName="instagram"
-                placeholder="exemple : instagram.com/resin"
-                class="form-input withIcon"
-                (input)="setValidationsForm()"
-              />
+      </div>
+      <div class="form-group instagram">
+        <div class="row">
+          <app-svg-icon [type]="'tags'" [icon]="'instagram'" [iconClass]="'icon-36'" />
+          <div fxLayout="row" fxLayoutGap="7px">
+            <input
+              type="text"
+              formControlName="instagram"
+              placeholder="exemple : instagram.com/resin"
+              class="form-input withIcon"
+              (input)="setValidationsForm()"
+            />
 
-              <app-svg-icon
-                *ngIf="
-                  structureForm.get('instagram').valid &&
-                  structureForm.get('instagram').value !== null &&
-                  structureForm.get('instagram').value !== ''
-                "
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'validate'"
-              />
-              <app-svg-icon
-                *ngIf="structureForm.get('instagram').invalid"
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'notValidate'"
-              />
-            </div>
+            <app-svg-icon
+              *ngIf="
+                structureForm.get('instagram').valid &&
+                structureForm.get('instagram').value !== null &&
+                structureForm.get('instagram').value !== ''
+              "
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="structureForm.get('instagram').invalid"
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
           </div>
         </div>
-        <div class="form-group linkedin">
-          <div class="row">
-            <app-svg-icon [type]="'tags'" [icon]="'linkedin'" [iconClass]="'icon-36'" />
-            <div fxLayout="row" fxLayoutGap="7px">
-              <input
-                type="text"
-                formControlName="linkedin"
-                placeholder="exemple : linkedin.com/in/resin"
-                class="form-input withIcon"
-                (input)="setValidationsForm()"
-              />
-              <app-svg-icon
-                *ngIf="
-                  structureForm.get('linkedin').valid &&
-                  structureForm.get('linkedin').value !== null &&
-                  structureForm.get('linkedin').value !== ''
-                "
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'validate'"
-              />
-              <app-svg-icon
-                *ngIf="structureForm.get('linkedin').invalid"
-                class="validationIcon"
-                [iconClass]="'icon-26'"
-                [type]="'form'"
-                [icon]="'notValidate'"
-              />
-            </div>
+      </div>
+      <div class="form-group linkedin">
+        <div class="row">
+          <app-svg-icon [type]="'tags'" [icon]="'linkedin'" [iconClass]="'icon-36'" />
+          <div fxLayout="row" fxLayoutGap="7px">
+            <input
+              type="text"
+              formControlName="linkedin"
+              placeholder="exemple : linkedin.com/in/resin"
+              class="form-input withIcon"
+              (input)="setValidationsForm()"
+            />
+            <app-svg-icon
+              *ngIf="
+                structureForm.get('linkedin').valid &&
+                structureForm.get('linkedin').value !== null &&
+                structureForm.get('linkedin').value !== ''
+              "
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="structureForm.get('linkedin').invalid"
+              class="validationIcon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
           </div>
         </div>
       </div>
diff --git a/src/styles.scss b/src/styles.scss
index 395f07b39..0aa655e60 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -623,6 +623,7 @@ button {
 
 h1,
 h2,
+h3,
 p {
   margin: 0;
 }
-- 
GitLab


From a6647a9defc530837f7f4382232f041aff9d4c52 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 11:27:28 +0100
Subject: [PATCH 19/77] adjust equipment

---
 .../structure-equipments/structure-equipments.component.html  | 4 ++++
 .../structure-equipments/structure-equipments.component.scss  | 1 +
 2 files changed, 5 insertions(+)

diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
index 7336b971b..0c58b4d64 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
@@ -17,6 +17,7 @@
               [variant]="buttonTypeEnumV3.PrimaryBlack"
               [iconFolder]="'form'"
               [iconName]="'hide'"
+              [size]="'medium'"
               [disabled]="structureForm.value.nbComputers === 0"
               (click)="changeValueHandler(equipment.module.id, -1)"
             />
@@ -36,6 +37,7 @@
               [variant]="buttonTypeEnumV3.PrimaryBlack"
               [iconFolder]="'form'"
               [iconName]="'hide'"
+              [size]="'medium'"
               [disabled]="structureForm.value.nbPrinters === 0"
               (click)="changeValueHandler(equipment.module.id, -1)"
             />
@@ -55,6 +57,7 @@
               [variant]="buttonTypeEnumV3.PrimaryBlack"
               [iconFolder]="'form'"
               [iconName]="'hide'"
+              [size]="'medium'"
               [disabled]="structureForm.value.nbScanners === 0"
               (click)="changeValueHandler(equipment.module.id, -1)"
             />
@@ -73,6 +76,7 @@
             [variant]="buttonTypeEnumV3.PrimaryBlack"
             [iconFolder]="'form'"
             [iconName]="'show'"
+            [size]="'medium'"
             (click)="changeValueHandler(equipment.module.id, 1)"
           />
         </div>
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
index 97ba6d622..5397e6ef6 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
@@ -35,6 +35,7 @@
     gap: 0.5rem;
 
     input {
+      height: 40px;
       width: 56px;
       text-align: right;
     }
-- 
GitLab


From 2516fce25788edcd2547cd8d7bb92ae12935a7c5 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 11:39:04 +0100
Subject: [PATCH 20/77] fix label width

---
 .../structure-labels/structure-labels.component.scss          | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
index a4edd718b..bfc585137 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
@@ -2,4 +2,8 @@
   gap: 8px;
   display: flex;
   flex-wrap: wrap;
+
+  app-checkbox-form {
+    flex: 1;
+  }
 }
-- 
GitLab


From 83344a41056e0165cef0d737dcb1bacb503efb68 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 12:51:53 +0100
Subject: [PATCH 21/77] restore default step

---
 src/app/form/form-view/form-view.component.scss | 1 -
 src/app/form/form-view/form-view.component.ts   | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 16d18c787..e8b3bfe2e 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -27,7 +27,6 @@
   padding: 32px 48px;
 
   display: flex;
-  justify-content: center;
 
   @media #{$tablet} {
     margin: 0px 0.5rem;
diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 6037d5e7d..96cba3a81 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -170,7 +170,7 @@ export class FormViewComponent implements OnInit, AfterViewInit {
       if (!this.isEditMode) {
         const PAGE_WITHOUT_COUNT_INCREMENT = 2;
         this.nbSteps = structureFormSteps - PAGE_WITHOUT_COUNT_INCREMENT;
-        this.currentPage = structureFormStep.structureAccessModality;
+        this.currentPage = structureFormStep.structureChoice;
         this.currentFormType = formType.structure;
         this.structure = new Structure();
         this.structureForm = this.formUtils.createStructureForm(this.structure);
-- 
GitLab


From d99ce55b4d3d451b4e33cad59b2f3efa3800d2da Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 13:03:00 +0100
Subject: [PATCH 22/77] cleanup

---
 .../form/form-view/form-view.component.scss   |  3 --
 .../structure-equipments.component.scss       |  1 -
 ...ture-web-and-social-network.component.scss | 48 +++++++++----------
 src/app/header/header.component.ts            |  1 -
 .../data-share-consent.component.html         |  2 -
 src/assets/tags/sprite.svg                    |  1 +
 6 files changed, 25 insertions(+), 31 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index e8b3bfe2e..5f3cc8e79 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -23,9 +23,7 @@
   margin-top: 1rem;
   overflow-y: auto;
   color: $grey-1;
-
   padding: 32px 48px;
-
   display: flex;
 
   @media #{$tablet} {
@@ -47,7 +45,6 @@
       margin-left: 1rem;
     }
   }
-  // TODO move this somewhere more appropriate
   .formGroup {
     display: flex;
     flex-direction: column;
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
index 5397e6ef6..475295fbe 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.scss
@@ -10,7 +10,6 @@
 .controller {
   border: 1px solid $grey-5;
   border-radius: 4px;
-
   height: 80px;
   box-sizing: border-box;
   max-width: 600px;
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss
index fafe6f77f..41aba11a7 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.scss
@@ -6,37 +6,37 @@ form {
   display: flex;
   flex-direction: column;
   gap: 40px;
-}
-
-.card {
-  border: 1px solid $grey-6;
-  border-radius: 4px;
-  max-width: 600px;
-  padding: 1.5rem;
-
-  display: flex;
-  flex-direction: column;
-  gap: 1rem;
 
-  h3 {
-    text-transform: uppercase;
-    @include font-bold-18;
-  }
+  .card {
+    border: 1px solid $grey-6;
+    border-radius: 4px;
+    max-width: 600px;
+    padding: 1.5rem;
 
-  .inputSection {
     display: flex;
     flex-direction: column;
-    gap: 1.5rem;
-    .row {
+    gap: 1rem;
+
+    h3 {
+      text-transform: uppercase;
+      @include font-bold-18;
+    }
+
+    .inputSection {
       display: flex;
+      flex-direction: column;
       gap: 1.5rem;
-      align-items: end;
+      .row {
+        display: flex;
+        gap: 1.5rem;
+        align-items: end;
+      }
     }
-  }
 
-  .form-group {
-    margin: 0;
-    color: $grey-2;
-    @include font-regular-14;
+    .form-group {
+      margin: 0;
+      color: $grey-2;
+      @include font-regular-14;
+    }
   }
 }
diff --git a/src/app/header/header.component.ts b/src/app/header/header.component.ts
index dcda3dcf4..07165bef5 100644
--- a/src/app/header/header.component.ts
+++ b/src/app/header/header.component.ts
@@ -88,7 +88,6 @@ export class HeaderComponent {
         }
       });
     }
-
     return false;
   }
   public goToLoginPage(): void {
diff --git a/src/app/shared/components/data-share-consent/data-share-consent.component.html b/src/app/shared/components/data-share-consent/data-share-consent.component.html
index b8769d455..2073062dd 100644
--- a/src/app/shared/components/data-share-consent/data-share-consent.component.html
+++ b/src/app/shared/components/data-share-consent/data-share-consent.component.html
@@ -28,7 +28,6 @@
         </div>
         <hr *ngIf="dataConsentPendingStructures && dataConsentPendingStructures.length > 1" />
 
-        <!-- TODO convert to switch, false by default ? -->
         <div *ngFor="let structure of dataConsentPendingStructures" class="formGroup inline">
           {{ structure.structureName }}
           <div class="buttons">
@@ -59,7 +58,6 @@
         </p>
 
         <div class="footerModal">
-          <!-- V3 use button -->
           <button
             type="button"
             class="btn-primary"
diff --git a/src/assets/tags/sprite.svg b/src/assets/tags/sprite.svg
index 3e77cb45b..e2660c3d0 100644
--- a/src/assets/tags/sprite.svg
+++ b/src/assets/tags/sprite.svg
@@ -81,6 +81,7 @@
       d="M15.9348 27.1011H19.6809V19.8009H22.4665L22.9948 16.343H19.6809V14.0857C19.6809 12.869 20.3213 12.2606 21.602 12.2606H23.0909V9.33096C22.1944 9.17087 21.3139 9.09082 20.4494 9.09082C19.5208 9.09082 18.7204 9.26692 18.048 9.61912C17.4076 9.97132 16.8953 10.4996 16.5111 11.204C16.1269 11.9084 15.9348 12.7409 15.9348 13.7015V16.343H12.9091V19.8009H15.9348V27.1011Z"
       fill="#DA3635" />
   </symbol>
+
   <symbol id="x" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect width="36" height="36" rx="18" fill="#FFE5E4" />
     <path
-- 
GitLab


From a2868378b67e7aced3315050e25351ffb90be8a9 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 14:13:27 +0100
Subject: [PATCH 23/77] orientation base styles

---
 .../form/footer-form/footer-form.component.ts |  1 +
 .../form-view/form-view-routing.module.ts     |  3 ++-
 .../enums/filtersSteps.enum.ts                |  1 +
 .../navigation/navigation.component.html      |  4 +--
 .../navigation/navigation.component.scss      |  5 ++++
 .../accompaniment-type.component.html         |  7 ++++-
 .../orientation-form-view.component.html      | 26 +++++++++----------
 .../orientation-form-view.component.scss      | 11 ++------
 .../orientation-form-view.component.ts        |  4 +--
 src/app/utils/orientationUtils.ts             |  2 +-
 10 files changed, 34 insertions(+), 30 deletions(-)

diff --git a/src/app/form/footer-form/footer-form.component.ts b/src/app/form/footer-form/footer-form.component.ts
index 903230a7a..16d9542a7 100644
--- a/src/app/form/footer-form/footer-form.component.ts
+++ b/src/app/form/footer-form/footer-form.component.ts
@@ -81,6 +81,7 @@ export class FooterFormComponent implements OnChanges {
     this.endPage.emit();
   }
 
+  // never true ?
   public hasFinishButton(): boolean {
     return this.btnName.length === 3;
   }
diff --git a/src/app/form/form-view/form-view-routing.module.ts b/src/app/form/form-view/form-view-routing.module.ts
index 256b8a79f..73f5ba2d1 100644
--- a/src/app/form/form-view/form-view-routing.module.ts
+++ b/src/app/form/form-view/form-view-routing.module.ts
@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
 import { RouterModule, Routes } from '@angular/router';
 import { AuthGuard } from '../../guards/auth.guard';
 import { DeactivateGuard } from '../../guards/deactivate.guard';
+import { RoleGuard } from '../../guards/role.guard';
 import { StructureResolver } from '../../resolvers/structure.resolver';
 import { TempUserResolver } from '../../resolvers/temp-user.resolver';
 import { RouteRole } from '../../shared/enum/routeRole.enum';
@@ -16,7 +17,7 @@ const routes: Routes = [
   {
     path: 'structure/:id/:step',
     component: FormViewComponent,
-    // canActivate: [RoleGuard],
+    canActivate: [RoleGuard],
     data: { allowedRoles: [RouteRole.structureAdmin] },
     resolve: {
       structure: StructureResolver,
diff --git a/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts b/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts
index 3c07ac3f2..b04ed758d 100644
--- a/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts
+++ b/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts
@@ -1,3 +1,4 @@
+// TODO remove this
 export enum FiltersSteps {
   filterChoice,
 }
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
index 1b4300645..ee88aa700 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
@@ -1,4 +1,4 @@
-<div class="footerForm" fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="center center">
+<div class="footerForm">
   <ng-container *ngIf="!shouldResetOrientation">
     <app-button
       *ngIf="currentStep !== null && !(isLastStep && needType === 2)"
@@ -14,7 +14,7 @@
       [iconType]="'form'"
       [iconPos]="!isLastStep ? 'right' : 'left'"
       [style]="buttonTypeEnum.Primary"
-      [disabled]="!isPageValid"
+      [disabled]="false"
       (action)="nextPage()"
     />
   </ng-container>
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.scss b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.scss
index 30bf10b6d..507e88817 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.scss
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.scss
@@ -1,4 +1,9 @@
 .footerForm {
+  display: flex;
+  justify-content: center;
+  gap: 2rem;
+  padding-top: 2rem;
+  padding-bottom: 40px;
   @media print {
     display: none !important;
   }
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
index 813fa15a5..1b1aed612 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
@@ -1,3 +1,8 @@
 <h2>De quel accompagnement la personne a-t-elle besoin ?</h2>
-
+<app-radio-option
+  *ngFor="let option of accompanimentTypes"
+  [id]="option.key.toString()"
+  [label]="option.title"
+  [selected]="false"
+/>
 <app-multi-radio-form [items]="accompanimentTypes" [selected]="selected" (handleSelect)="handleSelect($event)" />
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.html b/src/app/form/orientation-form-view/orientation-form-view.component.html
index e6b886691..6c569a5c1 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.html
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.html
@@ -46,20 +46,18 @@
       />
     </ng-container>
   </div>
-  <div class="navButtons">
-    <app-navigation
-      [currentStep]="currentStep"
-      [isLastStep]="isLastStep"
-      [needType]="needType"
-      [currentType]="currentType"
-      [isPageValid]="isPageValid"
-      [hideNavButtons]="hideNavButtons"
-      [shouldResetOrientation]="shouldResetOrientation"
-      (goNext)="nextPage()"
-      (goPrev)="prevPage()"
-      (goReset)="reset()"
-    />
-  </div>
+  <app-navigation
+    [currentStep]="currentStep"
+    [isLastStep]="isLastStep"
+    [needType]="needType"
+    [currentType]="currentType"
+    [isPageValid]="isPageValid"
+    [hideNavButtons]="hideNavButtons"
+    [shouldResetOrientation]="shouldResetOrientation"
+    (goNext)="nextPage()"
+    (goPrev)="prevPage()"
+    (goReset)="reset()"
+  />
   <app-modal-confirmation
     [opened]="showConfirmationModal"
     [content]="'Il vous faudra de nouveau remplir le formulaire si vous quittez'"
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.scss b/src/app/form/orientation-form-view/orientation-form-view.component.scss
index 01d9790c7..fd88b189c 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.scss
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.scss
@@ -20,12 +20,9 @@
     max-width: 980px;
     width: 100%;
     height: 100%;
-    margin: 16px auto auto auto;
+    margin: auto;
     overflow-y: auto;
-    color: $grey-1;
-    background: $white;
-    border-radius: 8px;
-    border: 1px solid $grey-6;
+
     padding: 2rem 3rem;
     @media #{$tablet} {
       padding: 1rem;
@@ -35,10 +32,6 @@
     max-width: none;
     padding: 0;
   }
-  .navButtons {
-    margin-top: auto;
-    padding: 1rem;
-  }
 }
 
 ::ng-deep.title {
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 5d9b2a72a..4fd4d8e6e 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
@@ -64,11 +64,11 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   // Enum
   public needEnum = NeedsType;
   // Global
-  public needType: NeedsType;
+  public needType: NeedsType = null; // || NeedsType.onlineDemarch;
   public indicatorNeedType: NeedsType;
   public previousNeedType: NeedsType;
   public currentType: MediationType = OnlineDemarche.common;
-  public currentStep: MediationStepType = null;
+  public currentStep: MediationStepType = null; // OnlineDemarchesCommonSteps.accompanimentType;
   public isLastStep = false;
   public hideNavButtons = false;
   public nbSteps: number = OrientationFormViewComponent.MAX_STEP;
diff --git a/src/app/utils/orientationUtils.ts b/src/app/utils/orientationUtils.ts
index 2192da6b9..c3e9ac088 100644
--- a/src/app/utils/orientationUtils.ts
+++ b/src/app/utils/orientationUtils.ts
@@ -27,7 +27,7 @@ export interface IStructureSummary {
 export interface INeedItem {
   title: string;
   hint: string;
-  key: NeedsType | string;
+  key: NeedsType | string; // always a string ?
 }
 export class OrientationUtils {
   public needsList: INeedItem[] = [
-- 
GitLab


From 442f9569b3fe3269aa3e1cf889b706bd864cbcd0 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 14:24:37 +0100
Subject: [PATCH 24/77] move enums

---
 .../base-skills/base-skills.component.ts      |  6 +-
 .../enums/AppointmentSteps.enum.ts            | 10 ---
 .../enums/filtersSteps.enum.ts                |  4 --
 .../enums/genericOrientationSteps.enum.ts     |  4 --
 .../enums/hotlineMediationSteps.enum.ts       |  7 --
 .../orientation-form-view/enums/needs.enum.ts |  6 --
 .../enums/onlineDemarche.enum.ts              |  6 --
 .../enums/onlineDemarchesCommonSteps.enum.ts  |  4 --
 .../enums/orientation.enums.ts                | 66 +++++++++++++++++++
 .../enums/preferredLanguages.enum.ts          |  5 --
 .../enums/recapsType.enum.ts                  |  4 --
 .../enums/structuresListSteps.enum.ts         |  9 ---
 .../equipment-access.component.ts             |  5 +-
 .../equipment-buy/equipment-buy.component.ts  |  5 +-
 .../information-screen.component.ts           |  2 +-
 .../multi-radio-form.component.ts             |  2 +-
 .../navigation/navigation.component.ts        |  3 +-
 .../needs-selection.component.ts              |  2 +-
 .../orientation-recap.component.ts            |  2 +-
 .../mediation-language-selection.component.ts |  2 +-
 .../accompaniment-type.component.ts           |  2 +-
 .../onlineDemarch-form.component.ts           | 16 +++--
 .../orientation-form-view.component.ts        | 18 ++---
 .../orientation-structure-list.component.ts   |  5 +-
 .../types/mediation.type.ts                   |  3 +-
 .../types/mediationStep.type.ts               |  2 +-
 .../types/onlineDemarcheStep.type.ts          | 10 +--
 src/app/utils/orientationUtils.ts             | 16 +++--
 28 files changed, 113 insertions(+), 113 deletions(-)
 delete mode 100644 src/app/form/orientation-form-view/enums/AppointmentSteps.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/filtersSteps.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/genericOrientationSteps.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/needs.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/onlineDemarche.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/onlineDemarchesCommonSteps.enum.ts
 create mode 100644 src/app/form/orientation-form-view/enums/orientation.enums.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/preferredLanguages.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/recapsType.enum.ts
 delete mode 100644 src/app/form/orientation-form-view/enums/structuresListSteps.enum.ts

diff --git a/src/app/form/orientation-form-view/base-skills/base-skills.component.ts b/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
index db2f7fbe2..e3dbea909 100644
--- a/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
+++ b/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
@@ -1,11 +1,7 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { FormGroup } from '@angular/forms';
-
 import { OrientationUtils } from '../../../utils/orientationUtils';
-import { FiltersSteps } from '../enums/filtersSteps.enum';
-import { GenericOrientationSteps } from '../enums/genericOrientationSteps.enum';
-import { RecapsType } from '../enums/recapsType.enum';
-import { StructuresListSteps } from '../enums/structuresListSteps.enum';
+import { FiltersSteps, GenericOrientationSteps, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
 import { MediationType } from '../types/mediation.type';
 import { MediationStepType } from '../types/mediationStep.type';
diff --git a/src/app/form/orientation-form-view/enums/AppointmentSteps.enum.ts b/src/app/form/orientation-form-view/enums/AppointmentSteps.enum.ts
deleted file mode 100644
index 1769cc2dd..000000000
--- a/src/app/form/orientation-form-view/enums/AppointmentSteps.enum.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-export enum AppointmentSteps {
-  infoScreen,
-  structureOrientator,
-  pmrAccess,
-  location,
-  carto,
-  makeAppointment,
-  mediationBeneficiaryInfo,
-  rdvEnd,
-}
diff --git a/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts b/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts
deleted file mode 100644
index b04ed758d..000000000
--- a/src/app/form/orientation-form-view/enums/filtersSteps.enum.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-// TODO remove this
-export enum FiltersSteps {
-  filterChoice,
-}
diff --git a/src/app/form/orientation-form-view/enums/genericOrientationSteps.enum.ts b/src/app/form/orientation-form-view/enums/genericOrientationSteps.enum.ts
deleted file mode 100644
index 188d13579..000000000
--- a/src/app/form/orientation-form-view/enums/genericOrientationSteps.enum.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-export enum GenericOrientationSteps {
-  common = 'Common',
-  structureList = 'Trouver une structure',
-}
diff --git a/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts b/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts
deleted file mode 100644
index f3e6c54ca..000000000
--- a/src/app/form/orientation-form-view/enums/hotlineMediationSteps.enum.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-export enum HotlineMediationSteps {
-  infoScreen,
-  mediationBeneficiaryInfo,
-  mediationHoursSelection,
-  mediationLanguageSelection,
-  orientationRecap,
-}
diff --git a/src/app/form/orientation-form-view/enums/needs.enum.ts b/src/app/form/orientation-form-view/enums/needs.enum.ts
deleted file mode 100644
index d1e38eee4..000000000
--- a/src/app/form/orientation-form-view/enums/needs.enum.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export enum NeedsType {
-  equipmentAccess,
-  equipmentBuy,
-  onlineDemarch,
-  learnSkills,
-}
diff --git a/src/app/form/orientation-form-view/enums/onlineDemarche.enum.ts b/src/app/form/orientation-form-view/enums/onlineDemarche.enum.ts
deleted file mode 100644
index 791d5d81b..000000000
--- a/src/app/form/orientation-form-view/enums/onlineDemarche.enum.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export enum OnlineDemarche {
-  common = 'Common',
-  structureList = 'Trouver une structure',
-  appointment = 'RDV Conseiller Numérique',
-  onlineMediation = 'Médiation Numérique à distance',
-}
diff --git a/src/app/form/orientation-form-view/enums/onlineDemarchesCommonSteps.enum.ts b/src/app/form/orientation-form-view/enums/onlineDemarchesCommonSteps.enum.ts
deleted file mode 100644
index 9a0065fd8..000000000
--- a/src/app/form/orientation-form-view/enums/onlineDemarchesCommonSteps.enum.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-export enum OnlineDemarchesCommonSteps {
-  onlineDemarche,
-  accompanimentType,
-}
diff --git a/src/app/form/orientation-form-view/enums/orientation.enums.ts b/src/app/form/orientation-form-view/enums/orientation.enums.ts
new file mode 100644
index 000000000..1b32bc601
--- /dev/null
+++ b/src/app/form/orientation-form-view/enums/orientation.enums.ts
@@ -0,0 +1,66 @@
+export enum AppointmentSteps {
+  infoScreen,
+  structureOrientator,
+  pmrAccess,
+  location,
+  carto,
+  makeAppointment,
+  mediationBeneficiaryInfo,
+  rdvEnd,
+}
+
+// TODO remove this
+export enum FiltersSteps {
+  filterChoice,
+}
+
+export enum GenericOrientationSteps {
+  common = 'Common',
+  structureList = 'Trouver une structure',
+}
+
+export enum HotlineMediationSteps {
+  infoScreen,
+  mediationBeneficiaryInfo,
+  mediationHoursSelection,
+  mediationLanguageSelection,
+  orientationRecap,
+}
+
+export enum OnlineDemarche {
+  common = 'Common',
+  structureList = 'Trouver une structure',
+  appointment = 'RDV Conseiller Numérique',
+  onlineMediation = 'Médiation Numérique à distance',
+}
+
+export enum OnlineDemarchesCommonSteps {
+  onlineDemarche,
+  accompanimentType,
+}
+
+export enum NeedsType {
+  equipmentAccess,
+  equipmentBuy,
+  onlineDemarch,
+  learnSkills,
+}
+export enum PreferredLanguages {
+  french = 'Français',
+  english = 'Anglais',
+  arabic = 'Arabe',
+}
+export enum RecapsType {
+  onlineMediation,
+  structure,
+}
+
+export enum StructuresListSteps {
+  pmrAccess,
+  address,
+  structureChoice,
+  structureOrientator,
+  mediationBeneficiaryInfo,
+  comments,
+  orientationRecap,
+}
diff --git a/src/app/form/orientation-form-view/enums/preferredLanguages.enum.ts b/src/app/form/orientation-form-view/enums/preferredLanguages.enum.ts
deleted file mode 100644
index 2cb1b0bff..000000000
--- a/src/app/form/orientation-form-view/enums/preferredLanguages.enum.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export enum PreferredLanguages {
-  french = 'Français',
-  english = 'Anglais',
-  arabic = 'Arabe',
-}
diff --git a/src/app/form/orientation-form-view/enums/recapsType.enum.ts b/src/app/form/orientation-form-view/enums/recapsType.enum.ts
deleted file mode 100644
index dc490a5fe..000000000
--- a/src/app/form/orientation-form-view/enums/recapsType.enum.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-export enum RecapsType {
-  onlineMediation,
-  structure,
-}
diff --git a/src/app/form/orientation-form-view/enums/structuresListSteps.enum.ts b/src/app/form/orientation-form-view/enums/structuresListSteps.enum.ts
deleted file mode 100644
index f3fe927b7..000000000
--- a/src/app/form/orientation-form-view/enums/structuresListSteps.enum.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-export enum StructuresListSteps {
-  pmrAccess,
-  address,
-  structureChoice,
-  structureOrientator,
-  mediationBeneficiaryInfo,
-  comments,
-  orientationRecap,
-}
diff --git a/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts b/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
index eb0b93368..2cd29ce92 100644
--- a/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
+++ b/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
@@ -3,10 +3,7 @@ import { FormGroup } from '@angular/forms';
 import { User } from '../../../models/user.model';
 import { Filter } from '../../../structure-list/models/filter.model';
 import { OrientationUtils } from '../../../utils/orientationUtils';
-import { FiltersSteps } from '../enums/filtersSteps.enum';
-import { GenericOrientationSteps } from '../enums/genericOrientationSteps.enum';
-import { RecapsType } from '../enums/recapsType.enum';
-import { StructuresListSteps } from '../enums/structuresListSteps.enum';
+import { FiltersSteps, GenericOrientationSteps, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
 import { StructureOrientationForm } from '../interfaces/structureOrientationForm.interface';
 import { MediationType } from '../types/mediation.type';
diff --git a/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts b/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
index eeb73f152..4734872b8 100644
--- a/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
+++ b/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
@@ -3,10 +3,7 @@ import { FormGroup } from '@angular/forms';
 import { User } from '../../../models/user.model';
 import { Filter } from '../../../structure-list/models/filter.model';
 import { OrientationUtils } from '../../../utils/orientationUtils';
-import { FiltersSteps } from '../enums/filtersSteps.enum';
-import { GenericOrientationSteps } from '../enums/genericOrientationSteps.enum';
-import { RecapsType } from '../enums/recapsType.enum';
-import { StructuresListSteps } from '../enums/structuresListSteps.enum';
+import { FiltersSteps, GenericOrientationSteps, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
 import { StructureOrientationForm } from '../interfaces/structureOrientationForm.interface';
 import { MediationType } from '../types/mediation.type';
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
index dad34f296..0c27c30d0 100644
--- 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
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
-import { OnlineDemarche } from '../../enums/onlineDemarche.enum';
+import { OnlineDemarche } from '../../enums/orientation.enums';
 
 @Component({
   selector: 'app-information-screen',
diff --git a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
index bd0945565..cbbe9a662 100644
--- a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
+++ b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { INeedItem } from '../../../../utils/orientationUtils';
-import { NeedsType } from '../../enums/needs.enum';
+import { NeedsType } from '../../enums/orientation.enums';
 
 @Component({
   selector: 'app-multi-radio-form',
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
index 23514aa36..005771c6a 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
@@ -1,8 +1,7 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
 import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
-import { NeedsType } from '../../enums/needs.enum';
-import { OnlineDemarche } from '../../enums/onlineDemarche.enum';
+import { NeedsType, OnlineDemarche } from '../../enums/orientation.enums';
 import { MediationType } from '../../types/mediation.type';
 import { MediationStepType } from '../../types/mediationStep.type';
 import { OnlineMediationSteps } from '../../types/onlineDemarcheStep.type';
diff --git a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
index ff1eb19cc..28ebc1029 100644
--- a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
+++ b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
@@ -4,7 +4,7 @@ import { PersonalOffer } from '../../../../models/personalOffer.model';
 import { OrientationService } from '../../../../services/orientation.service';
 import { PersonalOfferService } from '../../../../services/personal-offer.service';
 import { INeedItem, OrientationUtils } from '../../../../utils/orientationUtils';
-import { NeedsType } from '../../enums/needs.enum';
+import { NeedsType } from '../../enums/orientation.enums';
 
 @Component({
   selector: 'app-needs-selection',
diff --git a/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.ts b/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.ts
index d4d33cc96..d6f6f83d2 100644
--- a/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.ts
+++ b/src/app/form/orientation-form-view/global-components/orientation-recap/orientation-recap.component.ts
@@ -3,7 +3,7 @@ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
 import { Structure } from '../../../../models/structure.model';
 import { Module } from '../../../../structure-list/models/module.model';
-import { RecapsType } from '../../enums/recapsType.enum';
+import { RecapsType } from '../../enums/orientation.enums';
 
 @Component({
   selector: 'app-orientation-recap',
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.ts b/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.ts
index f68b86d00..73b426d07 100644
--- a/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
-import { PreferredLanguages } from '../../enums/preferredLanguages.enum';
+import { PreferredLanguages } from '../../enums/orientation.enums';
 
 @Component({
   selector: 'app-mediation-language-selection',
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts
index 24f37b39c..1108e53ef 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.ts
@@ -1,7 +1,7 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
 import { INeedItem } from '../../../../../utils/orientationUtils';
-import { OnlineDemarche } from '../../../enums/onlineDemarche.enum';
+import { OnlineDemarche } from '../../../enums/orientation.enums';
 
 @Component({
   selector: 'app-accompaniment-type',
diff --git a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
index d0dd6b835..4d9b82441 100644
--- a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
@@ -7,13 +7,15 @@ import { OrientationService } from '../../../services/orientation.service';
 import { Category } from '../../../structure-list/models/category.model';
 import { Filter } from '../../../structure-list/models/filter.model';
 import { OrientationUtils } from '../../../utils/orientationUtils';
-import { AppointmentSteps } from '../enums/AppointmentSteps.enum';
-import { HotlineMediationSteps } from '../enums/hotlineMediationSteps.enum';
-import { NeedsType } from '../enums/needs.enum';
-import { OnlineDemarche } from '../enums/onlineDemarche.enum';
-import { OnlineDemarchesCommonSteps } from '../enums/onlineDemarchesCommonSteps.enum';
-import { RecapsType } from '../enums/recapsType.enum';
-import { StructuresListSteps } from '../enums/structuresListSteps.enum';
+import {
+  AppointmentSteps,
+  HotlineMediationSteps,
+  NeedsType,
+  OnlineDemarche,
+  OnlineDemarchesCommonSteps,
+  RecapsType,
+  StructuresListSteps,
+} from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
 import { MediationType } from '../types/mediation.type';
 import { MediationStepType } from '../types/mediationStep.type';
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 4fd4d8e6e..089c80dcf 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
@@ -16,14 +16,16 @@ import { Module } from '../../structure-list/models/module.model';
 import { SearchService } from '../../structure-list/services/search.service';
 import { OrientationUtils } from '../../utils/orientationUtils';
 import { Utils } from '../../utils/utils';
-import { AppointmentSteps } from './enums/AppointmentSteps.enum';
-import { FiltersSteps } from './enums/filtersSteps.enum';
-import { GenericOrientationSteps } from './enums/genericOrientationSteps.enum';
-import { HotlineMediationSteps } from './enums/hotlineMediationSteps.enum';
-import { NeedsType } from './enums/needs.enum';
-import { OnlineDemarche } from './enums/onlineDemarche.enum';
-import { OnlineDemarchesCommonSteps } from './enums/onlineDemarchesCommonSteps.enum';
-import { StructuresListSteps } from './enums/structuresListSteps.enum';
+import {
+  AppointmentSteps,
+  FiltersSteps,
+  GenericOrientationSteps,
+  HotlineMediationSteps,
+  NeedsType,
+  OnlineDemarche,
+  OnlineDemarchesCommonSteps,
+  StructuresListSteps,
+} from './enums/orientation.enums';
 import { IAppointment } from './interfaces/appointment.interface';
 import { FiltersForm } from './interfaces/filtersForm.interface';
 import { IOnlineMediation } from './interfaces/onlineMediation.interface';
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
index 52dd66647..9625b9926 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
@@ -4,10 +4,7 @@ import { Structure } from '../../../models/structure.model';
 import { User } from '../../../models/user.model';
 import { Filter } from '../../../structure-list/models/filter.model';
 import { OrientationUtils } from '../../../utils/orientationUtils';
-import { FiltersSteps } from '../enums/filtersSteps.enum';
-import { NeedsType } from '../enums/needs.enum';
-import { RecapsType } from '../enums/recapsType.enum';
-import { StructuresListSteps } from '../enums/structuresListSteps.enum';
+import { FiltersSteps, NeedsType, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { MediationStepType } from '../types/mediationStep.type';
 
 @Component({
diff --git a/src/app/form/orientation-form-view/types/mediation.type.ts b/src/app/form/orientation-form-view/types/mediation.type.ts
index 9962f4766..8e0f65934 100644
--- a/src/app/form/orientation-form-view/types/mediation.type.ts
+++ b/src/app/form/orientation-form-view/types/mediation.type.ts
@@ -1,4 +1,3 @@
-import { GenericOrientationSteps } from '../enums/genericOrientationSteps.enum';
-import { OnlineDemarche } from '../enums/onlineDemarche.enum';
+import { GenericOrientationSteps, OnlineDemarche } from '../enums/orientation.enums';
 
 export type MediationType = OnlineDemarche | GenericOrientationSteps;
diff --git a/src/app/form/orientation-form-view/types/mediationStep.type.ts b/src/app/form/orientation-form-view/types/mediationStep.type.ts
index b9fc29ad0..608b1fdc7 100644
--- a/src/app/form/orientation-form-view/types/mediationStep.type.ts
+++ b/src/app/form/orientation-form-view/types/mediationStep.type.ts
@@ -1,4 +1,4 @@
-import { FiltersSteps } from '../enums/filtersSteps.enum';
+import { FiltersSteps } from '../enums/orientation.enums';
 import { OnlineMediationSteps } from './onlineDemarcheStep.type';
 
 export type MediationStepType = OnlineMediationSteps | FiltersSteps;
diff --git a/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts b/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
index 4134976e9..e0142098b 100644
--- a/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
+++ b/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
@@ -1,7 +1,9 @@
-import { AppointmentSteps } from '../enums/AppointmentSteps.enum';
-import { HotlineMediationSteps } from '../enums/hotlineMediationSteps.enum';
-import { OnlineDemarchesCommonSteps } from '../enums/onlineDemarchesCommonSteps.enum';
-import { StructuresListSteps } from '../enums/structuresListSteps.enum';
+import {
+  AppointmentSteps,
+  HotlineMediationSteps,
+  OnlineDemarchesCommonSteps,
+  StructuresListSteps,
+} from '../enums/orientation.enums';
 
 export type OnlineMediationSteps =
   | HotlineMediationSteps
diff --git a/src/app/utils/orientationUtils.ts b/src/app/utils/orientationUtils.ts
index c3e9ac088..dff723e52 100644
--- a/src/app/utils/orientationUtils.ts
+++ b/src/app/utils/orientationUtils.ts
@@ -1,12 +1,14 @@
 import { FormControl, FormGroup, UntypedFormControl, UntypedFormGroup, Validators } from '@angular/forms';
 import { structureFormStep } from '../form/form-view/structure-form/structureFormStep.enum';
-import { AppointmentSteps } from '../form/orientation-form-view/enums/AppointmentSteps.enum';
-import { FiltersSteps } from '../form/orientation-form-view/enums/filtersSteps.enum';
-import { HotlineMediationSteps } from '../form/orientation-form-view/enums/hotlineMediationSteps.enum';
-import { NeedsType } from '../form/orientation-form-view/enums/needs.enum';
-import { OnlineDemarchesCommonSteps } from '../form/orientation-form-view/enums/onlineDemarchesCommonSteps.enum';
-import { PreferredLanguages } from '../form/orientation-form-view/enums/preferredLanguages.enum';
-import { StructuresListSteps } from '../form/orientation-form-view/enums/structuresListSteps.enum';
+import {
+  AppointmentSteps,
+  FiltersSteps,
+  HotlineMediationSteps,
+  NeedsType,
+  OnlineDemarchesCommonSteps,
+  PreferredLanguages,
+  StructuresListSteps,
+} from '../form/orientation-form-view/enums/orientation.enums';
 import { AppointmentForm } from '../form/orientation-form-view/interfaces/appointmentForm.interface';
 import { FiltersForm } from '../form/orientation-form-view/interfaces/filtersForm.interface';
 import { OnlineDemarchesForm } from '../form/orientation-form-view/interfaces/onlineDemarchesForm.interface';
-- 
GitLab


From 85d18bce6d2387f1e25131b61903feb59e613361 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 14:37:47 +0100
Subject: [PATCH 25/77] refactor orientation utils

---
 .../enums/orientation.enums.ts                | 10 +++----
 .../navigation/navigation.component.html      |  2 +-
 .../needs-selection.component.ts              | 28 +++++++++++++++++--
 .../accompaniment-type.component.html         |  2 +-
 .../orientation-form-view.component.ts        |  4 +--
 .../password-form/password-form.component.ts  | 17 +++++------
 src/app/utils/orientationUtils.ts             | 26 ++---------------
 7 files changed, 43 insertions(+), 46 deletions(-)

diff --git a/src/app/form/orientation-form-view/enums/orientation.enums.ts b/src/app/form/orientation-form-view/enums/orientation.enums.ts
index 1b32bc601..5b3f630e9 100644
--- a/src/app/form/orientation-form-view/enums/orientation.enums.ts
+++ b/src/app/form/orientation-form-view/enums/orientation.enums.ts
@@ -28,10 +28,10 @@ export enum HotlineMediationSteps {
 }
 
 export enum OnlineDemarche {
-  common = 'Common',
   structureList = 'Trouver une structure',
   appointment = 'RDV Conseiller Numérique',
   onlineMediation = 'Médiation Numérique à distance',
+  common = 'Common',
 }
 
 export enum OnlineDemarchesCommonSteps {
@@ -40,10 +40,10 @@ export enum OnlineDemarchesCommonSteps {
 }
 
 export enum NeedsType {
-  equipmentAccess,
-  equipmentBuy,
-  onlineDemarch,
-  learnSkills,
+  equipmentAccess = 'equipmentAccess',
+  equipmentBuy = 'equipmentBuy',
+  onlineDemarch = 'onlineDemarch',
+  learnSkills = 'learnSkills',
 }
 export enum PreferredLanguages {
   french = 'Français',
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
index ee88aa700..e9e2cecb7 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
@@ -1,7 +1,7 @@
 <div class="footerForm">
   <ng-container *ngIf="!shouldResetOrientation">
     <app-button
-      *ngIf="currentStep !== null && !(isLastStep && needType === 2)"
+      *ngIf="currentStep !== null && !(isLastStep && needType === 'onlineDemarch')"
       [text]="'Précédent'"
       [iconType]="'form'"
       [iconBtn]="'chevronLeft'"
diff --git a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
index 28ebc1029..59c890f72 100644
--- a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
+++ b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
@@ -3,7 +3,7 @@ import { Observable, forkJoin, tap } from 'rxjs';
 import { PersonalOffer } from '../../../../models/personalOffer.model';
 import { OrientationService } from '../../../../services/orientation.service';
 import { PersonalOfferService } from '../../../../services/personal-offer.service';
-import { INeedItem, OrientationUtils } from '../../../../utils/orientationUtils';
+import { INeedItem } from '../../../../utils/orientationUtils';
 import { NeedsType } from '../../enums/orientation.enums';
 
 @Component({
@@ -14,14 +14,36 @@ export class NeedsSelectionComponent implements OnInit {
   @Input() currentNeed: NeedsType;
   @Output() setNeedType = new EventEmitter<any>();
   @Output() validate = new EventEmitter<any>();
-  public needsList: INeedItem[] = new OrientationUtils().needsList;
+
+  public needsList: INeedItem[] = [
+    {
+      title: 'Accéder à du matériel numérique en libre service',
+      hint: '(Wifi, ordinateur, imprimante, scanner…)',
+      key: NeedsType.equipmentAccess,
+    },
+    {
+      title: 'Acheter du matériel numérique à tarif solidaire',
+      hint: '(Ordinateur, smartphone, clé 4G, forfait internet…)',
+      key: NeedsType.equipmentBuy,
+    },
+    {
+      title: 'Réaliser une démarche en ligne',
+      hint: '(Démarche Caf, CPAM, Pôle emploi…)',
+      key: NeedsType.onlineDemarch,
+    },
+    {
+      title: 'Acquérir les compétences numériques de base',
+      hint: '(Ordinateur et smartphone, mails, réseaux sociaux et bureautique...)',
+      key: NeedsType.learnSkills,
+    },
+  ];
 
   constructor(public orientationService: OrientationService, private personalOfferService: PersonalOfferService) {}
 
   ngOnInit(): void {
     if (this.orientationService.rdvUser || this.orientationService.rdvStructure) {
       this.needsList = this.needsList.filter(
-        (item: INeedItem) => item.key === NeedsType.onlineDemarch || item.key === NeedsType.learnSkills
+        (item) => item.key === NeedsType.onlineDemarch || item.key === NeedsType.learnSkills
       );
     }
 
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
index 1b1aed612..114b1db7c 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
@@ -1,7 +1,7 @@
 <h2>De quel accompagnement la personne a-t-elle besoin ?</h2>
 <app-radio-option
   *ngFor="let option of accompanimentTypes"
-  [id]="option.key.toString()"
+  [id]="option.key"
   [label]="option.title"
   [selected]="false"
 />
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 089c80dcf..1f7014355 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
@@ -245,7 +245,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
         this.notificationService.showSuccess('Votre démarche en ligne a bien été enregistrée');
       })
       .catch(() => {
-        this.notificationService.showErrorPleaseRetry('Echec de la création de votre démarche en ligne');
+        this.notificationService.showErrorPleaseRetry('Échec de la création de votre démarche en ligne');
       })
       .finally(() => this.printForm());
   }
@@ -427,7 +427,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
           await this.handleAppointment();
         } catch (e) {
           console.log(e);
-          this.notificationService.showErrorPleaseRetry("Echec de l'envoi de votre demande de RDV");
+          this.notificationService.showErrorPleaseRetry("Échec de l'envoi de votre demande de RDV");
           // If appointment fails, don't go to next page
           return;
         }
diff --git a/src/app/shared/components/password-form/password-form.component.ts b/src/app/shared/components/password-form/password-form.component.ts
index d5ef82b6b..0386fe1b0 100644
--- a/src/app/shared/components/password-form/password-form.component.ts
+++ b/src/app/shared/components/password-form/password-form.component.ts
@@ -83,24 +83,21 @@ export class PasswordFormComponent implements OnInit {
   }
 
   public checkIfPasswordHasSpecialChar(password: string): boolean {
-    if (password.match(CustomRegExp.SPECHAR)) return true;
-    return false;
+    return Boolean(password.match(CustomRegExp.SPECHAR));
   }
 
   public checkIfPasswordHasDigit(password: string): boolean {
-    if (password.match(CustomRegExp.DIGIT)) return true;
-    return false;
+    return Boolean(password.match(CustomRegExp.DIGIT));
   }
 
   public checkIfPasswordHasUpperCase(password: string): boolean {
-    if (password.match(CustomRegExp.UPPERCASE)) return true;
-    return false;
+    return Boolean(password.match(CustomRegExp.UPPERCASE));
   }
 
   public checkIfPasswordHasLowerCase(password: string): boolean {
-    if (password.match(CustomRegExp.LOWERCASE)) return true;
-    return false;
+    return Boolean(password.match(CustomRegExp.LOWERCASE));
   }
+
   public checkOldPassword(password: string): boolean {
     if (
       password !== '' &&
@@ -131,7 +128,7 @@ export class PasswordFormComponent implements OnInit {
             this.passwordError = false;
           },
           error: () => {
-            this.notificationService.showError('Echec de la réinitialisation de votre mot de passe');
+            this.notificationService.showError('Échec de la réinitialisation de votre mot de passe');
             this.passwordError = true;
           },
           complete: () => {
@@ -144,7 +141,7 @@ export class PasswordFormComponent implements OnInit {
           this.notificationService.showSuccess('Votre mot de passe a été réinitialisé avec succès.');
         },
         error: () => {
-          this.notificationService.showError('Echec de la réinitialisation de votre mot de passe');
+          this.notificationService.showError('Échec de la réinitialisation de votre mot de passe');
         },
         complete: () => {
           this.router.navigate(['']);
diff --git a/src/app/utils/orientationUtils.ts b/src/app/utils/orientationUtils.ts
index dff723e52..42c0aaaa8 100644
--- a/src/app/utils/orientationUtils.ts
+++ b/src/app/utils/orientationUtils.ts
@@ -5,6 +5,7 @@ import {
   FiltersSteps,
   HotlineMediationSteps,
   NeedsType,
+  OnlineDemarche,
   OnlineDemarchesCommonSteps,
   PreferredLanguages,
   StructuresListSteps,
@@ -29,32 +30,9 @@ export interface IStructureSummary {
 export interface INeedItem {
   title: string;
   hint: string;
-  key: NeedsType | string; // always a string ?
+  key: NeedsType | OnlineDemarche;
 }
 export class OrientationUtils {
-  public needsList: INeedItem[] = [
-    {
-      title: 'Accéder à du matériel numérique en libre service',
-      hint: '(Wifi, ordinateur, imprimante, scanner…)',
-      key: NeedsType.equipmentAccess,
-    },
-    {
-      title: 'Acheter du matériel numérique à tarif solidaire',
-      hint: '(Ordinateur, smartphone, clé 4G, forfait internet…)',
-      key: NeedsType.equipmentBuy,
-    },
-    {
-      title: 'Réaliser une démarche en ligne',
-      hint: '(Démarche Caf, CPAM, Pôle emploi…)',
-      key: NeedsType.onlineDemarch,
-    },
-    {
-      title: 'Acquérir les compétences numériques de base',
-      hint: '(Ordinateur et smartphone, mails, réseaux sociaux et bureautique...)',
-      key: NeedsType.learnSkills,
-    },
-  ];
-
   public createOnlineDemarchesForm(): FormGroup<OnlineDemarchesForm> {
     return new FormGroup<OnlineDemarchesForm>({
       onlineDemarcheType: new FormControl<Module[]>([], Validators.required),
-- 
GitLab


From 91b3305f86599ec3c185cb96ce4507f3b0a33308 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 14:58:19 +0100
Subject: [PATCH 26/77] accompaniment

---
 .../accompaniment-type.component.html           | 17 ++++++++++-------
 .../orientation-form-view.component.scss        |  3 +--
 .../orientation-form-view.component.ts          |  6 ++++--
 .../components/v3/radio/radio.component.scss    |  1 +
 src/styles.scss                                 |  7 +++++++
 5 files changed, 23 insertions(+), 11 deletions(-)

diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
index 114b1db7c..e8f05d51b 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
@@ -1,8 +1,11 @@
 <h2>De quel accompagnement la personne a-t-elle besoin ?</h2>
-<app-radio-option
-  *ngFor="let option of accompanimentTypes"
-  [id]="option.key"
-  [label]="option.title"
-  [selected]="false"
-/>
-<app-multi-radio-form [items]="accompanimentTypes" [selected]="selected" (handleSelect)="handleSelect($event)" />
+<div class="formGroup">
+  <app-radio-option
+    *ngFor="let option of accompanimentTypes"
+    [id]="option.key"
+    [label]="option.title"
+    [description]="option.hint"
+    [selected]="selected === option.key"
+    (selectedEvent)="handleSelect(option.key)"
+  />
+</div>
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.scss b/src/app/form/orientation-form-view/orientation-form-view.component.scss
index fd88b189c..ff2691f59 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.scss
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.scss
@@ -43,7 +43,6 @@
 
   h3 {
     @include font-bold-24;
-    margin: 0;
     @media #{$tablet} {
       @include font-bold-22;
     }
@@ -73,5 +72,5 @@
 }
 
 div.titleform {
-  color: red;
+  color: $red;
 }
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 1f7014355..472eb2df1 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
@@ -66,11 +66,13 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   // Enum
   public needEnum = NeedsType;
   // Global
-  public needType: NeedsType = null; // || NeedsType.onlineDemarch;
+  private DEBUG = false;
+
+  public needType: NeedsType = !this.DEBUG ? null : NeedsType.onlineDemarch;
   public indicatorNeedType: NeedsType;
   public previousNeedType: NeedsType;
   public currentType: MediationType = OnlineDemarche.common;
-  public currentStep: MediationStepType = null; // OnlineDemarchesCommonSteps.accompanimentType;
+  public currentStep: MediationStepType = !this.DEBUG ? null : OnlineDemarchesCommonSteps.accompanimentType;
   public isLastStep = false;
   public hideNavButtons = false;
   public nbSteps: number = OrientationFormViewComponent.MAX_STEP;
diff --git a/src/app/shared/components/v3/radio/radio.component.scss b/src/app/shared/components/v3/radio/radio.component.scss
index 404f6736e..f1a337e27 100644
--- a/src/app/shared/components/v3/radio/radio.component.scss
+++ b/src/app/shared/components/v3/radio/radio.component.scss
@@ -29,6 +29,7 @@
   label {
     color: $grey-1;
     line-height: 24px; /* 150% */
+    font-weight: 700;
     user-select: none;
   }
 }
diff --git a/src/styles.scss b/src/styles.scss
index 0aa655e60..0d7683800 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -631,3 +631,10 @@ p {
 sup {
   color: $red;
 }
+
+.formGroup {
+  display: flex;
+  flex-direction: column;
+  gap: 1rem;
+  max-width: 600px;
+}
-- 
GitLab


From 30082162a492e044286a4ca463ff831a2f2213e0 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 15:39:46 +0100
Subject: [PATCH 27/77] needs selection

---
 .../multi-radio-form.component.ts             |  1 +
 .../needs-selection.component.html            | 17 +++++++++------
 .../needs-selection.component.ts              | 10 ++++++---
 .../radio-option/radio-option.component.html  |  9 +++++++-
 .../radio-option/radio-option.component.ts    |  3 +++
 .../radio-option/radio-option.stories.ts      | 11 ++++++++++
 .../components/v3/radio/radio.component.html  | 10 ++++-----
 .../components/v3/radio/radio.component.scss  | 21 +++++++------------
 .../components/v3/radio/radio.component.ts    |  3 +++
 src/app/utils/orientationUtils.ts             |  1 +
 10 files changed, 58 insertions(+), 28 deletions(-)

diff --git a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
index cbbe9a662..da1e5448f 100644
--- a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
+++ b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
@@ -7,6 +7,7 @@ import { NeedsType } from '../../enums/orientation.enums';
   templateUrl: './multi-radio-form.component.html',
   styleUrls: ['./multi-radio-form.component.scss'],
 })
+// TODO to remove
 export class MultiRadioFormComponent implements OnInit {
   @Input() items: INeedItem[];
   @Input() selected: any;
diff --git a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html
index 17d5d99ed..59da1fbb1 100644
--- a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html
+++ b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html
@@ -1,7 +1,12 @@
 <h2>Quels sont les besoins de la personne ?</h2>
-<app-multi-radio-form
-  [items]="needsList"
-  [displayIcon]="true"
-  [selected]="getSelected()"
-  (handleSelect)="selectNeed($event)"
-/>
+<div class="formGroup">
+  <app-radio-option
+    *ngFor="let option of needsList"
+    [id]="option.key"
+    [label]="option.title"
+    [description]="option.hint"
+    [iconName]="option.icon"
+    [selected]="getSelected() === option.key"
+    (selectedEvent)="selectNeed(option.key)"
+  />
+</div>
diff --git a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
index 59c890f72..97a267baf 100644
--- a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
+++ b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.ts
@@ -4,7 +4,7 @@ import { PersonalOffer } from '../../../../models/personalOffer.model';
 import { OrientationService } from '../../../../services/orientation.service';
 import { PersonalOfferService } from '../../../../services/personal-offer.service';
 import { INeedItem } from '../../../../utils/orientationUtils';
-import { NeedsType } from '../../enums/orientation.enums';
+import { NeedsType, OnlineDemarche } from '../../enums/orientation.enums';
 
 @Component({
   selector: 'app-needs-selection',
@@ -20,21 +20,25 @@ export class NeedsSelectionComponent implements OnInit {
       title: 'Accéder à du matériel numérique en libre service',
       hint: '(Wifi, ordinateur, imprimante, scanner…)',
       key: NeedsType.equipmentAccess,
+      icon: 'orientationIndex0',
     },
     {
       title: 'Acheter du matériel numérique à tarif solidaire',
       hint: '(Ordinateur, smartphone, clé 4G, forfait internet…)',
       key: NeedsType.equipmentBuy,
+      icon: 'orientationIndex1',
     },
     {
       title: 'Réaliser une démarche en ligne',
       hint: '(Démarche Caf, CPAM, Pôle emploi…)',
       key: NeedsType.onlineDemarch,
+      icon: 'orientationIndex2',
     },
     {
       title: 'Acquérir les compétences numériques de base',
       hint: '(Ordinateur et smartphone, mails, réseaux sociaux et bureautique...)',
       key: NeedsType.learnSkills,
+      icon: 'orientationIndex3',
     },
   ];
 
@@ -65,10 +69,10 @@ export class NeedsSelectionComponent implements OnInit {
     }
   }
 
-  public selectNeed(event: NeedsType): void {
+  public selectNeed(event: string): void {
     this.setNeedType.emit(event);
   }
-  public getSelected(): string | NeedsType {
+  public getSelected(): NeedsType | OnlineDemarche {
     const selected = this.needsList.filter((need) => need.key === this.currentNeed)[0];
     if (selected) {
       this.validate.emit();
diff --git a/src/app/shared/components/radio-option/radio-option.component.html b/src/app/shared/components/radio-option/radio-option.component.html
index 761d3171c..fb482f2bb 100644
--- a/src/app/shared/components/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-option/radio-option.component.html
@@ -6,5 +6,12 @@
   (click)="clicked()"
   (keyup.enter)="clicked()"
 >
-  <app-radio [id]="id" [checked]="selected === true" [label]="label" [description]="description" [size]="size" />
+  <app-radio
+    [id]="id"
+    [checked]="selected === true"
+    [label]="label"
+    [description]="description"
+    [size]="size"
+    [iconName]="iconName"
+  />
 </div>
diff --git a/src/app/shared/components/radio-option/radio-option.component.ts b/src/app/shared/components/radio-option/radio-option.component.ts
index 9ce43b25c..cd34e7833 100644
--- a/src/app/shared/components/radio-option/radio-option.component.ts
+++ b/src/app/shared/components/radio-option/radio-option.component.ts
@@ -24,6 +24,9 @@ export class RadioOptionComponent {
   /** What size should the checkbox be ? */
   @Input() size?: 'small' | 'medium' = 'medium';
 
+  /** Optional icon to display between the radio and label */
+  @Input() iconName?: string;
+
   @Output() selectedEvent = new EventEmitter<{ name: string; value: string | boolean }>();
 
   public clicked(): void {
diff --git a/src/app/shared/components/radio-option/radio-option.stories.ts b/src/app/shared/components/radio-option/radio-option.stories.ts
index 7b017318a..9b0703e9d 100644
--- a/src/app/shared/components/radio-option/radio-option.stories.ts
+++ b/src/app/shared/components/radio-option/radio-option.stories.ts
@@ -29,6 +29,7 @@ export const RadioOption: Story = {
   },
   decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
 };
+
 export const RadioOptionSelected: Story = {
   args: {
     id: 'yes',
@@ -37,6 +38,7 @@ export const RadioOptionSelected: Story = {
   },
   decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
 };
+
 export const RadioOptionWithDescription: Story = {
   args: {
     id: 'yes',
@@ -46,3 +48,12 @@ export const RadioOptionWithDescription: Story = {
   },
   decorators: [componentWrapperDecorator((story) => `<div style="max-width:600px;">${story}</div>`)],
 };
+
+export const RadioWithIcon: Story = {
+  args: {
+    id: 'equipment',
+    label: 'Accéder à du matériel numérique en libre service',
+    description: '(Wifi, ordinateur, imprimante, scanner...)',
+    iconName: 'orientationIndex0',
+  },
+};
diff --git a/src/app/shared/components/v3/radio/radio.component.html b/src/app/shared/components/v3/radio/radio.component.html
index c02f0154a..d42100910 100644
--- a/src/app/shared/components/v3/radio/radio.component.html
+++ b/src/app/shared/components/v3/radio/radio.component.html
@@ -7,9 +7,9 @@
     [ngClass]="classes"
     (click)="action.emit($event)"
   />
-  <label [for]="id">{{ label }}</label>
-</div>
-<div *ngIf="description" class="descriptionContainer">
-  <div class="empty"></div>
-  <p class="description">{{ description }}</p>
+  <app-svg-icon *ngIf="iconName" [iconClass]="'icon-40'" [type]="'form'" [icon]="iconName" />
+  <div class="details">
+    <label [for]="id">{{ label }}</label>
+    <p *ngIf="description" class="description">{{ description }}</p>
+  </div>
 </div>
diff --git a/src/app/shared/components/v3/radio/radio.component.scss b/src/app/shared/components/v3/radio/radio.component.scss
index f1a337e27..9c59acf92 100644
--- a/src/app/shared/components/v3/radio/radio.component.scss
+++ b/src/app/shared/components/v3/radio/radio.component.scss
@@ -3,7 +3,7 @@
 
 .radioContainer {
   display: flex;
-  gap: 8px;
+  gap: 1rem;
   align-items: center;
 
   input {
@@ -26,25 +26,20 @@
     }
   }
 
+  .details {
+    display: flex;
+    flex-direction: column;
+    gap: 4px;
+  }
   label {
     color: $grey-1;
     line-height: 24px; /* 150% */
     font-weight: 700;
     user-select: none;
   }
-}
-
-.descriptionContainer {
-  display: flex;
-  gap: 8px;
-  .empty {
-    flex-basis: 24px;
-  }
-
   .description {
-    margin: 0;
+    @include font-regular-15;
     color: $grey-3;
-    font-size: $font-size-xxsmall;
-    line-height: 20px;
+    font-style: italic;
   }
 }
diff --git a/src/app/shared/components/v3/radio/radio.component.ts b/src/app/shared/components/v3/radio/radio.component.ts
index 59501a85a..2d0e01ba6 100644
--- a/src/app/shared/components/v3/radio/radio.component.ts
+++ b/src/app/shared/components/v3/radio/radio.component.ts
@@ -23,6 +23,9 @@ export class RadioV3Component {
   /** Additional label description */
   @Input() description?: string;
 
+  /** Optional icon to display between the radio and label */
+  @Input() iconName?: string;
+
   @Output() action = new EventEmitter<Event>();
 
   public get classes(): string[] {
diff --git a/src/app/utils/orientationUtils.ts b/src/app/utils/orientationUtils.ts
index 42c0aaaa8..6d7f799d0 100644
--- a/src/app/utils/orientationUtils.ts
+++ b/src/app/utils/orientationUtils.ts
@@ -31,6 +31,7 @@ export interface INeedItem {
   title: string;
   hint: string;
   key: NeedsType | OnlineDemarche;
+  icon?: string;
 }
 export class OrientationUtils {
   public createOnlineDemarchesForm(): FormGroup<OnlineDemarchesForm> {
-- 
GitLab


From f277156a10f37f9624b3bdb93ba42a8a7e94ed69 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 15:52:09 +0100
Subject: [PATCH 28/77] language step

---
 .../mediation-language-selection.component.html   | 15 +++++++++------
 .../orientation-form-view.component.ts            |  8 ++++----
 2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html b/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html
index eacdee046..7efd28aa6 100644
--- a/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html
@@ -1,8 +1,11 @@
 <h2>Dans quelle langue la personne souhaite-t-elle être rappelée ?</h2>
 
-<app-multi-radio-form
-  [items]="languages"
-  [selected]="selected"
-  [smallWidth]="true"
-  (handleSelect)="handleSelect($event)"
-/>
+<div class="formGroup">
+  <app-radio-option
+    *ngFor="let lang of languages"
+    [id]="lang.key"
+    [label]="lang.title"
+    [selected]="selected === lang.key"
+    (selectedEvent)="handleSelect(lang.key)"
+  />
+</div>
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 472eb2df1..0d8188d54 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
@@ -66,13 +66,13 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   // Enum
   public needEnum = NeedsType;
   // Global
-  private DEBUG = false;
+  private DEBUG = true;
 
-  public needType: NeedsType = !this.DEBUG ? null : NeedsType.onlineDemarch;
+  public needType: NeedsType = null;
   public indicatorNeedType: NeedsType;
   public previousNeedType: NeedsType;
   public currentType: MediationType = OnlineDemarche.common;
-  public currentStep: MediationStepType = !this.DEBUG ? null : OnlineDemarchesCommonSteps.accompanimentType;
+  public currentStep: MediationStepType = null;
   public isLastStep = false;
   public hideNavButtons = false;
   public nbSteps: number = OrientationFormViewComponent.MAX_STEP;
@@ -208,7 +208,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     const isOnlineMediationOrientationRecap =
       isOnlineDemarcheOrLearnSkills &&
       this.currentType === OnlineDemarche.onlineMediation &&
-      this.currentStep === HotlineMediationSteps.orientationRecap;
+      this.currentStep === HotlineMediationSteps.mediationLanguageSelection;
     const isStructureListOrientationRecap =
       this.currentType === OnlineDemarche.structureList && this.currentStep === StructuresListSteps.orientationRecap;
     const isAppointmentRdvEnd =
-- 
GitLab


From a3999bf214cdffb940840a97da42b1ce970f2172 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 15:52:47 +0100
Subject: [PATCH 29/77] remove multi radio form

---
 .../multi-radio-form.component.html           | 19 ------
 .../multi-radio-form.component.scss           | 64 -------------------
 .../multi-radio-form.component.ts             | 28 --------
 .../orientation.module.ts                     |  2 -
 4 files changed, 113 deletions(-)
 delete mode 100644 src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.html
 delete mode 100644 src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.scss
 delete mode 100644 src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts

diff --git a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.html b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.html
deleted file mode 100644
index 9a01d6a96..000000000
--- a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<div fxLayoutAlign="center left" class="radiocard" [fxLayout]="'column'" [fxLayoutGap]="'8px'">
-  <button
-    *ngFor="let item of items; let index = index"
-    type="button"
-    [ngClass]="{ selected: selectedItem === item.key, smallWidth: smallWidth }"
-    (click)="selectItem(item.key)"
-  >
-    <div class="checkmark">
-      <svg *ngIf="selectedItem === item.key" class="validate" aria-hidden="true">
-        <use [attr.xlink:href]="'assets/form/sprite.svg#checkVectorFull'" />
-      </svg>
-    </div>
-    <app-svg-icon *ngIf="displayIcon" [iconClass]="'icon-40'" [type]="'form'" [icon]="'orientationIndex' + index" />
-    <div [fxLayout]="'column'" [fxLayoutGap]="'8px'">
-      <div class="title">{{ item.title }}</div>
-      <div class="hint">{{ item.hint }}</div>
-    </div>
-  </button>
-</div>
diff --git a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.scss b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.scss
deleted file mode 100644
index e4a9f3ca1..000000000
--- a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-@import 'color';
-@import 'typography';
-@import 'breakpoint';
-.radiocard {
-  button {
-    display: flex;
-    align-items: center;
-    gap: 1rem;
-    height: 85px;
-    background-color: $grey-9;
-    border: solid 3px transparent;
-    font-size: 1rem;
-    padding: 1.5rem 1rem;
-    box-sizing: border-box;
-    border-radius: 4px;
-    outline: none;
-    cursor: pointer;
-    width: 100%;
-    max-width: 600px;
-    @media #{$phone} {
-      height: 100px;
-    }
-    &.selected {
-      background: $white;
-      border: 3px solid $green-1;
-      .validate {
-        display: initial;
-      }
-    }
-
-    div {
-      text-align: left;
-      @media #{$phone} {
-        max-width: 260px;
-      }
-    }
-    .title {
-      @include font-bold-16;
-    }
-    .hint {
-      @include font-regular-15;
-      font-style: italic;
-      color: $grey-3;
-    }
-    .checkmark {
-      width: 20px;
-      height: 20px;
-      box-sizing: border-box;
-      background: $white;
-      border: 1px solid $grey-3;
-      border-radius: 10px;
-      svg {
-        width: 24px;
-        height: 24px;
-        position: relative;
-        left: -3px;
-        top: -3px;
-      }
-    }
-    &.smallWidth {
-      width: 300px;
-    }
-  }
-}
diff --git a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts b/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
deleted file mode 100644
index da1e5448f..000000000
--- a/src/app/form/orientation-form-view/global-components/multi-radio-form/multi-radio-form.component.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
-import { INeedItem } from '../../../../utils/orientationUtils';
-import { NeedsType } from '../../enums/orientation.enums';
-
-@Component({
-  selector: 'app-multi-radio-form',
-  templateUrl: './multi-radio-form.component.html',
-  styleUrls: ['./multi-radio-form.component.scss'],
-})
-// TODO to remove
-export class MultiRadioFormComponent implements OnInit {
-  @Input() items: INeedItem[];
-  @Input() selected: any;
-  @Input() smallWidth = false;
-  @Input() displayIcon = false;
-  @Output() handleSelect = new EventEmitter<any>();
-
-  public selectedItem: NeedsType | string;
-
-  ngOnInit(): void {
-    if (this.selected) this.selectedItem = this.selected;
-  }
-
-  public selectItem(key: NeedsType | string): void {
-    this.handleSelect.emit(key);
-    this.selectedItem = key;
-  }
-}
diff --git a/src/app/form/orientation-form-view/orientation.module.ts b/src/app/form/orientation-form-view/orientation.module.ts
index 31dd29226..ec1fb77ef 100644
--- a/src/app/form/orientation-form-view/orientation.module.ts
+++ b/src/app/form/orientation-form-view/orientation.module.ts
@@ -9,7 +9,6 @@ import { EquipmentBuyTypeComponent } from './equipment-buy/equipment-buy-type/eq
 import { EquipmentBuyComponent } from './equipment-buy/equipment-buy.component';
 import { InformationScreenComponent } from './global-components/information-screen/information-screen.component';
 import { LoginModalComponent } from './global-components/login-modal/login-modal.component';
-import { MultiRadioFormComponent } from './global-components/multi-radio-form/multi-radio-form.component';
 import { NavigationComponent } from './global-components/navigation/navigation.component';
 import { NeedsSelectionComponent } from './global-components/needs-selection/needs-selection.component';
 import { OrientationRecapComponent } from './global-components/orientation-recap/orientation-recap.component';
@@ -35,7 +34,6 @@ import { OrientationStructureListComponent } from './orientation-structure-list/
     OrientationFormViewComponent,
     NeedsSelectionComponent,
     NavigationComponent,
-    MultiRadioFormComponent,
     OnlineDemarchComponent,
     AccompanimentTypeComponent,
     MediationBeneficiaryInfoComponent,
-- 
GitLab


From 246d5b8c2482406b4d8bf907b9993a2c1c0bf8c0 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:00:53 +0100
Subject: [PATCH 30/77] change enum casing

---
 .../base-skills/base-skills.component.ts      |  4 +-
 .../enums/orientation.enums.ts                |  1 -
 .../equipment-access.component.ts             |  2 +-
 .../equipment-buy/equipment-buy.component.ts  |  2 +-
 .../onlineDemarch-form.component.html         | 42 +++++++++----------
 .../onlineDemarch-form.component.ts           | 14 +++----
 .../orientation-structure-list.component.html | 16 +++----
 .../orientation-structure-list.component.ts   |  4 +-
 8 files changed, 42 insertions(+), 43 deletions(-)

diff --git a/src/app/form/orientation-form-view/base-skills/base-skills.component.ts b/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
index e3dbea909..6bb501123 100644
--- a/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
+++ b/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
@@ -20,9 +20,9 @@ export class BaseSkillsComponent {
   public pagesValidation: any[] = [];
 
   // Enums
-  public structuresListStepsEnum = StructuresListSteps;
+  public StructuresListSteps = StructuresListSteps;
   public FiltersSteps = FiltersSteps;
-  public recapsType = RecapsType;
+  public RecapsType = RecapsType;
   public GenericOrientationSteps = GenericOrientationSteps;
 
   public checkValidation(): void {
diff --git a/src/app/form/orientation-form-view/enums/orientation.enums.ts b/src/app/form/orientation-form-view/enums/orientation.enums.ts
index 5b3f630e9..84c3b9ee7 100644
--- a/src/app/form/orientation-form-view/enums/orientation.enums.ts
+++ b/src/app/form/orientation-form-view/enums/orientation.enums.ts
@@ -9,7 +9,6 @@ export enum AppointmentSteps {
   rdvEnd,
 }
 
-// TODO remove this
 export enum FiltersSteps {
   filterChoice,
 }
diff --git a/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts b/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
index 2cd29ce92..a686f54a1 100644
--- a/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
+++ b/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
@@ -27,7 +27,7 @@ export class EquipmentAccessComponent {
 
   // Enums
   public FiltersSteps = FiltersSteps;
-  public recapsType = RecapsType;
+  public RecapsType = RecapsType;
   public GenericOrientationSteps = GenericOrientationSteps;
 
   public checkValidation(): void {
diff --git a/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts b/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
index 4734872b8..adf0e9135 100644
--- a/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
+++ b/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
@@ -27,7 +27,7 @@ export class EquipmentBuyComponent {
 
   // Enums
   public FiltersSteps = FiltersSteps;
-  public recapsType = RecapsType;
+  public RecapsType = RecapsType;
   public GenericOrientationSteps = GenericOrientationSteps;
 
   public checkValidation(): void {
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 f361b712e..551ec89f8 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
@@ -1,17 +1,17 @@
 <!-- COMMON FORM -->
-<ng-container *ngIf="currentType === onlineDemarcheTypeEnum.common">
+<ng-container *ngIf="currentType === OnlineDemarche.common">
   <app-online-demarch
-    *ngIf="needType === needEnum.onlineDemarch && currentStep === onlineDemarchesCommonStepsEnum.onlineDemarche"
+    *ngIf="needType === NeedsType.onlineDemarch && currentStep === OnlineDemarchesCommonSteps.onlineDemarche"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
   <app-accompaniment-type
-    *ngIf="currentStep === onlineDemarchesCommonStepsEnum.accompanimentType"
+    *ngIf="currentStep === OnlineDemarchesCommonSteps.accompanimentType"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
   <app-base-skills
-    *ngIf="needType === needEnum.learnSkills && currentStep === onlineDemarchesCommonStepsEnum.onlineDemarche"
+    *ngIf="needType === NeedsType.learnSkills && currentStep === OnlineDemarchesCommonSteps.onlineDemarche"
     [currentStep]="currentStep"
     [currentType]="currentType"
     [form]="filtersForm"
@@ -19,31 +19,31 @@
   />
 </ng-container>
 <!-- APPOINTMENT FORM -->
-<ng-container *ngIf="currentType === onlineDemarcheTypeEnum.appointment">
+<ng-container *ngIf="currentType === OnlineDemarche.appointment">
   <app-information-screen
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.infoScreen"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.infoScreen"
     [currentType]="currentType"
     (checkValidation)="checkValidation()"
   />
   <app-structure-orientator
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.structureOrientator"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.structureOrientator"
     [profile]="profile"
     [form]="form"
     (validatePage)="checkValidation()"
   />
   <app-structure-pmr
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.pmrAccess"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.pmrAccess"
     [structureForm]="form"
     (validateForm)="checkValidation()"
     (radioChange)="onRadioChange($event)"
   />
   <app-orientation-structure-address
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.location"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.location"
     [form]="form"
     (addressStructure)="checkValidation()"
   />
   <app-carto
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.carto"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.carto"
     [isOrientationForm]="true"
     [isOrientationRdv]="true"
     [filters]="filters"
@@ -52,7 +52,7 @@
     (structureSelectionRDV)="checkValidation($event)"
   />
   <app-make-appointment
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.makeAppointment"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.makeAppointment"
     [form]="form"
     [structureRDV]="structureRDV"
     (checkValidation)="checkValidation()"
@@ -61,13 +61,13 @@
     (setResetOrientation)="showResetOrientation()"
   />
   <app-mediation-beneficiary-info
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.mediationBeneficiaryInfo"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.mediationBeneficiaryInfo"
     [form]="form"
     [isOrientationRdv]="true"
     (checkValidation)="checkValidation()"
   />
   <app-appointment-end
-    *ngIf="currentStep === onlineDemarchesAppointmentSteps.rdvEnd"
+    *ngIf="currentStep === OnlineDemarchesAppointmentSteps.rdvEnd"
     [form]="form"
     [structureRDV]="structureRDV"
     [selectedStructureRDV]="selectedStructureRDV"
@@ -77,37 +77,37 @@
   />
 </ng-container>
 <!-- ONLINE MEDIATION FORM -->
-<ng-container *ngIf="currentType === onlineDemarcheTypeEnum.onlineMediation">
+<ng-container *ngIf="currentType === OnlineDemarche.onlineMediation">
   <app-information-screen
-    *ngIf="currentStep === HotlineMediationStepsEnum.infoScreen"
+    *ngIf="currentStep === HotlineMediationSteps.infoScreen"
     [currentType]="currentType"
     (checkValidation)="checkValidation()"
   />
   <app-mediation-beneficiary-info
-    *ngIf="currentStep === HotlineMediationStepsEnum.mediationBeneficiaryInfo"
+    *ngIf="currentStep === HotlineMediationSteps.mediationBeneficiaryInfo"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
   <app-mediation-hours-selection
-    *ngIf="currentStep === HotlineMediationStepsEnum.mediationHoursSelection"
+    *ngIf="currentStep === HotlineMediationSteps.mediationHoursSelection"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
   <app-mediation-language-selection
-    *ngIf="currentStep === HotlineMediationStepsEnum.mediationLanguageSelection"
+    *ngIf="currentStep === HotlineMediationSteps.mediationLanguageSelection"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
   <app-orientation-recap
-    *ngIf="currentStep === HotlineMediationStepsEnum.orientationRecap"
+    *ngIf="currentStep === HotlineMediationSteps.orientationRecap"
     [form]="form"
-    [recapType]="recapsType.onlineMediation"
+    [recapType]="RecapsType.onlineMediation"
     (checkValidation)="checkValidation()"
   />
 </ng-container>
 <!-- STRUCTURE LIST FORM -->
 <app-orientation-structure-list
-  *ngIf="currentType === onlineDemarcheTypeEnum.structureList"
+  *ngIf="currentType === OnlineDemarche.structureList"
   [form]="form"
   [currentStep]="currentStep"
   [filters]="filters"
diff --git a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
index 4d9b82441..b80af137f 100644
--- a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
@@ -45,13 +45,13 @@ export class OnlineDemarchFormComponent {
   public socialWorker: Owner;
 
   // Enums
-  public HotlineMediationStepsEnum = HotlineMediationSteps;
-  public onlineDemarchesCommonStepsEnum = OnlineDemarchesCommonSteps;
-  public structuresListStepsEnum = StructuresListSteps;
-  public onlineDemarcheTypeEnum = OnlineDemarche;
-  public onlineDemarchesAppointmentSteps = AppointmentSteps;
-  public needEnum = NeedsType;
-  public recapsType = RecapsType;
+  public HotlineMediationSteps = HotlineMediationSteps;
+  public OnlineDemarchesCommonSteps = OnlineDemarchesCommonSteps;
+  public StructuresListSteps = StructuresListSteps;
+  public OnlineDemarche = OnlineDemarche;
+  public OnlineDemarchesAppointmentSteps = AppointmentSteps;
+  public NeedsType = NeedsType;
+  public RecapsType = RecapsType;
 
   constructor(public orientationService: OrientationService) {}
 
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.html
index 589de6bc1..e62fa7112 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.html
@@ -1,16 +1,16 @@
 <ng-container>
   <app-structure-pmr
-    *ngIf="currentStep === structuresListStepsEnum.pmrAccess"
+    *ngIf="currentStep === StructuresListSteps.pmrAccess"
     [structureForm]="form"
     (radioChange)="radioChange($event)"
   />
   <app-orientation-structure-address
-    *ngIf="currentStep === structuresListStepsEnum.address"
+    *ngIf="currentStep === StructuresListSteps.address"
     [form]="form"
     (addressStructure)="checkValidation($event)"
   />
   <app-carto
-    *ngIf="currentStep === structuresListStepsEnum.structureChoice"
+    *ngIf="currentStep === StructuresListSteps.structureChoice"
     [isOrientationForm]="true"
     [structuresSelected]="selectedStructures"
     [filters]="filters"
@@ -19,28 +19,28 @@
     (structureSelection)="checkValidation($event)"
   />
   <app-structure-orientator
-    *ngIf="currentStep === structuresListStepsEnum.structureOrientator"
+    *ngIf="currentStep === StructuresListSteps.structureOrientator"
     [profile]="profile"
     [form]="form"
     (validatePage)="checkValidation($event)"
   />
 
   <app-mediation-beneficiary-info
-    *ngIf="currentStep === structuresListStepsEnum.mediationBeneficiaryInfo"
+    *ngIf="currentStep === StructuresListSteps.mediationBeneficiaryInfo"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
 
   <app-orientation-comments
-    *ngIf="currentStep === structuresListStepsEnum.comments"
+    *ngIf="currentStep === StructuresListSteps.comments"
     [form]="form"
     (checkValidation)="checkValidation()"
   />
 
   <app-orientation-recap
-    *ngIf="currentStep === structuresListStepsEnum.orientationRecap"
+    *ngIf="currentStep === StructuresListSteps.orientationRecap"
     [form]="form"
-    [recapType]="recapsType.structure"
+    [recapType]="RecapsType.structure"
     (checkValidation)="checkValidation()"
   />
 </ng-container>
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
index 9625b9926..4cdfe49c6 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
@@ -21,8 +21,8 @@ export class OrientationStructureListComponent implements OnChanges {
   public orientationUtils = new OrientationUtils();
 
   // Enum
-  public structuresListStepsEnum = StructuresListSteps;
-  public recapsType = RecapsType;
+  public StructuresListSteps = StructuresListSteps;
+  public RecapsType = RecapsType;
   // Init data for form
   public selectedStructures: Structure[] = [];
 
-- 
GitLab


From 174d4c8d7589e709849c9163efdfb036526a81e7 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:03:58 +0100
Subject: [PATCH 31/77] cleanup

---
 .../global-components/navigation/navigation.component.html  | 2 +-
 .../orientation-form-view.component.ts                      | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
index e9e2cecb7..2aa7d7adb 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
@@ -14,7 +14,7 @@
       [iconType]="'form'"
       [iconPos]="!isLastStep ? 'right' : 'left'"
       [style]="buttonTypeEnum.Primary"
-      [disabled]="false"
+      [disabled]="!isPageValid"
       (action)="nextPage()"
     />
   </ng-container>
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 0d8188d54..b231a5c1b 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
@@ -66,8 +66,6 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   // Enum
   public needEnum = NeedsType;
   // Global
-  private DEBUG = true;
-
   public needType: NeedsType = null;
   public indicatorNeedType: NeedsType;
   public previousNeedType: NeedsType;
@@ -75,7 +73,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   public currentStep: MediationStepType = null;
   public isLastStep = false;
   public hideNavButtons = false;
-  public nbSteps: number = OrientationFormViewComponent.MAX_STEP;
+  public nbSteps = OrientationFormViewComponent.MAX_STEP;
   public isPageValid = false;
   public filters: Filter[] = [];
   public profile: User;
@@ -208,7 +206,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
     const isOnlineMediationOrientationRecap =
       isOnlineDemarcheOrLearnSkills &&
       this.currentType === OnlineDemarche.onlineMediation &&
-      this.currentStep === HotlineMediationSteps.mediationLanguageSelection;
+      this.currentStep === HotlineMediationSteps.orientationRecap;
     const isStructureListOrientationRecap =
       this.currentType === OnlineDemarche.structureList && this.currentStep === StructuresListSteps.orientationRecap;
     const isAppointmentRdvEnd =
-- 
GitLab


From 47223856dde5ac76634bf65d2e99e32a99db5838 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:11:58 +0100
Subject: [PATCH 32/77] remove unused code

---
 src/app/form/footer-form/footer-form.component.html |  8 ++++----
 src/app/form/footer-form/footer-form.component.scss | 10 ----------
 src/app/form/footer-form/footer-form.component.ts   |  6 ------
 src/app/form/form-view/form-view.component.html     |  1 -
 4 files changed, 4 insertions(+), 21 deletions(-)

diff --git a/src/app/form/footer-form/footer-form.component.html b/src/app/form/footer-form/footer-form.component.html
index b94974678..18a47fc5a 100644
--- a/src/app/form/footer-form/footer-form.component.html
+++ b/src/app/form/footer-form/footer-form.component.html
@@ -1,7 +1,7 @@
-<div class="footerForm" [ngClass]="{ column: hasFinishButton() }">
+<div class="footerForm">
   <app-button
     *ngIf="!isLastFormStep && !isNextFormTransition && !isStructureLastPage() && !isPersonalOfferFirstPage()"
-    [text]="!isEditMode ? btnName[0] : 'Annuler'"
+    [text]="!isEditMode ? 'Précédent' : 'Annuler'"
     [iconType]="'form'"
     [iconBtn]="!isEditMode && 'chevronLeft'"
     (action)="prevPage()"
@@ -10,8 +10,8 @@
   <app-button
     *ngIf="!isLastFormStep && !isNextFormTransition && !isEditMode"
     [disabled]="!isValid"
-    [text]="btnName[1]"
-    [iconBtn]="btnName[1] === 'Imprimer' ? 'print' : 'chevronRight'"
+    [text]="'Suivant'"
+    [iconBtn]="'chevronRight'"
     [iconType]="'form'"
     [iconPos]="'right'"
     [style]="buttonTypeEnum.Primary"
diff --git a/src/app/form/footer-form/footer-form.component.scss b/src/app/form/footer-form/footer-form.component.scss
index 1969fcedf..2b5249c55 100644
--- a/src/app/form/footer-form/footer-form.component.scss
+++ b/src/app/form/footer-form/footer-form.component.scss
@@ -30,16 +30,6 @@
   }
 }
 
-.column {
-  @media #{$phone} {
-    flex-direction: column !important;
-    button {
-      margin-bottom: 10px !important;
-      margin-right: 0 !important;
-    }
-  }
-}
-
 .chevronLeft {
   height: 24px;
   width: 24px;
diff --git a/src/app/form/footer-form/footer-form.component.ts b/src/app/form/footer-form/footer-form.component.ts
index 16d9542a7..01d312499 100644
--- a/src/app/form/footer-form/footer-form.component.ts
+++ b/src/app/form/footer-form/footer-form.component.ts
@@ -23,7 +23,6 @@ import { stepType } from '../step.type';
 export class FooterFormComponent implements OnChanges {
   @Input() currentForm: formType;
   @Input() isValid: boolean;
-  @Input() btnName: string[];
   @Input() nbPagesForm: number;
   @Input() form: UntypedFormGroup;
   @Input() linkedStructureId: string[] = null;
@@ -81,11 +80,6 @@ export class FooterFormComponent implements OnChanges {
     this.endPage.emit();
   }
 
-  // never true ?
-  public hasFinishButton(): boolean {
-    return this.btnName.length === 3;
-  }
-
   public goToHome(): void {
     this.router.navigateByUrl('news');
   }
diff --git a/src/app/form/form-view/form-view.component.html b/src/app/form/form-view/form-view.component.html
index 08356b8f4..1400ee6a0 100644
--- a/src/app/form/form-view/form-view.component.html
+++ b/src/app/form/form-view/form-view.component.html
@@ -60,7 +60,6 @@
     [currentForm]="currentFormType"
     [form]="currentForm"
     [linkedStructureId]="linkedStructureId"
-    [btnName]="['Précédent', 'Suivant']"
     [isValid]="true"
     [acceptNewsletter]="userAcceptNewsletter"
     [hasOtherPersonalOffer]="hasOtherPersonalOffer"
-- 
GitLab


From b2df41185bc16524b77a0b91e9628e3674b82dd2 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:13:15 +0100
Subject: [PATCH 33/77] cleanup

---
 .../orientation-form-view/orientation-form-view.component.ts    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 b231a5c1b..a2172dec0 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
@@ -66,7 +66,7 @@ export class OrientationFormViewComponent implements OnInit, AfterContentChecked
   // Enum
   public needEnum = NeedsType;
   // Global
-  public needType: NeedsType = null;
+  public needType: NeedsType;
   public indicatorNeedType: NeedsType;
   public previousNeedType: NeedsType;
   public currentType: MediationType = OnlineDemarche.common;
-- 
GitLab


From e8b3b00680d7df3e27dab61875375848ffc2631a Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:27:59 +0100
Subject: [PATCH 34/77] rename toogle

---
 .../structure-edition-summary.component.html                  | 4 ++--
 .../structure-edition-summary.component.ts                    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
index 21f49a3b5..f5bc3365b 100644
--- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
+++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
@@ -503,8 +503,8 @@
               <div
                 class="collapseHeader"
                 tabindex="0"
-                (click)="toogleAdvancedSkills()"
-                (keyup.enter)="toogleAdvancedSkills()"
+                (click)="toggleAdvancedSkills()"
+                (keyup.enter)="toggleAdvancedSkills()"
               >
                 <div class="titleCollapse">Culture numérique</div>
                 <div class="logo">
diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts b/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts
index 524505e1c..f5d103017 100644
--- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts
+++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts
@@ -163,7 +163,7 @@ export class StructureEditionSummaryComponent implements OnInit {
     this.showBaseSkills = !this.showBaseSkills;
   }
 
-  public toogleAdvancedSkills(): void {
+  public toggleAdvancedSkills(): void {
     this.showAdvancedSkills = !this.showAdvancedSkills;
   }
 
-- 
GitLab


From 3074f0431dd840a7182b0b71116ca7cac10dc1b3 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:33:59 +0100
Subject: [PATCH 35/77] fix wifi

---
 .../form-view/structure-form/structure-form.component.ts  | 8 --------
 src/app/utils/formUtils.ts                                | 5 ++++-
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index c3bbed264..27cdaca1a 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -299,9 +299,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
   }
 
   public onRadioChange({ name, value }: { name: string; value: string | boolean }): void {
-    // const { name, value } = nameAndEvent;
-    // TODO convert string to bool if necessary
-    console.log(name, value);
     this.structureForm.get(name).setValue(value);
     this.setValidationsForm();
   }
@@ -331,11 +328,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
     this.setValidationsForm();
   }
   public acceptOpenData(isAccepted: boolean): void {
-    console.log(
-      '🚀 ~ file: structure-form.component.ts:358 ~ StructureFormComponent ~ acceptOpenData ~ isAccepted:',
-      isAccepted
-    );
-
     const now = isAccepted ? new Date().toString() : '';
     this.getStructureControl('dataShareConsentDate').setValue(now);
     this.setValidationsForm();
diff --git a/src/app/utils/formUtils.ts b/src/app/utils/formUtils.ts
index d19f86b00..f96072560 100644
--- a/src/app/utils/formUtils.ts
+++ b/src/app/utils/formUtils.ts
@@ -151,7 +151,10 @@ export class formUtils {
           ]
         ),
         freeWorkShop: new UntypedFormControl(structure.freeWorkShop, [Validators.required]),
-        freeWifi: new UntypedFormControl(null, isEditMode ? [] : [Validators.required]), // Field used has a pivot, not sent in final form.
+        freeWifi: new UntypedFormControl(
+          structure.categories.selfServiceMaterial.includes('wifiEnAccesLibre'),
+          isEditMode ? [] : [Validators.required]
+        ), // Field used has a pivot, not sent in final form.
         dataShareConsentDate: new UntypedFormControl(structure.dataShareConsentDate),
         personalOffers: new UntypedFormControl(structure.personalOffers),
       },
-- 
GitLab


From bc2b4c37837774ab05268856cdeb69ad0b9c2a04 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 5 Dec 2023 16:34:02 +0100
Subject: [PATCH 36/77] cleanup

---
 src/app/form/form-view/form-view-routing.module.ts | 3 ++-
 src/app/form/form-view/form-view.component.html    | 2 +-
 src/app/form/form-view/form-view.component.ts      | 8 ++++----
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/src/app/form/form-view/form-view-routing.module.ts b/src/app/form/form-view/form-view-routing.module.ts
index 256b8a79f..73f5ba2d1 100644
--- a/src/app/form/form-view/form-view-routing.module.ts
+++ b/src/app/form/form-view/form-view-routing.module.ts
@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
 import { RouterModule, Routes } from '@angular/router';
 import { AuthGuard } from '../../guards/auth.guard';
 import { DeactivateGuard } from '../../guards/deactivate.guard';
+import { RoleGuard } from '../../guards/role.guard';
 import { StructureResolver } from '../../resolvers/structure.resolver';
 import { TempUserResolver } from '../../resolvers/temp-user.resolver';
 import { RouteRole } from '../../shared/enum/routeRole.enum';
@@ -16,7 +17,7 @@ const routes: Routes = [
   {
     path: 'structure/:id/:step',
     component: FormViewComponent,
-    // canActivate: [RoleGuard],
+    canActivate: [RoleGuard],
     data: { allowedRoles: [RouteRole.structureAdmin] },
     resolve: {
       structure: StructureResolver,
diff --git a/src/app/form/form-view/form-view.component.html b/src/app/form/form-view/form-view.component.html
index 08356b8f4..881f9c02a 100644
--- a/src/app/form/form-view/form-view.component.html
+++ b/src/app/form/form-view/form-view.component.html
@@ -61,7 +61,7 @@
     [form]="currentForm"
     [linkedStructureId]="linkedStructureId"
     [btnName]="['Précédent', 'Suivant']"
-    [isValid]="true"
+    [isValid]="isPageValid"
     [acceptNewsletter]="userAcceptNewsletter"
     [hasOtherPersonalOffer]="hasOtherPersonalOffer"
     [isPersonalOfferProfile]="isPersonalOfferProfile"
diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 96cba3a81..4b2b50768 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -135,10 +135,10 @@ export class FormViewComponent implements OnInit, AfterViewInit {
   }
 
   private initPage(): void {
-    const profileFormSteps: number = Object.keys(profileFormStep).length / 2;
-    const personalOfferFormSteps: number = Object.keys(personalOfferFormStep).length / 2 - 1;
-    const structureFormSteps: number = Object.keys(structureFormStep).length / 2;
-    const totalFormSteps: number = profileFormSteps + personalOfferFormSteps + structureFormSteps;
+    const profileFormSteps = Object.keys(profileFormStep).length / 2;
+    const personalOfferFormSteps = Object.keys(personalOfferFormStep).length / 2 - 1;
+    const structureFormSteps = Object.keys(structureFormStep).length / 2;
+    const totalFormSteps = profileFormSteps + personalOfferFormSteps + structureFormSteps;
     if (formType[this.routeParam] === formType.account) {
       this.nbSteps = 3;
       this.currentPage = accountFormStep.accountInfo;
-- 
GitLab


From 16fb2b459624207953bb36ad44bf4e434e667636 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 6 Dec 2023 17:10:45 +0100
Subject: [PATCH 37/77] go-back component

---
 .../form/form-view/form-view.component.scss   |  9 ------
 .../structure-access-modality.component.html  | 10 +++----
 .../structure-consent.component.html          | 28 ++++++-----------
 ...tructure-contact-completion.component.html | 18 +++--------
 .../structure-contact.component.html          | 18 +++--------
 .../structure-covid-info.component.html       | 18 +++--------
 .../structure-description.component.html      | 18 +++--------
 ...gital-helping-accompaniment.component.html | 20 ++++---------
 .../structure-equipments.component.html       | 10 +++----
 .../structure-hours.component.html            | 18 +++--------
 .../structure-labels.component.html           | 18 +++--------
 .../structure-name-and-address.component.html | 16 ++--------
 ...ructure-public-target-other.component.html | 16 ++--------
 .../structure-public-target.component.html    | 30 +++++++------------
 ...ructure-solidarity-material.component.html | 19 ++++--------
 .../structure-training-price.component.html   | 18 +++--------
 .../structure-training-type.component.html    | 20 ++++---------
 .../structure-type.component.html             | 18 +++--------
 ...ture-web-and-social-network.component.html | 18 +++--------
 .../structure-wifi.component.html             | 16 ++--------
 .../orientation-form-view.component.scss      |  8 -----
 .../orientation-comments.component.html       |  6 ++--
 src/app/profile/edit/edit.component.html      |  9 +-----
 .../personal-offer-edition.component.html     |  9 +-----
 src/app/profile/profile.component.html        |  9 +-----
 .../structure-edition-summary.component.html  |  9 +-----
 ...tructure-members-management.component.html |  9 +-----
 .../structures-management.component.html      |  9 +-----
 .../components/go-back/go-back.component.ts   | 21 +++++++++++++
 src/app/shared/components/index.ts            |  3 ++
 .../structure-pmr.component.html              | 16 ++--------
 .../structure-pmr/structure-pmr.component.ts  |  3 ++
 32 files changed, 125 insertions(+), 342 deletions(-)
 create mode 100644 src/app/shared/components/go-back/go-back.component.ts

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 5f3cc8e79..0eddc1802 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -20,7 +20,6 @@
   width: 100%;
   height: 100%;
   margin: 0 auto;
-  margin-top: 1rem;
   overflow-y: auto;
   color: $grey-1;
   padding: 32px 48px;
@@ -84,12 +83,4 @@
   .backArrow {
     cursor: pointer;
   }
-  &.editTitle {
-    display: flex;
-    align-items: center;
-
-    p {
-      margin-bottom: 0;
-    }
-  }
 }
diff --git a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
index 46ad77665..a894fea56 100644
--- a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
+++ b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
@@ -1,10 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon *ngIf="isEditMode" [iconClass]="'backArrow'" [type]="'ico'" [icon]="'arrowBack'" (click)="goBack()" />
-    <div class="titleContent">
-      <h3>Quelles sont les modalités d'accueil de la structure&nbsp;?</h3>
-      <p>Plusieurs choix possibles</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelles sont les modalités d'accueil de la structure&nbsp;?</h3>
+    <p>Plusieurs choix possibles</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('categories').get('accessModality').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
index 6ca6d879f..c3db6fa9e 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
@@ -9,25 +9,15 @@
     <app-checkbox-form [text]="'J\'accepte'" (checkEvent)="acceptDataBeSaved($event)" />
   </div>
   <div class="section">
-    <div class="title" [ngClass]="{ editTitle: isEditMode }">
-      <app-svg-icon
-        *ngIf="isEditMode"
-        tabindex="0"
-        [iconClass]="'backArrow'"
-        [type]="'ico'"
-        [icon]="'arrowBack'"
-        (click)="goBack()"
-        (keyup.enter)="goBack()"
-      />
-      <div class="titleContent">
-        <h3>
-          Acceptez-vous que les informations de votre structure soient mises à disposition sur la plateforme
-          data.grandlyon.com
-          <sup>{{ isEditMode ? '1' : '2' }}</sup>
-          ?
-        </h3>
-        <p *ngIf="!isEditMode">Facultatif</p>
-      </div>
+    <app-go-back [active]="isEditMode" (action)="goBack()" />
+    <div class="title">
+      <h3>
+        Acceptez-vous que les informations de votre structure soient mises à disposition sur la plateforme
+        data.grandlyon.com
+        <sup>{{ isEditMode ? '1' : '2' }}</sup>
+        ?
+      </h3>
+      <p *ngIf="!isEditMode">Facultatif</p>
     </div>
     <app-checkbox-form
       *ngIf="!isEditMode"
diff --git a/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html b/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
index d53261974..d780095c3 100644
--- a/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelle personne pourrait connaître ces informations&nbsp;?</h3>
-      <p>Informations demandées : téléphone, email, accessibilité PMR, type de public...</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelle personne pourrait connaître ces informations&nbsp;?</h3>
+    <p>Informations demandées : téléphone, email, accessibilité PMR, type de public...</p>
   </div>
   <div class="form-group" fxLayout="column">
     <label for="contactPersonFirstname">Prénom</label>
diff --git a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
index eabad119f..180f45e07 100644
--- a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Comment joindre votre structure&nbsp;?</h3>
-      <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Comment joindre votre structure&nbsp;?</h3>
+    <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
   </div>
   <div class="form-group" fxLayout="column">
     <label for="structureName">Email de la structure</label>
diff --git a/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html b/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
index 96637817e..b6a1c34f1 100644
--- a/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
+++ b/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Y a-t-il des informations spécifiques à la période COVID&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Y a-t-il des informations spécifiques à la période COVID&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <div class="textareaBlock" fxLayout="column">
     <textarea
diff --git a/src/app/form/form-view/structure-form/structure-description/structure-description.component.html b/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
index 73e2dfc4d..12639ca6c 100644
--- a/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
+++ b/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Pouvez-vous présenter la structure en quelques mots&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Pouvez-vous présenter la structure en quelques mots&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <div class="textareaBlock introduceStructure" fxLayout="column">
     <textarea
diff --git a/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html b/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
index 5ae9e0e6d..35bcab2f1 100644
--- a/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
+++ b/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
@@ -1,19 +1,9 @@
 <form *ngIf="structureForm && onlineProcedures" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelles aides aux démarches en ligne votre structure propose-t-elle&nbsp;?</h3>
-      <p>Facultatif</p>
-      <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelles aides aux démarches en ligne votre structure propose-t-elle&nbsp;?</h3>
+    <p>Facultatif</p>
+    <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
   </div>
   <div class="btn-grid">
     <span *ngFor="let accompaniment of onlineProcedures.modules">
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
index 0c58b4d64..24b6b30d7 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
@@ -1,10 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon *ngIf="isEditMode" [iconClass]="'backArrow'" [type]="'ico'" [icon]="'arrowBack'" (click)="goBack()" />
-    <div class="titleContent">
-      <h3>Quel matériel est mis à disposition par la structure&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quel matériel est mis à disposition par la structure&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <div class="equipments">
     <ng-container *ngFor="let equipment of selfServiceMaterial">
diff --git a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
index 26eaed429..1f1c261f8 100644
--- a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
+++ b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-     />
-    <div class="titleContent">
-      <h3>Quels sont les horaires d'ouverture de la structure&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quels sont les horaires d'ouverture de la structure&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <app-hour-picker
     *ngIf="hoursForm"
diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
index 47d043cf2..a57337d1f 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
@@ -1,18 +1,8 @@
 <form class="labelStep" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>La structure est-elle labellisée&nbsp;?</h3>
-      <p>Facultatif - Plusieurs choix possibles</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>La structure est-elle labellisée&nbsp;?</h3>
+    <p>Facultatif - Plusieurs choix possibles</p>
   </div>
   <div *ngIf="labelsQualifications" class="labelsQualifications">
     <app-checkbox-form
diff --git a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
index 79dd4e3b3..cffd319ee 100644
--- a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
+++ b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
@@ -1,17 +1,7 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
   </div>
   <div class="form-group" fxLayout="column">
     <label for="structureName">Nom de la structure</label>
diff --git a/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html b/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
index 1d7d21d01..4cbbf9bd6 100644
--- a/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
+++ b/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
@@ -1,17 +1,7 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelles sont les autres démarches&nbsp;?</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelles sont les autres démarches&nbsp;?</h3>
   </div>
   <div class="textareaBlock" fxLayout="column">
     <textarea
diff --git a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
index f7ba4ce7c..bf912463a 100644
--- a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
+++ b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
@@ -1,24 +1,14 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>
-        {{
-          isMandatoryFields
-            ? 'Quel public peut être accueilli dans cette structure&nbsp;?'
-            : 'Proposez-vous des accompagnements adaptés à des publics spécifiques&nbsp;? Lesquels&nbsp;?'
-        }}
-      </h3>
-      <p>{{ isMandatoryFields ? '' : 'Facultatif - ' }}Plusieurs choix possibles</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>
+      {{
+        isMandatoryFields
+          ? 'Quel public peut être accueilli dans cette structure&nbsp;?'
+          : 'Proposez-vous des accompagnements adaptés à des publics spécifiques&nbsp;? Lesquels&nbsp;?'
+      }}
+    </h3>
+    <p>{{ isMandatoryFields ? '' : 'Facultatif - ' }}Plusieurs choix possibles</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('categories').get('age').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html b/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
index 91482f741..bde6c219c 100644
--- a/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
+++ b/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
@@ -1,19 +1,10 @@
 <form *ngIf="structureForm && solidarityMaterial" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quel matériel numérique vendez-vous à tarif solidaire&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quel matériel numérique vendez-vous à tarif solidaire&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
+
   <div class="btn-grid">
     <span *ngFor="let material of solidarityMaterial.modules">
       <app-button
diff --git a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
index 04a0e6099..cba927923 100644
--- a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Ces accompagnements aux usages numériques sont-ils gratuits&nbsp;?</h3>
-      <p>Un seul choix possible</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Ces accompagnements aux usages numériques sont-ils gratuits&nbsp;?</h3>
+    <p>Un seul choix possible</p>
   </div>
   <div class="formGroup">
     <app-radio-option
diff --git a/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html b/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
index f52f5b96d..75674199b 100644
--- a/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
@@ -1,19 +1,9 @@
 <form *ngIf="structureForm && trainingCategories.length > 0" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quels accompagnements au numérique votre structure propose-t-elle&nbsp;?</h3>
-      <p>Facultatif</p>
-      <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quels accompagnements au numérique votre structure propose-t-elle&nbsp;?</h3>
+    <p>Facultatif</p>
+    <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
   </div>
   <app-training-type-picker
     [baseSkills]="structureForm.get('categories').get('baseSkills').value"
diff --git a/src/app/form/form-view/structure-form/structure-type/structure-type.component.html b/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
index 445b8748d..c74c7e65e 100644
--- a/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
+++ b/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>De quel type de structure s'agit-il&nbsp;?</h3>
-      <p>1 seul choix possible</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>De quel type de structure s'agit-il&nbsp;?</h3>
+    <p>1 seul choix possible</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('structureType').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index 0b6e9fb12..992a82b68 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Votre présence sur internet et les réseaux sociaux</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Votre présence sur internet et les réseaux sociaux</h3>
+    <p>Facultatif</p>
   </div>
   <div class="card">
     <h3>Site web</h3>
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
index 849b313d8..d4dde58ee 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
@@ -1,17 +1,7 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
   </div>
   <!-- TODO to fix -->
   <!-- <app-radio-form
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.scss b/src/app/form/orientation-form-view/orientation-form-view.component.scss
index 01d9790c7..1e2cf3218 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.scss
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.scss
@@ -69,14 +69,6 @@
   .backArrow {
     cursor: pointer;
   }
-  &.editTitle {
-    display: flex;
-    align-items: center;
-
-    p {
-      margin-bottom: 0;
-    }
-  }
 }
 
 div.titleform {
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
index 151949484..a035946c1 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
@@ -1,9 +1,7 @@
 <form [formGroup]="form">
   <div class="title">
-    <div class="titleContent">
-      <h3>Avez-vous des précisions à apporter&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+    <h3>Avez-vous des précisions à apporter&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <p>Ces informations accompagneront la fiche d'orientation de la personne</p>
   <div class="textareaBlock" fxLayout="column">
diff --git a/src/app/profile/edit/edit.component.html b/src/app/profile/edit/edit.component.html
index 6eae7f37a..33b44688b 100644
--- a/src/app/profile/edit/edit.component.html
+++ b/src/app/profile/edit/edit.component.html
@@ -1,13 +1,6 @@
 <div *ngIf="userProfile" class="content-container full-screen">
   <div class="edit-profile">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
 
     <div class="header">
       <div class="title">
diff --git a/src/app/profile/personal-offer-edition/personal-offer-edition.component.html b/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
index 9645fe165..879d5eae0 100644
--- a/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
+++ b/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
@@ -1,13 +1,6 @@
 <div class="content-container full-screen">
   <div class="edit-personal-offer">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
     <div class="header">
       <div class="title">
         <div>
diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html
index c7597bd11..04ded6a3e 100644
--- a/src/app/profile/profile.component.html
+++ b/src/app/profile/profile.component.html
@@ -1,13 +1,6 @@
 <div *ngIf="userProfile" class="content-container full-screen">
   <div class="goBack">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
   </div>
 
   <section>
diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
index f5bc3365b..1b0cc076b 100644
--- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
+++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
@@ -1,13 +1,6 @@
 <div class="container">
   <div class="scroll">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
     <div class="header">
       <h1>
         {{ isUpdateStructure ? 'Mettre à jour la structure' : 'Modifier la structure' }}
diff --git a/src/app/profile/structure-members-management/structure-members-management.component.html b/src/app/profile/structure-members-management/structure-members-management.component.html
index d701eebe7..ae7766fe2 100644
--- a/src/app/profile/structure-members-management/structure-members-management.component.html
+++ b/src/app/profile/structure-members-management/structure-members-management.component.html
@@ -1,12 +1,5 @@
 <div class="container members-management">
-  <app-v3-button
-    [label]="'Retour'"
-    [variant]="buttonTypeEnumV3.Tertiary"
-    [iconFolder]="'ico'"
-    [iconName]="'arrowBackSmall'"
-    [size]="'large'"
-    (action)="goBack()"
-  />
+  <app-go-back [active]="true" (action)="goBack()" />
   <div class="headerContainer">
     <div class="header">
       <h1>Gérer les membres de</h1>
diff --git a/src/app/profile/structures-management/structures-management.component.html b/src/app/profile/structures-management/structures-management.component.html
index 3c05d4467..2da8f45ad 100644
--- a/src/app/profile/structures-management/structures-management.component.html
+++ b/src/app/profile/structures-management/structures-management.component.html
@@ -1,13 +1,6 @@
 <div class="content-container full-screen">
   <div class="container">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
     <div class="header">
       <h1 [ngPlural]="structures.length">
         <ng-template ngPluralCase="1">Gestion des structures</ng-template>
diff --git a/src/app/shared/components/go-back/go-back.component.ts b/src/app/shared/components/go-back/go-back.component.ts
new file mode 100644
index 000000000..38de0135e
--- /dev/null
+++ b/src/app/shared/components/go-back/go-back.component.ts
@@ -0,0 +1,21 @@
+import { Component, EventEmitter, Input, Output } from '@angular/core';
+import { ButtonTypeV3 } from '../v3/button/button.type';
+
+@Component({
+  selector: 'app-go-back',
+  template: `<app-v3-button
+    *ngIf="active"
+    [label]="'Retour'"
+    [variant]="buttonTypeEnumV3.Tertiary"
+    [iconFolder]="'ico'"
+    [iconName]="'arrowBackSmall'"
+    [size]="'large'"
+    (action)="this.action.emit()"
+  /> `,
+})
+export class GoBackComponent {
+  @Input({ required: true }) active: boolean;
+  @Output() action = new EventEmitter<Event>();
+
+  public buttonTypeEnumV3 = ButtonTypeV3;
+}
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index 685ceac1b..449ee0e2c 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -7,6 +7,7 @@ import { AppointmentChoiceComponent } from './appointment-choice/appointment-cho
 import { ButtonComponent } from './button/button.component';
 import { CheckboxFormComponent } from './checkbox-form/checkbox-form.component';
 import { CustomModalComponent } from './custom-modal/custom-modal.component';
+import { GoBackComponent } from './go-back/go-back.component';
 import { HourPickerComponent } from './hour-picker/hour-picker.component';
 import { LogoCardComponent } from './logo-card/logo-card.component';
 import { ModalConfirmationComponent } from './modal-confirmation/modal-confirmation.component';
@@ -43,6 +44,7 @@ export {
   CollapseContentComponent,
   CollapseHeaderComponent,
   CustomModalComponent,
+  GoBackComponent,
   HourPickerComponent,
   InformationStepComponent,
   LabelCheckboxV3Component,
@@ -95,4 +97,5 @@ export const SharedComponents = [
   TextInputModalComponent,
   TrainingTypePickerComponent,
   TextareaV3Component,
+  GoBackComponent,
 ];
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.html b/src/app/shared/components/structure-pmr/structure-pmr.component.html
index 8ec493696..f011054e3 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.html
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.html
@@ -1,17 +1,7 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('pmrAccess').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.ts b/src/app/shared/components/structure-pmr/structure-pmr.component.ts
index 5a4aaaf25..e2f268273 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.ts
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.ts
@@ -1,5 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
+import { ButtonTypeV3 } from '../v3/button/button.type';
 
 @Component({
   selector: 'app-structure-pmr',
@@ -12,6 +13,8 @@ export class StructurePmrComponent implements OnInit {
   @Output() radioChange = new EventEmitter<any>();
   @Output() validateForm = new EventEmitter<any>();
 
+  public buttonTypeEnumV3 = ButtonTypeV3;
+
   ngOnInit(): void {
     this.validateForm.emit();
   }
-- 
GitLab


From f795fc971afe00d1e58931a2b4e447e5d99549fb Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Thu, 7 Dec 2023 09:15:41 +0100
Subject: [PATCH 38/77] fix conflict

---
 .../structure-equipments/structure-equipments.component.ts      | 2 +-
 src/app/shared/components/go-back/go-back.component.ts          | 2 +-
 .../shared/components/structure-pmr/structure-pmr.component.ts  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
index 5bc107392..e62cbd777 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { AbstractControl, UntypedFormGroup } from '@angular/forms';
-import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 import { Module } from '../../../../structure-list/models/module.model';
 
 @Component({
diff --git a/src/app/shared/components/go-back/go-back.component.ts b/src/app/shared/components/go-back/go-back.component.ts
index 38de0135e..d25cf6c1b 100644
--- a/src/app/shared/components/go-back/go-back.component.ts
+++ b/src/app/shared/components/go-back/go-back.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonTypeV3 } from '../v3/button/button.type';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-go-back',
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.ts b/src/app/shared/components/structure-pmr/structure-pmr.component.ts
index e2f268273..d4898bb09 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.ts
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
-import { ButtonTypeV3 } from '../v3/button/button.type';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-structure-pmr',
-- 
GitLab


From 5977250645f02f2580e9c52ac1a45e6f749209cf Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 13:36:58 +0100
Subject: [PATCH 39/77] fix inner keyboard focus

---
 .../checkbox-form/checkbox-form.component.html        |  2 +-
 .../radio-option/radio-option.component.html          | 11 ++---------
 .../radio-option/radio-option.component.scss          |  2 +-
 3 files changed, 4 insertions(+), 11 deletions(-)

diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.html b/src/app/shared/components/checkbox-form/checkbox-form.component.html
index 6b5181371..5b91f1292 100644
--- a/src/app/shared/components/checkbox-form/checkbox-form.component.html
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.html
@@ -1,4 +1,4 @@
-<button type="button" [ngClass]="{ selected: isChecked }" (click)="clicked()">
+<button type="button" tabindex="-1" [ngClass]="{ selected: isChecked }" (click)="clicked()">
   <app-v3-checkbox [checked]="isChecked" />
 
   <svg *ngIf="iconSvg" aria-hidden="true" class="icon" [ngClass]="iconType">
diff --git a/src/app/shared/components/radio-option/radio-option.component.html b/src/app/shared/components/radio-option/radio-option.component.html
index 761d3171c..b095f51a5 100644
--- a/src/app/shared/components/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-option/radio-option.component.html
@@ -1,10 +1,3 @@
-<div
-  class="radioButton"
-  role="button"
-  tabindex="0"
-  [ngClass]="{ selected: selected }"
-  (click)="clicked()"
-  (keyup.enter)="clicked()"
->
+<button type="button" tabindex="-1" [ngClass]="{ selected: selected }" (click)="clicked()">
   <app-radio [id]="id" [checked]="selected === true" [label]="label" [description]="description" [size]="size" />
-</div>
+</button>
diff --git a/src/app/shared/components/radio-option/radio-option.component.scss b/src/app/shared/components/radio-option/radio-option.component.scss
index a91463106..5cb67f795 100644
--- a/src/app/shared/components/radio-option/radio-option.component.scss
+++ b/src/app/shared/components/radio-option/radio-option.component.scss
@@ -1,6 +1,6 @@
 @import 'color';
 
-.radioButton {
+button {
   width: 100%;
   cursor: pointer;
   box-sizing: border-box;
-- 
GitLab


From 4ba80c8e62c7b50a393a3ddf77940dd112c6a463 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 13:37:09 +0100
Subject: [PATCH 40/77] style footer

---
 src/app/form/footer-form/footer-form.component.scss | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/app/form/footer-form/footer-form.component.scss b/src/app/form/footer-form/footer-form.component.scss
index 1969fcedf..eb5e3fe1d 100644
--- a/src/app/form/footer-form/footer-form.component.scss
+++ b/src/app/form/footer-form/footer-form.component.scss
@@ -5,8 +5,10 @@
 .footerForm {
   display: flex;
   justify-content: center;
-  gap: 1rem;
-  padding: 16px 0;
+  gap: 2rem;
+  padding-top: 32px;
+  padding-bottom: 40px;
+  border-top: 1px solid $grey-7;
 }
 
 .btn-primary {
-- 
GitLab


From 98c53edf86ef530ed26e4b81a5d083b9efb9b5b3 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:00:56 +0100
Subject: [PATCH 41/77] update assets

---
 src/assets/form/emailVerification.svg | 261 +++++++++---------
 src/assets/form/profileQuestions.svg  | 212 +++++++++++++++
 src/assets/form/profileSkip.svg       | 264 +++++++-----------
 src/assets/form/profileUpdated.svg    | 371 +++++++++++++++-----------
 src/assets/form/structureCreated.svg  | 335 ++++++++++-------------
 5 files changed, 782 insertions(+), 661 deletions(-)
 create mode 100644 src/assets/form/profileQuestions.svg

diff --git a/src/assets/form/emailVerification.svg b/src/assets/form/emailVerification.svg
index 3db268147..042f1dcfe 100644
--- a/src/assets/form/emailVerification.svg
+++ b/src/assets/form/emailVerification.svg
@@ -1,140 +1,123 @@
 <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5720_44788)">
-<path d="M35.3333 94.6667L116.74 141.667" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M35.3333 94.6667L116.74 141.667" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M106.073 116L24.6666 163" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M132.663 118.923L187.656 87.1731C193.874 83.5832 193.874 77.7629 187.656 74.1731L160.509 58.5001C154.291 54.9102 144.21 54.9102 137.993 58.5L82.9999 90.25" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M114.983 143.266L142.48 158.93C148.769 162.512 148.803 168.366 142.555 171.973L101.857 195.47C95.6396 199.06 85.5585 199.06 79.3407 195.47L21.8654 162.287" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M194.384 64.7521L173.066 52.4459C172.232 51.9633 170.887 51.9672 170.064 52.4459L133.296 73.8106C132.639 74.1666 132.679 74.673 132.679 74.673L132.667 79.1073C132.667 79.4238 132.876 79.7402 133.296 79.9815L154.613 92.2877C155.448 92.7703 156.789 92.7703 157.615 92.2877L194.384 70.923C194.795 70.6856 195.001 70.3731 195.001 70.0606L195.013 65.6263C194.945 64.9775 194.384 64.7521 194.384 64.7521Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M192.829 64.5186L172.596 52.8374C171.804 52.3825 170.527 52.3825 169.744 52.8374L134.846 73.1183C134.225 73.4585 134.261 73.9371 134.261 73.9371L134.249 78.146C134.249 78.4466 134.447 78.7473 134.846 78.9767L155.08 90.6579C155.871 91.1128 157.145 91.1128 157.932 90.6579L192.829 70.377C193.217 70.1515 193.415 69.8548 193.415 69.5582L193.426 65.3493C193.363 64.7322 192.829 64.5186 192.829 64.5186Z" fill="#EDEDED"/>
-<path d="M192.726 64.6294L157.964 84.8312L157.952 89.0242L192.714 68.8224C193.102 68.597 193.296 68.3003 193.3 68.0076L193.312 63.8145C193.312 64.1112 193.114 64.4039 192.726 64.6294Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M134.973 73.1974C134.577 72.9679 134.38 72.6673 134.38 72.3706L134.368 76.5637C134.368 76.8643 134.565 77.161 134.961 77.3904L155.115 89.0281L155.127 84.8351L134.973 73.1974Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M157.968 84.8312L157.956 89.0243C157.172 89.4792 155.903 89.4792 155.115 89.0243L155.127 84.8312C155.914 85.2861 157.184 85.2861 157.968 84.8312Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M192.718 62.9838C193.505 63.4387 193.509 64.1745 192.726 64.6294L157.963 84.8312C157.18 85.2861 155.91 85.2861 155.123 84.8312L134.969 73.1935C134.182 72.7386 134.178 72.0028 134.961 71.5479L169.724 51.3461C170.503 50.8912 171.777 50.8912 172.564 51.3461L192.718 62.9838Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M151.017 78.6287L149.364 79.5899C149.277 79.6413 149.166 79.6413 149.079 79.5899L143.228 76.2117C143.038 76.101 143.038 75.828 143.228 75.7173L144.882 74.756C144.969 74.7046 145.08 74.7046 145.167 74.756L151.017 78.1342C151.207 78.245 151.207 78.5179 151.017 78.6287Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M161.611 82.8216L161.334 82.9838L138.426 69.7599L138.703 69.5977L161.611 82.8216Z" fill="#706F6F"/>
-<path d="M191.583 65.2508L191.302 65.413L168.395 52.1851L168.675 52.0229L191.583 65.2508Z" fill="#706F6F"/>
-<path d="M172.141 52.2479C172.378 52.3824 172.378 52.6039 172.144 52.7384C171.911 52.8729 171.531 52.8729 171.294 52.7384C171.057 52.6039 171.057 52.3824 171.29 52.2479C171.523 52.1094 171.903 52.1094 172.141 52.2479Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M173.672 53.0707C173.909 53.2052 173.909 53.4267 173.675 53.5612C173.442 53.6957 173.062 53.6957 172.825 53.5612C172.588 53.4267 172.588 53.2052 172.821 53.0707C173.054 52.9322 173.434 52.9322 173.672 53.0707Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M184.941 59.6489C185.151 59.7715 185.151 59.9653 184.941 60.088C184.732 60.2106 184.391 60.2106 184.182 60.088L176.148 55.4479C175.938 55.3253 175.938 55.1315 176.144 55.0088C176.353 54.8862 176.694 54.8862 176.903 55.0088L184.941 59.6489Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" fill="white"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" fill="white"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" fill="white"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" fill="#DA3635"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" fill="white"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" fill="white"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" fill="white"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" fill="white"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M169.617 64.7123C169.545 65.417 170.177 65.9441 169.844 66.5766C169.628 67.0094 168.912 68.0414 168.313 67.8084C167.409 67.4644 168.158 66.5322 168.413 66.0717C168.602 65.7443 168.701 65.4392 168.984 65.2117C169.162 65.0674 169.661 64.6957 169.617 64.7123Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" fill="white"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" fill="white"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" fill="white"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" fill="white"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M166.022 52.9718C165.461 53.6432 165.433 54.359 165.334 55.2911C165.217 56.3065 164.973 57.2108 164.962 58.2595C164.945 60.3679 164.962 62.443 164.962 64.5792C164.962 65.2672 164.601 67.8195 165.162 68.1912C165.561 67.1148 165.261 65.5113 165.317 64.3517C165.389 62.8591 165.317 61.2834 165.417 59.8075C165.544 58.1707 165.506 56.4673 165.805 54.8639C165.888 54.42 166.121 53.2992 166.61 53.1272C167.298 52.872 167.697 54.1426 167.841 54.1592C168.546 54.2591 167.797 52.6833 167.037 52.5945C166.31 52.5002 166.105 52.7721 166.022 52.9718Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" fill="white"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" fill="white"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M157.017 116.598C160.202 118.434 160.218 121.412 157.056 123.253L73.7455 171.663C70.5834 173.499 65.4457 173.499 62.2612 171.663L8.39961 140.569C5.21514 138.733 5.19831 135.756 8.36039 133.914L91.6713 85.4982C94.8334 83.6625 99.9711 83.6625 103.156 85.4982L157.017 116.598Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M149.747 116.47C152.669 118.154 152.68 120.885 149.781 122.57L73.3649 166.979C70.4658 168.664 65.7535 168.664 62.8321 166.979L13.431 138.459C10.5095 136.774 10.4983 134.043 13.3973 132.358L89.8133 87.9495C92.7123 86.2649 97.4246 86.2649 100.346 87.9495L149.747 116.47Z" fill="#EDEDED"/>
-<path d="M152.036 117.052L152.019 111.824C152.019 112.39 151.644 112.96 150.895 113.391L150.911 118.619C151.661 118.188 152.036 117.617 152.036 117.052Z" fill="white"/>
-<path d="M150.895 113.391L150.911 118.619C151.661 118.188 152.036 117.617 152.036 117.052L152.019 111.824C152.019 112.395 151.644 112.96 150.895 113.391Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M152.036 117.052L152.019 111.824C152.019 112.39 151.644 112.96 150.895 113.391L150.911 118.619C151.661 118.188 152.036 117.617 152.036 117.052Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M13 134.233C13.0168 134.25 13.0392 134.267 13.0616 134.278C13.0784 134.295 13.1007 134.306 13.1175 134.323C13.1399 134.339 13.1623 134.351 13.1791 134.367C13.2015 134.379 13.2183 134.395 13.2407 134.407C13.2631 134.423 13.2855 134.435 13.3079 134.451C13.3247 134.463 13.3358 134.468 13.347 134.479C13.3638 134.491 13.375 134.496 13.3918 134.507L13.375 129.28C13.347 129.263 13.3134 129.247 13.2855 129.224C13.2631 129.207 13.2407 129.196 13.2183 129.179C13.1959 129.168 13.1791 129.151 13.1568 129.14C13.1344 129.123 13.112 129.112 13.0896 129.095C13.0728 129.084 13.0504 129.067 13.0336 129.051C13.0112 129.034 12.9944 129.017 12.972 129.006C12.9552 128.989 12.9385 128.978 12.9217 128.961C12.9049 128.944 12.8825 128.928 12.8657 128.911C12.8489 128.9 12.8377 128.883 12.8265 128.872C12.7985 128.844 12.7706 128.816 12.7426 128.788C12.7314 128.776 12.7258 128.771 12.7146 128.76C12.681 128.721 12.6474 128.681 12.6138 128.642C12.6026 128.631 12.5971 128.62 12.5915 128.609C12.5747 128.586 12.5523 128.558 12.5355 128.536C12.5243 128.525 12.5187 128.508 12.5075 128.497C12.4907 128.474 12.4796 128.452 12.4684 128.429C12.4572 128.413 12.4516 128.402 12.4404 128.385C12.4292 128.368 12.418 128.346 12.4124 128.329C12.4068 128.312 12.3956 128.295 12.39 128.278C12.3788 128.262 12.3732 128.239 12.3676 128.222C12.362 128.206 12.3564 128.189 12.3508 128.172C12.3452 128.155 12.3396 128.133 12.334 128.116C12.3284 128.099 12.3229 128.083 12.3173 128.066C12.3117 128.049 12.3061 128.027 12.3061 128.01C12.3005 127.993 12.3005 127.976 12.2949 127.959C12.2893 127.943 12.2892 127.92 12.2837 127.903C12.2837 127.887 12.278 127.87 12.278 127.853C12.278 127.836 12.2724 127.814 12.2724 127.797C12.2724 127.775 12.2668 127.752 12.2668 127.73L12.2837 132.957C12.2837 132.968 12.2837 132.98 12.2837 132.991C12.2837 133.002 12.2837 133.013 12.2837 133.024C12.2837 133.041 12.2837 133.063 12.2893 133.08C12.2893 133.097 12.2949 133.114 12.2949 133.131C12.2949 133.147 12.3005 133.17 12.3061 133.187C12.3061 133.192 12.3061 133.198 12.3117 133.209C12.3117 133.22 12.3173 133.231 12.3173 133.237C12.3229 133.254 12.3285 133.276 12.3285 133.293C12.3341 133.31 12.3396 133.327 12.3452 133.343C12.3508 133.36 12.3564 133.382 12.362 133.399C12.3676 133.405 12.3676 133.416 12.3676 133.422C12.3732 133.433 12.3732 133.438 12.3788 133.45C12.3844 133.466 12.3956 133.489 12.4012 133.506C12.4068 133.522 12.418 133.539 12.4236 133.556C12.4348 133.573 12.4404 133.595 12.4516 133.612C12.4572 133.623 12.4628 133.629 12.4684 133.64C12.474 133.646 12.4739 133.651 12.4795 133.657C12.4907 133.679 12.5075 133.701 12.5187 133.724C12.5299 133.735 12.5355 133.752 12.5467 133.763C12.5635 133.785 12.5803 133.813 12.6027 133.836C12.6083 133.847 12.6138 133.853 12.625 133.864L12.6306 133.869C12.6586 133.909 12.6922 133.948 12.7314 133.987C12.7426 133.998 12.7482 134.004 12.7593 134.015C12.7873 134.043 12.8153 134.071 12.8433 134.099C12.8489 134.104 12.8545 134.11 12.8601 134.116C12.8657 134.121 12.8769 134.127 12.8825 134.138C12.8993 134.155 12.9161 134.172 12.9385 134.188C12.9665 134.205 12.9832 134.222 13 134.233Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M13.3862 129.28L13.3974 134.507L65.5353 164.807L65.5241 159.58L13.3862 129.28Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M70.9023 159.58L70.9135 164.807L150.911 118.619L150.895 113.391L70.9023 159.58Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M70.1469 165.149C70.2141 165.126 70.2812 165.098 70.3484 165.076C70.354 165.076 70.3596 165.07 70.3652 165.07C70.3708 165.065 70.382 165.065 70.3876 165.059C70.4716 165.026 70.5555 164.986 70.6394 164.947C70.645 164.942 70.6562 164.942 70.6618 164.936C70.7458 164.897 70.8297 164.852 70.9137 164.802L70.8969 159.574C70.8185 159.619 70.7346 159.664 70.645 159.709C70.6394 159.714 70.6282 159.714 70.6226 159.72C70.5387 159.759 70.4548 159.793 70.3708 159.832C70.3596 159.838 70.3428 159.843 70.3316 159.849C70.2644 159.877 70.1973 159.899 70.1301 159.921C70.1189 159.927 70.1078 159.927 70.0966 159.933C70.035 159.955 69.979 159.972 69.9174 159.989C69.8951 159.994 69.8727 160 69.8503 160.005C69.8111 160.017 69.772 160.028 69.7328 160.033C69.7104 160.039 69.688 160.045 69.66 160.05C69.6153 160.061 69.5761 160.073 69.5313 160.078C69.5089 160.084 69.4921 160.089 69.4698 160.089C69.4306 160.095 69.3914 160.106 69.3522 160.112C69.3298 160.117 69.3074 160.117 69.285 160.123C69.2347 160.134 69.1843 160.14 69.1284 160.145C69.1172 160.145 69.1116 160.151 69.1004 160.151C69.0388 160.162 68.9773 160.168 68.9213 160.173C68.9045 160.173 68.8933 160.179 68.8765 160.179C68.8317 160.185 68.7869 160.19 68.7366 160.19C68.7142 160.19 68.6918 160.196 68.6694 160.196C68.6302 160.201 68.5911 160.201 68.5519 160.201C68.5295 160.201 68.5015 160.201 68.4792 160.207C68.44 160.207 68.4064 160.212 68.3672 160.212C68.3449 160.212 68.3225 160.212 68.2945 160.212C68.2553 160.212 68.2161 160.212 68.1769 160.212C68.1489 160.212 68.1265 160.212 68.0986 160.212C68.0594 160.212 68.0258 160.212 67.9866 160.212C67.9643 160.212 67.9363 160.212 67.9139 160.207C67.8691 160.207 67.83 160.201 67.7852 160.201C67.7572 160.201 67.7348 160.196 67.7068 160.196C67.6676 160.19 67.6229 160.19 67.5837 160.185C67.5613 160.185 67.5333 160.179 67.511 160.179C67.4494 160.173 67.3822 160.162 67.3206 160.157C67.3094 160.157 67.2983 160.157 67.2871 160.151C67.2143 160.14 67.1416 160.129 67.0744 160.117C67.0464 160.112 67.024 160.106 66.996 160.101C66.9625 160.095 66.9289 160.089 66.8953 160.084C66.8674 160.078 66.8394 160.073 66.817 160.067C66.7834 160.061 66.7498 160.05 66.7218 160.045C66.6938 160.039 66.6658 160.033 66.6435 160.022C66.6099 160.017 66.5819 160.005 66.5484 159.994C66.5204 159.989 66.498 159.977 66.47 159.972C66.4364 159.961 66.4084 159.955 66.3748 159.944C66.3524 159.938 66.3301 159.927 66.3077 159.921C66.2517 159.905 66.1957 159.882 66.1453 159.866C66.1342 159.86 66.123 159.86 66.1118 159.854C66.0502 159.832 65.983 159.804 65.9215 159.776C65.9047 159.77 65.8879 159.759 65.8711 159.754C65.8207 159.731 65.776 159.709 65.7312 159.686C65.7144 159.675 65.6976 159.67 65.6809 159.658C65.6193 159.63 65.5633 159.597 65.5073 159.563L65.5241 164.791C65.5801 164.824 65.6417 164.852 65.6977 164.886C65.7144 164.897 65.7312 164.902 65.748 164.914C65.7928 164.936 65.8432 164.958 65.8879 164.981C65.9047 164.986 65.9215 164.998 65.9383 165.003C65.9998 165.031 66.0614 165.054 66.1286 165.082C66.1398 165.087 66.151 165.087 66.1622 165.093C66.2181 165.115 66.2741 165.132 66.3301 165.149C66.3413 165.154 66.3468 165.154 66.358 165.16C66.3692 165.165 66.386 165.165 66.3972 165.171C66.4252 165.182 66.4588 165.188 66.4923 165.199C66.5203 165.205 66.5427 165.216 66.5707 165.221C66.6043 165.233 66.6323 165.238 66.6659 165.249C66.6938 165.255 66.7162 165.261 66.7442 165.272C66.7778 165.277 66.8113 165.289 66.8393 165.294C66.8673 165.3 66.8953 165.305 66.9177 165.311C66.9513 165.317 66.9849 165.322 67.0184 165.333C67.0352 165.339 67.0576 165.339 67.0744 165.345C67.08 165.345 67.0856 165.345 67.0968 165.35C67.1696 165.361 67.2423 165.373 67.3095 165.384C67.3207 165.384 67.3318 165.384 67.3374 165.389C67.399 165.401 67.4662 165.406 67.5278 165.412C67.5389 165.412 67.5501 165.412 67.5557 165.417C67.5725 165.417 67.5837 165.417 67.6004 165.423C67.6396 165.429 67.6844 165.429 67.7236 165.434C67.7516 165.434 67.774 165.44 67.802 165.44C67.8468 165.44 67.8859 165.445 67.9307 165.445C67.9475 165.445 67.9643 165.445 67.981 165.445C67.9866 165.445 67.9923 165.445 68.0035 165.445C68.0426 165.445 68.0762 165.445 68.1154 165.445C68.1433 165.445 68.1657 165.445 68.1937 165.445C68.2329 165.445 68.272 165.445 68.3112 165.445C68.3336 165.445 68.3504 165.445 68.3728 165.445C68.3784 165.445 68.3784 165.445 68.384 165.445C68.4232 165.445 68.4568 165.445 68.496 165.44C68.5183 165.44 68.5463 165.44 68.5687 165.434C68.6079 165.434 68.647 165.429 68.6862 165.429C68.7086 165.429 68.7254 165.429 68.7478 165.423C68.7478 165.423 68.7478 165.423 68.7534 165.423C68.7982 165.417 68.8485 165.412 68.8933 165.412C68.9101 165.412 68.9213 165.412 68.938 165.406C68.9996 165.401 69.0612 165.389 69.1172 165.384C69.1284 165.384 69.1339 165.378 69.1451 165.378C69.1955 165.373 69.2515 165.361 69.3018 165.356C69.3242 165.35 69.341 165.35 69.3634 165.345C69.4026 165.339 69.4418 165.328 69.481 165.322C69.4866 165.322 69.4921 165.322 69.4921 165.322C69.5089 165.317 69.5257 165.317 69.5369 165.311C69.5817 165.3 69.6209 165.294 69.6656 165.283C69.688 165.277 69.7104 165.272 69.7384 165.266C69.7776 165.255 69.8167 165.244 69.8559 165.238C69.8671 165.233 69.8783 165.233 69.8895 165.227C69.9007 165.221 69.9119 165.221 69.9174 165.216C69.979 165.199 70.0406 165.182 70.0966 165.16C70.1246 165.16 70.1357 165.154 70.1469 165.149Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M13.4029 126.168C11.9142 127.03 11.903 128.424 13.3861 129.286L65.524 159.586C67.0071 160.448 69.4136 160.448 70.9023 159.586L150.9 113.397C152.389 112.535 152.4 111.142 150.917 110.28L98.779 79.9797C97.2959 79.1178 94.8893 79.1178 93.4006 79.9797L13.4029 126.168Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M12.3395 128.693C12.3619 128.76 12.4291 128.805 12.4963 128.793L83.8977 120.857C83.9536 120.852 84.004 120.813 84.0208 120.757L97.9115 79.5657C97.9395 79.4761 97.8835 79.381 97.7884 79.3698L97.5925 79.3474C97.5198 79.3418 97.4582 79.381 97.4358 79.4481L83.5842 120.505C83.5674 120.561 83.5171 120.6 83.4611 120.605L12.4683 128.502C12.3676 128.508 12.306 128.603 12.3395 128.693Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M29.9355 161.12C32.526 162.613 32.5421 165.038 29.9676 166.531C27.3931 168.025 23.2076 168.025 20.6171 166.531C18.0265 165.038 18.0158 162.613 20.5903 161.12C23.1594 159.627 27.3449 159.627 29.9355 161.12Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M37.2687 88.4533C39.8593 89.9466 39.8754 92.3712 37.3009 93.8645C34.7264 95.3578 30.5409 95.3578 27.9503 93.8645C25.3598 92.3712 25.349 89.9466 27.9235 88.4533C30.4927 86.96 34.6782 86.96 37.2687 88.4533Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M126.39 142.083C129.698 143.994 129.719 147.087 126.433 148.998C123.146 150.909 117.799 150.909 114.492 148.998C111.184 147.087 111.168 143.994 114.454 142.083C117.735 140.172 123.077 140.172 126.39 142.083Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M125.314 142.854C127.947 144.374 127.963 146.841 125.346 148.361C122.729 149.881 118.468 149.881 115.835 148.361C113.202 146.841 113.186 144.374 115.803 142.854C118.426 141.334 122.681 141.334 125.314 142.854Z" fill="#EDEDED"/>
-<path d="M126.374 142.811C126.374 142.838 126.368 142.87 126.368 142.897C126.368 142.923 126.363 142.95 126.358 142.972C126.352 142.998 126.347 143.03 126.342 143.057C126.336 143.084 126.331 143.111 126.326 143.132C126.32 143.159 126.315 143.191 126.304 143.218C126.299 143.245 126.288 143.271 126.283 143.293C126.272 143.319 126.267 143.346 126.256 143.378C126.245 143.405 126.24 143.427 126.229 143.453C126.219 143.48 126.208 143.512 126.192 143.539C126.181 143.566 126.17 143.587 126.16 143.614C126.144 143.641 126.133 143.673 126.117 143.699C126.106 143.721 126.09 143.748 126.079 143.769C126.058 143.801 126.037 143.839 126.015 143.871C125.999 143.892 125.988 143.914 125.972 143.935C125.946 143.972 125.919 144.01 125.892 144.047C125.881 144.063 125.871 144.08 125.855 144.096C125.806 144.154 125.758 144.213 125.705 144.272C125.689 144.288 125.678 144.304 125.662 144.315C125.619 144.358 125.576 144.401 125.528 144.443C125.507 144.465 125.485 144.481 125.464 144.502C125.437 144.529 125.41 144.551 125.378 144.577C125.351 144.599 125.325 144.62 125.298 144.642C125.266 144.663 125.239 144.69 125.207 144.711C125.18 144.733 125.148 144.754 125.121 144.775C125.089 144.797 125.057 144.823 125.025 144.845C124.993 144.866 124.966 144.888 124.934 144.909C124.902 144.931 124.864 144.952 124.827 144.973C124.784 145 124.736 145.027 124.693 145.054C124.57 145.129 124.436 145.193 124.302 145.257C124.265 145.273 124.233 145.289 124.195 145.305C124.072 145.359 123.949 145.412 123.826 145.466C123.81 145.471 123.794 145.482 123.778 145.487C123.644 145.541 123.505 145.584 123.36 145.632C123.264 145.664 123.162 145.691 123.061 145.717C122.986 145.739 122.911 145.76 122.83 145.776C122.723 145.803 122.616 145.824 122.509 145.846C122.429 145.862 122.354 145.878 122.274 145.894C122.242 145.899 122.21 145.905 122.177 145.91C122.044 145.931 121.91 145.953 121.776 145.969C121.739 145.974 121.696 145.98 121.658 145.985C121.583 145.996 121.503 145.996 121.423 146.006C121.294 146.017 121.16 146.028 121.032 146.033C120.946 146.038 120.866 146.038 120.78 146.038C120.673 146.038 120.566 146.044 120.465 146.038C120.374 146.038 120.288 146.033 120.197 146.033C120.101 146.028 119.999 146.022 119.903 146.017C119.812 146.012 119.726 146.001 119.635 145.996C119.539 145.985 119.442 145.974 119.346 145.964C119.26 145.953 119.175 145.942 119.089 145.926C118.987 145.91 118.886 145.894 118.784 145.873C118.704 145.856 118.624 145.84 118.543 145.824C118.42 145.798 118.302 145.766 118.185 145.739C118.11 145.717 118.029 145.701 117.954 145.675C117.912 145.664 117.874 145.648 117.831 145.637C117.714 145.6 117.596 145.557 117.478 145.514C117.446 145.503 117.408 145.493 117.376 145.476C117.269 145.434 117.168 145.391 117.066 145.343C117.018 145.321 116.964 145.3 116.916 145.278C116.772 145.209 116.627 145.134 116.488 145.054C115.342 144.395 114.775 143.528 114.775 142.661L114.77 145.155C114.77 146.022 115.337 146.884 116.483 147.548C116.622 147.628 116.761 147.703 116.905 147.767C116.954 147.789 117.007 147.81 117.055 147.832C117.141 147.869 117.227 147.912 117.318 147.944C117.334 147.949 117.35 147.955 117.366 147.96C117.398 147.971 117.435 147.987 117.467 147.997C117.585 148.04 117.703 148.078 117.821 148.121C117.863 148.131 117.901 148.147 117.944 148.158C117.971 148.169 117.997 148.174 118.024 148.185C118.072 148.201 118.126 148.206 118.174 148.222C118.292 148.254 118.415 148.286 118.533 148.313C118.565 148.319 118.597 148.329 118.629 148.335C118.677 148.345 118.725 148.351 118.773 148.361C118.875 148.383 118.977 148.399 119.084 148.415C119.127 148.42 119.164 148.431 119.207 148.436C119.25 148.442 119.298 148.447 119.341 148.452C119.437 148.463 119.533 148.474 119.63 148.485C119.678 148.49 119.721 148.495 119.769 148.501C119.812 148.506 119.854 148.506 119.897 148.506C119.994 148.511 120.095 148.517 120.192 148.522C120.24 148.522 120.288 148.527 120.342 148.527C120.379 148.527 120.422 148.527 120.459 148.527C120.566 148.527 120.673 148.527 120.775 148.527C120.829 148.527 120.882 148.527 120.936 148.527C120.968 148.527 121 148.522 121.027 148.522C121.161 148.517 121.289 148.506 121.417 148.495C121.471 148.49 121.524 148.49 121.573 148.485C121.599 148.485 121.621 148.479 121.648 148.474C121.685 148.468 121.728 148.463 121.765 148.458C121.899 148.442 122.033 148.42 122.167 148.399C122.199 148.394 122.231 148.388 122.263 148.383C122.279 148.377 122.295 148.377 122.311 148.377C122.375 148.367 122.434 148.351 122.499 148.34C122.606 148.319 122.713 148.297 122.82 148.27C122.895 148.254 122.97 148.228 123.05 148.212C123.152 148.185 123.253 148.158 123.35 148.126C123.371 148.121 123.392 148.115 123.414 148.11C123.532 148.072 123.649 148.03 123.767 147.987C123.783 147.981 123.799 147.971 123.815 147.965C123.944 147.917 124.067 147.864 124.185 147.805C124.222 147.789 124.254 147.773 124.292 147.757C124.425 147.692 124.559 147.623 124.682 147.553C124.704 147.537 124.731 147.526 124.752 147.51C124.773 147.5 124.795 147.484 124.816 147.468C124.854 147.446 124.886 147.425 124.923 147.403C124.955 147.382 124.987 147.361 125.014 147.339C125.046 147.318 125.078 147.291 125.111 147.27C125.143 147.248 125.169 147.227 125.196 147.205C125.228 147.184 125.255 147.157 125.287 147.136C125.314 147.114 125.341 147.093 125.367 147.071C125.394 147.045 125.426 147.023 125.453 146.997C125.464 146.986 125.475 146.975 125.485 146.964C125.496 146.954 125.507 146.943 125.512 146.938C125.56 146.895 125.603 146.852 125.646 146.809C125.662 146.793 125.673 146.782 125.689 146.766C125.742 146.708 125.79 146.649 125.838 146.59L125.844 146.584C125.855 146.568 125.865 146.558 125.876 146.542C125.903 146.504 125.929 146.467 125.956 146.429C125.972 146.408 125.983 146.386 125.999 146.365C126.02 146.333 126.042 146.295 126.063 146.263C126.069 146.253 126.074 146.247 126.079 146.237C126.085 146.22 126.095 146.21 126.101 146.194C126.117 146.167 126.133 146.135 126.144 146.108C126.154 146.081 126.165 146.06 126.176 146.033C126.186 146.006 126.202 145.974 126.213 145.947C126.218 145.937 126.224 145.921 126.229 145.91C126.235 145.899 126.235 145.889 126.24 145.873C126.251 145.846 126.261 145.819 126.267 145.787C126.272 145.76 126.283 145.733 126.288 145.712C126.293 145.685 126.304 145.653 126.31 145.626C126.315 145.61 126.32 145.594 126.32 145.578C126.32 145.567 126.326 145.557 126.326 145.546C126.331 145.519 126.336 145.487 126.342 145.46C126.347 145.434 126.347 145.407 126.352 145.385C126.358 145.359 126.358 145.327 126.358 145.3C126.358 145.284 126.363 145.268 126.363 145.246C126.363 145.23 126.363 145.214 126.363 145.193L126.368 142.699C126.374 142.741 126.374 142.779 126.374 142.811Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M124.661 140.317C126.936 141.628 126.946 143.758 124.688 145.07C122.429 146.381 118.757 146.381 116.482 145.07C114.208 143.758 114.197 141.628 116.456 140.317C118.72 139.005 122.392 139.005 124.661 140.317Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.129 144.176C122.167 144.224 122.22 144.267 122.279 144.304C122.349 144.342 122.418 144.374 122.499 144.395L122.745 144.422C122.83 144.427 122.916 144.417 122.991 144.395C123.077 144.374 123.152 144.342 123.21 144.304C123.28 144.267 123.323 144.224 123.366 144.176C123.398 144.128 123.419 144.079 123.414 144.031L123.366 143.892C123.339 143.844 123.285 143.801 123.221 143.764C123.157 143.726 123.087 143.699 122.996 143.678C122.916 143.657 122.83 143.646 122.756 143.651C122.67 143.646 122.584 143.657 122.504 143.678C122.413 143.699 122.343 143.726 122.279 143.764C122.215 143.801 122.167 143.844 122.129 143.892C122.097 143.94 122.076 143.988 122.081 144.037C122.081 144.079 122.097 144.128 122.129 144.176Z" fill="#DA3635"/>
-<path d="M120.877 142.613C120.77 142.543 120.668 142.479 120.566 142.415C120.465 142.351 120.352 142.287 120.24 142.217L118.094 140.97L117.451 141.339L119.598 142.586C119.71 142.65 119.828 142.715 119.935 142.774C120.047 142.832 120.16 142.891 120.277 142.956C120.395 143.009 120.513 143.073 120.636 143.132C120.759 143.191 120.904 143.255 121.043 143.32L121.503 143.052C121.391 142.966 121.278 142.886 121.177 142.816C121.075 142.747 120.979 142.677 120.877 142.613Z" fill="#DA3635"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" fill="white"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" fill="white"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" fill="white"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" fill="white"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" fill="white"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" fill="white"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" fill="white"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" fill="white"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9292 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" fill="white"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9293 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9292 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" fill="white"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9293 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" fill="white"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" fill="white"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" fill="white"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" fill="white"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.1372 76.0759C23.7172 76.2692 23.9238 77.0892 23.8305 77.6159C23.7638 77.9559 23.6238 78.1759 23.6038 78.5492C23.5905 78.8559 23.7172 79.3825 23.4572 79.5625C23.1972 79.7425 22.6038 79.4626 22.4438 79.2559C22.1372 78.8359 22.3171 78.6159 22.3305 78.2092C22.3438 77.7625 21.6372 77.6292 21.8172 77.1626C21.9839 76.7692 22.7039 75.8692 23.1372 76.0759Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" fill="white"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" fill="white"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" fill="white"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" fill="white"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.8972 87.7159C23.6238 88.0692 23.8171 89.5825 23.8304 90.1892C23.8438 91.1692 23.8172 92.4359 24.9705 92.3559C25.0038 91.2492 24.9572 90.1559 24.9038 89.0625C24.8905 88.7092 25.0838 87.8226 24.9171 87.5492C24.6704 87.1959 23.8972 87.1026 23.8972 87.7159Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" fill="white"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" fill="white"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M36.3905 64.5826C37.3705 64.5826 38.4505 64.4359 39.1105 65.3026C39.5438 65.8826 40.8438 67.7492 40.7504 68.4359C40.6571 69.1626 39.6105 69.4159 39.4771 70.1692C39.3505 70.8959 39.4905 72.0359 39.5438 72.7759C39.6705 74.6759 40.1571 76.4892 40.1838 78.4159C40.1971 79.4426 40.6638 80.4426 40.6171 81.4359C40.5838 82.1292 40.0038 83.4759 39.3172 83.7492C38.8038 83.9426 38.4971 83.6026 38.0438 83.5226C37.5438 83.4559 37.3171 83.6359 36.8838 83.8426C35.6105 84.4826 34.5705 84.6492 33.3638 83.7759C32.9438 83.4892 32.6238 83.1959 32.1771 82.9559C31.5638 82.6492 31.3572 82.7626 31.3238 81.9092C31.2572 81.0892 31.3705 80.2692 31.3238 79.4626C31.2572 78.3559 31.7238 77.1826 31.9371 76.0892C32.1638 74.8026 32.0038 73.9826 31.7571 72.7292C31.6904 72.4092 31.8372 71.4892 31.5772 71.2692C31.2372 70.9626 30.4838 71.5426 30.1171 71.2026C29.4905 70.6692 30.9704 68.2759 31.4371 67.7826C32.2104 66.9292 33.1705 65.9692 34.0571 65.2559C34.1571 65.1892 34.4905 64.9026 34.6171 64.8892C35.0838 64.8226 34.7771 64.9892 35.1171 65.1159C35.6971 65.4226 36.0505 65.4359 36.3905 64.5826Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" fill="white"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" fill="white"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" fill="white"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" fill="#DA3635"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" fill="white"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" fill="white"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.3972 74.9359C22.9305 75.1625 23.0904 75.6625 22.7571 75.9159C22.4038 76.1892 21.9705 75.9292 21.5705 76.4159C20.8172 77.3159 21.4705 78.1492 22.4705 78.3625C22.4705 78.3625 23.5638 77.6225 23.2905 76.2092C23.3838 75.8025 23.5572 75.3025 23.3972 74.9359Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M36.0503 38.1515L32.3249 35.9867C31.9235 35.7521 31.6665 35.2605 31.5447 34.5028L35.2701 36.6677C35.3919 37.4254 35.6535 37.917 36.0503 38.1515Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.8663 47.2034L22.1409 45.0385C22.2175 45.0836 22.2942 45.1242 22.3754 45.1648C23.3857 45.67 24.5719 45.8098 25.9339 45.5752C27.2915 45.3452 28.7528 44.7769 30.3133 43.8749C31.9731 42.9187 33.4344 41.8679 34.7062 40.7178C35.9736 39.5677 37.0741 38.4086 37.9942 37.2359C38.1565 37.0284 38.3054 36.8886 38.4362 36.812C38.576 36.7308 38.6933 36.7218 38.788 36.7759L42.5133 38.9408C42.4186 38.8866 42.3014 38.8957 42.1616 38.9768C42.0308 39.0535 41.882 39.1933 41.7196 39.4008C40.795 40.5734 39.699 41.7326 38.4271 42.8827C37.1553 44.0282 35.694 45.0836 34.0342 46.0398C32.4737 46.9418 31.0169 47.5056 29.6548 47.7401C28.2973 47.9747 27.1111 47.8348 26.0963 47.3297C26.0196 47.2891 25.943 47.2485 25.8663 47.2034Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.4212 35.6663L33.6958 33.5014C33.7184 33.515 33.7409 33.524 33.7635 33.533C33.9349 33.6052 34.1288 33.6097 34.3543 33.542C34.5753 33.4744 34.8143 33.3706 35.0669 33.2263C35.6036 32.9196 36.1088 32.4506 36.5868 31.8236C37.0649 31.1967 37.4888 30.4571 37.8497 29.6046C38.2105 28.7567 38.4991 27.8186 38.7111 26.7993C38.9231 25.78 39.0268 24.7246 39.0223 23.6377C39.0178 21.9103 38.7697 20.5301 38.2826 19.5108C37.8587 18.6223 37.2949 17.9729 36.6003 17.567L40.3257 19.7318C41.0248 20.1378 41.5841 20.7827 42.008 21.6757C42.4996 22.6995 42.7432 24.0751 42.7477 25.8025C42.7522 26.894 42.6485 27.9494 42.4365 28.9642C42.2246 29.9835 41.9404 30.9171 41.5751 31.7695C41.2098 32.6174 40.7903 33.3571 40.3122 33.9885C39.8341 34.6154 39.329 35.0845 38.7923 35.3912C38.5442 35.5355 38.3052 35.6438 38.0797 35.7069C37.8542 35.7746 37.6603 35.7701 37.4889 35.6979C37.4663 35.6889 37.4438 35.6798 37.4212 35.6663Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.9434 39.7523L26.218 37.5874C26.5698 37.7904 27.0524 37.7182 27.6658 37.3619C28.0041 37.168 28.3469 36.9064 28.6896 36.5817C29.0324 36.2614 29.3616 35.851 29.6864 35.3504C30.0066 34.8498 30.2997 34.2544 30.5658 33.5598C30.8319 32.8698 31.0529 32.0625 31.2379 31.1379L34.9633 33.3028C34.7784 34.2274 34.5574 35.0347 34.2913 35.7247C34.0252 36.4193 33.732 37.0146 33.4118 37.5153C33.0916 38.0159 32.7578 38.4263 32.4151 38.7466C32.0723 39.0713 31.7295 39.3284 31.3912 39.5268C30.7824 39.8831 30.2997 39.9553 29.9434 39.7523Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.9633 33.3028L31.2424 31.1424L32.4692 24.8777L36.1947 27.0426L34.9633 33.3028Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M28.144 42.454L24.4186 40.2891C24.342 40.244 24.2653 40.1899 24.1931 40.1313C23.8684 39.8607 23.6294 39.4593 23.467 38.9226C23.3046 38.3858 23.228 37.7544 23.2235 37.0283C23.219 35.9639 23.3948 34.7867 23.7466 33.4968C24.0984 32.2069 24.6216 30.926 25.3161 29.6541C26.0107 28.3823 26.8812 27.1645 27.9185 26.0144C28.9559 24.8598 30.1601 23.8901 31.5222 23.1054C32.2528 22.6814 32.8933 22.3792 33.448 22.1943C33.9983 22.0094 34.5214 21.8966 35.013 21.8651L38.7385 24.0299C38.2468 24.0615 37.7237 24.1743 37.1734 24.3592C36.6232 24.5441 35.9782 24.8508 35.2476 25.2702C33.8855 26.055 32.6813 27.0247 31.6439 28.1793C30.6066 29.3294 29.7361 30.5426 29.0416 31.819C28.347 33.0954 27.8238 34.3763 27.472 35.6617C27.1202 36.9516 26.9489 38.1288 26.9489 39.1932C26.9489 39.9193 27.03 40.5507 27.1924 41.0875C27.3548 41.6242 27.5938 42.0256 27.9185 42.2962C27.9907 42.3548 28.0674 42.4089 28.144 42.454Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M24.2652 49.5846L20.5398 47.4197C19.4663 46.7973 18.6139 45.7961 17.978 44.425C17.2925 42.9366 16.9452 41.0063 16.9361 38.6249C16.9316 37.2583 17.0804 35.8556 17.3736 34.4169C17.6668 32.9781 18.0907 31.5529 18.632 30.1412C19.1732 28.7295 19.8271 27.3494 20.5849 26.0009C21.3426 24.6523 22.195 23.385 23.1286 22.1988C24.0667 21.0126 25.0725 19.9257 26.1505 18.9469C27.2284 17.9682 28.3605 17.1339 29.5376 16.4528C30.5389 15.8755 31.5221 15.4335 32.4827 15.1313C33.4434 14.8292 34.35 14.6713 35.2114 14.6668C36.0683 14.6623 36.8576 14.8111 37.5792 15.1178C37.7642 15.1945 37.9401 15.2847 38.1115 15.3839L41.8368 17.5488C41.6654 17.4496 41.4896 17.3594 41.3047 17.2827C40.583 16.9805 39.7938 16.8317 38.9368 16.8317C38.0799 16.8362 37.1688 16.994 36.2081 17.2962C35.2475 17.5984 34.2643 18.0404 33.263 18.6177C32.0859 19.2987 30.9538 20.1286 29.8759 21.1118C28.7979 22.0905 27.7876 23.1775 26.854 24.3637C25.9159 25.5499 25.068 26.8172 24.3103 28.1658C23.5481 29.5143 22.8986 30.8944 22.3574 32.3061C21.8162 33.7178 21.3967 35.143 21.099 36.5818C20.8014 38.0205 20.657 39.4232 20.6615 40.7898C20.6661 43.1711 21.0134 45.106 21.7034 46.5899C22.3394 47.9655 23.1963 48.9622 24.2652 49.5846Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.7384 24.0255L37.2365 31.6883C37.0336 32.7482 36.9298 33.5871 36.9343 34.196C36.9343 34.647 36.984 34.9943 37.0832 35.2288C37.1824 35.4678 37.3177 35.6212 37.4846 35.6933C37.656 35.7655 37.8499 35.77 38.0754 35.7024C38.2964 35.6347 38.5355 35.531 38.788 35.3867C39.3248 35.08 39.8299 34.6109 40.308 33.984C40.7861 33.3571 41.21 32.6174 41.5708 31.765C41.9316 30.9171 42.2203 29.9789 42.4323 28.9596C42.6442 27.9403 42.7479 26.885 42.7434 25.798C42.7389 24.0706 42.4909 22.6905 42.0038 21.6712C41.5167 20.6474 40.8447 19.9438 39.9967 19.5649C39.1488 19.1816 38.1521 19.1049 36.9975 19.3349C35.8474 19.5649 34.6026 20.0701 33.272 20.8368C31.8108 21.6802 30.4442 22.7897 29.1678 24.1653C27.8914 25.5409 26.7819 27.0699 25.8393 28.7432C24.8921 30.4209 24.148 32.1889 23.6068 34.0426C23.0655 35.8963 22.7994 37.7365 22.8039 39.5541C22.8084 41.6829 23.1061 43.3877 23.6969 44.6596C24.2833 45.9315 25.0861 46.8245 26.0964 47.3296C27.1067 47.8348 28.2929 47.9746 29.6549 47.74C31.0125 47.51 32.4738 46.9417 34.0343 46.0397C35.694 45.0835 37.1553 44.0327 38.4272 42.8826C39.6946 41.7325 40.7951 40.5734 41.7197 39.4007C41.882 39.1932 42.0309 39.0534 42.1617 38.9768C42.3917 38.846 42.5586 38.9001 42.6713 39.1346L43.0817 40.1404C41.9181 41.7144 40.5921 43.1893 39.1037 44.5604C37.6154 45.9315 35.9286 47.1672 34.0433 48.2542C32.1536 49.3457 30.3991 50.0132 28.7754 50.2612C27.1472 50.5093 25.7355 50.3289 24.5358 49.7245C23.3361 49.1157 22.3935 48.0693 21.7079 46.5854C21.0224 45.0971 20.6751 43.1667 20.6661 40.7853C20.6616 39.4188 20.8104 38.0161 21.1036 36.5773C21.3968 35.1386 21.8207 33.7134 22.3619 32.3017C22.9032 30.89 23.5571 29.5099 24.3148 28.1613C25.0725 26.8128 25.925 25.5454 26.8586 24.3593C27.7967 23.1731 28.8025 22.0861 29.8804 21.1074C30.9584 20.1287 32.0904 19.2943 33.2675 18.6133C34.2688 18.036 35.252 17.594 36.2127 17.2918C37.1734 16.9896 38.0799 16.8318 38.9414 16.8272C39.7983 16.8227 40.5876 16.9716 41.3092 17.2783C42.0309 17.585 42.6533 18.054 43.1719 18.69C43.6906 19.3259 44.101 20.1287 44.3942 21.1119C44.6873 22.0906 44.8362 23.2497 44.8362 24.5938C44.8407 25.9468 44.6783 27.2954 44.3491 28.6304C44.0198 29.9699 43.5643 31.2283 42.9825 32.4009C42.4007 33.5781 41.7152 34.6334 40.9259 35.5625C40.1366 36.4962 39.2841 37.2268 38.3686 37.7545C37.5162 38.2461 36.8261 38.413 36.2894 38.2461C35.7527 38.0837 35.4144 37.556 35.2701 36.6585C34.6387 38.0386 33.9531 39.1617 33.2134 40.0276C32.4737 40.8936 31.6755 41.5746 30.8276 42.0617C30.1736 42.4406 29.6053 42.639 29.1272 42.6616C28.6446 42.6796 28.2432 42.5578 27.923 42.2827C27.5982 42.0121 27.3592 41.6107 27.1968 41.074C27.0345 40.5373 26.9578 39.9059 26.9533 39.1797C26.9488 38.1153 27.1247 36.9382 27.4765 35.6482C27.8283 34.3583 28.3514 33.0774 29.046 31.8056C29.7406 30.5337 30.6111 29.3159 31.6484 28.1658C32.6857 27.0112 33.89 26.0416 35.252 25.2568C35.9827 24.8328 36.6231 24.5306 37.1779 24.3457C37.7281 24.1698 38.2468 24.0616 38.7384 24.0255ZM34.9634 33.3029L36.1902 27.0428C35.7662 27.1736 35.3016 27.3856 34.801 27.6742C33.9847 28.1478 33.2315 28.7792 32.5504 29.5685C31.8694 30.3533 31.2876 31.2102 30.796 32.1348C30.3089 33.0549 29.9255 34.011 29.6504 34.9988C29.3753 35.9865 29.24 36.9111 29.24 37.777C29.2445 38.6791 29.4249 39.297 29.7857 39.6352C30.1465 39.9735 30.6832 39.9374 31.3913 39.527C31.7296 39.3331 32.0724 39.0715 32.4152 38.7467C32.7579 38.4265 33.0872 38.0161 33.4119 37.5155C33.7321 37.0148 34.0253 36.4195 34.2914 35.7249C34.5575 35.0349 34.783 34.2275 34.9634 33.3029Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<line x1="28.5" y1="78.5" x2="28.5" y2="49.5" stroke="#DA3635" stroke-linecap="round"/>
-</g>
-<defs>
-<clipPath id="clip0_5720_44788">
-<rect width="200" height="200" fill="white"/>
-</clipPath>
-</defs>
-</svg>
+  <path
+    d="M22 102.5H48.5L99 106.5H180.75C183.097 106.5 185 104.597 185 102.25C185 99.9028 183.097 98 180.75 98H176.5C175.119 98 174 96.8807 174 95.5C174 94.1193 175.119 93 176.5 93H184.75C190.687 93 195.5 88.1871 195.5 82.25V78.5C195.5 74.3579 192.142 71 188 71C183.858 71 180.5 67.6421 180.5 63.5V61C180.5 57.9624 178.038 55.5 175 55.5C171.962 55.5 169.5 53.0376 169.5 50V46.25C169.5 41.1414 173.641 37 178.75 37H186.25C189.426 37 192 34.4256 192 31.25C192 28.0744 189.426 25.5 186.25 25.5H170.5C167.186 25.5 164.5 22.8137 164.5 19.5C164.5 16.1863 161.814 13.5 158.5 13.5H150.312C147.137 13.5 144.562 10.9256 144.562 7.75C144.562 4.57436 141.988 2 138.812 2H90.5C87.3244 2 84.75 4.57436 84.75 7.75C84.75 10.9256 82.1756 13.5 79 13.5H67.75C65.9551 13.5 64.5 12.0449 64.5 10.25C64.5 8.45507 63.0449 7 61.25 7H24.25C22.4551 7 21 8.45507 21 10.25C21 12.0449 19.5449 13.5 17.75 13.5H11C7.68629 13.5 5 16.1863 5 19.5C5 22.8137 7.68629 25.5 11 25.5H16C20.1421 25.5 23.5 28.8579 23.5 33V35C23.5 38.0376 21.0376 40.5 18 40.5C14.9624 40.5 12.5 42.9624 12.5 46V47C12.5 50.5899 15.4101 53.5 19 53.5H25C29.1421 53.5 32.5 56.8579 32.5 61C32.5 65.1421 29.1421 68.5 25 68.5H18.75C11.1561 68.5 5 74.6561 5 82.25V85.5C5 94.8888 12.6112 102.5 22 102.5Z"
+    fill="#FFDDDD" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M149.554 44.806C149.539 44.806 149.525 44.806 149.51 44.806C149.496 44.806 149.481 44.806 149.467 44.806H135.821C135.799 44.8062 135.776 44.8063 135.754 44.8063C135.732 44.8063 135.71 44.8062 135.687 44.806H135.403V44.7973C131.865 44.6148 129.053 41.6883 129.053 38.1048C129.053 34.4036 132.053 31.4033 135.754 31.4033C135.873 31.4033 135.99 31.4063 136.107 31.4124L136.107 31.403C136.107 24.0007 142.108 18 149.51 18C154.631 18 159.081 20.8714 161.337 25.0918C161.624 25.0668 161.914 25.054 162.208 25.054C167.662 25.054 172.084 29.4756 172.084 34.9299C172.084 35.171 172.075 35.4101 172.058 35.6469C174.437 35.8148 176.316 37.7984 176.316 40.2206C176.316 42.753 174.263 44.8059 171.73 44.8059C171.613 44.8059 171.496 44.8014 171.38 44.7927V44.806H149.554Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M24 46.9825C23.8347 46.9941 23.668 47 23.5 47C19.3579 47 16 43.4183 16 39C16 34.5817 19.3579 31 23.5 31C25.2006 31 26.769 31.6037 28.0271 32.6212C28.4631 25.575 34.1046 20 41 20C42.7774 20 44.4714 20.3704 46.0145 21.0409C48.7381 17.9455 52.6804 16 57.0658 16C65.2847 16 71.9474 22.8335 71.9474 31.2632C71.9474 32.6076 71.7779 33.9114 71.4596 35.1534C73.542 36.0488 75.0002 38.1187 75.0002 40.5292C75.0002 43.7595 72.3815 46.3782 69.1512 46.3782C69.1006 46.3782 69.0502 46.3775 69 46.3763V47H41H24V46.9825Z"
+    fill="white" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+    fill="#A0C7F0" />
+  <path
+    d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+    fill="#4277AF" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+    fill="url(#paint0_linear_14133_113818)" />
+  <rect width="96.8723" height="64.765" rx="3" transform="matrix(0.866025 0.5 -0.866025 0.5 82.9139 86.6904)"
+    fill="#769FCB" />
+  <path
+    d="M35.9131 112.14C34.6549 111.416 34.0345 110.46 34.0345 109.512L34 115.036C34 115.984 34.6205 116.94 35.8786 117.664L108.939 159.848L108.973 154.324L35.9131 112.14Z"
+    fill="#4277AF" />
+  <path
+    d="M158.681 129.162C158.681 129.377 158.638 129.601 158.569 129.817C158.56 129.842 158.56 129.86 158.552 129.885C158.483 130.084 158.379 130.282 158.25 130.48C158.224 130.515 158.207 130.549 158.181 130.584C158.043 130.773 157.871 130.963 157.673 131.144C157.544 131.264 157.38 131.368 157.225 131.48C157.095 131.575 156.983 131.669 156.828 131.756L117.989 154.325C117.609 154.549 117.179 154.722 116.739 154.877C116.584 154.928 116.42 154.98 116.256 155.023C116.05 155.083 115.834 155.135 115.619 155.178C115.36 155.23 115.11 155.282 114.843 155.308C114.783 155.316 114.714 155.325 114.654 155.333C114.3 155.368 113.938 155.394 113.585 155.394C113.525 155.394 113.473 155.394 113.413 155.394C113.059 155.394 112.706 155.368 112.353 155.333C112.301 155.325 112.249 155.325 112.198 155.316C111.853 155.273 111.508 155.213 111.172 155.144C111.112 155.127 111.051 155.118 110.991 155.101C110.689 155.023 110.388 154.937 110.103 154.834C110.052 154.816 110 154.799 109.948 154.782C109.604 154.653 109.276 154.497 108.975 154.325L108.94 159.849C109.224 160.013 109.535 160.159 109.854 160.289C109.871 160.297 109.888 160.297 109.905 160.306C109.957 160.323 110.009 160.34 110.06 160.357C110.241 160.426 110.431 160.495 110.621 160.547C110.724 160.582 110.836 160.599 110.939 160.625C111 160.642 111.06 160.659 111.12 160.668C111.172 160.676 111.224 160.694 111.284 160.711C111.491 160.754 111.706 160.788 111.913 160.823C111.991 160.831 112.068 160.84 112.146 160.849C112.198 160.857 112.249 160.857 112.301 160.866C112.379 160.875 112.456 160.883 112.534 160.892C112.74 160.909 112.956 160.918 113.163 160.926C113.232 160.926 113.301 160.926 113.361 160.926C113.421 160.926 113.473 160.926 113.533 160.926C113.628 160.926 113.723 160.926 113.818 160.926C114.059 160.918 114.292 160.9 114.524 160.883C114.55 160.883 114.576 160.875 114.602 160.875C114.662 160.866 114.731 160.857 114.791 160.849C114.972 160.823 115.153 160.806 115.334 160.771C115.412 160.754 115.489 160.728 115.567 160.711C115.782 160.668 115.998 160.607 116.205 160.556C116.317 160.521 116.437 160.504 116.541 160.469C116.593 160.452 116.636 160.426 116.679 160.409C117.118 160.254 117.549 160.082 117.928 159.858L156.768 137.288C156.794 137.271 156.82 137.254 156.846 137.245C156.966 137.176 157.052 137.09 157.164 137.012C157.319 136.9 157.483 136.797 157.612 136.676C157.621 136.668 157.647 136.659 157.656 136.642C157.802 136.504 157.94 136.366 158.052 136.219C158.078 136.185 158.095 136.151 158.121 136.116C158.147 136.082 158.164 136.047 158.19 136.013C158.233 135.952 158.276 135.901 158.311 135.84C158.379 135.72 158.431 135.599 158.483 135.478C158.491 135.461 158.491 135.444 158.5 135.427C158.509 135.401 158.509 135.384 158.517 135.358C158.543 135.28 158.569 135.203 158.586 135.125C158.612 135.004 158.621 134.884 158.629 134.763C158.629 134.746 158.629 134.729 158.629 134.711L158.681 129.162Z"
+    fill="#A0C7F1" />
+  <path
+    d="M156.793 126.532C159.292 127.971 159.301 130.307 156.819 131.746L117.979 154.315C115.506 155.755 111.473 155.755 108.974 154.315L35.9136 112.141C33.4145 110.702 33.4145 108.358 35.8877 106.927L74.7274 84.3489C77.2093 82.9097 81.2337 82.9097 83.7328 84.3489L156.793 126.532Z"
+    fill="#EDF7FF" />
+  <path d="M77.4528 83.4276L96.3599 120.397L158.553 129.885V128.412L96.8252 119.337L78.0043 83.2725L77.4528 83.4276Z"
+    fill="#A0C7F1" />
+  <path
+    d="M40.7608 114.21C40.6573 114.167 40.5626 114.124 40.4678 114.081C40.373 114.038 40.2782 114.003 40.1834 113.952C40.08 113.9 39.9938 113.84 39.8904 113.788C39.8214 113.745 39.7439 113.71 39.6749 113.667C39.5801 113.607 39.494 113.538 39.4078 113.469C39.3561 113.426 39.2958 113.391 39.2441 113.348C39.1579 113.279 39.0889 113.202 39.02 113.124C38.9769 113.081 38.9338 113.047 38.8907 113.004C38.839 112.943 38.7959 112.874 38.7442 112.814C38.7011 112.754 38.6494 112.702 38.6064 112.642C38.5633 112.581 38.5374 112.521 38.5116 112.452C38.4771 112.392 38.434 112.323 38.4081 112.262C38.3047 112.004 38.2444 111.745 38.2444 111.478L38.2272 116.899C38.2272 117.097 38.2703 117.304 38.3306 117.502C38.3478 117.562 38.3651 117.623 38.3909 117.683C38.4081 117.717 38.434 117.761 38.4512 117.795C38.4943 117.881 38.5374 117.976 38.5891 118.062C38.615 118.097 38.6408 118.131 38.6667 118.157C38.727 118.243 38.7959 118.338 38.8735 118.424C38.9252 118.484 38.9855 118.536 39.0458 118.588C39.1062 118.648 39.1579 118.708 39.2268 118.769C39.2871 118.82 39.3647 118.872 39.4336 118.924C39.5112 118.976 39.5801 119.036 39.6577 119.088C39.7266 119.131 39.8042 119.165 39.8731 119.208C39.9679 119.269 40.0627 119.32 40.1661 119.372C40.2523 119.415 40.3557 119.458 40.4505 119.501C40.5453 119.544 40.6401 119.587 40.7435 119.631L120.672 151.025L120.689 145.604L40.7608 114.21Z"
+    fill="#4277AF" />
+  <path
+    d="M157.031 119.743C157.023 119.777 157.014 119.812 157.006 119.838C156.971 119.95 156.928 120.07 156.876 120.182C156.859 120.217 156.85 120.243 156.833 120.277C156.756 120.415 156.669 120.544 156.566 120.682C156.532 120.725 156.489 120.768 156.445 120.811C156.351 120.923 156.247 121.035 156.127 121.139L128.559 144.751C128.352 144.924 128.119 145.087 127.869 145.225C127.809 145.26 127.74 145.294 127.68 145.329C127.49 145.432 127.292 145.518 127.085 145.604C126.999 145.639 126.913 145.673 126.827 145.699C126.663 145.759 126.499 145.803 126.327 145.846C126.146 145.897 125.956 145.949 125.767 145.983C125.534 146.027 125.301 146.07 125.06 146.104C125.008 146.113 124.957 146.121 124.905 146.13C124.586 146.164 124.267 146.182 123.948 146.182C123.897 146.182 123.845 146.182 123.802 146.182C123.483 146.182 123.164 146.164 122.854 146.13C122.811 146.121 122.768 146.121 122.716 146.113C122.406 146.078 122.096 146.018 121.794 145.949C121.734 145.932 121.682 145.923 121.622 145.906C121.303 145.828 120.992 145.734 120.699 145.613L120.682 151.033C120.906 151.12 121.13 151.197 121.363 151.266C121.441 151.292 121.527 151.301 121.604 151.326C121.665 151.344 121.716 151.352 121.777 151.37C121.837 151.387 121.897 151.404 121.966 151.413C122.147 151.447 122.337 151.482 122.526 151.507C122.587 151.516 122.638 151.516 122.699 151.525C122.742 151.533 122.785 151.533 122.837 151.542C122.914 151.55 122.992 151.559 123.078 151.568C123.259 151.585 123.449 151.594 123.629 151.594C123.681 151.594 123.733 151.594 123.785 151.594C123.836 151.594 123.888 151.594 123.931 151.594C124.026 151.594 124.112 151.594 124.207 151.594C124.414 151.585 124.629 151.576 124.836 151.55C124.853 151.55 124.87 151.542 124.896 151.542C124.948 151.533 125 151.525 125.051 151.516C125.224 151.499 125.396 151.473 125.568 151.447C125.637 151.438 125.689 151.413 125.758 151.404C125.948 151.361 126.137 151.318 126.318 151.266C126.422 151.24 126.525 151.223 126.628 151.189C126.697 151.171 126.758 151.137 126.818 151.111C126.904 151.077 126.99 151.051 127.077 151.016C127.283 150.93 127.482 150.844 127.671 150.74C127.731 150.706 127.8 150.68 127.861 150.637C127.887 150.62 127.912 150.611 127.938 150.594C128.162 150.465 128.361 150.318 128.55 150.154L156.118 126.542C156.152 126.508 156.187 126.482 156.221 126.447C156.308 126.37 156.368 126.292 156.437 126.215C156.471 126.172 156.523 126.128 156.557 126.085C156.566 126.077 156.575 126.068 156.583 126.06C156.67 125.947 156.747 125.835 156.807 125.723C156.816 125.706 156.816 125.698 156.825 125.68C156.842 125.646 156.85 125.62 156.868 125.586C156.894 125.525 156.928 125.465 156.954 125.405C156.971 125.353 156.98 125.301 156.997 125.249C157.006 125.215 157.014 125.189 157.023 125.155C157.031 125.137 157.04 125.112 157.04 125.094C157.066 124.982 157.075 124.879 157.075 124.767C157.075 124.75 157.075 124.732 157.075 124.715L157.092 119.295C157.083 119.45 157.066 119.596 157.031 119.743Z"
+    fill="#A0C7F1" />
+  <path
+    d="M154.592 116.572C157.185 117.589 157.866 119.631 156.117 121.131L128.549 144.743C126.791 146.242 123.275 146.63 120.69 145.613L40.7612 114.211C38.1673 113.194 37.4778 111.16 39.2358 109.652L66.8037 86.0395C68.553 84.5401 72.0776 84.1523 74.6629 85.1692L154.592 116.572Z"
+    fill="#EDF7FF" />
+  <path
+    d="M66.8054 86.0481L99.6645 113.452L156.834 120.269L157.092 119.304L99.6645 112.116L67.3656 85.6431L66.8054 86.0481Z"
+    fill="#A0C7F1" />
+  <path
+    d="M67.8947 51.5912C67.8947 51.5912 67.8081 47.5698 74.1983 49.9543C80.5807 52.3388 137.683 86.7688 137.683 86.7688C137.683 86.7688 135.173 96.417 134.37 96.3934C133.575 96.3698 93.0463 98.6914 93.0463 98.6914L67.8947 51.5912Z"
+    fill="#823332" />
+  <path
+    d="M75.2245 49.294C75.1931 49.2783 75.1616 49.2547 75.1301 49.2389C75.075 49.2075 75.0121 49.176 74.957 49.1524C74.894 49.1209 74.8389 49.0973 74.776 49.0737C74.7681 49.0737 74.7602 49.0658 74.7524 49.0658C74.7445 49.0658 74.7366 49.0579 74.7287 49.0579C74.6815 49.0422 74.6422 49.0265 74.595 49.0107C74.532 48.9871 74.469 48.9714 74.4061 48.9556C74.3589 48.9399 74.3117 48.932 74.2723 48.9242C74.2644 48.9242 74.2566 48.9163 74.2408 48.9163C74.233 48.9163 74.2172 48.9084 74.2093 48.9084C74.1385 48.8927 74.0756 48.8848 74.0047 48.8769C73.926 48.8691 73.8552 48.8612 73.7765 48.8533H73.7686C73.7608 48.8533 73.7529 48.8533 73.7529 48.8533C73.6821 48.8533 73.6034 48.8455 73.5326 48.8455C73.446 48.8455 73.3673 48.8533 73.2807 48.8612L69.3223 49.2862C69.4797 49.2704 69.6292 49.2626 69.7866 49.2783C69.7944 49.2783 69.8023 49.2783 69.8102 49.2783C69.9676 49.2862 70.125 49.3098 70.2824 49.3413C70.2902 49.3413 70.306 49.3491 70.3138 49.3491C70.4634 49.3806 70.6208 49.4278 70.7703 49.4908C70.7782 49.4908 70.786 49.4986 70.7939 49.4986C70.9513 49.5616 71.1166 49.6403 71.274 49.7269L133.736 85.7858L137.694 85.3609L75.2245 49.294Z"
+    fill="#FF5D5C" />
+  <path
+    d="M140.22 90.1994C140.22 90.1916 140.22 90.1916 140.22 90.1837V90.1758C140.22 90.0735 140.212 89.9633 140.205 89.861C140.197 89.7273 140.181 89.6013 140.165 89.4676C140.157 89.3967 140.142 89.3338 140.126 89.2629C140.118 89.2157 140.11 89.1685 140.102 89.1213C140.094 89.0583 140.087 89.0032 140.071 88.9403C140.039 88.7908 139.984 88.6491 139.945 88.4996C139.913 88.3894 139.89 88.2792 139.85 88.169C139.772 87.9487 139.677 87.7362 139.583 87.5316C139.551 87.4608 139.528 87.3899 139.488 87.327C139.481 87.3191 139.481 87.3113 139.481 87.3034C139.394 87.146 139.307 86.9886 139.213 86.8469C139.15 86.7525 139.079 86.6581 139.016 86.5636L139.008 86.5558L139.001 86.5479C138.938 86.4692 138.875 86.3826 138.812 86.3118C138.757 86.241 138.694 86.178 138.631 86.1151C138.576 86.0521 138.513 85.997 138.458 85.9419C138.442 85.9262 138.426 85.9183 138.41 85.9026C138.402 85.8947 138.395 85.8947 138.395 85.8868C138.355 85.8554 138.324 85.816 138.284 85.7845C138.229 85.7373 138.174 85.6901 138.119 85.6507C138.064 85.6114 138.009 85.5642 137.946 85.5248C137.891 85.4855 137.836 85.4461 137.773 85.4147C137.749 85.3989 137.718 85.3832 137.694 85.3674L133.736 85.7924C133.988 85.9341 134.224 86.1072 134.436 86.3118C134.444 86.3197 134.452 86.3197 134.452 86.3275C134.672 86.5243 134.869 86.7446 135.05 86.9886L135.058 86.9965C135.239 87.2326 135.396 87.4923 135.538 87.7677C135.569 87.8306 135.593 87.9093 135.632 87.9723C135.727 88.1769 135.821 88.3894 135.9 88.6097C135.939 88.7199 135.963 88.8301 135.994 88.9403C136.049 89.1449 136.112 89.3495 136.152 89.562C136.16 89.6092 136.167 89.6564 136.175 89.7036C136.223 90.0027 136.262 90.3096 136.27 90.6165C136.27 90.6244 136.27 90.6244 136.27 90.6323C136.278 90.9628 136.262 91.2933 136.223 91.616C136.223 91.6238 136.223 91.6317 136.223 91.6475C136.183 91.978 136.112 92.3085 136.018 92.6233L124.072 132.94C124.009 133.16 123.93 133.365 123.851 133.561C123.851 133.569 123.843 133.577 123.843 133.585C123.765 133.774 123.67 133.955 123.568 134.12C123.56 134.136 123.552 134.152 123.537 134.167C123.442 134.325 123.348 134.466 123.238 134.6C123.222 134.624 123.198 134.647 123.182 134.671C123.072 134.805 122.954 134.939 122.836 135.057C122.757 135.128 122.679 135.19 122.592 135.261C122.529 135.309 122.474 135.364 122.403 135.411C122.317 135.474 122.222 135.521 122.128 135.576C122.065 135.608 122.002 135.655 121.939 135.686C121.837 135.734 121.727 135.773 121.624 135.812C121.569 135.836 121.514 135.859 121.451 135.875C121.286 135.922 121.113 135.954 120.94 135.977L124.898 135.552C125.071 135.537 125.244 135.497 125.41 135.45C125.465 135.434 125.528 135.403 125.583 135.387C125.693 135.348 125.795 135.316 125.897 135.261C125.96 135.23 126.023 135.19 126.086 135.151C126.181 135.096 126.267 135.049 126.362 134.986C126.425 134.939 126.488 134.884 126.551 134.836C126.629 134.773 126.716 134.71 126.795 134.632L126.802 134.624C126.897 134.529 126.991 134.435 127.078 134.333C127.102 134.309 127.125 134.278 127.141 134.246C127.157 134.223 127.172 134.199 127.196 134.175C127.22 134.144 127.251 134.112 127.275 134.073C127.33 133.994 127.385 133.916 127.432 133.837C127.456 133.805 127.471 133.774 127.487 133.735C127.495 133.719 127.503 133.703 127.519 133.687C127.534 133.664 127.55 133.632 127.566 133.609C127.605 133.538 127.645 133.467 127.676 133.396C127.708 133.325 127.747 133.255 127.778 133.176C127.778 133.168 127.786 133.16 127.786 133.152C127.786 133.144 127.794 133.137 127.794 133.129C127.818 133.074 127.841 133.018 127.865 132.963C127.896 132.893 127.92 132.822 127.944 132.743C127.967 132.672 127.991 132.593 128.014 132.523C128.014 132.515 128.014 132.515 128.014 132.507L139.961 92.1905C139.984 92.1196 140 92.0488 140.016 91.978C140.031 91.8993 140.055 91.8285 140.071 91.7498C140.087 91.6711 140.102 91.5924 140.118 91.5215C140.134 91.4428 140.142 91.3641 140.157 91.2854C140.157 91.2618 140.165 91.2382 140.165 91.2146C140.165 91.2067 140.165 91.1989 140.165 91.191C140.173 91.1438 140.181 91.0966 140.181 91.0494C140.189 90.9628 140.197 90.8762 140.205 90.7897C140.212 90.6952 140.212 90.6087 140.212 90.5142C140.22 90.3962 140.22 90.2939 140.22 90.1994Z"
+    fill="#FF5D5C" />
+  <path d="M110.081 117.626L59.054 89.8622L58.7786 89.2405L109.806 117.005L110.081 117.626Z" fill="#767676" />
+  <mask id="path-20-inside-1_14133_113818" fill="white">
+    <path
+      d="M130.927 87.6655C131.187 86.8628 131.43 86.0679 131.659 85.2652C131.674 85.2101 131.69 85.1629 131.706 85.1078C131.926 84.3366 132.131 83.5654 132.328 82.7942C132.359 82.6525 132.398 82.5187 132.438 82.3771C132.635 81.598 132.816 80.8267 132.981 80.0476C133.012 79.8902 133.052 79.7407 133.083 79.5833C133.256 78.7963 133.414 78.0094 133.563 77.2303C133.571 77.1988 133.571 77.1752 133.579 77.1437C133.721 76.3803 133.854 75.6249 133.972 74.8694C133.996 74.7277 134.02 74.5861 134.043 74.4444C134.161 73.7046 134.271 72.9728 134.366 72.2488C134.389 72.1071 134.405 71.9654 134.421 71.8238C134.523 71.0762 134.61 70.3443 134.696 69.6203C136.609 52.6611 134.366 38.1179 134.342 37.9683L83.2994 10.2119C83.323 10.3536 85.5659 24.9046 83.6535 41.8638C83.5748 42.5879 83.4804 43.3276 83.3781 44.0674C83.3623 44.209 83.3387 44.3507 83.323 44.4923C83.2207 45.2163 83.1184 45.9482 83.0003 46.688C82.9767 46.8296 82.9531 46.9713 82.9295 47.1129C82.8036 47.8606 82.6777 48.616 82.536 49.3873C82.5281 49.4188 82.5281 49.4424 82.5203 49.4738C82.3708 50.2529 82.2134 51.032 82.0402 51.8269C82.0087 51.9843 81.9773 52.1338 81.9379 52.2912C81.7648 53.0624 81.5838 53.8415 81.3949 54.6128C81.3634 54.7544 81.3241 54.8961 81.2847 55.0299C81.088 55.8011 80.8834 56.5723 80.663 57.3435C80.6473 57.3986 80.6315 57.4458 80.6158 57.5009C80.3876 58.2958 80.1436 59.0985 79.8839 59.8933C79.8288 60.0507 79.7816 60.216 79.7265 60.3734C79.4668 61.1603 79.1993 61.9394 78.916 62.7264C78.853 62.8996 78.79 63.0727 78.7271 63.2379C78.554 63.7101 78.3651 64.1823 78.1841 64.6545C78.1054 64.8591 78.0188 65.0637 77.9401 65.2683C77.7355 65.772 77.5152 66.2835 77.2948 66.7872C77.2318 66.921 77.1768 67.0626 77.1217 67.1964C76.8384 67.826 76.5472 68.4477 76.2481 69.0694C76.1694 69.2268 76.0907 69.3763 76.012 69.5337C75.7759 70.0059 75.532 70.4781 75.288 70.9503C75.1621 71.1942 75.0283 71.4382 74.8945 71.6743C74.7765 71.8867 74.6584 72.1071 74.5404 72.3196C74.383 72.6029 74.2177 72.8862 74.0525 73.1695C73.9266 73.3741 73.8085 73.5866 73.6826 73.7912C73.5095 74.0745 73.3285 74.3657 73.1553 74.649C73.0294 74.8458 72.9035 75.0425 72.7776 75.2392C72.5808 75.5383 72.3841 75.8295 72.1874 76.1285C72.0693 76.3095 71.9513 76.4827 71.8254 76.6637C71.7467 76.7738 71.668 76.8761 71.5893 76.9863C71.18 77.5608 70.7629 78.1195 70.3301 78.6783C70.2199 78.8278 70.1019 78.9773 69.9838 79.119C69.4881 79.7407 68.9844 80.3545 68.4493 80.9605C68.3469 81.0707 68.2446 81.1809 68.1423 81.2989C67.7252 81.7632 67.2924 82.2275 66.8517 82.6761C66.7022 82.8256 66.5605 82.9752 66.411 83.1247C65.868 83.6677 65.3092 84.2028 64.7348 84.7301C64.719 84.7458 64.6954 84.7616 64.6797 84.7773C64.0973 85.3046 63.4835 85.8082 62.8618 86.3119C62.6965 86.4457 62.5312 86.5716 62.366 86.7054C61.7207 87.2091 61.0675 87.697 60.3907 88.1692C60.3828 88.177 60.3671 88.1849 60.3592 88.1928C59.8398 88.5548 59.3047 88.9089 58.7538 89.2473L109.781 117.004C110.324 116.665 110.859 116.311 111.386 115.949C111.386 115.949 111.394 115.949 111.394 115.941C111.402 115.933 111.41 115.926 111.418 115.926C112.095 115.453 112.748 114.965 113.393 114.47C113.558 114.344 113.724 114.21 113.889 114.076C114.511 113.58 115.117 113.069 115.707 112.542C115.723 112.526 115.738 112.518 115.754 112.502L115.762 112.494C116.336 111.975 116.895 111.44 117.438 110.889C117.588 110.739 117.737 110.59 117.879 110.44C118.32 109.984 118.752 109.528 119.169 109.063C119.24 108.985 119.319 108.906 119.398 108.819C119.421 108.788 119.445 108.756 119.476 108.725C120.004 108.127 120.515 107.513 121.011 106.883C121.129 106.734 121.239 106.592 121.357 106.443C121.79 105.884 122.207 105.325 122.609 104.751C122.664 104.68 122.719 104.609 122.766 104.538C122.79 104.499 122.813 104.459 122.845 104.428C122.971 104.255 123.081 104.074 123.207 103.893C123.403 103.602 123.608 103.303 123.797 103.004C123.923 102.807 124.049 102.602 124.175 102.405C124.356 102.122 124.529 101.839 124.702 101.556C124.828 101.351 124.954 101.138 125.072 100.934C125.237 100.65 125.402 100.367 125.56 100.084C125.678 99.8714 125.796 99.6589 125.914 99.4464C125.993 99.3048 126.071 99.1631 126.15 99.0136C126.205 98.9113 126.252 98.809 126.307 98.7146C126.551 98.2502 126.795 97.7781 127.031 97.3059C127.11 97.1485 127.189 96.999 127.267 96.8416C127.566 96.2199 127.858 95.5982 128.141 94.9686C128.204 94.8348 128.259 94.6931 128.322 94.5593C128.542 94.0557 128.755 93.552 128.959 93.0484C129.046 92.8438 129.125 92.6391 129.211 92.4345C129.4 91.9623 129.581 91.4902 129.754 91.018C129.801 90.8921 129.849 90.774 129.896 90.6481C129.912 90.6009 129.927 90.5537 129.943 90.4986C130.226 89.7195 130.494 88.9325 130.754 88.1455C130.825 87.9882 130.872 87.8229 130.927 87.6655Z" />
+  </mask>
+  <path
+    d="M130.927 87.6655C131.187 86.8628 131.43 86.0679 131.659 85.2652C131.674 85.2101 131.69 85.1629 131.706 85.1078C131.926 84.3366 132.131 83.5654 132.328 82.7942C132.359 82.6525 132.398 82.5187 132.438 82.3771C132.635 81.598 132.816 80.8267 132.981 80.0476C133.012 79.8902 133.052 79.7407 133.083 79.5833C133.256 78.7963 133.414 78.0094 133.563 77.2303C133.571 77.1988 133.571 77.1752 133.579 77.1437C133.721 76.3803 133.854 75.6249 133.972 74.8694C133.996 74.7277 134.02 74.5861 134.043 74.4444C134.161 73.7046 134.271 72.9728 134.366 72.2488C134.389 72.1071 134.405 71.9654 134.421 71.8238C134.523 71.0762 134.61 70.3443 134.696 69.6203C136.609 52.6611 134.366 38.1179 134.342 37.9683L83.2994 10.2119C83.323 10.3536 85.5659 24.9046 83.6535 41.8638C83.5748 42.5879 83.4804 43.3276 83.3781 44.0674C83.3623 44.209 83.3387 44.3507 83.323 44.4923C83.2207 45.2163 83.1184 45.9482 83.0003 46.688C82.9767 46.8296 82.9531 46.9713 82.9295 47.1129C82.8036 47.8606 82.6777 48.616 82.536 49.3873C82.5281 49.4188 82.5281 49.4424 82.5203 49.4738C82.3708 50.2529 82.2134 51.032 82.0402 51.8269C82.0087 51.9843 81.9773 52.1338 81.9379 52.2912C81.7648 53.0624 81.5838 53.8415 81.3949 54.6128C81.3634 54.7544 81.3241 54.8961 81.2847 55.0299C81.088 55.8011 80.8834 56.5723 80.663 57.3435C80.6473 57.3986 80.6315 57.4458 80.6158 57.5009C80.3876 58.2958 80.1436 59.0985 79.8839 59.8933C79.8288 60.0507 79.7816 60.216 79.7265 60.3734C79.4668 61.1603 79.1993 61.9394 78.916 62.7264C78.853 62.8996 78.79 63.0727 78.7271 63.2379C78.554 63.7101 78.3651 64.1823 78.1841 64.6545C78.1054 64.8591 78.0188 65.0637 77.9401 65.2683C77.7355 65.772 77.5152 66.2835 77.2948 66.7872C77.2318 66.921 77.1768 67.0626 77.1217 67.1964C76.8384 67.826 76.5472 68.4477 76.2481 69.0694C76.1694 69.2268 76.0907 69.3763 76.012 69.5337C75.7759 70.0059 75.532 70.4781 75.288 70.9503C75.1621 71.1942 75.0283 71.4382 74.8945 71.6743C74.7765 71.8867 74.6584 72.1071 74.5404 72.3196C74.383 72.6029 74.2177 72.8862 74.0525 73.1695C73.9266 73.3741 73.8085 73.5866 73.6826 73.7912C73.5095 74.0745 73.3285 74.3657 73.1553 74.649C73.0294 74.8458 72.9035 75.0425 72.7776 75.2392C72.5808 75.5383 72.3841 75.8295 72.1874 76.1285C72.0693 76.3095 71.9513 76.4827 71.8254 76.6637C71.7467 76.7738 71.668 76.8761 71.5893 76.9863C71.18 77.5608 70.7629 78.1195 70.3301 78.6783C70.2199 78.8278 70.1019 78.9773 69.9838 79.119C69.4881 79.7407 68.9844 80.3545 68.4493 80.9605C68.3469 81.0707 68.2446 81.1809 68.1423 81.2989C67.7252 81.7632 67.2924 82.2275 66.8517 82.6761C66.7022 82.8256 66.5605 82.9752 66.411 83.1247C65.868 83.6677 65.3092 84.2028 64.7348 84.7301C64.719 84.7458 64.6954 84.7616 64.6797 84.7773C64.0973 85.3046 63.4835 85.8082 62.8618 86.3119C62.6965 86.4457 62.5312 86.5716 62.366 86.7054C61.7207 87.2091 61.0675 87.697 60.3907 88.1692C60.3828 88.177 60.3671 88.1849 60.3592 88.1928C59.8398 88.5548 59.3047 88.9089 58.7538 89.2473L109.781 117.004C110.324 116.665 110.859 116.311 111.386 115.949C111.386 115.949 111.394 115.949 111.394 115.941C111.402 115.933 111.41 115.926 111.418 115.926C112.095 115.453 112.748 114.965 113.393 114.47C113.558 114.344 113.724 114.21 113.889 114.076C114.511 113.58 115.117 113.069 115.707 112.542C115.723 112.526 115.738 112.518 115.754 112.502L115.762 112.494C116.336 111.975 116.895 111.44 117.438 110.889C117.588 110.739 117.737 110.59 117.879 110.44C118.32 109.984 118.752 109.528 119.169 109.063C119.24 108.985 119.319 108.906 119.398 108.819C119.421 108.788 119.445 108.756 119.476 108.725C120.004 108.127 120.515 107.513 121.011 106.883C121.129 106.734 121.239 106.592 121.357 106.443C121.79 105.884 122.207 105.325 122.609 104.751C122.664 104.68 122.719 104.609 122.766 104.538C122.79 104.499 122.813 104.459 122.845 104.428C122.971 104.255 123.081 104.074 123.207 103.893C123.403 103.602 123.608 103.303 123.797 103.004C123.923 102.807 124.049 102.602 124.175 102.405C124.356 102.122 124.529 101.839 124.702 101.556C124.828 101.351 124.954 101.138 125.072 100.934C125.237 100.65 125.402 100.367 125.56 100.084C125.678 99.8714 125.796 99.6589 125.914 99.4464C125.993 99.3048 126.071 99.1631 126.15 99.0136C126.205 98.9113 126.252 98.809 126.307 98.7146C126.551 98.2502 126.795 97.7781 127.031 97.3059C127.11 97.1485 127.189 96.999 127.267 96.8416C127.566 96.2199 127.858 95.5982 128.141 94.9686C128.204 94.8348 128.259 94.6931 128.322 94.5593C128.542 94.0557 128.755 93.552 128.959 93.0484C129.046 92.8438 129.125 92.6391 129.211 92.4345C129.4 91.9623 129.581 91.4902 129.754 91.018C129.801 90.8921 129.849 90.774 129.896 90.6481C129.912 90.6009 129.927 90.5537 129.943 90.4986C130.226 89.7195 130.494 88.9325 130.754 88.1455C130.825 87.9882 130.872 87.8229 130.927 87.6655Z"
+    fill="white" stroke="#A0C7F1" stroke-width="2" mask="url(#path-20-inside-1_14133_113818)" />
+  <path d="M134.335 37.9768L83.3 10.2125L83.9611 10L134.988 37.7564L134.335 37.9768Z" fill="#769FCB" />
+  <path
+    d="M134.988 37.7563C135.012 37.898 137.271 52.5593 135.35 69.6129C133.564 85.3995 127.74 106.545 110.081 117.618L109.805 116.996C127.182 106.113 132.926 85.2264 134.681 69.6208C136.594 52.6616 134.351 38.1184 134.327 37.9688L134.988 37.7563Z"
+    fill="#769FCB" />
+  <path
+    d="M115.258 36.5115C115.573 36.6925 115.817 37.1254 115.817 37.4795V38.1248C115.817 38.479 115.565 38.6206 115.25 38.4396L89.5716 23.6131C89.2646 23.44 89.0128 22.9993 89.0128 22.653V22.0077C89.0128 21.6536 89.2646 21.5119 89.5716 21.685L115.258 36.5115Z"
+    fill="#5B5B5B" />
+  <path
+    d="M125.803 54.6994C125.977 54.8017 126.118 55.0456 126.118 55.2424C126.118 55.447 125.977 55.5257 125.803 55.4234L88.4696 33.8761C88.2964 33.7738 88.1548 33.5299 88.1548 33.3331C88.1548 33.1285 88.2964 33.0498 88.4696 33.1521L125.803 54.6994Z"
+    fill="#5B5B5B" />
+  <path
+    d="M109.999 51.1356C110.172 51.2379 110.314 51.4819 110.314 51.6786C110.314 51.8832 110.172 51.9619 109.999 51.8596L87.7434 39.0163C87.5702 38.914 87.4286 38.67 87.4286 38.4733C87.4286 38.2686 87.5702 38.19 87.7434 38.2923L109.999 51.1356Z"
+    fill="#5B5B5B" />
+  <path
+    d="M111.902 56.5012C112.075 56.6036 112.216 56.8475 112.216 57.0443C112.216 57.2489 112.075 57.3276 111.902 57.2253L87.4111 43.0834C87.238 42.9811 87.0963 42.7371 87.0963 42.5404C87.0963 42.3358 87.238 42.2571 87.4111 42.3594L111.902 56.5012Z"
+    fill="#5B5B5B" />
+  <path
+    d="M101.186 54.4088C101.359 54.5111 101.5 54.7551 101.5 54.9519C101.5 55.1565 101.359 55.2352 101.186 55.1329L86.666 46.7516C86.4929 46.6493 86.3512 46.4054 86.3512 46.2086C86.3512 46.004 86.4929 45.9253 86.666 46.0276L101.186 54.4088Z"
+    fill="#5B5B5B" />
+  <path
+    d="M121.864 77.5216C122.037 77.6239 122.179 77.8679 122.179 78.0646C122.179 78.2692 122.037 78.3479 121.864 78.2456L84.53 56.6984C84.3569 56.5961 84.2152 56.3521 84.2152 56.1554C84.2152 55.9508 84.3569 55.8721 84.53 55.9744L121.864 77.5216Z"
+    fill="#5B5B5B" />
+  <path
+    d="M105.276 72.3834C105.449 72.4857 105.591 72.7297 105.591 72.9264C105.591 73.131 105.449 73.2097 105.276 73.1074L83.0207 60.2641C82.8476 60.1618 82.7059 59.9178 82.7059 59.7211C82.7059 59.5165 82.8476 59.4378 83.0207 59.5401L105.276 72.3834Z"
+    fill="#5B5B5B" />
+  <path
+    d="M106.398 77.75C106.571 77.8523 106.713 78.0963 106.713 78.293C106.713 78.4976 106.571 78.5763 106.398 78.474L81.9078 64.3322C81.7347 64.2299 81.593 63.9859 81.593 63.7892C81.593 63.5846 81.7347 63.5059 81.9078 63.6082L106.398 77.75Z"
+    fill="#5B5B5B" />
+  <path
+    d="M95.6673 75.656C95.8405 75.7583 95.9821 76.0022 95.9821 76.199C95.9821 76.4036 95.8405 76.4823 95.6673 76.38L81.1556 67.9987C80.9825 67.8964 80.8408 67.6525 80.8408 67.4557C80.8408 67.259 80.9903 67.1724 81.1556 67.2747L95.6673 75.656Z"
+    fill="#5B5B5B" />
+  <path
+    d="M133.726 85.7774L95.1333 92.6083L70.2808 49.3328C68.5494 48.9551 66.8496 50.1198 66.2043 52.2997L54.2581 92.6162C53.4868 95.2132 54.502 98.2666 56.5324 99.4392L118.994 135.498C121.025 136.671 123.299 135.514 124.062 132.917L136.009 92.6004C136.78 90.0034 135.757 86.95 133.726 85.7774Z"
+    fill="#DA3635" />
+  <path
+    d="M142.676 68.3539C143.069 68.3237 143.402 68.2179 143.689 68.0515L146.956 66.1614C146.668 66.3277 146.336 66.4336 145.942 66.4789L142.676 68.3539Z"
+    fill="#FF5D5C" />
+  <path
+    d="M149.752 70.1375L153.019 68.2474C153.835 67.7635 154.5 66.8411 154.848 65.2383L151.582 67.1284C151.249 68.7313 150.584 69.6537 149.752 70.1375Z"
+    fill="#FF5D5C" />
+  <path
+    d="M167.474 51.5539L146.184 39.2604C145.654 38.958 145.186 38.9277 144.838 39.1243L141.572 41.0145C141.919 40.8179 142.388 40.8481 142.917 41.1505L164.208 53.4441C165.251 54.0489 166.083 55.5005 166.083 56.6951L166.038 73.2982C166.038 73.8879 165.826 74.3113 165.493 74.5079L168.76 72.6177C169.092 72.4211 169.304 71.9977 169.304 71.408L169.349 54.805C169.364 53.6104 168.518 52.1436 167.474 51.5539Z"
+    fill="#FF5D5C" />
+  <mask id="path-36-inside-2_14133_113818" fill="white">
+    <path
+      d="M164.211 53.4437C165.254 54.0485 166.086 55.5002 166.086 56.6947L166.041 73.2978C166.041 74.4924 165.194 74.9762 164.151 74.3714L151.585 67.1132C150.496 72.2091 146.187 70.4853 143.994 69.2151C143.193 68.7614 142.709 68.3834 142.678 68.3532C144.901 68.1566 145.31 65.6011 145.249 63.4539L142.875 62.0779C141.832 61.473 141 60.0214 141 58.8268L141.045 42.2238C141.045 41.0292 141.892 40.5453 142.936 41.1502L164.211 53.4437Z" />
+  </mask>
+  <path
+    d="M164.211 53.4437C165.254 54.0485 166.086 55.5002 166.086 56.6947L166.041 73.2978C166.041 74.4924 165.194 74.9762 164.151 74.3714L151.585 67.1132C150.496 72.2091 146.187 70.4853 143.994 69.2151C143.193 68.7614 142.709 68.3834 142.678 68.3532C144.901 68.1566 145.31 65.6011 145.249 63.4539L142.875 62.0779C141.832 61.473 141 60.0214 141 58.8268L141.045 42.2238C141.045 41.0292 141.892 40.5453 142.936 41.1502L164.211 53.4437Z"
+    fill="white" />
+  <path
+    d="M164.211 53.4437L164.462 53.0111L164.461 53.0108L164.211 53.4437ZM166.086 56.6947L166.586 56.6961V56.6947H166.086ZM166.041 73.2978L165.541 73.2964V73.2978H166.041ZM164.151 74.3714L164.401 73.9388L164.401 73.9384L164.151 74.3714ZM151.585 67.1132L151.835 66.6803L151.24 66.3364L151.096 67.0088L151.585 67.1132ZM143.994 69.2151L144.245 68.7824L144.24 68.7799L143.994 69.2151ZM142.678 68.3532L142.634 67.8551L141.568 67.9494L142.325 68.7067L142.678 68.3532ZM145.249 63.4539L145.749 63.4398L145.741 63.1611L145.5 63.0213L145.249 63.4539ZM142.875 62.0779L142.624 62.5105L142.624 62.5105L142.875 62.0779ZM141 58.8268L140.5 58.8255V58.8268H141ZM141.045 42.2238L141.545 42.2251V42.2238H141.045ZM142.936 41.1502L142.685 41.5827L142.685 41.5831L142.936 41.1502ZM163.96 53.8763C164.389 54.1246 164.801 54.5661 165.106 55.0975C165.412 55.629 165.586 56.2051 165.586 56.6947H166.586C166.586 55.9898 166.344 55.2428 165.973 54.5986C165.602 53.9544 165.077 53.3676 164.462 53.0111L163.96 53.8763ZM165.586 56.6934L165.541 73.2964L166.541 73.2992L166.586 56.6961L165.586 56.6934ZM165.541 73.2978C165.541 73.7882 165.371 74 165.24 74.0748C165.107 74.1504 164.833 74.1889 164.401 73.9388L163.9 74.804C164.512 75.1588 165.183 75.2577 165.734 74.9439C166.287 74.6294 166.541 74.002 166.541 73.2978H165.541ZM164.401 73.9384L151.835 66.6803L151.335 67.5462L163.9 74.8044L164.401 73.9384ZM151.096 67.0088C150.838 68.2138 150.404 68.9547 149.912 69.3993C149.426 69.8395 148.838 70.031 148.187 70.0517C146.849 70.0942 145.328 69.4098 144.245 68.7824L143.743 69.6477C144.853 70.2905 146.583 71.1031 148.219 71.0512C149.056 71.0246 149.887 70.7709 150.583 70.1408C151.275 69.5151 151.787 68.5606 152.074 67.2177L151.096 67.0088ZM144.24 68.7799C143.854 68.5611 143.545 68.3611 143.331 68.2136C143.224 68.1399 143.141 68.0797 143.085 68.0374C143.012 67.9828 143.009 67.9768 143.032 67.9996L142.325 68.7067C142.363 68.7447 142.432 68.7973 142.483 68.8363C142.551 68.8875 142.645 68.9558 142.763 69.0371C142.999 69.1996 143.333 69.4154 143.748 69.6502L144.24 68.7799ZM142.722 68.8512C144.074 68.7317 144.864 67.8733 145.284 66.8206C145.695 65.7937 145.78 64.5366 145.749 63.4398L144.749 63.468C144.779 64.5184 144.69 65.6126 144.356 66.4495C144.032 67.2605 143.506 67.778 142.634 67.8551L142.722 68.8512ZM145.5 63.0213L143.126 61.6453L142.624 62.5105L144.998 63.8865L145.5 63.0213ZM143.126 61.6453C142.697 61.397 142.285 60.9555 141.98 60.4241C141.674 59.8925 141.5 59.3165 141.5 58.8268H140.5C140.5 59.5318 140.742 60.2788 141.113 60.9229C141.484 61.5672 142.009 62.1539 142.624 62.5105L143.126 61.6453ZM141.5 58.8282L141.545 42.2251L140.545 42.2224L140.5 58.8255L141.5 58.8282ZM141.545 42.2238C141.545 41.7334 141.715 41.5216 141.846 41.4468C141.979 41.3711 142.253 41.3327 142.685 41.5827L143.186 40.7176C142.574 40.3628 141.903 40.2639 141.352 40.5776C140.799 40.8922 140.545 41.5196 140.545 42.2238H141.545ZM142.685 41.5831L163.961 53.8766L164.461 53.0108L143.186 40.7173L142.685 41.5831Z"
+    fill="#FF5D5C" mask="url(#path-36-inside-2_14133_113818)" />
+  <path
+    d="M158.844 58.8272C158.844 57.1336 157.65 55.0771 156.183 54.2303C154.852 53.4591 153.748 53.943 153.552 55.3039C153.355 53.7313 152.251 51.9621 150.921 51.191C149.454 50.3442 148.259 51.0246 148.259 52.7031C148.259 53.4591 148.501 54.2908 148.91 55.062L153.522 63.424L158.118 60.5056C158.557 60.2183 158.844 59.6437 158.844 58.8272Z"
+    fill="#DA3635" />
+  <defs>
+    <linearGradient id="paint0_linear_14133_113818" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/profileQuestions.svg b/src/assets/form/profileQuestions.svg
new file mode 100644
index 000000000..ff870c287
--- /dev/null
+++ b/src/assets/form/profileQuestions.svg
@@ -0,0 +1,212 @@
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <rect width="200" height="200" fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M120.104 52.7464C120.131 52.7466 120.159 52.7467 120.187 52.7467C120.214 52.7467 120.242 52.7466 120.27 52.7464H190.285V52.72C190.514 52.7374 190.745 52.7462 190.978 52.7462C195.961 52.7462 200 48.7067 200 43.7238C200 38.9571 196.304 35.0537 191.621 34.724C191.654 34.2581 191.671 33.7878 191.671 33.3134C191.671 22.5809 182.971 13.8806 172.238 13.8806C171.662 13.8806 171.092 13.9056 170.528 13.9548C166.088 5.65012 157.332 0 147.256 0C132.691 0 120.883 11.8077 120.883 26.3731L120.883 26.3916C120.652 26.3796 120.42 26.3735 120.187 26.3735C112.904 26.3735 107 32.2774 107 39.5601C107 46.6106 112.533 52.3687 119.494 52.7288V52.7464H120.104Z"
+    fill="#FFDDDD" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M10.8947 90.1842C5.43002 90.1842 1 85.7542 1 80.2895C1 74.8248 5.43002 70.3947 10.8947 70.3947C12.9017 70.3947 14.7691 70.9922 16.3287 72.0191C16.0098 70.4971 15.8421 68.9194 15.8421 67.3026C15.8421 54.6655 26.0865 44.4211 38.7237 44.4211C41.0154 44.4211 43.2284 44.758 45.3159 45.3849C50.1664 40.2235 57.0555 37 64.6974 37C79.3838 37 91.2895 48.9057 91.2895 63.5921C91.2895 66.5533 90.8055 69.4014 89.9123 72.0617C92.9366 73.6455 95.0003 76.8141 95.0003 80.4648C95.0003 85.7001 90.7562 89.9441 85.5209 89.9441C85.3816 89.9441 85.2431 89.9411 85.1053 89.9352V90.1842H64.6974H38.7237H10.8947Z"
+    fill="#FFDDDD" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M172.34 38.8476C172.338 38.8476 172.336 38.8476 172.334 38.8476C172.332 38.8476 172.33 38.8476 172.328 38.8476H160.562H159.973V38.8059C157.976 38.5203 156.441 36.8031 156.441 34.7274C156.441 32.4518 158.286 30.6071 160.562 30.6071C161.3 30.6071 161.994 30.8015 162.593 31.142C162.419 30.4033 162.327 29.633 162.327 28.8413C162.327 23.3149 166.807 18.835 172.334 18.835C176.412 18.835 179.92 21.2741 181.479 24.7731C181.761 24.7387 182.048 24.721 182.34 24.721C185.984 24.721 188.983 27.4802 189.363 31.0232C189.908 30.7567 190.521 30.6071 191.169 30.6071C193.445 30.6071 195.29 32.4518 195.29 34.7274C195.29 37.0029 193.445 38.8476 191.169 38.8476C190.969 38.8476 190.773 38.8334 190.581 38.8059V38.8476H182.34H172.34Z"
+    fill="white" />
+  <path
+    d="M70.7209 52.9167C70.106 52.8694 69.5856 52.7038 69.1362 52.4436L64.027 49.487C64.4765 49.7472 64.9968 49.9127 65.6118 49.9837L70.7209 52.9167Z"
+    fill="#FF5D5C" />
+  <path
+    d="M59.655 55.7071L54.5459 52.7504C53.2686 51.9935 52.2279 50.5507 51.6838 48.0434L56.793 51.0001C57.3133 53.5073 58.3541 54.9502 59.655 55.7071Z"
+    fill="#FF5D5C" />
+  <path
+    d="M31.932 26.6375L65.2359 7.40732C66.0638 6.93426 66.797 6.88695 67.3411 7.19444L72.4502 10.1511C71.9062 9.84362 71.1729 9.89093 70.345 10.364L37.0411 29.5942C35.409 30.5403 34.1081 32.8111 34.1081 34.6797L34.179 60.6511C34.179 61.5736 34.5102 62.2359 35.0305 62.5434L29.9214 59.5867C29.401 59.2792 29.0699 58.6169 29.0699 57.6944L28.9989 31.723C28.9753 29.8544 30.2999 27.56 31.932 26.6375Z"
+    fill="#FF5D5C" />
+  <mask id="path-7-inside-1_14421_60386" fill="white">
+    <path
+      d="M37.0319 29.5938C35.3998 30.54 34.0989 32.8107 34.0989 34.6793L34.1698 60.6507C34.1698 62.5193 35.4944 63.2762 37.1265 62.3301L56.7825 50.9765C58.4855 58.9477 65.2267 56.2512 68.6565 54.2643C69.9101 53.5547 70.667 52.9634 70.7143 52.9161C67.2373 52.6086 66.5986 48.6112 66.6932 45.2524L70.4068 43.0999C72.0389 42.1538 73.3398 39.8831 73.3398 38.0144L73.2689 12.043C73.2689 10.1744 71.9443 9.4175 70.3122 10.3636L37.0319 29.5938Z" />
+  </mask>
+  <path
+    d="M37.0319 29.5938C35.3998 30.54 34.0989 32.8107 34.0989 34.6793L34.1698 60.6507C34.1698 62.5193 35.4944 63.2762 37.1265 62.3301L56.7825 50.9765C58.4855 58.9477 65.2267 56.2512 68.6565 54.2643C69.9101 53.5547 70.667 52.9634 70.7143 52.9161C67.2373 52.6086 66.5986 48.6112 66.6932 45.2524L70.4068 43.0999C72.0389 42.1538 73.3398 39.8831 73.3398 38.0144L73.2689 12.043C73.2689 10.1744 71.9443 9.4175 70.3122 10.3636L37.0319 29.5938Z"
+    fill="white" />
+  <path
+    d="M37.0319 29.5938L36.7811 29.1613L36.7817 29.1609L37.0319 29.5938ZM34.0989 34.6793L33.5989 34.6807V34.6793H34.0989ZM34.1698 60.6507L34.6698 60.6494V60.6507H34.1698ZM37.1265 62.3301L36.8757 61.8975L36.8764 61.8971L37.1265 62.3301ZM56.7825 50.9765L56.5324 50.5435L57.1278 50.1996L57.2714 50.872L56.7825 50.9765ZM68.6565 54.2643L68.4058 53.8316L68.4102 53.8292L68.6565 54.2643ZM70.7143 52.9161L70.7584 52.418L71.8251 52.5123L71.0679 53.2696L70.7143 52.9161ZM66.6932 45.2524L66.1934 45.2383L66.2013 44.9596L66.4425 44.8198L66.6932 45.2524ZM70.4068 43.0999L70.6576 43.5325L70.6576 43.5325L70.4068 43.0999ZM73.3398 38.0144L73.8398 38.0131V38.0144H73.3398ZM73.2689 12.043L72.7689 12.0444V12.043H73.2689ZM70.3122 10.3636L70.563 10.7962L70.5624 10.7966L70.3122 10.3636ZM37.2827 30.0264C36.5599 30.4454 35.8835 31.1769 35.3867 32.0401C34.8899 32.9033 34.5989 33.8527 34.5989 34.6793H33.5989C33.5989 33.6373 33.9584 32.517 34.52 31.5412C35.0817 30.5653 35.8718 29.6884 36.7811 29.1613L37.2827 30.0264ZM34.5989 34.6779L34.6698 60.6494L33.6698 60.6521L33.5989 34.6807L34.5989 34.6779ZM34.6698 60.6507C34.6698 61.4781 34.9589 61.9267 35.2834 62.1114C35.6094 62.2969 36.1501 62.3182 36.8757 61.8975L37.3773 62.7627C36.4709 63.2881 35.5332 63.4041 34.7888 62.9805C34.0431 62.5561 33.6698 61.6919 33.6698 60.6507H34.6698ZM36.8764 61.8971L56.5324 50.5435L57.0326 51.4095L37.3766 62.7631L36.8764 61.8971ZM57.2714 50.872C57.6825 52.7959 58.3844 54.0151 59.2094 54.7617C60.0295 55.5038 61.0176 55.8209 62.0878 55.8549C64.2659 55.9241 66.7042 54.8174 68.4058 53.8317L68.9071 54.697C67.179 55.6981 64.5318 56.9331 62.0561 56.8544C60.7995 56.8145 59.5685 56.4353 58.5385 55.5032C57.5134 54.5756 56.734 53.1427 56.2935 51.081L57.2714 50.872ZM68.4102 53.8292C69.0229 53.4823 69.5131 53.1651 69.8541 52.9301C70.0246 52.8126 70.1571 52.7162 70.2484 52.6474C70.3559 52.5665 70.3793 52.544 70.3608 52.5625L71.0679 53.2696C71.0257 53.3118 70.9367 53.381 70.8498 53.4464C70.7467 53.524 70.6028 53.6286 70.4215 53.7535C70.0587 54.0035 69.5436 54.3367 68.9028 54.6994L68.4102 53.8292ZM70.6703 53.4141C68.6921 53.2392 67.5309 51.9925 66.9001 50.414C66.2797 48.8614 66.1455 46.9409 66.1934 45.2383L67.193 45.2665C67.1464 46.9226 67.2842 48.6803 67.8287 50.0429C68.3629 51.3797 69.2595 52.2855 70.7584 52.418L70.6703 53.4141ZM66.4425 44.8198L70.1561 42.6673L70.6576 43.5325L66.944 45.685L66.4425 44.8198ZM70.1561 42.6673C70.8788 42.2484 71.5552 41.5168 72.052 40.6537C72.5489 39.7905 72.8398 38.8411 72.8398 38.0144H73.8398C73.8398 39.0564 73.4804 40.1767 72.9187 41.1525C72.357 42.1285 71.5669 43.0053 70.6576 43.5325L70.1561 42.6673ZM72.8398 38.0158L72.7689 12.0444L73.7689 12.0417L73.8398 38.0131L72.8398 38.0158ZM72.7689 12.043C72.7689 11.2156 72.4798 10.767 72.1553 10.5824C71.8293 10.3969 71.2887 10.3755 70.563 10.7962L70.0614 9.93106C70.9678 9.40561 71.9055 9.28965 72.6499 9.71323C73.3957 10.1376 73.7689 11.0018 73.7689 12.043H72.7689ZM70.5624 10.7966L37.2821 30.0268L36.7817 29.1609L70.0621 9.93071L70.5624 10.7966Z"
+    fill="#FF5D5C" mask="url(#path-7-inside-1_14421_60386)" />
+  <path
+    d="M45.4312 38.0156C45.4312 35.3664 47.2998 32.1496 49.5941 30.825C51.6756 29.6187 53.4023 30.3756 53.7098 32.5044C54.0173 30.0444 55.744 27.277 57.8255 26.0707C60.1199 24.7461 61.9885 25.8105 61.9885 28.436C61.9885 29.6187 61.6101 30.9196 60.9714 32.1259L53.7571 45.2062L46.5665 40.6411C45.8806 40.1917 45.4312 39.2929 45.4312 38.0156Z"
+    fill="#DA3635" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.719 90.8662)" fill="#A0C7F0" />
+  <path
+    d="M99.7218 74.0342L194.232 126.054L194.235 128.601L99.7218 183.168L5.20909 128.601L5.20928 126.053L99.7218 74.0342Z"
+    fill="#4277AF" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.719 71.4873)"
+    fill="url(#paint0_linear_14421_60386)" />
+  <circle cx="14.177" cy="14.177" r="14.177" transform="matrix(0.866025 -0.5 0.866025 0.5 69.8398 131.177)"
+    fill="#A0C7F0" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L78.2199 136.604C77.934 137.671 76.8373 138.304 75.7704 138.018C74.7034 137.732 74.0703 136.636 74.3562 135.569L85.2266 95Z"
+    fill="#D6AD92" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L83.6772 116.237C83.3913 117.304 82.2947 117.937 81.2277 117.651C80.1608 117.365 79.5276 116.269 79.8135 115.202L85.2266 95Z"
+    fill="#AE907B" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L85.1412 110.774C84.8553 111.84 83.7586 112.474 82.6917 112.188C81.6247 111.902 80.9916 110.805 81.2774 109.738L85.2266 95Z"
+    fill="#88674F" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L93.9042 119.107C93.8684 120.211 92.9445 121.077 91.8405 121.042C90.7365 121.006 89.8705 120.082 89.9063 118.978L91.2656 77Z"
+    fill="#AE907B" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L94.1167 112.543C94.081 113.647 93.157 114.513 92.053 114.478C90.949 114.442 90.0831 113.518 90.1188 112.414L91.2656 77Z"
+    fill="#88674F" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L115.574 133.569C115.86 134.636 115.227 135.732 114.16 136.018C113.093 136.304 111.996 135.671 111.71 134.604L100.84 94.0352Z"
+    fill="#D6AD92" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L110.634 115.132C110.92 116.199 110.286 117.295 109.22 117.581C108.153 117.867 107.056 117.234 106.77 116.167L100.84 94.0352Z"
+    fill="#AE907B" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L109.089 109.367C109.375 110.434 108.742 111.531 107.675 111.817C106.608 112.103 105.511 111.469 105.225 110.402L100.84 94.0352Z"
+    fill="#88674F" />
+  <ellipse cx="20.1148" cy="20.3939" rx="20.1148" ry="20.3939" transform="matrix(0.866025 -0.5 0.866025 0.5 58 95.115)"
+    fill="#AE907B" />
+  <circle cx="18.7543" cy="18.7543" r="18.7543" transform="matrix(0.866025 -0.5 0.866025 0.5 60.8398 92.7548)"
+    fill="#D6AD92" />
+  <circle cx="12.4455" cy="12.4455" r="12.4455" transform="matrix(0.866025 -0.5 0.866025 0.5 71.7671 92.7549)"
+    fill="#E6BC9F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 125.39 134.488)"
+    fill="#DA3635" />
+  <path
+    d="M120.211 133.595C120.479 130.246 128.116 129.138 131.095 132.016L140.554 141.158C141.877 142.437 141.526 144.071 139.701 145.125C137.417 146.444 133.684 146.385 131.527 144.998L124.26 140.325C121.464 138.527 120.005 136.166 120.198 133.752L120.211 133.595Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M123.654 133.555L134.281 141.767C134.771 142.146 135.058 142.73 135.058 143.349V143.498C135.058 144.782 133.866 145.733 132.615 145.449L132.156 145.344C131.935 145.24 131.725 145.124 131.528 144.998L124.262 140.325C121.466 138.527 120.007 136.166 120.2 133.752L120.213 133.595C120.306 132.422 121.304 131.524 122.689 130.976C122.845 131.221 122.936 131.512 122.936 131.823V132.093C122.936 132.665 123.201 133.205 123.654 133.555Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M140.39 141.009L140.544 141.159C141.868 142.438 141.517 144.072 139.692 145.126C137.408 146.445 133.675 146.387 131.517 144.999L130.218 144.163C130.66 143.429 131.456 142.974 132.322 142.974H133.835H137.316C138.177 142.974 138.988 142.568 139.504 141.88L139.715 141.599C139.899 141.353 140.13 141.154 140.39 141.009Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M135.837 139.757C134.968 140.364 134.146 141.098 133.661 141.583C133.424 141.82 133.04 141.82 132.804 141.583C132.567 141.346 132.567 140.963 132.804 140.726C133.328 140.201 134.204 139.419 135.143 138.764C135.612 138.436 136.11 138.13 136.597 137.905C137.075 137.684 137.59 137.518 138.081 137.518C138.416 137.518 138.687 137.789 138.687 138.124C138.687 138.459 138.416 138.73 138.081 138.73C137.844 138.73 137.516 138.816 137.106 139.006C136.705 139.191 136.271 139.454 135.837 139.757Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M134.384 134.823C134.533 135.122 134.412 135.486 134.113 135.636C134.042 135.671 133.895 135.807 133.709 136.148C133.535 136.466 133.37 136.884 133.222 137.352C132.927 138.287 132.721 139.344 132.623 140.028C132.576 140.36 132.269 140.59 131.937 140.543C131.606 140.495 131.376 140.188 131.423 139.857C131.527 139.127 131.746 138.002 132.067 136.987C132.227 136.481 132.418 135.982 132.645 135.567C132.859 135.174 133.156 134.759 133.57 134.552C133.87 134.402 134.234 134.523 134.384 134.823Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.977 135.419C133.431 135.622 134.922 136.027 135.857 136.338C136.175 136.444 136.347 136.787 136.241 137.105C136.135 137.423 135.792 137.594 135.474 137.488C134.591 137.194 133.173 136.81 131.809 136.62C131.127 136.524 130.476 136.48 129.923 136.513C129.355 136.546 128.96 136.657 128.729 136.811C128.45 136.997 128.074 136.922 127.888 136.643C127.703 136.365 127.778 135.989 128.056 135.803C128.552 135.472 129.203 135.341 129.851 135.302C130.514 135.263 131.25 135.317 131.977 135.419Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M129.737 134.107C128.867 134.593 128.046 135.18 127.562 135.567C127.301 135.776 126.919 135.733 126.71 135.472C126.501 135.211 126.543 134.829 126.805 134.62C127.331 134.199 128.208 133.573 129.146 133.049C130.054 132.542 131.134 132.063 132.032 132.063C132.367 132.063 132.638 132.334 132.638 132.669C132.638 133.004 132.367 133.275 132.032 133.275C131.476 133.275 130.637 133.604 129.737 134.107Z"
+    fill="#769FCB" />
+  <path
+    d="M124.342 132.667C125.492 133.331 127.357 133.331 128.508 132.667C129.085 132.333 129.373 131.896 129.371 131.459L129.371 125.398L123.479 125.398L123.479 131.459C123.476 131.896 123.764 132.333 124.342 132.667Z"
+    fill="#FFCCB7" />
+  <path
+    d="M124.342 130.123C125.492 130.788 127.357 130.788 128.508 130.123C129.085 129.79 129.373 129.352 129.371 128.915L129.371 122.854L123.479 122.854L123.479 128.915C123.476 129.352 123.764 129.79 124.342 130.123Z"
+    fill="#EF937F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 102.277 143.334)"
+    fill="#DA3635" />
+  <path
+    d="M97.0977 142.442C97.3657 139.093 105.003 137.985 107.982 140.863L117.44 150.004C118.764 151.283 118.413 152.918 116.588 153.972C114.304 155.29 110.571 155.232 108.413 153.845L101.147 149.171C98.351 147.373 96.8921 145.012 97.0852 142.599L97.0977 142.442Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M100.59 142.584L111.155 150.614C111.653 150.992 111.945 151.581 111.945 152.206V152.345C111.945 153.629 110.753 154.58 109.502 154.295L109.042 154.191C108.822 154.087 108.612 153.971 108.415 153.845L101.148 149.171C98.3526 147.373 96.8937 145.012 97.0868 142.599L97.0993 142.442C97.1932 141.269 98.191 140.371 99.576 139.823C99.7322 140.067 99.8227 140.358 99.8227 140.67V141.036C99.8227 141.643 100.107 142.216 100.59 142.584Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M117.276 149.856L117.431 150.005C118.755 151.284 118.403 152.919 116.578 153.973C114.295 155.291 110.562 155.233 108.404 153.846L107.105 153.01C107.546 152.276 108.343 151.82 109.209 151.82H110.722H114.203C115.064 151.82 115.875 151.415 116.391 150.726L116.602 150.446C116.786 150.2 117.017 150.001 117.276 149.856Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.724 148.604C111.854 149.211 111.033 149.944 110.547 150.43C110.311 150.667 109.927 150.667 109.69 150.43C109.454 150.193 109.454 149.809 109.69 149.573C110.215 149.048 111.091 148.266 112.03 147.61C112.499 147.282 112.997 146.977 113.484 146.752C113.962 146.531 114.477 146.365 114.968 146.365C115.302 146.365 115.574 146.636 115.574 146.971C115.574 147.305 115.302 147.577 114.968 147.577C114.731 147.577 114.402 147.663 113.993 147.852C113.592 148.038 113.158 148.301 112.724 148.604Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.27 143.67C111.42 143.969 111.299 144.333 110.999 144.483C110.929 144.518 110.781 144.653 110.595 144.994C110.421 145.313 110.257 145.731 110.109 146.199C109.814 147.134 109.608 148.191 109.51 148.875C109.463 149.207 109.156 149.437 108.824 149.389C108.493 149.342 108.263 149.035 108.31 148.704C108.414 147.974 108.632 146.849 108.953 145.834C109.113 145.328 109.305 144.828 109.531 144.414C109.746 144.021 110.042 143.606 110.457 143.398C110.757 143.249 111.121 143.37 111.27 143.67Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M108.863 144.266C110.318 144.469 111.809 144.873 112.744 145.185C113.062 145.291 113.233 145.634 113.128 145.952C113.022 146.269 112.678 146.441 112.361 146.335C111.478 146.041 110.06 145.657 108.696 145.466C108.013 145.371 107.363 145.326 106.81 145.359C106.242 145.393 105.847 145.504 105.615 145.658C105.337 145.844 104.961 145.769 104.775 145.49C104.589 145.212 104.665 144.835 104.943 144.65C105.439 144.319 106.09 144.188 106.738 144.149C107.4 144.11 108.137 144.164 108.863 144.266Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M106.624 142.954C105.753 143.44 104.933 144.026 104.449 144.413C104.187 144.622 103.806 144.58 103.597 144.319C103.388 144.057 103.43 143.676 103.692 143.467C104.218 143.046 105.094 142.42 106.032 141.896C106.941 141.388 108.021 140.909 108.919 140.909C109.254 140.909 109.525 141.181 109.525 141.516C109.525 141.85 109.254 142.122 108.919 142.122C108.362 142.122 107.524 142.451 106.624 142.954Z"
+    fill="#769FCB" />
+  <path
+    d="M101.228 141.513C102.379 142.178 104.244 142.178 105.394 141.513C105.972 141.18 106.26 140.743 106.257 140.305L106.257 134.244L100.365 134.244L100.365 140.305C100.363 140.743 100.651 141.18 101.228 141.513Z"
+    fill="#FFCCB7" />
+  <path
+    d="M101.228 138.97C102.379 139.634 104.244 139.634 105.394 138.97C105.972 138.637 106.26 138.199 106.257 137.762L106.257 131.701L100.365 131.701L100.365 137.762C100.363 138.199 100.651 138.637 101.228 138.97Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.386 66C115.15 68.1745 113.594 70.3102 110.715 71.972C104.446 75.5916 94.2811 75.5916 88.0116 71.972C85.6055 70.5828 84.1228 68.8623 83.5635 67.0649C83.4456 67.5414 83.3911 68.0222 83.4001 68.5027L83.3794 68.5001L82.3385 86.0757C82.0156 91.5292 84.9156 96.884 90.562 101.26L99.9317 108.522C101.162 109.475 101.757 110.653 101.607 111.839L98.7226 134.642C98.6791 135.303 99.0943 135.972 99.9682 136.476C101.633 137.438 104.333 137.438 105.998 136.476C106.66 136.094 106.802 135.73 107.008 135.202C107.074 135.034 107.146 134.849 107.243 134.642L118.207 106.897C119.586 103.407 118.838 99.7476 116.087 96.5383L112.081 91.8636L124.126 99.3197C125.847 100.385 126.668 101.835 126.369 103.282L121.589 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.199 129.208 128.864 128.247C129.738 127.742 130.153 127.073 130.109 126.412L140.109 100.746C141.69 96.6882 140.518 92.4345 136.834 88.8601L115.921 68.5715C115.948 67.7072 115.77 66.8412 115.386 66Z"
+    fill="#4C4D53" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.266 123.512C127.042 128.888 124.18 125.343 126.919 105.506C127.435 101.769 126.133 97.9763 123.319 95.4636L114.545 87.6291C114.149 87.2759 113.556 87.3071 113.13 87.6226C112.36 88.1921 111.594 88.3918 110.35 88.4619C109.447 88.5127 109.005 89.6039 109.661 90.2256L115.058 95.3378L119.003 98.1775C120.194 99.0347 120.857 100.096 120.887 101.195L121.161 111.022L121.34 111.5V117.464L121.588 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.198 129.208 128.863 128.247C129.737 127.742 130.153 127.073 130.109 126.412L131.266 123.512ZM107.795 130.88C104.6 130.986 102.43 123.263 104.387 107.084C104.877 103.029 103.303 98.9535 100.049 96.4832L82.4942 83.1542L82.3234 85.9835C82.0092 91.1869 84.6293 96.3086 89.7896 100.578L98.3496 107.661C99.4006 108.531 99.9401 109.572 99.8886 110.632L98.7223 134.642C98.6788 135.303 99.094 135.972 99.9679 136.477C101.633 137.438 104.332 137.438 105.997 136.477C106.871 135.972 107.287 135.303 107.243 134.642L107.795 130.88Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M95.4665 27.3316C85.137 29.577 79.2296 38.3341 79.0057 47.3318H78.8398V64.5647C78.8398 68.5209 80.4809 72.0939 83.1194 74.6401L80.9907 77.9144L96.0867 87.7021C98.9098 89.5325 102.638 87.5062 102.638 84.1417C104.959 82.3429 104.812 78.7919 102.35 77.1914L102.036 76.987L113.341 70.4442C114.208 69.9421 114.889 69.2018 115.318 68.333L119.04 70.7526C121.279 72.2083 124.274 71.5732 125.73 69.334C126.862 67.5925 126.369 65.2628 124.627 64.1305L121.309 61.9733V43.1938L121.39 41.6535C121.856 32.7559 114.509 25.4154 105.612 25.8894L100.961 26.1372L95.4665 27.3316Z"
+    fill="#FF9C9B" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.438 75.322L102.116 73.8122C99.5937 72.1724 97.9437 69.4842 97.6234 66.4929L95.5682 47.2992C95.5682 47.2987 95.5678 47.2984 95.5674 47.2983C95.5669 47.2983 95.5664 47.2987 95.5664 47.2993V67.3551C95.5664 70.7396 97.2783 73.8944 100.116 75.7391L102.347 77.1895C104.633 78.676 104.923 81.8451 103.093 83.7302C103.084 83.7398 103.075 83.7495 103.066 83.7594C104.93 81.8783 104.649 78.682 102.35 77.1872L101.951 76.9277L104.438 75.322ZM102.602 84.7058C102.596 84.7353 102.591 84.7648 102.587 84.7942C102.582 84.8239 102.578 84.8538 102.575 84.8838C102.585 84.825 102.594 84.7657 102.602 84.7058Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M105.232 16.6523L95.8566 18.9655L96.2634 26.7943L96.0559 27.8022L94.9165 33.4102C94.4327 35.7913 95.6796 38.1129 97.7792 39.0899L97.9823 40.2209C98.5337 43.2923 101.471 45.3352 104.542 44.7837C107.613 44.2323 109.656 41.2954 109.105 38.224L106.765 25.1884L106.962 24.0477L106.538 23.9248L105.232 16.6523Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.657 5.34717L94.5839 8.41241L96.5731 19.4921L92.5352 19.6622L95.9965 25.4067L95.4724 28.4327C94.9812 31.269 96.8823 33.9666 99.7187 34.4579C101.101 34.6973 102.45 34.3685 103.527 33.6402C104.911 34.1386 106.44 34.2913 107.992 34.0128C112.707 33.1663 115.842 28.6581 114.996 23.9434L111.657 5.34717Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.234 31.9478C111.16 32.7029 109.908 33.2416 108.531 33.4888C103.477 34.3963 98.6435 31.0344 97.736 25.9798L96.7254 20.3506C96.637 19.8584 96.1987 19.5072 95.6991 19.5282L94.3787 19.5839C93.887 19.6046 93.4835 19.9799 93.4273 20.4688L93.4011 20.6972C93.3758 20.9166 93.424 21.1382 93.538 21.3275L95.2216 24.1217C95.2824 24.2225 95.3605 24.3117 95.4524 24.3852L96.0177 24.8373C96.1824 24.9689 96.425 24.9273 96.5364 24.7483C96.7066 24.4747 97.1246 24.5548 97.1815 24.872L97.9228 29.0009C98.3084 31.1487 99.4539 32.9688 101.033 34.2341C101.236 34.3972 101.502 34.4645 101.756 34.4069C102.226 34.3006 102.675 34.13 103.092 33.9034C103.373 33.751 103.703 33.7072 104.009 33.7976C105.262 34.1674 106.618 34.2587 107.991 34.0121C109.63 33.718 111.077 32.9815 112.234 31.9478Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.014 20.4058H113.153C110.869 20.4058 108.878 18.8513 108.325 16.6355L108.156 15.9608C107.627 13.8454 105.572 12.4823 103.418 12.8175L102.632 12.9397C100.605 13.2551 99.2853 15.2437 99.783 17.2348C100.022 18.1887 99.8465 19.199 99.3011 20.0172L97.1916 23.1814C96.9634 23.5237 96.5447 23.6855 96.1456 23.5858L94.5041 23.1754C92.4758 20.9266 91.2383 17.9309 91.2383 14.6419C91.2383 7.65997 96.815 2 103.694 2C109.467 2 114.323 5.98577 115.735 11.3938C117.3 12.1715 118.382 13.8333 118.382 15.7577C118.382 17.9656 116.958 19.8278 115.014 20.4058Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.17 71.5074L123.521 67.5586L121.509 67.4367C119.68 67.3259 118.2 65.9074 118.012 64.0846C117.993 63.9011 118.069 63.7208 118.215 63.6075L118.549 63.3473C119.004 62.9934 118.891 62.2775 118.35 62.0806C118.06 61.9753 117.867 61.7001 117.867 61.392V41.4189C117.867 39.8103 116.563 38.5063 114.955 38.5063C114.832 38.5063 114.736 38.6116 114.748 38.7336L115.621 48.1404C115.765 49.692 115.544 51.2558 114.977 52.707L114.864 52.9953C114.773 53.2274 114.727 53.4745 114.727 53.7237V57.6547C114.727 57.8832 114.766 58.11 114.842 58.3253L115.373 59.8179C116.002 61.584 116.063 63.5023 115.549 65.305L115.094 66.8994C114.964 67.3531 115.002 67.8262 115.181 68.2415L119.041 70.751C120.005 71.3776 121.109 71.6168 122.17 71.5074Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.352 85.7497L102.344 85.6175L88.6759 76.3234C87.8045 75.7308 87.9439 74.4066 88.9195 74.0084C90.1944 73.488 89.9219 71.6083 88.5518 71.4713L85.7012 71.1862C84.6538 71.0815 83.8668 70.1827 83.9013 69.1306L84.799 41.7507C84.8249 40.9592 84.4942 40.1978 83.8979 39.6767C82.2844 38.2664 79.7516 39.265 79.5346 41.3969L78.8672 47.9546V73.5629C78.8672 75.3113 79.7646 76.8501 81.124 77.7438L81.0142 77.9126L96.1102 87.7003C98.4459 89.2147 101.402 88.0891 102.352 85.7497Z"
+    fill="#DA3635" />
+  <ellipse cx="96.4787" cy="21.4493" rx="1.92787" ry="3.08459" fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M98.027 21.7513C98.0457 21.611 98.0556 21.4653 98.0556 21.3159C98.0556 20.1884 97.4931 19.2744 96.7993 19.2744C96.1054 19.2744 95.543 20.1884 95.543 21.3159C95.543 22.0656 95.7917 22.721 96.1623 23.0759C95.971 22.7728 95.8552 22.3772 95.8552 21.9443C95.8552 20.9903 96.4177 20.2169 97.1115 20.2169C97.3609 20.2169 97.3982 20.5724 97.4377 20.9491C97.464 21.1997 97.4913 21.4596 97.5827 21.6302C97.6541 21.7637 97.8295 21.7578 97.9964 21.7523C98.0066 21.7519 98.0168 21.7516 98.027 21.7513Z"
+    fill="#EF937F" />
+  <ellipse cx="105.301" cy="23.4348" rx="0.765209" ry="1.33954" transform="rotate(2.6285 105.301 23.4348)"
+    fill="#333333" />
+  <ellipse cx="112.703" cy="22.2175" rx="0.765209" ry="1.33912" transform="rotate(2.6285 112.703 22.2175)"
+    fill="#333333" />
+  <path d="M103.805 22.9914C104.57 22.5036 105.553 21.9842 106.889 22.3353" stroke="#333333" stroke-linecap="round" />
+  <path d="M112.285 20.6782C112.574 20.6782 113.106 20.6782 113.827 20.6782" stroke="#333333" stroke-linecap="round" />
+  <ellipse cx="110.34" cy="27" rx="1.5" ry="1" fill="#EF937F" />
+  <path d="M108.43 29.5752C108.858 29.9202 109.921 30.3204 110.743 29.1611" stroke="#333333" stroke-linecap="round" />
+  <path
+    d="M110.812 87.8705C109.744 87.2148 109.15 86.3488 109.15 85.449L109.15 84.587L129.953 73.2443C132.272 71.9795 135.885 71.955 138.256 73.1878L150.851 79.7381L150.851 80.8974C150.851 81.8127 150.236 82.6923 149.136 83.3513L128.685 95.5987C127.227 96.4716 124.801 96.4628 123.363 95.5793L110.812 87.8705Z"
+    fill="#989898" />
+  <rect width="30.8472" height="21.5482" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 107.345 84.5134)"
+    fill="#C5C5C5" />
+  <rect width="25.3527" height="19.5019" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 112.185 82.7427)"
+    fill="#444444" />
+  <rect width="1.94964" height="3.61134" rx="0.974821" transform="matrix(0.866025 -0.5 0.866025 0.5 115.936 88.1482)"
+    fill="#818181" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M114.784 81.2417C113.349 82.0701 113.349 83.4133 114.784 84.2417L115.455 84.629L135.621 88.7133L141.033 85.5888L117.971 79.4015L114.784 81.2417ZM122.658 76.6956L144.185 83.7688L146.341 82.5241L126.448 74.5075L122.658 76.6956ZM128.752 73.177L148.139 81.4858L148.433 81.3163C148.65 81.1907 148.835 81.0533 148.987 80.9077L130.967 71.8981L128.752 73.177Z"
+    fill="#656565" />
+  <path
+    d="M122.381 67.6153C120.929 69.5596 120.723 71.86 121.919 72.7533L123.623 74.4953L128.549 69.1283L127.176 65.7122C125.979 64.8189 123.833 65.6709 122.381 67.6153Z"
+    fill="#A0C7F1" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.405 72.5504L122.331 71.8357C122.223 70.7934 122.57 69.7552 123.283 68.9873C124.094 68.1139 125.282 67.6934 126.462 67.862L127.092 67.9519C127.974 68.0779 128.756 68.5855 129.23 69.3399L130.432 71.2524C131.623 73.1475 131.089 75.6467 129.226 76.8884L129.06 76.9757L129.801 79.9403C129.899 80.3321 130.251 80.6069 130.655 80.6069C130.789 80.6069 130.897 80.7154 130.897 80.8494V81.3349C130.897 81.6515 130.641 81.9082 130.324 81.9082C129.536 81.9082 128.816 81.463 128.463 80.7582L127.09 78.0124L126.833 78.1479C126.16 78.5022 125.333 78.364 124.811 77.81C123.454 76.3681 122.609 74.52 122.405 72.5504Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.331 71.8359L122.405 72.5506C122.609 74.5202 123.455 76.3683 124.812 77.8102C125.333 78.3642 126.16 78.5024 126.833 78.1481L127.091 78.0126L127.755 79.3412L127.764 79.3352L126.212 76.2324C125.891 75.5901 125.408 75.0427 124.81 74.6443C123.908 74.043 123.367 73.0307 123.367 71.9466V68.901C123.339 68.9294 123.311 68.9582 123.284 68.9875C122.571 69.7554 122.224 70.7936 122.331 71.8359ZM130.017 76.2031L127.922 73.368L129.115 76.9473L129.226 76.8886C129.524 76.6898 129.789 76.4587 130.017 76.2031Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.046 90.1728L102.077 88.0438L103.936 82.4665L106.167 81.1652L108.584 82.2806C109.947 82.5285 112.86 83.2474 113.603 84.1397C114.193 84.8474 115.83 84.8816 117.043 84.907C117.743 84.9216 118.301 84.9333 118.437 85.0693C118.809 85.4411 118.437 86.3706 117.136 86.5566C116.529 86.6432 115.802 86.4877 115.085 86.3345C114.264 86.1588 113.456 85.9861 112.86 86.1847C111.744 86.5566 111.93 87.8579 112.86 88.4157C113.789 88.9734 116.764 90.8325 117.322 91.3902C117.879 91.948 117.693 92.6916 117.322 93.0634C117.056 93.3289 115.559 92.8362 113.506 91.5853C111.358 92.7231 108.734 92.7582 106.512 91.5617L104.123 90.2752C104.097 90.2411 104.072 90.2069 104.047 90.1728L104.046 90.1728Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.078 88.0445L104.047 90.1735L104.047 90.1735C104.072 90.2076 104.098 90.2417 104.124 90.2758L106.513 91.5623C108.73 92.7563 111.348 92.7239 113.493 91.5931L112.308 91.0008L109.923 90.6338C107.312 90.2322 105.01 88.7045 103.626 86.4553L102.965 85.3813L102.078 88.0445ZM114.264 92.0281L114.308 92.0008L113.64 91.6665C113.854 91.7955 114.063 91.9161 114.264 92.0281Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.485 89.417C100.926 88.8989 100.345 86.4253 101.187 83.8919C102.028 81.3586 103.975 79.7248 105.534 80.2428L108.028 81.9076L108.01 81.9572C107.89 81.8819 107.762 81.821 107.625 81.7757C106.137 81.2813 104.277 82.8477 103.471 85.2745C102.763 87.4057 103.103 89.4917 104.204 90.3031L102.485 89.417ZM104.717 90.5679L104.868 90.6454L104.88 90.6122C104.825 90.6 104.771 90.5853 104.717 90.5679Z"
+    fill="#A0C7F1" />
+  <path
+    d="M109.973 22.2202V22.2202C110.105 23.19 110.586 24.0785 111.325 24.7202L111.869 25.1929C112.489 25.7314 112.474 26.6989 111.837 27.2172L111.344 27.6182"
+    stroke="#333333" stroke-linecap="round" />
+  <defs>
+    <linearGradient id="paint0_linear_14421_60386" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/profileSkip.svg b/src/assets/form/profileSkip.svg
index 777597bb3..646b24670 100644
--- a/src/assets/form/profileSkip.svg
+++ b/src/assets/form/profileSkip.svg
@@ -1,166 +1,98 @@
-<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5791_75116)">
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" fill="white"/>
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" fill="white"/>
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" fill="white"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" fill="#DA3635"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" fill="white"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" fill="white"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" fill="white"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" fill="white"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M35.9443 142.097C35.8679 142.843 36.5373 143.401 36.185 144.07C35.956 144.528 35.1986 145.62 34.5644 145.374C33.6073 145.009 34.4 144.023 34.6701 143.536C34.8697 143.189 34.9754 142.866 35.2749 142.625C35.4628 142.473 35.9913 142.079 35.9443 142.097Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" fill="white"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" fill="white"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" fill="white"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" fill="white"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1394 129.672C31.5463 130.383 31.5169 131.14 31.4112 132.127C31.2879 133.201 31.0296 134.158 31.0179 135.268C31.0002 137.499 31.0179 139.695 31.0179 141.956C31.0179 142.684 30.6362 145.385 31.2292 145.779C31.652 144.639 31.3349 142.943 31.3937 141.715C31.47 140.136 31.3936 138.468 31.4993 136.906C31.6344 135.174 31.5933 133.371 31.9104 131.674C31.9985 131.205 32.2451 130.019 32.7618 129.837C33.4899 129.566 33.9127 130.911 34.0653 130.929C34.8111 131.034 34.0184 129.367 33.2139 129.273C32.4388 129.173 32.2275 129.461 32.1394 129.672Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" fill="white"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" fill="white"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.575 126.441L148.045 137.459C154.369 141.038 154.419 146.909 148.158 150.524L96.0668 180.598C89.849 184.188 79.768 184.188 73.5502 180.598L30.3016 155.629" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M42.6586 80.5252L33.4559 75.3041C27.1452 71.7237 27.1009 65.8596 33.3571 62.2475L77.9341 36.511C84.1519 32.9211 94.233 32.9211 100.451 36.511L170.121 76.7354" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M47.7647 83.2691C47.4781 83.4335 47.1956 83.6063 46.9174 83.7834C37.9049 89.4868 37.9091 98.3477 46.9259 104.013C53.1436 107.925 62.0465 109.451 70.393 108.608C71.5902 108.486 72.4755 109.223 71.9064 109.843C62.0381 120.529 64.032 133.917 77.926 143.469C78.7185 144.013 80.1517 144.043 81.0243 143.537L151.7 102.732C152.572 102.226 152.53 101.395 151.594 100.936C135.15 92.8592 112.046 91.6578 93.5609 97.3402C92.4776 97.6732 91.2298 97.142 91.4448 96.4423C92.8654 91.8011 90.5048 86.8564 84.3334 83.2691C74.267 77.4223 57.8943 77.4223 47.7647 83.2691Z" fill="#EDEDED"/>
-<path d="M42.5926 81.0228C42.268 81.2082 41.9476 81.4021 41.6357 81.6003C31.4513 88.0456 31.4555 98.0572 41.6441 104.465C48.6712 108.882 58.7334 110.611 68.1633 109.654C69.5122 109.515 70.5154 110.349 69.8705 111.049C58.7207 123.126 60.9718 138.255 76.6742 149.047C77.5678 149.662 79.1866 149.692 80.173 149.123L160.047 103.01C161.033 102.441 160.987 101.501 159.929 100.983C141.343 91.8521 115.233 90.499 94.341 96.9191C93.1185 97.2942 91.7063 96.6956 91.9508 95.9074C93.5569 90.6634 90.8886 85.0738 83.9163 81.0228C72.5431 74.413 54.0416 74.413 42.5926 81.0228Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M91.9258 78.3123L91.9764 95.4944C91.9764 95.4438 91.9848 95.3974 91.9974 95.3468C92.2503 94.5164 92.3768 93.6775 92.3768 92.8386L92.3262 75.6566C92.3304 76.4955 92.204 77.3344 91.9468 78.1648C91.9342 78.2154 91.9258 78.266 91.9258 78.3123Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M43.5791 75.7958L43.6297 92.9778C43.6381 96.4007 45.7669 99.8194 50.0118 102.488C55.8755 106.176 64.2768 107.618 72.1469 106.821C73.0322 106.733 73.7404 107.142 73.7404 107.605L73.6898 90.4232C73.6898 89.9595 72.9816 89.5507 72.0964 89.6392C64.2262 90.4359 55.8291 88.9942 49.9612 85.3057C45.7163 82.6374 43.5875 79.2187 43.5791 75.7958Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M149.378 83.2697C149.378 83.5689 149.184 83.8683 148.787 84.0959L82.1206 122.587L82.1712 139.769L148.838 101.278C149.234 101.05 149.432 100.751 149.428 100.452L149.378 83.2697Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M67.7168 104.3L67.7674 121.482C67.7842 127.97 71.6118 134.453 79.2502 139.701C79.9963 140.216 81.3495 140.241 82.1715 139.765L82.1209 122.583C81.2989 123.059 79.9457 123.034 79.1996 122.519C71.5612 117.271 67.7337 110.788 67.7168 104.3Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M50.7537 65.7421C50.4839 65.898 50.2141 66.0582 49.9527 66.2268C41.4502 71.6057 41.4587 79.9649 49.9612 85.31C55.8248 88.9985 64.2261 90.4402 72.0963 89.6434C73.2218 89.5296 74.0607 90.2209 73.5211 90.8069C64.2135 100.89 66.0935 113.515 79.1992 122.524C79.9454 123.038 81.2985 123.063 82.1206 122.587L148.787 84.096C149.609 83.6196 149.571 82.8356 148.69 82.4014C133.178 74.7799 111.388 73.6502 93.949 79.008C92.9288 79.3199 91.7485 78.8225 91.9509 78.1607C93.2914 73.7851 91.0615 69.1186 85.2442 65.7336C75.7511 60.2241 60.31 60.2241 50.7537 65.7421Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M129.093 121.963C131.133 123.139 131.146 125.048 129.118 126.224C127.09 127.4 123.794 127.4 121.754 126.224C119.714 125.048 119.705 123.139 121.733 121.963C123.76 120.786 127.053 120.786 129.093 121.963Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M125.417 57.1666V124.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M130.655 48.727L126.083 46.0703L134.228 50.7146L138.807 53.3713L130.655 48.727Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.273 25.3822L138.853 28.0453C138.223 27.6751 137.391 27.792 136.56 28.2727L131.98 25.6095C132.812 25.1288 133.643 25.0184 134.273 25.3822Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.267 74.0663L107.687 71.4031C106.434 70.6756 106.518 68.1619 107.785 65.9794L112.364 68.6425C111.097 70.825 111.006 73.3388 112.267 74.0663Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.357 68.6423L107.778 65.9791L115.871 51.9618L120.451 54.625L112.357 68.6423Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.076 44.8751L121.503 42.2184L129.707 28.0127L134.287 30.6694L126.076 44.8751Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.286 30.6695L129.707 28.0064C130.331 26.9216 131.156 26.0772 131.98 25.603L136.56 28.2662C135.735 28.7469 134.91 29.5848 134.286 30.6695Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M120.451 54.6249L115.871 51.9617C116.17 51.4421 116.17 50.8835 115.865 50.7211L120.444 53.3842C120.749 53.5466 120.756 54.1052 120.451 54.6249Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M124.998 45.5053L120.418 42.8421C120.568 42.9265 120.769 42.9006 120.964 42.7836C121.159 42.6732 121.354 42.4719 121.503 42.212L126.083 44.8752C125.933 45.135 125.738 45.3299 125.543 45.4468C125.342 45.5572 125.147 45.5897 124.998 45.5053Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.852 40.8544L112.272 38.1978L120.418 42.842L124.997 45.5052L116.852 40.8544Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M136.56 28.2661C137.411 27.7724 138.268 27.6685 138.905 28.0712C140.126 28.8442 140.002 31.293 138.755 33.456L130.655 47.4798C130.356 47.993 130.356 48.5516 130.662 48.7205L138.807 53.3648C140.106 54.0988 140.184 56.5801 138.866 58.782C138.249 59.8148 137.456 60.6073 136.657 61.0685C135.832 61.5426 135.001 61.6595 134.371 61.2958L126.115 56.593C125.966 56.5086 125.771 56.5346 125.576 56.645C125.381 56.7554 125.186 56.9568 125.037 57.2166L116.833 71.4223C116.203 72.5136 115.378 73.3515 114.553 73.8256C113.754 74.2868 112.962 74.4037 112.338 74.092C111.006 73.4164 111.071 70.8572 112.357 68.6292L120.451 54.6119C120.75 54.0923 120.75 53.5337 120.444 53.3713L112.189 48.6685C110.909 47.9345 110.922 45.5247 112.234 43.3227C112.838 42.3094 113.611 41.5494 114.397 41.0947C115.28 40.5881 116.177 40.4712 116.839 40.8479L124.985 45.4922C125.134 45.5766 125.335 45.5507 125.53 45.4337C125.725 45.3233 125.92 45.122 126.069 44.8621L134.273 30.6564C134.91 29.5847 135.735 28.7468 136.56 28.2661Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.195 48.6752L107.616 46.012C106.336 45.278 106.349 42.8682 107.661 40.6662C108.265 39.6529 109.038 38.8929 109.824 38.4382C110.708 37.9316 111.604 37.8147 112.267 38.1914L116.846 40.8545C116.177 40.4778 115.287 40.5882 114.404 41.1014C113.618 41.5561 112.845 42.3225 112.241 43.3293C110.929 45.5313 110.916 47.9412 112.195 48.6752Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.2121 145.224C37.7749 148.437 37.8109 153.646 32.2781 156.859C26.7512 160.072 17.7537 160.072 12.1909 156.859C6.6281 153.646 6.59814 148.437 12.131 145.224C17.6578 142.011 26.6494 142.011 32.2121 145.224Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M30.6175 146.021C35.2872 148.719 35.3171 153.089 30.6775 155.786C26.0378 158.483 18.485 158.483 13.8093 155.786C9.13372 153.089 9.11569 148.719 13.7553 146.021C18.395 143.324 25.9419 143.324 30.6175 146.021Z" fill="#EDEDED"/>
-<path d="M33.1714 145.751C33.1654 145.805 33.1654 145.859 33.1594 145.919C33.1534 145.967 33.1475 146.015 33.1415 146.063C33.1355 146.117 33.1235 146.171 33.1175 146.225C33.1115 146.273 33.0994 146.321 33.0875 146.369C33.0755 146.423 33.0635 146.477 33.0455 146.531C33.0335 146.579 33.0155 146.627 33.0035 146.675C32.9855 146.729 32.9676 146.782 32.9496 146.83C32.9316 146.878 32.9137 146.926 32.8957 146.974C32.8717 147.028 32.8477 147.082 32.8237 147.142C32.8058 147.19 32.7818 147.232 32.7578 147.28C32.7338 147.334 32.7038 147.388 32.6739 147.442C32.6499 147.484 32.6259 147.532 32.6019 147.574C32.566 147.64 32.524 147.706 32.482 147.766C32.458 147.808 32.4341 147.844 32.4041 147.885C32.3561 147.957 32.3022 148.029 32.2482 148.095C32.2243 148.125 32.2003 148.155 32.1763 148.191C32.0864 148.305 31.9905 148.413 31.8946 148.521C31.8706 148.551 31.8406 148.575 31.8167 148.605C31.7387 148.689 31.6549 148.773 31.5709 148.851C31.529 148.887 31.493 148.922 31.451 148.958C31.3971 149.006 31.3431 149.048 31.2891 149.096C31.2412 149.138 31.1932 149.18 31.1393 149.222C31.0853 149.27 31.0254 149.312 30.9655 149.36C30.9115 149.402 30.8576 149.444 30.8036 149.48C30.7437 149.522 30.6837 149.57 30.6178 149.612C30.5578 149.654 30.5039 149.69 30.444 149.732C30.378 149.774 30.3121 149.816 30.2461 149.858C30.1622 149.912 30.0783 149.96 29.9944 150.013C29.7546 150.151 29.5088 150.277 29.257 150.403C29.1911 150.433 29.1252 150.469 29.0532 150.499C28.8255 150.607 28.5917 150.703 28.3519 150.799C28.3219 150.811 28.292 150.823 28.256 150.835C27.9983 150.931 27.7345 151.021 27.4707 151.104C27.2849 151.164 27.0931 151.212 26.9073 151.266C26.7634 151.308 26.6196 151.344 26.4757 151.38C26.2779 151.428 26.0741 151.47 25.8703 151.512C25.7204 151.542 25.5765 151.578 25.4267 151.602C25.3667 151.614 25.3008 151.62 25.2408 151.632C24.9891 151.674 24.7373 151.71 24.4795 151.74C24.4076 151.746 24.3297 151.758 24.2577 151.764C24.1139 151.782 23.964 151.788 23.8142 151.8C23.5684 151.818 23.3226 151.836 23.0709 151.848C22.915 151.854 22.7531 151.86 22.5973 151.86C22.3995 151.866 22.1957 151.866 21.9978 151.86C21.83 151.86 21.6622 151.854 21.4943 151.848C21.3085 151.842 21.1227 151.83 20.9368 151.818C20.769 151.806 20.6012 151.794 20.4273 151.776C20.2415 151.758 20.0617 151.74 19.8819 151.716C19.72 151.698 19.5522 151.674 19.3903 151.644C19.1925 151.614 19.0007 151.578 18.8089 151.542C18.659 151.512 18.5031 151.482 18.3533 151.452C18.1255 151.404 17.8977 151.344 17.6699 151.284C17.5261 151.248 17.3762 151.212 17.2323 151.164C17.1544 151.14 17.0765 151.116 17.0046 151.092C16.7768 151.021 16.555 150.943 16.3392 150.865C16.2732 150.841 16.2133 150.817 16.1473 150.793C15.9495 150.715 15.7577 150.631 15.5659 150.547C15.47 150.505 15.3741 150.469 15.2842 150.421C15.0084 150.289 14.7387 150.151 14.4809 150.001C12.317 148.755 11.238 147.112 11.244 145.476L11.232 150.193C11.226 151.83 12.305 153.466 14.4689 154.719C14.7267 154.869 14.9964 155.007 15.2722 155.139C15.3621 155.181 15.464 155.223 15.5539 155.265C15.7157 155.336 15.8776 155.414 16.0455 155.48C16.0754 155.492 16.1054 155.504 16.1354 155.51C16.1953 155.534 16.2612 155.558 16.3272 155.582C16.543 155.66 16.7708 155.738 16.9926 155.81C17.0705 155.834 17.1484 155.858 17.2263 155.882C17.2803 155.9 17.3283 155.918 17.3822 155.93C17.4721 155.954 17.568 155.972 17.6639 155.996C17.8917 156.056 18.1135 156.11 18.3473 156.164C18.4072 156.176 18.4672 156.194 18.5271 156.206C18.6171 156.224 18.707 156.236 18.7969 156.254C18.9887 156.29 19.1865 156.326 19.3783 156.356C19.4562 156.368 19.5342 156.386 19.6121 156.397C19.696 156.409 19.786 156.415 19.8699 156.427C20.0497 156.451 20.2355 156.469 20.4213 156.487C20.5112 156.493 20.5952 156.511 20.6851 156.517C20.769 156.523 20.847 156.523 20.9309 156.529C21.1167 156.541 21.3025 156.553 21.4883 156.559C21.5842 156.565 21.6741 156.571 21.7701 156.571C21.842 156.571 21.9199 156.571 21.9918 156.571C22.1897 156.571 22.3935 156.571 22.5913 156.571C22.6932 156.571 22.7891 156.571 22.891 156.571C22.9509 156.571 23.0109 156.559 23.0649 156.559C23.3106 156.547 23.5624 156.529 23.8082 156.511C23.9101 156.505 24.006 156.499 24.1079 156.493C24.1558 156.487 24.2038 156.481 24.2517 156.475C24.3237 156.469 24.4016 156.457 24.4735 156.451C24.7313 156.421 24.9831 156.386 25.2348 156.344C25.2948 156.332 25.3607 156.326 25.4207 156.314C25.4507 156.308 25.4806 156.308 25.5105 156.302C25.6304 156.278 25.7444 156.248 25.8643 156.224C26.0681 156.182 26.2719 156.14 26.4697 156.092C26.6136 156.056 26.7574 156.014 26.9013 155.978C27.0931 155.924 27.2789 155.876 27.4647 155.816C27.5067 155.804 27.5487 155.792 27.5847 155.78C27.8124 155.708 28.0342 155.63 28.25 155.546C28.28 155.534 28.31 155.522 28.346 155.51C28.5857 155.414 28.8195 155.319 29.0472 155.211C29.1132 155.181 29.1851 155.151 29.251 155.115C29.5028 154.995 29.7546 154.863 29.9884 154.725C30.0364 154.701 30.0783 154.671 30.1203 154.647C30.1622 154.623 30.1982 154.599 30.2401 154.569C30.3061 154.527 30.372 154.485 30.438 154.443C30.4979 154.401 30.5578 154.365 30.6118 154.323C30.6717 154.281 30.7377 154.24 30.7976 154.192C30.8516 154.15 30.9055 154.108 30.9595 154.066C31.0194 154.024 31.0733 153.976 31.1333 153.934C31.1872 153.892 31.2352 153.85 31.2831 153.808C31.3371 153.76 31.391 153.718 31.439 153.67C31.463 153.652 31.481 153.634 31.5049 153.616C31.5229 153.598 31.5409 153.58 31.5589 153.562C31.6429 153.478 31.7267 153.4 31.8046 153.316C31.8286 153.286 31.8586 153.262 31.8826 153.232C31.9845 153.125 32.0805 153.011 32.1644 152.903C32.1704 152.897 32.1703 152.891 32.1763 152.891C32.1943 152.867 32.2123 152.837 32.2363 152.813C32.2903 152.741 32.3442 152.675 32.3922 152.603C32.4161 152.561 32.4461 152.525 32.4701 152.483C32.5121 152.417 32.554 152.351 32.5899 152.291C32.6019 152.273 32.614 152.255 32.6199 152.237C32.6379 152.213 32.6439 152.183 32.6619 152.159C32.6919 152.106 32.7218 152.052 32.7458 151.998C32.7698 151.95 32.7878 151.908 32.8117 151.86C32.8357 151.806 32.8597 151.752 32.8837 151.692C32.8957 151.668 32.9077 151.644 32.9137 151.62C32.9197 151.596 32.9256 151.572 32.9376 151.554C32.9556 151.5 32.9736 151.446 32.9916 151.398C33.0036 151.35 33.0215 151.302 33.0335 151.254C33.0455 151.2 33.0635 151.146 33.0755 151.092C33.0814 151.062 33.0935 151.033 33.0995 151.009C33.1055 150.991 33.1055 150.967 33.1115 150.949C33.1234 150.895 33.1295 150.841 33.1355 150.787C33.1415 150.739 33.1474 150.691 33.1534 150.643C33.1594 150.589 33.1594 150.535 33.1654 150.475C33.1654 150.445 33.1714 150.409 33.1714 150.379C33.1714 150.349 33.1714 150.313 33.1714 150.283L33.1834 145.566C33.1834 145.62 33.1774 145.686 33.1714 145.751Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M29.9404 141.028C34.2384 143.51 34.2624 147.532 29.9944 150.013C25.7264 152.495 18.7789 152.495 14.4809 150.013C10.1829 147.532 10.1649 143.51 14.4329 141.028C18.7009 138.546 25.6424 138.546 29.9404 141.028Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<line x1="22.2247" y1="142.207" x2="22.2247" y2="147.793" stroke="#DA3635" stroke-width="2" stroke-linecap="round"/>
-<line x1="25.7753" y1="145.207" x2="18.2247" y2="145.207" stroke="#DA3635" stroke-width="2" stroke-linecap="round"/>
-<path d="M180.108 74.6321C183.506 76.5827 183.52 79.7463 180.149 81.7037C176.779 83.6543 171.29 83.6543 167.892 81.7037C164.493 79.7532 164.48 76.5896 167.857 74.6321C171.235 72.6747 176.716 72.6816 180.108 74.6321Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" fill="white"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" fill="white"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" fill="white"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" fill="white"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" fill="white"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" fill="white"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.176 80.1489C166.007 81.1124 162.53 83.381 163.575 81.1787L165.176 80.1489Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" fill="white"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" fill="white"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" fill="white"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" fill="white"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" fill="white"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" fill="#DA3635"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.969 56.0612C167.612 56.5506 166.71 57.4835 166.042 57.5141C165.211 57.5651 165.043 55.8981 165.456 55.3577C164.686 54.7867 164.426 55.7808 164.233 56.3518C163.957 57.1828 163.626 57.8863 163.106 58.5898C162.55 59.3749 161.964 60.1396 161.536 61.0062C161.097 61.9187 160.521 62.6376 159.966 63.4532C160.44 63.6011 160.588 63.8764 160.914 64.1873C161.566 63.7132 162.107 62.8007 162.611 62.1634C163.116 61.4956 163.641 60.889 163.952 60.1039C164.263 60.7258 164.064 61.6893 164.64 62.0972C165.099 62.4081 165.945 62.3572 166.486 62.3572C167.072 62.3572 167.893 62.5713 168.219 62.0462C168.678 61.3121 168.168 60.1192 168.515 59.3545C169.448 60.058 169.738 62.505 170.003 63.6011C170.151 64.2536 170.182 66.2622 171.064 66.3795C171.242 66.3947 171.834 66.15 171.961 66.0379C172.257 65.7626 172.221 65.7932 172.124 65.3548C172.012 64.8501 171.665 64.4065 171.538 63.8866C171.405 63.3462 171.324 62.7905 171.263 62.2399C171.099 60.787 170.529 59.7419 169.973 58.4012C169.662 57.6314 169.565 56.8973 168.795 56.4589C168.525 56.26 168.326 56.0969 167.969 56.0612Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" fill="white"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" fill="white"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M168.245 61.9441C169.29 63.0197 169.208 64.9009 169.014 66.2569C168.821 67.5977 167.725 69.3922 168.637 70.5494C169.193 71.2682 169.601 72.0839 170.172 72.7517C170.63 73.2921 171.329 73.8783 171.283 74.6787C171.268 75.005 171.003 75.5097 170.697 75.6728C170.207 75.9328 170.029 75.525 169.667 75.1324C168.979 74.3626 168.489 73.5623 167.643 72.9607C166.68 72.2776 166.435 71.6862 166.221 70.5749C165.94 69.2698 165.879 67.9596 165.716 66.6699C165.42 68.1585 165.685 69.6573 165.42 71.1306C165.273 71.9972 165.094 72.8129 165.16 73.7101C165.242 74.7858 165.487 75.8512 165.42 76.9422C165.369 77.712 165.273 78.1198 164.523 78.3288C164.309 78.3798 163.917 78.5226 163.738 78.4257C163.295 78.1963 163.381 76.3661 163.346 75.943C163.131 72.8741 162.367 69.8051 162.576 66.7005C162.642 65.8491 162.739 64.7225 162.984 63.9221C163.213 63.1523 163.636 61.9798 164.289 61.47C164.646 62.3825 165.349 62.3366 166.313 62.3213C166.94 62.3009 167.786 62.4131 168.245 61.9441Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" fill="white"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" fill="white"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" fill="white"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" fill="white"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" fill="white"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" fill="white"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M177.196 64.0343C176.758 64.4421 176.967 65.9307 175.973 65.5841C174.943 65.2068 175.81 64.4574 175.958 63.6876C176.365 63.8355 176.885 63.8049 177.196 64.0343Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" fill="white"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" fill="white"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" fill="white"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" fill="white"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" fill="white"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" fill="white"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" fill="white"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" fill="white"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" fill="white"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" fill="white"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" fill="white"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" fill="white"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" fill="white"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" fill="#DA3635"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3015 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" fill="white"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3016 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3015 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" fill="white"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3016 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M61.7227 45.2692C63.499 46.2931 63.5063 47.9537 61.7444 48.9811C59.9825 50.005 57.1136 50.005 55.3372 48.9811C53.5609 47.9573 53.5537 46.2967 55.3192 45.2692C57.0847 44.2418 59.95 44.2454 61.7227 45.2692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M58.6665 22.5L58.6665 47.1667" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M66.135 11.8464L66.0994 24.5038C66.0994 24.6154 66.0733 24.7269 66.0234 24.8385L66.059 12.1811C66.1089 12.0719 66.135 11.958 66.135 11.8464Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M50.5181 26.2083L50.5537 13.5509C50.5537 13.8974 50.7886 14.2368 51.2253 14.4884L51.1897 27.1458C50.753 26.8918 50.5181 26.5524 50.5181 26.2083Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.0591 12.181L66.0235 24.8384L64.5591 28.0401L64.597 15.3804L66.0591 12.181Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M64.5972 15.3804L64.5616 28.0377C64.3551 28.4911 63.7451 28.8471 62.9619 28.9681L62.9975 16.3107C63.7807 16.1897 64.3907 15.8361 64.5972 15.3804Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M55.2841 16.8283L55.2485 29.4856L51.1899 27.1431L51.2255 14.4857L55.2841 16.8283Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M62.9951 16.3107L62.9595 28.9704L57.439 29.8272L57.4769 17.1698L62.9951 16.3107Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M57.4767 17.17L57.4411 29.8274C56.6579 29.9484 55.8224 29.8179 55.248 29.4856L55.2837 16.8282C55.858 17.1605 56.6935 17.2911 57.4767 17.17Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.4657 10.9115C66.04 11.2438 66.2679 11.7279 66.059 12.1813L64.597 15.3806C64.3905 15.8339 63.7806 16.1899 62.9973 16.311L57.4768 17.1678C56.6936 17.2888 55.8581 17.1583 55.2838 16.826L51.2253 14.4835C50.6509 14.1512 50.423 13.667 50.6295 13.2137L52.0916 10.0143C52.298 9.56101 52.9104 9.205 53.6912 9.08396L59.2118 8.22716C59.995 8.10374 60.8304 8.23428 61.4048 8.56656L65.4657 10.9115Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.1279 10.2183C66.1256 10.2587 66.1232 10.2967 66.1184 10.337C66.116 10.3702 66.1113 10.4058 66.1065 10.4391C66.1018 10.477 66.0947 10.5174 66.0876 10.5554C66.0804 10.5886 66.0733 10.6242 66.0662 10.6574C66.0567 10.6954 66.0496 10.7334 66.0377 10.7713C66.0282 10.8046 66.0187 10.8402 66.0069 10.8734C65.995 10.9114 65.9831 10.9493 65.9689 10.9849C65.957 11.0182 65.9452 11.0514 65.9309 11.0846C65.9143 11.125 65.8977 11.1629 65.8811 11.2033C65.8668 11.2365 65.8502 11.2697 65.836 11.3006C65.817 11.3386 65.7957 11.3789 65.7767 11.4169C65.7601 11.4478 65.7434 11.4786 65.7244 11.5118C65.6983 11.5569 65.6698 11.6044 65.639 11.6495C65.62 11.678 65.6034 11.7065 65.5844 11.7326C65.5488 11.7824 65.5132 11.8322 65.4752 11.8821C65.4586 11.9034 65.442 11.9272 65.4254 11.9485C65.3613 12.0269 65.2948 12.1076 65.2236 12.1835C65.2047 12.2025 65.1857 12.2239 65.1667 12.2428C65.1097 12.3022 65.0528 12.3615 64.9911 12.4185C64.9626 12.4446 64.9341 12.4707 64.9056 12.4968C64.87 12.53 64.832 12.5633 64.7917 12.5965C64.7561 12.6273 64.7205 12.6558 64.6849 12.6843C64.6445 12.7175 64.6042 12.7484 64.5615 12.7792C64.5235 12.8077 64.4855 12.8362 64.4452 12.8647C64.4024 12.8955 64.3574 12.9264 64.3146 12.9572C64.2743 12.9857 64.2316 13.0142 64.1912 13.0403C64.1461 13.0712 64.0987 13.0996 64.0512 13.1305C63.9919 13.1685 63.9325 13.2041 63.8708 13.242C63.7023 13.3394 63.5243 13.4319 63.3463 13.5174C63.2988 13.5411 63.2513 13.5625 63.2039 13.5838C63.0401 13.6598 62.8764 13.731 62.7055 13.7974C62.6841 13.8069 62.6627 13.8164 62.639 13.8235C62.4563 13.8924 62.2688 13.9564 62.0813 14.0158C61.9507 14.0561 61.8155 14.0941 61.6802 14.1297C61.5781 14.1582 61.4784 14.1867 61.374 14.2128C61.2316 14.246 61.0868 14.2745 60.9444 14.3053C60.84 14.3267 60.7355 14.3504 60.6311 14.3694C60.5884 14.3765 60.5433 14.3837 60.4982 14.3908C60.3202 14.4193 60.1398 14.4454 59.9595 14.4667C59.9072 14.4738 59.855 14.481 59.8028 14.4857C59.6984 14.4976 59.594 14.5023 59.4895 14.5118C59.3139 14.5261 59.1406 14.5403 58.9626 14.5474C58.8511 14.5522 58.7371 14.5545 58.6256 14.5569C58.4832 14.5593 58.3408 14.5617 58.1984 14.5593C58.0797 14.5569 57.961 14.5545 57.8424 14.5498C57.7095 14.545 57.5789 14.5379 57.4484 14.5284C57.3273 14.5189 57.2087 14.5094 57.0876 14.4976C56.9571 14.4857 56.8289 14.4715 56.6984 14.4549C56.5821 14.4406 56.4658 14.424 56.3495 14.405C56.2118 14.3837 56.0742 14.3599 55.9365 14.3338C55.8273 14.3125 55.7205 14.2911 55.6137 14.2674C55.45 14.2318 55.2909 14.1914 55.1296 14.1487C55.0251 14.1202 54.9207 14.0965 54.8187 14.0656C54.7641 14.049 54.7095 14.0324 54.6549 14.0158C54.4935 13.9659 54.3368 13.9113 54.1802 13.8544C54.1351 13.8378 54.09 13.8212 54.0449 13.8045C53.9025 13.75 53.7672 13.6882 53.6296 13.6289C53.5631 13.6004 53.4943 13.5719 53.4302 13.5411C53.2332 13.4485 53.0433 13.3489 52.8582 13.242C51.3226 12.3568 50.5584 11.1938 50.5607 10.0332L50.5513 13.3821C50.5489 14.5427 51.3131 15.7056 52.8487 16.5933C53.0315 16.7001 53.2237 16.7974 53.4207 16.8923C53.4872 16.9232 53.556 16.9493 53.6224 16.9802C53.7387 17.0324 53.8527 17.0846 53.9737 17.1321C53.9951 17.1392 54.0164 17.1463 54.0378 17.1558C54.0829 17.1724 54.128 17.189 54.1731 17.2056C54.3274 17.2626 54.4864 17.3172 54.6454 17.367C54.7 17.3836 54.7546 17.4026 54.8091 17.4192C54.8471 17.4311 54.8827 17.443 54.9183 17.4525C54.9824 17.4715 55.0512 17.4833 55.1177 17.5023C55.2767 17.545 55.4381 17.5854 55.6019 17.621C55.6446 17.6305 55.6873 17.6423 55.73 17.6518C55.7941 17.6661 55.8582 17.6732 55.9223 17.6851C56.0599 17.7112 56.1976 17.7349 56.3353 17.7563C56.3898 17.7658 56.4444 17.7776 56.499 17.7847C56.5583 17.7942 56.6201 17.7966 56.6818 17.8061C56.8123 17.8227 56.9405 17.837 57.071 17.8488C57.1327 17.8559 57.1944 17.8654 57.2561 17.8702C57.3131 17.8749 57.3724 17.8749 57.4294 17.8797C57.5599 17.8892 57.6929 17.8963 57.8234 17.901C57.8898 17.9034 57.9563 17.9105 58.0204 17.9105C58.0726 17.9129 58.1272 17.9082 58.1794 17.9105C58.3218 17.9129 58.4642 17.9105 58.6066 17.9082C58.6778 17.9058 58.749 17.9105 58.8178 17.9082C58.8606 17.9058 58.9009 17.901 58.9436 17.8987C59.1193 17.8915 59.2949 17.8773 59.4705 17.8631C59.5417 17.8583 59.6129 17.8559 59.6818 17.8488C59.715 17.8465 59.7482 17.8393 59.7814 17.837C59.8337 17.8322 59.8859 17.8251 59.9404 17.818C60.1208 17.7966 60.3012 17.7705 60.4792 17.742C60.5219 17.7349 60.567 17.7278 60.6098 17.7207C60.6311 17.7159 60.6525 17.7135 60.6738 17.7112C60.7593 17.6969 60.84 17.6756 60.9254 17.6566C61.0702 17.6281 61.2126 17.5996 61.355 17.564C61.4594 17.5379 61.5591 17.5094 61.6612 17.4809C61.7964 17.4453 61.9317 17.4074 62.0623 17.367C62.0908 17.3575 62.1192 17.3504 62.1477 17.3433C62.3091 17.2911 62.4658 17.2341 62.62 17.1772C62.6414 17.1677 62.6628 17.1582 62.6865 17.151C62.8574 17.0846 63.0211 17.0134 63.1849 16.9374C63.2324 16.9161 63.2798 16.8923 63.3273 16.871C63.5077 16.7832 63.6833 16.693 63.8518 16.5957C63.8827 16.5767 63.9159 16.5577 63.9468 16.5387C63.9752 16.5221 64.0037 16.5031 64.0322 16.4841C64.0797 16.4533 64.1272 16.4248 64.1746 16.3939C64.2173 16.3654 64.2577 16.337 64.298 16.3109C64.3431 16.28 64.3858 16.2492 64.4286 16.2183C64.4689 16.1898 64.5069 16.1613 64.5449 16.1305C64.5852 16.0996 64.6279 16.0664 64.6659 16.0355C64.7015 16.0071 64.7371 15.9762 64.7727 15.9454C64.8107 15.9121 64.8487 15.8813 64.8843 15.848C64.8985 15.8338 64.9151 15.8219 64.9293 15.8077C64.9436 15.7958 64.9555 15.7816 64.9673 15.7697C65.029 15.7128 65.086 15.6534 65.143 15.5941C65.1619 15.5751 65.1809 15.5537 65.1999 15.5348C65.2711 15.4564 65.3399 15.3781 65.4016 15.2998C65.404 15.2974 65.4088 15.2927 65.4112 15.2903C65.4254 15.2713 65.4373 15.2523 65.4515 15.2357C65.4895 15.1859 65.5275 15.136 65.5607 15.0862C65.5797 15.0577 65.5963 15.0316 65.6153 15.0031C65.6437 14.958 65.6746 14.9106 65.7007 14.8655C65.7078 14.8536 65.7173 14.8394 65.7244 14.8275C65.7339 14.8085 65.7434 14.7895 65.7529 14.7705C65.7743 14.7325 65.7933 14.6922 65.8122 14.6542C65.8289 14.621 65.8431 14.5878 65.8574 14.5569C65.874 14.5189 65.8906 14.4786 65.9072 14.4382C65.9143 14.4216 65.9238 14.4026 65.9285 14.386C65.9357 14.3694 65.938 14.3552 65.9452 14.3386C65.9594 14.3006 65.9713 14.2626 65.9832 14.227C65.9926 14.1938 66.0045 14.1582 66.014 14.125C66.0235 14.087 66.033 14.049 66.0425 14.011C66.0472 13.9897 66.0543 13.9707 66.0567 13.9493C66.0591 13.9351 66.0615 13.9208 66.0638 13.9066C66.071 13.8686 66.0757 13.8283 66.0828 13.7903C66.0876 13.7571 66.0923 13.7215 66.0947 13.6882C66.0994 13.6479 66.1018 13.6099 66.1042 13.5696C66.1066 13.5458 66.1089 13.5245 66.1089 13.5007C66.1089 13.477 66.1089 13.4557 66.1089 13.4319L66.1184 10.083C66.135 10.1258 66.1303 10.1709 66.1279 10.2183Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.835 6.86938C66.8848 8.63045 66.9038 11.4857 63.873 13.2467C60.8421 15.0078 55.9102 15.0078 52.8604 13.2467C49.8106 11.4857 49.7963 8.63045 52.8271 6.86938C55.858 5.10832 60.7852 5.10832 63.835 6.86938Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M62.4301 8.70399C64.6991 9.86459 64.7133 11.7443 62.4586 12.9025C60.2039 14.0631 56.5346 14.0631 54.2656 12.9025C51.9967 11.742 51.9848 9.86221 54.2395 8.70399C56.4942 7.54577 60.1611 7.54577 62.4301 8.70399Z" fill="#DA3635"/>
-<path d="M63.0615 7.15904C65.6817 8.6709 65.6984 11.125 63.0947 12.6369C60.4911 14.1487 56.2546 14.1487 53.6344 12.6369C51.0141 11.125 51.0022 8.6709 53.6059 7.15904C56.2095 5.64718 60.4413 5.64718 63.0615 7.15904Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.1279 23.4737C66.1256 23.5141 66.1232 23.552 66.1184 23.5924C66.1161 23.6256 66.1113 23.6612 66.1066 23.6944C66.1018 23.7324 66.0947 23.7728 66.0876 23.8107C66.0805 23.844 66.0734 23.8796 66.0662 23.9128C66.0567 23.9508 66.0496 23.9887 66.0378 24.0267C66.0283 24.0599 66.0188 24.0955 66.0069 24.1288C65.995 24.1667 65.9832 24.2047 65.9689 24.2427C65.957 24.2759 65.9452 24.3091 65.9309 24.3424C65.9143 24.3827 65.8977 24.4207 65.8811 24.461C65.8669 24.4943 65.8503 24.5275 65.836 24.5583C65.817 24.5963 65.7957 24.6367 65.7767 24.6746C65.7601 24.7055 65.7434 24.7364 65.7244 24.7696C65.6983 24.8147 65.6699 24.8621 65.639 24.9072C65.62 24.9357 65.6034 24.9642 65.5844 24.9903C65.5488 25.0402 65.5132 25.09 65.4753 25.1398C65.4586 25.1612 65.442 25.1849 65.4254 25.2063C65.3613 25.2846 65.2949 25.3653 65.2237 25.4413C65.2047 25.4602 65.1857 25.4816 65.1667 25.5006C65.1097 25.5599 65.0528 25.6193 64.9911 25.6762C64.9626 25.7023 64.9341 25.7284 64.9056 25.7545C64.87 25.7878 64.8321 25.821 64.7917 25.8542C64.7561 25.8851 64.7205 25.9136 64.6849 25.942C64.6445 25.9753 64.6042 26.0061 64.5615 26.037C64.5235 26.0655 64.4855 26.0939 64.4452 26.1224C64.4025 26.1533 64.3574 26.1841 64.3147 26.215C64.2743 26.2435 64.2316 26.2719 64.1912 26.2981C64.1461 26.3289 64.0987 26.3574 64.0512 26.3882C63.9919 26.4262 63.9325 26.4618 63.8708 26.4998C63.7023 26.5971 63.5243 26.6897 63.3463 26.7751C63.2989 26.7988 63.2514 26.8202 63.2039 26.8416C63.0401 26.9175 62.8764 26.9887 62.7055 27.0552C62.6841 27.0647 62.6628 27.0742 62.639 27.0813C62.4563 27.1501 62.2688 27.2142 62.0813 27.2735C61.9507 27.3139 61.8155 27.3518 61.6802 27.3874C61.5781 27.4159 61.4784 27.4444 61.374 27.4705C61.2316 27.5037 61.0868 27.5322 60.9444 27.5631C60.84 27.5844 60.7356 27.6082 60.6311 27.6272C60.5884 27.6343 60.5433 27.6414 60.4982 27.6485C60.3202 27.677 60.1398 27.7031 59.9595 27.7245C59.9072 27.7316 59.855 27.7387 59.8028 27.7435C59.6984 27.7553 59.594 27.7601 59.4895 27.7696C59.3139 27.7838 59.1406 27.798 58.9626 27.8052C58.8511 27.8099 58.7372 27.8123 58.6256 27.8147C58.4832 27.817 58.3408 27.8194 58.1984 27.817C58.0797 27.8147 57.961 27.8123 57.8424 27.8075C57.7095 27.8028 57.5789 27.7957 57.4484 27.7862C57.3273 27.7767 57.2087 27.7672 57.0876 27.7553C56.9571 27.7435 56.8289 27.7292 56.6984 27.7126C56.5821 27.6984 56.4658 27.6818 56.3495 27.6628C56.2118 27.6414 56.0742 27.6177 55.9365 27.5916C55.8273 27.5702 55.7205 27.5488 55.6137 27.5251C55.45 27.4895 55.2909 27.4492 55.1296 27.4064C55.0251 27.378 54.9207 27.3542 54.8187 27.3234C54.7641 27.3067 54.7095 27.2901 54.6549 27.2735C54.4935 27.2237 54.3368 27.1691 54.1802 27.1121C54.1351 27.0955 54.09 27.0789 54.0449 27.0623C53.9025 27.0077 53.7672 26.946 53.6296 26.8867C53.5631 26.8582 53.4943 26.8297 53.4302 26.7988C53.2332 26.7063 53.0433 26.6066 52.8582 26.4998C51.3226 25.6145 50.5584 24.4515 50.5607 23.2886L50.5513 26.6375C50.5489 27.798 51.3131 28.961 52.8487 29.8487C53.0315 29.9555 53.2237 30.0528 53.4207 30.1477C53.4872 30.1786 53.556 30.2047 53.6224 30.2355C53.7387 30.2877 53.8527 30.34 53.9737 30.3874C53.9951 30.3945 54.0164 30.4017 54.0378 30.4112C54.0829 30.4278 54.128 30.4444 54.1731 30.461C54.3274 30.518 54.4864 30.5726 54.6454 30.6224C54.7 30.639 54.7546 30.658 54.8092 30.6746C54.8471 30.6865 54.8827 30.6983 54.9183 30.7078C54.9824 30.7268 55.0513 30.7387 55.1177 30.7577C55.2767 30.8004 55.4381 30.8407 55.6019 30.8763C55.6446 30.8858 55.6873 30.8977 55.73 30.9072C55.7941 30.9214 55.8582 30.9286 55.9223 30.9404C56.06 30.9665 56.1976 30.9903 56.3353 31.0116C56.3899 31.0211 56.4444 31.033 56.499 31.0401C56.5584 31.0496 56.6201 31.052 56.6818 31.0615C56.8123 31.0781 56.9405 31.0923 57.071 31.1042C57.1327 31.1113 57.1944 31.1208 57.2561 31.1256C57.3131 31.1303 57.3724 31.1303 57.4294 31.1351C57.5599 31.1446 57.6929 31.1517 57.8234 31.1564C57.8899 31.1588 57.9563 31.1659 58.0204 31.1659C58.0726 31.1683 58.1272 31.1635 58.1794 31.1659C58.3218 31.1683 58.4642 31.1659 58.6066 31.1635C58.6778 31.1612 58.749 31.1659 58.8178 31.1635C58.8606 31.1612 58.9009 31.1564 58.9436 31.154C59.1193 31.1469 59.2949 31.1327 59.4705 31.1184C59.5417 31.1137 59.6129 31.1113 59.6818 31.1042C59.715 31.1018 59.7482 31.0947 59.7815 31.0923C59.8337 31.0876 59.8859 31.0805 59.9405 31.0733C60.1208 31.052 60.3012 31.0259 60.4792 30.9974C60.5219 30.9903 60.5671 30.9832 60.6098 30.976C60.6311 30.9713 60.6525 30.9689 60.6739 30.9665C60.7593 30.9523 60.84 30.9309 60.9254 30.912C61.0702 30.8835 61.2126 30.855 61.355 30.8194C61.4595 30.7933 61.5591 30.7648 61.6612 30.7363C61.7965 30.7007 61.9318 30.6627 62.0623 30.6224C62.0908 30.6129 62.1193 30.6058 62.1477 30.5987C62.3091 30.5465 62.4658 30.4895 62.62 30.4325C62.6414 30.423 62.6628 30.4135 62.6865 30.4064C62.8574 30.34 63.0211 30.2688 63.1849 30.1928C63.2324 30.1715 63.2798 30.1477 63.3273 30.1264C63.5077 30.0385 63.6833 29.9484 63.8518 29.851C63.8827 29.8321 63.9159 29.8131 63.9468 29.7941C63.9752 29.7775 64.0037 29.7585 64.0322 29.7395C64.0797 29.7086 64.1272 29.6802 64.1746 29.6493C64.2174 29.6208 64.2577 29.5923 64.298 29.5662C64.3431 29.5354 64.3859 29.5045 64.4286 29.4737C64.4689 29.4452 64.5069 29.4167 64.5449 29.3859C64.5852 29.355 64.6279 29.3218 64.6659 29.2909C64.7015 29.2624 64.7371 29.2316 64.7727 29.2007C64.8107 29.1675 64.8487 29.1366 64.8843 29.1034C64.8985 29.0892 64.9151 29.0773 64.9294 29.0631C64.9436 29.0512 64.9555 29.037 64.9673 29.0251C65.0291 28.9681 65.086 28.9088 65.143 28.8495C65.162 28.8305 65.1809 28.8091 65.1999 28.7901C65.2711 28.7118 65.34 28.6335 65.4017 28.5552C65.404 28.5528 65.4088 28.548 65.4112 28.5457C65.4254 28.5267 65.4373 28.5077 65.4515 28.4911C65.4895 28.4412 65.5275 28.3914 65.5607 28.3416C65.5797 28.3131 65.5963 28.287 65.6153 28.2585C65.6438 28.2134 65.6746 28.1659 65.7007 28.1208C65.7078 28.109 65.7173 28.0947 65.7244 28.0829C65.7339 28.0639 65.7434 28.0449 65.7529 28.0259C65.7743 27.9879 65.7933 27.9476 65.8123 27.9096C65.8289 27.8764 65.8431 27.8431 65.8574 27.8123C65.874 27.7743 65.8906 27.734 65.9072 27.6936C65.9143 27.677 65.9238 27.658 65.9286 27.6414C65.9357 27.6248 65.9381 27.6105 65.9452 27.5939C65.9594 27.556 65.9713 27.518 65.9832 27.4824C65.9927 27.4492 66.0045 27.4136 66.014 27.3803C66.0235 27.3424 66.033 27.3044 66.0425 27.2664C66.0473 27.245 66.0544 27.2261 66.0567 27.2047C66.0591 27.1905 66.0615 27.1762 66.0639 27.162C66.071 27.124 66.0757 27.0837 66.0828 27.0457C66.0876 27.0125 66.0923 26.9769 66.0947 26.9436C66.0995 26.9033 66.1018 26.8653 66.1042 26.825C66.1066 26.8012 66.1089 26.7799 66.1089 26.7561C66.1089 26.7324 66.1089 26.711 66.1089 26.6873L66.1184 23.3384C66.1351 23.3835 66.1303 23.4286 66.1279 23.4737Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M75.2494 12.8928C75.2185 12.9189 75.1877 12.9474 75.1568 12.9735C75.1283 12.9948 75.0999 13.0186 75.0714 13.0399C75.0382 13.0637 75.0073 13.0874 74.9741 13.1111C74.9432 13.1325 74.9148 13.1515 74.8839 13.1705C74.8507 13.1918 74.8151 13.2132 74.7795 13.2322C74.7486 13.2512 74.7154 13.2678 74.6821 13.2844C74.6465 13.3034 74.6086 13.3224 74.573 13.339C74.5398 13.3556 74.5065 13.3698 74.4709 13.3841C74.4306 13.4007 74.3902 13.4173 74.3475 13.4339C74.3119 13.4482 74.2787 13.46 74.2431 13.4719C74.2004 13.4861 74.1576 13.5004 74.1126 13.5122C74.077 13.5217 74.0413 13.5336 74.0057 13.5431C73.9535 13.5573 73.8989 13.5692 73.842 13.5811C73.8088 13.5882 73.7755 13.5953 73.7399 13.6024C73.6782 13.6143 73.6141 13.6238 73.5501 13.6309C73.5216 13.6357 73.4931 13.6404 73.4646 13.6428C73.3602 13.6546 73.2534 13.6618 73.1442 13.6665C73.1157 13.6665 73.0872 13.6665 73.0587 13.6689C72.9733 13.6713 72.8879 13.6713 72.8024 13.6689C72.7621 13.6689 72.7241 13.6665 72.6838 13.6641C72.6315 13.6618 72.5817 13.657 72.5295 13.6546C72.482 13.6499 72.4346 13.6475 72.3871 13.6428C72.3349 13.638 72.2803 13.6309 72.2281 13.6238C72.1782 13.6167 72.1307 13.6095 72.0809 13.6024C72.0263 13.5929 71.9717 13.5834 71.9172 13.5739C71.8673 13.5645 71.8151 13.555 71.7653 13.5455C71.7107 13.5336 71.6537 13.5217 71.5967 13.5075C71.5255 13.4909 71.4567 13.4743 71.3831 13.4553C71.1885 13.4031 70.9915 13.3414 70.7969 13.2725C70.7447 13.2559 70.6949 13.2369 70.6426 13.2179C70.4694 13.1539 70.2961 13.085 70.1228 13.0091C70.0991 12.9996 70.0777 12.9901 70.054 12.9806C69.8713 12.8975 69.6885 12.8073 69.5058 12.7124C69.38 12.6459 69.2542 12.5747 69.1284 12.5035C69.0335 12.449 68.9385 12.3967 68.8436 12.3398C68.7154 12.2615 68.5873 12.176 68.4615 12.0929C68.3689 12.0312 68.2763 11.9743 68.1861 11.9102C68.1482 11.8841 68.1126 11.8556 68.0746 11.8295C67.9227 11.7203 67.7732 11.6064 67.6236 11.4901C67.5809 11.4569 67.5382 11.4236 67.4955 11.388C67.4101 11.3192 67.3294 11.248 67.2463 11.1768C67.1086 11.0605 66.971 10.9418 66.8357 10.8184C66.7502 10.7401 66.6672 10.6594 66.5817 10.5787C66.4749 10.4767 66.3705 10.3722 66.2684 10.2678C66.183 10.18 66.0976 10.0898 66.0145 9.9996C65.9219 9.89991 65.8317 9.79786 65.7416 9.6958C65.6585 9.60087 65.5802 9.50593 65.4995 9.41099C65.414 9.30656 65.3286 9.20213 65.2479 9.09533C65.1743 8.99802 65.1007 8.90308 65.0295 8.80578C64.9441 8.68948 64.861 8.57081 64.7803 8.45214C64.7162 8.3572 64.6522 8.26464 64.5928 8.16733C64.5003 8.02255 64.4124 7.8754 64.327 7.72825C64.2724 7.63332 64.2131 7.53838 64.1609 7.44107C64.1324 7.38885 64.1063 7.33664 64.0778 7.28442C63.9971 7.13015 63.9212 6.97588 63.85 6.81924C63.8286 6.77414 63.8072 6.72905 63.7882 6.68395C63.7242 6.54155 63.6696 6.39677 63.615 6.25199C63.5889 6.18079 63.558 6.11196 63.5319 6.04076C63.456 5.82953 63.3895 5.61592 63.3325 5.40469C62.8579 3.63413 63.1474 2.22433 63.9995 1.37939L61.5454 3.81925C60.6933 4.66656 60.4038 6.07636 60.8785 7.84455C60.9354 8.05578 61.0019 8.26701 61.0778 8.48062C61.1039 8.55182 61.1348 8.62065 61.1609 8.69185C61.2083 8.81527 61.2534 8.93631 61.3057 9.05973C61.3151 9.08109 61.3246 9.10245 61.3341 9.12144C61.3531 9.16653 61.3769 9.21163 61.3958 9.25672C61.467 9.411 61.543 9.56764 61.6237 9.72191C61.6522 9.77412 61.6783 9.82634 61.7068 9.87856C61.7258 9.91416 61.7424 9.94976 61.7614 9.98299C61.7946 10.0447 61.8349 10.104 61.8705 10.1634C61.956 10.3105 62.0438 10.4577 62.1387 10.6048C62.1625 10.6428 62.1838 10.6831 62.2099 10.7211C62.2479 10.7781 62.2883 10.8303 62.3262 10.8873C62.4069 11.0059 62.49 11.1246 62.5754 11.2433C62.6087 11.2907 62.6395 11.3382 62.6751 11.3857C62.7131 11.4355 62.7558 11.483 62.7938 11.5328C62.8768 11.6396 62.9599 11.7441 63.0477 11.8485C63.0881 11.8983 63.1261 11.9505 63.1688 11.998C63.2068 12.0431 63.2495 12.0858 63.2898 12.1333C63.38 12.2353 63.4702 12.3374 63.5628 12.4371C63.6102 12.4869 63.653 12.5391 63.7004 12.589C63.7384 12.6293 63.7788 12.6649 63.8167 12.7053C63.9188 12.8097 64.0232 12.9141 64.13 13.0162C64.1822 13.066 64.2321 13.1206 64.2867 13.1705C64.3175 13.1989 64.3531 13.2274 64.384 13.2559C64.5193 13.3793 64.6569 13.498 64.7946 13.6143C64.8492 13.6618 64.9037 13.7116 64.9607 13.7591C64.9868 13.7804 65.0153 13.8018 65.0438 13.8232C65.0865 13.8588 65.1292 13.892 65.1743 13.9252C65.3215 14.0415 65.4734 14.1554 65.6253 14.2646C65.6632 14.2907 65.6988 14.3192 65.7368 14.3453C65.7558 14.3572 65.7724 14.3714 65.7914 14.3857C65.865 14.4355 65.9409 14.4806 66.0145 14.5304C66.1403 14.6135 66.2685 14.6989 66.3966 14.7773C66.4916 14.8342 66.5865 14.8864 66.6814 14.941C66.8072 15.0122 66.933 15.0858 67.0588 15.1499C67.0849 15.1641 67.1134 15.1807 67.1395 15.195C67.2938 15.2733 67.4504 15.3493 67.607 15.4181C67.6308 15.4276 67.6522 15.4371 67.6759 15.4466C67.8491 15.5225 68.0224 15.5913 68.1956 15.6554C68.2479 15.6744 68.2977 15.6934 68.3499 15.71C68.5445 15.7788 68.7392 15.8405 68.9361 15.8928C68.9741 15.9023 69.0097 15.9118 69.0477 15.9212C69.0809 15.9307 69.1142 15.9355 69.1498 15.945C69.2067 15.9592 69.2637 15.9711 69.3183 15.983C69.3705 15.9924 69.4203 16.0019 69.4702 16.0114C69.5248 16.0209 69.5794 16.0304 69.6339 16.0399C69.6838 16.047 69.7336 16.0542 69.7835 16.0613C69.8357 16.0684 69.8903 16.0755 69.9425 16.0803C69.9899 16.085 70.0374 16.0898 70.0872 16.0945C70.1395 16.0992 70.1893 16.1016 70.2415 16.104C70.2629 16.104 70.2842 16.1064 70.3056 16.1087C70.3246 16.1087 70.3436 16.1087 70.3626 16.1087C70.4504 16.1111 70.5358 16.1111 70.6189 16.1087C70.6474 16.1087 70.6759 16.1087 70.7044 16.1064C70.8135 16.1016 70.9203 16.0945 71.0248 16.0826C71.0295 16.0826 71.0342 16.0826 71.039 16.0826C71.0627 16.0803 71.0865 16.0755 71.1102 16.0708C71.1743 16.0613 71.2383 16.0518 71.3 16.0399C71.3333 16.0328 71.3665 16.0257 71.3997 16.0186C71.4543 16.0067 71.5089 15.9948 71.5635 15.9806C71.5778 15.9758 71.5944 15.9735 71.6086 15.9711C71.63 15.964 71.6513 15.9568 71.6727 15.9521C71.7154 15.9379 71.7605 15.926 71.8009 15.9117C71.8365 15.8999 71.872 15.8856 71.9053 15.8738C71.9456 15.8572 71.9884 15.8405 72.0287 15.8239C72.0477 15.8168 72.0667 15.8097 72.0833 15.8026C72.0999 15.7955 72.1141 15.786 72.1307 15.7788C72.1687 15.7622 72.2043 15.7432 72.2399 15.7243C72.2732 15.7076 72.304 15.6887 72.3372 15.672C72.3728 15.6507 72.4061 15.6317 72.4417 15.6103C72.4607 15.5985 72.4796 15.589 72.4986 15.5771C72.5105 15.57 72.5224 15.5605 72.5342 15.551C72.5675 15.5273 72.6007 15.5035 72.6316 15.4798C72.66 15.4584 72.6885 15.4371 72.717 15.4133C72.7478 15.3872 72.7787 15.3611 72.8096 15.3326C72.8262 15.316 72.8452 15.3018 72.8641 15.2852C72.8808 15.2686 72.8974 15.2519 72.914 15.2353L75.3681 12.7955C75.3206 12.8311 75.2826 12.8619 75.2494 12.8928Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M76.0208 8.76783C76.963 12.2852 74.8887 14.3857 71.3855 13.4577C67.8824 12.5297 64.2772 8.92448 63.3349 5.40709C62.3927 1.88971 64.4694 -0.208383 67.9726 0.719618C71.4757 1.64762 75.0785 5.25045 76.0208 8.76783Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M73.0586 8.94765C73.0776 9.01648 73.0349 9.05683 72.9685 9.04021L66.6172 7.35747C66.5484 7.33848 66.4772 7.26728 66.4606 7.20082L66.012 5.52283C65.993 5.45162 66.0334 5.41365 66.1022 5.43026L72.4534 7.11301C72.5199 7.132 72.5934 7.20082 72.6101 7.26965L73.0586 8.94765Z" fill="#EDEDED"/>
-<path d="M71.8481 8.24348L71.5586 7.14223L72.9185 5.77515L73.2105 6.87403L71.8481 8.24348Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M67.1581 6.98537L66.8662 5.88648L68.848 3.89282L69.1399 4.99171L67.1581 6.98537Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M69.1401 4.99171L68.8481 3.89282L74.0839 5.29551L74.3758 6.39439L69.1401 4.99171Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M74.3757 6.39438L72.3916 8.38804L71.8481 8.24327L73.2104 6.87381L69.0617 5.76068L67.7017 7.13014L67.1582 6.98536L69.14 4.9917L74.3757 6.39438Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-</g>
-<defs>
-<clipPath id="clip0_5791_75116">
-<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <g clip-path="url(#clip0_14133_116819)">
+    <path
+      d="M21 102.5H47.5L98 106.5H179.75C182.097 106.5 184 104.597 184 102.25C184 99.9028 182.097 98 179.75 98H175.5C174.119 98 173 96.8807 173 95.5C173 94.1193 174.119 93 175.5 93H183.75C189.687 93 194.5 88.1871 194.5 82.25V78.5C194.5 74.3579 191.142 71 187 71C182.858 71 179.5 67.6421 179.5 63.5V61C179.5 57.9624 177.038 55.5 174 55.5C170.962 55.5 168.5 53.0376 168.5 50V46.25C168.5 41.1414 172.641 37 177.75 37H185.25C188.426 37 191 34.4256 191 31.25C191 28.0744 188.426 25.5 185.25 25.5H169.5C166.186 25.5 163.5 22.8137 163.5 19.5C163.5 16.1863 160.814 13.5 157.5 13.5H113.574C112.428 13.5 111.5 12.5715 111.5 11.4262C111.5 6.22027 107.28 2 102.074 2H59.9262C54.7203 2 50.5 6.22027 50.5 11.4262C50.5 12.5715 49.5715 13.5 48.4262 13.5H36C28.5442 13.5 22.5 19.5442 22.5 27V35C22.5 38.0376 20.0376 40.5 17 40.5C13.9624 40.5 11.5 42.9624 11.5 46V47C11.5 50.5899 14.4101 53.5 18 53.5H24C28.1421 53.5 31.5 56.8579 31.5 61C31.5 65.1421 28.1421 68.5 24 68.5H17.75C10.1561 68.5 4 74.6561 4 82.25V85.5C4 94.8888 11.6112 102.5 21 102.5Z"
+      fill="#E3E3E3" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M132.201 51.806H155.194H176.418H191.746V51.7836C191.941 51.7984 192.137 51.806 192.336 51.806C196.569 51.806 200 48.3746 200 44.1418C200 40.0928 196.86 36.7772 192.883 36.4968C192.911 36.1011 192.925 35.7015 192.925 35.2985C192.925 26.1817 185.535 18.791 176.418 18.791C175.928 18.791 175.442 18.8124 174.963 18.8543C171.191 11.7997 163.753 7 155.194 7C142.821 7 132.791 17.0302 132.791 29.403L132.791 29.4182C132.596 29.4081 132.399 29.403 132.201 29.403C126.015 29.403 121 34.4181 121 40.6045C121 46.5931 125.7 51.4841 131.612 51.7907V51.806H132.201Z"
+      fill="#676767" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M28 37.9825C27.8347 37.9941 27.668 38 27.5 38C23.3579 38 20 34.4183 20 30C20 25.5817 23.3579 22 27.5 22C29.2006 22 30.769 22.6037 32.0271 23.6212C32.4631 16.575 38.1046 11 45 11C46.7774 11 48.4714 11.3704 50.0145 12.0409C52.7381 8.94552 56.6804 7 61.0658 7C69.2847 7 75.9474 13.8335 75.9474 22.2632C75.9474 23.6076 75.7779 24.9114 75.4596 26.1534C77.542 27.0488 79.0002 29.1187 79.0002 31.5292C79.0002 34.7595 76.3815 37.3782 73.1512 37.3782C73.1006 37.3782 73.0502 37.3775 73 37.3763V38H45H28V37.9825Z"
+      fill="#676767" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+      fill="#A0C7F0" />
+    <path
+      d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+      fill="#4277AF" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+      fill="url(#paint0_linear_14133_116819)" />
+    <rect width="80.5611" height="80.5611" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 86.291)"
+      fill="#769FCB" />
+    <path d="M174.22 117.5C174.553 115.167 174.22 110.3 170.22 109.5C165.22 108.5 172.72 119 174.22 117.5Z"
+      fill="#3D8C5C" />
+    <path d="M177.72 117.5C177.553 116.167 177.82 113.7 180.22 114.5C183.22 115.5 178.721 118.5 177.72 117.5Z"
+      fill="#66AF82" />
+    <path d="M174.72 118C177.386 115.166 181.92 108.4 178.72 104C174.72 98.4998 172.22 120 174.72 118Z"
+      fill="#66AF82" />
+    <path
+      d="M168.433 63.2912L171.273 54.6866C171.409 54.2768 171.791 54 172.223 54H181.734C182.561 54 183.03 54.9467 182.53 55.6051L180.303 58.5344C179.803 59.1928 180.273 60.1395 181.1 60.1395H186.62C187.506 60.1395 187.955 61.2065 187.334 61.8394L175.298 74.1242C174.521 74.9171 173.223 74.0428 173.666 73.0251L176.724 66.0039C177.012 65.3434 176.528 64.6047 175.807 64.6047H169.383C168.702 64.6047 168.22 63.9382 168.433 63.2912Z"
+      fill="#FFA800" />
+    <path
+      d="M41.6778 49.4743L39.8415 43.5627C39.7375 43.228 39.4279 43 39.0775 43H33.0559C32.405 43 32.0265 43.736 32.4053 44.2655L33.7058 46.0834C34.0846 46.6128 33.7061 47.3488 33.0552 47.3488H29.826C29.1288 47.3488 28.7652 48.1786 29.2379 48.6912L36.6517 56.7306C37.2564 57.3863 38.3183 56.7102 37.9801 55.8849L36.23 51.615C36.0143 51.0886 36.4014 50.5116 36.9702 50.5116H40.9138C41.4529 50.5116 41.8377 49.9892 41.6778 49.4743Z"
+      fill="#FFA800" />
+    <path d="M44 106.623C42.0508 103.814 36.9827 98.9448 32.3045 101.941C26.4568 105.687 42.0508 110.368 44 106.623Z"
+      fill="#3D8C5C" />
+    <path d="M44 105C42.4072 95.2152 38.0749 78.1075 33.4877 87.9555C27.7537 100.265 40.1774 105 44 105Z"
+      fill="#66AF82" />
+    <path d="M127.81 55.6826H156.139V127.461L127.81 143.954L99.4805 160.444V88.6624L127.81 55.6826Z" fill="#EDF7FF" />
+    <path d="M42.8164 55.6826V127.461L71.1458 143.954L99.4752 160.444V88.6624L42.8164 55.6826Z" fill="#A0C7F1" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 89.9649C59.2918 90.3507 58.8735 90.5911 58.5402 90.397L47.0804 83.7239C46.9266 83.6343 46.832 83.4698 46.832 83.2918V69.9439C46.832 69.5581 47.2503 69.3177 47.5836 69.5118L59.0434 76.1849C59.1972 76.2745 59.2918 76.439 59.2918 76.617V89.9649ZM74.6481 99.5496C74.9814 99.7437 75.3997 99.5033 75.3997 99.1175V85.7668C75.3997 85.5888 75.3051 85.4242 75.1512 85.3346L63.6915 78.6642C63.3582 78.4701 62.94 78.7106 62.94 79.0963V92.4444C62.94 92.6224 63.0346 92.7869 63.1884 92.8765L74.6481 99.5496ZM90.771 108.706C91.1043 108.9 91.5225 108.659 91.5225 108.273V94.9224C91.5225 94.7444 91.4278 94.5798 91.274 94.4902L79.8113 87.8196C79.478 87.6256 79.0598 87.8661 79.0598 88.2518V101.603C79.0598 101.781 79.1545 101.945 79.3084 102.035L90.771 108.706ZM90.771 130.231C91.1043 130.425 91.5225 130.184 91.5225 129.799V116.448C91.5225 116.27 91.4278 116.105 91.274 116.016L79.8113 109.345C79.478 109.151 79.0598 109.391 79.0598 109.777V123.128C79.0598 123.306 79.1545 123.471 79.3084 123.56L90.771 130.231ZM75.3997 120.646C75.3997 121.031 74.9815 121.272 74.6482 121.078L63.1884 114.407C63.0346 114.318 62.94 114.153 62.94 113.975V100.624C62.94 100.238 63.3582 99.998 63.6915 100.192L75.1512 106.863C75.3051 106.952 75.3997 107.117 75.3997 107.295V120.646ZM58.5403 111.925C58.8736 112.119 59.2918 111.879 59.2918 111.493V98.142C59.2918 97.964 59.1972 97.7995 59.0433 97.7099L47.5836 91.0394C47.2502 90.8454 46.832 91.0859 46.832 91.4716V104.822C46.832 105 46.9267 105.165 47.0805 105.255L58.5403 111.925Z"
+      fill="#405C76" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 84.8462L55.2678 88.4914L47.0804 83.7238C46.9266 83.6342 46.832 83.4697 46.832 83.2917V81.6267L54.4697 73.5215L59.0434 76.1848C59.1972 76.2744 59.2918 76.4389 59.2918 76.6169V84.8462ZM50.5495 92.7657L47.5836 91.0393C47.2502 90.8453 46.832 91.0858 46.832 91.4715V96.1333L50.5495 92.7657ZM48.906 106.317L58.2356 97.2397L59.0433 97.7098C59.1972 97.7994 59.2918 97.9639 59.2918 98.1419V110.865L58.1092 111.674L48.906 106.317ZM65.8714 115.969L63.3859 114.522L74.7373 106.621L75.1512 106.862C75.3051 106.952 75.3997 107.117 75.3997 107.295V109.821L65.8714 115.969ZM91.5225 99.4197L83.5989 104.532L80.408 102.675L91.5225 94.939V99.4197ZM72.2231 83.6301L75.1512 85.3345C75.3051 85.4241 75.3997 85.5887 75.3997 85.7667V99.1174C75.3997 99.5031 74.9814 99.7436 74.6481 99.5495L63.1884 92.8764C63.0899 92.819 63.0157 92.731 62.975 92.6283L72.2231 83.6301ZM65.1677 79.5233L62.94 81.5414V79.0962C62.94 78.7105 63.3582 78.47 63.6915 78.6641L65.1677 79.5233ZM86.9328 91.9638L79.0598 97.3476V88.2517C79.0598 87.866 79.478 87.6255 79.8113 87.8195L86.9328 91.9638ZM69.7464 103.716L63.6915 100.192C63.3582 99.9979 62.94 100.238 62.94 100.624V108.371L69.7464 103.716Z"
+      fill="#333B51" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M139.47 83.831C139.136 84.0251 138.718 83.7846 138.718 83.3989V70.0509C138.718 69.8729 138.813 69.7083 138.967 69.6187L150.426 62.9483C150.76 62.7542 151.178 62.9947 151.178 63.3804V76.7284C151.178 76.9064 151.083 77.071 150.929 77.1606L139.47 83.831ZM139.47 104.671C139.136 104.865 138.718 104.624 138.718 104.239V90.888C138.718 90.71 138.813 90.5454 138.967 90.4559L150.426 83.7854C150.76 83.5914 151.178 83.8318 151.178 84.2175V97.5656C151.178 97.7436 151.083 97.9081 150.929 97.9977L139.47 104.671ZM111.48 119.447C111.48 119.832 111.899 120.073 112.232 119.879L123.692 113.208C123.846 113.119 123.94 112.954 123.94 112.776V99.428C123.94 99.0423 123.522 98.8019 123.189 98.9959L111.729 105.666C111.575 105.756 111.48 105.92 111.48 106.098V119.447ZM112.232 99.0391C111.899 99.2331 111.48 98.9926 111.48 98.6069V85.2589C111.48 85.0809 111.575 84.9163 111.729 84.8268L123.189 78.1563C123.522 77.9622 123.94 78.2027 123.94 78.5884V91.9364C123.94 92.1144 123.846 92.279 123.692 92.3686L112.232 99.0391Z"
+      fill="#FF9C9B" />
+    <path
+      d="M138.479 137.788C138.479 137.966 138.385 138.131 138.231 138.22L128.475 143.916L127.502 144.484C127.169 144.679 126.75 144.438 126.75 144.052V120.947C126.75 120.769 126.844 120.605 126.998 120.515L137.727 114.254C138.061 114.059 138.479 114.299 138.479 114.685V137.788Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.42 138.022C138.458 137.951 138.479 137.871 138.479 137.788V114.685C138.479 114.299 138.06 114.059 137.727 114.253L136.719 114.841C136.719 114.852 136.72 114.862 136.72 114.873V136.691C136.72 136.88 136.827 137.053 136.996 137.138L138.166 137.723C138.295 137.787 138.382 137.898 138.42 138.022Z"
+      fill="#606060" />
+    <path
+      d="M41.4996 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H99.4826C100.074 21 100.596 21.2971 100.911 21.7501L156.378 53.9423C156.837 54.0058 157.238 54.2481 157.512 54.6001L157.526 54.6058H157.52C157.748 54.9059 157.893 55.2751 157.893 55.6819C157.893 56.657 157.108 57.4445 156.141 57.4445H128.611L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273C99.0787 90.4273 98.669 90.2859 98.3401 89.9974L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885H41.4996Z"
+      fill="#FF5D5C" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M156.052 54.4755C156.437 54.5698 156.773 54.7933 157.012 55.1001L157.026 55.1058H157.02C157.248 55.4059 157.393 55.7751 157.393 56.1819C157.393 57.157 156.608 57.9446 155.641 57.9446H128.111L116.535 71.4225L99 90V86.5L128 54L156.052 54.4755Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M107.03 82.649L100.807 89.8156C100.464 90.2154 99.9854 90.423 99.5 90.4271V85.9999L127.826 54.2554L127.98 58.0229L107.03 82.649Z"
+      fill="#FF5D5C" />
+    <path d="M74.1914 59.6488V42.38L81.5767 38.0815V50.6076L74.1914 59.6488Z" fill="#EDF7FF" />
+    <path d="M66.8008 55.4629L74.186 59.7613V42.38L66.8008 38.0815V55.4629Z" fill="#A0C7F1" />
+    <path d="M66.8008 38.0816L74.186 33.7803L81.5713 38.0816L74.186 42.3801L66.8008 38.0816Z" fill="white" />
+    <path d="M69.6328 38.0851L74.2226 35.2793L78.8123 38.0851L74.2226 40.889L69.6328 38.0851Z" fill="#A0C7F1" />
+    <path d="M69.6328 38.0851L74.2226 35.2793V38.0851V40.889L69.6328 38.0851Z" fill="#769FCB" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M48.7188 70.173L47.5836 69.512C47.2503 69.3179 46.832 69.5584 46.832 69.9441V83.292C46.832 83.47 46.9266 83.6346 47.0804 83.7241L58.5402 90.3973C58.8735 90.5914 59.2918 90.3509 59.2918 89.9652V89.2929L48.9671 83.2808C48.8133 83.1912 48.7188 83.0267 48.7188 82.8487V70.173ZM64.8267 79.3252V92.0013C64.8267 92.1792 64.9213 92.3438 65.0751 92.4334L75.3997 98.4455V99.1178C75.3997 99.5035 74.9814 99.744 74.6481 99.5499L63.1884 92.8767C63.0346 92.7872 62.94 92.6226 62.94 92.4446V79.0965C62.94 78.7108 63.3582 78.4704 63.6915 78.6644L64.8267 79.3252ZM80.9466 88.4805V101.16C80.9466 101.338 81.0412 101.502 81.1951 101.592L91.5225 107.602V108.274C91.5225 108.659 91.1043 108.9 90.771 108.706L79.3084 102.035C79.1545 101.946 79.0598 101.781 79.0598 101.603V88.252C79.0598 87.8663 79.478 87.6259 79.8113 87.8199L80.9466 88.4805ZM80.9466 110.006V122.685C80.9466 122.863 81.0412 123.028 81.1951 123.117L91.5225 129.127V129.799C91.5225 130.185 91.1043 130.425 90.771 130.231L79.3084 123.561C79.1545 123.471 79.0598 123.306 79.0598 123.128V109.777C79.0598 109.392 79.478 109.151 79.8113 109.345L80.9466 110.006ZM64.8267 100.853L63.6915 100.192C63.3582 99.9983 62.94 100.239 62.94 100.624V113.975C62.94 114.153 63.0346 114.318 63.1884 114.407L74.6482 121.078C74.9815 121.272 75.3997 121.032 75.3997 120.646V119.974L65.0751 113.964C64.9213 113.875 64.8267 113.71 64.8267 113.532V100.853ZM48.7188 91.7004V104.379C48.7188 104.557 48.8134 104.722 48.9672 104.812L59.2918 110.821V111.493C59.2918 111.879 58.8736 112.119 58.5403 111.925L47.0805 105.255C46.9267 105.165 46.832 105.001 46.832 104.823V91.4718C46.832 91.0861 47.2502 90.8457 47.5836 91.0397L48.7188 91.7004Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M151.174 66.3265L141.979 82.3682L139.466 83.8313C139.132 84.0253 138.714 83.7849 138.714 83.3992V70.0511C138.714 69.8731 138.809 69.7085 138.963 69.619L150.422 62.9485C150.756 62.7545 151.174 62.9949 151.174 63.3806V66.3265ZM111.477 116.756L120.833 100.365L123.185 98.9961C123.518 98.8021 123.936 99.0426 123.936 99.4282V112.776C123.936 112.954 123.842 113.119 123.688 113.208L112.228 119.879C111.895 120.073 111.477 119.832 111.477 119.447V116.756ZM150.267 83.876L139.641 104.569L139.466 104.671C139.132 104.865 138.714 104.625 138.714 104.239V102.256L147.083 85.7292L150.267 83.876Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.718 82.3634V83.3992C138.718 83.7849 139.136 84.0253 139.47 83.8313L150.929 77.1608C151.083 77.0713 151.178 76.9067 151.178 76.7287V63.3806C151.178 62.9949 150.76 62.7545 150.426 62.9485L149.416 63.5365V75.8488C149.416 76.0268 149.322 76.1914 149.168 76.2809L138.718 82.3634ZM138.718 103.203V104.239C138.718 104.625 139.136 104.865 139.47 104.671L150.929 97.9979C151.083 97.9084 151.178 97.7438 151.178 97.5659V84.2178C151.178 83.8321 150.76 83.5916 150.426 83.7856L149.416 84.3736V96.686C149.416 96.8639 149.322 97.0285 149.168 97.1181L138.718 103.203ZM111.48 118.411L121.93 112.329C122.084 112.239 122.179 112.074 122.179 111.896V99.5841L123.189 98.9961C123.522 98.8021 123.94 99.0426 123.94 99.4282V112.776C123.94 112.954 123.846 113.119 123.692 113.208L112.232 119.879C111.899 120.073 111.48 119.832 111.48 119.447V118.411ZM111.48 97.5714V98.6072C111.48 98.9929 111.899 99.2333 112.232 99.0393L123.692 92.3688C123.846 92.2793 123.94 92.1147 123.94 91.9367V78.5886C123.94 78.203 123.522 77.9625 123.189 78.1565L122.179 78.7445V91.0568C122.179 91.2348 122.084 91.3994 121.93 91.4889L111.48 97.5714Z"
+      fill="#D86867" />
+    <path d="M100.219 160.5C100.385 153.5 102.819 139.8 111.219 141C121.719 142.5 102.719 162.999 100.219 160.5Z"
+      fill="#66AF82" />
+    <path d="M100.219 160.5C101.552 156 102.419 146.4 95.219 144C86.219 141 95.219 164.5 100.219 160.5Z"
+      fill="#3D8C5C" />
+  </g>
+  <defs>
+    <linearGradient id="paint0_linear_14133_116819" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+    <clipPath id="clip0_14133_116819">
+      <rect width="200" height="200" fill="white" />
+    </clipPath>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/profileUpdated.svg b/src/assets/form/profileUpdated.svg
index e7ce84651..a2141f75c 100644
--- a/src/assets/form/profileUpdated.svg
+++ b/src/assets/form/profileUpdated.svg
@@ -1,160 +1,213 @@
 <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M42.6586 80.0251L33.4559 74.8039C27.1452 71.2236 27.1009 65.3595 33.3571 61.7474L77.9341 36.0109C84.1519 32.421 94.233 32.421 100.451 36.0109L170.121 76.2352" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M43.2705 79.5955C42.9455 79.7812 42.6247 79.9754 42.3123 80.1738C32.1144 86.6277 32.1186 96.6525 42.3208 103.068C49.3571 107.492 59.4327 109.223 68.875 108.264C70.2258 108.125 71.2303 108.961 70.5845 109.662C59.42 121.755 61.674 136.904 77.3972 147.71C78.2921 148.326 79.9129 148.355 80.9006 147.786L160.88 101.612C161.868 101.042 161.821 100.101 160.762 99.5819C142.151 90.4392 116.007 89.0843 95.0874 95.5128C93.8633 95.8885 92.4493 95.2891 92.6941 94.4998C94.3023 89.2489 91.6304 83.6519 84.6489 79.5955C73.2606 72.977 54.7347 72.977 43.2705 79.5955Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M47.7731 80.4986C47.4795 80.6669 47.1897 80.8429 46.9075 81.0227C37.6943 86.8717 37.6982 95.9569 46.9151 101.771C53.272 105.78 62.3746 107.349 70.9051 106.48C72.1254 106.354 73.033 107.112 72.4495 107.747C62.3631 118.706 64.3995 132.435 78.6043 142.228C79.4128 142.787 80.8771 142.814 81.7694 142.297L154.025 100.452C154.918 99.9352 154.876 99.0822 153.919 98.6117C137.105 90.3259 113.485 89.098 94.5862 94.924C93.4803 95.2645 92.2028 94.7213 92.424 94.0059C93.8769 89.2472 91.463 84.1748 85.1557 80.4986C74.8672 74.5005 58.1303 74.5005 47.7731 80.4986Z" fill="#EDEDED"/>
-<path d="M92.6689 76.8814L92.7196 94.0862C92.7196 94.0355 92.728 93.9891 92.7407 93.9384C92.9939 93.1069 93.1206 92.2669 93.1206 91.4269L93.0699 74.2222C93.0741 75.0621 92.9475 75.9021 92.69 76.7337C92.6774 76.7843 92.6689 76.8307 92.6689 76.8814Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M44.2583 74.3616L44.309 91.5664C44.3174 94.9938 46.449 98.417 50.6995 101.089C56.5709 104.782 64.9834 106.226 72.864 105.428C73.7504 105.339 74.4595 105.749 74.4595 106.213L74.4089 89.0084C74.4089 88.5441 73.6997 88.1347 72.8133 88.2233C64.9327 89.0211 56.5245 87.5775 50.6489 83.8841C46.3983 81.2122 44.2667 77.789 44.2583 74.3616Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M150.197 81.8411C150.197 82.1408 150.003 82.4405 149.606 82.6684L82.8511 121.21L82.9017 138.415L149.657 99.8732C150.054 99.6452 150.252 99.3455 150.248 99.0458L150.197 81.8411Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M68.4277 102.904L68.4784 120.109C68.4953 126.605 72.3279 133.097 79.9764 138.352C80.7235 138.867 82.0784 138.892 82.9015 138.415L82.8509 121.21C82.0278 121.687 80.6728 121.662 79.9257 121.147C72.2773 115.888 68.4446 109.4 68.4277 102.904Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M51.4423 64.2903C51.1722 64.4465 50.9021 64.6068 50.6404 64.7757C42.1266 70.1617 42.1351 78.5319 50.6488 83.8841C56.5202 87.5775 64.9326 89.0211 72.8132 88.2233C73.9402 88.1094 74.7802 88.8058 74.2399 89.3883C64.92 99.4849 66.8026 112.127 79.9256 121.147C80.6728 121.662 82.0277 121.687 82.8508 121.21L149.606 82.6685C150.429 82.1915 150.391 81.4064 149.509 80.9716C133.975 73.3401 112.157 72.2089 94.6949 77.5737C93.6734 77.8861 92.4915 77.388 92.6941 76.7253C94.0364 72.3439 91.8035 67.6713 85.9785 64.2818C76.4728 58.765 61.0113 58.765 51.4423 64.2903Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M129.885 120.59C131.928 121.767 131.941 123.68 129.911 124.857C127.88 126.035 124.58 126.035 122.537 124.857C120.494 123.68 120.485 121.767 122.515 120.59C124.546 119.408 127.842 119.408 129.885 120.59Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M128.348 121.725C129.655 122.245 129.663 123.09 128.365 123.61C127.067 124.13 124.956 124.13 123.65 123.61C122.344 123.09 122.338 122.245 123.636 121.725C124.934 121.203 127.042 121.203 128.348 121.725Z" fill="#EDEDED"/>
-<path d="M126.407 55.3333V122.667" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M147.926 14.2713L140.489 9.94899C141.637 9.28629 142.789 9.12589 143.667 9.62819L151.105 13.9505C150.227 13.4482 149.078 13.6086 147.926 14.2713Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.459 45.8442L121.021 41.5219L137.319 13.2961L144.756 17.6184L128.459 45.8442Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M144.756 17.6185L137.318 13.2962C138.192 11.7809 139.34 10.6159 140.493 9.94897L147.93 14.2713C146.778 14.934 145.629 16.1032 144.756 17.6185Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M123.735 43.1514L116.298 38.8291L121.021 41.5221L128.459 45.8444L123.735 43.1514Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.404 54.1175L109.967 49.7952C108.206 48.7906 108.198 45.5236 109.945 42.4972C110.819 40.9818 111.967 39.8168 113.115 39.1499C114.264 38.4872 115.416 38.3268 116.294 38.8291L123.731 43.1514C122.849 42.6491 121.701 42.8095 120.553 43.4722C119.405 44.1349 118.257 45.3041 117.383 46.8194C115.635 49.8459 115.644 53.1129 117.404 54.1175Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M147.926 14.2713C149.074 13.6086 150.226 13.4482 151.104 13.9505C152.864 14.955 152.873 18.2221 151.125 21.2485L132.709 53.1508C131.586 55.0967 130.088 56.6754 128.497 57.5955C126.901 58.5157 125.403 58.6676 124.267 58.0218L117.408 54.1132C115.648 53.1086 115.639 49.8416 117.387 46.8151C118.261 45.2998 119.409 44.1348 120.557 43.4679C121.705 42.8009 122.857 42.6448 123.735 43.1471L128.459 45.84L144.752 17.6143C145.63 16.1032 146.778 14.9339 147.926 14.2713Z" fill="#47C562" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M129.696 125.293L149.169 136.304C155.498 139.882 155.551 145.755 149.288 149.371L93.7651 181.427C87.5473 185.017 77.4663 185.017 71.2485 181.427L27.9998 156.458" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M70.5697 160.617C71.5393 161.178 71.5466 162.09 70.5806 162.65L39.5796 180.667C38.6136 181.228 37.0398 181.228 36.0703 180.667L3.39778 161.804C2.4282 161.243 2.42096 160.331 3.38691 159.771L34.388 141.754C35.3503 141.193 36.9277 141.193 37.8973 141.754L70.5697 160.617Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M21.0057 159.633C21.3349 159.825 21.3349 160.132 21.0093 160.32L16.241 163.092C15.9154 163.28 15.3836 163.283 15.0544 163.092L10.2571 160.32C9.92791 160.132 9.92792 159.821 10.2535 159.633L15.0218 156.862C15.3474 156.674 15.8828 156.674 16.2084 156.862L21.0057 159.633Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M35.0791 146.721C35.2926 146.844 35.2962 147.047 35.0827 147.17L19.5587 156.189C19.3452 156.312 18.9979 156.312 18.7845 156.189C18.571 156.066 18.5674 155.863 18.7809 155.74L34.3049 146.721C34.5183 146.598 34.8657 146.598 35.0791 146.721Z" fill="#706F6F"/>
-<path d="M25.101 155.581C25.3144 155.704 25.318 155.907 25.1046 156.03L22.2031 157.716C21.9896 157.839 21.6459 157.839 21.4289 157.716C21.2118 157.593 21.2118 157.39 21.4253 157.267L24.3267 155.581C24.5366 155.458 24.8839 155.458 25.101 155.581Z" fill="#706F6F"/>
-<path d="M32.5033 151.279C32.7168 151.402 32.7204 151.605 32.5069 151.728L27.395 154.698C27.1815 154.821 26.8378 154.821 26.6208 154.698C26.4037 154.575 26.4037 154.373 26.6172 154.249L31.7291 151.279C31.9426 151.156 32.2863 151.156 32.5033 151.279Z" fill="#706F6F"/>
-<path d="M31.2259 165.993C31.5551 166.185 31.5551 166.492 31.2295 166.681L26.4612 169.452C26.1356 169.64 25.6038 169.644 25.2746 169.452L20.4773 166.681C20.1481 166.492 20.1481 166.181 20.4737 165.993L25.242 163.222C25.5676 163.034 26.103 163.034 26.4287 163.222L31.2259 165.993Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M45.2993 153.081C45.5128 153.204 45.5164 153.407 45.303 153.53L29.7789 162.549C29.5654 162.672 29.2181 162.672 29.0047 162.549C28.7912 162.426 28.7876 162.223 29.0011 162.1L44.5251 153.081C44.7386 152.958 45.0859 152.958 45.2993 153.081Z" fill="#706F6F"/>
-<path d="M35.3212 161.941C35.5346 162.064 35.5382 162.267 35.3248 162.39L32.4233 164.076C32.2099 164.199 31.8662 164.199 31.6491 164.076C31.432 163.953 31.432 163.75 31.6455 163.627L34.547 161.941C34.7604 161.818 35.1041 161.818 35.3212 161.941Z" fill="#706F6F"/>
-<path d="M43.0924 172.834C43.5627 173.106 43.5663 173.551 43.0996 173.822L38.3313 176.593C37.8646 176.865 37.0976 176.865 36.6273 176.593L31.8301 173.822C31.3598 173.551 31.3562 173.109 31.8229 172.834L36.5912 170.063C37.0579 169.792 37.8212 169.792 38.2951 170.063L43.0924 172.834Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M44.724 167.14C44.9375 167.263 44.9411 167.465 44.7276 167.588L41.8261 169.274C41.6127 169.397 41.269 169.397 41.0519 169.274C40.8349 169.151 40.8349 168.949 41.0483 168.826L43.9498 167.14C44.1596 167.017 44.5069 167.017 44.724 167.14Z" fill="#706F6F"/>
-<path d="M54.1229 164.676C54.3364 164.799 54.34 165.002 54.1265 165.125L51.2251 166.811C51.0116 166.934 50.6679 166.934 50.4509 166.811C50.2338 166.688 50.2338 166.485 50.4472 166.362L53.3487 164.676C53.5622 164.549 53.9059 164.549 54.1229 164.676Z" fill="#706F6F"/>
-<path d="M52.1259 162.838C52.3393 162.961 52.343 163.164 52.1295 163.287L47.0176 166.257C46.8041 166.38 46.4604 166.38 46.2433 166.257C46.0263 166.134 46.0263 165.931 46.2397 165.808L51.3517 162.838C51.5651 162.715 51.9088 162.715 52.1259 162.838Z" fill="#706F6F"/>
-<path d="M49.2968 167.288C49.5103 167.411 49.5139 167.614 49.3004 167.737L44.1885 170.707C43.975 170.83 43.6313 170.83 43.4142 170.707C43.1972 170.584 43.1972 170.382 43.4106 170.259L48.5226 167.288C48.7361 167.165 49.0834 167.165 49.2968 167.288Z" fill="#706F6F"/>
-<path d="M59.5898 158.605C59.8032 158.728 59.8068 158.931 59.5934 159.054L54.4814 162.024C54.268 162.147 53.9243 162.147 53.7072 162.024C53.4901 161.901 53.4901 161.699 53.7036 161.576L58.8156 158.605C59.029 158.482 59.3727 158.482 59.5898 158.605Z" fill="#706F6F"/>
-<path d="M59.8394 170.682C61.6157 171.706 61.623 173.366 59.8611 174.394C58.0992 175.418 55.2303 175.418 53.4539 174.394C51.6776 173.37 51.6704 171.709 53.4359 170.682C55.2014 169.654 58.0667 169.658 59.8394 170.682Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M23.0595 145.855C25.2953 147.147 25.3098 149.238 23.0885 150.529C20.8671 151.821 17.2529 151.821 15.0171 150.529C12.7813 149.238 12.7705 147.147 14.9918 145.855C17.2131 144.563 20.8237 144.567 23.0595 145.855Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M22.3324 146.38C24.1124 147.407 24.1233 149.075 22.3542 150.102C20.585 151.13 17.7052 151.13 15.9253 150.102C14.1453 149.075 14.1345 147.407 15.9036 146.38C17.6763 145.352 20.5525 145.352 22.3324 146.38Z" fill="#EDEDED"/>
-<path d="M23.0485 146.351C23.0485 146.369 23.0449 146.39 23.0449 146.409C23.0449 146.427 23.0413 146.445 23.0376 146.459C23.034 146.477 23.0304 146.499 23.0268 146.517C23.0232 146.535 23.0195 146.553 23.0159 146.568C23.0123 146.586 23.0087 146.608 23.0015 146.626C22.9978 146.644 22.9906 146.662 22.987 146.676C22.9798 146.694 22.9761 146.712 22.9689 146.734C22.9617 146.752 22.958 146.767 22.9508 146.785C22.9436 146.803 22.9363 146.825 22.9255 146.843C22.9182 146.861 22.911 146.875 22.9038 146.893C22.8929 146.911 22.8857 146.933 22.8749 146.951C22.8676 146.966 22.8568 146.984 22.8495 146.998C22.8351 147.02 22.8206 147.045 22.8061 147.067C22.7953 147.081 22.788 147.096 22.7772 147.11C22.7591 147.136 22.741 147.161 22.7229 147.186C22.7157 147.197 22.7084 147.208 22.6976 147.219C22.665 147.259 22.6324 147.299 22.5963 147.338C22.5854 147.349 22.5782 147.36 22.5673 147.367C22.5384 147.396 22.5094 147.425 22.4769 147.454C22.4624 147.469 22.4479 147.479 22.4335 147.494C22.4154 147.512 22.3973 147.526 22.3756 147.545C22.3575 147.559 22.3394 147.573 22.3213 147.588C22.2996 147.602 22.2815 147.621 22.2598 147.635C22.2417 147.649 22.22 147.664 22.2019 147.678C22.1802 147.693 22.1585 147.711 22.1368 147.725C22.1151 147.74 22.097 147.754 22.0753 147.769C22.0536 147.783 22.0283 147.798 22.0029 147.812C21.974 147.83 21.9414 147.848 21.9125 147.867C21.8293 147.917 21.7389 147.961 21.6484 148.004C21.6231 148.015 21.6014 148.026 21.576 148.037C21.4928 148.073 21.4096 148.109 21.3264 148.145C21.3156 148.149 21.3047 148.156 21.2939 148.16C21.2034 148.196 21.1093 148.225 21.0117 148.257C20.9465 148.279 20.8778 148.297 20.8091 148.315C20.7584 148.33 20.7078 148.344 20.6535 148.355C20.5812 148.373 20.5088 148.387 20.4364 148.402C20.3822 148.413 20.3315 148.424 20.2773 148.435C20.2556 148.438 20.2338 148.442 20.2121 148.445C20.1217 148.46 20.0312 148.474 19.9408 148.485C19.9155 148.489 19.8865 148.492 19.8612 148.496C19.8106 148.503 19.7563 148.503 19.702 148.51C19.6152 148.518 19.5248 148.525 19.4379 148.529C19.38 148.532 19.3258 148.532 19.2679 148.532C19.1955 148.532 19.1232 148.536 19.0544 148.532C18.9929 148.532 18.9351 148.529 18.8735 148.529C18.8084 148.525 18.7397 148.521 18.6746 148.518C18.613 148.514 18.5552 148.507 18.4937 148.503C18.4285 148.496 18.3634 148.489 18.2983 148.482C18.2404 148.474 18.1825 148.467 18.1247 148.456C18.0559 148.445 17.9872 148.435 17.9184 148.42C17.8642 148.409 17.8099 148.398 17.7556 148.387C17.6724 148.369 17.5928 148.348 17.5132 148.33C17.4626 148.315 17.4083 148.304 17.3577 148.286C17.3287 148.279 17.3034 148.268 17.2745 148.261C17.1949 148.236 17.1153 148.207 17.0357 148.178C17.014 148.17 16.9887 148.163 16.967 148.152C16.8946 148.123 16.8259 148.094 16.7571 148.065C16.7246 148.051 16.6884 148.037 16.6558 148.022C16.5581 147.975 16.4604 147.924 16.3664 147.874C15.5922 147.429 15.2087 146.843 15.2087 146.257L15.2051 147.942C15.2051 148.529 15.5886 149.111 16.3628 149.56C16.4568 149.614 16.5509 149.665 16.6486 149.708C16.6811 149.722 16.7173 149.737 16.7499 149.751C16.8078 149.777 16.8657 149.806 16.9272 149.827C16.938 149.831 16.9489 149.835 16.9597 149.838C16.9814 149.845 17.0067 149.856 17.0284 149.864C17.108 149.892 17.1876 149.918 17.2672 149.947C17.2962 149.954 17.3215 149.965 17.3504 149.972C17.3685 149.979 17.3866 149.983 17.4047 149.99C17.4373 150.001 17.4734 150.005 17.506 150.016C17.5856 150.037 17.6688 150.059 17.7484 150.077C17.7701 150.081 17.7918 150.088 17.8135 150.091C17.8461 150.099 17.8786 150.102 17.9112 150.11C17.9799 150.124 18.0487 150.135 18.121 150.146C18.15 150.149 18.1753 150.157 18.2042 150.16C18.2332 150.164 18.2657 150.167 18.2947 150.171C18.3598 150.178 18.4249 150.186 18.4901 150.193C18.5226 150.196 18.5515 150.2 18.5841 150.204C18.613 150.207 18.642 150.207 18.671 150.207C18.7361 150.211 18.8048 150.214 18.8699 150.218C18.9025 150.218 18.935 150.222 18.9712 150.222C18.9965 150.222 19.0255 150.222 19.0508 150.222C19.1232 150.222 19.1955 150.222 19.2643 150.222C19.3004 150.222 19.3366 150.222 19.3728 150.222C19.3945 150.222 19.4162 150.218 19.4343 150.218C19.5248 150.214 19.6116 150.207 19.6984 150.2C19.7346 150.196 19.7707 150.196 19.8033 150.193C19.8214 150.193 19.8359 150.189 19.854 150.186C19.8793 150.182 19.9082 150.178 19.9336 150.175C20.024 150.164 20.1145 150.149 20.2049 150.135C20.2266 150.131 20.2483 150.128 20.27 150.124C20.2809 150.12 20.2917 150.12 20.3026 150.12C20.346 150.113 20.3858 150.102 20.4292 150.095C20.5016 150.081 20.5739 150.066 20.6463 150.048C20.6969 150.037 20.7476 150.019 20.8018 150.008C20.8706 149.99 20.9393 149.972 21.0044 149.95C21.0189 149.947 21.0334 149.943 21.0478 149.94C21.1274 149.914 21.207 149.885 21.2866 149.856C21.2975 149.853 21.3083 149.845 21.3192 149.842C21.406 149.809 21.4892 149.773 21.5688 149.733C21.5941 149.722 21.6158 149.712 21.6412 149.701C21.7316 149.657 21.8221 149.61 21.9053 149.563C21.9197 149.552 21.9378 149.545 21.9523 149.534C21.9668 149.527 21.9813 149.516 21.9957 149.505C22.021 149.491 22.0427 149.476 22.0681 149.462C22.0898 149.447 22.1115 149.433 22.1296 149.419C22.1513 149.404 22.173 149.386 22.1947 149.372C22.2164 149.357 22.2345 149.343 22.2526 149.328C22.2743 149.314 22.2924 149.296 22.3141 149.281C22.3322 149.267 22.3503 149.252 22.3683 149.238C22.3864 149.22 22.4081 149.205 22.4262 149.187C22.4335 149.18 22.4407 149.173 22.448 149.165C22.4552 149.158 22.4624 149.151 22.466 149.147C22.4986 149.118 22.5275 149.089 22.5565 149.06C22.5673 149.05 22.5746 149.042 22.5854 149.031C22.6216 148.992 22.6542 148.952 22.6867 148.912L22.6903 148.908C22.6976 148.898 22.7048 148.89 22.712 148.88C22.7301 148.854 22.7482 148.829 22.7663 148.804C22.7772 148.789 22.7844 148.775 22.7952 148.76C22.8097 148.738 22.8242 148.713 22.8387 148.691C22.8423 148.684 22.8459 148.681 22.8495 148.673C22.8531 148.662 22.8604 148.655 22.864 148.644C22.8748 148.626 22.8857 148.605 22.8929 148.586C22.9002 148.568 22.9074 148.554 22.9146 148.536C22.9219 148.518 22.9327 148.496 22.94 148.478C22.9436 148.471 22.9472 148.46 22.9508 148.453C22.9544 148.445 22.9544 148.438 22.9581 148.427C22.9653 148.409 22.9725 148.391 22.9761 148.369C22.9798 148.351 22.987 148.333 22.9906 148.319C22.9942 148.301 23.0015 148.279 23.0051 148.261C23.0087 148.25 23.0123 148.239 23.0123 148.228C23.0123 148.221 23.0159 148.214 23.0159 148.207C23.0195 148.189 23.0232 148.167 23.0268 148.149C23.0304 148.131 23.0304 148.113 23.034 148.098C23.0377 148.08 23.0376 148.058 23.0376 148.04C23.0376 148.029 23.0413 148.018 23.0413 148.004C23.0413 147.993 23.0413 147.982 23.0413 147.968L23.0449 146.282C23.0521 146.304 23.0485 146.325 23.0485 146.351Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M21.8942 144.665C23.4318 145.551 23.439 146.991 21.9123 147.877C20.3856 148.764 17.9037 148.764 16.3662 147.877C14.8286 146.991 14.8214 145.551 16.3481 144.665C17.8748 143.778 20.3566 143.778 21.8942 144.665Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M19.3367 144.918L20.3642 147.234C20.3787 147.266 20.3569 147.306 20.3208 147.309L18.1211 147.631C18.0958 147.635 18.0741 147.621 18.0632 147.599L17.8932 147.215C17.8787 147.183 17.9004 147.143 17.9366 147.139L19.2643 146.944C19.3005 146.94 19.3222 146.901 19.3078 146.868L18.5119 145.07C18.4974 145.037 18.5191 144.998 18.5553 144.994L19.2861 144.886C19.3041 144.882 19.3259 144.896 19.3367 144.918Z" fill="#DA3635"/>
-<path d="M26.1501 164.039L27.6117 167.332C27.6334 167.379 27.6045 167.433 27.5538 167.44L24.4208 167.9C24.3846 167.903 24.3521 167.885 24.3376 167.853L24.0952 167.303C24.0735 167.256 24.1024 167.201 24.1531 167.194L26.0416 166.916C26.0922 166.908 26.1212 166.854 26.0995 166.807L24.9671 164.249C24.9454 164.202 24.9743 164.148 25.025 164.141L26.0633 163.989C26.1031 163.989 26.1356 164.007 26.1501 164.039Z" fill="#706F6F"/>
-<path d="M37.4523 171.054L38.9139 174.346C38.9356 174.394 38.9067 174.448 38.8561 174.455L35.723 174.914C35.6868 174.918 35.6543 174.9 35.6398 174.867L35.3974 174.318C35.3757 174.271 35.4047 174.216 35.4553 174.209L37.3438 173.93C37.3945 173.923 37.4234 173.869 37.4017 173.822L36.2693 171.264C36.2476 171.217 36.2766 171.163 36.3272 171.156L37.3655 171.004C37.4053 171.004 37.4379 171.022 37.4523 171.054Z" fill="#706F6F"/>
-<path d="M15.9299 157.741L17.3915 161.033C17.4132 161.08 17.3843 161.134 17.3336 161.142L14.2006 161.601C14.1644 161.605 14.1318 161.587 14.1174 161.554L13.875 161.004C13.8533 160.957 13.8822 160.903 13.9329 160.896L15.8214 160.617C15.872 160.61 15.901 160.556 15.8793 160.508L14.7469 157.951C14.7252 157.904 14.7541 157.849 14.8047 157.842L15.8431 157.69C15.8829 157.69 15.9154 157.708 15.9299 157.741Z" fill="#706F6F"/>
-<path d="M184.591 71.9854C190.088 75.1603 190.124 80.3076 184.656 83.4825C179.189 86.6573 170.304 86.6573 164.808 83.4825C159.311 80.3076 159.281 75.1603 164.748 71.9854C170.21 68.8105 179.095 68.8105 184.591 71.9854Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M183.01 72.9095C187.624 75.575 187.654 79.893 183.069 82.5585C178.485 85.224 171.021 85.224 166.401 82.5585C161.787 79.893 161.763 75.575 166.348 72.9095C170.932 70.244 178.396 70.244 183.01 72.9095Z" fill="#EDEDED"/>
-<path d="M185.539 72.5007C185.533 72.554 185.533 72.6073 185.527 72.6666C185.521 72.7139 185.515 72.7613 185.509 72.8087C185.503 72.862 185.492 72.9153 185.486 72.9686C185.48 73.016 185.468 73.0634 185.456 73.1108C185.444 73.1641 185.432 73.2174 185.415 73.2707C185.403 73.3181 185.385 73.3655 185.373 73.4129C185.355 73.4662 185.338 73.5195 185.32 73.5669C185.302 73.6143 185.284 73.6617 185.267 73.7091C185.243 73.7624 185.219 73.8157 185.195 73.8749C185.178 73.9223 185.154 73.9637 185.13 74.0111C185.107 74.0644 185.077 74.1177 185.047 74.171C185.024 74.2125 185 74.2599 184.976 74.3014C184.941 74.3665 184.899 74.4317 184.858 74.4909C184.834 74.5324 184.81 74.5679 184.781 74.6094C184.733 74.6804 184.68 74.7515 184.627 74.8167C184.603 74.8463 184.579 74.8759 184.556 74.9115C184.467 75.024 184.372 75.1306 184.277 75.2372C184.254 75.2668 184.224 75.2905 184.2 75.3202C184.123 75.4031 184.04 75.486 183.958 75.563C183.916 75.5985 183.88 75.6341 183.839 75.6697C183.786 75.717 183.732 75.7644 183.679 75.8059C183.632 75.8473 183.584 75.8888 183.531 75.9303C183.478 75.9777 183.418 76.0191 183.359 76.0665C183.306 76.108 183.253 76.1494 183.199 76.185C183.14 76.2264 183.081 76.2738 183.016 76.3153C182.956 76.3567 182.903 76.3923 182.844 76.4337C182.779 76.4752 182.714 76.5167 182.648 76.5581C182.566 76.6114 182.483 76.6588 182.4 76.7121C182.163 76.8483 181.92 76.9728 181.671 77.0971C181.606 77.1268 181.541 77.1623 181.47 77.1919C181.245 77.2985 181.014 77.3933 180.777 77.4881C180.747 77.4999 180.717 77.5118 180.682 77.5236C180.427 77.6184 180.167 77.7072 179.906 77.7902C179.722 77.8494 179.533 77.8968 179.349 77.9501C179.207 77.9916 179.065 78.0271 178.923 78.0626C178.727 78.11 178.526 78.1515 178.324 78.1929C178.176 78.2225 178.034 78.2581 177.886 78.2818C177.827 78.2936 177.762 78.2996 177.703 78.3114C177.454 78.3529 177.205 78.3884 176.95 78.418C176.879 78.4239 176.802 78.4358 176.731 78.4417C176.589 78.4595 176.441 78.4654 176.293 78.4773C176.05 78.495 175.807 78.5128 175.558 78.5246C175.404 78.5306 175.244 78.5365 175.09 78.5365C174.895 78.5424 174.694 78.5424 174.498 78.5365C174.332 78.5365 174.166 78.5306 174 78.5246C173.817 78.5187 173.633 78.5069 173.45 78.495C173.284 78.4832 173.118 78.4713 172.946 78.4536C172.763 78.4358 172.585 78.418 172.407 78.3943C172.247 78.3766 172.081 78.3529 171.921 78.3233C171.726 78.2936 171.536 78.2581 171.347 78.2226C171.199 78.193 171.045 78.1633 170.897 78.1337C170.672 78.0863 170.447 78.0271 170.221 77.9679C170.079 77.9323 169.931 77.8968 169.789 77.8494C169.712 77.8257 169.635 77.802 169.564 77.7783C169.339 77.7072 169.12 77.6302 168.907 77.5532C168.841 77.5295 168.782 77.5059 168.717 77.4822C168.522 77.4052 168.332 77.3222 168.142 77.2393C168.048 77.1978 167.953 77.1623 167.864 77.1149C167.592 76.9846 167.325 76.8484 167.07 76.7003C164.932 75.4683 163.866 73.8453 163.872 72.2341L163.86 76.8957C163.854 78.5128 164.92 80.1299 167.058 81.3678C167.313 81.5159 167.58 81.6521 167.852 81.7824C167.941 81.8239 168.042 81.8654 168.131 81.9068C168.291 81.9779 168.45 82.0549 168.616 82.1201C168.646 82.1319 168.676 82.1438 168.705 82.1497C168.764 82.1734 168.829 82.1971 168.895 82.2208C169.108 82.2978 169.333 82.3748 169.552 82.4459C169.629 82.4696 169.706 82.4932 169.783 82.5169C169.836 82.5347 169.884 82.5524 169.937 82.5643C170.026 82.588 170.121 82.6058 170.216 82.6295C170.441 82.6887 170.66 82.742 170.891 82.7953C170.95 82.8072 171.009 82.8249 171.069 82.8368C171.157 82.8545 171.246 82.8664 171.335 82.8842C171.525 82.9197 171.72 82.9552 171.91 82.9849C171.987 82.9967 172.064 83.0145 172.141 83.0263C172.224 83.0382 172.312 83.0441 172.395 83.0559C172.573 83.0796 172.757 83.0974 172.94 83.1152C173.029 83.1211 173.112 83.1389 173.201 83.1448C173.284 83.1507 173.361 83.1507 173.444 83.1566C173.627 83.1685 173.811 83.1803 173.995 83.1863C174.089 83.1922 174.178 83.1981 174.273 83.1981C174.344 83.1981 174.421 83.1981 174.492 83.1981C174.688 83.1981 174.889 83.1981 175.084 83.1981C175.185 83.1981 175.28 83.1981 175.381 83.1981C175.44 83.1981 175.499 83.1863 175.552 83.1863C175.795 83.1744 176.044 83.1566 176.287 83.1389C176.388 83.1329 176.482 83.127 176.583 83.1211C176.63 83.1152 176.678 83.1093 176.725 83.1033C176.796 83.0974 176.873 83.0855 176.944 83.0796C177.199 83.05 177.448 83.0145 177.697 82.973C177.756 82.9612 177.821 82.9552 177.88 82.9434C177.91 82.9375 177.939 82.9315 177.969 82.9315C178.088 82.9078 178.2 82.8783 178.319 82.8546C178.52 82.8131 178.721 82.7716 178.917 82.7242C179.059 82.6887 179.201 82.6472 179.343 82.6117C179.533 82.5584 179.716 82.511 179.9 82.4518C179.942 82.4399 179.983 82.4281 180.019 82.4162C180.244 82.3451 180.463 82.2682 180.676 82.1852C180.706 82.1734 180.735 82.1615 180.771 82.1497C181.008 82.0549 181.239 81.9602 181.464 81.8535C181.529 81.8239 181.6 81.7943 181.665 81.7587C181.914 81.6403 182.163 81.51 182.394 81.3738C182.441 81.3501 182.483 81.3204 182.524 81.2967C182.566 81.2731 182.601 81.2494 182.643 81.2197C182.708 81.1783 182.773 81.1368 182.838 81.0953C182.897 81.0539 182.956 81.0183 183.01 80.9769C183.069 80.9354 183.134 80.894 183.193 80.8466C183.247 80.8051 183.3 80.7636 183.353 80.7222C183.413 80.6807 183.466 80.6333 183.525 80.5919C183.578 80.5504 183.626 80.5089 183.673 80.4675C183.727 80.4201 183.78 80.3786 183.827 80.3313C183.851 80.3135 183.869 80.2957 183.892 80.2779C183.91 80.2602 183.928 80.2424 183.946 80.2246C184.029 80.1417 184.112 80.0647 184.189 79.9818C184.212 79.9521 184.242 79.9284 184.266 79.8988C184.366 79.7922 184.461 79.6797 184.544 79.5731C184.55 79.5671 184.55 79.5612 184.556 79.5612C184.574 79.5375 184.591 79.5079 184.615 79.4842C184.668 79.4132 184.722 79.348 184.769 79.2769C184.793 79.2354 184.822 79.1999 184.846 79.1584C184.887 79.0933 184.929 79.0281 184.964 78.9689C184.976 78.9511 184.988 78.9334 184.994 78.9156C185.012 78.8919 185.024 78.8623 185.036 78.8386C185.065 78.7853 185.095 78.7319 185.118 78.6786C185.142 78.6313 185.16 78.5898 185.184 78.5424C185.207 78.4891 185.231 78.4358 185.255 78.3765C185.267 78.3529 185.278 78.3292 185.284 78.3055C185.29 78.2818 185.296 78.2581 185.308 78.2403C185.326 78.187 185.344 78.1337 185.361 78.0863C185.373 78.0389 185.391 77.9915 185.403 77.9442C185.415 77.8909 185.432 77.8375 185.444 77.7842C185.45 77.7546 185.462 77.725 185.468 77.7013C185.474 77.6836 185.474 77.6598 185.48 77.6421C185.492 77.5888 185.498 77.5355 185.503 77.4822C185.509 77.4348 185.515 77.3874 185.521 77.34C185.527 77.2867 185.527 77.2334 185.533 77.1741C185.533 77.1445 185.539 77.109 185.539 77.0794C185.539 77.0498 185.539 77.0142 185.539 76.9846L185.551 72.323C185.545 72.3763 185.545 72.4415 185.539 72.5007Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M182.346 67.8392C186.593 70.2914 186.617 74.2659 182.4 76.7181C178.182 79.1704 171.317 79.1704 167.07 76.7181C162.823 74.2659 162.806 70.2914 167.023 67.8392C171.24 65.3869 178.1 65.3869 182.346 67.8392Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M175.268 68.0701L178.005 74.2421C178.046 74.331 177.987 74.4317 177.892 74.4436L172.028 75.3024C171.963 75.3143 171.898 75.2787 171.874 75.2195L171.418 74.1948C171.377 74.1059 171.436 74.0052 171.531 73.9934L175.067 73.4721C175.162 73.4603 175.215 73.3596 175.179 73.2707L173.059 68.4788C173.018 68.39 173.077 68.2893 173.172 68.2774L175.12 67.9931C175.179 67.9753 175.239 68.005 175.268 68.0701Z" fill="#DA3635"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" fill="white"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" fill="white"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" fill="white"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" fill="white"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" fill="white"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" fill="white"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.904 169.649C111.735 170.613 108.258 172.881 109.303 170.679L110.904 169.649Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" fill="white"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" fill="white"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" fill="white"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" fill="white"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" fill="white"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" fill="#DA3635"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M113.698 145.561C113.341 146.051 112.439 146.984 111.771 147.014C110.94 147.065 110.772 145.398 111.185 144.858C110.415 144.287 110.155 145.281 109.961 145.852C109.686 146.683 109.354 147.386 108.834 148.09C108.279 148.875 107.692 149.64 107.264 150.506C106.826 151.419 106.25 152.138 105.694 152.953C106.168 153.101 106.316 153.376 106.642 153.687C107.295 153.213 107.835 152.301 108.34 151.664C108.845 150.996 109.37 150.389 109.681 149.604C109.992 150.226 109.793 151.189 110.369 151.597C110.828 151.908 111.674 151.857 112.214 151.857C112.801 151.857 113.621 152.071 113.948 151.546C114.407 150.812 113.897 149.619 114.243 148.855C115.176 149.558 115.467 152.005 115.732 153.101C115.88 153.754 115.91 155.762 116.792 155.88C116.971 155.895 117.562 155.65 117.69 155.538C117.985 155.263 117.95 155.293 117.853 154.855C117.741 154.35 117.394 153.907 117.266 153.387C117.134 152.846 117.052 152.291 116.991 151.74C116.828 150.287 116.257 149.242 115.701 147.901C115.39 147.132 115.294 146.397 114.524 145.959C114.254 145.76 114.055 145.597 113.698 145.561Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" fill="white"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" fill="white"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M113.973 151.444C115.018 152.52 114.937 154.401 114.743 155.757C114.549 157.098 113.453 158.892 114.366 160.05C114.921 160.768 115.329 161.584 115.9 162.252C116.359 162.792 117.057 163.379 117.012 164.179C116.996 164.505 116.731 165.01 116.425 165.173C115.936 165.433 115.757 165.025 115.395 164.633C114.707 163.863 114.218 163.062 113.372 162.461C112.408 161.778 112.163 161.186 111.949 160.075C111.669 158.77 111.608 157.46 111.445 156.17C111.149 157.659 111.414 159.157 111.149 160.631C111.001 161.497 110.823 162.313 110.889 163.21C110.971 164.286 111.215 165.351 111.149 166.442C111.098 167.212 111.001 167.62 110.252 167.829C110.038 167.88 109.645 168.023 109.467 167.926C109.023 167.697 109.11 165.866 109.074 165.443C108.86 162.374 108.095 159.305 108.304 156.201C108.371 155.349 108.467 154.223 108.712 153.422C108.942 152.653 109.365 151.48 110.017 150.97C110.374 151.883 111.078 151.837 112.041 151.822C112.668 151.801 113.514 151.913 113.973 151.444Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" fill="white"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" fill="white"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" fill="white"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" fill="white"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" fill="white"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" fill="white"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.925 153.534C122.486 153.942 122.695 155.431 121.701 155.084C120.672 154.707 121.538 153.958 121.686 153.188C122.094 153.336 122.614 153.305 122.925 153.534Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" fill="white"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" fill="white"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" fill="white"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" fill="white"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" fill="white"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" fill="white"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" fill="white"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" fill="white"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" fill="white"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" fill="white"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" fill="white"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" fill="white"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" fill="white"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" fill="#DA3635"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" fill="white"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" fill="white"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" fill="white"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" fill="white"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" fill="white"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" fill="white"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" fill="white"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" fill="white"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" fill="white"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" fill="white"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" fill="white"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" fill="white"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" fill="white"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" fill="white"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" fill="white"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" fill="white"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" fill="white"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" fill="white"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" fill="white"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" fill="#DA3635"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-</svg>
+  <rect width="200" height="200" fill="white" />
+  <path
+    d="M21 102.5H47.5L98 106.5H179.75C182.097 106.5 184 104.597 184 102.25C184 99.9028 182.097 98 179.75 98H175.5C174.119 98 173 96.8807 173 95.5C173 94.1193 174.119 93 175.5 93H183.75C189.687 93 194.5 88.1871 194.5 82.25V78.5C194.5 74.3579 191.142 71 187 71C182.858 71 179.5 67.6421 179.5 63.5V61C179.5 57.9624 177.038 55.5 174 55.5C170.962 55.5 168.5 53.0376 168.5 50V46.25C168.5 41.1414 172.641 37 177.75 37H185.25C188.426 37 191 34.4256 191 31.25C191 28.0744 188.426 25.5 185.25 25.5H169.5C166.186 25.5 163.5 22.8137 163.5 19.5C163.5 16.1863 160.814 13.5 157.5 13.5H149.312C146.137 13.5 143.562 10.9256 143.562 7.75C143.562 4.57436 140.988 2 137.812 2H89.5C86.3244 2 83.75 4.57436 83.75 7.75C83.75 10.9256 81.1756 13.5 78 13.5H66.75C64.9551 13.5 63.5 12.0449 63.5 10.25C63.5 8.45507 62.0449 7 60.25 7H23.25C21.4551 7 20 8.45507 20 10.25C20 12.0449 18.5449 13.5 16.75 13.5H10C6.68629 13.5 4 16.1863 4 19.5C4 22.8137 6.68629 25.5 10 25.5H15C19.1421 25.5 22.5 28.8579 22.5 33V35C22.5 38.0376 20.0376 40.5 17 40.5C13.9624 40.5 11.5 42.9624 11.5 46V47C11.5 50.5899 14.4101 53.5 18 53.5H24C28.1421 53.5 31.5 56.8579 31.5 61C31.5 65.1421 28.1421 68.5 24 68.5H17.75C10.1561 68.5 4 74.6561 4 82.25V85.5C4 94.8888 11.6112 102.5 21 102.5Z"
+    fill="#DDEDFF" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M148.554 44.806C148.539 44.806 148.525 44.806 148.51 44.806C148.496 44.806 148.481 44.806 148.467 44.806H134.821C134.799 44.8062 134.776 44.8063 134.754 44.8063C134.732 44.8063 134.71 44.8062 134.687 44.806H134.403V44.7973C130.865 44.6148 128.053 41.6883 128.053 38.1048C128.053 34.4036 131.053 31.4033 134.754 31.4033C134.873 31.4033 134.99 31.4063 135.107 31.4124L135.107 31.403C135.107 24.0007 141.108 18 148.51 18C153.631 18 158.081 20.8714 160.337 25.0918C160.624 25.0668 160.914 25.054 161.208 25.054C166.662 25.054 171.084 29.4756 171.084 34.9299C171.084 35.171 171.075 35.4101 171.058 35.6469C173.437 35.8148 175.316 37.7984 175.316 40.2206C175.316 42.753 173.263 44.8059 170.73 44.8059C170.613 44.8059 170.496 44.8014 170.38 44.7927V44.806H148.554Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M23 59.9825C22.8347 59.9941 22.668 60 22.5 60C18.3579 60 15 56.4183 15 52C15 47.5817 18.3579 44 22.5 44C24.2006 44 25.769 44.6037 27.0271 45.6212C27.4631 38.575 33.1046 33 40 33C41.7774 33 43.4714 33.3704 45.0145 34.0409C47.7381 30.9455 51.6804 29 56.0658 29C64.2847 29 70.9474 35.8335 70.9474 44.2632C70.9474 45.7283 70.7461 47.1452 70.3704 48.4864C72.5053 49.4054 74 51.5282 74 54C74 57.3137 71.3137 60 68 60H40H23V59.9825Z"
+    fill="white" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+    fill="#A0C7F0" />
+  <path
+    d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+    fill="#4277AF" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+    fill="url(#paint0_linear_14421_58839)" />
+  <path
+    d="M70.0789 41.7061C69.5471 41.6652 69.0972 41.522 68.7085 41.297L64.2905 38.7402C64.6791 38.9652 65.1291 39.1084 65.6609 39.1698L70.0789 41.7061Z"
+    fill="#66AF82" />
+  <path
+    d="M60.5098 44.1193L56.0918 41.5625C54.9872 40.908 54.0873 39.6603 53.6168 37.4922L58.0349 40.0489C58.4849 42.2171 59.3849 43.4648 60.5098 44.1193Z"
+    fill="#66AF82" />
+  <path
+    d="M36.5365 18.9814L65.3358 2.35223C66.0517 1.94315 66.6858 1.90224 67.1562 2.16814L71.5743 4.7249C71.1039 4.459 70.4698 4.4999 69.7539 4.90899L40.9546 21.5381C39.5433 22.3563 38.4183 24.3199 38.4183 25.9357L38.4796 48.3943C38.4796 49.192 38.766 49.7647 39.216 50.0306L34.7979 47.4739C34.3479 47.208 34.0616 46.6352 34.0616 45.8375L34.0002 23.379C33.9798 21.7631 35.1252 19.7791 36.5365 18.9814Z"
+    fill="#66AF82" />
+  <mask id="path-10-inside-1_14421_58839" fill="white">
+    <path
+      d="M40.9507 21.5385C39.5394 22.3567 38.4144 24.3203 38.4144 25.9361L38.4758 48.3947C38.4758 50.0106 39.6212 50.6651 41.0325 49.8469L58.0298 40.029C59.5025 46.922 65.3319 44.5902 68.2978 42.8721C69.3818 42.2585 70.0363 41.7471 70.0773 41.7062C67.0705 41.4403 66.5183 37.9836 66.6001 35.0791L69.8114 33.2178C71.2227 32.3996 72.3477 30.436 72.3477 28.8202L72.2863 6.36162C72.2863 4.74575 71.1409 4.09122 69.7295 4.90938L40.9507 21.5385Z" />
+  </mask>
+  <path
+    d="M40.9507 21.5385C39.5394 22.3567 38.4144 24.3203 38.4144 25.9361L38.4758 48.3947C38.4758 50.0106 39.6212 50.6651 41.0325 49.8469L58.0298 40.029C59.5025 46.922 65.3319 44.5902 68.2978 42.8721C69.3818 42.2585 70.0363 41.7471 70.0773 41.7062C67.0705 41.4403 66.5183 37.9836 66.6001 35.0791L69.8114 33.2178C71.2227 32.3996 72.3477 30.436 72.3477 28.8202L72.2863 6.36162C72.2863 4.74575 71.1409 4.09122 69.7295 4.90938L40.9507 21.5385Z"
+    fill="white" />
+  <path
+    d="M40.9507 21.5385L40.6999 21.1059L40.7005 21.1056L40.9507 21.5385ZM38.4144 25.9361L37.9144 25.9375V25.9361H38.4144ZM38.4758 48.3947L38.9758 48.3933V48.3947H38.4758ZM41.0325 49.8469L40.7817 49.4143L40.7824 49.414L41.0325 49.8469ZM58.0298 40.029L57.7797 39.596L58.3751 39.2521L58.5188 39.9245L58.0298 40.029ZM68.2978 42.8721L68.0471 42.4394L68.0515 42.437L68.2978 42.8721ZM70.0773 41.7062L70.1213 41.2082L71.1881 41.3025L70.4308 42.0598L70.0773 41.7062ZM66.6001 35.0791L66.1003 35.065L66.1081 34.7863L66.3493 34.6465L66.6001 35.0791ZM69.8114 33.2178L70.0621 33.6504L70.0621 33.6504L69.8114 33.2178ZM72.3477 28.8202L72.8477 28.8188V28.8202H72.3477ZM72.2863 6.36162L71.7863 6.36299V6.36162H72.2863ZM69.7295 4.90938L69.9803 5.34195L69.9797 5.3423L69.7295 4.90938ZM41.2015 21.9711C40.5891 22.3261 40.0118 22.9489 39.5866 23.6876C39.1614 24.4265 38.9144 25.2359 38.9144 25.9361H37.9144C37.9144 25.0205 38.2299 24.0402 38.7199 23.1888C39.2101 22.3372 39.901 21.5691 40.6999 21.1059L41.2015 21.9711ZM38.9144 25.9348L38.9757 48.3933L37.9758 48.396L37.9144 25.9375L38.9144 25.9348ZM38.9758 48.3947C38.9758 49.0957 39.22 49.4555 39.4722 49.599C39.7258 49.7433 40.1664 49.771 40.7817 49.4143L41.2833 50.2795C40.4873 50.741 39.6496 50.8505 38.9776 50.4681C38.3042 50.0849 37.9758 49.3095 37.9758 48.3947H38.9758ZM40.7824 49.414L57.7797 39.596L58.2799 40.4619L41.2826 50.2799L40.7824 49.414ZM58.5188 39.9245C58.8722 41.5789 59.474 42.6187 60.1739 43.2521C60.8689 43.881 61.7068 44.151 62.6197 44.18C64.483 44.2392 66.5774 43.2908 68.0471 42.4394L68.5484 43.3047C67.0522 44.1715 64.749 45.2481 62.588 45.1795C61.4887 45.1445 60.4078 44.8124 59.5029 43.9936C58.6029 43.1791 57.9238 41.9256 57.5409 40.1334L58.5188 39.9245ZM68.0515 42.437C68.5794 42.1381 69.0016 41.8648 69.295 41.6627C69.4417 41.5616 69.5555 41.4787 69.6337 41.4199C69.7281 41.3488 69.7439 41.3325 69.7237 41.3527L70.4308 42.0598C70.3902 42.1004 70.3088 42.1633 70.2351 42.2188C70.1452 42.2865 70.0199 42.3775 69.8624 42.4861C69.5473 42.7033 69.1001 42.9925 68.5441 43.3072L68.0515 42.437ZM70.0332 42.2043C68.2902 42.0501 67.2681 40.949 66.7161 39.5677C66.1745 38.2122 66.0587 36.5405 66.1003 35.065L67.0999 35.0932C67.0596 36.5222 67.179 38.0311 67.6448 39.1966C68.1001 40.3362 68.8576 41.0964 70.1213 41.2082L70.0332 42.2043ZM66.3493 34.6465L69.5606 32.7852L70.0621 33.6504L66.8508 35.5117L66.3493 34.6465ZM69.5606 32.7852C70.173 32.4302 70.7502 31.8074 71.1754 31.0687C71.6007 30.3298 71.8477 29.5204 71.8477 28.8202H72.8477C72.8477 29.7358 72.5322 30.7161 72.0421 31.5675C71.552 32.4191 70.8611 33.1872 70.0621 33.6504L69.5606 32.7852ZM71.8477 28.8215L71.7863 6.36299L72.7863 6.36025L72.8477 28.8188L71.8477 28.8215ZM71.7863 6.36162C71.7863 5.66058 71.542 5.30078 71.2899 5.1573C71.0363 5.013 70.5956 4.98525 69.9803 5.34195L69.4788 4.47681C70.2748 4.01535 71.1125 3.90578 71.7845 4.28817C72.4579 4.67138 72.7863 5.44679 72.7863 6.36162H71.7863ZM69.9797 5.3423L41.2009 21.9714L40.7005 21.1056L69.4794 4.47646L69.9797 5.3423Z"
+    fill="#66AF82" mask="url(#path-10-inside-1_14421_58839)" />
+  <path
+    d="M62.8932 15.2752C63.4291 14.9795 63.9687 14.9074 64.3801 15.131C65.2028 15.5781 65.2066 17.0386 64.3914 18.3909L55.7754 32.6461C55.2508 33.5152 54.5488 34.222 53.8054 34.6331C53.0581 35.0442 52.3599 35.1127 51.8278 34.8242L48.6199 33.0788C47.7972 32.6317 47.7934 31.1712 48.6086 29.8189C49.0162 29.1409 49.5558 28.6216 50.0917 28.3223C50.6277 28.0266 51.1673 27.9545 51.5787 28.1781L53.7865 29.3825L61.4062 16.7718C61.8176 16.0902 62.3535 15.5709 62.8932 15.2752Z"
+    fill="#66AF82" />
+  <circle cx="14.177" cy="14.177" r="14.177" transform="matrix(0.866025 -0.5 0.866025 0.5 69.8398 131.177)"
+    fill="#A0C7F0" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L78.2199 136.604C77.934 137.671 76.8373 138.304 75.7704 138.018C74.7034 137.732 74.0703 136.636 74.3562 135.569L85.2266 95Z"
+    fill="#D6AD92" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L83.6772 116.237C83.3913 117.304 82.2947 117.937 81.2277 117.651C80.1608 117.365 79.5276 116.269 79.8135 115.202L85.2266 95Z"
+    fill="#AE907B" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L85.1412 110.774C84.8553 111.84 83.7586 112.474 82.6917 112.188C81.6247 111.902 80.9916 110.805 81.2774 109.738L85.2266 95Z"
+    fill="#88674F" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L93.9042 119.107C93.8684 120.211 92.9445 121.077 91.8405 121.042C90.7365 121.006 89.8705 120.082 89.9063 118.978L91.2656 77Z"
+    fill="#AE907B" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L94.1167 112.543C94.081 113.647 93.157 114.513 92.053 114.478C90.949 114.442 90.0831 113.518 90.1188 112.414L91.2656 77Z"
+    fill="#88674F" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L115.574 133.569C115.86 134.636 115.227 135.732 114.16 136.018C113.093 136.304 111.996 135.671 111.71 134.604L100.84 94.0352Z"
+    fill="#D6AD92" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L110.634 115.132C110.92 116.199 110.286 117.295 109.22 117.581C108.153 117.867 107.056 117.234 106.77 116.167L100.84 94.0352Z"
+    fill="#AE907B" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L109.089 109.367C109.375 110.434 108.742 111.531 107.675 111.817C106.608 112.103 105.511 111.469 105.225 110.402L100.84 94.0352Z"
+    fill="#88674F" />
+  <ellipse cx="20.1148" cy="20.3939" rx="20.1148" ry="20.3939" transform="matrix(0.866025 -0.5 0.866025 0.5 58 95.1143)"
+    fill="#AE907B" />
+  <circle cx="18.7543" cy="18.7543" r="18.7543" transform="matrix(0.866025 -0.5 0.866025 0.5 60.8398 92.7539)"
+    fill="#D6AD92" />
+  <circle cx="12.4455" cy="12.4455" r="12.4455" transform="matrix(0.866025 -0.5 0.866025 0.5 71.767 92.7539)"
+    fill="#E6BC9F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 125.39 134.487)"
+    fill="#DA3635" />
+  <path
+    d="M120.211 133.596C120.479 130.246 128.116 129.138 131.095 132.017L140.554 141.158C141.877 142.437 141.526 144.072 139.701 145.125C137.417 146.444 133.684 146.386 131.527 144.998L124.26 140.325C121.464 138.527 120.005 136.166 120.198 133.752L120.211 133.596Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M123.654 133.554L134.281 141.766C134.771 142.145 135.058 142.73 135.058 143.349V143.498C135.058 144.782 133.866 145.733 132.615 145.448L132.156 145.344C131.935 145.24 131.725 145.124 131.528 144.998L124.262 140.324C121.466 138.526 120.007 136.165 120.2 133.752L120.213 133.595C120.306 132.422 121.304 131.524 122.689 130.976C122.845 131.22 122.936 131.511 122.936 131.823V132.092C122.936 132.665 123.201 133.205 123.654 133.554Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M140.39 141.009L140.544 141.158C141.868 142.437 141.517 144.072 139.692 145.126C137.408 146.444 133.675 146.386 131.518 144.998L130.218 144.163C130.66 143.429 131.456 142.973 132.322 142.973H133.835H137.316C138.177 142.973 138.988 142.568 139.505 141.879L139.715 141.598C139.9 141.352 140.131 141.153 140.39 141.009Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M135.837 139.757C134.968 140.364 134.146 141.097 133.661 141.583C133.424 141.819 133.04 141.819 132.804 141.583C132.567 141.346 132.567 140.962 132.804 140.726C133.328 140.201 134.204 139.419 135.143 138.763C135.613 138.435 136.11 138.13 136.597 137.905C137.075 137.684 137.59 137.518 138.081 137.518C138.416 137.518 138.687 137.789 138.687 138.124C138.687 138.458 138.416 138.73 138.081 138.73C137.844 138.73 137.516 138.816 137.106 139.005C136.705 139.191 136.271 139.454 135.837 139.757Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M134.384 134.822C134.533 135.122 134.412 135.486 134.113 135.636C134.043 135.671 133.895 135.806 133.709 136.147C133.535 136.466 133.37 136.884 133.222 137.352C132.927 138.287 132.721 139.344 132.623 140.028C132.576 140.359 132.269 140.59 131.937 140.542C131.606 140.495 131.376 140.188 131.423 139.857C131.527 139.127 131.746 138.002 132.067 136.987C132.227 136.48 132.418 135.981 132.645 135.567C132.859 135.174 133.156 134.759 133.57 134.551C133.87 134.402 134.234 134.523 134.384 134.822Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.977 135.419C133.431 135.623 134.922 136.027 135.857 136.339C136.175 136.445 136.347 136.788 136.241 137.105C136.135 137.423 135.792 137.595 135.474 137.489C134.591 137.194 133.173 136.811 131.809 136.62C131.127 136.525 130.476 136.48 129.923 136.513C129.355 136.547 128.96 136.658 128.729 136.812C128.45 136.998 128.074 136.922 127.888 136.644C127.703 136.365 127.778 135.989 128.056 135.803C128.552 135.473 129.203 135.341 129.851 135.303C130.514 135.264 131.25 135.318 131.977 135.419Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M129.737 134.107C128.867 134.593 128.046 135.179 127.562 135.566C127.301 135.775 126.919 135.733 126.71 135.472C126.501 135.21 126.543 134.829 126.805 134.62C127.331 134.199 128.208 133.573 129.146 133.049C130.054 132.541 131.134 132.062 132.032 132.062C132.367 132.062 132.638 132.334 132.638 132.669C132.638 133.003 132.367 133.275 132.032 133.275C131.476 133.275 130.637 133.604 129.737 134.107Z"
+    fill="#769FCB" />
+  <path
+    d="M124.341 132.667C125.492 133.331 127.357 133.331 128.508 132.667C129.085 132.333 129.373 131.896 129.37 131.459L129.37 125.398L123.479 125.398L123.479 131.459C123.476 131.896 123.764 132.333 124.341 132.667Z"
+    fill="#FFCCB7" />
+  <path
+    d="M124.341 130.123C125.492 130.787 127.357 130.787 128.508 130.123C129.085 129.79 129.373 129.352 129.37 128.915L129.37 122.854L123.479 122.854L123.479 128.915C123.476 129.352 123.764 129.79 124.341 130.123Z"
+    fill="#EF937F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 102.277 143.334)"
+    fill="#DA3635" />
+  <path
+    d="M97.0977 142.442C97.3657 139.093 105.003 137.985 107.982 140.863L117.44 150.004C118.764 151.283 118.412 152.918 116.588 153.972C114.304 155.29 110.571 155.232 108.413 153.845L101.147 149.171C98.351 147.373 96.8921 145.013 97.0852 142.599L97.0977 142.442Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M100.59 142.583L111.155 150.613C111.653 150.992 111.945 151.581 111.945 152.206V152.345C111.945 153.628 110.753 154.579 109.501 154.295L109.042 154.191C108.822 154.086 108.612 153.971 108.415 153.844L101.148 149.171C98.3525 147.373 96.8936 145.012 97.0867 142.598L97.0992 142.442C97.1931 141.269 98.1909 140.371 99.5759 139.822C99.7321 140.067 99.8226 140.358 99.8226 140.67V141.036C99.8226 141.643 100.107 142.216 100.59 142.583Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M117.277 149.855L117.431 150.005C118.755 151.284 118.403 152.919 116.579 153.972C114.295 155.291 110.562 155.233 108.404 153.845L107.105 153.009C107.546 152.275 108.343 151.82 109.209 151.82H110.722H114.203C115.064 151.82 115.875 151.415 116.391 150.726L116.602 150.445C116.786 150.199 117.017 150 117.277 149.855Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.724 148.604C111.854 149.211 111.033 149.944 110.547 150.429C110.311 150.666 109.927 150.666 109.69 150.429C109.454 150.193 109.454 149.809 109.69 149.572C110.215 149.048 111.091 148.266 112.03 147.61C112.499 147.282 112.997 146.977 113.484 146.752C113.962 146.531 114.477 146.364 114.968 146.364C115.302 146.364 115.574 146.636 115.574 146.97C115.574 147.305 115.302 147.576 114.968 147.576C114.731 147.576 114.402 147.663 113.993 147.852C113.592 148.037 113.158 148.3 112.724 148.604Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.27 143.669C111.42 143.969 111.299 144.333 110.999 144.482C110.929 144.517 110.781 144.653 110.595 144.994C110.421 145.313 110.257 145.73 110.109 146.199C109.814 147.134 109.608 148.191 109.51 148.875C109.463 149.206 109.156 149.436 108.824 149.389C108.493 149.342 108.263 149.035 108.31 148.703C108.414 147.973 108.633 146.848 108.953 145.833C109.113 145.327 109.305 144.828 109.531 144.413C109.746 144.02 110.042 143.606 110.457 143.398C110.757 143.248 111.121 143.37 111.27 143.669Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M108.863 144.266C110.318 144.469 111.809 144.874 112.744 145.185C113.062 145.291 113.233 145.634 113.128 145.952C113.022 146.27 112.678 146.441 112.361 146.335C111.478 146.041 110.06 145.657 108.696 145.467C108.013 145.371 107.363 145.327 106.81 145.36C106.242 145.393 105.847 145.504 105.615 145.659C105.337 145.844 104.961 145.769 104.775 145.49C104.589 145.212 104.665 144.836 104.943 144.65C105.439 144.319 106.09 144.188 106.738 144.15C107.4 144.11 108.137 144.164 108.863 144.266Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M106.624 142.954C105.753 143.44 104.933 144.026 104.449 144.413C104.187 144.622 103.806 144.58 103.597 144.318C103.388 144.057 103.43 143.676 103.692 143.466C104.218 143.045 105.094 142.419 106.032 141.895C106.941 141.388 108.021 140.909 108.919 140.909C109.254 140.909 109.525 141.181 109.525 141.515C109.525 141.85 109.254 142.121 108.919 142.121C108.362 142.121 107.524 142.451 106.624 142.954Z"
+    fill="#769FCB" />
+  <path
+    d="M101.228 141.514C102.379 142.178 104.244 142.178 105.394 141.514C105.972 141.18 106.26 140.743 106.257 140.306L106.257 134.244L100.365 134.244L100.365 140.306C100.363 140.743 100.651 141.18 101.228 141.514Z"
+    fill="#FFCCB7" />
+  <path
+    d="M101.228 138.97C102.379 139.634 104.244 139.634 105.394 138.97C105.972 138.636 106.26 138.199 106.257 137.762L106.257 131.7L100.365 131.7L100.365 137.762C100.363 138.199 100.651 138.636 101.228 138.97Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.386 66C115.15 68.1745 113.593 70.3102 110.715 71.972C104.446 75.5916 94.281 75.5916 88.0115 71.972C85.6054 70.5828 84.1227 68.8623 83.5634 67.0649C83.4455 67.5414 83.391 68.0222 83.4 68.5027L83.3792 68.5001L82.3384 86.0757C82.0155 91.5292 84.9155 96.884 90.5619 101.26L99.9316 108.522C101.162 109.475 101.757 110.653 101.607 111.839L98.7225 134.642C98.679 135.303 99.0942 135.972 99.9681 136.476C101.633 137.438 104.333 137.438 105.998 136.476C106.66 136.094 106.802 135.73 107.008 135.202C107.073 135.034 107.146 134.849 107.243 134.642L118.207 106.897C119.586 103.407 118.838 99.7476 116.087 96.5383L112.081 91.8636L124.126 99.3197C125.847 100.385 126.668 101.835 126.369 103.282L121.589 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.199 129.208 128.864 128.247C129.738 127.742 130.153 127.073 130.109 126.412L140.109 100.746C141.69 96.6882 140.518 92.4345 136.833 88.8601L115.921 68.5715C115.948 67.7072 115.77 66.8412 115.386 66Z"
+    fill="#4C4D53" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.266 123.513C127.042 128.888 124.18 125.343 126.919 105.507C127.435 101.769 126.133 97.9764 123.319 95.4637L114.545 87.6292C114.149 87.276 113.556 87.3072 113.13 87.6228C112.36 88.1922 111.594 88.3919 110.35 88.462C109.447 88.5128 109.005 89.6041 109.661 90.2258L115.058 95.3379L119.003 98.1776C120.194 99.0348 120.857 100.097 120.887 101.195L121.161 111.022L121.34 111.5V117.464L121.588 126.412C121.545 127.073 121.96 127.743 122.834 128.247C124.499 129.208 127.198 129.208 128.863 128.247C129.737 127.743 130.153 127.073 130.109 126.412L131.266 123.513ZM107.795 130.88C104.6 130.986 102.43 123.263 104.387 107.084C104.877 103.029 103.303 98.9536 100.049 96.4834L82.4942 83.1543L82.3234 85.9837C82.0092 91.1871 84.6293 96.3087 89.7896 100.579L98.3496 107.661C99.4006 108.531 99.9401 109.573 99.8886 110.633L98.7223 134.642C98.6788 135.303 99.094 135.972 99.9679 136.477C101.633 137.438 104.332 137.438 105.997 136.477C106.871 135.972 107.287 135.303 107.243 134.642L107.795 130.88Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M95.4665 27.3311C85.137 29.5765 79.2296 38.3336 79.0057 47.3313H78.8398V64.5642C78.8398 68.5205 80.4809 72.0934 83.1194 74.6396L80.9907 77.9139L96.0867 87.7016C98.9098 89.532 102.638 87.5057 102.638 84.1412C104.959 82.3424 104.812 78.7914 102.35 77.1909L102.036 76.9865L113.341 70.4437C114.208 69.9416 114.889 69.2013 115.318 68.3325L119.04 70.7521C121.279 72.2078 124.274 71.5727 125.73 69.3336C126.862 67.592 126.369 65.2623 124.627 64.13L121.309 61.9729V43.1933L121.39 41.653C121.856 32.7554 114.509 25.4149 105.612 25.8889L100.961 26.1367L95.4665 27.3311Z"
+    fill="#FF9C9B" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.438 75.3225L102.116 73.8127C99.5937 72.1729 97.9437 69.4847 97.6234 66.4934L95.5682 47.2997C95.5682 47.2992 95.5678 47.2989 95.5674 47.2988C95.5669 47.2988 95.5664 47.2992 95.5664 47.2997V67.3556C95.5664 70.7401 97.2783 73.8949 100.116 75.7396L102.347 77.19C104.633 78.6765 104.923 81.8456 103.093 83.7307C103.084 83.7402 103.075 83.75 103.066 83.7598C104.93 81.8788 104.649 78.6825 102.35 77.1877L101.951 76.9282L104.438 75.3225ZM102.602 84.7063C102.596 84.7358 102.591 84.7653 102.587 84.7947C102.582 84.8244 102.578 84.8543 102.575 84.8843C102.585 84.8255 102.594 84.7662 102.602 84.7063Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M105.232 16.6523L95.8566 18.9655L96.2634 26.7943L96.0559 27.8022L94.9165 33.4102C94.4327 35.7913 95.6796 38.1129 97.7792 39.0899L97.9823 40.2209C98.5337 43.2923 101.471 45.3352 104.542 44.7837C107.613 44.2323 109.656 41.2954 109.105 38.224L106.765 25.1884L106.962 24.0477L106.538 23.9248L105.232 16.6523Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.657 5.34766L94.5839 8.41289L96.5731 19.4926L92.5352 19.6627L95.9965 25.4072L95.4724 28.4331C94.9812 31.2695 96.8823 33.9671 99.7187 34.4583C101.101 34.6977 102.45 34.369 103.527 33.6407C104.911 34.1391 106.44 34.2918 107.992 34.0132C112.707 33.1668 115.842 28.6586 114.996 23.9439L111.657 5.34766Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.234 31.9478C111.16 32.7029 109.908 33.2416 108.531 33.4888C103.477 34.3963 98.6435 31.0344 97.736 25.9798L96.7254 20.3506C96.637 19.8584 96.1987 19.5072 95.6991 19.5282L94.3787 19.5839C93.887 19.6046 93.4835 19.9799 93.4273 20.4688L93.4011 20.6972C93.3758 20.9166 93.424 21.1382 93.538 21.3275L95.2216 24.1217C95.2824 24.2225 95.3605 24.3117 95.4524 24.3852L96.0177 24.8373C96.1824 24.9689 96.425 24.9273 96.5364 24.7483C96.7066 24.4747 97.1246 24.5548 97.1815 24.872L97.9228 29.0009C98.3084 31.1487 99.4539 32.9688 101.033 34.2341C101.236 34.3972 101.502 34.4645 101.756 34.4069C102.226 34.3006 102.675 34.13 103.092 33.9034C103.373 33.751 103.703 33.7072 104.009 33.7976C105.262 34.1674 106.618 34.2587 107.991 34.0121C109.63 33.718 111.077 32.9815 112.234 31.9478Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.014 20.4058H113.153C110.869 20.4058 108.878 18.8513 108.325 16.6355L108.156 15.9608C107.627 13.8454 105.572 12.4823 103.418 12.8175L102.632 12.9397C100.605 13.2551 99.2853 15.2437 99.783 17.2348C100.022 18.1887 99.8465 19.199 99.3011 20.0172L97.1916 23.1814C96.9634 23.5237 96.5447 23.6855 96.1456 23.5858L94.5041 23.1754C92.4758 20.9266 91.2383 17.9309 91.2383 14.6419C91.2383 7.65997 96.815 2 103.694 2C109.467 2 114.323 5.98577 115.735 11.3938C117.3 12.1715 118.382 13.8333 118.382 15.7577C118.382 17.9656 116.958 19.8278 115.014 20.4058Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.17 71.507L123.521 67.5581L121.509 67.4362C119.68 67.3254 118.2 65.9069 118.012 64.0841C117.993 63.9006 118.069 63.7203 118.215 63.607L118.549 63.3468C119.004 62.9929 118.891 62.277 118.35 62.0801C118.06 61.9748 117.867 61.6996 117.867 61.3915V41.4184C117.867 39.8098 116.563 38.5059 114.955 38.5059C114.832 38.5059 114.736 38.6112 114.748 38.7331L115.621 48.1399C115.765 49.6915 115.544 51.2553 114.977 52.7065L114.864 52.9948C114.773 53.2269 114.727 53.474 114.727 53.7233V57.6542C114.727 57.8827 114.766 58.1095 114.842 58.3248L115.373 59.8174C116.002 61.5835 116.063 63.5018 115.549 65.3045L115.094 66.899C114.964 67.3527 115.002 67.8258 115.181 68.241L119.041 70.7505C120.005 71.3771 121.109 71.6163 122.17 71.507Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.352 85.7502L102.344 85.618L88.6759 76.3239C87.8045 75.7313 87.9439 74.407 88.9195 74.0088C90.1944 73.4885 89.9219 71.6088 88.5518 71.4718L85.7012 71.1867C84.6538 71.082 83.8668 70.1832 83.9013 69.1311L84.799 41.7512C84.8249 40.9597 84.4942 40.1983 83.8979 39.6771C82.2844 38.2669 79.7516 39.2654 79.5346 41.3974L78.8672 47.9551V73.5634C78.8672 75.3118 79.7646 76.8506 81.124 77.7443L81.0142 77.9131L96.1102 87.7008C98.4459 89.2152 101.402 88.0896 102.352 85.7502Z"
+    fill="#DA3635" />
+  <ellipse cx="96.4787" cy="21.4498" rx="1.92787" ry="3.08459" fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M98.027 21.7513C98.0457 21.611 98.0556 21.4653 98.0556 21.3159C98.0556 20.1884 97.4931 19.2744 96.7993 19.2744C96.1054 19.2744 95.543 20.1884 95.543 21.3159C95.543 22.0656 95.7917 22.721 96.1623 23.0759C95.971 22.7728 95.8552 22.3772 95.8552 21.9443C95.8552 20.9903 96.4177 20.2169 97.1115 20.2169C97.3609 20.2169 97.3982 20.5724 97.4377 20.9491C97.464 21.1997 97.4913 21.4596 97.5827 21.6302C97.6541 21.7637 97.8295 21.7578 97.9964 21.7523C98.0066 21.7519 98.0168 21.7516 98.027 21.7513Z"
+    fill="#EF937F" />
+  <ellipse cx="105.301" cy="23.4348" rx="0.765209" ry="1.33954" transform="rotate(2.6285 105.301 23.4348)"
+    fill="#333333" />
+  <ellipse cx="112.703" cy="22.2175" rx="0.765209" ry="1.33912" transform="rotate(2.6285 112.703 22.2175)"
+    fill="#333333" />
+  <path d="M103.805 22.9919C104.57 22.5041 105.553 21.9846 106.889 22.3358" stroke="#333333" stroke-linecap="round" />
+  <path d="M112.285 20.6777C112.574 20.6777 113.106 20.6777 113.827 20.6777" stroke="#333333" stroke-linecap="round" />
+  <ellipse cx="110.34" cy="27" rx="1.5" ry="1" fill="#EF937F" />
+  <path d="M108.43 29.5752C108.858 29.9202 109.921 30.3204 110.743 29.1611" stroke="#333333" stroke-linecap="round" />
+  <path
+    d="M110.812 87.8708C109.744 87.2151 109.15 86.3491 109.15 85.4492L109.15 84.5872L129.953 73.2446C132.272 71.9798 135.885 71.9552 138.256 73.1881L150.851 79.7383L150.851 80.8977C150.851 81.813 150.236 82.6926 149.136 83.3515L128.685 95.5989C127.227 96.4719 124.801 96.4631 123.363 95.5796L110.812 87.8708Z"
+    fill="#989898" />
+  <rect width="30.8472" height="21.5482" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 107.345 84.5137)"
+    fill="#C5C5C5" />
+  <rect width="25.3527" height="19.5019" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 112.185 82.7432)"
+    fill="#444444" />
+  <rect width="1.94964" height="3.61134" rx="0.974821" transform="matrix(0.866025 -0.5 0.866025 0.5 115.936 88.1484)"
+    fill="#818181" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M114.784 81.242C113.349 82.0704 113.349 83.4136 114.784 84.242L115.455 84.6293L135.621 88.7136L141.033 85.5891L117.971 79.4018L114.784 81.242ZM122.658 76.6959L144.185 83.7691L146.341 82.5244L126.448 74.5078L122.658 76.6959ZM128.752 73.1773L148.139 81.4861L148.433 81.3166C148.65 81.191 148.835 81.0536 148.987 80.908L130.967 71.8984L128.752 73.1773Z"
+    fill="#656565" />
+  <path
+    d="M122.381 67.6153C120.93 69.5596 120.723 71.86 121.919 72.7533L123.623 74.4953L128.549 69.1283L127.176 65.7122C125.98 64.8189 123.833 65.6709 122.381 67.6153Z"
+    fill="#A0C7F1" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.405 72.5502L122.331 71.8355C122.223 70.7932 122.57 69.755 123.283 68.9872C124.094 68.1137 125.282 67.6932 126.462 67.8618L127.092 67.9517C127.974 68.0777 128.756 68.5854 129.23 69.3397L130.432 71.2522C131.623 73.1474 131.089 75.6465 129.226 76.8882L129.06 76.9756L129.801 79.9401C129.899 80.3319 130.251 80.6067 130.655 80.6067C130.789 80.6067 130.897 80.7153 130.897 80.8492V81.3347C130.897 81.6514 130.641 81.908 130.324 81.908C129.536 81.908 128.816 81.4628 128.463 80.758L127.09 78.0122L126.833 78.1477C126.16 78.502 125.333 78.3638 124.811 77.8098C123.454 76.3679 122.609 74.5199 122.405 72.5502Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.331 71.8362L122.405 72.5509C122.609 74.5206 123.455 76.3686 124.812 77.8106C125.333 78.3645 126.16 78.5027 126.833 78.1484L127.091 78.0129L127.755 79.3415L127.764 79.3356L126.212 76.2327C125.891 75.5904 125.408 75.043 124.81 74.6447C123.908 74.0434 123.367 73.031 123.367 71.947V68.9014C123.339 68.9297 123.311 68.9585 123.284 68.9879C122.571 69.7557 122.223 70.7939 122.331 71.8362ZM130.017 76.2034L127.922 73.3684L129.115 76.9476L129.226 76.8889C129.524 76.6901 129.789 76.4591 130.017 76.2034Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.046 90.1727L102.077 88.0437L103.936 82.4664L106.167 81.165L108.584 82.2805C109.947 82.5284 112.86 83.2472 113.603 84.1396C114.193 84.8472 115.83 84.8815 117.043 84.9069C117.743 84.9215 118.301 84.9332 118.437 85.0692C118.809 85.441 118.437 86.3705 117.136 86.5564C116.529 86.643 115.802 86.4876 115.085 86.3344C114.264 86.1587 113.455 85.986 112.86 86.1846C111.744 86.5564 111.93 87.8578 112.86 88.4155C113.789 88.9733 116.764 90.8324 117.321 91.3901C117.879 91.9478 117.693 92.6915 117.321 93.0633C117.056 93.3288 115.559 92.8361 113.506 91.5852C111.358 92.723 108.734 92.7581 106.512 91.5615L104.123 90.2751C104.097 90.2409 104.071 90.2068 104.046 90.1727L104.046 90.1727Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.078 88.044L104.047 90.173L104.047 90.173C104.072 90.2071 104.098 90.2413 104.124 90.2754L106.513 91.5619C108.73 92.7559 111.348 92.7234 113.493 91.5927L112.308 91.0003L109.923 90.6333C107.312 90.2318 105.01 88.704 103.626 86.4549L102.965 85.3809L102.078 88.044ZM114.264 92.0277L114.308 92.0003L113.64 91.666C113.854 91.7951 114.063 91.9156 114.264 92.0277Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.485 89.4165C100.926 88.8985 100.345 86.4248 101.187 83.8915C102.028 81.3581 103.975 79.7243 105.534 80.2423L108.028 81.9071L108.01 81.9567C107.89 81.8815 107.762 81.8205 107.625 81.7752C106.137 81.2808 104.277 82.8472 103.471 85.274C102.763 87.4052 103.103 89.4912 104.204 90.3026L102.485 89.4165ZM104.717 90.5674L104.868 90.6449L104.88 90.6117C104.825 90.5995 104.771 90.5848 104.717 90.5674Z"
+    fill="#A0C7F1" />
+  <path
+    d="M109.973 22.2207V22.2207C110.105 23.1905 110.586 24.079 111.325 24.7207L111.869 25.1934C112.489 25.7319 112.474 26.6994 111.837 27.2177L111.344 27.6187"
+    stroke="#333333" stroke-linecap="round" />
+  <defs>
+    <linearGradient id="paint0_linear_14421_58839" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/structureCreated.svg b/src/assets/form/structureCreated.svg
index b32856ddd..5d42ddda6 100644
--- a/src/assets/form/structureCreated.svg
+++ b/src/assets/form/structureCreated.svg
@@ -1,197 +1,138 @@
-<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5987_73910)">
-<path d="M33.9991 113.833L12.9823 101.799C6.72068 98.2138 6.6998 92.3728 12.9358 88.7724L40.3438 72.9484C46.5616 69.3586 56.6426 69.3586 62.8604 72.9484L178.985 139.993" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M109.406 131.833L27.9999 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.209 161.011L164.415 175.903C158.197 179.493 148.116 179.493 141.898 175.903L115.293 160.543" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M139.719 144.533C141.097 145.325 141.103 146.625 139.736 147.417L95.7307 172.992C94.3585 173.79 92.1273 173.785 90.7495 172.992L44.3736 146.218C42.9958 145.426 42.9847 144.132 44.3569 143.334L88.3621 117.759C89.7287 116.967 91.9655 116.967 93.3433 117.759L139.719 144.533Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M130.488 144.695C131.598 145.336 131.603 146.379 130.499 147.021L95.017 167.643C93.9125 168.284 92.1108 168.284 91.0008 167.643L53.6055 146.05C52.4955 145.409 52.4899 144.366 53.5944 143.724L89.0764 123.102C90.1808 122.461 91.9825 122.461 93.0925 123.102L130.488 144.695Z" fill="#EDEDED"/>
-<path d="M58.6543 105.593V144.522L92.6859 163.989V125.055L58.6543 105.593Z" fill="white"/>
-<path d="M58.6543 105.593V144.522L92.6859 163.989V125.055L58.6543 105.593Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6859 125.055L126.673 105.565L92.6859 86.0586L58.6543 105.593L92.6859 125.055Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.7079 122.182L121.624 105.598L92.7079 89.0034L63.7578 105.62L92.7079 122.182Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M126.673 105.565L126.723 144.522L92.6855 163.989V125.055L126.673 105.565Z" fill="white"/>
-<path d="M126.673 105.565L126.723 144.522L92.6855 163.989V125.055L126.673 105.565Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6857 81.6016L58.6484 101.141L92.6857 120.603L126.673 101.108L92.6857 81.6016ZM63.7579 101.175L92.708 84.5523L121.619 101.153L92.708 117.736L63.7579 101.175Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M58.6543 101.142V108.12L92.6859 127.587V120.603L58.6543 101.142Z" fill="white"/>
-<path d="M58.6543 101.142V108.12L92.6859 127.587V120.603L58.6543 101.142Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6855 120.603V127.202L126.673 107.707V101.114L92.6855 120.603Z" fill="white"/>
-<path d="M92.6855 120.603V127.202L126.673 107.707V101.114L92.6855 120.603Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.707 84.5522V89.0035L117.741 103.373L121.624 101.153L92.707 84.5522Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.7578 101.175L92.7079 84.5522V89.0035L67.6011 103.373L63.7578 101.175Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 118.087V128.267L122.032 124.513L123.108 123.905V113.72L115.455 118.087Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 118.093V127.151L122.032 123.397V114.344L115.455 118.093Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.75 123.426V133.611L112.332 129.851L113.403 129.243V119.063L105.75 123.426Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.75 123.431V132.495L112.332 128.741V119.683L105.75 123.431Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 128.39V138.57L102.832 134.821L103.909 134.208V124.028L96.2559 128.39Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 128.395V137.46L102.832 133.706V124.647L96.2559 128.395Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 130.51V140.69L122.053 136.941L123.13 136.328V126.142L115.477 130.51Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 130.515V139.579L122.053 135.825V126.767L115.477 130.515Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 135.848V146.028L112.354 142.279L113.43 141.666V131.486L105.777 135.848Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 135.853V144.918L112.354 141.164V132.105L105.777 135.853Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 140.818V150.998L102.86 147.244L103.931 146.636V136.45L96.2832 140.818Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 140.824V149.882L102.86 146.128V137.075L96.2832 140.824Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M82.2773 156.046L82.3108 130.024L90.4101 134.699L90.3767 160.72L82.2773 156.046Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M59.959 143.167L59.9925 117.145L68.0918 121.819L68.0583 147.841L59.959 143.167Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M79.5053 132.44L79.4383 156.492L67.2559 149.458L67.3228 125.406L79.5053 132.44Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.4378 125.283L68.2491 123.654L68.171 149.994L65.3652 151.628L65.4378 125.283Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M79.5879 131.536L82.3992 129.901L82.3155 158.16L79.5098 159.794L79.5879 131.536Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.7246 122.377L66.5359 120.748L82.3999 129.902L79.5886 131.536L63.7246 122.377Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M79.5885 131.536L79.5104 159.795L77.7924 158.802L77.8649 132.462L65.437 125.283L65.3645 151.628L63.6465 150.635L63.7246 122.377L79.5885 131.536Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.377 129.294L66.2025 128.814L77.8606 135.552L77.8662 136.512L65.377 129.294Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M77.8656 136.511L77.8489 140.622L65.3652 133.404L65.3764 129.293L77.8656 136.511Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M76.5431 144.048L76.5375 147.339L75.4219 146.697L75.433 143.406L76.5431 144.048Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M75.5731 144.885L75.389 145.108C75.3333 145.175 75.2384 145.203 75.1492 145.175L74.1061 144.84C73.9499 144.79 73.7937 144.924 73.8216 145.085C73.8383 145.169 73.8941 145.23 73.9722 145.258L75.5954 145.766C75.6568 145.788 75.7293 145.777 75.7851 145.738L76.2313 145.442C76.3652 145.353 76.3652 145.164 76.2313 145.074L75.8632 144.834C75.7684 144.779 75.6456 144.795 75.5731 144.885Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M58.6543 63.5234V102.458L92.6915 121.92V82.9852L58.6543 63.5234Z" fill="white"/>
-<path d="M58.6543 63.5234V102.458L92.6915 121.92V82.9852L58.6543 63.5234Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6915 82.9849L126.673 63.4952L92.6915 43.9888L58.6543 63.5231L92.6915 82.9849Z" fill="white"/>
-<path d="M92.6915 82.9849L126.673 63.4952L92.6915 43.9888L58.6543 63.5231L92.6915 82.9849Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M126.673 63.4951L126.723 102.458L92.6914 121.92V82.9848L126.673 63.4951Z" fill="white"/>
-<path d="M126.673 63.4951L126.723 102.458L92.6914 121.92V82.9848L126.673 63.4951Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.5339 76.403V86.583L61.9519 82.8289L60.8809 82.2209V72.041L68.5339 76.403Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.5277 76.4083V85.4671L61.9512 81.713V72.6543L68.5277 76.4083Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.2351 81.7414V91.9269L71.6586 88.1729L70.582 87.5593V77.3794L78.2351 81.7414Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.2347 81.747V90.8057L71.6582 87.0573V77.9985L78.2347 81.747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.7276 86.7058V96.8913L81.1511 93.1373L80.0801 92.5293V82.3438L87.7276 86.7058Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.7289 86.7114V95.7757L81.1523 92.0217V82.9629L87.7289 86.7114Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.6336 88.8254V99.0053L62.057 95.2569L60.9805 94.6433V84.4634L68.6336 88.8254Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.6332 88.8309V97.8953L62.0566 94.1413V85.0825L68.6332 88.8309Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.3331 94.1692V104.349L71.7621 100.595L70.6855 99.9871V89.8071L78.3331 94.1692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.3343 94.1744V103.233L71.7578 99.4792V90.4204L78.3343 94.1744Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8328 99.1335V109.313L81.2562 105.559L80.1797 104.957V94.7715L87.8328 99.1335Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8268 99.1391V108.198L81.2559 104.444V95.3906L87.8268 99.1391Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 76.0183V86.1982L122.032 82.4442L123.108 81.8362V71.6562L115.455 76.0183Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 76.0239V85.0826L122.032 81.3286V72.2754L115.455 76.0239Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.756 81.3567V91.5422L112.332 87.7881L113.403 87.1746V76.9946L105.756 81.3567Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.756 81.3622V90.4265L112.332 86.6725V77.6138L105.756 81.3622Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 86.321V96.5009L102.838 92.7525L103.909 92.1389V81.959L96.2559 86.321Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 86.3266V95.3909L102.838 91.6369V82.5781L96.2559 86.3266Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 88.4402V98.6257L122.059 94.8717L123.13 94.2581V84.0781L115.477 88.4402Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 88.4457V97.51L122.059 93.756V84.6973L115.477 88.4457Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 93.7839V103.964L112.354 100.21L113.43 99.6018V89.4219L105.777 93.7839Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 93.7897V102.854L112.354 99.1V90.0356L105.777 93.7897Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 98.7483V108.928L102.86 105.174L103.936 104.566V94.3862L96.2832 98.7483Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 98.7538V107.813L102.86 104.064V95.0054L96.2832 98.7538Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M58.6543 61.5039V63.5232L92.9648 83.7826V81.7634L58.6543 61.5039Z" fill="white"/>
-<path d="M58.6543 61.5039V63.5232L92.9648 83.7826V81.7634L58.6543 61.5039Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.9648 81.7633L126.55 62.5079L92.2843 42.1982L58.6543 61.5038L92.9648 81.7633Z" fill="white"/>
-<path d="M92.9648 81.7633L126.55 62.5079L92.2843 42.1982L58.6543 61.5038L92.9648 81.7633Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M126.55 62.5078L126.6 64.5494L92.9648 83.7825V81.7632L126.55 62.5078Z" fill="white"/>
-<path d="M126.55 62.5078L126.6 64.5494L92.9648 83.7825V81.7632L126.55 62.5078Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M90.7567 41.1665L60.5684 58.4975L64.5901 60.7956L92.9712 77.2955L119.138 62.2906L123.115 60.0092L90.7567 41.1665ZM92.988 74.7463L65.0977 58.5254L90.7791 43.7826L118.641 60.037L116.929 61.0188L92.988 74.7463Z" fill="white"/>
-<path d="M90.7567 41.1665L60.5684 58.4975L64.5901 60.7956L92.9712 77.2955L119.138 62.2906L123.115 60.0092L90.7567 41.1665ZM92.988 74.7463L65.0977 58.5254L90.7791 43.7826L118.641 60.037L116.929 61.0188L92.988 74.7463Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M60.5684 58.4976V60.6284L92.9657 79.432V77.3012L60.5684 58.4976Z" fill="white"/>
-<path d="M60.5684 58.4976V60.6284L92.9657 79.432V77.3012L60.5684 58.4976Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.9648 77.3012V79.432L123.114 62.1401V60.0093L92.9648 77.3012Z" fill="white"/>
-<path d="M92.9648 77.3012V79.432L123.114 62.1401V60.0093L92.9648 77.3012Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M90.7734 43.7827L90.8069 46.2036L116.544 61.242L118.63 60.0371L90.7734 43.7827Z" fill="white"/>
-<path d="M90.7734 43.7827L90.8069 46.2036L116.544 61.242L118.63 60.0371L90.7734 43.7827Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.0918 58.5255L90.7787 43.7827L90.8121 46.2036L67.2003 59.7248L65.0918 58.5255Z" fill="white"/>
-<path d="M65.0918 58.5255L90.7787 43.7827L90.8121 46.2036L67.2003 59.7248L65.0918 58.5255Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M97.1891 55.8248C100.374 57.6609 100.394 60.642 97.2286 62.478C94.0632 64.314 88.917 64.314 85.7319 62.478C82.5468 60.642 82.5336 57.6609 85.699 55.8248C88.8644 53.9888 94.004 53.9822 97.1891 55.8248Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M183.915 137.345C187.146 139.207 187.159 142.228 183.954 144.097C180.749 145.966 175.531 145.959 172.3 144.097C169.068 142.235 169.055 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.724 34.9455)" fill="white" stroke="#706F6F"/>
-<path d="M197.06 9.24078C197.357 9.06825 197.599 9.20628 197.603 9.55134L197.616 14.3691C197.616 14.7099 197.374 15.1283 197.077 15.3008L193.652 17.2762C193.354 17.4487 193.113 17.3107 193.109 16.9657L193.096 12.1478C193.096 11.8071 193.337 11.3887 193.635 11.2162L197.06 9.24078Z" fill="#DA3635"/>
-<path d="M196.391 11.626C196.421 11.6088 196.447 11.6044 196.473 11.6174C196.516 11.6433 196.516 11.7252 196.473 11.8028L195.723 13.1011V13.1874L196.477 13.6187C196.521 13.6446 196.521 13.7265 196.477 13.8042C196.456 13.843 196.43 13.8689 196.4 13.8861C196.374 13.9034 196.344 13.9077 196.318 13.8947L195.563 13.4634L195.49 13.5066L194.739 14.8048C194.718 14.8436 194.692 14.8695 194.662 14.8868C194.631 14.904 194.606 14.9083 194.58 14.8954C194.537 14.8652 194.537 14.7832 194.58 14.7099L195.33 13.4117V13.3254L194.575 12.8941C194.532 12.8682 194.532 12.7863 194.575 12.7086C194.597 12.6698 194.627 12.6396 194.653 12.6267C194.683 12.6094 194.709 12.6051 194.735 12.618L195.49 13.0494L195.563 13.0062L196.314 11.708C196.331 11.6735 196.361 11.6433 196.391 11.626Z" fill="white"/>
-<path d="M165.837 52.9245C166.635 52.463 167.287 52.8339 167.291 53.7526L167.304 58.083C167.308 59.0017 166.657 60.1232 165.859 60.5847L161.986 62.8232C161.188 63.2847 160.536 62.9095 160.536 61.9951L160.523 57.6647C160.519 56.746 161.17 55.6246 161.964 55.1674L165.837 52.9245ZM166.998 58.2599L166.985 53.9295C166.985 53.2049 166.467 52.9116 165.837 53.2782L161.964 55.5167C161.334 55.879 160.825 56.7632 160.83 57.4878L160.843 61.8183C160.843 62.5429 161.36 62.8318 161.986 62.4695L165.859 60.231C166.489 59.8644 166.998 58.9845 166.998 58.2599Z" fill="#706F6F"/>
-<path d="M165.838 53.2738C166.467 52.9115 166.981 53.2005 166.985 53.9251L166.998 58.2555C166.998 58.9801 166.489 59.86 165.859 60.2267L161.986 62.4652C161.356 62.8275 160.843 62.5385 160.843 61.8139L160.83 57.4835C160.83 56.7589 161.339 55.8747 161.964 55.5124L165.838 53.2738Z" fill="white"/>
-<path d="M190.314 30.272C190.651 30.0779 190.927 30.2332 190.927 30.6214C190.927 31.0096 190.655 31.484 190.319 31.6781L165.63 45.9331C165.289 46.1272 165.018 45.9676 165.018 45.5838C165.018 45.1956 165.289 44.7254 165.626 44.527L190.314 30.272Z" fill="#DA3635"/>
-<path d="M185.911 29.8404C186.252 29.6463 186.524 29.8016 186.524 30.1898C186.524 30.5779 186.252 31.0481 185.915 31.2465L170.034 40.4163C169.698 40.6104 169.426 40.4508 169.422 40.0669C169.422 39.6787 169.694 39.2086 170.03 39.0145L185.911 29.8404Z" 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.1314C187.364 46.0322 187.498 46.1099 187.498 46.3083C187.498 46.5024 187.364 46.7396 187.192 46.8345L169.461 57.0739C169.288 57.1731 169.154 57.0912 169.154 56.8971C169.154 56.703 169.288 56.4701 169.461 56.3709L187.192 46.1314Z" fill="#706F6F"/>
-<path d="M165.837 64.2679C166.635 63.8064 167.286 64.1773 167.291 65.0917L167.304 69.4221C167.308 70.3365 166.657 71.4579 165.859 71.9194L161.986 74.158C161.188 74.6195 160.536 74.2442 160.536 73.3298L160.523 68.9994C160.519 68.085 161.17 66.9636 161.964 66.5021L165.837 64.2679ZM166.998 69.5989L166.985 65.2685C166.985 64.5482 166.467 64.2549 165.837 64.6172L161.964 66.8558C161.334 67.2181 160.825 68.1023 160.83 68.8226L160.843 73.153C160.843 73.8733 161.36 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.919 55.7542C186.091 55.655 186.225 55.7369 186.225 55.931C186.225 56.1251 186.091 56.358 185.919 56.4572L169.24 66.0842C169.067 66.1834 168.934 66.1015 168.934 65.9074C168.934 65.7133 169.067 65.4804 169.24 65.3812L185.919 55.7542Z" fill="#706F6F"/>
-<path d="M179.463 61.2577C179.631 61.1628 179.769 61.2404 179.769 61.4345C179.769 61.6286 179.631 61.8658 179.463 61.9607L169.275 67.8439C169.107 67.9388 168.969 67.8611 168.969 67.667C168.969 67.4729 169.107 67.2357 169.275 67.1408L179.463 61.2577Z" fill="#706F6F"/>
-<path d="M165.838 76.3793C166.467 76.017 166.981 76.306 166.985 77.0306L166.998 81.361C166.998 82.0813 166.489 82.9655 165.859 83.3321L161.986 85.5706C161.356 85.933 160.843 85.6397 160.843 84.9194L160.83 80.5889C160.83 79.8643 161.339 78.9801 161.964 78.6178L165.838 76.3793Z" fill="white"/>
-<path d="M165.837 76.03C166.635 75.5685 167.287 75.9394 167.291 76.8581L167.304 81.1885C167.308 82.1072 166.657 83.2287 165.859 83.6902L161.986 85.9287C161.188 86.3902 160.536 86.0149 160.536 85.1006L160.523 80.7701C160.519 79.8514 161.17 78.73 161.964 78.2728L165.837 76.03ZM166.998 81.361L166.985 77.0306C166.985 76.306 166.467 76.0127 165.837 76.3793L161.964 78.6179C161.334 78.9802 160.825 79.8644 160.83 80.589L160.843 84.9194C160.843 85.6397 161.36 85.933 161.986 85.5707L165.859 83.3322C166.489 82.9699 166.998 82.0857 166.998 81.361Z" fill="#706F6F"/>
-<path d="M179.511 71.484C179.679 71.3891 179.817 71.4625 179.817 71.6609C179.817 71.855 179.679 72.0879 179.511 72.1871L169.56 77.9322C169.392 78.0271 169.254 77.9538 169.254 77.7597C169.254 77.5656 169.392 77.3284 169.56 77.2335L179.511 71.484Z" fill="#706F6F"/>
-<path d="M187.432 67.0028C187.601 66.9079 187.739 66.9855 187.739 67.1796C187.739 67.3737 187.601 67.611 187.432 67.7058L181.002 71.4195C180.829 71.5187 180.695 71.441 180.695 71.2426C180.695 71.0485 180.829 70.8113 181.002 70.7164L187.432 67.0028Z" fill="#706F6F"/>
-<path d="M187.192 69.2369C187.364 69.1377 187.498 69.2153 187.498 69.4137C187.498 69.6078 187.364 69.8408 187.192 69.94L169.461 80.1794C169.288 80.2786 169.154 80.201 169.154 80.0069C169.154 79.8128 169.288 79.5799 169.461 79.4807L187.192 69.2369Z" fill="#706F6F"/>
-<path d="M165.837 88.6373C166.635 88.1758 167.287 88.5424 167.291 89.4611L167.304 93.7916C167.308 94.7103 166.657 95.8317 165.859 96.2932L161.986 98.5317C161.188 98.9932 160.536 98.618 160.536 97.7036L160.523 93.3732C160.519 92.4545 161.17 91.3374 161.964 90.8759L165.837 88.6373ZM166.998 93.9684L166.985 89.638C166.985 88.9177 166.467 88.6244 165.837 88.9867L161.964 91.2252C161.334 91.5875 160.825 92.4717 160.83 93.192L160.843 97.5224C160.843 98.247 161.36 98.5403 161.986 98.178L165.859 95.9395C166.489 95.5772 166.998 94.693 166.998 93.9684Z" fill="#706F6F"/>
-<path d="M165.838 88.9867C166.467 88.6244 166.981 88.9134 166.985 89.638L166.998 93.9684C166.998 94.693 166.489 95.5772 165.859 95.9395L161.986 98.1781C161.356 98.5404 160.843 98.2471 160.843 97.5225L160.83 93.1921C160.83 92.4718 161.339 91.5876 161.964 91.2253L165.838 88.9867Z" fill="white"/>
-<path d="M182.068 82.7067C182.236 82.6118 182.374 82.6851 182.374 82.8835C182.374 83.0776 182.236 83.3149 182.068 83.4097L169.357 90.7508C169.189 90.8457 169.051 90.768 169.051 90.5739C169.051 90.3798 169.189 90.1426 169.357 90.0477L182.068 82.7067Z" fill="#706F6F"/>
-<path d="M187.192 81.8401C187.364 81.7409 187.498 81.8229 187.498 82.017C187.498 82.2111 187.364 82.444 187.192 82.5432L169.461 92.7826C169.288 92.8818 169.154 92.7999 169.154 92.6058C169.154 92.4117 169.288 92.1788 169.461 92.0796L187.192 81.8401Z" fill="#706F6F"/>
-<path d="M165.367 66.7223C165.475 66.6576 165.583 66.6446 165.669 66.6921C165.837 66.787 165.837 67.0975 165.669 67.3822L163.927 70.3971C163.819 70.5826 163.681 70.7292 163.53 70.8155C163.379 70.9017 163.236 70.919 163.129 70.8543L162.482 70.4833C162.313 70.3885 162.313 70.0779 162.482 69.7933C162.564 69.6509 162.671 69.5388 162.784 69.4784C162.891 69.4137 162.999 69.4008 163.085 69.4482L163.534 69.7027L165.074 67.0328C165.151 66.8948 165.259 66.787 165.367 66.7223Z" fill="#DA3635"/>
-<path d="M165.367 55.8146C165.475 55.7499 165.583 55.7369 165.669 55.7844C165.837 55.8793 165.837 56.1898 165.669 56.4745L163.927 59.4894C163.819 59.6748 163.681 59.8215 163.53 59.9077C163.379 59.994 163.236 60.0112 163.129 59.9466L162.482 59.5756C162.313 59.4807 162.313 59.1702 162.482 58.8855C162.564 58.7432 162.671 58.631 162.784 58.5706C162.891 58.506 162.999 58.493 163.085 58.5405L163.534 58.7949L165.074 56.1251C165.151 55.9871 165.259 55.8749 165.367 55.8146Z" fill="#DA3635"/>
-<path d="M165.367 78.9156C165.475 78.8509 165.583 78.838 165.669 78.8854C165.837 78.9803 165.837 79.2909 165.669 79.5755L163.927 82.5904C163.819 82.7759 163.681 82.9226 163.53 83.0088C163.379 83.0951 163.236 83.1123 163.129 83.0476L162.482 82.6767C162.313 82.5818 162.313 82.2713 162.482 81.9866C162.564 81.8443 162.671 81.7321 162.784 81.6717C162.891 81.607 162.999 81.5941 163.085 81.6416L163.534 81.896L165.074 79.2262C165.151 79.0925 165.259 78.9803 165.367 78.9156Z" fill="#DA3635"/>
-<path d="M165.367 91.0143C165.475 90.9496 165.583 90.9366 165.669 90.9841C165.837 91.079 165.837 91.3895 165.669 91.6742L163.927 94.6891C163.819 94.8746 163.681 95.0212 163.53 95.1075C163.379 95.1937 163.236 95.211 163.129 95.1463L162.482 94.7753C162.313 94.6804 162.313 94.3699 162.482 94.0852C162.564 93.9429 162.671 93.8308 162.784 93.7704C162.891 93.7057 162.999 93.6927 163.085 93.7402L163.534 93.9947L165.074 91.3248C165.151 91.1911 165.259 91.079 165.367 91.0143Z" fill="#DA3635"/>
-<path d="M94.6207 57.1831C96.4494 58.0939 96.4608 59.5728 94.6434 60.4836C92.826 61.3944 89.8714 61.3944 88.0428 60.4836C86.2141 59.5728 86.2065 58.0939 88.0238 57.1831C89.8412 56.2723 92.792 56.2723 94.6207 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="M31.3816 176.272C34.6128 178.134 34.6259 181.155 31.4211 183.024C28.2162 184.886 22.9976 184.886 19.7664 183.024C16.5353 181.161 16.5221 178.141 19.7335 176.272C22.9384 174.403 28.157 174.403 31.3816 176.272Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" fill="white"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" fill="white"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" fill="white"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" fill="white"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" fill="white"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" fill="white"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" fill="white"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" fill="white"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" fill="white"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" fill="white"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" fill="white"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" fill="white"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" fill="white"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" fill="white"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.3502 164.361C36.7776 164.551 36.5736 165.361 36.6658 165.881C36.7316 166.216 36.8698 166.434 36.8895 166.802C36.9027 167.105 36.7776 167.625 37.0343 167.802C37.2909 167.98 37.8766 167.704 38.0346 167.5C38.3373 167.085 38.1596 166.868 38.1465 166.466C38.1333 166.026 38.8309 165.894 38.6532 165.433C38.4887 165.045 37.7779 164.157 37.3502 164.361Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" fill="white"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" fill="white"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" fill="white"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" fill="white"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M36.5995 175.851C36.8693 176.2 36.6785 177.693 36.6653 178.292C36.6521 179.26 36.6785 180.51 35.54 180.431C35.5071 179.339 35.5531 178.259 35.6058 177.18C35.619 176.831 35.4281 175.956 35.5926 175.686C35.8427 175.337 36.5995 175.245 36.5995 175.851Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" fill="white"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" fill="white"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M24.2676 153.015C23.3002 153.015 22.2341 152.87 21.5826 153.726C21.1548 154.298 19.8716 156.141 19.9637 156.819C20.0558 157.536 21.089 157.786 21.2206 158.53C21.3457 159.247 21.2075 160.372 21.1548 161.103C21.0298 162.978 20.5494 164.768 20.5231 166.67C20.5099 167.684 20.0492 168.671 20.0953 169.651C20.1282 170.336 20.7008 171.665 21.3786 171.935C21.8853 172.126 22.188 171.79 22.6355 171.711C23.1291 171.645 23.3528 171.823 23.7806 172.027C25.0375 172.659 26.0641 172.823 27.2552 171.961C27.6698 171.678 27.9857 171.389 28.4266 171.152C29.0321 170.849 29.2361 170.961 29.269 170.119C29.3348 169.309 29.2229 168.5 29.269 167.703C29.3348 166.611 28.8741 165.453 28.6635 164.374C28.4398 163.103 28.5977 162.294 28.8412 161.057C28.907 160.741 28.7623 159.833 29.0189 159.616C29.3545 159.313 30.0981 159.885 30.4601 159.55C31.0787 159.023 29.6178 156.661 29.1571 156.174C28.3937 155.332 27.4461 154.384 26.5708 153.68C26.4721 153.614 26.1431 153.331 26.018 153.318C25.5574 153.252 25.8601 153.417 25.5245 153.542C24.952 153.844 24.6032 153.857 24.2676 153.015Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" fill="white"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" fill="white"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" fill="white"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" fill="#DA3635"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" fill="white"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" fill="white"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.0944 163.235C37.5551 163.459 37.3971 163.953 37.7262 164.203C38.075 164.473 38.5027 164.216 38.8976 164.696C39.6412 165.585 38.9963 166.407 38.0091 166.618C38.0091 166.618 36.9299 165.887 37.1997 164.492C37.1142 164.091 36.9365 163.597 37.0944 163.235Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.429 103.278C39.4291 106.166 39.4614 110.848 34.4883 113.736C29.5151 116.624 21.4331 116.624 16.433 113.736C11.4329 110.848 11.406 106.166 16.3791 103.278C21.3522 100.39 29.4235 100.39 34.429 103.278Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M32.9909 103.989C37.1882 106.414 37.2151 110.342 33.0448 112.766C28.8744 115.191 22.0855 115.191 17.8829 112.766C13.6856 110.342 13.664 106.414 17.8344 103.989C22.0101 101.565 28.7936 101.565 32.9909 103.989Z" fill="#EDEDED"/>
-<path d="M35.2905 103.747C35.2851 103.795 35.2851 103.844 35.2797 103.898C35.2743 103.941 35.269 103.984 35.2636 104.027C35.2582 104.076 35.2474 104.124 35.242 104.173C35.2366 104.216 35.2259 104.259 35.2151 104.302C35.2043 104.35 35.1935 104.399 35.1774 104.447C35.1666 104.49 35.1504 104.533 35.1396 104.577C35.1235 104.625 35.1073 104.674 35.0912 104.717C35.075 104.76 35.0588 104.803 35.0427 104.846C35.0211 104.894 34.9996 104.943 34.978 104.997C34.9618 105.04 34.9403 105.078 34.9187 105.121C34.8972 105.169 34.8702 105.218 34.8433 105.266C34.8218 105.304 34.8002 105.347 34.7787 105.385C34.7463 105.444 34.7086 105.503 34.6709 105.557C34.6493 105.595 34.6278 105.627 34.6008 105.665C34.5577 105.73 34.5092 105.794 34.4607 105.854C34.4392 105.88 34.4176 105.907 34.3961 105.94C34.3153 106.042 34.2291 106.139 34.1429 106.236C34.1213 106.263 34.0944 106.285 34.0728 106.312C34.0028 106.387 33.9273 106.462 33.8519 106.532C33.8142 106.565 33.7819 106.597 33.7441 106.629C33.6957 106.673 33.6472 106.716 33.5987 106.753C33.5556 106.791 33.5125 106.829 33.464 106.867C33.4155 106.91 33.3616 106.947 33.3077 106.99C33.2592 107.028 33.2107 107.066 33.1622 107.098C33.1084 107.136 33.0545 107.179 32.9952 107.217C32.9413 107.254 32.8928 107.287 32.839 107.324C32.7797 107.362 32.7204 107.4 32.6611 107.438C32.5857 107.486 32.5103 107.529 32.4349 107.578C32.2193 107.702 31.9984 107.815 31.7721 107.928C31.7129 107.955 31.6536 107.987 31.5889 108.014C31.3842 108.111 31.1741 108.197 30.9585 108.284C30.9316 108.294 30.9047 108.305 30.8723 108.316C30.6407 108.402 30.4036 108.483 30.1665 108.558C29.9995 108.612 29.8271 108.655 29.66 108.704C29.5307 108.742 29.4014 108.774 29.2721 108.806C29.0943 108.849 28.9111 108.887 28.7279 108.925C28.5932 108.952 28.4639 108.984 28.3292 109.006C28.2753 109.016 28.216 109.022 28.1622 109.032C27.9359 109.07 27.7096 109.103 27.4779 109.129C27.4132 109.135 27.3432 109.146 27.2785 109.151C27.1492 109.167 27.0145 109.173 26.8798 109.183C26.6589 109.2 26.438 109.216 26.2117 109.226C26.0716 109.232 25.9261 109.237 25.786 109.237C25.6082 109.243 25.425 109.243 25.2472 109.237C25.0964 109.237 24.9455 109.232 24.7946 109.226C24.6276 109.221 24.4606 109.21 24.2935 109.2C24.1427 109.189 23.9918 109.178 23.8356 109.162C23.6685 109.146 23.5069 109.129 23.3453 109.108C23.1998 109.092 23.0489 109.07 22.9034 109.043C22.7256 109.016 22.5532 108.984 22.3808 108.952C22.2461 108.925 22.106 108.898 21.9713 108.871C21.7666 108.828 21.5618 108.774 21.3571 108.72C21.2278 108.688 21.0931 108.655 20.9638 108.612C20.8937 108.591 20.8237 108.569 20.759 108.548C20.5543 108.483 20.3549 108.413 20.1609 108.343C20.1017 108.321 20.0478 108.3 19.9885 108.278C19.8107 108.208 19.6383 108.133 19.4659 108.057C19.3797 108.02 19.2935 107.987 19.2126 107.944C18.9648 107.826 18.7223 107.702 18.4907 107.567C16.5456 106.446 15.5757 104.97 15.5811 103.504L15.5703 107.745C15.5649 109.216 16.5348 110.687 18.4799 111.813C18.7116 111.947 18.954 112.071 19.2019 112.19C19.2827 112.228 19.3743 112.265 19.4551 112.303C19.6006 112.368 19.7461 112.438 19.8969 112.497C19.9239 112.508 19.9508 112.519 19.9778 112.524C20.0316 112.545 20.0909 112.567 20.1502 112.589C20.3441 112.659 20.5489 112.729 20.7482 112.793C20.8183 112.815 20.8883 112.836 20.9584 112.858C21.0069 112.874 21.05 112.89 21.0985 112.901C21.1793 112.923 21.2655 112.939 21.3517 112.96C21.5564 113.014 21.7558 113.063 21.9659 113.111C22.0198 113.122 22.0737 113.138 22.1276 113.149C22.2084 113.165 22.2892 113.176 22.37 113.192C22.5425 113.224 22.7202 113.257 22.8927 113.284C22.9627 113.294 23.0328 113.311 23.1028 113.321C23.1782 113.332 23.259 113.337 23.3345 113.348C23.4961 113.37 23.6632 113.386 23.8302 113.402C23.911 113.408 23.9864 113.424 24.0673 113.429C24.1427 113.434 24.2127 113.434 24.2882 113.44C24.4552 113.451 24.6222 113.461 24.7893 113.467C24.8755 113.472 24.9563 113.478 25.0425 113.478C25.1071 113.478 25.1772 113.478 25.2418 113.478C25.4196 113.478 25.6028 113.478 25.7806 113.478C25.8722 113.478 25.9585 113.478 26.05 113.478C26.1039 113.478 26.1578 113.467 26.2063 113.467C26.4272 113.456 26.6535 113.44 26.8744 113.424C26.966 113.418 27.0522 113.413 27.1438 113.408C27.1869 113.402 27.23 113.397 27.2731 113.391C27.3378 113.386 27.4078 113.375 27.4725 113.37C27.7042 113.343 27.9305 113.311 28.1568 113.273C28.2106 113.262 28.2699 113.257 28.3238 113.246C28.3507 113.241 28.3777 113.241 28.4046 113.235C28.5124 113.214 28.6147 113.187 28.7225 113.165C28.9057 113.127 29.0889 113.09 29.2667 113.047C29.396 113.014 29.5253 112.976 29.6546 112.944C29.8271 112.896 29.9941 112.853 30.1611 112.799C30.1988 112.788 30.2365 112.777 30.2689 112.766C30.4736 112.702 30.673 112.632 30.8669 112.556C30.8939 112.545 30.9208 112.535 30.9532 112.524C31.1687 112.438 31.3788 112.352 31.5835 112.255C31.6428 112.228 31.7075 112.201 31.7667 112.168C31.993 112.061 32.2193 111.942 32.4295 111.818C32.4726 111.797 32.5103 111.77 32.548 111.748C32.5857 111.726 32.6181 111.705 32.6558 111.678C32.715 111.64 32.7743 111.603 32.8336 111.565C32.8874 111.527 32.9413 111.495 32.9898 111.457C33.0437 111.419 33.103 111.382 33.1569 111.339C33.2053 111.301 33.2538 111.263 33.3023 111.225C33.3562 111.188 33.4047 111.145 33.4586 111.107C33.5071 111.069 33.5502 111.031 33.5933 110.994C33.6418 110.951 33.6903 110.913 33.7334 110.87C33.7549 110.854 33.7711 110.837 33.7926 110.821C33.8088 110.805 33.825 110.789 33.8411 110.773C33.9166 110.697 33.992 110.627 34.062 110.552C34.0836 110.525 34.1105 110.503 34.1321 110.476C34.2237 110.379 34.3099 110.277 34.3853 110.18C34.3907 110.175 34.3907 110.169 34.3961 110.169C34.4123 110.148 34.4284 110.121 34.45 110.099C34.4985 110.035 34.547 109.975 34.5901 109.911C34.6116 109.873 34.6386 109.841 34.6601 109.803C34.6978 109.744 34.7355 109.684 34.7679 109.631C34.7786 109.614 34.7894 109.598 34.7948 109.582C34.8056 109.561 34.8164 109.534 34.8325 109.512C34.8595 109.464 34.8864 109.415 34.908 109.367C34.9295 109.323 34.9457 109.286 34.9672 109.243C34.9888 109.194 35.0103 109.146 35.0319 109.092C35.0427 109.07 35.0534 109.049 35.0588 109.027C35.0642 109.006 35.0696 108.984 35.0804 108.968C35.0965 108.919 35.1127 108.871 35.1289 108.828C35.1396 108.785 35.1558 108.742 35.1666 108.698C35.1774 108.65 35.1935 108.601 35.2043 108.553C35.2097 108.526 35.2205 108.499 35.2259 108.478C35.2312 108.461 35.2312 108.44 35.2366 108.424C35.2474 108.375 35.2528 108.327 35.2582 108.278C35.2636 108.235 35.269 108.192 35.2743 108.149C35.2797 108.1 35.2797 108.052 35.2851 107.998C35.2851 107.971 35.2905 107.939 35.2905 107.912C35.2905 107.885 35.2905 107.852 35.2905 107.826L35.3013 103.585C35.2959 103.634 35.2905 103.688 35.2905 103.747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M32.3867 99.5065C36.2499 101.737 36.2714 105.353 32.4352 107.583C28.5989 109.814 22.3542 109.814 18.4909 107.583C14.6277 105.353 14.6116 101.737 18.4478 99.5065C22.2841 97.2758 28.5235 97.2758 32.3867 99.5065Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M25.782 99.6196L28.2713 105.234C28.309 105.315 28.2551 105.406 28.1689 105.417L22.8348 106.198C22.7755 106.209 22.7162 106.177 22.6947 106.123L22.2798 105.191C22.2421 105.11 22.296 105.018 22.3822 105.008L25.5988 104.534C25.685 104.523 25.7335 104.431 25.7012 104.35L23.7723 99.9914C23.7346 99.9106 23.7884 99.819 23.8747 99.8082L25.6473 99.5496C25.7012 99.5334 25.7551 99.5658 25.782 99.6196Z" fill="#DA3635"/>
-<path d="M91.334 42.5L91.334 58.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M110.969 5.64581L104.223 1.72504C105.264 1.1239 106.309 0.978403 107.106 1.43404L113.852 5.35481C113.056 4.89535 112.011 5.04085 110.969 5.64581Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M93.311 34.2818L86.5645 30.3611L101.344 4.75732L108.09 8.6781L93.311 34.2818Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M108.09 8.67827L101.344 4.75749C102.136 3.38292 103.178 2.32616 104.223 1.72119L110.97 5.64196C109.924 6.24693 108.883 7.3037 108.09 8.67827Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M89.0258 31.8431L82.2793 27.9224L86.5638 30.3614L93.3103 34.2821L89.0258 31.8431Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M83.2833 41.7905L76.5368 37.8698C74.9401 36.9585 74.9325 33.9949 76.5176 31.2496C77.3102 29.8751 78.3517 28.8183 79.3931 28.2133C80.4346 27.6122 81.4798 27.4667 82.2763 27.9223L89.0228 31.8431C88.2263 31.3875 87.1811 31.533 86.1396 32.1341C85.0981 32.7352 84.0567 33.7958 83.2641 35.1704C81.6751 37.9157 81.6866 40.8793 83.2833 41.7905Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.97 5.64594C112.011 5.0448 113.056 4.8993 113.853 5.35494C115.449 6.26621 115.457 9.22976 113.872 11.9751L97.1626 40.9138C96.1441 42.6789 94.7848 44.1109 93.3413 44.9456C91.894 45.7803 90.5348 45.9181 89.5048 45.3323L83.2829 41.7868C81.6862 40.8755 81.6785 37.9119 83.2637 35.1666C84.0563 33.7921 85.0977 32.7353 86.1392 32.1303C87.1807 31.5292 88.2259 31.3837 89.0223 31.8393L93.3069 34.2822L108.086 8.67841C108.883 7.30384 109.924 6.24707 110.97 5.64594Z" fill="#47C562" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-</g>
-<defs>
-<clipPath id="clip0_5987_73910">
-<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <g clip-path="url(#clip0_14133_131667)">
+    <circle cx="98.5" cy="84.5" r="84.5" fill="#FFF6E6" />
+    <circle cx="99" cy="90" r="79" fill="#FEEFD3" />
+    <ellipse cx="98.5" cy="90" rx="70.5" ry="71" fill="#FFE4B0" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M162.883 37.3675C162.852 37.3683 162.821 37.3687 162.789 37.3687C160.697 37.3687 159 35.6721 159 33.5792C159 31.4864 160.697 29.7898 162.789 29.7898C163.559 29.7898 164.275 30.0192 164.873 30.4133C164.75 29.8296 164.686 29.2245 164.686 28.6044C164.686 23.7647 168.609 19.8413 173.449 19.8413C174.326 19.8413 175.174 19.9704 175.973 20.2105C177.831 18.2342 180.469 17 183.395 17C189.02 17 193.579 21.5596 193.579 27.1841C193.579 28.3182 193.394 29.4091 193.052 30.428C194.211 31.0343 195.001 32.2481 195.001 33.6466C195.001 35.6516 193.376 37.277 191.371 37.277C191.317 37.277 191.263 37.2758 191.209 37.2734V37.3675H183.514C183.474 37.368 183.435 37.3682 183.395 37.3682C183.356 37.3682 183.316 37.368 183.277 37.3675H162.883Z"
+      fill="#FFE4B0" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M11.2015 71.806H34.194H55.4179H70.7463V71.7836C70.9408 71.7984 71.1375 71.806 71.3358 71.806C75.5686 71.806 79 68.3746 79 64.1418C79 60.0928 75.8602 56.7772 71.8825 56.4968C71.9109 56.1011 71.9254 55.7015 71.9254 55.2985C71.9254 46.1817 64.5347 38.791 55.4179 38.791C54.9277 38.791 54.4425 38.8124 53.9631 38.8543C50.1909 31.7997 42.753 27 34.194 27C21.8212 27 11.791 37.0302 11.791 49.403L11.791 49.4182C11.5958 49.4081 11.3993 49.403 11.2015 49.403C5.01508 49.403 0 54.4181 0 60.6045C0 66.5931 4.69958 71.4841 10.6119 71.7907V71.806H11.2015Z"
+      fill="#FFE4B0" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.175 50.806C138.184 50.8061 138.193 50.8061 138.201 50.8061C138.21 50.8061 138.219 50.8061 138.228 50.806H160.536V50.7976C160.609 50.8031 160.683 50.8059 160.757 50.8059C162.345 50.8059 163.632 49.5189 163.632 47.9312C163.632 46.4125 162.454 45.1688 160.962 45.0637C160.972 44.9153 160.978 44.7654 160.978 44.6143C160.978 41.1947 158.206 38.4226 154.786 38.4226C154.603 38.4226 154.421 38.4306 154.241 38.4463C152.826 35.8002 150.037 34 146.826 34C142.185 34 138.423 37.7621 138.423 42.403L138.423 42.4089C138.35 42.4051 138.276 42.4031 138.201 42.4031C135.881 42.4031 134 44.2842 134 46.6046C134 48.851 135.763 50.6857 137.981 50.8004V50.806H138.175Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M48.4926 62.3333C48.495 62.3333 48.4975 62.3333 48.5 62.3333C48.5025 62.3333 48.505 62.3333 48.5074 62.3333H65.1667H66V62.2743C68.8269 61.8699 71 59.4387 71 56.5C71 53.2783 68.3883 50.6667 65.1667 50.6667C64.1208 50.6667 63.1392 50.9419 62.2904 51.4239C62.5365 50.3781 62.6667 49.2876 62.6667 48.1667C62.6667 40.3426 56.324 34 48.5 34C42.7269 34 37.7603 37.4532 35.5532 42.4068C35.153 42.3581 34.7454 42.333 34.332 42.333C29.1734 42.333 24.9271 46.2392 24.3895 51.2551C23.6176 50.8782 22.7502 50.6667 21.8333 50.6667C18.6117 50.6667 16 53.2783 16 56.5C16 59.7217 18.6117 62.3333 21.8333 62.3333C22.1163 62.3333 22.3945 62.3132 22.6667 62.2743V62.3333H48.4926Z"
+      fill="white" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+      fill="#A0C7F0" />
+    <path
+      d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+      fill="#4277AF" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+      fill="url(#paint0_linear_14133_131667)" />
+    <rect width="80.5611" height="80.5611" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 86.291)"
+      fill="#769FCB" />
+    <path d="M174.22 117.5C174.553 115.167 174.22 110.3 170.22 109.5C165.22 108.5 172.72 119 174.22 117.5Z"
+      fill="#3D8C5C" />
+    <path d="M174.72 118C177.386 115.166 181.92 108.4 178.72 104C174.72 98.4998 172.22 120 174.72 118Z"
+      fill="#66AF82" />
+    <path
+      d="M179.04 118.156C178.873 116.823 179.14 114.356 181.54 115.156C184.54 116.156 180.041 119.156 179.04 118.156Z"
+      fill="#66AF82" />
+    <path d="M178.483 112.5C178.316 113.667 177.485 117 178.483 119" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M175.077 110.621C174.257 111.094 174.257 111.861 175.077 112.334L175.374 112.505L175.077 112.677C174.257 113.15 174.257 113.917 175.077 114.39C175.896 114.863 177.224 114.863 178.044 114.39L178.341 114.219L178.637 114.39C179.456 114.863 180.785 114.863 181.604 114.39C182.424 113.917 182.424 113.15 181.604 112.677L181.308 112.505L181.604 112.334C182.424 111.861 182.424 111.094 181.604 110.621C180.785 110.148 179.457 110.148 178.637 110.621L178.341 110.792L178.044 110.621C177.224 110.148 175.896 110.148 175.077 110.621Z"
+      fill="#E9BAFF" />
+    <circle cx="1.71307" cy="1.71307" r="1.71307" transform="matrix(0.866025 -0.5 0.866025 0.5 175.373 112.506)"
+      fill="#FFEDAC" />
+    <path
+      d="M91.9821 170.889C91.2364 169.722 89.4466 167.53 88.2535 168.09C86.762 168.79 92.355 171.589 91.9821 170.889Z"
+      fill="#66AF82" />
+    <path d="M91.5014 166C91.3348 167.166 91.2014 169.9 92.0014 171.5" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M88.0834 163.623C87.2648 164.095 87.2648 164.861 88.0834 165.334L88.3802 165.505L88.0836 165.677C87.2649 166.149 87.2649 166.916 88.0836 167.388C88.9022 167.861 90.2294 167.861 91.048 167.388L91.3447 167.217L91.6408 167.388C92.4594 167.861 93.7866 167.861 94.6053 167.388C95.4239 166.915 95.4239 166.149 94.6053 165.676L94.3092 165.505L94.6054 165.334C95.424 164.862 95.424 164.096 94.6054 163.623C93.7868 163.15 92.4595 163.15 91.6409 163.623L91.3447 163.794L91.0479 163.623C90.2293 163.15 88.902 163.15 88.0834 163.623Z"
+      fill="#FF9F9F" />
+    <circle cx="1.71154" cy="1.71154" r="1.71154" transform="matrix(0.866025 -0.5 0.866025 0.5 88.3789 165.506)"
+      fill="#FFEDAC" />
+    <path
+      d="M21.6976 121.889C22.4433 120.722 24.233 118.53 25.4262 119.09C26.9176 119.79 21.3247 122.589 21.6976 121.889Z"
+      fill="#66AF82" />
+    <path d="M22.1783 117C22.3449 118.167 22.4783 120.9 21.6783 122.5" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M25.8921 114.457C26.7831 114.971 26.7831 115.805 25.8921 116.319L25.5691 116.506L25.8919 116.692C26.7829 117.207 26.7829 118.041 25.8919 118.555C25.001 119.07 23.5565 119.07 22.6655 118.555L22.3427 118.369L22.0204 118.555C21.1294 119.069 19.6849 119.069 18.794 118.555C17.903 118.04 17.903 117.206 18.794 116.692L19.1162 116.506L18.7938 116.32C17.9029 115.805 17.9029 114.971 18.7938 114.457C19.6848 113.943 21.1293 113.943 22.0202 114.457L22.3427 114.643L22.6657 114.457C23.5566 113.942 25.0012 113.942 25.8921 114.457Z"
+      fill="#CF9FFF" />
+    <circle cx="1.86278" cy="1.86278" r="1.86278" transform="matrix(-0.866025 -0.5 -0.866025 0.5 25.5684 116.506)"
+      fill="#FFEDAC" />
+    <path d="M95.5 170.5C95.5 171.5 95.4 173.8 95 175" stroke="#3D8C5C" stroke-linecap="round" />
+    <path d="M95.5 175C95.5 173.833 95.8001 171.8 97 173C98.2 174.2 96.5 174.834 95.5 175Z" fill="#66AF82" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M92.329 168.769C91.5737 169.205 91.5737 169.912 92.329 170.348L92.6028 170.506L92.3291 170.664C91.5739 171.1 91.5739 171.807 92.3291 172.243C93.0844 172.679 94.3088 172.679 95.0641 172.243L95.3378 172.085L95.6109 172.243C96.3662 172.679 97.5907 172.679 98.3459 172.243C99.1012 171.807 99.1012 171.1 98.3459 170.664L98.0727 170.506L98.3461 170.348C99.1013 169.912 99.1013 169.205 98.3461 168.769C97.5908 168.333 96.3663 168.333 95.6111 168.769L95.3378 168.927L95.0639 168.769C94.3087 168.333 93.0842 168.333 92.329 168.769Z"
+      fill="#4277AF" />
+    <circle cx="1.57904" cy="1.57904" r="1.57904" transform="matrix(0.866025 -0.5 0.866025 0.5 92.6035 170.506)"
+      fill="#FFEDAC" />
+    <path d="M18.1797 121.5C18.1797 122.5 18.2797 124.8 18.6797 126" stroke="#3D8C5C" stroke-linecap="round" />
+    <path d="M18.1797 126C18.1797 124.833 17.8796 122.8 16.6797 124C15.4797 125.2 17.1797 125.833 18.1797 126Z"
+      fill="#66AF82" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M21.8866 119.457C22.777 119.971 22.777 120.805 21.8866 121.319L21.5638 121.505L21.8865 121.691C22.7768 122.205 22.7768 123.039 21.8865 123.553C20.9961 124.067 19.5525 124.067 18.6621 123.553L18.3395 123.367L18.0174 123.552C17.1271 124.067 15.6835 124.067 14.7931 123.552C13.9028 123.038 13.9028 122.205 14.7931 121.691L15.1152 121.505L14.793 121.319C13.9026 120.805 13.9026 119.971 14.793 119.457C15.6833 118.943 17.1269 118.943 18.0173 119.457L18.3395 119.643L18.6623 119.457C19.5527 118.943 20.9963 118.943 21.8866 119.457Z"
+      fill="#AF4242" />
+    <circle cx="1.86156" cy="1.86156" r="1.86156" transform="matrix(-0.866025 -0.5 -0.866025 0.5 21.5645 121.505)"
+      fill="#FFEDAC" />
+    <path d="M44 106.623C42.0508 103.814 36.9827 98.9448 32.3045 101.941C26.4568 105.687 42.0508 110.368 44 106.623Z"
+      fill="#3D8C5C" />
+    <path d="M44 105C42.4072 95.2152 38.0749 78.1075 33.4877 87.9555C27.7537 100.265 40.1774 105 44 105Z"
+      fill="#66AF82" />
+    <path d="M127.81 55.6826H156.139V127.461L127.81 143.954L99.4805 160.444V88.6624L127.81 55.6826Z" fill="#EDF7FF" />
+    <path d="M42.8164 55.6826V127.461L71.1458 143.954L99.4752 160.444V88.6624L42.8164 55.6826Z" fill="#A0C7F1" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 89.9647C59.2918 90.3504 58.8735 90.5909 58.5402 90.3968L47.0804 83.7236C46.9266 83.6341 46.832 83.4695 46.832 83.2916V69.9436C46.832 69.5579 47.2503 69.3174 47.5836 69.5115L59.0434 76.1847C59.1972 76.2742 59.2918 76.4388 59.2918 76.6168V89.9647ZM74.6481 99.5494C74.9814 99.7435 75.3997 99.503 75.3997 99.1173V85.7665C75.3997 85.5885 75.3051 85.4239 75.1512 85.3344L63.6915 78.6639C63.3582 78.4699 62.94 78.7104 62.94 79.096V92.4441C62.94 92.6221 63.0346 92.7867 63.1884 92.8762L74.6481 99.5494ZM90.771 108.705C91.1043 108.899 91.5225 108.659 91.5225 108.273V94.9221C91.5225 94.7441 91.4278 94.5795 91.274 94.49L79.8113 87.8194C79.478 87.6254 79.0598 87.8659 79.0598 88.2515V101.603C79.0598 101.781 79.1545 101.945 79.3084 102.035L90.771 108.705ZM90.771 130.231C91.1043 130.425 91.5225 130.184 91.5225 129.799V116.448C91.5225 116.269 91.4278 116.105 91.274 116.015L79.8113 109.345C79.478 109.151 79.0598 109.391 79.0598 109.777V123.128C79.0598 123.306 79.1545 123.471 79.3084 123.56L90.771 130.231ZM75.3997 120.645C75.3997 121.031 74.9815 121.271 74.6482 121.077L63.1884 114.407C63.0346 114.317 62.94 114.153 62.94 113.975V100.624C62.94 100.238 63.3582 99.9978 63.6915 100.192L75.1512 106.862C75.3051 106.952 75.3997 107.116 75.3997 107.294V120.645ZM58.5403 111.925C58.8736 112.119 59.2918 111.878 59.2918 111.493V98.1418C59.2918 97.9638 59.1972 97.7992 59.0433 97.7097L47.5836 91.0392C47.2502 90.8452 46.832 91.0856 46.832 91.4713V104.822C46.832 105 46.9267 105.165 47.0805 105.254L58.5403 111.925Z"
+      fill="#405C76" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 84.8462L55.2678 88.4914L47.0804 83.7238C46.9266 83.6342 46.832 83.4697 46.832 83.2917V81.6267L54.4697 73.5215L59.0434 76.1848C59.1972 76.2744 59.2918 76.4389 59.2918 76.6169V84.8462ZM50.5495 92.7657L47.5836 91.0393C47.2502 90.8453 46.832 91.0858 46.832 91.4715V96.1333L50.5495 92.7657ZM48.906 106.317L58.2356 97.2397L59.0433 97.7098C59.1972 97.7994 59.2918 97.9639 59.2918 98.1419V110.865L58.1092 111.674L48.906 106.317ZM65.8714 115.969L63.3859 114.522L74.7373 106.621L75.1512 106.862C75.3051 106.952 75.3997 107.117 75.3997 107.295V109.821L65.8714 115.969ZM91.5225 99.4197L83.5989 104.532L80.408 102.675L91.5225 94.939V99.4197ZM72.2231 83.6301L75.1512 85.3345C75.3051 85.4241 75.3997 85.5887 75.3997 85.7667V99.1174C75.3997 99.5031 74.9814 99.7436 74.6481 99.5495L63.1884 92.8764C63.0899 92.819 63.0157 92.731 62.975 92.6283L72.2231 83.6301ZM65.1677 79.5233L62.94 81.5414V79.0962C62.94 78.7105 63.3582 78.47 63.6915 78.6641L65.1677 79.5233ZM86.9328 91.9638L79.0598 97.3476V88.2517C79.0598 87.866 79.478 87.6255 79.8113 87.8195L86.9328 91.9638ZM69.7464 103.716L63.6915 100.192C63.3582 99.9979 62.94 100.238 62.94 100.624V108.371L69.7464 103.716Z"
+      fill="#333B51" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M139.47 83.8308C139.136 84.0248 138.718 83.7844 138.718 83.3987V70.0506C138.718 69.8726 138.813 69.708 138.967 69.6185L150.426 62.948C150.76 62.754 151.178 62.9945 151.178 63.3801V76.7282C151.178 76.9062 151.083 77.0708 150.929 77.1603L139.47 83.8308ZM139.47 104.671C139.136 104.865 138.718 104.624 138.718 104.239V90.8877C138.718 90.7097 138.813 90.5452 138.967 90.4556L150.426 83.7851C150.76 83.5911 151.178 83.8316 151.178 84.2173V97.5654C151.178 97.7433 151.083 97.9079 150.929 97.9975L139.47 104.671ZM111.48 119.446C111.48 119.832 111.899 120.072 112.232 119.878L123.692 113.208C123.846 113.118 123.94 112.954 123.94 112.776V99.4278C123.94 99.0421 123.522 98.8016 123.189 98.9956L111.729 105.666C111.575 105.756 111.48 105.92 111.48 106.098V119.446ZM112.232 99.0388C111.899 99.2328 111.48 98.9924 111.48 98.6067V85.2586C111.48 85.0806 111.575 84.9161 111.729 84.8265L123.189 78.156C123.522 77.962 123.94 78.2025 123.94 78.5882V91.9362C123.94 92.1142 123.846 92.2788 123.692 92.3683L112.232 99.0388Z"
+      fill="#FF9C9B" />
+    <path
+      d="M138.479 137.789C138.479 137.966 138.385 138.131 138.231 138.221L128.475 143.916L127.502 144.484C127.169 144.679 126.75 144.438 126.75 144.052V120.947C126.75 120.769 126.844 120.605 126.998 120.515L137.727 114.254C138.061 114.059 138.479 114.3 138.479 114.686V137.789Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.42 138.022C138.458 137.951 138.479 137.871 138.479 137.788V114.685C138.479 114.299 138.06 114.059 137.727 114.253L136.719 114.842C136.719 114.852 136.72 114.862 136.72 114.873V136.691C136.72 136.88 136.827 137.054 136.996 137.138L138.166 137.723C138.295 137.788 138.382 137.898 138.42 138.022Z"
+      fill="#606060" />
+    <path
+      d="M41.4996 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H99.4826C100.074 21 100.596 21.2971 100.911 21.7501L156.378 53.9423C156.837 54.0058 157.238 54.2481 157.512 54.6001L157.526 54.6058H157.52C157.748 54.9059 157.893 55.2751 157.893 55.6819C157.893 56.657 157.108 57.4445 156.141 57.4445H128.611L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273C99.0787 90.4273 98.669 90.2859 98.3401 89.9974L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885H41.4996Z"
+      fill="#FF5D5C" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M156.052 54.4755C156.437 54.5698 156.773 54.7933 157.012 55.1001L157.026 55.1058H157.02C157.248 55.4059 157.393 55.7751 157.393 56.1819C157.393 57.157 156.608 57.9446 155.641 57.9446H128.111L116.535 71.4225L99 90V86.5L128 54L156.052 54.4755Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M107.03 82.649L100.807 89.8156C100.464 90.2154 99.9854 90.423 99.5 90.4271V85.9999L127.826 54.2554L127.98 58.0229L107.03 82.649Z"
+      fill="#FF5D5C" />
+    <path d="M74.1914 59.6488V42.38L81.5767 38.0815V50.6076L74.1914 59.6488Z" fill="#EDF7FF" />
+    <path d="M66.8008 55.4629L74.186 59.7613V42.38L66.8008 38.0815V55.4629Z" fill="#A0C7F1" />
+    <path d="M66.8008 38.0816L74.186 33.7803L81.5713 38.0816L74.186 42.3801L66.8008 38.0816Z" fill="white" />
+    <path d="M69.6328 38.0851L74.2226 35.2793L78.8123 38.0851L74.2226 40.889L69.6328 38.0851Z" fill="#A0C7F1" />
+    <path d="M69.6328 38.0851L74.2226 35.2793V38.0851V40.889L69.6328 38.0851Z" fill="#769FCB" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M48.7188 70.173L47.5836 69.512C47.2503 69.3179 46.832 69.5584 46.832 69.9441V83.292C46.832 83.47 46.9266 83.6346 47.0804 83.7241L58.5402 90.3973C58.8735 90.5914 59.2918 90.3509 59.2918 89.9652V89.2929L48.9671 83.2808C48.8133 83.1912 48.7188 83.0267 48.7188 82.8487V70.173ZM64.8267 79.3252V92.0013C64.8267 92.1792 64.9213 92.3438 65.0751 92.4334L75.3997 98.4455V99.1178C75.3997 99.5035 74.9814 99.744 74.6481 99.5499L63.1884 92.8767C63.0346 92.7872 62.94 92.6226 62.94 92.4446V79.0965C62.94 78.7108 63.3582 78.4704 63.6915 78.6644L64.8267 79.3252ZM80.9466 88.4805V101.16C80.9466 101.338 81.0412 101.502 81.1951 101.592L91.5225 107.602V108.274C91.5225 108.659 91.1043 108.9 90.771 108.706L79.3084 102.035C79.1545 101.946 79.0598 101.781 79.0598 101.603V88.252C79.0598 87.8663 79.478 87.6259 79.8113 87.8199L80.9466 88.4805ZM80.9466 110.006V122.685C80.9466 122.863 81.0412 123.028 81.1951 123.117L91.5225 129.127V129.799C91.5225 130.185 91.1043 130.425 90.771 130.231L79.3084 123.561C79.1545 123.471 79.0598 123.306 79.0598 123.128V109.777C79.0598 109.392 79.478 109.151 79.8113 109.345L80.9466 110.006ZM64.8267 100.853L63.6915 100.192C63.3582 99.9983 62.94 100.239 62.94 100.624V113.975C62.94 114.153 63.0346 114.318 63.1884 114.407L74.6482 121.078C74.9815 121.272 75.3997 121.032 75.3997 120.646V119.974L65.0751 113.964C64.9213 113.875 64.8267 113.71 64.8267 113.532V100.853ZM48.7188 91.7004V104.379C48.7188 104.557 48.8134 104.722 48.9672 104.812L59.2918 110.821V111.493C59.2918 111.879 58.8736 112.119 58.5403 111.925L47.0805 105.255C46.9267 105.165 46.832 105.001 46.832 104.823V91.4718C46.832 91.0861 47.2502 90.8457 47.5836 91.0397L48.7188 91.7004Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M151.174 66.3265L141.979 82.3682L139.466 83.8313C139.132 84.0253 138.714 83.7849 138.714 83.3992V70.0511C138.714 69.8731 138.809 69.7085 138.963 69.619L150.422 62.9485C150.756 62.7545 151.174 62.9949 151.174 63.3806V66.3265ZM111.477 116.756L120.833 100.365L123.185 98.9961C123.518 98.8021 123.936 99.0426 123.936 99.4282V112.776C123.936 112.954 123.842 113.119 123.688 113.208L112.228 119.879C111.895 120.073 111.477 119.832 111.477 119.447V116.756ZM150.267 83.876L139.641 104.569L139.466 104.671C139.132 104.865 138.714 104.625 138.714 104.239V102.256L147.083 85.7292L150.267 83.876Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.718 82.3634V83.3992C138.718 83.7849 139.136 84.0253 139.47 83.8313L150.929 77.1608C151.083 77.0713 151.178 76.9067 151.178 76.7287V63.3806C151.178 62.9949 150.76 62.7545 150.426 62.9485L149.416 63.5365V75.8488C149.416 76.0268 149.322 76.1914 149.168 76.2809L138.718 82.3634ZM138.718 103.203V104.239C138.718 104.625 139.136 104.865 139.47 104.671L150.929 97.9979C151.083 97.9084 151.178 97.7438 151.178 97.5659V84.2178C151.178 83.8321 150.76 83.5916 150.426 83.7856L149.416 84.3736V96.686C149.416 96.8639 149.322 97.0285 149.168 97.1181L138.718 103.203ZM111.48 118.411L121.93 112.329C122.084 112.239 122.179 112.074 122.179 111.896V99.5841L123.189 98.9961C123.522 98.8021 123.94 99.0426 123.94 99.4282V112.776C123.94 112.954 123.846 113.119 123.692 113.208L112.232 119.879C111.899 120.073 111.48 119.832 111.48 119.447V118.411ZM111.48 97.5714V98.6072C111.48 98.9929 111.899 99.2333 112.232 99.0393L123.692 92.3688C123.846 92.2793 123.94 92.1147 123.94 91.9367V78.5886C123.94 78.203 123.522 77.9625 123.189 78.1565L122.179 78.7445V91.0568C122.179 91.2348 122.084 91.3994 121.93 91.4889L111.48 97.5714Z"
+      fill="#D86867" />
+    <path d="M100.219 160.5C100.385 153.5 102.819 139.8 111.219 141C121.719 142.5 102.719 162.999 100.219 160.5Z"
+      fill="#66AF82" />
+    <path d="M100.219 160.5C101.552 156 102.419 146.4 95.219 144C86.219 141 95.219 164.5 100.219 160.5Z"
+      fill="#3D8C5C" />
+  </g>
+  <defs>
+    <linearGradient id="paint0_linear_14133_131667" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+    <clipPath id="clip0_14133_131667">
+      <rect width="200" height="200" fill="white" />
+    </clipPath>
+  </defs>
+</svg>
\ No newline at end of file
-- 
GitLab


From f8decd4d1bf844dfe8b0348ad7a1c0d8aeedf86a Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:01:34 +0100
Subject: [PATCH 42/77] center form

---
 src/app/form/form-view/form-view.component.scss | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 0eddc1802..a9fcdef85 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -24,6 +24,8 @@
   color: $grey-1;
   padding: 32px 48px;
   display: flex;
+  justify-content: center;
+  min-width: 600px;
 
   @media #{$tablet} {
     margin: 0px 0.5rem;
-- 
GitLab


From a065d191871e4ea68bb1be1894627d5daed51801 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:01:50 +0100
Subject: [PATCH 43/77] decorative images

---
 .../information-step.component.html            | 18 +++++++++---------
 .../information-step.component.scss            |  5 +++++
 2 files changed, 14 insertions(+), 9 deletions(-)

diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index 2824bff93..86d40a669 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -1,7 +1,7 @@
 <!-- After inscription, the user must confirm with a code received by email -->
 <ng-container *ngIf="formType === formTypeEnum.account && step === accountFormStepEnum.confirmEmailSentInfo">
   <div class="information-step-container no-max-width">
-    <img src="../../assets/form/emailVerification.svg" alt="Image de validation de finalisation de l'inscription" />
+    <img src="../../assets/form/emailVerification.svg" alt="" />
     <p>
       Merci !<br />
       Finalisez votre inscription en ouvrant l’email qui vient de vous être envoyé
@@ -16,7 +16,7 @@
       Pour compléter votre profil,<br />
       nous aimerions vous poser quelques questions
     </p>
-    <img src="../../assets/form/profileSkip.svg" alt="Image profil" />
+    <img src="../../assets/form/profileQuestions.svg" alt="" />
     <div class="footerForm" fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="center center">
       <app-v3-button [label]="'Plus tard'" [variant]="buttonTypeEnumV3.Secondary" (click)="goToHome()" />
       <app-v3-button [label]="'C\'est parti !'" [variant]="buttonTypeEnumV3.Primary" (click)="goToNextPage()" />
@@ -27,7 +27,7 @@
 <!-- A structure has just been selected, a request will be sent -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.mailSentInfo">
   <div class="information-step-container structure-display">
-    <img src="../../assets/form/emailVerification.svg" alt="Image message envoyé" />
+    <img src="../../assets/form/emailVerification.svg" alt="" />
     <p *ngIf="isClaimed">Un message a été envoyé aux membres de la structure :</p>
     <p *ngIf="!isClaimed">
       Un message a été envoyé aux administrateurs Rés'in pour valider l'affectation de votre compte à la structure :
@@ -43,7 +43,7 @@
       Nous vous proposons de prendre 10 minutes afin de renseigner les informations de la structure et la créer sur
       Rés'in.
     </h3>
-    <img src="../../assets/form/formTime.svg" alt="image renseignement des informations" />
+    <img src="../../assets/form/formTime.svg" alt="" />
     <p>Informations dont il faut vous munir :</p>
     <ul>
       <li>les coordonnées de la structure</li>
@@ -60,10 +60,10 @@
   *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureCreationFinishedInfo"
 >
   <div class="structureCreated no-max-width">
-    <h3>La structure est désormais référencée sur Rés'in.</h3>
-    <img src="../../assets/form/structureCreated.svg" alt="image structure référencée" />
+    <h3>La structure est désormais référencée sur la cartographie</h3>
+    <img src="../../assets/form/structureCreated.svg" alt="" />
     <p *ngIf="hasPersonalOffer">
-      Les prochaines questions concernent les services que vous dispensez en tant qu’intervenant dans cette structure.
+      Les prochaines questions concernent les services que vous dispensez en tant qu’intervenant dans cette structure
     </p>
   </div>
 </ng-container>
@@ -71,7 +71,7 @@
 <!-- The user tried to create a structure without reception place -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.noStructure">
   <div class="information-step-container profile-updated no-max-width">
-    <img src="../../assets/form/profileSkip.svg" alt="image profil" />
+    <img src="../../assets/form/profileSkip.svg" alt="" />
     <h3 class="no-margin-top">La structure n'a pas vocation à être ajoutée à la cartographie</h3>
     <p class="no-margin-top">
       La cartographie ne référence que les structures qui disposent d'un lieu d'accueil pour accompagner, former ou
@@ -93,7 +93,7 @@
   *ngIf="formType === formTypeEnum.personaloffer && step === personalOfferFormStep.personalOfferFinishedInfo"
 >
   <div class="information-step-container profile-updated no-max-width">
-    <img src="../../assets/form/profileUpdated.svg" alt="image profil" />
+    <img src="../../assets/form/profileUpdated.svg" alt="" />
     <h3>Merci, les informations de votre profil ont été mises à jour</h3>
     <div class="btn">
       <app-v3-button
diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.scss b/src/app/form/form-view/global-components/information-step/information-step.component.scss
index ff75642ac..2546d8ae6 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.scss
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.scss
@@ -7,6 +7,11 @@
   align-items: center;
   justify-content: center;
   min-height: inherit;
+
+  img {
+    width: 200px;
+    height: 200px;
+  }
   svg {
     width: 100%;
     max-width: 200px;
-- 
GitLab


From 0617a9490eaaa756692bceff7b0f6a6473999651 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:05:00 +0100
Subject: [PATCH 44/77] remove unnecessary divs

---
 .../profile-structure-choice.component.html   | 132 +++++++++---------
 .../profile-structure-choice.component.scss   |   9 --
 2 files changed, 64 insertions(+), 77 deletions(-)

diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
index dd4b3e794..f9b4776c0 100644
--- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
+++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
@@ -1,78 +1,74 @@
-<div fxLayout="column">
-  <h2 class="title">Dans quelle structure travaillez-vous ?</h2>
-  <div class="search-structure">
-    <div class="form-input search">
-      <input
-        type="text"
-        id="structureName"
-        placeholder="Rechercher une structure"
-        class="form-input search-input"
-        autocomplete="off"
-        (input)="onSearchChange($event.target)"
-      />
-      <app-svg-icon [iconClass]="'searchIcon icon-32'" [type]="'ico'" [icon]="'search'" />
-    </div>
-    <div class="scroll">
-      <div *ngIf="!isAlreadySearching">
-        <div class="nb">
-          <div *ngIf="structures">
-            <div *ngIf="searchString.length === 0" class="nb-text">{{ structures.length }} structures existantes</div>
-            <div *ngIf="searchString.length > 0" class="nb-text" [ngPlural]="structures.length">
-              <ng-template ngPluralCase="0">0 structure trouvée</ng-template>
-              <ng-template ngPluralCase="1">1 structure trouvée</ng-template>
-              <ng-template ngPluralCase="other">{{ structures.length }} structures trouvées</ng-template>
-            </div>
-          </div>
+<h2 class="title">Dans quelle structure travaillez-vous ?</h2>
+<div class="form-input search">
+  <input
+    type="text"
+    id="structureName"
+    placeholder="Rechercher une structure"
+    class="form-input search-input"
+    autocomplete="off"
+    (input)="onSearchChange($event.target)"
+  />
+  <app-svg-icon [iconClass]="'searchIcon icon-32'" [type]="'ico'" [icon]="'search'" />
+</div>
+<div class="scroll">
+  <div *ngIf="!isAlreadySearching">
+    <div class="nb">
+      <div *ngIf="structures">
+        <div *ngIf="searchString.length === 0" class="nb-text">{{ structures.length }} structures existantes</div>
+        <div *ngIf="searchString.length > 0" class="nb-text" [ngPlural]="structures.length">
+          <ng-template ngPluralCase="0">0 structure trouvée</ng-template>
+          <ng-template ngPluralCase="1">1 structure trouvée</ng-template>
+          <ng-template ngPluralCase="other">{{ structures.length }} structures trouvées</ng-template>
         </div>
+      </div>
+    </div>
 
-        <div class="structure-list">
-          <div
-            *ngFor="let structure of structures"
-            class="filet"
-            tabindex="0"
-            (click)="selectedResult(structure)"
-            (keyup.enter)="selectedResult(structure)"
-          >
-            <div
-              fxLayout="column"
-              fxLayoutAlign="space-around"
-              class="form-list"
-              [ngClass]="{
-                'already-selected': structure.alreadySelected,
-                'item-selected': isSelectedStructure(structure)
-              }"
-            >
-              <div fxLayout="row" fxLayoutAlign="space-between center">
-                <div class="item-frame">
-                  <div class="name">{{ structure.structureName }}</div>
-                  <div class="commune">{{ structure.address.commune }}</div>
-                </div>
-                <app-svg-icon
-                  *ngIf="isSelectedStructure(structure)"
-                  class="form-icon"
-                  [iconClass]="'icon-26'"
-                  [type]="'form'"
-                  [icon]="'validate'"
-                />
-                <div *ngIf="structure.alreadySelected" class="sticker">Déjà<br />sélectionnée</div>
-              </div>
-            </div>
-          </div>
-          <div class="item-frame">
-            <div class="create-text">
-              Cette structure n’existe pas encore sur Rés'in.<br />
-              <span class="question">Souhaitez-vous la référencer ?</span>
+    <div class="structure-list">
+      <div
+        *ngFor="let structure of structures"
+        class="filet"
+        tabindex="0"
+        (click)="selectedResult(structure)"
+        (keyup.enter)="selectedResult(structure)"
+      >
+        <div
+          fxLayout="column"
+          fxLayoutAlign="space-around"
+          class="form-list"
+          [ngClass]="{
+            'already-selected': structure.alreadySelected,
+            'item-selected': isSelectedStructure(structure)
+          }"
+        >
+          <div fxLayout="row" fxLayoutAlign="space-between center">
+            <div class="item-frame">
+              <div class="name">{{ structure.structureName }}</div>
+              <div class="commune">{{ structure.address.commune }}</div>
             </div>
-            <app-v3-button
-              [label]="'Créer une structure'"
-              [variant]="buttonTypeEnumV3.PrimaryBlack"
-              [wide]="true"
-              [iconName]="'addV3'"
-              (action)="addStructure()"
+            <app-svg-icon
+              *ngIf="isSelectedStructure(structure)"
+              class="form-icon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'validate'"
             />
+            <div *ngIf="structure.alreadySelected" class="sticker">Déjà<br />sélectionnée</div>
           </div>
         </div>
       </div>
+      <div class="item-frame">
+        <div class="create-text">
+          Cette structure n’existe pas encore sur Rés'in.<br />
+          <span class="question">Souhaitez-vous la référencer ?</span>
+        </div>
+        <app-v3-button
+          [label]="'Créer une structure'"
+          [variant]="buttonTypeEnumV3.PrimaryBlack"
+          [wide]="true"
+          [iconName]="'addV3'"
+          (action)="addStructure()"
+        />
+      </div>
     </div>
   </div>
 </div>
diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss
index 009439961..c0828e6ec 100644
--- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss
+++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss
@@ -3,15 +3,6 @@
 @import 'inputs';
 @import 'breakpoint';
 
-.search-structure {
-  width: 380px;
-  padding-bottom: 1.5rem;
-}
-
-h2 {
-  margin-top: 0;
-}
-
 .search {
   display: flex;
   justify-content: space-between;
-- 
GitLab


From e6bdb43f08c625674119000e11685f0ab82c33cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20PAILHAREY?= <rpailharey@grandlyon.com>
Date: Mon, 11 Dec 2023 13:10:03 +0000
Subject: [PATCH 45/77] Apply 1 suggestion(s) to 1 file(s)

---
 .../structure-labels/structure-labels.component.scss            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
index bfc585137..c7be889e8 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
@@ -1,5 +1,5 @@
 .labelsQualifications {
-  gap: 8px;
+  gap: 16px;
   display: flex;
   flex-wrap: wrap;
 
-- 
GitLab


From 4d589f739a27a4072eb0e861cf846fae2f9516f4 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:31:27 +0100
Subject: [PATCH 46/77] wifi fix

---
 src/app/utils/formUtils.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/utils/formUtils.ts b/src/app/utils/formUtils.ts
index f96072560..139a03a11 100644
--- a/src/app/utils/formUtils.ts
+++ b/src/app/utils/formUtils.ts
@@ -152,7 +152,7 @@ export class formUtils {
         ),
         freeWorkShop: new UntypedFormControl(structure.freeWorkShop, [Validators.required]),
         freeWifi: new UntypedFormControl(
-          structure.categories.selfServiceMaterial.includes('wifiEnAccesLibre'),
+          structure.categories.selfServiceMaterial.includes('wifiEnAccesLibre') ? true : null,
           isEditMode ? [] : [Validators.required]
         ), // Field used has a pivot, not sent in final form.
         dataShareConsentDate: new UntypedFormControl(structure.dataShareConsentDate),
-- 
GitLab


From 35d0515427ab90f8d513e70620cb9cf22918d63b Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:35:24 +0100
Subject: [PATCH 47/77] Merge branch 'sb/selectors' into
 sb/orientation-selectors

---
 .vscode/settings.json                         |  13 +-
 package-lock.json                             |   7 +
 .../manage-users/manage-users.component.html  |  15 +-
 .../manage-users/manage-users.component.ts    |   4 +-
 .../components/nav-bar/nav-bar.component.html |  52 +--
 .../components/nav-bar/nav-bar.component.ts   |   4 +-
 .../filter-modal/filter-modal.component.html  |   4 +-
 .../filter-modal/filter-modal.component.ts    |   8 +-
 .../result-list/result-list.component.html    |  63 +--
 .../result-list/result-list.component.scss    |  42 +-
 .../result-list/result-list.component.ts      |   4 +-
 src/app/app.component.scss                    |   1 +
 src/app/carto/carto.component.html            |   9 +-
 src/app/carto/carto.component.ts              |   4 +-
 src/app/contact/contact.component.html        |   8 +-
 src/app/contact/contact.component.ts          |   4 +-
 .../footer-form/footer-form.component.html    |  27 +-
 .../footer-form/footer-form.component.scss    |   6 +-
 .../form/footer-form/footer-form.component.ts |   4 +-
 .../form/form-view/form-view.component.html   |   2 +-
 .../form/form-view/form-view.component.scss   |  11 +-
 src/app/form/form-view/form-view.component.ts |   8 +-
 .../information-step.component.html           |  61 +--
 .../information-step.component.scss           |   5 +
 .../information-step.component.ts             |   4 +-
 .../profile-structure-choice.component.html   | 128 +++---
 .../profile-structure-choice.component.scss   |   9 -
 .../profile-structure-choice.component.ts     |   4 +-
 .../structure-access-modality.component.html  |  10 +-
 .../structure-consent.component.html          |  28 +-
 ...tructure-contact-completion.component.html |  18 +-
 .../structure-contact.component.html          |  18 +-
 .../structure-covid-info.component.html       |  18 +-
 .../structure-description.component.html      |  18 +-
 ...gital-helping-accompaniment.component.html |  20 +-
 .../structure-equipments.component.html       |  10 +-
 .../structure-equipments.component.ts         |   2 +-
 .../structure-form.component.ts               |   8 -
 .../structure-hours.component.html            |  18 +-
 .../structure-labels.component.html           |  18 +-
 .../structure-labels.component.scss           |   2 +-
 .../structure-name-and-address.component.html |  16 +-
 ...ructure-public-target-other.component.html |  16 +-
 .../structure-public-target.component.html    |  30 +-
 ...ructure-solidarity-material.component.html |  19 +-
 .../structure-training-price.component.html   |  18 +-
 .../structure-training-type.component.html    |  20 +-
 .../structure-type.component.html             |  18 +-
 ...ture-web-and-social-network.component.html |  18 +-
 .../structure-wifi.component.html             |  16 +-
 .../login-modal/login-modal.component.html    |  17 +-
 .../login-modal/login-modal.component.scss    |   6 +-
 .../login-modal/login-modal.component.ts      |   4 +-
 .../navigation/navigation.component.html      |  23 +-
 .../navigation/navigation.component.ts        |   4 +-
 .../orientation-form-view.component.scss      |   8 -
 .../orientation-comments.component.html       |   6 +-
 src/app/header/header.component.html          |  39 +-
 src/app/header/header.component.scss          |  26 +-
 src/app/header/header.component.ts            |   4 +-
 src/app/login/login.component.html            |  25 +-
 src/app/login/login.component.scss            |  16 +-
 src/app/login/login.component.ts              |   4 +-
 .../newsletter-subscription.component.html    |   8 +-
 .../newsletter-subscription.component.ts      |   4 +-
 .../post-header/post-header.component.html    |   6 +-
 .../post-header/post-header.component.ts      |   4 +
 .../post-list/post-list.component.html        |   8 +-
 .../post-list/post-list.component.ts          |   4 +-
 .../post-modal-filters.component.html         |   2 +-
 src/app/profile/edit/edit.component.html      | 100 +++--
 src/app/profile/edit/edit.component.scss      |  31 +-
 src/app/profile/edit/edit.component.ts        |   4 +-
 .../personal-offer-edition.component.html     |  47 ++-
 .../personal-offer-edition.component.scss     |  14 -
 .../personal-offer-edition.component.ts       |   4 +-
 .../personal-offer.component.html             |  22 +-
 .../personal-offer.component.ts               |   5 +-
 .../profile-structure.component.html          |  78 ++--
 .../profile-structure.component.ts            |   5 +-
 src/app/profile/profile.component.html        |  90 +++--
 src/app/profile/profile.component.scss        |   2 +-
 src/app/profile/profile.component.ts          |   4 +-
 .../structure-add-member-modal.component.html |   8 +-
 .../structure-add-member-modal.component.ts   |   4 +-
 .../structure-edition-summary.component.html  | 342 ++++++++--------
 .../structure-edition-summary.component.ts    |   6 +-
 ...tructure-members-management.component.html |  33 +-
 ...tructure-members-management.component.scss |   5 -
 .../structure-members-management.component.ts |   4 +-
 .../structures-management.component.html      |  42 +-
 .../structures-management.component.scss      |   3 -
 .../structures-management.component.ts        |   4 +-
 .../reset-password.component.html             |  14 +-
 .../reset-password.component.ts               |   4 +-
 .../checkbox-form.component.html              |   2 +-
 .../custom-modal/custom-modal.component.html  |  12 +-
 .../custom-modal/custom-modal.component.scss  |   3 -
 .../custom-modal/custom-modal.component.ts    |   4 +-
 .../components/go-back/go-back.component.ts   |  21 +
 .../hour-picker/hour-picker.component.html    |  16 +-
 .../hour-picker/hour-picker.component.scss    |   6 -
 .../hour-picker/hour-picker.component.ts      |   4 +-
 src/app/shared/components/index.ts            |   3 +
 .../modal-confirmation.component.html         |  13 +-
 .../modal-confirmation.component.scss         |   3 -
 .../modal-confirmation.component.ts           |   4 +-
 .../modal-join-confirmation.component.html    |  12 +-
 .../modal-join-confirmation.component.scss    |   3 -
 .../modal-join-confirmation.component.ts      |   4 +-
 .../password-form.component.html              |  14 +-
 .../password-form/password-form.component.ts  |   4 +-
 .../radio-option/radio-option.component.html  |  11 +-
 .../radio-option/radio-option.component.scss  |   2 +-
 .../structure-pmr.component.html              |  16 +-
 .../structure-pmr/structure-pmr.component.ts  |   3 +
 .../svg-icon/svg-icon.component.scss          |   2 +-
 .../text-input-modal.component.html           |  12 +-
 .../text-input-modal.component.ts             |   4 +-
 .../components/v3/button/Button.stories.ts    |   9 +-
 .../{button.type.ts => button-type.enum.ts}   |   1 +
 .../v3/button/button.component.html           |   8 +-
 .../v3/button/button.component.scss           |  17 +
 .../components/v3/button/button.component.ts  |   4 +-
 .../button/icon-button/IconButton.stories.ts  |   2 +-
 .../icon-button/icon-button.component.ts      |   2 +-
 .../v3/search-bar/search-bar.component.ts     |   2 +-
 .../components/card/card.component.html       |  26 +-
 .../components/card/card.component.scss       |   4 -
 .../components/card/card.component.ts         |   4 +-
 .../more-filters/more-filters.component.html  |  15 +-
 .../more-filters/more-filters.component.scss  |  21 +-
 .../more-filters/more-filters.component.ts    |   4 +-
 .../structure-list-search.component.html      |   6 +-
 .../structure-list-search.component.ts        |   2 +
 .../structure-list.component.html             |  20 +-
 .../structure-list.component.ts               |   4 +-
 .../structure-exclude.component.html          |  14 +-
 .../structure-exclude.component.scss          |   3 -
 .../structure-exclude.component.ts            |   4 +-
 .../structure-join.component.html             |   4 +-
 .../structure-join.component.ts               |   6 +-
 src/app/utils/formUtils.ts                    |   5 +-
 src/assets/form/emailVerification.svg         | 261 ++++++------
 src/assets/form/profileQuestions.svg          | 212 ++++++++++
 src/assets/form/profileSkip.svg               | 264 +++++--------
 src/assets/form/profileUpdated.svg            | 371 ++++++++++--------
 src/assets/form/sprite.svg                    |   7 +
 src/assets/form/structureCreated.svg          | 335 +++++++---------
 src/assets/ico/arrowBack.svg                  |   7 +-
 src/assets/ico/sprite.svg                     |  56 ++-
 151 files changed, 1925 insertions(+), 1916 deletions(-)
 create mode 100644 src/app/shared/components/go-back/go-back.component.ts
 rename src/app/shared/components/v3/button/{button.type.ts => button-type.enum.ts} (86%)
 create mode 100644 src/assets/form/profileQuestions.svg

diff --git a/.vscode/settings.json b/.vscode/settings.json
index 23711d0f8..d22033d9f 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -27,7 +27,13 @@
   "i18n-ally.keystyle": "nested",
   "i18n-ally.enabledFrameworks": "ngx-translate",
   "typescript.preferences.importModuleSpecifier": "relative",
-  "gitlens.remotes": [{ "type": "GitLab", "domain": "forge.grandlyon.com", "name": "Forge" }],
+  "gitlens.remotes": [
+    {
+      "type": "GitLab",
+      "domain": "forge.grandlyon.com",
+      "name": "Forge"
+    }
+  ],
   "cSpell.language": "fr,en",
   "cSpell.words": [
     "Annuary",
@@ -62,5 +68,6 @@
     "wednesday",
     "xsmall",
     "xxsmall"
-  ]
-}
+  ],
+  "svg.preview.background": "dark-transparent"
+}
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 8667f7217..618963b66 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -23729,6 +23729,13 @@
       "dev": true,
       "peer": true
     },
+    "node_modules/tslint/node_modules/commander": {
+      "version": "2.20.3",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+      "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+      "dev": true,
+      "peer": true
+    },
     "node_modules/tslint/node_modules/glob": {
       "version": "7.2.3",
       "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
diff --git a/src/app/admin/components/manage-users/manage-users.component.html b/src/app/admin/components/manage-users/manage-users.component.html
index c76138e83..482910df6 100644
--- a/src/app/admin/components/manage-users/manage-users.component.html
+++ b/src/app/admin/components/manage-users/manage-users.component.html
@@ -25,8 +25,14 @@
 
   <h3 *ngIf="unAttachedUsers" class="title">
     Utilisateurs non rattachés ({{ unAttachedUsers.length }})
-    <app-button [text]="'Exporter'" [style]="buttonTypeEnum.Tertiary" (click)="exportUsers('unattached')" />
+    <app-v3-button
+      [label]="'Exporter'"
+      [variant]="buttonTypeEnumV3.Tertiary"
+      [size]="'small'"
+      (click)="exportUsers('unattached')"
+    />
   </h3>
+
   <ag-grid-angular
     *ngIf="validatedJobs && validatedEmployers"
     class="ag-theme-alpine user-table"
@@ -43,7 +49,12 @@
 
   <h3 *ngIf="attachedUsers" class="title">
     Utilisateurs rattachés ({{ attachedUsers.length }})
-    <app-button [text]="'Exporter'" [style]="buttonTypeEnum.Tertiary" (click)="exportUsers('attached')" />
+    <app-v3-button
+      [label]="'Exporter'"
+      [variant]="buttonTypeEnumV3.Tertiary"
+      [size]="'small'"
+      (click)="exportUsers('attached')"
+    />
   </h3>
   <ag-grid-angular
     *ngIf="validatedJobs && validatedEmployers"
diff --git a/src/app/admin/components/manage-users/manage-users.component.ts b/src/app/admin/components/manage-users/manage-users.component.ts
index 0e267ae65..73e609330 100644
--- a/src/app/admin/components/manage-users/manage-users.component.ts
+++ b/src/app/admin/components/manage-users/manage-users.component.ts
@@ -7,7 +7,7 @@ import { TempUser } from '../../../models/temp-user.model';
 import { User } from '../../../models/user.model';
 import { NotificationService } from '../../../services/notification.service';
 import { TempUserService } from '../../../services/temp-user.service';
-import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { AdminService } from '../../services/admin.service';
 import { AdministredStructuresComponent } from './administred-structures/administred-structures.component';
 import { DeleteUserComponent } from './delete-user/delete-user.component';
@@ -47,7 +47,7 @@ export class ManageUsersComponent {
     { name: null, validated: false },
   ];
   public contextRow: any;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public frameworkComponents;
   public defaultColDef: ColDef = {
     editable: true,
diff --git a/src/app/admin/components/nav-bar/nav-bar.component.html b/src/app/admin/components/nav-bar/nav-bar.component.html
index 6b2045c75..d104dacc5 100644
--- a/src/app/admin/components/nav-bar/nav-bar.component.html
+++ b/src/app/admin/components/nav-bar/nav-bar.component.html
@@ -1,44 +1,46 @@
 <div fxLayout="column" fxLayoutGap="20px" class="content-container">
-  <div fxLayout="row" fxLayoutAlign="center center"><h1>Administration</h1></div>
+  <div fxLayout="row" fxLayoutAlign="center center">
+    <h1>Administration</h1>
+  </div>
   <div fxLayout="row" fxLayoutGap="20px" fxLayoutAlign="center center">
-    <app-button
-      [text]="'Revendication structure'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Revendication structure'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.pendingStructures.link)"
     />
-    <app-button
-      [text]="'Liste structures'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Liste structures'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.structuresList.link)"
     />
-    <app-button
-      [text]="'Structures supprimées'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Structures supprimées'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.deletedStructures.link)"
     />
-    <app-button
-      [text]="'Gestion des utilisateurs'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Gestion des utilisateurs'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.manageUsers.link)"
     />
-    <app-button
-      [text]="'Fonctions'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Fonctions'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.jobsList.link)"
     />
-    <app-button
-      [text]="'Employeurs'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Employeurs'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.employersList.link)"
     />
-    <app-button
-      [text]="'CNFS Espace Coop'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'CNFS Espace Coop'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.espaceCoopCNFS.link)"
     />
-    <app-button
-      [text]="'Infos covid'"
-      [style]="buttonTypeEnum.Secondary"
+    <app-v3-button
+      [label]="'Infos covid'"
+      [variant]="buttonTypeEnumV3.Secondary"
       (click)="router.navigateByUrl(routes.lockdownInfo.link)"
     />
     <a target="_blank" class="custom-link" rel="noopener noreferrer" [href]="ghostLink">Ghost</a>
diff --git a/src/app/admin/components/nav-bar/nav-bar.component.ts b/src/app/admin/components/nav-bar/nav-bar.component.ts
index d1b0fc662..b8ce1e1e1 100644
--- a/src/app/admin/components/nav-bar/nav-bar.component.ts
+++ b/src/app/admin/components/nav-bar/nav-bar.component.ts
@@ -1,7 +1,7 @@
 import { Component } from '@angular/core';
 import { Router } from '@angular/router';
 import { RuntimeConfigLoaderService } from 'runtime-config-loader';
-import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { AdminRoutes } from '../../admin-routing.module';
 
 @Component({
@@ -10,7 +10,7 @@ import { AdminRoutes } from '../../admin-routing.module';
 })
 export class NavBarComponent {
   public ghostLink = this.runtimeConfigLoaderService.getConfigObjectKey('ghostAdmin');
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public routes = AdminRoutes;
 
   constructor(private runtimeConfigLoaderService: RuntimeConfigLoaderService, public router: Router) {}
diff --git a/src/app/annuaire/filter-modal/filter-modal.component.html b/src/app/annuaire/filter-modal/filter-modal.component.html
index 74a75e189..3f7f26755 100644
--- a/src/app/annuaire/filter-modal/filter-modal.component.html
+++ b/src/app/annuaire/filter-modal/filter-modal.component.html
@@ -31,10 +31,10 @@
   </div>
   <div class="footer">
     <div class="half-width">
-      <app-button [style]="buttonTypeEnum.modalSecondary" [text]="'Effacer'" (click)="clearFilters()" />
+      <app-v3-button [variant]="buttonTypeV3Enum.Secondary" [label]="'Annuler'" (click)="clearFilters()" />
     </div>
     <div class="half-width">
-      <app-button [style]="buttonTypeEnum.modalPrimary" [text]="'Appliquer'" (click)="onSubmitFilters()" />
+      <app-v3-button [variant]="buttonTypeV3Enum.Primary" [label]="'Valider'" (click)="onSubmitFilters()" />
     </div>
   </div>
 </div>
diff --git a/src/app/annuaire/filter-modal/filter-modal.component.ts b/src/app/annuaire/filter-modal/filter-modal.component.ts
index ecf9cb2bc..4363fece5 100644
--- a/src/app/annuaire/filter-modal/filter-modal.component.ts
+++ b/src/app/annuaire/filter-modal/filter-modal.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { TypeModal } from '../enums/TypeModal.enum';
 
 @Component({
@@ -14,7 +14,7 @@ export class FilterModalComponent implements OnInit, OnChanges {
   @Input() public jobFilterChecked: string[];
   @Input() public employerFilterChecked: string[];
   @Output() fetchResults = new EventEmitter<string[]>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeV3Enum = ButtonTypeV3;
   public toggledCategories: string[] = [];
   public currentCheckedFilters: string[] = [];
 
@@ -23,7 +23,9 @@ export class FilterModalComponent implements OnInit, OnChanges {
   }
 
   ngOnChanges(changes: SimpleChanges): void {
-    if (changes.modalType) this.currentCheckedFilters = this.checkedFilters.slice();
+    if (changes.modalType) {
+      this.currentCheckedFilters = this.checkedFilters.slice();
+    }
   }
 
   public isFilterChecked(filter: string): boolean {
diff --git a/src/app/annuaire/result-list/result-list.component.html b/src/app/annuaire/result-list/result-list.component.html
index 90de1ba6f..c0e5acc93 100644
--- a/src/app/annuaire/result-list/result-list.component.html
+++ b/src/app/annuaire/result-list/result-list.component.html
@@ -15,7 +15,8 @@
     (scroll)="onScroll($event)"
   >
     <div class="userNumber">
-      {{ userList.length }} utilisateur(s)<span *ngIf="showPagination"> sur {{ totalUserResult }} </span>
+      {{ userList.length }} utilisateur{{ userList.length > 1 ? 's' : ''
+      }}<span *ngIf="showPagination"> sur {{ totalUserResult }} </span>
     </div>
     <div
       *ngFor="let user of userList; let index = index"
@@ -39,28 +40,40 @@
     </div>
     <div *ngIf="showPagination" class="pagination">
       <div class="text">
-        {{ userList.length }} utilisateur(s) affiché(s) sur {{ totalUserResult }} utilisateur(s) trouvé(s).
+        {{ userList.length }} affiché{{ userList.length > 1 ? 's' : '' }} sur {{ totalUserResult }} membre{{
+          totalUserResult > 1 ? 's' : ''
+        }}
+      </div>
+      <div class="buttons">
+        <app-v3-button
+          tabindex="0"
+          [variant]="buttonTypeV3Enum.PrimaryBlack"
+          [label]="'Voir plus'"
+          [wide]="true"
+          (click)="showMore()"
+        />
       </div>
-      <app-button
-        tabindex="0"
-        [style]="buttonTypeEnum.modalSecondary"
-        [type]="'form'"
-        [text]="'Voir plus'"
-        (click)="showMore()"
-      />
     </div>
   </div>
 
   <div *ngIf="isLogged && userList.length === 0" class="results empty">
-    <div class="userNumber">0 utilisateur</div>
-    <div class="noUser">Aucun résultat ne correspond à vos filtres</div>
-    <app-button
-      tabindex="0"
-      [style]="buttonTypeEnum.modalPrimary"
-      [type]="'form'"
-      [text]="'Réinitialiser les filtres'"
-      (click)="resetFilters()"
-    />
+    <div class="membersCount">
+      <h2>Membres</h2>
+      <p class="userNumber">0 utilisateur(s)</p>
+    </div>
+    <div class="resultsInfo">
+      <p class="noResult">Aucun résultat ne correspond à vos filtres</p>
+      <p class="filtersInfo">Merci de réinitialiser ou modifier les filtres afin d'élargir votre recherche</p>
+      <app-v3-button
+        tabindex="0"
+        [variant]="buttonTypeV3Enum.Primary"
+        [wide]="true"
+        [label]="'Réinitialiser les filtres'"
+        [iconPosition]="'right'"
+        [iconName]="'refreshV3'"
+        (click)="resetFilters()"
+      />
+    </div>
   </div>
 
   <div *ngIf="!isLogged && totalUserResult" class="results unlogged">
@@ -77,18 +90,8 @@
       veuillez vous connecter ou vous créer un compte.
     </div>
     <div class="buttons">
-      <app-button
-        [text]="'Se créer un compte'"
-        [style]="buttonTypeEnum.Secondary"
-        [extraClass]="'fullWidth'"
-        (action)="goRegister()"
-      />
-      <app-button
-        [text]="'Se connecter'"
-        [style]="buttonTypeEnum.Primary"
-        [extraClass]="'fullWidth'"
-        (action)="goLogin()"
-      />
+      <app-v3-button [label]="'Créer un compte'" [variant]="buttonTypeV3Enum.Secondary" (action)="goRegister()" />
+      <app-v3-button [label]="'Se connecter'" [variant]="buttonTypeV3Enum.Primary" (action)="goLogin()" />
     </div>
   </div>
 </ng-container>
diff --git a/src/app/annuaire/result-list/result-list.component.scss b/src/app/annuaire/result-list/result-list.component.scss
index 9ed2a610e..65664845a 100644
--- a/src/app/annuaire/result-list/result-list.component.scss
+++ b/src/app/annuaire/result-list/result-list.component.scss
@@ -1,3 +1,4 @@
+@import 'typography';
 @import 'color';
 @import 'layout';
 @import 'breakpoint';
@@ -23,19 +24,35 @@
     height: calc(100vh - $footer-height - $header-height - $header-height - 7rem);
   }
   .userNumber {
-    font-size: 0.875rem;
+    @include font-bold-14;
     color: $grey-3;
-    padding: 1rem 0.75rem;
   }
   &.empty {
-    padding-bottom: 2rem;
-    & > div {
-      margin: 1.5rem 0.5rem;
-      color: $grey-3;
+    .membersCount {
+      display: flex;
+      flex-direction: column;
+      gap: 16px;
+
+      h2 {
+        @include font-bold-18;
+        color: $grey-1;
+        text-transform: uppercase;
+      }
     }
+    .resultsInfo {
+      display: flex;
+      flex-direction: column;
+      margin-top: 16px;
+      gap: 24px;
 
-    ::ng-deep button {
-      max-width: 200px;
+      .noResult {
+        @include font-bold-16;
+        color: $grey-1;
+      }
+      .filtersInfo {
+        @include font-regular-14;
+        color: $grey-3;
+      }
     }
   }
   &.notEmpty {
@@ -61,6 +78,15 @@
         text-align: center;
         margin-bottom: 1rem;
       }
+      .buttons {
+        display: flex;
+        max-width: 330px;
+        gap: 2rem;
+        width: 100%;
+        justify-content: center;
+        align-items: center;
+        margin: 2rem auto;
+      }
     }
   }
   &.unlogged {
diff --git a/src/app/annuaire/result-list/result-list.component.ts b/src/app/annuaire/result-list/result-list.component.ts
index e62c052eb..2c57af9b4 100644
--- a/src/app/annuaire/result-list/result-list.component.ts
+++ b/src/app/annuaire/result-list/result-list.component.ts
@@ -1,7 +1,7 @@
 import { AfterViewInit, Component, EventEmitter, Input, OnChanges, Output, SimpleChanges } from '@angular/core';
 import { Router } from '@angular/router';
 import { UserAnnuary } from '../../models/user.model';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { WindowScrollService } from '../../shared/service/windowScroll.service';
 
 @Component({
@@ -19,7 +19,7 @@ export class ResultListComponent implements OnChanges, AfterViewInit {
   @Output() resetEvent = new EventEmitter<any>();
   @Output() showMoreEvent = new EventEmitter<any>();
   public maxPerPage = 20;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeV3Enum = ButtonTypeV3;
   public showPagination = false;
 
   ngAfterViewInit(): void {
diff --git a/src/app/app.component.scss b/src/app/app.component.scss
index 3ef7c6077..4df7e2f2c 100644
--- a/src/app/app.component.scss
+++ b/src/app/app.component.scss
@@ -19,6 +19,7 @@
   flex-direction: column;
   overflow-y: auto;
   overflow-x: hidden;
+  scrollbar-gutter: stable;
   position: relative;
   flex-grow: 1;
   flex-shrink: 1;
diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index 90416a26c..4cf2a4eaa 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -21,10 +21,11 @@
       (structureRDVSelected)="selectStructureRDV($event)"
     />
     <div class="btnSwitch">
-      <app-button
-        [style]="buttonTypeEnum.ButtonPhone"
-        [text]="isMapPhone ? 'Liste' : 'Carte'"
-        [iconBtn]="isMapPhone ? 'liste' : 'map-markerButtonPhone'"
+      <!-- TODO: PrimaryBlack n'est probablement pas le bon type, à changer -->
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="isMapPhone ? 'Liste' : 'Carte'"
+        [iconName]="isMapPhone ? 'liste' : 'map-markerButtonPhone'"
         (action)="switchMapList()"
       />
     </div>
diff --git a/src/app/carto/carto.component.ts b/src/app/carto/carto.component.ts
index 995446ec1..476eeb50d 100644
--- a/src/app/carto/carto.component.ts
+++ b/src/app/carto/carto.component.ts
@@ -7,7 +7,7 @@ import { Structure } from '../models/structure.model';
 import { ProfileService } from '../profile/services/profile.service';
 import { GeojsonService } from '../services/geojson.service';
 import { StructureService } from '../services/structure.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 import { Filter } from '../structure-list/models/filter.model';
 import { CustomRegExp } from '../utils/CustomRegExp';
 
@@ -36,7 +36,7 @@ export class CartoComponent implements OnInit {
   public isMapPhone = false;
   public searchedValue = null;
   public userLocate = null;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(
     private structureService: StructureService,
diff --git a/src/app/contact/contact.component.html b/src/app/contact/contact.component.html
index 235e377fb..b8f8ca433 100644
--- a/src/app/contact/contact.component.html
+++ b/src/app/contact/contact.component.html
@@ -111,11 +111,11 @@
       </div>
     </div>
     <div class="buttons">
-      <app-button [style]="buttonTypeEnum.Secondary" [text]="'Annuler'" [routerLink]="'/home'" />
-      <app-button
+      <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" [routerLink]="'/home'" />
+      <app-v3-button
         [type]="'submit'"
-        [style]="buttonTypeEnum.Primary"
-        [text]="'Envoyer'"
+        [variant]="buttonTypeEnumV3.Primary"
+        [label]="'Envoyer'"
         [disabled]="!contactForm.valid || loading"
       />
     </div>
diff --git a/src/app/contact/contact.component.ts b/src/app/contact/contact.component.ts
index 7ef4f790a..938283ef8 100644
--- a/src/app/contact/contact.component.ts
+++ b/src/app/contact/contact.component.ts
@@ -6,7 +6,7 @@ import { ContactMessage } from '../models/contact-message.model';
 import { AuthService } from '../services/auth.service';
 import { ContactService } from '../services/contact.service';
 import { NotificationService } from '../services/notification.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 import { CustomRegExp } from '../utils/CustomRegExp';
 import { Utils } from '../utils/utils';
 
@@ -18,7 +18,7 @@ import { Utils } from '../utils/utils';
 export class ContactComponent implements OnInit {
   public contactForm: UntypedFormGroup;
   public loading = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(
     private formBuilder: UntypedFormBuilder,
diff --git a/src/app/form/footer-form/footer-form.component.html b/src/app/form/footer-form/footer-form.component.html
index 18a47fc5a..0734c4fcb 100644
--- a/src/app/form/footer-form/footer-form.component.html
+++ b/src/app/form/footer-form/footer-form.component.html
@@ -1,28 +1,29 @@
 <div class="footerForm">
-  <app-button
+  <app-v3-button
     *ngIf="!isLastFormStep && !isNextFormTransition && !isStructureLastPage() && !isPersonalOfferFirstPage()"
-    [text]="!isEditMode ? 'Précédent' : 'Annuler'"
-    [iconType]="'form'"
-    [iconBtn]="!isEditMode && 'chevronLeft'"
+    [variant]="buttonTypeEnumV3.Secondary"
+    [label]="!isEditMode ? 'Précédent' : 'Annuler'"
+    [iconName]="!isEditMode && 'arrowBackV3'"
     (action)="prevPage()"
   />
 
-  <app-button
+  <app-v3-button
     *ngIf="!isLastFormStep && !isNextFormTransition && !isEditMode"
+    [variant]="buttonTypeEnumV3.Primary"
+    [label]="'Suivant'"
+    [iconPosition]="'right'"
+    [iconName]="'chevronRight'"
     [disabled]="!isValid"
-    [text]="'Suivant'"
-    [iconBtn]="'chevronRight'"
-    [iconType]="'form'"
-    [iconPos]="'right'"
-    [style]="buttonTypeEnum.Primary"
+    [style]="buttonTypeEnumV3.Primary"
     (action)="nextPage()"
   />
 
-  <app-button
+  <!-- Untested, not sure when it activates -->
+  <app-v3-button
     *ngIf="isEditMode"
+    [variant]="buttonTypeEnumV3.Primary"
+    [label]="'Valider'"
     [disabled]="!isValid"
-    [text]="'Valider'"
-    [style]="buttonTypeEnum.Primary"
     (action)="saveEdit()"
   />
 </div>
diff --git a/src/app/form/footer-form/footer-form.component.scss b/src/app/form/footer-form/footer-form.component.scss
index 2b5249c55..1bfeac54d 100644
--- a/src/app/form/footer-form/footer-form.component.scss
+++ b/src/app/form/footer-form/footer-form.component.scss
@@ -5,8 +5,10 @@
 .footerForm {
   display: flex;
   justify-content: center;
-  gap: 1rem;
-  padding: 16px 0;
+  gap: 2rem;
+  padding-top: 32px;
+  padding-bottom: 40px;
+  border-top: 1px solid $grey-7;
 }
 
 .btn-primary {
diff --git a/src/app/form/footer-form/footer-form.component.ts b/src/app/form/footer-form/footer-form.component.ts
index 01d312499..92855b3fd 100644
--- a/src/app/form/footer-form/footer-form.component.ts
+++ b/src/app/form/footer-form/footer-form.component.ts
@@ -6,7 +6,7 @@ import { User } from '../../models/user.model';
 import { AuthService } from '../../services/auth.service';
 import { NewsletterService } from '../../services/newsletter.service';
 import { NotificationService } from '../../services/notification.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { Utils } from '../../utils/utils';
 import { accountFormStep } from '../form-view/account-form/accountFormStep.enum';
 import { formType } from '../form-view/formType.enum';
@@ -40,7 +40,7 @@ export class FooterFormComponent implements OnChanges {
 
   public isLastFormStep = false;
   public isNextFormTransition = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(
     private authService: AuthService,
diff --git a/src/app/form/form-view/form-view.component.html b/src/app/form/form-view/form-view.component.html
index 1400ee6a0..8dcdfb422 100644
--- a/src/app/form/form-view/form-view.component.html
+++ b/src/app/form/form-view/form-view.component.html
@@ -60,7 +60,7 @@
     [currentForm]="currentFormType"
     [form]="currentForm"
     [linkedStructureId]="linkedStructureId"
-    [isValid]="true"
+    [isValid]="isPageValid"
     [acceptNewsletter]="userAcceptNewsletter"
     [hasOtherPersonalOffer]="hasOtherPersonalOffer"
     [isPersonalOfferProfile]="isPersonalOfferProfile"
diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 5f3cc8e79..a9fcdef85 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -20,11 +20,12 @@
   width: 100%;
   height: 100%;
   margin: 0 auto;
-  margin-top: 1rem;
   overflow-y: auto;
   color: $grey-1;
   padding: 32px 48px;
   display: flex;
+  justify-content: center;
+  min-width: 600px;
 
   @media #{$tablet} {
     margin: 0px 0.5rem;
@@ -84,12 +85,4 @@
   .backArrow {
     cursor: pointer;
   }
-  &.editTitle {
-    display: flex;
-    align-items: center;
-
-    p {
-      margin-bottom: 0;
-    }
-  }
 }
diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 96cba3a81..4b2b50768 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -135,10 +135,10 @@ export class FormViewComponent implements OnInit, AfterViewInit {
   }
 
   private initPage(): void {
-    const profileFormSteps: number = Object.keys(profileFormStep).length / 2;
-    const personalOfferFormSteps: number = Object.keys(personalOfferFormStep).length / 2 - 1;
-    const structureFormSteps: number = Object.keys(structureFormStep).length / 2;
-    const totalFormSteps: number = profileFormSteps + personalOfferFormSteps + structureFormSteps;
+    const profileFormSteps = Object.keys(profileFormStep).length / 2;
+    const personalOfferFormSteps = Object.keys(personalOfferFormStep).length / 2 - 1;
+    const structureFormSteps = Object.keys(structureFormStep).length / 2;
+    const totalFormSteps = profileFormSteps + personalOfferFormSteps + structureFormSteps;
     if (formType[this.routeParam] === formType.account) {
       this.nbSteps = 3;
       this.currentPage = accountFormStep.accountInfo;
diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index 87ce5c4fd..86d40a669 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -1,28 +1,33 @@
+<!-- After inscription, the user must confirm with a code received by email -->
 <ng-container *ngIf="formType === formTypeEnum.account && step === accountFormStepEnum.confirmEmailSentInfo">
   <div class="information-step-container no-max-width">
-    <img src="../../assets/form/emailVerification.svg" alt="Image de validation de finalisation de l'inscription" />
+    <img src="../../assets/form/emailVerification.svg" alt="" />
     <p>
       Merci !<br />
       Finalisez votre inscription en ouvrant l’email qui vient de vous être envoyé
     </p>
   </div>
 </ng-container>
+
+<!-- Email just got confirmed, request some info about the user -->
 <ng-container *ngIf="formType === formTypeEnum.profile && step === profileFormStepEnum.profileBeginningInfo">
   <div fxLayout="column" fxLayoutGap="18px" class="information-step-container profile-skip">
     <p>
       Pour compléter votre profil,<br />
       nous aimerions vous poser quelques questions
     </p>
-    <img src="../../assets/form/profileSkip.svg" alt="Image profil" />
+    <img src="../../assets/form/profileQuestions.svg" alt="" />
     <div class="footerForm" fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="center center">
-      <app-button [text]="'Plus tard'" (action)="goToHome()" />
-      <app-button [text]="'C\'est parti !'" [style]="buttonTypeEnum.Primary" (action)="goToNextPage()" />
+      <app-v3-button [label]="'Plus tard'" [variant]="buttonTypeEnumV3.Secondary" (click)="goToHome()" />
+      <app-v3-button [label]="'C\'est parti !'" [variant]="buttonTypeEnumV3.Primary" (click)="goToNextPage()" />
     </div>
   </div>
 </ng-container>
+
+<!-- A structure has just been selected, a request will be sent -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.mailSentInfo">
   <div class="information-step-container structure-display">
-    <img src="../../assets/form/emailVerification.svg" alt="Image message envoyé" />
+    <img src="../../assets/form/emailVerification.svg" alt="" />
     <p *ngIf="isClaimed">Un message a été envoyé aux membres de la structure :</p>
     <p *ngIf="!isClaimed">
       Un message a été envoyé aux administrateurs Rés'in pour valider l'affectation de votre compte à la structure :
@@ -30,13 +35,15 @@
     <span>{{ structureName }}</span>
   </div>
 </ng-container>
+
+<!-- An attempt to create a structure has been made, some info are needed -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureFormTime">
   <div class="information-step-container structure-time no-max-width">
     <h3>
       Nous vous proposons de prendre 10 minutes afin de renseigner les informations de la structure et la créer sur
       Rés'in.
     </h3>
-    <img src="../../assets/form/formTime.svg" alt="image renseignement des informations" />
+    <img src="../../assets/form/formTime.svg" alt="" />
     <p>Informations dont il faut vous munir :</p>
     <ul>
       <li>les coordonnées de la structure</li>
@@ -47,47 +54,53 @@
     </ul>
   </div>
 </ng-container>
+
+<!-- A structure has successfully been created -->
 <ng-container
   *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureCreationFinishedInfo"
 >
   <div class="structureCreated no-max-width">
-    <h3>La structure est désormais référencée sur Rés'in.</h3>
-    <img src="../../assets/form/structureCreated.svg" alt="image structure référencée" />
+    <h3>La structure est désormais référencée sur la cartographie</h3>
+    <img src="../../assets/form/structureCreated.svg" alt="" />
     <p *ngIf="hasPersonalOffer">
-      Les prochaines questions concernent les services que vous dispensez en tant qu’intervenant dans cette structure.
+      Les prochaines questions concernent les services que vous dispensez en tant qu’intervenant dans cette structure
     </p>
   </div>
 </ng-container>
+
+<!-- The user tried to create a structure without reception place -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.noStructure">
   <div class="information-step-container profile-updated no-max-width">
-    <img src="../../assets/form/profileSkip.svg" alt="image profil" />
-    <h3 class="no-margin-top">La structure n'a pas vocation à être créée dans Rés'in.</h3>
+    <img src="../../assets/form/profileSkip.svg" alt="" />
+    <h3 class="no-margin-top">La structure n'a pas vocation à être ajoutée à la cartographie</h3>
     <p class="no-margin-top">
-      Rés'in ne référence que les structures qui disposent d'un lieu d'accueil pour faire de l'accompagnement ou de la
-      formation.
+      La cartographie ne référence que les structures qui disposent d'un lieu d'accueil pour accompagner, former ou
+      donner accès au numérique
     </p>
     <div class="btn">
-      <app-button
-        [style]="buttonTypeEnum.Primary"
-        [text]="'Voir mon compte'"
-        [iconType]="'form'"
-        (action)="goBackProfile()"
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Primary"
+        [wide]="true"
+        [label]="'J\'ai compris'"
+        (click)="goBackProfile()"
       />
     </div>
   </div>
 </ng-container>
+
+<!-- After the creation of a structure -->
 <ng-container
   *ngIf="formType === formTypeEnum.personaloffer && step === personalOfferFormStep.personalOfferFinishedInfo"
 >
   <div class="information-step-container profile-updated no-max-width">
-    <img src="../../assets/form/profileUpdated.svg" alt="image profil" />
+    <img src="../../assets/form/profileUpdated.svg" alt="" />
     <h3>Merci, les informations de votre profil ont été mises à jour</h3>
     <div class="btn">
-      <app-button
-        [style]="buttonTypeEnum.Primary"
-        [text]="'Voir mon compte'"
-        [iconType]="'form'"
-        (action)="goBackProfile()"
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Primary"
+        [wide]="true"
+        [label]="'Voir mon compte'"
+        (click)="goBackProfile()"
       />
     </div>
   </div>
diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.scss b/src/app/form/form-view/global-components/information-step/information-step.component.scss
index ff75642ac..2546d8ae6 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.scss
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.scss
@@ -7,6 +7,11 @@
   align-items: center;
   justify-content: center;
   min-height: inherit;
+
+  img {
+    width: 200px;
+    height: 200px;
+  }
   svg {
     width: 100%;
     max-width: 200px;
diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.ts b/src/app/form/form-view/global-components/information-step/information-step.component.ts
index 0c8cd021c..797b482a5 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.ts
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { Router } from '@angular/router';
-import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 import { accountFormStep } from '../../account-form/accountFormStep.enum';
 import { formType } from '../../formType.enum';
 import { personalOfferFormStep } from '../../personal-offer-form/personalOfferFormStep.enum';
@@ -25,7 +25,7 @@ export class InformationStepComponent {
   public profileFormStepEnum = profileFormStep;
   public structureFormStepEnum = structureFormStep;
   public personalOfferFormStep = personalOfferFormStep;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   constructor(private router: Router) {}
 
   public goBackProfile(): void {
diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
index 73cd16848..f9b4776c0 100644
--- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
+++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.html
@@ -1,72 +1,74 @@
-<div fxLayout="column">
-  <h2 class="title">Dans quelle structure travaillez-vous ?</h2>
-  <div class="search-structure">
-    <div class="form-input search">
-      <input
-        type="text"
-        id="structureName"
-        placeholder="Rechercher une structure"
-        class="form-input search-input"
-        autocomplete="off"
-        (input)="onSearchChange($event.target)"
-      />
-      <app-svg-icon [iconClass]="'searchIcon icon-32'" [type]="'ico'" [icon]="'search'" />
-    </div>
-    <div class="scroll">
-      <div *ngIf="!isAlreadySearching">
-        <div class="nb">
-          <div *ngIf="structures">
-            <div *ngIf="searchString.length === 0" class="nb-text">{{ structures.length }} structures existantes</div>
-            <div *ngIf="searchString.length > 0" class="nb-text" [ngPlural]="structures.length">
-              <ng-template ngPluralCase="0">0 structure trouvée</ng-template>
-              <ng-template ngPluralCase="1">1 structure trouvée</ng-template>
-              <ng-template ngPluralCase="other">{{ structures.length }} structures trouvées</ng-template>
-            </div>
-          </div>
+<h2 class="title">Dans quelle structure travaillez-vous ?</h2>
+<div class="form-input search">
+  <input
+    type="text"
+    id="structureName"
+    placeholder="Rechercher une structure"
+    class="form-input search-input"
+    autocomplete="off"
+    (input)="onSearchChange($event.target)"
+  />
+  <app-svg-icon [iconClass]="'searchIcon icon-32'" [type]="'ico'" [icon]="'search'" />
+</div>
+<div class="scroll">
+  <div *ngIf="!isAlreadySearching">
+    <div class="nb">
+      <div *ngIf="structures">
+        <div *ngIf="searchString.length === 0" class="nb-text">{{ structures.length }} structures existantes</div>
+        <div *ngIf="searchString.length > 0" class="nb-text" [ngPlural]="structures.length">
+          <ng-template ngPluralCase="0">0 structure trouvée</ng-template>
+          <ng-template ngPluralCase="1">1 structure trouvée</ng-template>
+          <ng-template ngPluralCase="other">{{ structures.length }} structures trouvées</ng-template>
         </div>
+      </div>
+    </div>
 
-        <div class="structure-list">
-          <div
-            *ngFor="let structure of structures"
-            class="filet"
-            tabindex="0"
-            (click)="selectedResult(structure)"
-            (keyup.enter)="selectedResult(structure)"
-          >
-            <div
-              fxLayout="column"
-              fxLayoutAlign="space-around"
-              class="form-list"
-              [ngClass]="{
-                'already-selected': structure.alreadySelected,
-                'item-selected': isSelectedStructure(structure)
-              }"
-            >
-              <div fxLayout="row" fxLayoutAlign="space-between center">
-                <div class="item-frame">
-                  <div class="name">{{ structure.structureName }}</div>
-                  <div class="commune">{{ structure.address.commune }}</div>
-                </div>
-                <app-svg-icon
-                  *ngIf="isSelectedStructure(structure)"
-                  class="form-icon"
-                  [iconClass]="'icon-26'"
-                  [type]="'form'"
-                  [icon]="'validate'"
-                />
-                <div *ngIf="structure.alreadySelected" class="sticker">Déjà<br />sélectionnée</div>
-              </div>
-            </div>
-          </div>
-          <div class="item-frame">
-            <div class="create-text">
-              Cette structure n’existe pas encore sur Rés'in.<br />
-              <span class="question">Souhaitez-vous la référencer ?</span>
+    <div class="structure-list">
+      <div
+        *ngFor="let structure of structures"
+        class="filet"
+        tabindex="0"
+        (click)="selectedResult(structure)"
+        (keyup.enter)="selectedResult(structure)"
+      >
+        <div
+          fxLayout="column"
+          fxLayoutAlign="space-around"
+          class="form-list"
+          [ngClass]="{
+            'already-selected': structure.alreadySelected,
+            'item-selected': isSelectedStructure(structure)
+          }"
+        >
+          <div fxLayout="row" fxLayoutAlign="space-between center">
+            <div class="item-frame">
+              <div class="name">{{ structure.structureName }}</div>
+              <div class="commune">{{ structure.address.commune }}</div>
             </div>
-            <app-button [text]="'Créer une structure'" [style]="buttonTypeEnum.Primary" (action)="addStructure()" />
+            <app-svg-icon
+              *ngIf="isSelectedStructure(structure)"
+              class="form-icon"
+              [iconClass]="'icon-26'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <div *ngIf="structure.alreadySelected" class="sticker">Déjà<br />sélectionnée</div>
           </div>
         </div>
       </div>
+      <div class="item-frame">
+        <div class="create-text">
+          Cette structure n’existe pas encore sur Rés'in.<br />
+          <span class="question">Souhaitez-vous la référencer ?</span>
+        </div>
+        <app-v3-button
+          [label]="'Créer une structure'"
+          [variant]="buttonTypeEnumV3.PrimaryBlack"
+          [wide]="true"
+          [iconName]="'addV3'"
+          (action)="addStructure()"
+        />
+      </div>
     </div>
   </div>
 </div>
diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss
index 009439961..c0828e6ec 100644
--- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss
+++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.scss
@@ -3,15 +3,6 @@
 @import 'inputs';
 @import 'breakpoint';
 
-.search-structure {
-  width: 380px;
-  padding-bottom: 1.5rem;
-}
-
-h2 {
-  margin-top: 0;
-}
-
 .search {
   display: flex;
   justify-content: space-between;
diff --git a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts
index 0603a0c58..4c0c50aae 100644
--- a/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts
+++ b/src/app/form/form-view/profile-form/profile-structure-choice/profile-structure-choice.component.ts
@@ -4,7 +4,7 @@ import { pendingStructureLink } from '../../../../models/pendingStructure.model'
 import { Structure } from '../../../../models/structure.model';
 import { ProfileService } from '../../../../profile/services/profile.service';
 import { StructureService } from '../../../../services/structure.service';
-import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 import { Filter } from '../../../../structure-list/models/filter.model';
 
 @Component({
@@ -21,7 +21,7 @@ export class ProfileStructureChoiceComponent implements OnInit {
   public structures: Structure[];
   public selectedStructureItem: Structure;
   public isAlreadySearching = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public profileStructuresLink: string[] = [];
   public profilePendingStructureLink: pendingStructureLink[] = [];
   public itemSelected: string = null;
diff --git a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
index 46ad77665..a894fea56 100644
--- a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
+++ b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
@@ -1,10 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon *ngIf="isEditMode" [iconClass]="'backArrow'" [type]="'ico'" [icon]="'arrowBack'" (click)="goBack()" />
-    <div class="titleContent">
-      <h3>Quelles sont les modalités d'accueil de la structure&nbsp;?</h3>
-      <p>Plusieurs choix possibles</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelles sont les modalités d'accueil de la structure&nbsp;?</h3>
+    <p>Plusieurs choix possibles</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('categories').get('accessModality').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
index 6ca6d879f..c3db6fa9e 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
@@ -9,25 +9,15 @@
     <app-checkbox-form [text]="'J\'accepte'" (checkEvent)="acceptDataBeSaved($event)" />
   </div>
   <div class="section">
-    <div class="title" [ngClass]="{ editTitle: isEditMode }">
-      <app-svg-icon
-        *ngIf="isEditMode"
-        tabindex="0"
-        [iconClass]="'backArrow'"
-        [type]="'ico'"
-        [icon]="'arrowBack'"
-        (click)="goBack()"
-        (keyup.enter)="goBack()"
-      />
-      <div class="titleContent">
-        <h3>
-          Acceptez-vous que les informations de votre structure soient mises à disposition sur la plateforme
-          data.grandlyon.com
-          <sup>{{ isEditMode ? '1' : '2' }}</sup>
-          ?
-        </h3>
-        <p *ngIf="!isEditMode">Facultatif</p>
-      </div>
+    <app-go-back [active]="isEditMode" (action)="goBack()" />
+    <div class="title">
+      <h3>
+        Acceptez-vous que les informations de votre structure soient mises à disposition sur la plateforme
+        data.grandlyon.com
+        <sup>{{ isEditMode ? '1' : '2' }}</sup>
+        ?
+      </h3>
+      <p *ngIf="!isEditMode">Facultatif</p>
     </div>
     <app-checkbox-form
       *ngIf="!isEditMode"
diff --git a/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html b/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
index d53261974..d780095c3 100644
--- a/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelle personne pourrait connaître ces informations&nbsp;?</h3>
-      <p>Informations demandées : téléphone, email, accessibilité PMR, type de public...</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelle personne pourrait connaître ces informations&nbsp;?</h3>
+    <p>Informations demandées : téléphone, email, accessibilité PMR, type de public...</p>
   </div>
   <div class="form-group" fxLayout="column">
     <label for="contactPersonFirstname">Prénom</label>
diff --git a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
index eabad119f..180f45e07 100644
--- a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Comment joindre votre structure&nbsp;?</h3>
-      <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Comment joindre votre structure&nbsp;?</h3>
+    <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
   </div>
   <div class="form-group" fxLayout="column">
     <label for="structureName">Email de la structure</label>
diff --git a/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html b/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
index 96637817e..b6a1c34f1 100644
--- a/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
+++ b/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Y a-t-il des informations spécifiques à la période COVID&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Y a-t-il des informations spécifiques à la période COVID&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <div class="textareaBlock" fxLayout="column">
     <textarea
diff --git a/src/app/form/form-view/structure-form/structure-description/structure-description.component.html b/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
index 73e2dfc4d..12639ca6c 100644
--- a/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
+++ b/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Pouvez-vous présenter la structure en quelques mots&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Pouvez-vous présenter la structure en quelques mots&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <div class="textareaBlock introduceStructure" fxLayout="column">
     <textarea
diff --git a/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html b/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
index 5ae9e0e6d..35bcab2f1 100644
--- a/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
+++ b/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
@@ -1,19 +1,9 @@
 <form *ngIf="structureForm && onlineProcedures" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelles aides aux démarches en ligne votre structure propose-t-elle&nbsp;?</h3>
-      <p>Facultatif</p>
-      <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelles aides aux démarches en ligne votre structure propose-t-elle&nbsp;?</h3>
+    <p>Facultatif</p>
+    <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
   </div>
   <div class="btn-grid">
     <span *ngFor="let accompaniment of onlineProcedures.modules">
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
index 0c58b4d64..24b6b30d7 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
@@ -1,10 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon *ngIf="isEditMode" [iconClass]="'backArrow'" [type]="'ico'" [icon]="'arrowBack'" (click)="goBack()" />
-    <div class="titleContent">
-      <h3>Quel matériel est mis à disposition par la structure&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quel matériel est mis à disposition par la structure&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <div class="equipments">
     <ng-container *ngFor="let equipment of selfServiceMaterial">
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
index 5bc107392..e62cbd777 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { AbstractControl, UntypedFormGroup } from '@angular/forms';
-import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 import { Module } from '../../../../structure-list/models/module.model';
 
 @Component({
diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index c3bbed264..27cdaca1a 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -299,9 +299,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
   }
 
   public onRadioChange({ name, value }: { name: string; value: string | boolean }): void {
-    // const { name, value } = nameAndEvent;
-    // TODO convert string to bool if necessary
-    console.log(name, value);
     this.structureForm.get(name).setValue(value);
     this.setValidationsForm();
   }
@@ -331,11 +328,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
     this.setValidationsForm();
   }
   public acceptOpenData(isAccepted: boolean): void {
-    console.log(
-      '🚀 ~ file: structure-form.component.ts:358 ~ StructureFormComponent ~ acceptOpenData ~ isAccepted:',
-      isAccepted
-    );
-
     const now = isAccepted ? new Date().toString() : '';
     this.getStructureControl('dataShareConsentDate').setValue(now);
     this.setValidationsForm();
diff --git a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
index 26eaed429..1f1c261f8 100644
--- a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
+++ b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-     />
-    <div class="titleContent">
-      <h3>Quels sont les horaires d'ouverture de la structure&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quels sont les horaires d'ouverture de la structure&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <app-hour-picker
     *ngIf="hoursForm"
diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
index 47d043cf2..a57337d1f 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
@@ -1,18 +1,8 @@
 <form class="labelStep" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>La structure est-elle labellisée&nbsp;?</h3>
-      <p>Facultatif - Plusieurs choix possibles</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>La structure est-elle labellisée&nbsp;?</h3>
+    <p>Facultatif - Plusieurs choix possibles</p>
   </div>
   <div *ngIf="labelsQualifications" class="labelsQualifications">
     <app-checkbox-form
diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
index bfc585137..c7be889e8 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.scss
@@ -1,5 +1,5 @@
 .labelsQualifications {
-  gap: 8px;
+  gap: 16px;
   display: flex;
   flex-wrap: wrap;
 
diff --git a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
index 79dd4e3b3..cffd319ee 100644
--- a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
+++ b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
@@ -1,17 +1,7 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
   </div>
   <div class="form-group" fxLayout="column">
     <label for="structureName">Nom de la structure</label>
diff --git a/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html b/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
index 1d7d21d01..4cbbf9bd6 100644
--- a/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
+++ b/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
@@ -1,17 +1,7 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quelles sont les autres démarches&nbsp;?</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quelles sont les autres démarches&nbsp;?</h3>
   </div>
   <div class="textareaBlock" fxLayout="column">
     <textarea
diff --git a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
index f7ba4ce7c..bf912463a 100644
--- a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
+++ b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
@@ -1,24 +1,14 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>
-        {{
-          isMandatoryFields
-            ? 'Quel public peut être accueilli dans cette structure&nbsp;?'
-            : 'Proposez-vous des accompagnements adaptés à des publics spécifiques&nbsp;? Lesquels&nbsp;?'
-        }}
-      </h3>
-      <p>{{ isMandatoryFields ? '' : 'Facultatif - ' }}Plusieurs choix possibles</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>
+      {{
+        isMandatoryFields
+          ? 'Quel public peut être accueilli dans cette structure&nbsp;?'
+          : 'Proposez-vous des accompagnements adaptés à des publics spécifiques&nbsp;? Lesquels&nbsp;?'
+      }}
+    </h3>
+    <p>{{ isMandatoryFields ? '' : 'Facultatif - ' }}Plusieurs choix possibles</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('categories').get('age').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html b/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
index 91482f741..bde6c219c 100644
--- a/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
+++ b/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
@@ -1,19 +1,10 @@
 <form *ngIf="structureForm && solidarityMaterial" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quel matériel numérique vendez-vous à tarif solidaire&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quel matériel numérique vendez-vous à tarif solidaire&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
+
   <div class="btn-grid">
     <span *ngFor="let material of solidarityMaterial.modules">
       <app-button
diff --git a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
index 04a0e6099..cba927923 100644
--- a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
@@ -1,18 +1,8 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Ces accompagnements aux usages numériques sont-ils gratuits&nbsp;?</h3>
-      <p>Un seul choix possible</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Ces accompagnements aux usages numériques sont-ils gratuits&nbsp;?</h3>
+    <p>Un seul choix possible</p>
   </div>
   <div class="formGroup">
     <app-radio-option
diff --git a/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html b/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
index f52f5b96d..75674199b 100644
--- a/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
@@ -1,19 +1,9 @@
 <form *ngIf="structureForm && trainingCategories.length > 0" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Quels accompagnements au numérique votre structure propose-t-elle&nbsp;?</h3>
-      <p>Facultatif</p>
-      <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Quels accompagnements au numérique votre structure propose-t-elle&nbsp;?</h3>
+    <p>Facultatif</p>
+    <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
   </div>
   <app-training-type-picker
     [baseSkills]="structureForm.get('categories').get('baseSkills').value"
diff --git a/src/app/form/form-view/structure-form/structure-type/structure-type.component.html b/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
index 445b8748d..c74c7e65e 100644
--- a/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
+++ b/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>De quel type de structure s'agit-il&nbsp;?</h3>
-      <p>1 seul choix possible</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>De quel type de structure s'agit-il&nbsp;?</h3>
+    <p>1 seul choix possible</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('structureType').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index 0b6e9fb12..992a82b68 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -1,18 +1,8 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Votre présence sur internet et les réseaux sociaux</h3>
-      <p>Facultatif</p>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Votre présence sur internet et les réseaux sociaux</h3>
+    <p>Facultatif</p>
   </div>
   <div class="card">
     <h3>Site web</h3>
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
index 849b313d8..d4dde58ee 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
@@ -1,17 +1,7 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
   </div>
   <!-- TODO to fix -->
   <!-- <app-radio-form
diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html
index 02281fb7d..4c233649a 100644
--- a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html
+++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.html
@@ -14,19 +14,10 @@
       <div class="content">
         <img src="../../../../../assets/img/resin-login.svg" alt="resin-login-image" class="loginimg" />
         <h3>Pour pré-remplir ce formulaire, gagnez du temps en vous connectant !</h3>
-        <div class="footerModal" fxLayout="column" fxLayoutAlign="space-around center" fxLayoutGap="8px">
-          <app-button
-            [text]="'Se connecter'"
-            [style]="buttonTypeEnum.modalPrimary"
-            [ngClass]="'fullWidth'"
-            (action)="goLogin()"
-          />
-          <app-button
-            [text]="'Continuer sans compte'"
-            [style]="buttonTypeEnum.Tertiary"
-            [ngClass]="'fullWidth'"
-            (action)="handleClose()"
-          />
+
+        <div class="footerModal">
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Plus tard'" (action)="handleClose()" />
+          <app-v3-button [variant]="buttonTypeEnumV3.Primary" [label]="'Se connecter'" (action)="goLogin()" />
         </div>
       </div>
     </div>
diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss
index ddb2cac45..6b193a782 100644
--- a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss
+++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.scss
@@ -34,8 +34,10 @@ h3 {
   padding: 0 1.5rem;
 }
 .footerModal {
-  padding-bottom: 1rem;
-  gap: 0.5rem;
+  display: flex;
+  justify-content: center;
+  gap: 1rem;
+  padding: 16px 0;
 }
 .fullWidth {
   width: 100% !important;
diff --git a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts
index c3ac176ca..22541de5b 100644
--- a/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts
+++ b/src/app/form/orientation-form-view/global-components/login-modal/login-modal.component.ts
@@ -1,6 +1,6 @@
 import { Component, Input } from '@angular/core';
 import { Router } from '@angular/router';
-import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 
 @Component({
   selector: 'app-login-modal',
@@ -9,7 +9,7 @@ import { ButtonType } from '../../../../shared/components/button/buttonType.enum
 })
 export class LoginModalComponent {
   @Input() opened: boolean;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   constructor(private router: Router) {}
 
   public handleClose(): void {
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
index 2aa7d7adb..54989dc01 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.html
@@ -1,25 +1,24 @@
 <div class="footerForm">
   <ng-container *ngIf="!shouldResetOrientation">
-    <app-button
+    <app-v3-button
       *ngIf="currentStep !== null && !(isLastStep && needType === 'onlineDemarch')"
-      [text]="'Précédent'"
-      [iconType]="'form'"
-      [iconBtn]="'chevronLeft'"
+      [variant]="buttonTypeEnumV3.Secondary"
+      [label]="'Précédent'"
+      [iconName]="'arrowBackV3'"
       (action)="prevPage()"
     />
-    <app-button
+    <app-v3-button
       *ngIf="!hideNavButtons"
-      [text]="isLastStep ? 'Terminer' : 'Suivant'"
-      [iconBtn]="!isLastStep ? 'chevronRight' : 'finish'"
-      [iconType]="'form'"
-      [iconPos]="!isLastStep ? 'right' : 'left'"
-      [style]="buttonTypeEnum.Primary"
+      [variant]="buttonTypeEnumV3.Primary"
+      [label]="isLastStep ? 'Terminer' : 'Suivant'"
+      [iconPosition]="!isLastStep ? 'right' : 'left'"
+      [iconName]="!isLastStep ? 'arrowForwardV3' : null"
       [disabled]="!isPageValid"
       (action)="nextPage()"
     />
   </ng-container>
   <ng-container *ngIf="shouldResetOrientation">
-    <app-button [text]="'Cartographie'" (action)="goCarto()" />
-    <app-button [text]="'Recommencer'" [style]="buttonTypeEnum.Primary" (action)="resetOrientation()" />
+    <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Cartographie'" (action)="goCarto()" />
+    <app-v3-button [variant]="buttonTypeEnumV3.Primary" [label]="'Recommencer'" (action)="resetOrientation()" />
   </ng-container>
 </div>
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
index 005771c6a..37cc1c623 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
@@ -1,6 +1,6 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
-import { ButtonType } from '../../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 import { NeedsType, OnlineDemarche } from '../../enums/orientation.enums';
 import { MediationType } from '../../types/mediation.type';
 import { MediationStepType } from '../../types/mediationStep.type';
@@ -24,7 +24,7 @@ export class NavigationComponent {
   @Output() goPrev = new EventEmitter<any>();
   @Output() goReset = new EventEmitter<any>();
 
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public NeedsTypeEnum = NeedsType;
   constructor(private router: Router, private route: ActivatedRoute) {}
   public nextPage(isPrint?: boolean): void {
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.scss b/src/app/form/orientation-form-view/orientation-form-view.component.scss
index ff2691f59..b3ae5cd9c 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.scss
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.scss
@@ -61,14 +61,6 @@
   .backArrow {
     cursor: pointer;
   }
-  &.editTitle {
-    display: flex;
-    align-items: center;
-
-    p {
-      margin-bottom: 0;
-    }
-  }
 }
 
 div.titleform {
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
index 151949484..a035946c1 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
@@ -1,9 +1,7 @@
 <form [formGroup]="form">
   <div class="title">
-    <div class="titleContent">
-      <h3>Avez-vous des précisions à apporter&nbsp;?</h3>
-      <p>Facultatif</p>
-    </div>
+    <h3>Avez-vous des précisions à apporter&nbsp;?</h3>
+    <p>Facultatif</p>
   </div>
   <p>Ces informations accompagneront la fiche d'orientation de la personne</p>
   <div class="textareaBlock" fxLayout="column">
diff --git a/src/app/header/header.component.html b/src/app/header/header.component.html
index fe61d96df..eb43df7ec 100644
--- a/src/app/header/header.component.html
+++ b/src/app/header/header.component.html
@@ -43,19 +43,19 @@
       Annuaire
     </a>
     <a *ngIf="isAdmin" routerLink="/admin" [routerLinkActive]="'active'">Administration</a>
-    <app-button
-      *ngIf="isLoggedIn"
+    <app-v3-button
       class="connected"
-      [text]="displayName"
-      [style]="buttonTypeEnum.modalPrimary"
-      [variant]="'small'"
+      *ngIf="isLoggedIn"
+      [variant]="buttonTypeEnumV3.Primary"
+      [label]="displayName"
+      [size]="'small'"
       (action)="openProfileMenu()"
     />
-    <app-button
+    <app-v3-button
       *ngIf="!isLoggedIn"
-      [text]="'Se connecter'"
-      [style]="buttonTypeEnum.Secondary"
-      [variant]="'small'"
+      [variant]="buttonTypeEnumV3.PrimaryBlack"
+      [label]="'Se connecter'"
+      [size]="'small'"
       (action)="goToLoginPage()"
     />
   </div>
@@ -101,13 +101,20 @@
       />
       <span class="name">{{ displayFullName }}</span>
     </div>
-    <app-button
-      class="firstBtn"
-      [text]="'Voir mon compte'"
-      [style]="buttonTypeEnum.SecondaryWide"
-      (click)="goToProfile()"
-    />
-    <app-button [text]="'Se déconnecter'" [style]="buttonTypeEnum.SecondaryWide" (action)="logout()" />
+    <div class="profileMenuButtons">
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="'Voir mon compte'"
+        [size]="'small'"
+        (click)="goToProfile()"
+      />
+      <app-v3-button
+        [label]="'Se déconnecter'"
+        [variant]="buttonTypeEnumV3.Secondary"
+        [size]="'small'"
+        (action)="logout()"
+      />
+    </div>
   </div>
 </div>
 
diff --git a/src/app/header/header.component.scss b/src/app/header/header.component.scss
index 26916ebaa..10d26832c 100644
--- a/src/app/header/header.component.scss
+++ b/src/app/header/header.component.scss
@@ -33,10 +33,9 @@ header {
     display: flex;
     align-items: center;
     gap: 3vw;
-
-    .connected {
-      box-shadow: 0px 4px 8px 0px $red-20;
-    }
+  }
+  .connected {
+    box-shadow: 0px 4px 8px 0px $red-20;
   }
 }
 
@@ -177,18 +176,18 @@ a {
     width: 184px;
     display: flex;
     flex-direction: column;
-    align-items: flex-start;
+    align-items: center;
     justify-content: center;
-    padding: 16px 8px 8px;
+    gap: 1.5rem;
+    padding: 1rem;
     background: $white;
-    box-shadow: $menu-shadow;
     border-radius: 8px;
+    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.35);
 
     .profileInformation {
       display: flex;
       align-items: center;
-      margin-bottom: 8px;
-      width: 100%;
+      gap: 12px;
       .avatar {
         flex-shrink: 0;
         width: 40px;
@@ -198,8 +197,6 @@ a {
       }
       .name {
         @include font-bold-16;
-        margin-left: 10px;
-        text-transform: capitalize;
         display: -webkit-box;
         -webkit-line-clamp: 2;
         -webkit-box-orient: vertical;
@@ -207,8 +204,11 @@ a {
       }
     }
 
-    .firstBtn {
-      margin-bottom: 6px;
+    .profileMenuButtons {
+      display: inline-flex;
+      flex-direction: column;
+      margin: auto;
+      gap: 12px;
     }
   }
 }
diff --git a/src/app/header/header.component.ts b/src/app/header/header.component.ts
index 07165bef5..4b75571d9 100644
--- a/src/app/header/header.component.ts
+++ b/src/app/header/header.component.ts
@@ -4,7 +4,7 @@ import { NavigationEnd, Router } from '@angular/router';
 import { Structure } from '../models/structure.model';
 import { ProfileService } from '../profile/services/profile.service';
 import { AuthService } from '../services/auth.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 
 @Component({
   selector: 'app-header',
@@ -39,7 +39,7 @@ export class HeaderComponent {
   public dataConsentPendingStructures: Structure[];
   private displayDataShare = false;
   private loadingDataShare = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(private authService: AuthService, private profileService: ProfileService, private router: Router) {
     this.router.events.subscribe((event) => {
diff --git a/src/app/login/login.component.html b/src/app/login/login.component.html
index 909571f1a..9033a7b93 100644
--- a/src/app/login/login.component.html
+++ b/src/app/login/login.component.html
@@ -51,25 +51,24 @@
           8 caractères dont un caractère spécial, un caractère en majuscule et un chiffre.
         </p>
       </div>
-      <div class="footer" fxLayout="row" fxLayoutAlign="space-around center">
-        <app-button
-          [text]="'Mot de passe oublié'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'fullWidth'"
+      <div class="footer">
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Mot de passe oublié'"
           (action)="swithToResetPassword()"
         />
-        <app-button
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Primary"
           [type]="'submit'"
-          [text]="'Se connecter'"
+          [label]="'Se connecter'"
           [disabled]="loginForm.invalid || loading"
-          [style]="buttonTypeEnum.Primary"
-          [extraClass]="'fullWidth'"
         />
       </div>
-      <app-button
-        [text]="'Je n’ai pas encore de compte'"
-        [style]="buttonTypeEnum.Tertiary"
-        [extraClass]="'fullWidth'"
+      <app-v3-button
+        class="goSignup"
+        [variant]="buttonTypeEnumV3.Tertiary"
+        [label]="'Je n\’ai pas encore de compte'"
+        [wide]="true"
         (action)="goToAccountCreation()"
       />
     </form>
diff --git a/src/app/login/login.component.scss b/src/app/login/login.component.scss
index e28446392..7ad560f20 100644
--- a/src/app/login/login.component.scss
+++ b/src/app/login/login.component.scss
@@ -104,20 +104,12 @@
     }
   }
   .footer {
+    display: inline-flex;
     margin-bottom: 1rem;
     gap: 24px;
   }
-  ::ng-deep app-button {
-    flex: 1;
-    .secondary {
-      width: 100% !important;
-
-      div {
-        width: 95% !important;
-      }
-    }
-    .tertiary {
-      border-radius: 4px !important;
-    }
+  .goSignup {
+    display: flex;
+    justify-content: center;
   }
 }
diff --git a/src/app/login/login.component.ts b/src/app/login/login.component.ts
index 96154c632..0aeb41fc6 100644
--- a/src/app/login/login.component.ts
+++ b/src/app/login/login.component.ts
@@ -6,7 +6,7 @@ import { map } from 'rxjs/operators';
 import { Structure } from '../models/structure.model';
 import { AuthService } from '../services/auth.service';
 import { NotificationService } from '../services/notification.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 import { CustomRegExp } from '../utils/CustomRegExp';
 
 @Component({
@@ -21,7 +21,7 @@ export class LoginComponent implements OnInit {
   public authFailed = false;
   public isUnverifiedEmail = false;
   public isShowPassword = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public isWelcome = false;
   public userId: string;
   public token: string;
diff --git a/src/app/newsletter-subscription/newsletter-subscription.component.html b/src/app/newsletter-subscription/newsletter-subscription.component.html
index 69a3dfdcb..94e6ce4a7 100644
--- a/src/app/newsletter-subscription/newsletter-subscription.component.html
+++ b/src/app/newsletter-subscription/newsletter-subscription.component.html
@@ -21,11 +21,11 @@
           </div>
         </div>
         <div class="button" fxLayout="row" fxLayoutAlign="space-around center">
-          <app-button [style]="buttonTypeEnum.Secondary" [text]="'Annuler'" [routerLink]="'/home'" />
-          <app-button
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" [routerLink]="'/home'" />
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Primary"
+            [label]="subscriptionMod ? 'S\'inscrire' : 'Se désinscrire'"
             [type]="'submit'"
-            [style]="buttonTypeEnum.Primary"
-            [text]="subscriptionMod ? 'S\'inscrire' : 'Se désinscrire'"
             [disabled]="loading"
           />
         </div>
diff --git a/src/app/newsletter-subscription/newsletter-subscription.component.ts b/src/app/newsletter-subscription/newsletter-subscription.component.ts
index 33635f7b9..b0183e43b 100644
--- a/src/app/newsletter-subscription/newsletter-subscription.component.ts
+++ b/src/app/newsletter-subscription/newsletter-subscription.component.ts
@@ -4,7 +4,7 @@ import { Router } from '@angular/router';
 import { lastValueFrom } from 'rxjs';
 import { NewsletterService } from '../services/newsletter.service';
 import { NotificationService } from '../services/notification.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 import { CustomRegExp } from '../utils/CustomRegExp';
 
 @Component({
@@ -17,7 +17,7 @@ export class NewsletterSubscriptionComponent implements OnInit {
   public loading = false;
   public submitted = false;
   public subscriptionMod: boolean;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(
     private formBuilder: UntypedFormBuilder,
diff --git a/src/app/post/components/post-header/post-header.component.html b/src/app/post/components/post-header/post-header.component.html
index 903149717..f888d0cb4 100644
--- a/src/app/post/components/post-header/post-header.component.html
+++ b/src/app/post/components/post-header/post-header.component.html
@@ -23,9 +23,11 @@
         >
       </div>
       <div fxLayout="row" class="row-mobile">
-        <app-button
+        <app-v3-button
           class="publish-button hide-on-mobile"
-          [text]="'Publier votre actu'"
+          [variant]="buttonTypeEnumV3.PrimaryBlack"
+          [label]="'Publier'"
+          [iconName]="'addV3'"
           (action)="togglePublishNews()"
         />
       </div>
diff --git a/src/app/post/components/post-header/post-header.component.ts b/src/app/post/components/post-header/post-header.component.ts
index 4e713fabc..40ab19504 100644
--- a/src/app/post/components/post-header/post-header.component.ts
+++ b/src/app/post/components/post-header/post-header.component.ts
@@ -1,5 +1,6 @@
 import { Component, OnInit } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { TagEnum } from '../../enum/tag.enum';
 import { TypeModalNews } from '../../enum/typeModalNews.enum';
 import { Tag } from '../../models/tag.model';
@@ -18,6 +19,9 @@ export class PostHeaderComponent implements OnInit {
 
   public checkedPublicTags: Tag[] = [];
   public checkedLocationTags: Tag[] = [];
+
+  public buttonTypeEnumV3 = ButtonTypeV3;
+
   constructor(private route: ActivatedRoute, private router: Router) {}
 
   ngOnInit(): void {
diff --git a/src/app/post/components/post-list/post-list.component.html b/src/app/post/components/post-list/post-list.component.html
index b22e137ea..155af905e 100644
--- a/src/app/post/components/post-list/post-list.component.html
+++ b/src/app/post/components/post-list/post-list.component.html
@@ -14,7 +14,13 @@
         <img class="loader-gif" src="/assets/gif/loader_circle_grey.gif" alt />
       </div>
       <div *ngIf="!isLastPage && !isLoading" fxLayout="row" fxLayoutAlign="center center">
-        <app-button class="loadMore" [text]="'Voir plus'" [style]="buttonTypeEnum.Primary" (click)="loadMore()" />
+        <app-v3-button
+          class="loadMore"
+          [variant]="buttonTypeEnumV3.PrimaryBlack"
+          [label]="'Voir plus d\'actualités'"
+          [wide]="true"
+          (click)="loadMore()"
+        />
       </div>
     </div>
   </div>
diff --git a/src/app/post/components/post-list/post-list.component.ts b/src/app/post/components/post-list/post-list.component.ts
index 2a25b8d48..8e7142b14 100644
--- a/src/app/post/components/post-list/post-list.component.ts
+++ b/src/app/post/components/post-list/post-list.component.ts
@@ -1,7 +1,7 @@
 import { Component, OnInit } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
 import * as _ from 'lodash';
-import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { TagEnum } from '../../enum/tag.enum';
 import { Pagination } from '../../models/pagination.model';
 import { Post } from '../../models/post.model';
@@ -26,7 +26,7 @@ export class PostListComponent implements OnInit {
   public isPublishMode = false;
   public isLastPage: boolean;
   public isInSection = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(private postService: PostService, private route: ActivatedRoute, private router: Router) {}
 
diff --git a/src/app/post/components/post-modal-filters/post-modal-filters.component.html b/src/app/post/components/post-modal-filters/post-modal-filters.component.html
index 9d66bdc0d..8e864529e 100644
--- a/src/app/post/components/post-modal-filters/post-modal-filters.component.html
+++ b/src/app/post/components/post-modal-filters/post-modal-filters.component.html
@@ -28,7 +28,7 @@
     </div>
     <div class="footer" fxLayout="row" fxLayoutAlign="end center" fxLayoutGap="3vw">
       <a tabindex="0" (click)="clearFilters()" (keyup.enter)="clearFilters()">Effacer</a>
-      <app-button [text]="'Appliquer'" (click)="emit(checkedTags)" />
+      <app-v3-button [label]="'Appliquer'" (click)="emit(checkedTags)" />
     </div>
   </div>
 </div>
diff --git a/src/app/profile/edit/edit.component.html b/src/app/profile/edit/edit.component.html
index 6eae7f37a..5a77e21e5 100644
--- a/src/app/profile/edit/edit.component.html
+++ b/src/app/profile/edit/edit.component.html
@@ -1,31 +1,24 @@
 <div *ngIf="userProfile" class="content-container full-screen">
   <div class="edit-profile">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
 
     <div class="header">
       <div class="title">
         <h1>Modifier mon profil</h1>
       </div>
-      <app-button
-        class="hide-on-mobile deleteAccount"
-        [style]="buttonTypeEnum.Secondary"
-        [text]="'Supprimer mon compte'"
-        [iconType]="'ico'"
-        [iconBtn]="'removeCross'"
+      <app-v3-button
+        class="hide-on-mobile"
+        [variant]="buttonTypeEnumV3.SecondaryDelete"
+        [label]="'Supprimer mon compte'"
+        [iconName]="'deleteV3'"
+        [size]="'small'"
+        [wide]="true"
         (action)="showDeleteAccountModal()"
       />
-      <app-button
+      <app-v3-icon-button
         class="hide-on-desktop"
-        [style]="buttonTypeEnum.SecondaryOnlyIcon"
-        [iconType]="'ico'"
-        [iconBtn]="'deleteAccount'"
+        [variant]="buttonTypeEnumV3.SecondaryDelete"
+        [iconName]="'deleteV3'"
         (action)="showDeleteAccountModal()"
       />
     </div>
@@ -104,22 +97,22 @@
       <div *ngIf="currentTab === tabsEnum.credentials" class="credentialsTab">
         <p class="subTitle">Email</p>
         {{ userProfile.email }}
-        <div class="buttons">
-          <app-button
-            [text]="'Changer mon email'"
-            [iconType]="'ico'"
-            [iconBtn]="'emailOutline'"
-            [style]="buttonTypeEnum.Secondary"
-            (action)="showEmailModal()"
-          />
-          <app-button
-            [text]="'Changer mon mot de passe'"
-            [iconType]="'ico'"
-            [iconBtn]="'passwordOutline'"
-            [style]="buttonTypeEnum.Secondary"
-            (action)="showPasswordModal()"
-          />
-        </div>
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Changer mon email'"
+          [iconName]="'emailV3'"
+          [size]="'small'"
+          [wide]="true"
+          (action)="showEmailModal()"
+        />
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Changer mon mot de passe'"
+          [iconName]="'lockV3'"
+          [size]="'small'"
+          [wide]="true"
+          (action)="showPasswordModal()"
+        />
       </div>
 
       <div *ngIf="currentTab === tabsEnum.employer">
@@ -209,13 +202,16 @@
 
     <!-- Footer -->
     <div *ngIf="currentTab !== tabsEnum.credentials" class="footer">
-      <app-button *ngIf="profileChanged()" [text]="'Annuler'" [iconBtn]="'close'" (action)="cancel()" />
-      <app-button
-        [text]="'Valider'"
-        [iconBtn]="'check'"
+      <app-v3-button
+        *ngIf="profileChanged()"
+        [variant]="buttonTypeEnumV3.Secondary"
+        [label]="'Annuler'"
+        (action)="cancel()"
+      />
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Primary"
+        [label]="'Valider'"
         [disabled]="!isPageValid()"
-        [style]="buttonTypeEnum.Primary"
-        [extraClass]="'svgCheck'"
         (action)="confirm()"
       />
     </div>
@@ -267,10 +263,10 @@
         </div>
 
         <div class="buttons">
-          <app-button [text]="'Annuler'" (action)="closeModal()" />
-          <app-button
-            [text]="'Valider'"
-            [style]="buttonTypeEnum.Primary"
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="closeModal()" />
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Primary"
+            [label]="'Valider'"
             [disabled]="!isPageValid()"
             (action)="confirm()"
           />
@@ -395,10 +391,10 @@
           </div>
         </div>
         <div class="buttons">
-          <app-button [text]="'Annuler'" (action)="closeModal()" />
-          <app-button
-            [text]="'Valider'"
-            [style]="buttonTypeEnum.Primary"
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="closeModal()" />
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Primary"
+            [label]="'Valider'"
             [disabled]="!isPageValid()"
             (action)="confirm()"
           />
@@ -442,10 +438,10 @@
         </div>
 
         <div class="buttons">
-          <app-button [text]="'Annuler'" (action)="closeModal()" />
-          <app-button
-            [text]="'Supprimer'"
-            [style]="buttonTypeEnum.Primary"
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="closeModal()" />
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Primary"
+            [label]="'Supprimer'"
             [disabled]="!passwordValid(oldPassword)"
             (action)="confirmDeleteAccount()"
           />
diff --git a/src/app/profile/edit/edit.component.scss b/src/app/profile/edit/edit.component.scss
index 40c53ecf8..4eccd3dc2 100644
--- a/src/app/profile/edit/edit.component.scss
+++ b/src/app/profile/edit/edit.component.scss
@@ -52,20 +52,6 @@
         cursor: pointer;
       }
     }
-
-    .deleteAccount {
-      ::ng-deep {
-        svg {
-          height: 22px;
-          width: 22px;
-          margin-right: 4px;
-        }
-        span {
-          color: $red;
-          @include font-regular-14;
-        }
-      }
-    }
   }
 
   .navigation {
@@ -112,20 +98,9 @@
     }
 
     .credentialsTab {
-      .buttons {
-        margin-top: 25px;
-        display: flex;
-        flex-wrap: wrap;
-        gap: 18px;
-        // V3REMOVE
-        ::ng-deep {
-          svg {
-            height: 22px;
-            width: 22px;
-            margin-right: 4px;
-          }
-        }
-      }
+      display: flex;
+      flex-direction: column;
+      gap: 16px;
     }
     .credentialsTab ::ng-deep .secondary {
       width: 220px !important;
diff --git a/src/app/profile/edit/edit.component.ts b/src/app/profile/edit/edit.component.ts
index 8dd7921ad..5097bccb9 100644
--- a/src/app/profile/edit/edit.component.ts
+++ b/src/app/profile/edit/edit.component.ts
@@ -10,7 +10,7 @@ import { User } from '../../models/user.model';
 import { AuthService } from '../../services/auth.service';
 import { NotificationService } from '../../services/notification.service';
 import { ButtonType } from '../../shared/components/button/buttonType.enum';
-import { ButtonTypeV3 } from '../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { CustomRegExp } from '../../utils/CustomRegExp';
 import { ProfileService } from '../services/profile.service';
 
@@ -34,7 +34,7 @@ enum showPasswordEnum {
 })
 export class EditComponent implements OnInit {
   public tabsEnum = tabsEnum;
-  public buttonTypeEnum = ButtonType; // V3REMOVE
+  public buttonTypeEnum = ButtonType;
   public buttonTypeEnumV3 = ButtonTypeV3;
   public currentTab: tabsEnum = tabsEnum.details;
 
diff --git a/src/app/profile/personal-offer-edition/personal-offer-edition.component.html b/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
index 9645fe165..bb872eb6f 100644
--- a/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
+++ b/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
@@ -1,13 +1,6 @@
 <div class="content-container full-screen">
   <div class="edit-personal-offer">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
     <div class="header">
       <div class="title">
         <div>
@@ -15,19 +8,19 @@
           <h2 *ngIf="structureName" class="overtitle">{{ structureName }}</h2>
         </div>
       </div>
-      <app-button
-        class="hide-on-mobile deleteOffer"
-        [style]="buttonTypeEnum.Secondary"
-        [text]="'Supprimer mon offre'"
-        [iconType]="'ico'"
-        [iconBtn]="'removeCross'"
+      <app-v3-button
+        class="hide-on-mobile"
+        [variant]="buttonTypeEnumV3.SecondaryDelete"
+        [label]="'Supprimer mon offre de service'"
+        [iconName]="'deleteV3'"
+        [wide]="true"
+        [size]="'small'"
         (action)="showDeleteOfferModal()"
       />
-      <app-button
+      <app-v3-icon-button
         class="hide-on-desktop"
-        [style]="buttonTypeEnum.SecondaryOnlyIcon"
-        [iconType]="'ico'"
-        [iconBtn]="'deleteAccount'"
+        [variant]="buttonTypeEnumV3.SecondaryDelete"
+        [iconName]="'deleteV3'"
         (action)="showDeleteOfferModal()"
       />
     </div>
@@ -71,11 +64,15 @@
 
     <!-- Footer -->
     <div class="footer">
-      <app-button [text]="'Annuler'" [iconBtn]="'close'" [disabled]="personalOfferForm?.pristine" (action)="cancel()" />
-      <app-button
-        [text]="'Valider'"
-        [iconBtn]="'check'"
-        [style]="buttonTypeEnum.Primary"
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Secondary"
+        [label]="'Annuler'"
+        [disabled]="personalOfferForm?.pristine"
+        (action)="cancel()"
+      />
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Primary"
+        [label]="'Valider'"
         [disabled]="personalOfferForm?.pristine"
         (action)="confirm()"
       />
@@ -102,8 +99,8 @@
         </p>
 
         <div class="buttons">
-          <app-button [text]="'Annuler'" (action)="closeModal()" />
-          <app-button [text]="'Supprimer'" [style]="buttonTypeEnum.Primary" (action)="confirmDeleteOffer()" />
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="closeModal()" />
+          <app-v3-button [variant]="buttonTypeEnumV3.Primary" [label]="'Supprimer'" (action)="confirmDeleteOffer()" />
         </div>
       </div>
     </div>
diff --git a/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss b/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss
index 0994f49fd..4a5bb4c27 100644
--- a/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss
+++ b/src/app/profile/personal-offer-edition/personal-offer-edition.component.scss
@@ -59,20 +59,6 @@
         cursor: pointer;
       }
     }
-
-    .deleteOffer {
-      ::ng-deep {
-        svg {
-          height: 22px;
-          width: 22px;
-          margin-right: 4px;
-        }
-        span {
-          color: $red;
-          @include font-regular-14;
-        }
-      }
-    }
   }
 
   .navigation {
diff --git a/src/app/profile/personal-offer-edition/personal-offer-edition.component.ts b/src/app/profile/personal-offer-edition/personal-offer-edition.component.ts
index 953f2db24..131e20914 100644
--- a/src/app/profile/personal-offer-edition/personal-offer-edition.component.ts
+++ b/src/app/profile/personal-offer-edition/personal-offer-edition.component.ts
@@ -3,8 +3,7 @@ import { UntypedFormControl, UntypedFormGroup } from '@angular/forms';
 import { ActivatedRoute, Data, Router } from '@angular/router';
 import { CategoriesToggle } from '../../models/categoriesToggle.model';
 import { NotificationService } from '../../services/notification.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
-import { ButtonTypeV3 } from '../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { CategoryEnum } from '../../shared/enum/category.enum';
 import { Category } from '../../structure-list/models/category.model';
 import { SearchService } from '../../structure-list/services/search.service';
@@ -22,7 +21,6 @@ enum tabsEnum {
   styleUrls: ['./personal-offer-edition.component.scss'],
 })
 export class PersonalOfferEditionComponent implements OnInit {
-  public buttonTypeEnum = ButtonType; // V3REMOVE
   public buttonTypeEnumV3 = ButtonTypeV3;
   public tabsEnum = tabsEnum;
   public currentTab: tabsEnum = tabsEnum.onlineProcedures;
diff --git a/src/app/profile/profile-structure/personal-offer/personal-offer.component.html b/src/app/profile/profile-structure/personal-offer/personal-offer.component.html
index fc6cefa43..84ee35e9e 100644
--- a/src/app/profile/profile-structure/personal-offer/personal-offer.component.html
+++ b/src/app/profile/profile-structure/personal-offer/personal-offer.component.html
@@ -1,23 +1,25 @@
 <div *ngIf="this.personalOffer.categoriesDisplay" class="container">
   <div class="header">
     <h2>mon offre de service</h2>
-    <app-button
+    <app-v3-button
       *ngIf="!isPublic"
-      class="hide-on-mobile"
-      tabindex="none"
-      [iconBtn]="'edit'"
-      [text]="'Modifier mon offre'"
-      [style]="buttonTypeEnum.SecondaryWide"
       [state]="{ structureName: this.structureName }"
+      class="hide-on-mobile"
       routerLink="./edit-personal-offer/{{ this.personalOffer._id }}"
+      tabindex="none"
+      [variant]="buttonTypeEnumV3.Secondary"
+      [label]="'Modifier mon offre de service'"
+      [iconName]="'editV3'"
+      [size]="'small'"
+      [wide]="true"
     />
-    <app-button
+    <app-v3-icon-button
       *ngIf="!isPublic"
       class="hide-on-desktop"
-      tabindex="none"
-      [iconBtn]="'edit'"
-      [style]="buttonTypeEnum.SecondaryOnlyIcon"
       routerLink="./edit-personal-offer/{{ this.personalOffer._id }}"
+      tabindex="none"
+      [variant]="buttonTypeEnumV3.Secondary"
+      [iconName]="'editV3'"
     />
   </div>
   <div class="content">
diff --git a/src/app/profile/profile-structure/personal-offer/personal-offer.component.ts b/src/app/profile/profile-structure/personal-offer/personal-offer.component.ts
index c98d015f2..5414225e5 100644
--- a/src/app/profile/profile-structure/personal-offer/personal-offer.component.ts
+++ b/src/app/profile/profile-structure/personal-offer/personal-offer.component.ts
@@ -1,5 +1,5 @@
 import { Component, Input } from '@angular/core';
-import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { PersonalOffer } from './../../../models/personalOffer.model';
 
 @Component({
@@ -11,5 +11,6 @@ export class PersonalOfferComponent {
   @Input() public personalOffer: PersonalOffer;
   @Input() public isPublic: boolean;
   @Input() public structureName?: string;
-  public buttonTypeEnum = ButtonType;
+
+  public buttonTypeEnumV3 = ButtonTypeV3;
 }
diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html
index 44aa52fed..16094a7c0 100644
--- a/src/app/profile/profile-structure/profile-structure.component.html
+++ b/src/app/profile/profile-structure/profile-structure.component.html
@@ -20,12 +20,12 @@
         </div>
       </div>
       <div class="right">
-        <app-button
+        <app-v3-button
           *ngIf="isPending && !isPublic"
           class="hide-on-mobile"
-          [iconType]="'form'"
-          [text]="'Annuler la demande'"
-          [style]="buttonTypeEnum.Secondary"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Annuler la demande'"
+          [size]="'small'"
           (click)="handleCancelJoin(structure._id); $event.stopPropagation()"
         />
       </div>
@@ -36,47 +36,46 @@
       <div class="sectionHeader">
         <p class="sectionTitle">informations</p>
         <div class="sectionButtons">
-          <app-button
+          <app-v3-button
             class="hide-on-mobile"
             routerLink="./"
+            [routerLinkActive]="'active'"
             tabindex="none"
-            [iconBtn]="'eyePassword'"
-            [iconType]="'form'"
-            [text]="'Voir la structure'"
-            [style]="buttonTypeEnum.SecondaryWide"
+            [variant]="buttonTypeEnumV3.Secondary"
+            [label]="'Voir la structure'"
+            [iconFolder]="'form'"
+            [iconName]="'eyeV3'"
+            [size]="'small'"
             [queryParams]="{ id: structure._id }"
-            [routerLinkActive]="'active'"
           />
-          <app-button
+          <app-v3-icon-button
             class="hide-on-desktop"
             routerLink="./"
+            [routerLinkActive]="'active'"
             tabindex="none"
-            [iconBtn]="'eyePassword'"
-            [iconType]="'form'"
-            [style]="buttonTypeEnum.SecondaryOnlyIcon"
+            [variant]="buttonTypeEnumV3.Secondary"
+            [iconFolder]="'form'"
+            [iconName]="'eyeV3'"
             [queryParams]="{ id: structure._id }"
-            [routerLinkActive]="'active'"
           />
-          <app-button
+          <app-v3-button
             *ngIf="!isPublic && !isPending"
             class="hide-on-mobile"
-            tabindex="none"
-            [ngClass]="{ warning: !isValid() }"
-            [iconBtn]="'edit'"
-            [text]="'Modifier la structure'"
-            [style]="buttonTypeEnum.SecondaryWide"
             routerLink="./edit-structure/{{ structure._id }}"
             [routerLinkActive]="'active'"
+            tabindex="none"
+            [variant]="isValid() ? buttonTypeEnumV3.PrimaryBlack : buttonTypeEnumV3.PrimaryWarning"
+            [label]="'Modifier la structure'"
+            [size]="'small'"
           />
-          <app-button
+          <app-v3-icon-button
             *ngIf="!isPublic && !isPending"
             class="hide-on-desktop"
-            tabindex="none"
-            [ngClass]="{ warning: !isValid() }"
-            [iconBtn]="'edit'"
-            [style]="buttonTypeEnum.SecondaryOnlyIcon"
             routerLink="./edit-structure/{{ structure._id }}"
             [routerLinkActive]="'active'"
+            tabindex="none"
+            [variant]="isValid() ? buttonTypeEnumV3.PrimaryBlack : buttonTypeEnumV3.PrimaryWarning"
+            [iconName]="'editV3'"
           />
         </div>
       </div>
@@ -107,22 +106,25 @@
     <div *ngIf="membersWithJobWithPO.length > 0" class="section">
       <div class="sectionHeader">
         <p class="sectionTitle">Accompagnant·es numériques</p>
-        <app-button
+        <app-v3-button
           *ngIf="!isPublic && !isPending"
           class="hide-on-mobile"
-          [iconBtn]="'edit'"
-          [text]="'Gérer les membres'"
-          [style]="buttonTypeEnum.SecondaryWide"
           routerLink="./structure-members-management/{{ structure._id }}"
           [routerLinkActive]="'active'"
+          [variant]="buttonTypeEnumV3.PrimaryBlack"
+          [label]="'Gérer les membres'"
+          [iconName]="'editV3'"
+          [size]="'small'"
+          [wide]="true"
         />
-        <app-button
+        <app-v3-icon-button
           *ngIf="!isPublic && !isPending"
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
           routerLink="./structure-members-management/{{ structure._id }}"
           [routerLinkActive]="'active'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
+          [queryParams]="{ id: structure._id }"
         />
       </div>
       <div class="sectionContent members">
@@ -133,11 +135,13 @@
       *ngIf="!isPublic && !this.personalOffer && userProfile.job?.hasPersonalOffer && !isPending"
       class="call-to-action"
     >
-      <app-button
-        [iconBtn]="'add'"
-        [text]="'Ajouter une offre'"
-        [style]="buttonTypeEnum.SecondaryUltraWide"
+      <app-v3-button
         [routerLinkActive]="'active'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="'Ajouter une offre'"
+        [iconName]="'addV3'"
+        [size]="'small'"
+        [wide]="true"
         (click)="goToOffer()"
       />
     </div>
diff --git a/src/app/profile/profile-structure/profile-structure.component.ts b/src/app/profile/profile-structure/profile-structure.component.ts
index 1bf25dede..6051f6aa9 100644
--- a/src/app/profile/profile-structure/profile-structure.component.ts
+++ b/src/app/profile/profile-structure/profile-structure.component.ts
@@ -5,7 +5,7 @@ import { DateTime } from 'luxon';
 import { structureFormStep } from '../../form/form-view/structure-form/structureFormStep.enum';
 import { Structure } from '../../models/structure.model';
 import { StructureWithOwners } from '../../models/structureWithOwners.model';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { CollapseType } from '../../shared/components/v3/collapse/collapse.type';
 import { SearchService } from '../../structure-list/services/search.service';
 import { formUtils } from '../../utils/formUtils';
@@ -29,7 +29,8 @@ export class ProfileStructureComponent implements OnInit {
 
   public membersWithJobWithPO: User[] = [];
   public structureForm: FormGroup;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
+  public showDetails = false;
   public addMemberModalOpened = false;
   public structure: Structure;
   public personalOffer: PersonalOffer;
diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html
index c7597bd11..da04b1609 100644
--- a/src/app/profile/profile.component.html
+++ b/src/app/profile/profile.component.html
@@ -1,47 +1,43 @@
 <div *ngIf="userProfile" class="content-container full-screen">
   <div class="goBack">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
   </div>
 
   <section>
     <div class="header">
       <h1>Profil</h1>
-      <app-button
+      <app-v3-button
         *ngIf="isPublic && userProfile.withAppointment"
         class="hide-on-mobile rdv"
         tabindex="none"
         [routerLink]="['/orientation']"
         [state]="{ rdvUser: userProfile }"
-        [iconBtn]="'rdv'"
-        [text]="'Demander un RDV'"
-        [style]="buttonTypeEnum.SecondaryWide"
         [routerLinkActive]="'active'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="'Demander un RDV'"
+        [size]="'small'"
+        [wide]="true"
       />
-      <app-button
+      <app-v3-button
         *ngIf="!isPublic"
         class="hide-on-mobile"
-        routerLink="/profile/edit"
         tabindex="none"
-        [iconBtn]="'edit'"
-        [text]="'Modifier mon profil'"
-        [style]="buttonTypeEnum.SecondaryWide"
+        routerLink="/profile/edit"
         [routerLinkActive]="'active'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="'Modifier mon profil'"
+        [iconName]="'editV3'"
+        [size]="'small'"
+        [wide]="true"
       />
-      <app-button
+      <app-v3-icon-button
         *ngIf="!isPublic"
         class="hide-on-desktop"
-        routerLink="/profile/edit"
         tabindex="none"
-        [iconBtn]="'edit'"
-        [style]="buttonTypeEnum.SecondaryOnlyIcon"
+        routerLink="/profile/edit"
         [routerLinkActive]="'active'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [iconName]="'editV3'"
       />
     </div>
     <div class="profile">
@@ -62,25 +58,28 @@
           </div>
           <div *ngIf="isPublic && userProfile.withAppointment" class="row">
             <app-svg-icon [iconClass]="'icon-20'" [type]="'tags'" [icon]="'tagRdv'" />
-            <div>Render-vous</div>
+            <div>Rendez-vous</div>
           </div>
         </div>
 
         <div *ngIf="userProfile.description" class="description">{{ userProfile.description }}</div>
       </div>
     </div>
-    <app-button
+    <app-v3-button
       *ngIf="!isPublic && !userProfile.description"
-      routerLink="/profile/edit"
+      class="centerButton"
       tabindex="none"
-      class="addDescription"
-      [iconBtn]="'edit'"
-      [text]="'Ajouter une description'"
-      [style]="buttonTypeEnum.SecondaryUltraWide"
-      [state]="{ data: 'description' }"
+      routerLink="/profile/edit"
       [routerLinkActive]="'active'"
+      [state]="{ data: 'description' }"
+      [variant]="buttonTypeEnumV3.Secondary"
+      [label]="'Ajouter une description'"
+      [iconName]="'addV3'"
+      [size]="'small'"
+      [wide]="true"
     />
   </section>
+
   <!-- Private profile with pending structures -->
   <section *ngIf="!isPublic">
     <div class="header">
@@ -88,24 +87,26 @@
         <ng-template ngPluralCase="1">Structure</ng-template>
         <ng-template ngPluralCase="other">Structures</ng-template>
       </h1>
-      <app-button
+      <app-v3-button
         *ngIf="userProfile.structuresLink.length > 0"
         class="hide-on-mobile"
         routerLink="./structures-management"
         tabindex="none"
-        [iconBtn]="'edit'"
-        [text]="userProfile.structuresLink.length > 1 ? 'Gérer mes structures' : 'Gérer ma structure'"
-        [style]="buttonTypeEnum.SecondaryWide"
         [routerLinkActive]="'active'"
+        [iconName]="'editV3'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="userProfile.structuresLink.length > 1 ? 'Gérer mes structures' : 'Gérer ma structure'"
+        [size]="'small'"
+        [wide]="true"
       />
-      <app-button
+      <app-v3-icon-button
         *ngIf="userProfile.structuresLink.length > 0"
         class="hide-on-desktop"
-        routerLink="./structures-management"
         tabindex="none"
-        [iconBtn]="'edit'"
-        [style]="buttonTypeEnum.SecondaryOnlyIcon"
+        routerLink="./structures-management"
         [routerLinkActive]="'active'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [iconName]="'editV3'"
       />
     </div>
     <div
@@ -129,15 +130,18 @@
         [isPublic]="this.isPublic"
       />
     </div>
-    <app-button
-      class="addStructure"
-      routerLink="/form/structure"
+    <app-v3-button
+      class="centerButton"
       tabindex="none"
-      [style]="buttonTypeEnum.SecondaryUltraWide"
-      [iconBtn]="'add'"
-      [text]="'Ajouter une structure'"
+      routerLink="/form/structure"
+      [variant]="buttonTypeEnumV3.Secondary"
+      [label]="'Ajouter une structure'"
+      [iconName]="'addV3'"
+      [size]="'small'"
+      [wide]="true"
     />
   </section>
+
   <!-- Public profile -->
   <section *ngIf="isPublic && userProfile.structuresLink.length > 0">
     <div class="header">
diff --git a/src/app/profile/profile.component.scss b/src/app/profile/profile.component.scss
index 5ba3c25a7..ab18037b4 100644
--- a/src/app/profile/profile.component.scss
+++ b/src/app/profile/profile.component.scss
@@ -118,7 +118,7 @@ section {
   width: 100%;
 }
 
-.addStructure {
+.centerButton {
   margin: auto;
 }
 
diff --git a/src/app/profile/profile.component.ts b/src/app/profile/profile.component.ts
index aaa2268fe..bd5e841d8 100644
--- a/src/app/profile/profile.component.ts
+++ b/src/app/profile/profile.component.ts
@@ -8,8 +8,7 @@ import { StructureWithOwners } from '../models/structureWithOwners.model';
 import { User } from '../models/user.model';
 import { NotificationService } from '../services/notification.service';
 import { StructureService } from '../services/structure.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
-import { ButtonTypeV3 } from '../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 import { Utils } from '../utils/utils';
 import { UserService } from './../services/user.service';
 import { ProfileService } from './services/profile.service';
@@ -23,7 +22,6 @@ export class ProfileComponent implements OnInit {
   public userProfile: User;
   public structures: StructureWithOwners[] = [];
   public pendingStructures: StructureWithOwners[] = [];
-  public buttonTypeEnum = ButtonType; // V3REMOVE
   public buttonTypeEnumV3 = ButtonTypeV3;
   public isPublic: boolean;
 
diff --git a/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.html b/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.html
index 03498c073..041109e12 100644
--- a/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.html
+++ b/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.html
@@ -18,11 +18,11 @@
         </div>
       </div>
       <div class="buttons" fxLayout="row" fxLayoutAlign="space-between center">
-        <app-button [text]="'Annuler'" (action)="closeModal(false)" />
-        <app-button
-          [text]="'Ajouter'"
+        <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="closeModal(false)" />
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="'Ajouter'"
           [disabled]="formAddAccount.invalid"
-          [style]="buttonTypeEnum.Primary"
           (action)="addOwner()"
         />
       </div>
diff --git a/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts b/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
index decb4f2ae..362aa8d8c 100644
--- a/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
+++ b/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
@@ -4,7 +4,7 @@ import { StructureWithOwners } from '../../models/structureWithOwners.model';
 import { TempUser } from '../../models/temp-user.model';
 import { NotificationService } from '../../services/notification.service';
 import { StructureService } from '../../services/structure.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { CustomRegExp } from '../../utils/CustomRegExp';
 
 @Component({
@@ -16,7 +16,7 @@ export class StructureAddMemberModalComponent implements OnInit {
   @Input() public opened: boolean;
   @Input() public structure: StructureWithOwners;
   @Output() closed = new EventEmitter();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public formAddAccount: FormGroup;
   public ownerAlreadyLinked = false;
 
diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
index 21f49a3b5..3c11ba55e 100644
--- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
+++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
@@ -1,13 +1,6 @@
 <div class="container">
   <div class="scroll">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
     <div class="header">
       <h1>
         {{ isUpdateStructure ? 'Mettre à jour la structure' : 'Modifier la structure' }}
@@ -24,17 +17,18 @@
     <section class="nameAndAddress">
       <div class="sectionHeader">
         <p>Nom et adresse</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.SecondaryWide"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureNameAndAddress)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureNameAndAddress)"
         />
       </div>
@@ -57,17 +51,18 @@
     <section class="structureType" [ngClass]="{ warningBorder: !isFieldValid('structureType') }">
       <div class="sectionHeader">
         <p>Type de structure</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.SecondaryWide"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureType)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureType)"
         />
       </div>
@@ -83,17 +78,18 @@
     <section class="phoneAndMail" [ngClass]="{ warningBorder: requiredPhoneOrMailError() }">
       <div class="sectionHeader">
         <p>Téléphone et email</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureContact)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureContact)"
         />
       </div>
@@ -117,17 +113,18 @@
     <section class="description">
       <div class="sectionHeader">
         <p>Présentation de la structure</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureDescription)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureDescription)"
         />
       </div>
@@ -140,17 +137,18 @@
     <section class="accessModality" [ngClass]="{ warningBorder: !isFieldValid('accessModality', 'categories') }">
       <div class="sectionHeader">
         <p>Modalité d'accueil</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureAccessModality)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureAccessModality)"
         />
       </div>
@@ -169,17 +167,18 @@
     <section class="hours">
       <div class="sectionHeader">
         <p>Horaires</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureHours)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureHours)"
         />
       </div>
@@ -207,17 +206,18 @@
     <section class="PMR" [ngClass]="{ warningBorder: structure.pmrAccess === null }">
       <div class="sectionHeader">
         <p>Accessibilité pour les personnes à mobilité réduite</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structurePmr)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structurePmr)"
         />
       </div>
@@ -232,17 +232,18 @@
     <section class="webAndSocialNetworks">
       <div class="sectionHeader">
         <p>Présence sur internet</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureWebAndSocialNetwork)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureWebAndSocialNetwork)"
         />
       </div>
@@ -292,17 +293,18 @@
     >
       <div class="sectionHeader">
         <p>Public admis</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structurePublicTarget)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structurePublicTarget)"
         />
       </div>
@@ -327,17 +329,18 @@
     <section class="publics">
       <div class="sectionHeader">
         <p>Public spécifique admis</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structurePublicTargetOptional)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structurePublicTargetOptional)"
         />
       </div>
@@ -409,17 +412,18 @@
     <section class="proceduresAccompaniment">
       <div class="sectionHeader">
         <p>Démarches en ligne</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompaniment)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompaniment)"
         />
       </div>
@@ -436,17 +440,18 @@
     <section class="proceduresAccompaniment">
       <div class="sectionHeader">
         <p>Autres démarches proposées</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompanimentOther)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompanimentOther)"
         />
       </div>
@@ -461,17 +466,18 @@
     <section class="learning">
       <div class="sectionHeader">
         <p>Compétences numériques</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureTrainingType)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureTrainingType)"
         />
       </div>
@@ -503,8 +509,8 @@
               <div
                 class="collapseHeader"
                 tabindex="0"
-                (click)="toogleAdvancedSkills()"
-                (keyup.enter)="toogleAdvancedSkills()"
+                (click)="toggleAdvancedSkills()"
+                (keyup.enter)="toggleAdvancedSkills()"
               >
                 <div class="titleCollapse">Culture numérique</div>
                 <div class="logo">
@@ -534,17 +540,18 @@
     >
       <div class="sectionHeader">
         <p>Gratuité des ateliers</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureTrainingPrice)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureTrainingPrice)"
         />
       </div>
@@ -557,17 +564,18 @@
     <section class="wifi">
       <div class="sectionHeader">
         <p>Wifi</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureWifi)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureWifi)"
         />
       </div>
@@ -581,17 +589,18 @@
     <section class="equipements">
       <div class="sectionHeader">
         <p>Matériel mis à disposition</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureEquipments)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureEquipments)"
         />
       </div>
@@ -615,17 +624,18 @@
     <section class="labels">
       <div class="sectionHeader">
         <p>Labelisations proposées</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureLabels)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureLabels)"
         />
       </div>
@@ -640,17 +650,18 @@
     <section class="solidarityMaterial">
       <div class="sectionHeader">
         <p>Vente de matériel à prix solidaire</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureSolidarityMaterial)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureSolidarityMaterial)"
         />
       </div>
@@ -665,17 +676,18 @@
     <section class="covid">
       <div class="sectionHeader">
         <p>Informations spécifiques à la période COVID</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureCovidInfo)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureCovidInfo)"
         />
       </div>
@@ -688,17 +700,18 @@
     <section class="dataShare">
       <div class="sectionHeader">
         <p>Partage de données sur data.grandlyon.com</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToEdit(structureFormStep.structureConsent)"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToEdit(structureFormStep.structureConsent)"
         />
       </div>
@@ -710,17 +723,18 @@
     <section class="members">
       <div class="sectionHeader">
         <p>Gérer les membres de la structure</p>
-        <app-button
+        <app-v3-button
           class="hide-on-mobile"
-          [text]="'Modifier'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'editButton'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Modifier'"
+          [iconName]="'editV3'"
+          [size]="'small'"
           (action)="goToManageMembers()"
         />
-        <app-button
+        <app-v3-icon-button
           class="hide-on-desktop"
-          [iconBtn]="'edit'"
-          [style]="buttonTypeEnum.SecondaryOnlyIcon"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [iconName]="'editV3'"
           (action)="goToManageMembers()"
         />
       </div>
@@ -743,19 +757,19 @@
         Vous pourrez valider après avoir renseigné l’intégralité des champs obligatoires.
       </p>
       <div class="buttons">
-        <app-button [text]="'Retour'" [iconBtn]="'close'" (click)="goBack()" />
-        <app-button
-          [text]="'Valider'"
-          [iconBtn]="'check'"
-          [style]="buttonTypeEnum.Primary"
+        <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Retour'" [size]="'small'" (action)="goBack()" />
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="'Valider'"
           [disabled]="!isFormValid()"
-          (click)="updateStructureUpdateDate()"
+          [size]="'small'"
+          (action)="updateStructureUpdateDate()"
         />
       </div>
     </ng-container>
     <ng-container *ngIf="!isUpdateStructure">
       <div class="buttons">
-        <app-button [text]="'Retour'" (click)="goBack()" />
+        <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Retour'" [size]="'small'" (action)="goBack()" />
       </div>
     </ng-container>
   </div>
diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts b/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts
index 524505e1c..ab790a642 100644
--- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts
+++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.ts
@@ -8,8 +8,7 @@ import { Owner } from '../../models/owner.model';
 import { Structure } from '../../models/structure.model';
 import { NotificationService } from '../../services/notification.service';
 import { StructureService } from '../../services/structure.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
-import { ButtonTypeV3 } from '../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { Demarches } from '../../shared/enum/demarches.enum';
 import { AccessModality } from '../../structure-list/enum/access-modality.enum';
 import { Equipment } from '../../structure-list/enum/equipment.enum';
@@ -37,7 +36,6 @@ export class StructureEditionSummaryComponent implements OnInit {
   public members: Owner[];
   public summary: IStructureSummary[] = new formUtils().structureSummary;
   public structureFormStep = structureFormStep;
-  public buttonTypeEnum = ButtonType; // V3REMOVE
   public buttonTypeEnumV3 = ButtonTypeV3;
   public equipmentEnum = Equipment;
 
@@ -163,7 +161,7 @@ export class StructureEditionSummaryComponent implements OnInit {
     this.showBaseSkills = !this.showBaseSkills;
   }
 
-  public toogleAdvancedSkills(): void {
+  public toggleAdvancedSkills(): void {
     this.showAdvancedSkills = !this.showAdvancedSkills;
   }
 
diff --git a/src/app/profile/structure-members-management/structure-members-management.component.html b/src/app/profile/structure-members-management/structure-members-management.component.html
index d701eebe7..fba996fad 100644
--- a/src/app/profile/structure-members-management/structure-members-management.component.html
+++ b/src/app/profile/structure-members-management/structure-members-management.component.html
@@ -1,21 +1,17 @@
 <div class="container members-management">
-  <app-v3-button
-    [label]="'Retour'"
-    [variant]="buttonTypeEnumV3.Tertiary"
-    [iconFolder]="'ico'"
-    [iconName]="'arrowBackSmall'"
-    [size]="'large'"
-    (action)="goBack()"
-  />
+  <app-go-back [active]="true" (action)="goBack()" />
   <div class="headerContainer">
     <div class="header">
       <h1>Gérer les membres de</h1>
       <h2>{{ structure.structureName }}</h2>
     </div>
-    <app-button
+    <app-v3-button
       tabindex="0"
-      [style]="buttonTypeEnum.Secondary"
-      [text]="'Ajouter un membre'"
+      [variant]="buttonTypeEnumV3.PrimaryBlack"
+      [label]="'Ajouter un membre'"
+      [iconName]="'addV3'"
+      [size]="'small'"
+      [wide]="true"
       (click)="addMemberModalOpened = true"
     />
   </div>
@@ -39,12 +35,12 @@
           <p *ngIf="displayJobEmployer(member)" class="job">{{ displayJobEmployer(member) }}</p>
         </div>
       </div>
-      <app-button
+      <app-v3-button
         *ngIf="currentProfile._id !== member._id"
-        class="button-member"
         tabindex="0"
-        [style]="buttonTypeEnum.Secondary"
-        [text]="'Exclure ce membre'"
+        [variant]="buttonTypeEnumV3.SecondaryDelete"
+        [label]="'Exclure ce membre'"
+        [size]="'small'"
         (click)="memberToExclude = member; excludeModalOpened = true"
       />
     </div>
@@ -62,10 +58,11 @@
       </div>
       <div class="pendingContainer">
         <p class="text">Demande de rattachement envoyée le {{ member.updatedAt | date : 'dd/MM/YYYY' }}</p>
-        <app-button
+        <app-v3-button
           tabindex="0"
-          [style]="buttonTypeEnum.Secondary"
-          [text]="'Annuler la demande'"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Annuler la demande'"
+          [size]="'small'"
           (click)="tempUserToCancel = member; cancelAddTempUserModalOpened = true"
         />
       </div>
diff --git a/src/app/profile/structure-members-management/structure-members-management.component.scss b/src/app/profile/structure-members-management/structure-members-management.component.scss
index 00a4b5cd4..8bc42d856 100644
--- a/src/app/profile/structure-members-management/structure-members-management.component.scss
+++ b/src/app/profile/structure-members-management/structure-members-management.component.scss
@@ -109,11 +109,6 @@
     width: 184px !important;
     height: 24px !important;
   }
-  .button-member {
-    ::ng-deep .btn-regular.secondary .text {
-      color: $red !important;
-    }
-  }
   ::ng-deep .modalBackground p {
     white-space: pre-wrap;
   }
diff --git a/src/app/profile/structure-members-management/structure-members-management.component.ts b/src/app/profile/structure-members-management/structure-members-management.component.ts
index 343ddce11..a07079a5f 100644
--- a/src/app/profile/structure-members-management/structure-members-management.component.ts
+++ b/src/app/profile/structure-members-management/structure-members-management.component.ts
@@ -8,8 +8,7 @@ import { TempUser } from '../../models/temp-user.model';
 import { User } from '../../models/user.model';
 import { NotificationService } from '../../services/notification.service';
 import { StructureService } from '../../services/structure.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
-import { ButtonTypeV3 } from '../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { Utils } from '../../utils/utils';
 import { ProfileService } from '../services/profile.service';
 
@@ -27,7 +26,6 @@ export class StructureMembersManagementComponent implements OnInit {
   public addMemberModalOpened = false;
   public excludeModalOpened = false;
   public cancelAddTempUserModalOpened = false;
-  public buttonTypeEnum = ButtonType; // V3REMOVE
   public buttonTypeEnumV3 = ButtonTypeV3;
   public isLoading = true;
   public currentProfile: User;
diff --git a/src/app/profile/structures-management/structures-management.component.html b/src/app/profile/structures-management/structures-management.component.html
index 3c05d4467..069988190 100644
--- a/src/app/profile/structures-management/structures-management.component.html
+++ b/src/app/profile/structures-management/structures-management.component.html
@@ -1,24 +1,19 @@
 <div class="content-container full-screen">
   <div class="container">
-    <app-v3-button
-      [label]="'Retour'"
-      [variant]="buttonTypeEnumV3.Tertiary"
-      [iconFolder]="'ico'"
-      [iconName]="'arrowBackSmall'"
-      [size]="'large'"
-      (action)="goBack()"
-    />
+    <app-go-back [active]="true" (action)="goBack()" />
     <div class="header">
       <h1 [ngPlural]="structures.length">
         <ng-template ngPluralCase="1">Gestion des structures</ng-template>
         <ng-template ngPluralCase="other">Gérer mes structures</ng-template>
       </h1>
-      <app-button
+      <app-v3-button
         routerLink="/form/structure"
         tabindex="0"
-        [style]="buttonTypeEnum.SecondaryWide"
-        [iconBtn]="'add'"
-        [text]="'Ajouter une structure'"
+        [variant]="buttonTypeEnumV3.PrimaryBlack"
+        [label]="'Ajouter une structure'"
+        [iconName]="'addV3'"
+        [size]="'small'"
+        [wide]="true"
       />
     </div>
     <div *ngIf="structures" class="structuresList">
@@ -45,23 +40,24 @@
           </div>
         </div>
         <div class="buttons">
-          <app-button
-            [text]="'Quitter la structure'"
-            [style]="buttonTypeEnum.SecondaryWide"
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Secondary"
+            [label]="'Quitter la structure'"
+            [size]="'small'"
             (click)="selectedStructure = elt.structure; leaveModalOpened = true"
           />
-          <app-button
+          <app-v3-button
             *ngIf="!isBeingDeleted(elt.structure)"
-            class="deleteAction"
-            [text]="'Supprimer la structure'"
-            [style]="buttonTypeEnum.SecondaryWide"
+            [variant]="buttonTypeEnumV3.SecondaryDelete"
+            [label]="'Supprimer la structure'"
+            [size]="'small'"
             (click)="selectedStructure = elt.structure; deleteModalOpened = true"
           />
-          <app-button
+          <app-v3-button
             *ngIf="isBeingDeleted(elt.structure)"
-            class="deleteAction"
-            [text]="'Annuler la suppression'"
-            [style]="buttonTypeEnum.SecondaryWide"
+            [variant]="buttonTypeEnumV3.Primary"
+            [label]="'Annuler suppression'"
+            [size]="'small'"
             (click)="selectedStructure = elt.structure; cancelDeleteModalOpened = true"
           />
         </div>
diff --git a/src/app/profile/structures-management/structures-management.component.scss b/src/app/profile/structures-management/structures-management.component.scss
index 078da9014..7e7730c26 100644
--- a/src/app/profile/structures-management/structures-management.component.scss
+++ b/src/app/profile/structures-management/structures-management.component.scss
@@ -65,9 +65,6 @@
         @media #{$phone} {
           max-width: initial;
         }
-        app-button.deleteAction > ::ng-deep button > div {
-          color: $red;
-        }
       }
     }
   }
diff --git a/src/app/profile/structures-management/structures-management.component.ts b/src/app/profile/structures-management/structures-management.component.ts
index 772d26969..082d32258 100644
--- a/src/app/profile/structures-management/structures-management.component.ts
+++ b/src/app/profile/structures-management/structures-management.component.ts
@@ -7,8 +7,7 @@ import { StructureWithOwners } from '../../models/structureWithOwners.model';
 import { User } from '../../models/user.model';
 import { NotificationService } from '../../services/notification.service';
 import { StructureService } from '../../services/structure.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
-import { ButtonTypeV3 } from '../../shared/components/v3/button/button.type';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { ProfileService } from '../services/profile.service';
 
 @Component({
@@ -21,7 +20,6 @@ export class StructuresManagementComponent implements OnInit {
   public structures: StructureWithOwners[] = [];
   public selectedStructure: Structure;
   public deleteInProgress: boolean;
-  public buttonTypeEnum = ButtonType; // V3REMOVE
   public buttonTypeEnumV3 = ButtonTypeV3;
   public leaveModalOpened = false;
   public deleteModalOpened = false;
diff --git a/src/app/reset-password/reset-password.component.html b/src/app/reset-password/reset-password.component.html
index 96bf02a65..691bc0a6c 100644
--- a/src/app/reset-password/reset-password.component.html
+++ b/src/app/reset-password/reset-password.component.html
@@ -22,18 +22,12 @@
           </div>
         </div>
         <div class="footer" fxLayout="row" fxLayoutAlign="space-between center">
-          <app-button
-            [text]="'Annuler'"
-            [style]="buttonTypeEnum.Secondary"
-            [extraClass]="'fullButton'"
-            (action)="goLogin()"
-          />
-          <app-button
+          <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="goLogin()" />
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Primary"
+            [label]="'Envoyer'"
             [type]="'submit'"
             [disabled]="loading"
-            [text]="'Envoyer'"
-            [style]="buttonTypeEnum.Primary"
-            [extraClass]="'fullWidth'"
           />
         </div>
       </form>
diff --git a/src/app/reset-password/reset-password.component.ts b/src/app/reset-password/reset-password.component.ts
index eacae6eb8..c1a103cd6 100644
--- a/src/app/reset-password/reset-password.component.ts
+++ b/src/app/reset-password/reset-password.component.ts
@@ -3,7 +3,7 @@ import { AbstractControl, UntypedFormBuilder, UntypedFormGroup, Validators } fro
 import { ActivatedRoute, Router } from '@angular/router';
 import { AuthService } from '../services/auth.service';
 import { NotificationService } from '../services/notification.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 
 @Component({
   selector: 'app-reset-password',
@@ -18,7 +18,7 @@ export class ResetPasswordComponent implements OnInit {
   // Condition form
   public isShowConfirmPassword = false;
   public isShowPassword = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(
     private formBuilder: UntypedFormBuilder,
diff --git a/src/app/shared/components/checkbox-form/checkbox-form.component.html b/src/app/shared/components/checkbox-form/checkbox-form.component.html
index 6b5181371..5b91f1292 100644
--- a/src/app/shared/components/checkbox-form/checkbox-form.component.html
+++ b/src/app/shared/components/checkbox-form/checkbox-form.component.html
@@ -1,4 +1,4 @@
-<button type="button" [ngClass]="{ selected: isChecked }" (click)="clicked()">
+<button type="button" tabindex="-1" [ngClass]="{ selected: isChecked }" (click)="clicked()">
   <app-v3-checkbox [checked]="isChecked" />
 
   <svg *ngIf="iconSvg" aria-hidden="true" class="icon" [ngClass]="iconType">
diff --git a/src/app/shared/components/custom-modal/custom-modal.component.html b/src/app/shared/components/custom-modal/custom-modal.component.html
index 87597f0fa..afb6ba47e 100644
--- a/src/app/shared/components/custom-modal/custom-modal.component.html
+++ b/src/app/shared/components/custom-modal/custom-modal.component.html
@@ -13,14 +13,14 @@
         </div>
       </div>
       <div class="footerModal" fxLayout="row" fxLayoutAlign="space-around center" fxLayoutGap="8px">
-        <app-button
-          [text]="customCancelButton || 'Annuler'"
-          [style]="buttonTypeEnum.modalSecondary"
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="customCancelButton || 'Annuler'"
           (action)="closeModal(false)"
         />
-        <app-button
-          [text]="customValidationButton || 'Valider'"
-          [style]="buttonTypeEnum.modalPrimary"
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="customValidationButton || 'Valider'"
           (action)="closeModal(true)"
         />
       </div>
diff --git a/src/app/shared/components/custom-modal/custom-modal.component.scss b/src/app/shared/components/custom-modal/custom-modal.component.scss
index 16c8f317c..02314a958 100644
--- a/src/app/shared/components/custom-modal/custom-modal.component.scss
+++ b/src/app/shared/components/custom-modal/custom-modal.component.scss
@@ -40,9 +40,6 @@
       .footerModal {
         padding-right: 40px;
         gap: 8px;
-        app-button {
-          flex: 1;
-        }
       }
     }
   }
diff --git a/src/app/shared/components/custom-modal/custom-modal.component.ts b/src/app/shared/components/custom-modal/custom-modal.component.ts
index 620b0f2fb..bc2b98e9a 100644
--- a/src/app/shared/components/custom-modal/custom-modal.component.ts
+++ b/src/app/shared/components/custom-modal/custom-modal.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonType } from '../button/buttonType.enum';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-custom-modal',
@@ -15,7 +15,7 @@ export class CustomModalComponent {
   @Input() public customValidationButton?: string;
   @Input() public customCancelButton?: string;
   @Output() closed = new EventEmitter<boolean>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   public closeModal(value: boolean): void {
     this.closed.emit(value);
diff --git a/src/app/shared/components/go-back/go-back.component.ts b/src/app/shared/components/go-back/go-back.component.ts
new file mode 100644
index 000000000..d25cf6c1b
--- /dev/null
+++ b/src/app/shared/components/go-back/go-back.component.ts
@@ -0,0 +1,21 @@
+import { Component, EventEmitter, Input, Output } from '@angular/core';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
+
+@Component({
+  selector: 'app-go-back',
+  template: `<app-v3-button
+    *ngIf="active"
+    [label]="'Retour'"
+    [variant]="buttonTypeEnumV3.Tertiary"
+    [iconFolder]="'ico'"
+    [iconName]="'arrowBackSmall'"
+    [size]="'large'"
+    (action)="this.action.emit()"
+  /> `,
+})
+export class GoBackComponent {
+  @Input({ required: true }) active: boolean;
+  @Output() action = new EventEmitter<Event>();
+
+  public buttonTypeEnumV3 = ButtonTypeV3;
+}
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.html b/src/app/shared/components/hour-picker/hour-picker.component.html
index 0c6eb0aaa..14b30f74b 100644
--- a/src/app/shared/components/hour-picker/hour-picker.component.html
+++ b/src/app/shared/components/hour-picker/hour-picker.component.html
@@ -51,16 +51,20 @@
           </div>
         </div>
         <div *ngIf="day.hours.length === 1" class="extraAction">
-          <app-button
-            [text]="'Ajouter'"
-            [iconType]="'form'"
-            [iconBtn]="'show'"
-            [style]="buttonTypeEnum.Secondary"
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.PrimaryBlack"
+            [label]="'Ajouter un horaire'"
+            [wide]="true"
             (action)="addHours(day)"
           />
         </div>
         <div *ngIf="day.hours.length === 2" class="extraAction">
-          <a tabindex="0" (click)="this.removeHours(day, 1)" (keyup.enter)="this.removeHours(day, 1)">Supprimer</a>
+          <app-v3-button
+            [variant]="buttonTypeEnumV3.Secondary"
+            [label]="'Supprimer'"
+            [iconName]="'deleteV3'"
+            (action)="this.removeHours(day, 1)"
+          />
         </div>
       </div>
     </div>
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.scss b/src/app/shared/components/hour-picker/hour-picker.component.scss
index 1abd6451f..21bf53132 100644
--- a/src/app/shared/components/hour-picker/hour-picker.component.scss
+++ b/src/app/shared/components/hour-picker/hour-picker.component.scss
@@ -113,9 +113,3 @@ input[type='time']::-webkit-calendar-picker-indicator {
   background: none;
   display: none;
 }
-
-::ng-deep .add app-button button {
-  div.text {
-    height: 32px !important;
-  }
-}
diff --git a/src/app/shared/components/hour-picker/hour-picker.component.ts b/src/app/shared/components/hour-picker/hour-picker.component.ts
index 4b8ae1e30..a7027a8f2 100644
--- a/src/app/shared/components/hour-picker/hour-picker.component.ts
+++ b/src/app/shared/components/hour-picker/hour-picker.component.ts
@@ -4,7 +4,7 @@ import { Day } from '../../../models/day.model';
 import { Time } from '../../../models/time.model';
 import { WeekDayEnum } from '../../enum/weekDay.enum';
 import { CheckHours } from '../../validator/form';
-import { ButtonType } from '../button/buttonType.enum';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-hour-picker',
@@ -17,7 +17,7 @@ export class HourPickerComponent implements OnChanges, OnDestroy {
 
   @Output() updateFormError = new EventEmitter<any>();
   @Output() updateForm = new EventEmitter<UntypedFormGroup>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public error = false;
 
   private copiedDay: any;
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index 685ceac1b..449ee0e2c 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -7,6 +7,7 @@ import { AppointmentChoiceComponent } from './appointment-choice/appointment-cho
 import { ButtonComponent } from './button/button.component';
 import { CheckboxFormComponent } from './checkbox-form/checkbox-form.component';
 import { CustomModalComponent } from './custom-modal/custom-modal.component';
+import { GoBackComponent } from './go-back/go-back.component';
 import { HourPickerComponent } from './hour-picker/hour-picker.component';
 import { LogoCardComponent } from './logo-card/logo-card.component';
 import { ModalConfirmationComponent } from './modal-confirmation/modal-confirmation.component';
@@ -43,6 +44,7 @@ export {
   CollapseContentComponent,
   CollapseHeaderComponent,
   CustomModalComponent,
+  GoBackComponent,
   HourPickerComponent,
   InformationStepComponent,
   LabelCheckboxV3Component,
@@ -95,4 +97,5 @@ export const SharedComponents = [
   TextInputModalComponent,
   TrainingTypePickerComponent,
   TextareaV3Component,
+  GoBackComponent,
 ];
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.html b/src/app/shared/components/modal-confirmation/modal-confirmation.component.html
index 2c4028610..5ee45d109 100644
--- a/src/app/shared/components/modal-confirmation/modal-confirmation.component.html
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.html
@@ -10,16 +10,15 @@
       </div>
       <p>{{ content }}</p>
       <div class="footerModal" fxLayout="row" fxLayoutAlign="space-around center" fxLayoutGap="8px">
-        <app-button
+        <app-v3-button
           *ngIf="!singleButton"
-          [text]="'Annuler'"
-          [style]="buttonTypeEnum.modalSecondary"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Annuler'"
           (action)="closeModal(false)"
         />
-        <app-button
-          [text]="customConfirmationText ? customConfirmationText : 'Confirmer'"
-          [style]="buttonTypeEnum.modalPrimary"
-          [extraClass]="singleButton && 'fullWidth'"
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="customConfirmationText ? customConfirmationText : 'Confirmer'"
           (action)="closeModal(true)"
         />
       </div>
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss b/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss
index f4f1e3cc5..a26a8b4f5 100644
--- a/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.scss
@@ -32,9 +32,6 @@
       }
       .footerModal {
         gap: 8px;
-        app-button {
-          flex: 1;
-        }
       }
     }
   }
diff --git a/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts b/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts
index ff69a889b..87c91cbf9 100644
--- a/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts
+++ b/src/app/shared/components/modal-confirmation/modal-confirmation.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonType } from '../button/buttonType.enum';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-modal-confirmation',
@@ -12,7 +12,7 @@ export class ModalConfirmationComponent {
   @Input() public customConfirmationText?: string;
   @Input() public singleButton?: boolean;
   @Output() closed = new EventEmitter<boolean>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   public closeModal(value: boolean): void {
     this.closed.emit(value);
diff --git a/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.html b/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.html
index 28c6d7e5e..e056e95e2 100644
--- a/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.html
+++ b/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.html
@@ -11,15 +11,15 @@
       <p class="primaryContent">{{ primaryContent }}</p>
       <p *ngIf="secondaryContent" class="secondaryContent">{{ secondaryContent }}</p>
       <div class="footerModal" fxLayout="row" fxLayoutAlign="space-around center" fxLayoutGap="8px">
-        <app-button
+        <app-v3-button
           *ngIf="displayCancelButton"
-          [text]="'Annuler'"
-          [style]="buttonTypeEnum.modalSecondary"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Annuler'"
           (action)="closeModal(false)"
         />
-        <app-button
-          [text]="customConfirmationText ? customConfirmationText : 'Confirmer'"
-          [style]="buttonTypeEnum.modalPrimary"
+        <app-v3-button
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="customConfirmationText ? customConfirmationText : 'Confirmer'"
           (action)="closeModal(true)"
         />
       </div>
diff --git a/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.scss b/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.scss
index afac06e13..11309e8e4 100644
--- a/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.scss
+++ b/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.scss
@@ -35,9 +35,6 @@
       }
       .footerModal {
         gap: 8px;
-        app-button {
-          flex: 1;
-        }
       }
     }
   }
diff --git a/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.ts b/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.ts
index 5d5d5756a..8b21ee167 100644
--- a/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.ts
+++ b/src/app/shared/components/modal-join-confirmation/modal-join-confirmation.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonType } from '../button/buttonType.enum';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-join-modal-confirmation',
@@ -14,7 +14,7 @@ export class ModalJoinConfirmationComponent {
   @Input() public customConfirmationText?: string;
   @Input() public displayCancelButton = true;
   @Output() closed = new EventEmitter<boolean>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   public closeModal(value: boolean): void {
     this.closed.emit(value);
diff --git a/src/app/shared/components/password-form/password-form.component.html b/src/app/shared/components/password-form/password-form.component.html
index b33cf035f..88711260e 100644
--- a/src/app/shared/components/password-form/password-form.component.html
+++ b/src/app/shared/components/password-form/password-form.component.html
@@ -194,22 +194,16 @@
         </div>
       </div>
       <div class="form-group" fxLayout="row" fxLayoutAlign="center center" fxLayoutGap="20px">
-        <app-button
-          [text]="'Annuler'"
-          [style]="buttonTypeEnum.Secondary"
-          [extraClass]="'fullButton'"
-          (action)="goHome()"
-        />
-        <app-button
+        <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Annuler'" (action)="goHome()" />
+        <app-v3-button
           [type]="'submit'"
           [disabled]="
             accountForm.get('confirmPassword').invalid ||
             accountForm.get('password').invalid ||
             (oldPasswordNeeded && passwordError)
           "
-          [text]="'Envoyer'"
-          [style]="buttonTypeEnum.Primary"
-          [extraClass]="'fullButton'"
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="'Envoyer'"
         />
       </div>
     </form>
diff --git a/src/app/shared/components/password-form/password-form.component.ts b/src/app/shared/components/password-form/password-form.component.ts
index 0386fe1b0..d9e5255b8 100644
--- a/src/app/shared/components/password-form/password-form.component.ts
+++ b/src/app/shared/components/password-form/password-form.component.ts
@@ -6,7 +6,7 @@ import { AuthService } from '../../../services/auth.service';
 import { NotificationService } from '../../../services/notification.service';
 import { CustomRegExp } from '../../../utils/CustomRegExp';
 import { MustMatch } from '../../validator/form';
-import { ButtonType } from '../button/buttonType.enum';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-password-form',
@@ -15,7 +15,7 @@ import { ButtonType } from '../button/buttonType.enum';
 })
 export class PasswordFormComponent implements OnInit {
   public accountForm: UntypedFormGroup;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public token: string;
   public passwordError = false;
   // Condition form
diff --git a/src/app/shared/components/radio-option/radio-option.component.html b/src/app/shared/components/radio-option/radio-option.component.html
index fb482f2bb..00f21749e 100644
--- a/src/app/shared/components/radio-option/radio-option.component.html
+++ b/src/app/shared/components/radio-option/radio-option.component.html
@@ -1,11 +1,4 @@
-<div
-  class="radioButton"
-  role="button"
-  tabindex="0"
-  [ngClass]="{ selected: selected }"
-  (click)="clicked()"
-  (keyup.enter)="clicked()"
->
+<button type="button" tabindex="-1" [ngClass]="{ selected: selected }" (click)="clicked()">
   <app-radio
     [id]="id"
     [checked]="selected === true"
@@ -14,4 +7,4 @@
     [size]="size"
     [iconName]="iconName"
   />
-</div>
+</button>
diff --git a/src/app/shared/components/radio-option/radio-option.component.scss b/src/app/shared/components/radio-option/radio-option.component.scss
index a91463106..5cb67f795 100644
--- a/src/app/shared/components/radio-option/radio-option.component.scss
+++ b/src/app/shared/components/radio-option/radio-option.component.scss
@@ -1,6 +1,6 @@
 @import 'color';
 
-.radioButton {
+button {
   width: 100%;
   cursor: pointer;
   box-sizing: border-box;
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.html b/src/app/shared/components/structure-pmr/structure-pmr.component.html
index 8ec493696..f011054e3 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.html
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.html
@@ -1,17 +1,7 @@
 <form [formGroup]="structureForm">
-  <div class="title" [ngClass]="{ editTitle: isEditMode }">
-    <app-svg-icon
-      *ngIf="isEditMode"
-      tabindex="0"
-      [iconClass]="'backArrow'"
-      [type]="'ico'"
-      [icon]="'arrowBack'"
-      (click)="goBack()"
-      (keyup.enter)="goBack()"
-    />
-    <div class="titleContent">
-      <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
-    </div>
+  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <div class="title">
+    <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('pmrAccess').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.ts b/src/app/shared/components/structure-pmr/structure-pmr.component.ts
index 5a4aaaf25..d4898bb09 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.ts
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.ts
@@ -1,5 +1,6 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-structure-pmr',
@@ -12,6 +13,8 @@ export class StructurePmrComponent implements OnInit {
   @Output() radioChange = new EventEmitter<any>();
   @Output() validateForm = new EventEmitter<any>();
 
+  public buttonTypeEnumV3 = ButtonTypeV3;
+
   ngOnInit(): void {
     this.validateForm.emit();
   }
diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss
index 1f3ad7311..fd9c95b3e 100644
--- a/src/app/shared/components/svg-icon/svg-icon.component.scss
+++ b/src/app/shared/components/svg-icon/svg-icon.component.scss
@@ -86,7 +86,7 @@ $sizes: (
 
 svg {
   // Scale the SVG to cover the whole app-icon container.
-  top: 0.125em;
+  top: 0.18em;
   position: relative;
 }
 .icon-centered {
diff --git a/src/app/shared/components/text-input-modal/text-input-modal.component.html b/src/app/shared/components/text-input-modal/text-input-modal.component.html
index 2f8616bbd..94af21360 100644
--- a/src/app/shared/components/text-input-modal/text-input-modal.component.html
+++ b/src/app/shared/components/text-input-modal/text-input-modal.component.html
@@ -5,14 +5,14 @@
       <p>{{ content }}</p>
       <textarea #myText id="story" class="textarea" name="story" rows="6" placeholder="{{ placeholder }}"></textarea>
       <div class="footerModal">
-        <app-button
-          [text]="'Annuler'"
-          [style]="buttonTypeEnum.modalSecondary"
+        <app-v3-button
+          [style]="buttonTypeEnumV3.Secondary"
+          [label]="'Annuler'"
           (action)="closeModal(false, myText.value)"
         />
-        <app-button
-          [text]="'Confirmer'"
-          [style]="buttonTypeEnum.modalPrimary"
+        <app-v3-button
+          [style]="buttonTypeEnumV3.Primary"
+          [label]="'Confirmer'"
           (action)="closeModal(true, myText.value)"
         />
       </div>
diff --git a/src/app/shared/components/text-input-modal/text-input-modal.component.ts b/src/app/shared/components/text-input-modal/text-input-modal.component.ts
index 9762e32b2..097670033 100644
--- a/src/app/shared/components/text-input-modal/text-input-modal.component.ts
+++ b/src/app/shared/components/text-input-modal/text-input-modal.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonType } from '../button/buttonType.enum';
+import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-text-input-modal',
@@ -12,7 +12,7 @@ export class TextInputModalComponent {
   @Input() public placeholder: string;
   @Output() closed = new EventEmitter<{ content: string; shouldSend: boolean }>();
   @Output() newContent = new EventEmitter<{ content: string; shouldSend: boolean }>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public myContent: string;
 
   public closeModal(shouldSend: boolean, content: string): void {
diff --git a/src/app/shared/components/v3/button/Button.stories.ts b/src/app/shared/components/v3/button/Button.stories.ts
index 98997ab35..1fdef4e07 100644
--- a/src/app/shared/components/v3/button/Button.stories.ts
+++ b/src/app/shared/components/v3/button/Button.stories.ts
@@ -2,8 +2,8 @@ import { CommonModule } from '@angular/common';
 import type { Meta, StoryObj } from '@storybook/angular';
 import { moduleMetadata } from '@storybook/angular';
 import { SvgIconComponent } from '../../svg-icon/svg-icon.component';
+import { ButtonTypeV3 } from './button-type.enum';
 import { ButtonV3Component } from './button.component';
-import { ButtonTypeV3 } from './button.type';
 
 // More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
 const meta: Meta<ButtonV3Component> = {
@@ -90,6 +90,13 @@ export const Secondary: Story = {
   },
 };
 
+export const SecondaryDelete: Story = {
+  args: {
+    label: 'SecondaryDelete button',
+    variant: ButtonTypeV3.SecondaryDelete,
+  },
+};
+
 export const Tertiary: Story = {
   args: {
     label: 'Tertiary button',
diff --git a/src/app/shared/components/v3/button/button.type.ts b/src/app/shared/components/v3/button/button-type.enum.ts
similarity index 86%
rename from src/app/shared/components/v3/button/button.type.ts
rename to src/app/shared/components/v3/button/button-type.enum.ts
index f18f612f6..9af8ad7cc 100644
--- a/src/app/shared/components/v3/button/button.type.ts
+++ b/src/app/shared/components/v3/button/button-type.enum.ts
@@ -5,5 +5,6 @@ export enum ButtonTypeV3 {
   PrimaryWarning = 'primaryWarning',
   PrimarySuccess = 'primarySuccess',
   Secondary = 'secondary',
+  SecondaryDelete = 'secondaryDelete',
   Tertiary = 'tertiary',
 }
diff --git a/src/app/shared/components/v3/button/button.component.html b/src/app/shared/components/v3/button/button.component.html
index 25c122866..ca37ddecd 100644
--- a/src/app/shared/components/v3/button/button.component.html
+++ b/src/app/shared/components/v3/button/button.component.html
@@ -1,4 +1,9 @@
-<button [type]="type" [ngClass]="classes" [disabled]="disabled" (click)="action.emit($event)">
+<button
+  [type]="type"
+  [ngClass]="classes"
+  [disabled]="disabled"
+  (click)="action.emit($event)">
+
   <app-svg-icon
     *ngIf="iconName && iconPosition === 'left'"
     [type]="iconFolder"
@@ -14,4 +19,5 @@
     [iconColor]="'currentColor'"
     [iconClass]="'icon-20'"
   />
+
 </button>
diff --git a/src/app/shared/components/v3/button/button.component.scss b/src/app/shared/components/v3/button/button.component.scss
index 9e4b2aba5..3b91352a4 100644
--- a/src/app/shared/components/v3/button/button.component.scss
+++ b/src/app/shared/components/v3/button/button.component.scss
@@ -123,6 +123,23 @@ button {
     }
   }
 
+  &.secondaryDelete {
+    background-color: $white;
+    color: $red;
+    border-color: $red;
+    &:hover {
+      background-color: $grey-3-15;
+    }
+    &:disabled {
+      background-color: $white;
+      color: $grey-5;
+      border-color: $grey-5;
+    }
+    &:active {
+      background-color: $grey-3-20;
+    }
+  }
+
   &.tertiary {
     background-color: $white;
     color: $grey-1;
diff --git a/src/app/shared/components/v3/button/button.component.ts b/src/app/shared/components/v3/button/button.component.ts
index a5c26cec4..26f087ef4 100644
--- a/src/app/shared/components/v3/button/button.component.ts
+++ b/src/app/shared/components/v3/button/button.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonTypeV3 } from './button.type';
+import { ButtonTypeV3 } from './button-type.enum';
 
 @Component({
   selector: 'app-v3-button',
@@ -17,7 +17,7 @@ export class ButtonV3Component {
   @Input() variant?: ButtonTypeV3 = ButtonTypeV3.Primary;
 
   /** Affects the height of the button */
-  @Input() size?: 'small' | 'medium' | 'large' = 'small';
+  @Input() size?: 'small' | 'medium' | 'large' = 'medium';
 
   /** Should the button be wide ? (250px) */
   @Input() wide = false;
diff --git a/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts b/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts
index e84392a86..b77ac3f1d 100644
--- a/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts
+++ b/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts
@@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
 import type { Meta, StoryObj } from '@storybook/angular';
 import { moduleMetadata } from '@storybook/angular';
 import { SvgIconComponent } from '../../../svg-icon/svg-icon.component';
-import { ButtonTypeV3 } from '../button.type';
+import { ButtonTypeV3 } from '../button-type.enum';
 import { IconButtonV3Component } from './icon-button.component';
 
 // More on how to set up stories at: https://storybook.js.org/docs/angular/writing-stories/introduction
diff --git a/src/app/shared/components/v3/button/icon-button/icon-button.component.ts b/src/app/shared/components/v3/button/icon-button/icon-button.component.ts
index 534b80a70..e2e565ce9 100644
--- a/src/app/shared/components/v3/button/icon-button/icon-button.component.ts
+++ b/src/app/shared/components/v3/button/icon-button/icon-button.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { ButtonTypeV3 } from '../button.type';
+import { ButtonTypeV3 } from '../button-type.enum';
 
 @Component({
   selector: 'app-v3-icon-button',
diff --git a/src/app/shared/components/v3/search-bar/search-bar.component.ts b/src/app/shared/components/v3/search-bar/search-bar.component.ts
index fe60fb85f..e5ec13635 100644
--- a/src/app/shared/components/v3/search-bar/search-bar.component.ts
+++ b/src/app/shared/components/v3/search-bar/search-bar.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
-import { ButtonTypeV3 } from '../button/button.type';
+import { ButtonTypeV3 } from '../button/button-type.enum';
 
 @Component({
   selector: 'app-v3-search-bar',
diff --git a/src/app/structure-list/components/card/card.component.html b/src/app/structure-list/components/card/card.component.html
index 3a22d67a8..999ef4475 100644
--- a/src/app/structure-list/components/card/card.component.html
+++ b/src/app/structure-list/components/card/card.component.html
@@ -68,28 +68,18 @@
     </div>
   </div>
   <div *ngIf="isOrientation && isOrientationRdv" class="actions right">
-    <app-button
-      tabindex="0"
-      fxLayout="row"
-      fxLayoutGap="6px"
-      class="hide-on-mobile rdv-button"
-      [style]="buttonTypeEnum.modalPrimary"
-      [type]="'form'"
-      [text]="'Demander RDV'"
-      [iconBtn]="'appointement'"
-      [iconPos]="'left'"
+    <app-v3-button
+      class="hide-on-mobile"
+      [variant]="buttonTypeEnumV3.Primary"
+      [label]="'Prendre RDV'"
+      [iconName]="'appointmentV3'"
       (click)="cardRDV(); $event.stopPropagation()"
-      (keyup.enter)="cardRDV(); $event.stopPropagation()"
     />
-    <app-button
-      tabindex="0"
+    <app-v3-icon-button
       class="hide-on-desktop"
-      [style]="buttonTypeEnum.modalPrimary"
-      [type]="'form'"
-      [text]=""
-      [iconBtn]="'appointement'"
+      [variant]="buttonTypeEnumV3.Primary"
+      [iconName]="'appointmentV3'"
       (click)="cardRDV(); $event.stopPropagation()"
-      (keyup.enter)="cardRDV(); $event.stopPropagation()"
     />
   </div>
 </div>
diff --git a/src/app/structure-list/components/card/card.component.scss b/src/app/structure-list/components/card/card.component.scss
index d4e394858..2bc74812c 100644
--- a/src/app/structure-list/components/card/card.component.scss
+++ b/src/app/structure-list/components/card/card.component.scss
@@ -64,10 +64,6 @@
   border-radius: 20px;
 }
 
-.rdv-button ::ng-deep app-svg-icon {
-  padding: 6px 8px 0 0;
-}
-
 .selected {
   border: solid 1px $grey-5;
   background-color: $white;
diff --git a/src/app/structure-list/components/card/card.component.ts b/src/app/structure-list/components/card/card.component.ts
index 572334c59..2e2ee824a 100644
--- a/src/app/structure-list/components/card/card.component.ts
+++ b/src/app/structure-list/components/card/card.component.ts
@@ -2,7 +2,7 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
 import { Structure } from '../../../models/structure.model';
 import { ProfileService } from '../../../profile/services/profile.service';
-import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 
 @Component({
   selector: 'app-card',
@@ -20,7 +20,7 @@ export class CardComponent {
   @Output() public addToList: EventEmitter<Structure> = new EventEmitter<Structure>();
   @Output() public selectRDV: EventEmitter<Structure> = new EventEmitter<Structure>();
   @Output() public hover: EventEmitter<Structure> = new EventEmitter<Structure>();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   constructor(private route: ActivatedRoute, private router: Router, public profileService: ProfileService) {}
 
diff --git a/src/app/structure-list/components/more-filters/more-filters.component.html b/src/app/structure-list/components/more-filters/more-filters.component.html
index 60119e638..d93af4881 100644
--- a/src/app/structure-list/components/more-filters/more-filters.component.html
+++ b/src/app/structure-list/components/more-filters/more-filters.component.html
@@ -79,18 +79,9 @@
         </ul>
       </div>
     </div>
-    <div
-      class="footer"
-      fxLayout="row"
-      fxLayoutAlign="center center"
-      [ngClass]="{ backDropModalFooter: getModalType() === 'moreFilters' }"
-    >
-      <div class="half-width">
-        <app-button [style]="buttonTypeEnum.modalSecondary" [text]="'Effacer'" (click)="clearFilters()" />
-      </div>
-      <div class="half-width">
-        <app-button [style]="buttonTypeEnum.modalPrimary" [text]="'Appliquer'" (click)="emitModules(checkedModules)" />
-      </div>
+    <div class="footer">
+      <app-v3-button [variant]="buttonTypeEnumV3.Secondary" [label]="'Effacer'" (click)="clearFilters()" />
+      <app-v3-button [variant]="buttonTypeEnumV3.Primary" [label]="'Appliquer'" (click)="emitModules(checkedModules)" />
     </div>
   </div>
 </div>
diff --git a/src/app/structure-list/components/more-filters/more-filters.component.scss b/src/app/structure-list/components/more-filters/more-filters.component.scss
index 95dabc4b5..650281236 100644
--- a/src/app/structure-list/components/more-filters/more-filters.component.scss
+++ b/src/app/structure-list/components/more-filters/more-filters.component.scss
@@ -92,13 +92,6 @@
   .moreFilters {
     margin-bottom: 0;
   }
-  .backDropModalFooter {
-    background: white;
-    width: 360px;
-    margin: auto;
-    border-radius: 0 0 8px 8px;
-    margin-top: 0;
-  }
   .headerMoreFilters {
     position: relative;
     text-align: center;
@@ -117,12 +110,16 @@
       top: 7px;
     }
   }
-  .footer {
-    @media #{$tablet} {
-      display: flex !important;
-    }
-  }
 }
+.footer {
+  background: white;
+  display: flex;
+  justify-content: center;
+  gap: 12px;
+  border-radius: 0 0 8px 8px;
+  margin-top: 0;
+}
+
 ::ng-deep .headerMoreFilters svg {
   width: 40px !important;
   height: 40px !important;
diff --git a/src/app/structure-list/components/more-filters/more-filters.component.ts b/src/app/structure-list/components/more-filters/more-filters.component.ts
index 266a03570..4527236df 100644
--- a/src/app/structure-list/components/more-filters/more-filters.component.ts
+++ b/src/app/structure-list/components/more-filters/more-filters.component.ts
@@ -1,5 +1,5 @@
 import { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';
-import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { CategoryEnum } from '../../../shared/enum/category.enum';
 import { TypeModal } from '../../enum/typeModal.enum';
 import { Category } from '../../models/category.model';
@@ -20,7 +20,7 @@ export class MoreFiltersComponent implements OnInit, OnChanges {
   @Input() public modules: Module[] = [];
   @Output() searchEvent = new EventEmitter();
   @Output() closeEvent = new EventEmitter();
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public categoryEnum = CategoryEnum;
 
   // Checkbox variable
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
index fc37213d9..01641608c 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.html
@@ -101,10 +101,10 @@
           <div class="label pass">Accès libre</div>
         </label>
       </div>
-      <app-button
+      <app-v3-button
         class="last-button"
-        [style]="buttonTypeEnum.TertiaryRounded"
-        [text]="'Plus de filtres'"
+        [variant]="buttonTypeEnumV3.Tertiary"
+        [label]="'Plus de filtres'"
         (action)="openModal(TypeModal.moreFilters)"
       />
       <div *ngIf="modalTypeOpened">
diff --git a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
index bb6f7ce26..0682c16f9 100644
--- a/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
+++ b/src/app/structure-list/components/structure-list-search/structure-list-search.component.ts
@@ -1,6 +1,7 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
 import { ButtonType } from '../../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../../shared/components/v3/button/button-type.enum';
 import { Utils } from '../../../utils/utils';
 import { Theme } from '../../enum/themes.enum';
 import { TypeModal } from '../../enum/typeModal.enum';
@@ -20,6 +21,7 @@ export class StructureListSearchComponent implements OnInit {
   public utils = new Utils();
   // Show/hide form createStructure
   public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
 
   public searchInput = '';
   public modalTypeOpened: TypeModal;
diff --git a/src/app/structure-list/structure-list.component.html b/src/app/structure-list/structure-list.component.html
index 236b25601..9cd9e751b 100644
--- a/src/app/structure-list/structure-list.component.html
+++ b/src/app/structure-list/structure-list.component.html
@@ -6,18 +6,18 @@
       <ng-template ngPluralCase="other">{{ structureList.length }} structures</ng-template>
     </div>
     <ng-container *ngIf="!isOrientation">
-      <app-button
-        [text]="'Imprimer la liste'"
-        [style]="buttonTypeEnum.Secondary"
-        [extraClass]="'small-text'"
-        (action)="print()"
-      />
-      <app-button
-        [text]="'Ajouter une structure'"
-        [style]="buttonTypeEnum.Secondary"
-        [extraClass]="'small-text'"
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Secondary"
+        [label]="'Ajouter une structure'"
+        [size]="'small'"
         (action)="addStructure()"
       />
+      <app-v3-button
+        [variant]="buttonTypeEnumV3.Secondary"
+        [label]="'Imprimer la liste'"
+        [size]="'small'"
+        (action)="print()"
+      />
     </ng-container>
   </div>
 
diff --git a/src/app/structure-list/structure-list.component.ts b/src/app/structure-list/structure-list.component.ts
index 2f08ac14c..b88a8b611 100644
--- a/src/app/structure-list/structure-list.component.ts
+++ b/src/app/structure-list/structure-list.component.ts
@@ -4,7 +4,7 @@ import { GeoJson } from '../map/models/geojson.model';
 import { Structure } from '../models/structure.model';
 import { AuthService } from '../services/auth.service';
 import { StructureService } from '../services/structure.service';
-import { ButtonType } from '../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../shared/components/v3/button/button-type.enum';
 import { PrintService } from '../shared/service/print.service';
 
 @Component({
@@ -25,7 +25,7 @@ export class StructureListComponent implements OnChanges, OnInit {
   @Output() public structureSelected: EventEmitter<Structure[]> = new EventEmitter<Structure[]>();
   @Output() public structureRDVSelected: EventEmitter<Structure> = new EventEmitter<Structure>();
 
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public structure: Structure;
   public printMode = false;
 
diff --git a/src/app/structure/structure-exclude/structure-exclude.component.html b/src/app/structure/structure-exclude/structure-exclude.component.html
index d8c0403a6..9ceb7dd43 100644
--- a/src/app/structure/structure-exclude/structure-exclude.component.html
+++ b/src/app/structure/structure-exclude/structure-exclude.component.html
@@ -15,19 +15,19 @@
       <p *ngIf="!alreadyExcluded">Souhaitez-vous exclure {{ newMemberName }} de {{ structure.structureName }}</p>
       <p *ngIf="alreadyExcluded">{{ newMemberName }} a déjà été exclu par un membre de {{ structure.structureName }}</p>
       <div class="footerModal" fxLayout="row" fxLayoutAlign="space-around center" fxLayoutGap="8px">
-        <app-button
+        <app-v3-button
           *ngIf="!alreadyExcluded"
-          [text]="'Non'"
-          [style]="buttonTypeEnum.modalSecondary"
+          [variant]="buttonTypeEnumV3.Secondary"
+          [label]="'Non'"
           (action)="close()"
         />
-        <app-button
+        <app-v3-button
           *ngIf="!alreadyExcluded"
-          [text]="'Exclure'"
-          [style]="buttonTypeEnum.modalPrimary"
+          [variant]="buttonTypeEnumV3.Primary"
+          [label]="'Exclure'"
           (action)="exclude()"
         />
-        <app-button *ngIf="alreadyExcluded" [text]="'OK'" [style]="buttonTypeEnum.modalPrimary" (action)="close()" />
+        <app-v3-button *ngIf="alreadyExcluded" [variant]="buttonTypeEnumV3.Primary" [label]="'OK'" (action)="close()" />
       </div>
     </div>
   </div>
diff --git a/src/app/structure/structure-exclude/structure-exclude.component.scss b/src/app/structure/structure-exclude/structure-exclude.component.scss
index 1964b4ead..edff1f02b 100644
--- a/src/app/structure/structure-exclude/structure-exclude.component.scss
+++ b/src/app/structure/structure-exclude/structure-exclude.component.scss
@@ -31,9 +31,6 @@
       }
       .footerModal {
         gap: 8px;
-        app-button {
-          flex: 1;
-        }
       }
       img {
         margin-top: 8px;
diff --git a/src/app/structure/structure-exclude/structure-exclude.component.ts b/src/app/structure/structure-exclude/structure-exclude.component.ts
index a1d18fd28..f6581a884 100644
--- a/src/app/structure/structure-exclude/structure-exclude.component.ts
+++ b/src/app/structure/structure-exclude/structure-exclude.component.ts
@@ -4,7 +4,7 @@ import { Structure } from '../../models/structure.model';
 import { NotificationService } from '../../services/notification.service';
 import { StructureService } from '../../services/structure.service';
 import { UserService } from '../../services/user.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 
 @Component({
   selector: 'app-structure-exclude',
@@ -21,7 +21,7 @@ export class StructureExcludeComponent implements OnInit {
   ) {}
 
   public alreadyExcluded = false;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public newMemberName: string;
   public structure: Structure;
   private structureId: string;
diff --git a/src/app/structure/structure-join/structure-join.component.html b/src/app/structure/structure-join/structure-join.component.html
index 83f37e57d..ad17cf794 100644
--- a/src/app/structure/structure-join/structure-join.component.html
+++ b/src/app/structure/structure-join/structure-join.component.html
@@ -10,7 +10,7 @@
         />
       </div>
       <div class="button">
-        <app-button [style]="buttonTypeEnum.Primary" [text]="'Ok'" (action)="handleFinish()" />
+        <app-v3-button [variant]="buttonTypeEnumV3.Primary" [label]="'Ok'" [wide]="true" (action)="handleFinish()" />
       </div>
     </div>
   </ng-container>
@@ -53,7 +53,7 @@
         </div>
       </div>
       <div class="button">
-        <app-button [style]="buttonTypeEnum.Primary" [text]="'Ok'" (action)="handleCallback()" />
+        <app-v3-button [variant]="buttonTypeEnumV3.Primary" [label]="'Ok'" [wide]="true" (action)="handleCallback()" />
       </div>
     </div>
   </ng-container>
diff --git a/src/app/structure/structure-join/structure-join.component.ts b/src/app/structure/structure-join/structure-join.component.ts
index 50170699c..cce56d3ab 100644
--- a/src/app/structure/structure-join/structure-join.component.ts
+++ b/src/app/structure/structure-join/structure-join.component.ts
@@ -4,9 +4,9 @@ import { formType } from '../../form/form-view/formType.enum';
 import { structureFormStep } from '../../form/form-view/structure-form/structureFormStep.enum';
 import { Structure } from '../../models/structure.model';
 import { RouterListenerService } from '../../services/routerListener.service';
-import { ButtonType } from '../../shared/components/button/buttonType.enum';
-import { JoinErrors } from '../enums/joinErrors.enum';
 import { UserService } from '../../services/user.service';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
+import { JoinErrors } from '../enums/joinErrors.enum';
 @Component({
   selector: 'app-structure-join',
   templateUrl: './structure-join.component.html',
@@ -17,7 +17,7 @@ export class StructureJoinComponent implements OnInit {
   public isClaimed: boolean = null;
   public structureFormStepEnum = structureFormStep;
   public formTypeEnum = formType;
-  public buttonTypeEnum = ButtonType;
+  public buttonTypeEnumV3 = ButtonTypeV3;
   public structure: Structure;
   public isStructureJoinValidated = null;
   public validationToken = null;
diff --git a/src/app/utils/formUtils.ts b/src/app/utils/formUtils.ts
index d19f86b00..139a03a11 100644
--- a/src/app/utils/formUtils.ts
+++ b/src/app/utils/formUtils.ts
@@ -151,7 +151,10 @@ export class formUtils {
           ]
         ),
         freeWorkShop: new UntypedFormControl(structure.freeWorkShop, [Validators.required]),
-        freeWifi: new UntypedFormControl(null, isEditMode ? [] : [Validators.required]), // Field used has a pivot, not sent in final form.
+        freeWifi: new UntypedFormControl(
+          structure.categories.selfServiceMaterial.includes('wifiEnAccesLibre') ? true : null,
+          isEditMode ? [] : [Validators.required]
+        ), // Field used has a pivot, not sent in final form.
         dataShareConsentDate: new UntypedFormControl(structure.dataShareConsentDate),
         personalOffers: new UntypedFormControl(structure.personalOffers),
       },
diff --git a/src/assets/form/emailVerification.svg b/src/assets/form/emailVerification.svg
index 3db268147..042f1dcfe 100644
--- a/src/assets/form/emailVerification.svg
+++ b/src/assets/form/emailVerification.svg
@@ -1,140 +1,123 @@
 <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5720_44788)">
-<path d="M35.3333 94.6667L116.74 141.667" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M35.3333 94.6667L116.74 141.667" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M106.073 116L24.6666 163" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M132.663 118.923L187.656 87.1731C193.874 83.5832 193.874 77.7629 187.656 74.1731L160.509 58.5001C154.291 54.9102 144.21 54.9102 137.993 58.5L82.9999 90.25" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M114.983 143.266L142.48 158.93C148.769 162.512 148.803 168.366 142.555 171.973L101.857 195.47C95.6396 199.06 85.5585 199.06 79.3407 195.47L21.8654 162.287" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M194.384 64.7521L173.066 52.4459C172.232 51.9633 170.887 51.9672 170.064 52.4459L133.296 73.8106C132.639 74.1666 132.679 74.673 132.679 74.673L132.667 79.1073C132.667 79.4238 132.876 79.7402 133.296 79.9815L154.613 92.2877C155.448 92.7703 156.789 92.7703 157.615 92.2877L194.384 70.923C194.795 70.6856 195.001 70.3731 195.001 70.0606L195.013 65.6263C194.945 64.9775 194.384 64.7521 194.384 64.7521Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M192.829 64.5186L172.596 52.8374C171.804 52.3825 170.527 52.3825 169.744 52.8374L134.846 73.1183C134.225 73.4585 134.261 73.9371 134.261 73.9371L134.249 78.146C134.249 78.4466 134.447 78.7473 134.846 78.9767L155.08 90.6579C155.871 91.1128 157.145 91.1128 157.932 90.6579L192.829 70.377C193.217 70.1515 193.415 69.8548 193.415 69.5582L193.426 65.3493C193.363 64.7322 192.829 64.5186 192.829 64.5186Z" fill="#EDEDED"/>
-<path d="M192.726 64.6294L157.964 84.8312L157.952 89.0242L192.714 68.8224C193.102 68.597 193.296 68.3003 193.3 68.0076L193.312 63.8145C193.312 64.1112 193.114 64.4039 192.726 64.6294Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M134.973 73.1974C134.577 72.9679 134.38 72.6673 134.38 72.3706L134.368 76.5637C134.368 76.8643 134.565 77.161 134.961 77.3904L155.115 89.0281L155.127 84.8351L134.973 73.1974Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M157.968 84.8312L157.956 89.0243C157.172 89.4792 155.903 89.4792 155.115 89.0243L155.127 84.8312C155.914 85.2861 157.184 85.2861 157.968 84.8312Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M192.718 62.9838C193.505 63.4387 193.509 64.1745 192.726 64.6294L157.963 84.8312C157.18 85.2861 155.91 85.2861 155.123 84.8312L134.969 73.1935C134.182 72.7386 134.178 72.0028 134.961 71.5479L169.724 51.3461C170.503 50.8912 171.777 50.8912 172.564 51.3461L192.718 62.9838Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M151.017 78.6287L149.364 79.5899C149.277 79.6413 149.166 79.6413 149.079 79.5899L143.228 76.2117C143.038 76.101 143.038 75.828 143.228 75.7173L144.882 74.756C144.969 74.7046 145.08 74.7046 145.167 74.756L151.017 78.1342C151.207 78.245 151.207 78.5179 151.017 78.6287Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M161.611 82.8216L161.334 82.9838L138.426 69.7599L138.703 69.5977L161.611 82.8216Z" fill="#706F6F"/>
-<path d="M191.583 65.2508L191.302 65.413L168.395 52.1851L168.675 52.0229L191.583 65.2508Z" fill="#706F6F"/>
-<path d="M172.141 52.2479C172.378 52.3824 172.378 52.6039 172.144 52.7384C171.911 52.8729 171.531 52.8729 171.294 52.7384C171.057 52.6039 171.057 52.3824 171.29 52.2479C171.523 52.1094 171.903 52.1094 172.141 52.2479Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M173.672 53.0707C173.909 53.2052 173.909 53.4267 173.675 53.5612C173.442 53.6957 173.062 53.6957 172.825 53.5612C172.588 53.4267 172.588 53.2052 172.821 53.0707C173.054 52.9322 173.434 52.9322 173.672 53.0707Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M184.941 59.6489C185.151 59.7715 185.151 59.9653 184.941 60.088C184.732 60.2106 184.391 60.2106 184.182 60.088L176.148 55.4479C175.938 55.3253 175.938 55.1315 176.144 55.0088C176.353 54.8862 176.694 54.8862 176.903 55.0088L184.941 59.6489Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" fill="white"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" fill="white"/>
-<path d="M163.425 38.4518C162.765 38.1355 161.549 37.9912 161.061 38.6681C160.617 39.2674 160.329 40.6323 160.401 41.348C160.445 41.8363 160.645 42.3634 160.972 42.7407C161.416 43.2567 161.688 43.068 162.265 43.24C162.809 43.3954 163.053 43.9281 163.586 43.2567C163.913 42.8406 163.802 42.1692 163.874 41.6643C163.963 41.1039 164.102 38.3241 163.142 38.3796" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" fill="white"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" fill="#DA3635"/>
-<path d="M161.76 38.4517C162.332 38.1909 163.635 38.5793 163.208 39.4671C162.992 39.9276 162.565 39.8832 162.404 40.4158C162.359 40.5712 162.332 41.5755 162.476 41.6365C162.875 41.8252 162.803 40.7321 163.02 40.6045C163.763 40.1162 163.452 41.3646 163.752 41.5477C164.512 42.036 164.612 39.3672 164.268 38.8845C163.852 38.252 161.86 37.5362 161.344 38.3962C161.499 38.4406 161.743 38.5238 161.904 38.5405" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" fill="white"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" fill="white"/>
-<path d="M156.7 50.636C156.584 50.9634 156.717 51.496 156.339 51.7845C156.323 51.6958 156.267 51.5682 156.267 51.4572C156.051 51.8012 155.796 52.1729 155.407 52.3172C155.119 51.4294 155.724 50.6693 156.356 50.0812C156.484 50.2088 156.656 50.353 156.717 50.4973" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" fill="white"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" fill="white"/>
-<path d="M163.28 65.3394C163.264 65.5557 163.525 65.9108 163.48 66.0551C163.38 66.4879 162.981 66.4879 162.62 66.6266C162.248 66.7542 162.049 66.7819 161.671 66.9983C161.455 67.1426 161.011 67.703 160.723 67.6586C159.663 67.5143 160.811 66.0385 161.166 65.8221C161.638 65.5225 162.842 65.0786 163.247 65.5502" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M169.617 64.7123C169.545 65.417 170.177 65.9441 169.844 66.5766C169.628 67.0094 168.912 68.0414 168.313 67.8084C167.409 67.4644 168.158 66.5322 168.413 66.0717C168.602 65.7443 168.701 65.4392 168.984 65.2117C169.162 65.0674 169.661 64.6957 169.617 64.7123Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" fill="white"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" fill="white"/>
-<path d="M161.622 51.5129C161.433 53.3772 160.889 55.297 160.501 57.1612C160.257 58.3098 160.601 59.2696 160.717 60.3849C160.845 61.6166 160.989 62.8206 161.106 64.0413C161.161 64.6405 161.017 65.4728 161.55 65.7169C162.082 65.9611 162.898 65.4894 163.414 65.4173C163.658 63.7139 163.225 61.7609 163.225 60.0131C163.225 59.0366 163.197 58.3652 163.658 57.5163C164.03 56.8283 164.39 56.0405 164.374 55.2359C164.762 57.2001 164.862 59.1642 165.622 60.9952C166.366 62.8428 167.459 64.5906 168.502 66.2274C170.022 65.5394 169.794 63.9636 169.034 62.8317C168.263 61.6832 167.858 60.4792 167.703 59.1198C167.558 57.7993 167.575 56.5565 167.719 55.2359C167.791 54.4924 168.036 53.6158 167.919 52.8723C167.791 52.04 167.375 51.9679 166.571 51.7238C165.894 51.524 161.882 50.8638 161.683 51.6516" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" fill="white"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" fill="white"/>
-<path d="M161.261 42.9515C159.569 43.0236 159.214 46.8798 158.221 47.9673C157.821 48.4112 157.405 48.8273 156.917 49.188C156.417 49.5597 155.796 49.6762 156.417 50.3365C156.978 50.9523 157.177 50.5251 157.71 50.1367C158.154 49.8094 158.67 49.593 159.175 49.3322C160.595 48.6165 160.506 47.9396 160.751 46.5247C160.906 47.185 161.15 47.6843 161.195 48.3723C161.239 49.1602 161.122 49.9647 161.195 50.736C161.339 52.5004 163.014 52.4393 164.463 52.5725C165.206 52.628 165.911 52.2008 166.427 52.2562C166.715 52.284 166.987 52.6446 167.359 52.517C167.891 52.3284 167.775 51.9011 167.93 51.4295C168.23 50.5529 169.09 49.2934 169.018 48.3612C168.935 47.2737 167.253 46.0087 166.71 45.0377C166.166 44.0778 165.522 42.7018 164.174 42.8294C163.675 42.8738 163.486 43.29 163.014 43.3898C162.543 43.4897 161.927 43.2345 161.511 43.0292" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M166.022 52.9718C165.461 53.6432 165.433 54.359 165.334 55.2911C165.217 56.3065 164.973 57.2108 164.962 58.2595C164.945 60.3679 164.962 62.443 164.962 64.5792C164.962 65.2672 164.601 67.8195 165.162 68.1912C165.561 67.1148 165.261 65.5113 165.317 64.3517C165.389 62.8591 165.317 61.2834 165.417 59.8075C165.544 58.1707 165.506 56.4673 165.805 54.8639C165.888 54.42 166.121 53.2992 166.61 53.1272C167.298 52.872 167.697 54.1426 167.841 54.1592C168.546 54.2591 167.797 52.6833 167.037 52.5945C166.31 52.5002 166.105 52.7721 166.022 52.9718Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" fill="white"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" fill="white"/>
-<path d="M167.409 52.5835C167.409 52.983 167.536 53.5711 167.092 53.7598C166.449 54.0205 166.46 53.2715 166.46 52.8443C166.36 52.8609 166.16 52.7888 166.044 52.7999C165.772 51.84 167.78 51.9232 167.547 52.872" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M157.017 116.598C160.202 118.434 160.218 121.412 157.056 123.253L73.7455 171.663C70.5834 173.499 65.4457 173.499 62.2612 171.663L8.39961 140.569C5.21514 138.733 5.19831 135.756 8.36039 133.914L91.6713 85.4982C94.8334 83.6625 99.9711 83.6625 103.156 85.4982L157.017 116.598Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M149.747 116.47C152.669 118.154 152.68 120.885 149.781 122.57L73.3649 166.979C70.4658 168.664 65.7535 168.664 62.8321 166.979L13.431 138.459C10.5095 136.774 10.4983 134.043 13.3973 132.358L89.8133 87.9495C92.7123 86.2649 97.4246 86.2649 100.346 87.9495L149.747 116.47Z" fill="#EDEDED"/>
-<path d="M152.036 117.052L152.019 111.824C152.019 112.39 151.644 112.96 150.895 113.391L150.911 118.619C151.661 118.188 152.036 117.617 152.036 117.052Z" fill="white"/>
-<path d="M150.895 113.391L150.911 118.619C151.661 118.188 152.036 117.617 152.036 117.052L152.019 111.824C152.019 112.395 151.644 112.96 150.895 113.391Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M152.036 117.052L152.019 111.824C152.019 112.39 151.644 112.96 150.895 113.391L150.911 118.619C151.661 118.188 152.036 117.617 152.036 117.052Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M13 134.233C13.0168 134.25 13.0392 134.267 13.0616 134.278C13.0784 134.295 13.1007 134.306 13.1175 134.323C13.1399 134.339 13.1623 134.351 13.1791 134.367C13.2015 134.379 13.2183 134.395 13.2407 134.407C13.2631 134.423 13.2855 134.435 13.3079 134.451C13.3247 134.463 13.3358 134.468 13.347 134.479C13.3638 134.491 13.375 134.496 13.3918 134.507L13.375 129.28C13.347 129.263 13.3134 129.247 13.2855 129.224C13.2631 129.207 13.2407 129.196 13.2183 129.179C13.1959 129.168 13.1791 129.151 13.1568 129.14C13.1344 129.123 13.112 129.112 13.0896 129.095C13.0728 129.084 13.0504 129.067 13.0336 129.051C13.0112 129.034 12.9944 129.017 12.972 129.006C12.9552 128.989 12.9385 128.978 12.9217 128.961C12.9049 128.944 12.8825 128.928 12.8657 128.911C12.8489 128.9 12.8377 128.883 12.8265 128.872C12.7985 128.844 12.7706 128.816 12.7426 128.788C12.7314 128.776 12.7258 128.771 12.7146 128.76C12.681 128.721 12.6474 128.681 12.6138 128.642C12.6026 128.631 12.5971 128.62 12.5915 128.609C12.5747 128.586 12.5523 128.558 12.5355 128.536C12.5243 128.525 12.5187 128.508 12.5075 128.497C12.4907 128.474 12.4796 128.452 12.4684 128.429C12.4572 128.413 12.4516 128.402 12.4404 128.385C12.4292 128.368 12.418 128.346 12.4124 128.329C12.4068 128.312 12.3956 128.295 12.39 128.278C12.3788 128.262 12.3732 128.239 12.3676 128.222C12.362 128.206 12.3564 128.189 12.3508 128.172C12.3452 128.155 12.3396 128.133 12.334 128.116C12.3284 128.099 12.3229 128.083 12.3173 128.066C12.3117 128.049 12.3061 128.027 12.3061 128.01C12.3005 127.993 12.3005 127.976 12.2949 127.959C12.2893 127.943 12.2892 127.92 12.2837 127.903C12.2837 127.887 12.278 127.87 12.278 127.853C12.278 127.836 12.2724 127.814 12.2724 127.797C12.2724 127.775 12.2668 127.752 12.2668 127.73L12.2837 132.957C12.2837 132.968 12.2837 132.98 12.2837 132.991C12.2837 133.002 12.2837 133.013 12.2837 133.024C12.2837 133.041 12.2837 133.063 12.2893 133.08C12.2893 133.097 12.2949 133.114 12.2949 133.131C12.2949 133.147 12.3005 133.17 12.3061 133.187C12.3061 133.192 12.3061 133.198 12.3117 133.209C12.3117 133.22 12.3173 133.231 12.3173 133.237C12.3229 133.254 12.3285 133.276 12.3285 133.293C12.3341 133.31 12.3396 133.327 12.3452 133.343C12.3508 133.36 12.3564 133.382 12.362 133.399C12.3676 133.405 12.3676 133.416 12.3676 133.422C12.3732 133.433 12.3732 133.438 12.3788 133.45C12.3844 133.466 12.3956 133.489 12.4012 133.506C12.4068 133.522 12.418 133.539 12.4236 133.556C12.4348 133.573 12.4404 133.595 12.4516 133.612C12.4572 133.623 12.4628 133.629 12.4684 133.64C12.474 133.646 12.4739 133.651 12.4795 133.657C12.4907 133.679 12.5075 133.701 12.5187 133.724C12.5299 133.735 12.5355 133.752 12.5467 133.763C12.5635 133.785 12.5803 133.813 12.6027 133.836C12.6083 133.847 12.6138 133.853 12.625 133.864L12.6306 133.869C12.6586 133.909 12.6922 133.948 12.7314 133.987C12.7426 133.998 12.7482 134.004 12.7593 134.015C12.7873 134.043 12.8153 134.071 12.8433 134.099C12.8489 134.104 12.8545 134.11 12.8601 134.116C12.8657 134.121 12.8769 134.127 12.8825 134.138C12.8993 134.155 12.9161 134.172 12.9385 134.188C12.9665 134.205 12.9832 134.222 13 134.233Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M13.3862 129.28L13.3974 134.507L65.5353 164.807L65.5241 159.58L13.3862 129.28Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M70.9023 159.58L70.9135 164.807L150.911 118.619L150.895 113.391L70.9023 159.58Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M70.1469 165.149C70.2141 165.126 70.2812 165.098 70.3484 165.076C70.354 165.076 70.3596 165.07 70.3652 165.07C70.3708 165.065 70.382 165.065 70.3876 165.059C70.4716 165.026 70.5555 164.986 70.6394 164.947C70.645 164.942 70.6562 164.942 70.6618 164.936C70.7458 164.897 70.8297 164.852 70.9137 164.802L70.8969 159.574C70.8185 159.619 70.7346 159.664 70.645 159.709C70.6394 159.714 70.6282 159.714 70.6226 159.72C70.5387 159.759 70.4548 159.793 70.3708 159.832C70.3596 159.838 70.3428 159.843 70.3316 159.849C70.2644 159.877 70.1973 159.899 70.1301 159.921C70.1189 159.927 70.1078 159.927 70.0966 159.933C70.035 159.955 69.979 159.972 69.9174 159.989C69.8951 159.994 69.8727 160 69.8503 160.005C69.8111 160.017 69.772 160.028 69.7328 160.033C69.7104 160.039 69.688 160.045 69.66 160.05C69.6153 160.061 69.5761 160.073 69.5313 160.078C69.5089 160.084 69.4921 160.089 69.4698 160.089C69.4306 160.095 69.3914 160.106 69.3522 160.112C69.3298 160.117 69.3074 160.117 69.285 160.123C69.2347 160.134 69.1843 160.14 69.1284 160.145C69.1172 160.145 69.1116 160.151 69.1004 160.151C69.0388 160.162 68.9773 160.168 68.9213 160.173C68.9045 160.173 68.8933 160.179 68.8765 160.179C68.8317 160.185 68.7869 160.19 68.7366 160.19C68.7142 160.19 68.6918 160.196 68.6694 160.196C68.6302 160.201 68.5911 160.201 68.5519 160.201C68.5295 160.201 68.5015 160.201 68.4792 160.207C68.44 160.207 68.4064 160.212 68.3672 160.212C68.3449 160.212 68.3225 160.212 68.2945 160.212C68.2553 160.212 68.2161 160.212 68.1769 160.212C68.1489 160.212 68.1265 160.212 68.0986 160.212C68.0594 160.212 68.0258 160.212 67.9866 160.212C67.9643 160.212 67.9363 160.212 67.9139 160.207C67.8691 160.207 67.83 160.201 67.7852 160.201C67.7572 160.201 67.7348 160.196 67.7068 160.196C67.6676 160.19 67.6229 160.19 67.5837 160.185C67.5613 160.185 67.5333 160.179 67.511 160.179C67.4494 160.173 67.3822 160.162 67.3206 160.157C67.3094 160.157 67.2983 160.157 67.2871 160.151C67.2143 160.14 67.1416 160.129 67.0744 160.117C67.0464 160.112 67.024 160.106 66.996 160.101C66.9625 160.095 66.9289 160.089 66.8953 160.084C66.8674 160.078 66.8394 160.073 66.817 160.067C66.7834 160.061 66.7498 160.05 66.7218 160.045C66.6938 160.039 66.6658 160.033 66.6435 160.022C66.6099 160.017 66.5819 160.005 66.5484 159.994C66.5204 159.989 66.498 159.977 66.47 159.972C66.4364 159.961 66.4084 159.955 66.3748 159.944C66.3524 159.938 66.3301 159.927 66.3077 159.921C66.2517 159.905 66.1957 159.882 66.1453 159.866C66.1342 159.86 66.123 159.86 66.1118 159.854C66.0502 159.832 65.983 159.804 65.9215 159.776C65.9047 159.77 65.8879 159.759 65.8711 159.754C65.8207 159.731 65.776 159.709 65.7312 159.686C65.7144 159.675 65.6976 159.67 65.6809 159.658C65.6193 159.63 65.5633 159.597 65.5073 159.563L65.5241 164.791C65.5801 164.824 65.6417 164.852 65.6977 164.886C65.7144 164.897 65.7312 164.902 65.748 164.914C65.7928 164.936 65.8432 164.958 65.8879 164.981C65.9047 164.986 65.9215 164.998 65.9383 165.003C65.9998 165.031 66.0614 165.054 66.1286 165.082C66.1398 165.087 66.151 165.087 66.1622 165.093C66.2181 165.115 66.2741 165.132 66.3301 165.149C66.3413 165.154 66.3468 165.154 66.358 165.16C66.3692 165.165 66.386 165.165 66.3972 165.171C66.4252 165.182 66.4588 165.188 66.4923 165.199C66.5203 165.205 66.5427 165.216 66.5707 165.221C66.6043 165.233 66.6323 165.238 66.6659 165.249C66.6938 165.255 66.7162 165.261 66.7442 165.272C66.7778 165.277 66.8113 165.289 66.8393 165.294C66.8673 165.3 66.8953 165.305 66.9177 165.311C66.9513 165.317 66.9849 165.322 67.0184 165.333C67.0352 165.339 67.0576 165.339 67.0744 165.345C67.08 165.345 67.0856 165.345 67.0968 165.35C67.1696 165.361 67.2423 165.373 67.3095 165.384C67.3207 165.384 67.3318 165.384 67.3374 165.389C67.399 165.401 67.4662 165.406 67.5278 165.412C67.5389 165.412 67.5501 165.412 67.5557 165.417C67.5725 165.417 67.5837 165.417 67.6004 165.423C67.6396 165.429 67.6844 165.429 67.7236 165.434C67.7516 165.434 67.774 165.44 67.802 165.44C67.8468 165.44 67.8859 165.445 67.9307 165.445C67.9475 165.445 67.9643 165.445 67.981 165.445C67.9866 165.445 67.9923 165.445 68.0035 165.445C68.0426 165.445 68.0762 165.445 68.1154 165.445C68.1433 165.445 68.1657 165.445 68.1937 165.445C68.2329 165.445 68.272 165.445 68.3112 165.445C68.3336 165.445 68.3504 165.445 68.3728 165.445C68.3784 165.445 68.3784 165.445 68.384 165.445C68.4232 165.445 68.4568 165.445 68.496 165.44C68.5183 165.44 68.5463 165.44 68.5687 165.434C68.6079 165.434 68.647 165.429 68.6862 165.429C68.7086 165.429 68.7254 165.429 68.7478 165.423C68.7478 165.423 68.7478 165.423 68.7534 165.423C68.7982 165.417 68.8485 165.412 68.8933 165.412C68.9101 165.412 68.9213 165.412 68.938 165.406C68.9996 165.401 69.0612 165.389 69.1172 165.384C69.1284 165.384 69.1339 165.378 69.1451 165.378C69.1955 165.373 69.2515 165.361 69.3018 165.356C69.3242 165.35 69.341 165.35 69.3634 165.345C69.4026 165.339 69.4418 165.328 69.481 165.322C69.4866 165.322 69.4921 165.322 69.4921 165.322C69.5089 165.317 69.5257 165.317 69.5369 165.311C69.5817 165.3 69.6209 165.294 69.6656 165.283C69.688 165.277 69.7104 165.272 69.7384 165.266C69.7776 165.255 69.8167 165.244 69.8559 165.238C69.8671 165.233 69.8783 165.233 69.8895 165.227C69.9007 165.221 69.9119 165.221 69.9174 165.216C69.979 165.199 70.0406 165.182 70.0966 165.16C70.1246 165.16 70.1357 165.154 70.1469 165.149Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M13.4029 126.168C11.9142 127.03 11.903 128.424 13.3861 129.286L65.524 159.586C67.0071 160.448 69.4136 160.448 70.9023 159.586L150.9 113.397C152.389 112.535 152.4 111.142 150.917 110.28L98.779 79.9797C97.2959 79.1178 94.8893 79.1178 93.4006 79.9797L13.4029 126.168Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M12.3395 128.693C12.3619 128.76 12.4291 128.805 12.4963 128.793L83.8977 120.857C83.9536 120.852 84.004 120.813 84.0208 120.757L97.9115 79.5657C97.9395 79.4761 97.8835 79.381 97.7884 79.3698L97.5925 79.3474C97.5198 79.3418 97.4582 79.381 97.4358 79.4481L83.5842 120.505C83.5674 120.561 83.5171 120.6 83.4611 120.605L12.4683 128.502C12.3676 128.508 12.306 128.603 12.3395 128.693Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M29.9355 161.12C32.526 162.613 32.5421 165.038 29.9676 166.531C27.3931 168.025 23.2076 168.025 20.6171 166.531C18.0265 165.038 18.0158 162.613 20.5903 161.12C23.1594 159.627 27.3449 159.627 29.9355 161.12Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M37.2687 88.4533C39.8593 89.9466 39.8754 92.3712 37.3009 93.8645C34.7264 95.3578 30.5409 95.3578 27.9503 93.8645C25.3598 92.3712 25.349 89.9466 27.9235 88.4533C30.4927 86.96 34.6782 86.96 37.2687 88.4533Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M126.39 142.083C129.698 143.994 129.719 147.087 126.433 148.998C123.146 150.909 117.799 150.909 114.492 148.998C111.184 147.087 111.168 143.994 114.454 142.083C117.735 140.172 123.077 140.172 126.39 142.083Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M125.314 142.854C127.947 144.374 127.963 146.841 125.346 148.361C122.729 149.881 118.468 149.881 115.835 148.361C113.202 146.841 113.186 144.374 115.803 142.854C118.426 141.334 122.681 141.334 125.314 142.854Z" fill="#EDEDED"/>
-<path d="M126.374 142.811C126.374 142.838 126.368 142.87 126.368 142.897C126.368 142.923 126.363 142.95 126.358 142.972C126.352 142.998 126.347 143.03 126.342 143.057C126.336 143.084 126.331 143.111 126.326 143.132C126.32 143.159 126.315 143.191 126.304 143.218C126.299 143.245 126.288 143.271 126.283 143.293C126.272 143.319 126.267 143.346 126.256 143.378C126.245 143.405 126.24 143.427 126.229 143.453C126.219 143.48 126.208 143.512 126.192 143.539C126.181 143.566 126.17 143.587 126.16 143.614C126.144 143.641 126.133 143.673 126.117 143.699C126.106 143.721 126.09 143.748 126.079 143.769C126.058 143.801 126.037 143.839 126.015 143.871C125.999 143.892 125.988 143.914 125.972 143.935C125.946 143.972 125.919 144.01 125.892 144.047C125.881 144.063 125.871 144.08 125.855 144.096C125.806 144.154 125.758 144.213 125.705 144.272C125.689 144.288 125.678 144.304 125.662 144.315C125.619 144.358 125.576 144.401 125.528 144.443C125.507 144.465 125.485 144.481 125.464 144.502C125.437 144.529 125.41 144.551 125.378 144.577C125.351 144.599 125.325 144.62 125.298 144.642C125.266 144.663 125.239 144.69 125.207 144.711C125.18 144.733 125.148 144.754 125.121 144.775C125.089 144.797 125.057 144.823 125.025 144.845C124.993 144.866 124.966 144.888 124.934 144.909C124.902 144.931 124.864 144.952 124.827 144.973C124.784 145 124.736 145.027 124.693 145.054C124.57 145.129 124.436 145.193 124.302 145.257C124.265 145.273 124.233 145.289 124.195 145.305C124.072 145.359 123.949 145.412 123.826 145.466C123.81 145.471 123.794 145.482 123.778 145.487C123.644 145.541 123.505 145.584 123.36 145.632C123.264 145.664 123.162 145.691 123.061 145.717C122.986 145.739 122.911 145.76 122.83 145.776C122.723 145.803 122.616 145.824 122.509 145.846C122.429 145.862 122.354 145.878 122.274 145.894C122.242 145.899 122.21 145.905 122.177 145.91C122.044 145.931 121.91 145.953 121.776 145.969C121.739 145.974 121.696 145.98 121.658 145.985C121.583 145.996 121.503 145.996 121.423 146.006C121.294 146.017 121.16 146.028 121.032 146.033C120.946 146.038 120.866 146.038 120.78 146.038C120.673 146.038 120.566 146.044 120.465 146.038C120.374 146.038 120.288 146.033 120.197 146.033C120.101 146.028 119.999 146.022 119.903 146.017C119.812 146.012 119.726 146.001 119.635 145.996C119.539 145.985 119.442 145.974 119.346 145.964C119.26 145.953 119.175 145.942 119.089 145.926C118.987 145.91 118.886 145.894 118.784 145.873C118.704 145.856 118.624 145.84 118.543 145.824C118.42 145.798 118.302 145.766 118.185 145.739C118.11 145.717 118.029 145.701 117.954 145.675C117.912 145.664 117.874 145.648 117.831 145.637C117.714 145.6 117.596 145.557 117.478 145.514C117.446 145.503 117.408 145.493 117.376 145.476C117.269 145.434 117.168 145.391 117.066 145.343C117.018 145.321 116.964 145.3 116.916 145.278C116.772 145.209 116.627 145.134 116.488 145.054C115.342 144.395 114.775 143.528 114.775 142.661L114.77 145.155C114.77 146.022 115.337 146.884 116.483 147.548C116.622 147.628 116.761 147.703 116.905 147.767C116.954 147.789 117.007 147.81 117.055 147.832C117.141 147.869 117.227 147.912 117.318 147.944C117.334 147.949 117.35 147.955 117.366 147.96C117.398 147.971 117.435 147.987 117.467 147.997C117.585 148.04 117.703 148.078 117.821 148.121C117.863 148.131 117.901 148.147 117.944 148.158C117.971 148.169 117.997 148.174 118.024 148.185C118.072 148.201 118.126 148.206 118.174 148.222C118.292 148.254 118.415 148.286 118.533 148.313C118.565 148.319 118.597 148.329 118.629 148.335C118.677 148.345 118.725 148.351 118.773 148.361C118.875 148.383 118.977 148.399 119.084 148.415C119.127 148.42 119.164 148.431 119.207 148.436C119.25 148.442 119.298 148.447 119.341 148.452C119.437 148.463 119.533 148.474 119.63 148.485C119.678 148.49 119.721 148.495 119.769 148.501C119.812 148.506 119.854 148.506 119.897 148.506C119.994 148.511 120.095 148.517 120.192 148.522C120.24 148.522 120.288 148.527 120.342 148.527C120.379 148.527 120.422 148.527 120.459 148.527C120.566 148.527 120.673 148.527 120.775 148.527C120.829 148.527 120.882 148.527 120.936 148.527C120.968 148.527 121 148.522 121.027 148.522C121.161 148.517 121.289 148.506 121.417 148.495C121.471 148.49 121.524 148.49 121.573 148.485C121.599 148.485 121.621 148.479 121.648 148.474C121.685 148.468 121.728 148.463 121.765 148.458C121.899 148.442 122.033 148.42 122.167 148.399C122.199 148.394 122.231 148.388 122.263 148.383C122.279 148.377 122.295 148.377 122.311 148.377C122.375 148.367 122.434 148.351 122.499 148.34C122.606 148.319 122.713 148.297 122.82 148.27C122.895 148.254 122.97 148.228 123.05 148.212C123.152 148.185 123.253 148.158 123.35 148.126C123.371 148.121 123.392 148.115 123.414 148.11C123.532 148.072 123.649 148.03 123.767 147.987C123.783 147.981 123.799 147.971 123.815 147.965C123.944 147.917 124.067 147.864 124.185 147.805C124.222 147.789 124.254 147.773 124.292 147.757C124.425 147.692 124.559 147.623 124.682 147.553C124.704 147.537 124.731 147.526 124.752 147.51C124.773 147.5 124.795 147.484 124.816 147.468C124.854 147.446 124.886 147.425 124.923 147.403C124.955 147.382 124.987 147.361 125.014 147.339C125.046 147.318 125.078 147.291 125.111 147.27C125.143 147.248 125.169 147.227 125.196 147.205C125.228 147.184 125.255 147.157 125.287 147.136C125.314 147.114 125.341 147.093 125.367 147.071C125.394 147.045 125.426 147.023 125.453 146.997C125.464 146.986 125.475 146.975 125.485 146.964C125.496 146.954 125.507 146.943 125.512 146.938C125.56 146.895 125.603 146.852 125.646 146.809C125.662 146.793 125.673 146.782 125.689 146.766C125.742 146.708 125.79 146.649 125.838 146.59L125.844 146.584C125.855 146.568 125.865 146.558 125.876 146.542C125.903 146.504 125.929 146.467 125.956 146.429C125.972 146.408 125.983 146.386 125.999 146.365C126.02 146.333 126.042 146.295 126.063 146.263C126.069 146.253 126.074 146.247 126.079 146.237C126.085 146.22 126.095 146.21 126.101 146.194C126.117 146.167 126.133 146.135 126.144 146.108C126.154 146.081 126.165 146.06 126.176 146.033C126.186 146.006 126.202 145.974 126.213 145.947C126.218 145.937 126.224 145.921 126.229 145.91C126.235 145.899 126.235 145.889 126.24 145.873C126.251 145.846 126.261 145.819 126.267 145.787C126.272 145.76 126.283 145.733 126.288 145.712C126.293 145.685 126.304 145.653 126.31 145.626C126.315 145.61 126.32 145.594 126.32 145.578C126.32 145.567 126.326 145.557 126.326 145.546C126.331 145.519 126.336 145.487 126.342 145.46C126.347 145.434 126.347 145.407 126.352 145.385C126.358 145.359 126.358 145.327 126.358 145.3C126.358 145.284 126.363 145.268 126.363 145.246C126.363 145.23 126.363 145.214 126.363 145.193L126.368 142.699C126.374 142.741 126.374 142.779 126.374 142.811Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M124.661 140.317C126.936 141.628 126.946 143.758 124.688 145.07C122.429 146.381 118.757 146.381 116.482 145.07C114.208 143.758 114.197 141.628 116.456 140.317C118.72 139.005 122.392 139.005 124.661 140.317Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.129 144.176C122.167 144.224 122.22 144.267 122.279 144.304C122.349 144.342 122.418 144.374 122.499 144.395L122.745 144.422C122.83 144.427 122.916 144.417 122.991 144.395C123.077 144.374 123.152 144.342 123.21 144.304C123.28 144.267 123.323 144.224 123.366 144.176C123.398 144.128 123.419 144.079 123.414 144.031L123.366 143.892C123.339 143.844 123.285 143.801 123.221 143.764C123.157 143.726 123.087 143.699 122.996 143.678C122.916 143.657 122.83 143.646 122.756 143.651C122.67 143.646 122.584 143.657 122.504 143.678C122.413 143.699 122.343 143.726 122.279 143.764C122.215 143.801 122.167 143.844 122.129 143.892C122.097 143.94 122.076 143.988 122.081 144.037C122.081 144.079 122.097 144.128 122.129 144.176Z" fill="#DA3635"/>
-<path d="M120.877 142.613C120.77 142.543 120.668 142.479 120.566 142.415C120.465 142.351 120.352 142.287 120.24 142.217L118.094 140.97L117.451 141.339L119.598 142.586C119.71 142.65 119.828 142.715 119.935 142.774C120.047 142.832 120.16 142.891 120.277 142.956C120.395 143.009 120.513 143.073 120.636 143.132C120.759 143.191 120.904 143.255 121.043 143.32L121.503 143.052C121.391 142.966 121.278 142.886 121.177 142.816C121.075 142.747 120.979 142.677 120.877 142.613Z" fill="#DA3635"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" fill="white"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" fill="white"/>
-<path d="M34.7304 64.9359C35.0037 65.5759 36.097 65.7092 36.2903 64.9025C36.4037 64.4559 36.497 64.5159 36.7437 64.1292C36.9704 63.7425 37.257 64.1159 37.4703 63.6292C37.757 62.9692 37.697 60.9759 37.1504 60.4759C36.637 60.0092 36.237 60.1359 35.7503 60.5425C35.5103 60.7692 35.3837 61.0425 35.1237 61.2492C34.9303 61.3959 34.6437 61.4759 34.4837 61.5359C33.377 62.0025 34.1303 62.6759 34.2903 63.3492C34.357 63.6092 34.337 63.9892 34.437 64.2359C34.5636 64.5559 34.837 64.7159 34.937 65.0092" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" fill="white"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" fill="white"/>
-<path d="M40.457 69.1492C40.1503 70.3692 40.1036 71.8959 40.1036 73.3092C40.1036 74.8692 40.5037 76.3159 40.457 77.8559C39.9103 77.9692 39.3503 73.8892 39.2703 73.2892C39.1236 72.3425 39.0303 71.3092 39.2037 70.3825C39.2703 69.9959 39.9903 68.0492 40.6036 68.8559" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" fill="white"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" fill="white"/>
-<path d="M30.957 70.7225C29.8637 70.5625 30.037 74.6759 30.0237 75.4959C30.0103 76.4292 29.9303 77.1825 29.5903 78.0692C29.477 78.3425 28.9971 79.0625 29.3171 79.3559C29.7504 79.7559 30.2303 79.0025 30.3303 78.6625C30.2637 79.0025 30.4104 79.0159 30.537 79.1959C30.8904 78.5359 30.8903 77.5092 31.097 76.7825C31.3237 75.9492 31.5303 75.1758 31.5303 74.3092C31.5303 73.3292 31.597 72.3625 31.597 71.4159C31.597 71.2092 31.7237 70.3892 31.5637 70.2425C31.2237 69.9359 30.8104 70.4225 30.8104 70.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" fill="white"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" fill="white"/>
-<path d="M32.1771 83.2092C31.7771 83.6892 31.3438 84.1892 30.8904 84.6425C30.1638 85.3825 30.117 85.9092 30.1637 86.9559C30.2304 87.9225 31.3237 89.3025 31.1637 87.5959C31.0837 86.7425 31.0638 86.8225 31.7238 86.3892C32.3838 85.9559 33.3304 85.2025 33.7038 84.4892C34.2504 83.4292 32.6904 82.2225 32.0171 83.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9292 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" fill="white"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9293 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9292 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" fill="white"/>
-<path d="M37.4504 83.5026C37.4504 85.0626 37.6571 86.6026 37.7238 88.1826C37.7571 88.9559 37.6438 89.8692 37.7238 90.6226C37.8038 91.4426 38.6571 91.9426 39.2971 92.4893C39.7771 91.9293 39.1038 90.6426 39.0705 89.9359C39.0038 88.7959 39.2971 87.7159 39.4705 86.6092C39.5705 85.9492 40.1105 84.0359 39.7305 83.3959C39.1171 82.3692 37.6704 83.3292 37.4304 84.1492" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" fill="white"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" fill="white"/>
-<path d="M30.1637 85.3492C28.9903 85.4759 29.937 88.8359 30.777 89.1559C31.6904 89.5092 31.0504 87.9959 30.8704 87.5492C30.6437 86.9559 30.1971 85.8159 30.2437 85.2026" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" fill="white"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" fill="white"/>
-<path d="M37.677 90.2825C37.0636 91.3625 37.777 92.4225 38.757 93.0625C39.1903 93.3492 39.8503 93.6892 40.1103 93.0625C40.337 92.5025 39.657 91.6625 39.4837 91.1625C39.497 93.2825 38.0836 91.0359 37.6836 90.2292C37.537 90.3092 37.5837 90.3759 37.557 90.5025" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.1372 76.0759C23.7172 76.2692 23.9238 77.0892 23.8305 77.6159C23.7638 77.9559 23.6238 78.1759 23.6038 78.5492C23.5905 78.8559 23.7172 79.3825 23.4572 79.5625C23.1972 79.7425 22.6038 79.4626 22.4438 79.2559C22.1372 78.8359 22.3171 78.6159 22.3305 78.2092C22.3438 77.7625 21.6372 77.6292 21.8172 77.1626C21.9839 76.7692 22.7039 75.8692 23.1372 76.0759Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" fill="white"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" fill="white"/>
-<path d="M20.1838 81.5759C20.3438 82.3292 20.3305 83.1692 20.3905 83.9225C20.4572 84.5359 20.1972 86.0092 20.5505 86.4959C21.3239 87.5759 21.5172 85.2759 21.5505 84.8559C21.6439 83.7959 21.3106 83.0092 21.2439 81.9959" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" fill="white"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" fill="white"/>
-<path d="M21.4505 87.7159C21.4639 87.8759 21.4372 88.0692 21.3705 88.1959C20.4372 88.4225 17.9305 88.6292 18.6839 89.8359C19.2172 89.8825 19.8439 89.5492 20.3705 89.4159C20.9305 89.2692 21.5439 89.2692 22.1039 89.1092C22.7172 88.9492 23.0372 88.6292 22.8305 87.9225C22.7172 87.5225 22.7506 87.4092 22.2172 87.4225C21.9106 87.4359 21.6705 87.3759 21.6039 87.7759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.8972 87.7159C23.6238 88.0692 23.8171 89.5825 23.8304 90.1892C23.8438 91.1692 23.8172 92.4359 24.9705 92.3559C25.0038 91.2492 24.9572 90.1559 24.9038 89.0625C24.8905 88.7092 25.0838 87.8226 24.9171 87.5492C24.6704 87.1959 23.8972 87.1026 23.8972 87.7159Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" fill="white"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" fill="white"/>
-<path d="M18.6237 89.1426C17.8837 88.2092 17.897 89.9626 18.177 90.4426C18.8171 91.6026 18.7371 89.3159 18.6104 89.0759" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M36.3905 64.5826C37.3705 64.5826 38.4505 64.4359 39.1105 65.3026C39.5438 65.8826 40.8438 67.7492 40.7504 68.4359C40.6571 69.1626 39.6105 69.4159 39.4771 70.1692C39.3505 70.8959 39.4905 72.0359 39.5438 72.7759C39.6705 74.6759 40.1571 76.4892 40.1838 78.4159C40.1971 79.4426 40.6638 80.4426 40.6171 81.4359C40.5838 82.1292 40.0038 83.4759 39.3172 83.7492C38.8038 83.9426 38.4971 83.6026 38.0438 83.5226C37.5438 83.4559 37.3171 83.6359 36.8838 83.8426C35.6105 84.4826 34.5705 84.6492 33.3638 83.7759C32.9438 83.4892 32.6238 83.1959 32.1771 82.9559C31.5638 82.6492 31.3572 82.7626 31.3238 81.9092C31.2572 81.0892 31.3705 80.2692 31.3238 79.4626C31.2572 78.3559 31.7238 77.1826 31.9371 76.0892C32.1638 74.8026 32.0038 73.9826 31.7571 72.7292C31.6904 72.4092 31.8372 71.4892 31.5772 71.2692C31.2372 70.9626 30.4838 71.5426 30.1171 71.2026C29.4905 70.6692 30.9704 68.2759 31.4371 67.7826C32.2104 66.9292 33.1705 65.9692 34.0571 65.2559C34.1571 65.1892 34.4905 64.9026 34.6171 64.8892C35.0838 64.8226 34.7771 64.9892 35.1171 65.1159C35.6971 65.4226 36.0505 65.4359 36.3905 64.5826Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" fill="white"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" fill="white"/>
-<path d="M38.3838 65.0825C38.3704 64.9359 38.2371 64.9225 38.3704 64.8092C37.8371 67.8625 35.9437 70.6292 34.6704 73.4559C34.4437 73.9692 34.1104 74.9492 33.5904 75.1759C33.0771 75.3825 32.1105 75.1625 31.5771 75.0959C30.4838 74.9825 30.7238 75.5759 30.5771 76.5292C30.4171 77.6092 30.1304 78.0225 31.5104 78.0892C32.3637 78.1359 33.8104 78.3759 34.2904 77.5292C34.7904 76.6625 34.6438 75.2959 33.5638 75.2825C34.2038 75.1225 34.8371 73.5959 35.3171 72.8425C35.8638 71.9759 36.2637 70.7825 36.8437 69.9359C37.5171 68.9692 38.3237 67.7492 38.6904 66.6225C38.8171 66.2225 39.1704 64.2759 38.2704 64.7425" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" fill="white"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" fill="#DA3635"/>
-<path d="M34.8105 61.7225C34.8438 61.9492 34.9571 62.2025 35.0838 62.3625C35.1171 61.5759 35.5972 60.6559 36.3705 60.3359C37.3638 59.9359 37.3039 60.8492 37.3972 61.6025C37.4772 62.4092 37.6705 63.1959 36.9638 63.7425C36.7038 63.9359 35.9838 63.9225 36.4971 64.3559C36.7238 64.5492 37.3038 64.2892 37.6038 64.5492C37.7838 64.0692 37.6971 63.6359 37.9438 63.1359C38.1838 62.6025 38.5571 62.1092 38.4238 61.4959C38.1971 60.5159 36.6705 59.5825 35.7571 59.3759C34.4371 59.0692 33.7305 60.4825 33.4772 61.6092C33.3305 62.2692 33.4105 62.5892 32.8838 63.0692C32.3372 63.5692 31.6438 63.8425 31.1305 64.4225C30.3105 65.3359 30.1638 67.0559 31.1972 67.8959C31.6772 67.2359 32.4038 66.9492 33.0305 66.4492C33.4838 66.0959 34.4971 65.4692 34.7505 65.0025C35.0705 64.4092 34.7638 63.6225 34.5105 63.1559C34.3638 62.8959 33.9772 62.5625 34.0772 62.2225C34.1905 61.8825 34.5905 61.7425 34.8172 61.9959" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" fill="white"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" fill="white"/>
-<path d="M22.3037 79.0626C22.1104 79.6092 21.3904 79.5759 20.9704 79.9159C20.6504 80.1892 20.1637 80.6092 20.1837 81.3159C20.197 81.8959 20.6971 81.7159 20.9571 82.0892C21.1171 82.3292 21.037 83.2292 21.1037 83.5492C21.1837 84.0292 21.2304 84.4492 21.2504 84.9492C21.2837 85.8826 21.0904 86.7492 21.1037 87.6826C21.377 87.7826 22.7104 88.0226 22.9504 87.8426C23.2571 87.6159 23.1437 86.3626 23.177 86.0092C23.257 86.3626 23.2771 87.2292 23.5304 87.4892C23.7904 87.7626 24.7037 87.9226 24.9304 87.6959C25.217 87.3892 24.9437 85.7692 24.9771 85.3492C24.9904 84.7559 25.0771 84.1626 25.1237 83.5826C25.2371 82.3159 25.6371 80.6226 25.0571 79.4359C24.7837 78.8759 24.2037 78.4559 23.6437 78.7959C23.3237 78.9892 23.6304 79.4559 22.9838 79.4892C22.8038 79.5026 22.5037 79.1492 22.4237 79.1359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.3972 74.9359C22.9305 75.1625 23.0904 75.6625 22.7571 75.9159C22.4038 76.1892 21.9705 75.9292 21.5705 76.4159C20.8172 77.3159 21.4705 78.1492 22.4705 78.3625C22.4705 78.3625 23.5638 77.6225 23.2905 76.2092C23.3838 75.8025 23.5572 75.3025 23.3972 74.9359Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M36.0503 38.1515L32.3249 35.9867C31.9235 35.7521 31.6665 35.2605 31.5447 34.5028L35.2701 36.6677C35.3919 37.4254 35.6535 37.917 36.0503 38.1515Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.8663 47.2034L22.1409 45.0385C22.2175 45.0836 22.2942 45.1242 22.3754 45.1648C23.3857 45.67 24.5719 45.8098 25.9339 45.5752C27.2915 45.3452 28.7528 44.7769 30.3133 43.8749C31.9731 42.9187 33.4344 41.8679 34.7062 40.7178C35.9736 39.5677 37.0741 38.4086 37.9942 37.2359C38.1565 37.0284 38.3054 36.8886 38.4362 36.812C38.576 36.7308 38.6933 36.7218 38.788 36.7759L42.5133 38.9408C42.4186 38.8866 42.3014 38.8957 42.1616 38.9768C42.0308 39.0535 41.882 39.1933 41.7196 39.4008C40.795 40.5734 39.699 41.7326 38.4271 42.8827C37.1553 44.0282 35.694 45.0836 34.0342 46.0398C32.4737 46.9418 31.0169 47.5056 29.6548 47.7401C28.2973 47.9747 27.1111 47.8348 26.0963 47.3297C26.0196 47.2891 25.943 47.2485 25.8663 47.2034Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.4212 35.6663L33.6958 33.5014C33.7184 33.515 33.7409 33.524 33.7635 33.533C33.9349 33.6052 34.1288 33.6097 34.3543 33.542C34.5753 33.4744 34.8143 33.3706 35.0669 33.2263C35.6036 32.9196 36.1088 32.4506 36.5868 31.8236C37.0649 31.1967 37.4888 30.4571 37.8497 29.6046C38.2105 28.7567 38.4991 27.8186 38.7111 26.7993C38.9231 25.78 39.0268 24.7246 39.0223 23.6377C39.0178 21.9103 38.7697 20.5301 38.2826 19.5108C37.8587 18.6223 37.2949 17.9729 36.6003 17.567L40.3257 19.7318C41.0248 20.1378 41.5841 20.7827 42.008 21.6757C42.4996 22.6995 42.7432 24.0751 42.7477 25.8025C42.7522 26.894 42.6485 27.9494 42.4365 28.9642C42.2246 29.9835 41.9404 30.9171 41.5751 31.7695C41.2098 32.6174 40.7903 33.3571 40.3122 33.9885C39.8341 34.6154 39.329 35.0845 38.7923 35.3912C38.5442 35.5355 38.3052 35.6438 38.0797 35.7069C37.8542 35.7746 37.6603 35.7701 37.4889 35.6979C37.4663 35.6889 37.4438 35.6798 37.4212 35.6663Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.9434 39.7523L26.218 37.5874C26.5698 37.7904 27.0524 37.7182 27.6658 37.3619C28.0041 37.168 28.3469 36.9064 28.6896 36.5817C29.0324 36.2614 29.3616 35.851 29.6864 35.3504C30.0066 34.8498 30.2997 34.2544 30.5658 33.5598C30.8319 32.8698 31.0529 32.0625 31.2379 31.1379L34.9633 33.3028C34.7784 34.2274 34.5574 35.0347 34.2913 35.7247C34.0252 36.4193 33.732 37.0146 33.4118 37.5153C33.0916 38.0159 32.7578 38.4263 32.4151 38.7466C32.0723 39.0713 31.7295 39.3284 31.3912 39.5268C30.7824 39.8831 30.2997 39.9553 29.9434 39.7523Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.9633 33.3028L31.2424 31.1424L32.4692 24.8777L36.1947 27.0426L34.9633 33.3028Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M28.144 42.454L24.4186 40.2891C24.342 40.244 24.2653 40.1899 24.1931 40.1313C23.8684 39.8607 23.6294 39.4593 23.467 38.9226C23.3046 38.3858 23.228 37.7544 23.2235 37.0283C23.219 35.9639 23.3948 34.7867 23.7466 33.4968C24.0984 32.2069 24.6216 30.926 25.3161 29.6541C26.0107 28.3823 26.8812 27.1645 27.9185 26.0144C28.9559 24.8598 30.1601 23.8901 31.5222 23.1054C32.2528 22.6814 32.8933 22.3792 33.448 22.1943C33.9983 22.0094 34.5214 21.8966 35.013 21.8651L38.7385 24.0299C38.2468 24.0615 37.7237 24.1743 37.1734 24.3592C36.6232 24.5441 35.9782 24.8508 35.2476 25.2702C33.8855 26.055 32.6813 27.0247 31.6439 28.1793C30.6066 29.3294 29.7361 30.5426 29.0416 31.819C28.347 33.0954 27.8238 34.3763 27.472 35.6617C27.1202 36.9516 26.9489 38.1288 26.9489 39.1932C26.9489 39.9193 27.03 40.5507 27.1924 41.0875C27.3548 41.6242 27.5938 42.0256 27.9185 42.2962C27.9907 42.3548 28.0674 42.4089 28.144 42.454Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M24.2652 49.5846L20.5398 47.4197C19.4663 46.7973 18.6139 45.7961 17.978 44.425C17.2925 42.9366 16.9452 41.0063 16.9361 38.6249C16.9316 37.2583 17.0804 35.8556 17.3736 34.4169C17.6668 32.9781 18.0907 31.5529 18.632 30.1412C19.1732 28.7295 19.8271 27.3494 20.5849 26.0009C21.3426 24.6523 22.195 23.385 23.1286 22.1988C24.0667 21.0126 25.0725 19.9257 26.1505 18.9469C27.2284 17.9682 28.3605 17.1339 29.5376 16.4528C30.5389 15.8755 31.5221 15.4335 32.4827 15.1313C33.4434 14.8292 34.35 14.6713 35.2114 14.6668C36.0683 14.6623 36.8576 14.8111 37.5792 15.1178C37.7642 15.1945 37.9401 15.2847 38.1115 15.3839L41.8368 17.5488C41.6654 17.4496 41.4896 17.3594 41.3047 17.2827C40.583 16.9805 39.7938 16.8317 38.9368 16.8317C38.0799 16.8362 37.1688 16.994 36.2081 17.2962C35.2475 17.5984 34.2643 18.0404 33.263 18.6177C32.0859 19.2987 30.9538 20.1286 29.8759 21.1118C28.7979 22.0905 27.7876 23.1775 26.854 24.3637C25.9159 25.5499 25.068 26.8172 24.3103 28.1658C23.5481 29.5143 22.8986 30.8944 22.3574 32.3061C21.8162 33.7178 21.3967 35.143 21.099 36.5818C20.8014 38.0205 20.657 39.4232 20.6615 40.7898C20.6661 43.1711 21.0134 45.106 21.7034 46.5899C22.3394 47.9655 23.1963 48.9622 24.2652 49.5846Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.7384 24.0255L37.2365 31.6883C37.0336 32.7482 36.9298 33.5871 36.9343 34.196C36.9343 34.647 36.984 34.9943 37.0832 35.2288C37.1824 35.4678 37.3177 35.6212 37.4846 35.6933C37.656 35.7655 37.8499 35.77 38.0754 35.7024C38.2964 35.6347 38.5355 35.531 38.788 35.3867C39.3248 35.08 39.8299 34.6109 40.308 33.984C40.7861 33.3571 41.21 32.6174 41.5708 31.765C41.9316 30.9171 42.2203 29.9789 42.4323 28.9596C42.6442 27.9403 42.7479 26.885 42.7434 25.798C42.7389 24.0706 42.4909 22.6905 42.0038 21.6712C41.5167 20.6474 40.8447 19.9438 39.9967 19.5649C39.1488 19.1816 38.1521 19.1049 36.9975 19.3349C35.8474 19.5649 34.6026 20.0701 33.272 20.8368C31.8108 21.6802 30.4442 22.7897 29.1678 24.1653C27.8914 25.5409 26.7819 27.0699 25.8393 28.7432C24.8921 30.4209 24.148 32.1889 23.6068 34.0426C23.0655 35.8963 22.7994 37.7365 22.8039 39.5541C22.8084 41.6829 23.1061 43.3877 23.6969 44.6596C24.2833 45.9315 25.0861 46.8245 26.0964 47.3296C27.1067 47.8348 28.2929 47.9746 29.6549 47.74C31.0125 47.51 32.4738 46.9417 34.0343 46.0397C35.694 45.0835 37.1553 44.0327 38.4272 42.8826C39.6946 41.7325 40.7951 40.5734 41.7197 39.4007C41.882 39.1932 42.0309 39.0534 42.1617 38.9768C42.3917 38.846 42.5586 38.9001 42.6713 39.1346L43.0817 40.1404C41.9181 41.7144 40.5921 43.1893 39.1037 44.5604C37.6154 45.9315 35.9286 47.1672 34.0433 48.2542C32.1536 49.3457 30.3991 50.0132 28.7754 50.2612C27.1472 50.5093 25.7355 50.3289 24.5358 49.7245C23.3361 49.1157 22.3935 48.0693 21.7079 46.5854C21.0224 45.0971 20.6751 43.1667 20.6661 40.7853C20.6616 39.4188 20.8104 38.0161 21.1036 36.5773C21.3968 35.1386 21.8207 33.7134 22.3619 32.3017C22.9032 30.89 23.5571 29.5099 24.3148 28.1613C25.0725 26.8128 25.925 25.5454 26.8586 24.3593C27.7967 23.1731 28.8025 22.0861 29.8804 21.1074C30.9584 20.1287 32.0904 19.2943 33.2675 18.6133C34.2688 18.036 35.252 17.594 36.2127 17.2918C37.1734 16.9896 38.0799 16.8318 38.9414 16.8272C39.7983 16.8227 40.5876 16.9716 41.3092 17.2783C42.0309 17.585 42.6533 18.054 43.1719 18.69C43.6906 19.3259 44.101 20.1287 44.3942 21.1119C44.6873 22.0906 44.8362 23.2497 44.8362 24.5938C44.8407 25.9468 44.6783 27.2954 44.3491 28.6304C44.0198 29.9699 43.5643 31.2283 42.9825 32.4009C42.4007 33.5781 41.7152 34.6334 40.9259 35.5625C40.1366 36.4962 39.2841 37.2268 38.3686 37.7545C37.5162 38.2461 36.8261 38.413 36.2894 38.2461C35.7527 38.0837 35.4144 37.556 35.2701 36.6585C34.6387 38.0386 33.9531 39.1617 33.2134 40.0276C32.4737 40.8936 31.6755 41.5746 30.8276 42.0617C30.1736 42.4406 29.6053 42.639 29.1272 42.6616C28.6446 42.6796 28.2432 42.5578 27.923 42.2827C27.5982 42.0121 27.3592 41.6107 27.1968 41.074C27.0345 40.5373 26.9578 39.9059 26.9533 39.1797C26.9488 38.1153 27.1247 36.9382 27.4765 35.6482C27.8283 34.3583 28.3514 33.0774 29.046 31.8056C29.7406 30.5337 30.6111 29.3159 31.6484 28.1658C32.6857 27.0112 33.89 26.0416 35.252 25.2568C35.9827 24.8328 36.6231 24.5306 37.1779 24.3457C37.7281 24.1698 38.2468 24.0616 38.7384 24.0255ZM34.9634 33.3029L36.1902 27.0428C35.7662 27.1736 35.3016 27.3856 34.801 27.6742C33.9847 28.1478 33.2315 28.7792 32.5504 29.5685C31.8694 30.3533 31.2876 31.2102 30.796 32.1348C30.3089 33.0549 29.9255 34.011 29.6504 34.9988C29.3753 35.9865 29.24 36.9111 29.24 37.777C29.2445 38.6791 29.4249 39.297 29.7857 39.6352C30.1465 39.9735 30.6832 39.9374 31.3913 39.527C31.7296 39.3331 32.0724 39.0715 32.4152 38.7467C32.7579 38.4265 33.0872 38.0161 33.4119 37.5155C33.7321 37.0148 34.0253 36.4195 34.2914 35.7249C34.5575 35.0349 34.783 34.2275 34.9634 33.3029Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<line x1="28.5" y1="78.5" x2="28.5" y2="49.5" stroke="#DA3635" stroke-linecap="round"/>
-</g>
-<defs>
-<clipPath id="clip0_5720_44788">
-<rect width="200" height="200" fill="white"/>
-</clipPath>
-</defs>
-</svg>
+  <path
+    d="M22 102.5H48.5L99 106.5H180.75C183.097 106.5 185 104.597 185 102.25C185 99.9028 183.097 98 180.75 98H176.5C175.119 98 174 96.8807 174 95.5C174 94.1193 175.119 93 176.5 93H184.75C190.687 93 195.5 88.1871 195.5 82.25V78.5C195.5 74.3579 192.142 71 188 71C183.858 71 180.5 67.6421 180.5 63.5V61C180.5 57.9624 178.038 55.5 175 55.5C171.962 55.5 169.5 53.0376 169.5 50V46.25C169.5 41.1414 173.641 37 178.75 37H186.25C189.426 37 192 34.4256 192 31.25C192 28.0744 189.426 25.5 186.25 25.5H170.5C167.186 25.5 164.5 22.8137 164.5 19.5C164.5 16.1863 161.814 13.5 158.5 13.5H150.312C147.137 13.5 144.562 10.9256 144.562 7.75C144.562 4.57436 141.988 2 138.812 2H90.5C87.3244 2 84.75 4.57436 84.75 7.75C84.75 10.9256 82.1756 13.5 79 13.5H67.75C65.9551 13.5 64.5 12.0449 64.5 10.25C64.5 8.45507 63.0449 7 61.25 7H24.25C22.4551 7 21 8.45507 21 10.25C21 12.0449 19.5449 13.5 17.75 13.5H11C7.68629 13.5 5 16.1863 5 19.5C5 22.8137 7.68629 25.5 11 25.5H16C20.1421 25.5 23.5 28.8579 23.5 33V35C23.5 38.0376 21.0376 40.5 18 40.5C14.9624 40.5 12.5 42.9624 12.5 46V47C12.5 50.5899 15.4101 53.5 19 53.5H25C29.1421 53.5 32.5 56.8579 32.5 61C32.5 65.1421 29.1421 68.5 25 68.5H18.75C11.1561 68.5 5 74.6561 5 82.25V85.5C5 94.8888 12.6112 102.5 22 102.5Z"
+    fill="#FFDDDD" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M149.554 44.806C149.539 44.806 149.525 44.806 149.51 44.806C149.496 44.806 149.481 44.806 149.467 44.806H135.821C135.799 44.8062 135.776 44.8063 135.754 44.8063C135.732 44.8063 135.71 44.8062 135.687 44.806H135.403V44.7973C131.865 44.6148 129.053 41.6883 129.053 38.1048C129.053 34.4036 132.053 31.4033 135.754 31.4033C135.873 31.4033 135.99 31.4063 136.107 31.4124L136.107 31.403C136.107 24.0007 142.108 18 149.51 18C154.631 18 159.081 20.8714 161.337 25.0918C161.624 25.0668 161.914 25.054 162.208 25.054C167.662 25.054 172.084 29.4756 172.084 34.9299C172.084 35.171 172.075 35.4101 172.058 35.6469C174.437 35.8148 176.316 37.7984 176.316 40.2206C176.316 42.753 174.263 44.8059 171.73 44.8059C171.613 44.8059 171.496 44.8014 171.38 44.7927V44.806H149.554Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M24 46.9825C23.8347 46.9941 23.668 47 23.5 47C19.3579 47 16 43.4183 16 39C16 34.5817 19.3579 31 23.5 31C25.2006 31 26.769 31.6037 28.0271 32.6212C28.4631 25.575 34.1046 20 41 20C42.7774 20 44.4714 20.3704 46.0145 21.0409C48.7381 17.9455 52.6804 16 57.0658 16C65.2847 16 71.9474 22.8335 71.9474 31.2632C71.9474 32.6076 71.7779 33.9114 71.4596 35.1534C73.542 36.0488 75.0002 38.1187 75.0002 40.5292C75.0002 43.7595 72.3815 46.3782 69.1512 46.3782C69.1006 46.3782 69.0502 46.3775 69 46.3763V47H41H24V46.9825Z"
+    fill="white" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+    fill="#A0C7F0" />
+  <path
+    d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+    fill="#4277AF" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+    fill="url(#paint0_linear_14133_113818)" />
+  <rect width="96.8723" height="64.765" rx="3" transform="matrix(0.866025 0.5 -0.866025 0.5 82.9139 86.6904)"
+    fill="#769FCB" />
+  <path
+    d="M35.9131 112.14C34.6549 111.416 34.0345 110.46 34.0345 109.512L34 115.036C34 115.984 34.6205 116.94 35.8786 117.664L108.939 159.848L108.973 154.324L35.9131 112.14Z"
+    fill="#4277AF" />
+  <path
+    d="M158.681 129.162C158.681 129.377 158.638 129.601 158.569 129.817C158.56 129.842 158.56 129.86 158.552 129.885C158.483 130.084 158.379 130.282 158.25 130.48C158.224 130.515 158.207 130.549 158.181 130.584C158.043 130.773 157.871 130.963 157.673 131.144C157.544 131.264 157.38 131.368 157.225 131.48C157.095 131.575 156.983 131.669 156.828 131.756L117.989 154.325C117.609 154.549 117.179 154.722 116.739 154.877C116.584 154.928 116.42 154.98 116.256 155.023C116.05 155.083 115.834 155.135 115.619 155.178C115.36 155.23 115.11 155.282 114.843 155.308C114.783 155.316 114.714 155.325 114.654 155.333C114.3 155.368 113.938 155.394 113.585 155.394C113.525 155.394 113.473 155.394 113.413 155.394C113.059 155.394 112.706 155.368 112.353 155.333C112.301 155.325 112.249 155.325 112.198 155.316C111.853 155.273 111.508 155.213 111.172 155.144C111.112 155.127 111.051 155.118 110.991 155.101C110.689 155.023 110.388 154.937 110.103 154.834C110.052 154.816 110 154.799 109.948 154.782C109.604 154.653 109.276 154.497 108.975 154.325L108.94 159.849C109.224 160.013 109.535 160.159 109.854 160.289C109.871 160.297 109.888 160.297 109.905 160.306C109.957 160.323 110.009 160.34 110.06 160.357C110.241 160.426 110.431 160.495 110.621 160.547C110.724 160.582 110.836 160.599 110.939 160.625C111 160.642 111.06 160.659 111.12 160.668C111.172 160.676 111.224 160.694 111.284 160.711C111.491 160.754 111.706 160.788 111.913 160.823C111.991 160.831 112.068 160.84 112.146 160.849C112.198 160.857 112.249 160.857 112.301 160.866C112.379 160.875 112.456 160.883 112.534 160.892C112.74 160.909 112.956 160.918 113.163 160.926C113.232 160.926 113.301 160.926 113.361 160.926C113.421 160.926 113.473 160.926 113.533 160.926C113.628 160.926 113.723 160.926 113.818 160.926C114.059 160.918 114.292 160.9 114.524 160.883C114.55 160.883 114.576 160.875 114.602 160.875C114.662 160.866 114.731 160.857 114.791 160.849C114.972 160.823 115.153 160.806 115.334 160.771C115.412 160.754 115.489 160.728 115.567 160.711C115.782 160.668 115.998 160.607 116.205 160.556C116.317 160.521 116.437 160.504 116.541 160.469C116.593 160.452 116.636 160.426 116.679 160.409C117.118 160.254 117.549 160.082 117.928 159.858L156.768 137.288C156.794 137.271 156.82 137.254 156.846 137.245C156.966 137.176 157.052 137.09 157.164 137.012C157.319 136.9 157.483 136.797 157.612 136.676C157.621 136.668 157.647 136.659 157.656 136.642C157.802 136.504 157.94 136.366 158.052 136.219C158.078 136.185 158.095 136.151 158.121 136.116C158.147 136.082 158.164 136.047 158.19 136.013C158.233 135.952 158.276 135.901 158.311 135.84C158.379 135.72 158.431 135.599 158.483 135.478C158.491 135.461 158.491 135.444 158.5 135.427C158.509 135.401 158.509 135.384 158.517 135.358C158.543 135.28 158.569 135.203 158.586 135.125C158.612 135.004 158.621 134.884 158.629 134.763C158.629 134.746 158.629 134.729 158.629 134.711L158.681 129.162Z"
+    fill="#A0C7F1" />
+  <path
+    d="M156.793 126.532C159.292 127.971 159.301 130.307 156.819 131.746L117.979 154.315C115.506 155.755 111.473 155.755 108.974 154.315L35.9136 112.141C33.4145 110.702 33.4145 108.358 35.8877 106.927L74.7274 84.3489C77.2093 82.9097 81.2337 82.9097 83.7328 84.3489L156.793 126.532Z"
+    fill="#EDF7FF" />
+  <path d="M77.4528 83.4276L96.3599 120.397L158.553 129.885V128.412L96.8252 119.337L78.0043 83.2725L77.4528 83.4276Z"
+    fill="#A0C7F1" />
+  <path
+    d="M40.7608 114.21C40.6573 114.167 40.5626 114.124 40.4678 114.081C40.373 114.038 40.2782 114.003 40.1834 113.952C40.08 113.9 39.9938 113.84 39.8904 113.788C39.8214 113.745 39.7439 113.71 39.6749 113.667C39.5801 113.607 39.494 113.538 39.4078 113.469C39.3561 113.426 39.2958 113.391 39.2441 113.348C39.1579 113.279 39.0889 113.202 39.02 113.124C38.9769 113.081 38.9338 113.047 38.8907 113.004C38.839 112.943 38.7959 112.874 38.7442 112.814C38.7011 112.754 38.6494 112.702 38.6064 112.642C38.5633 112.581 38.5374 112.521 38.5116 112.452C38.4771 112.392 38.434 112.323 38.4081 112.262C38.3047 112.004 38.2444 111.745 38.2444 111.478L38.2272 116.899C38.2272 117.097 38.2703 117.304 38.3306 117.502C38.3478 117.562 38.3651 117.623 38.3909 117.683C38.4081 117.717 38.434 117.761 38.4512 117.795C38.4943 117.881 38.5374 117.976 38.5891 118.062C38.615 118.097 38.6408 118.131 38.6667 118.157C38.727 118.243 38.7959 118.338 38.8735 118.424C38.9252 118.484 38.9855 118.536 39.0458 118.588C39.1062 118.648 39.1579 118.708 39.2268 118.769C39.2871 118.82 39.3647 118.872 39.4336 118.924C39.5112 118.976 39.5801 119.036 39.6577 119.088C39.7266 119.131 39.8042 119.165 39.8731 119.208C39.9679 119.269 40.0627 119.32 40.1661 119.372C40.2523 119.415 40.3557 119.458 40.4505 119.501C40.5453 119.544 40.6401 119.587 40.7435 119.631L120.672 151.025L120.689 145.604L40.7608 114.21Z"
+    fill="#4277AF" />
+  <path
+    d="M157.031 119.743C157.023 119.777 157.014 119.812 157.006 119.838C156.971 119.95 156.928 120.07 156.876 120.182C156.859 120.217 156.85 120.243 156.833 120.277C156.756 120.415 156.669 120.544 156.566 120.682C156.532 120.725 156.489 120.768 156.445 120.811C156.351 120.923 156.247 121.035 156.127 121.139L128.559 144.751C128.352 144.924 128.119 145.087 127.869 145.225C127.809 145.26 127.74 145.294 127.68 145.329C127.49 145.432 127.292 145.518 127.085 145.604C126.999 145.639 126.913 145.673 126.827 145.699C126.663 145.759 126.499 145.803 126.327 145.846C126.146 145.897 125.956 145.949 125.767 145.983C125.534 146.027 125.301 146.07 125.06 146.104C125.008 146.113 124.957 146.121 124.905 146.13C124.586 146.164 124.267 146.182 123.948 146.182C123.897 146.182 123.845 146.182 123.802 146.182C123.483 146.182 123.164 146.164 122.854 146.13C122.811 146.121 122.768 146.121 122.716 146.113C122.406 146.078 122.096 146.018 121.794 145.949C121.734 145.932 121.682 145.923 121.622 145.906C121.303 145.828 120.992 145.734 120.699 145.613L120.682 151.033C120.906 151.12 121.13 151.197 121.363 151.266C121.441 151.292 121.527 151.301 121.604 151.326C121.665 151.344 121.716 151.352 121.777 151.37C121.837 151.387 121.897 151.404 121.966 151.413C122.147 151.447 122.337 151.482 122.526 151.507C122.587 151.516 122.638 151.516 122.699 151.525C122.742 151.533 122.785 151.533 122.837 151.542C122.914 151.55 122.992 151.559 123.078 151.568C123.259 151.585 123.449 151.594 123.629 151.594C123.681 151.594 123.733 151.594 123.785 151.594C123.836 151.594 123.888 151.594 123.931 151.594C124.026 151.594 124.112 151.594 124.207 151.594C124.414 151.585 124.629 151.576 124.836 151.55C124.853 151.55 124.87 151.542 124.896 151.542C124.948 151.533 125 151.525 125.051 151.516C125.224 151.499 125.396 151.473 125.568 151.447C125.637 151.438 125.689 151.413 125.758 151.404C125.948 151.361 126.137 151.318 126.318 151.266C126.422 151.24 126.525 151.223 126.628 151.189C126.697 151.171 126.758 151.137 126.818 151.111C126.904 151.077 126.99 151.051 127.077 151.016C127.283 150.93 127.482 150.844 127.671 150.74C127.731 150.706 127.8 150.68 127.861 150.637C127.887 150.62 127.912 150.611 127.938 150.594C128.162 150.465 128.361 150.318 128.55 150.154L156.118 126.542C156.152 126.508 156.187 126.482 156.221 126.447C156.308 126.37 156.368 126.292 156.437 126.215C156.471 126.172 156.523 126.128 156.557 126.085C156.566 126.077 156.575 126.068 156.583 126.06C156.67 125.947 156.747 125.835 156.807 125.723C156.816 125.706 156.816 125.698 156.825 125.68C156.842 125.646 156.85 125.62 156.868 125.586C156.894 125.525 156.928 125.465 156.954 125.405C156.971 125.353 156.98 125.301 156.997 125.249C157.006 125.215 157.014 125.189 157.023 125.155C157.031 125.137 157.04 125.112 157.04 125.094C157.066 124.982 157.075 124.879 157.075 124.767C157.075 124.75 157.075 124.732 157.075 124.715L157.092 119.295C157.083 119.45 157.066 119.596 157.031 119.743Z"
+    fill="#A0C7F1" />
+  <path
+    d="M154.592 116.572C157.185 117.589 157.866 119.631 156.117 121.131L128.549 144.743C126.791 146.242 123.275 146.63 120.69 145.613L40.7612 114.211C38.1673 113.194 37.4778 111.16 39.2358 109.652L66.8037 86.0395C68.553 84.5401 72.0776 84.1523 74.6629 85.1692L154.592 116.572Z"
+    fill="#EDF7FF" />
+  <path
+    d="M66.8054 86.0481L99.6645 113.452L156.834 120.269L157.092 119.304L99.6645 112.116L67.3656 85.6431L66.8054 86.0481Z"
+    fill="#A0C7F1" />
+  <path
+    d="M67.8947 51.5912C67.8947 51.5912 67.8081 47.5698 74.1983 49.9543C80.5807 52.3388 137.683 86.7688 137.683 86.7688C137.683 86.7688 135.173 96.417 134.37 96.3934C133.575 96.3698 93.0463 98.6914 93.0463 98.6914L67.8947 51.5912Z"
+    fill="#823332" />
+  <path
+    d="M75.2245 49.294C75.1931 49.2783 75.1616 49.2547 75.1301 49.2389C75.075 49.2075 75.0121 49.176 74.957 49.1524C74.894 49.1209 74.8389 49.0973 74.776 49.0737C74.7681 49.0737 74.7602 49.0658 74.7524 49.0658C74.7445 49.0658 74.7366 49.0579 74.7287 49.0579C74.6815 49.0422 74.6422 49.0265 74.595 49.0107C74.532 48.9871 74.469 48.9714 74.4061 48.9556C74.3589 48.9399 74.3117 48.932 74.2723 48.9242C74.2644 48.9242 74.2566 48.9163 74.2408 48.9163C74.233 48.9163 74.2172 48.9084 74.2093 48.9084C74.1385 48.8927 74.0756 48.8848 74.0047 48.8769C73.926 48.8691 73.8552 48.8612 73.7765 48.8533H73.7686C73.7608 48.8533 73.7529 48.8533 73.7529 48.8533C73.6821 48.8533 73.6034 48.8455 73.5326 48.8455C73.446 48.8455 73.3673 48.8533 73.2807 48.8612L69.3223 49.2862C69.4797 49.2704 69.6292 49.2626 69.7866 49.2783C69.7944 49.2783 69.8023 49.2783 69.8102 49.2783C69.9676 49.2862 70.125 49.3098 70.2824 49.3413C70.2902 49.3413 70.306 49.3491 70.3138 49.3491C70.4634 49.3806 70.6208 49.4278 70.7703 49.4908C70.7782 49.4908 70.786 49.4986 70.7939 49.4986C70.9513 49.5616 71.1166 49.6403 71.274 49.7269L133.736 85.7858L137.694 85.3609L75.2245 49.294Z"
+    fill="#FF5D5C" />
+  <path
+    d="M140.22 90.1994C140.22 90.1916 140.22 90.1916 140.22 90.1837V90.1758C140.22 90.0735 140.212 89.9633 140.205 89.861C140.197 89.7273 140.181 89.6013 140.165 89.4676C140.157 89.3967 140.142 89.3338 140.126 89.2629C140.118 89.2157 140.11 89.1685 140.102 89.1213C140.094 89.0583 140.087 89.0032 140.071 88.9403C140.039 88.7908 139.984 88.6491 139.945 88.4996C139.913 88.3894 139.89 88.2792 139.85 88.169C139.772 87.9487 139.677 87.7362 139.583 87.5316C139.551 87.4608 139.528 87.3899 139.488 87.327C139.481 87.3191 139.481 87.3113 139.481 87.3034C139.394 87.146 139.307 86.9886 139.213 86.8469C139.15 86.7525 139.079 86.6581 139.016 86.5636L139.008 86.5558L139.001 86.5479C138.938 86.4692 138.875 86.3826 138.812 86.3118C138.757 86.241 138.694 86.178 138.631 86.1151C138.576 86.0521 138.513 85.997 138.458 85.9419C138.442 85.9262 138.426 85.9183 138.41 85.9026C138.402 85.8947 138.395 85.8947 138.395 85.8868C138.355 85.8554 138.324 85.816 138.284 85.7845C138.229 85.7373 138.174 85.6901 138.119 85.6507C138.064 85.6114 138.009 85.5642 137.946 85.5248C137.891 85.4855 137.836 85.4461 137.773 85.4147C137.749 85.3989 137.718 85.3832 137.694 85.3674L133.736 85.7924C133.988 85.9341 134.224 86.1072 134.436 86.3118C134.444 86.3197 134.452 86.3197 134.452 86.3275C134.672 86.5243 134.869 86.7446 135.05 86.9886L135.058 86.9965C135.239 87.2326 135.396 87.4923 135.538 87.7677C135.569 87.8306 135.593 87.9093 135.632 87.9723C135.727 88.1769 135.821 88.3894 135.9 88.6097C135.939 88.7199 135.963 88.8301 135.994 88.9403C136.049 89.1449 136.112 89.3495 136.152 89.562C136.16 89.6092 136.167 89.6564 136.175 89.7036C136.223 90.0027 136.262 90.3096 136.27 90.6165C136.27 90.6244 136.27 90.6244 136.27 90.6323C136.278 90.9628 136.262 91.2933 136.223 91.616C136.223 91.6238 136.223 91.6317 136.223 91.6475C136.183 91.978 136.112 92.3085 136.018 92.6233L124.072 132.94C124.009 133.16 123.93 133.365 123.851 133.561C123.851 133.569 123.843 133.577 123.843 133.585C123.765 133.774 123.67 133.955 123.568 134.12C123.56 134.136 123.552 134.152 123.537 134.167C123.442 134.325 123.348 134.466 123.238 134.6C123.222 134.624 123.198 134.647 123.182 134.671C123.072 134.805 122.954 134.939 122.836 135.057C122.757 135.128 122.679 135.19 122.592 135.261C122.529 135.309 122.474 135.364 122.403 135.411C122.317 135.474 122.222 135.521 122.128 135.576C122.065 135.608 122.002 135.655 121.939 135.686C121.837 135.734 121.727 135.773 121.624 135.812C121.569 135.836 121.514 135.859 121.451 135.875C121.286 135.922 121.113 135.954 120.94 135.977L124.898 135.552C125.071 135.537 125.244 135.497 125.41 135.45C125.465 135.434 125.528 135.403 125.583 135.387C125.693 135.348 125.795 135.316 125.897 135.261C125.96 135.23 126.023 135.19 126.086 135.151C126.181 135.096 126.267 135.049 126.362 134.986C126.425 134.939 126.488 134.884 126.551 134.836C126.629 134.773 126.716 134.71 126.795 134.632L126.802 134.624C126.897 134.529 126.991 134.435 127.078 134.333C127.102 134.309 127.125 134.278 127.141 134.246C127.157 134.223 127.172 134.199 127.196 134.175C127.22 134.144 127.251 134.112 127.275 134.073C127.33 133.994 127.385 133.916 127.432 133.837C127.456 133.805 127.471 133.774 127.487 133.735C127.495 133.719 127.503 133.703 127.519 133.687C127.534 133.664 127.55 133.632 127.566 133.609C127.605 133.538 127.645 133.467 127.676 133.396C127.708 133.325 127.747 133.255 127.778 133.176C127.778 133.168 127.786 133.16 127.786 133.152C127.786 133.144 127.794 133.137 127.794 133.129C127.818 133.074 127.841 133.018 127.865 132.963C127.896 132.893 127.92 132.822 127.944 132.743C127.967 132.672 127.991 132.593 128.014 132.523C128.014 132.515 128.014 132.515 128.014 132.507L139.961 92.1905C139.984 92.1196 140 92.0488 140.016 91.978C140.031 91.8993 140.055 91.8285 140.071 91.7498C140.087 91.6711 140.102 91.5924 140.118 91.5215C140.134 91.4428 140.142 91.3641 140.157 91.2854C140.157 91.2618 140.165 91.2382 140.165 91.2146C140.165 91.2067 140.165 91.1989 140.165 91.191C140.173 91.1438 140.181 91.0966 140.181 91.0494C140.189 90.9628 140.197 90.8762 140.205 90.7897C140.212 90.6952 140.212 90.6087 140.212 90.5142C140.22 90.3962 140.22 90.2939 140.22 90.1994Z"
+    fill="#FF5D5C" />
+  <path d="M110.081 117.626L59.054 89.8622L58.7786 89.2405L109.806 117.005L110.081 117.626Z" fill="#767676" />
+  <mask id="path-20-inside-1_14133_113818" fill="white">
+    <path
+      d="M130.927 87.6655C131.187 86.8628 131.43 86.0679 131.659 85.2652C131.674 85.2101 131.69 85.1629 131.706 85.1078C131.926 84.3366 132.131 83.5654 132.328 82.7942C132.359 82.6525 132.398 82.5187 132.438 82.3771C132.635 81.598 132.816 80.8267 132.981 80.0476C133.012 79.8902 133.052 79.7407 133.083 79.5833C133.256 78.7963 133.414 78.0094 133.563 77.2303C133.571 77.1988 133.571 77.1752 133.579 77.1437C133.721 76.3803 133.854 75.6249 133.972 74.8694C133.996 74.7277 134.02 74.5861 134.043 74.4444C134.161 73.7046 134.271 72.9728 134.366 72.2488C134.389 72.1071 134.405 71.9654 134.421 71.8238C134.523 71.0762 134.61 70.3443 134.696 69.6203C136.609 52.6611 134.366 38.1179 134.342 37.9683L83.2994 10.2119C83.323 10.3536 85.5659 24.9046 83.6535 41.8638C83.5748 42.5879 83.4804 43.3276 83.3781 44.0674C83.3623 44.209 83.3387 44.3507 83.323 44.4923C83.2207 45.2163 83.1184 45.9482 83.0003 46.688C82.9767 46.8296 82.9531 46.9713 82.9295 47.1129C82.8036 47.8606 82.6777 48.616 82.536 49.3873C82.5281 49.4188 82.5281 49.4424 82.5203 49.4738C82.3708 50.2529 82.2134 51.032 82.0402 51.8269C82.0087 51.9843 81.9773 52.1338 81.9379 52.2912C81.7648 53.0624 81.5838 53.8415 81.3949 54.6128C81.3634 54.7544 81.3241 54.8961 81.2847 55.0299C81.088 55.8011 80.8834 56.5723 80.663 57.3435C80.6473 57.3986 80.6315 57.4458 80.6158 57.5009C80.3876 58.2958 80.1436 59.0985 79.8839 59.8933C79.8288 60.0507 79.7816 60.216 79.7265 60.3734C79.4668 61.1603 79.1993 61.9394 78.916 62.7264C78.853 62.8996 78.79 63.0727 78.7271 63.2379C78.554 63.7101 78.3651 64.1823 78.1841 64.6545C78.1054 64.8591 78.0188 65.0637 77.9401 65.2683C77.7355 65.772 77.5152 66.2835 77.2948 66.7872C77.2318 66.921 77.1768 67.0626 77.1217 67.1964C76.8384 67.826 76.5472 68.4477 76.2481 69.0694C76.1694 69.2268 76.0907 69.3763 76.012 69.5337C75.7759 70.0059 75.532 70.4781 75.288 70.9503C75.1621 71.1942 75.0283 71.4382 74.8945 71.6743C74.7765 71.8867 74.6584 72.1071 74.5404 72.3196C74.383 72.6029 74.2177 72.8862 74.0525 73.1695C73.9266 73.3741 73.8085 73.5866 73.6826 73.7912C73.5095 74.0745 73.3285 74.3657 73.1553 74.649C73.0294 74.8458 72.9035 75.0425 72.7776 75.2392C72.5808 75.5383 72.3841 75.8295 72.1874 76.1285C72.0693 76.3095 71.9513 76.4827 71.8254 76.6637C71.7467 76.7738 71.668 76.8761 71.5893 76.9863C71.18 77.5608 70.7629 78.1195 70.3301 78.6783C70.2199 78.8278 70.1019 78.9773 69.9838 79.119C69.4881 79.7407 68.9844 80.3545 68.4493 80.9605C68.3469 81.0707 68.2446 81.1809 68.1423 81.2989C67.7252 81.7632 67.2924 82.2275 66.8517 82.6761C66.7022 82.8256 66.5605 82.9752 66.411 83.1247C65.868 83.6677 65.3092 84.2028 64.7348 84.7301C64.719 84.7458 64.6954 84.7616 64.6797 84.7773C64.0973 85.3046 63.4835 85.8082 62.8618 86.3119C62.6965 86.4457 62.5312 86.5716 62.366 86.7054C61.7207 87.2091 61.0675 87.697 60.3907 88.1692C60.3828 88.177 60.3671 88.1849 60.3592 88.1928C59.8398 88.5548 59.3047 88.9089 58.7538 89.2473L109.781 117.004C110.324 116.665 110.859 116.311 111.386 115.949C111.386 115.949 111.394 115.949 111.394 115.941C111.402 115.933 111.41 115.926 111.418 115.926C112.095 115.453 112.748 114.965 113.393 114.47C113.558 114.344 113.724 114.21 113.889 114.076C114.511 113.58 115.117 113.069 115.707 112.542C115.723 112.526 115.738 112.518 115.754 112.502L115.762 112.494C116.336 111.975 116.895 111.44 117.438 110.889C117.588 110.739 117.737 110.59 117.879 110.44C118.32 109.984 118.752 109.528 119.169 109.063C119.24 108.985 119.319 108.906 119.398 108.819C119.421 108.788 119.445 108.756 119.476 108.725C120.004 108.127 120.515 107.513 121.011 106.883C121.129 106.734 121.239 106.592 121.357 106.443C121.79 105.884 122.207 105.325 122.609 104.751C122.664 104.68 122.719 104.609 122.766 104.538C122.79 104.499 122.813 104.459 122.845 104.428C122.971 104.255 123.081 104.074 123.207 103.893C123.403 103.602 123.608 103.303 123.797 103.004C123.923 102.807 124.049 102.602 124.175 102.405C124.356 102.122 124.529 101.839 124.702 101.556C124.828 101.351 124.954 101.138 125.072 100.934C125.237 100.65 125.402 100.367 125.56 100.084C125.678 99.8714 125.796 99.6589 125.914 99.4464C125.993 99.3048 126.071 99.1631 126.15 99.0136C126.205 98.9113 126.252 98.809 126.307 98.7146C126.551 98.2502 126.795 97.7781 127.031 97.3059C127.11 97.1485 127.189 96.999 127.267 96.8416C127.566 96.2199 127.858 95.5982 128.141 94.9686C128.204 94.8348 128.259 94.6931 128.322 94.5593C128.542 94.0557 128.755 93.552 128.959 93.0484C129.046 92.8438 129.125 92.6391 129.211 92.4345C129.4 91.9623 129.581 91.4902 129.754 91.018C129.801 90.8921 129.849 90.774 129.896 90.6481C129.912 90.6009 129.927 90.5537 129.943 90.4986C130.226 89.7195 130.494 88.9325 130.754 88.1455C130.825 87.9882 130.872 87.8229 130.927 87.6655Z" />
+  </mask>
+  <path
+    d="M130.927 87.6655C131.187 86.8628 131.43 86.0679 131.659 85.2652C131.674 85.2101 131.69 85.1629 131.706 85.1078C131.926 84.3366 132.131 83.5654 132.328 82.7942C132.359 82.6525 132.398 82.5187 132.438 82.3771C132.635 81.598 132.816 80.8267 132.981 80.0476C133.012 79.8902 133.052 79.7407 133.083 79.5833C133.256 78.7963 133.414 78.0094 133.563 77.2303C133.571 77.1988 133.571 77.1752 133.579 77.1437C133.721 76.3803 133.854 75.6249 133.972 74.8694C133.996 74.7277 134.02 74.5861 134.043 74.4444C134.161 73.7046 134.271 72.9728 134.366 72.2488C134.389 72.1071 134.405 71.9654 134.421 71.8238C134.523 71.0762 134.61 70.3443 134.696 69.6203C136.609 52.6611 134.366 38.1179 134.342 37.9683L83.2994 10.2119C83.323 10.3536 85.5659 24.9046 83.6535 41.8638C83.5748 42.5879 83.4804 43.3276 83.3781 44.0674C83.3623 44.209 83.3387 44.3507 83.323 44.4923C83.2207 45.2163 83.1184 45.9482 83.0003 46.688C82.9767 46.8296 82.9531 46.9713 82.9295 47.1129C82.8036 47.8606 82.6777 48.616 82.536 49.3873C82.5281 49.4188 82.5281 49.4424 82.5203 49.4738C82.3708 50.2529 82.2134 51.032 82.0402 51.8269C82.0087 51.9843 81.9773 52.1338 81.9379 52.2912C81.7648 53.0624 81.5838 53.8415 81.3949 54.6128C81.3634 54.7544 81.3241 54.8961 81.2847 55.0299C81.088 55.8011 80.8834 56.5723 80.663 57.3435C80.6473 57.3986 80.6315 57.4458 80.6158 57.5009C80.3876 58.2958 80.1436 59.0985 79.8839 59.8933C79.8288 60.0507 79.7816 60.216 79.7265 60.3734C79.4668 61.1603 79.1993 61.9394 78.916 62.7264C78.853 62.8996 78.79 63.0727 78.7271 63.2379C78.554 63.7101 78.3651 64.1823 78.1841 64.6545C78.1054 64.8591 78.0188 65.0637 77.9401 65.2683C77.7355 65.772 77.5152 66.2835 77.2948 66.7872C77.2318 66.921 77.1768 67.0626 77.1217 67.1964C76.8384 67.826 76.5472 68.4477 76.2481 69.0694C76.1694 69.2268 76.0907 69.3763 76.012 69.5337C75.7759 70.0059 75.532 70.4781 75.288 70.9503C75.1621 71.1942 75.0283 71.4382 74.8945 71.6743C74.7765 71.8867 74.6584 72.1071 74.5404 72.3196C74.383 72.6029 74.2177 72.8862 74.0525 73.1695C73.9266 73.3741 73.8085 73.5866 73.6826 73.7912C73.5095 74.0745 73.3285 74.3657 73.1553 74.649C73.0294 74.8458 72.9035 75.0425 72.7776 75.2392C72.5808 75.5383 72.3841 75.8295 72.1874 76.1285C72.0693 76.3095 71.9513 76.4827 71.8254 76.6637C71.7467 76.7738 71.668 76.8761 71.5893 76.9863C71.18 77.5608 70.7629 78.1195 70.3301 78.6783C70.2199 78.8278 70.1019 78.9773 69.9838 79.119C69.4881 79.7407 68.9844 80.3545 68.4493 80.9605C68.3469 81.0707 68.2446 81.1809 68.1423 81.2989C67.7252 81.7632 67.2924 82.2275 66.8517 82.6761C66.7022 82.8256 66.5605 82.9752 66.411 83.1247C65.868 83.6677 65.3092 84.2028 64.7348 84.7301C64.719 84.7458 64.6954 84.7616 64.6797 84.7773C64.0973 85.3046 63.4835 85.8082 62.8618 86.3119C62.6965 86.4457 62.5312 86.5716 62.366 86.7054C61.7207 87.2091 61.0675 87.697 60.3907 88.1692C60.3828 88.177 60.3671 88.1849 60.3592 88.1928C59.8398 88.5548 59.3047 88.9089 58.7538 89.2473L109.781 117.004C110.324 116.665 110.859 116.311 111.386 115.949C111.386 115.949 111.394 115.949 111.394 115.941C111.402 115.933 111.41 115.926 111.418 115.926C112.095 115.453 112.748 114.965 113.393 114.47C113.558 114.344 113.724 114.21 113.889 114.076C114.511 113.58 115.117 113.069 115.707 112.542C115.723 112.526 115.738 112.518 115.754 112.502L115.762 112.494C116.336 111.975 116.895 111.44 117.438 110.889C117.588 110.739 117.737 110.59 117.879 110.44C118.32 109.984 118.752 109.528 119.169 109.063C119.24 108.985 119.319 108.906 119.398 108.819C119.421 108.788 119.445 108.756 119.476 108.725C120.004 108.127 120.515 107.513 121.011 106.883C121.129 106.734 121.239 106.592 121.357 106.443C121.79 105.884 122.207 105.325 122.609 104.751C122.664 104.68 122.719 104.609 122.766 104.538C122.79 104.499 122.813 104.459 122.845 104.428C122.971 104.255 123.081 104.074 123.207 103.893C123.403 103.602 123.608 103.303 123.797 103.004C123.923 102.807 124.049 102.602 124.175 102.405C124.356 102.122 124.529 101.839 124.702 101.556C124.828 101.351 124.954 101.138 125.072 100.934C125.237 100.65 125.402 100.367 125.56 100.084C125.678 99.8714 125.796 99.6589 125.914 99.4464C125.993 99.3048 126.071 99.1631 126.15 99.0136C126.205 98.9113 126.252 98.809 126.307 98.7146C126.551 98.2502 126.795 97.7781 127.031 97.3059C127.11 97.1485 127.189 96.999 127.267 96.8416C127.566 96.2199 127.858 95.5982 128.141 94.9686C128.204 94.8348 128.259 94.6931 128.322 94.5593C128.542 94.0557 128.755 93.552 128.959 93.0484C129.046 92.8438 129.125 92.6391 129.211 92.4345C129.4 91.9623 129.581 91.4902 129.754 91.018C129.801 90.8921 129.849 90.774 129.896 90.6481C129.912 90.6009 129.927 90.5537 129.943 90.4986C130.226 89.7195 130.494 88.9325 130.754 88.1455C130.825 87.9882 130.872 87.8229 130.927 87.6655Z"
+    fill="white" stroke="#A0C7F1" stroke-width="2" mask="url(#path-20-inside-1_14133_113818)" />
+  <path d="M134.335 37.9768L83.3 10.2125L83.9611 10L134.988 37.7564L134.335 37.9768Z" fill="#769FCB" />
+  <path
+    d="M134.988 37.7563C135.012 37.898 137.271 52.5593 135.35 69.6129C133.564 85.3995 127.74 106.545 110.081 117.618L109.805 116.996C127.182 106.113 132.926 85.2264 134.681 69.6208C136.594 52.6616 134.351 38.1184 134.327 37.9688L134.988 37.7563Z"
+    fill="#769FCB" />
+  <path
+    d="M115.258 36.5115C115.573 36.6925 115.817 37.1254 115.817 37.4795V38.1248C115.817 38.479 115.565 38.6206 115.25 38.4396L89.5716 23.6131C89.2646 23.44 89.0128 22.9993 89.0128 22.653V22.0077C89.0128 21.6536 89.2646 21.5119 89.5716 21.685L115.258 36.5115Z"
+    fill="#5B5B5B" />
+  <path
+    d="M125.803 54.6994C125.977 54.8017 126.118 55.0456 126.118 55.2424C126.118 55.447 125.977 55.5257 125.803 55.4234L88.4696 33.8761C88.2964 33.7738 88.1548 33.5299 88.1548 33.3331C88.1548 33.1285 88.2964 33.0498 88.4696 33.1521L125.803 54.6994Z"
+    fill="#5B5B5B" />
+  <path
+    d="M109.999 51.1356C110.172 51.2379 110.314 51.4819 110.314 51.6786C110.314 51.8832 110.172 51.9619 109.999 51.8596L87.7434 39.0163C87.5702 38.914 87.4286 38.67 87.4286 38.4733C87.4286 38.2686 87.5702 38.19 87.7434 38.2923L109.999 51.1356Z"
+    fill="#5B5B5B" />
+  <path
+    d="M111.902 56.5012C112.075 56.6036 112.216 56.8475 112.216 57.0443C112.216 57.2489 112.075 57.3276 111.902 57.2253L87.4111 43.0834C87.238 42.9811 87.0963 42.7371 87.0963 42.5404C87.0963 42.3358 87.238 42.2571 87.4111 42.3594L111.902 56.5012Z"
+    fill="#5B5B5B" />
+  <path
+    d="M101.186 54.4088C101.359 54.5111 101.5 54.7551 101.5 54.9519C101.5 55.1565 101.359 55.2352 101.186 55.1329L86.666 46.7516C86.4929 46.6493 86.3512 46.4054 86.3512 46.2086C86.3512 46.004 86.4929 45.9253 86.666 46.0276L101.186 54.4088Z"
+    fill="#5B5B5B" />
+  <path
+    d="M121.864 77.5216C122.037 77.6239 122.179 77.8679 122.179 78.0646C122.179 78.2692 122.037 78.3479 121.864 78.2456L84.53 56.6984C84.3569 56.5961 84.2152 56.3521 84.2152 56.1554C84.2152 55.9508 84.3569 55.8721 84.53 55.9744L121.864 77.5216Z"
+    fill="#5B5B5B" />
+  <path
+    d="M105.276 72.3834C105.449 72.4857 105.591 72.7297 105.591 72.9264C105.591 73.131 105.449 73.2097 105.276 73.1074L83.0207 60.2641C82.8476 60.1618 82.7059 59.9178 82.7059 59.7211C82.7059 59.5165 82.8476 59.4378 83.0207 59.5401L105.276 72.3834Z"
+    fill="#5B5B5B" />
+  <path
+    d="M106.398 77.75C106.571 77.8523 106.713 78.0963 106.713 78.293C106.713 78.4976 106.571 78.5763 106.398 78.474L81.9078 64.3322C81.7347 64.2299 81.593 63.9859 81.593 63.7892C81.593 63.5846 81.7347 63.5059 81.9078 63.6082L106.398 77.75Z"
+    fill="#5B5B5B" />
+  <path
+    d="M95.6673 75.656C95.8405 75.7583 95.9821 76.0022 95.9821 76.199C95.9821 76.4036 95.8405 76.4823 95.6673 76.38L81.1556 67.9987C80.9825 67.8964 80.8408 67.6525 80.8408 67.4557C80.8408 67.259 80.9903 67.1724 81.1556 67.2747L95.6673 75.656Z"
+    fill="#5B5B5B" />
+  <path
+    d="M133.726 85.7774L95.1333 92.6083L70.2808 49.3328C68.5494 48.9551 66.8496 50.1198 66.2043 52.2997L54.2581 92.6162C53.4868 95.2132 54.502 98.2666 56.5324 99.4392L118.994 135.498C121.025 136.671 123.299 135.514 124.062 132.917L136.009 92.6004C136.78 90.0034 135.757 86.95 133.726 85.7774Z"
+    fill="#DA3635" />
+  <path
+    d="M142.676 68.3539C143.069 68.3237 143.402 68.2179 143.689 68.0515L146.956 66.1614C146.668 66.3277 146.336 66.4336 145.942 66.4789L142.676 68.3539Z"
+    fill="#FF5D5C" />
+  <path
+    d="M149.752 70.1375L153.019 68.2474C153.835 67.7635 154.5 66.8411 154.848 65.2383L151.582 67.1284C151.249 68.7313 150.584 69.6537 149.752 70.1375Z"
+    fill="#FF5D5C" />
+  <path
+    d="M167.474 51.5539L146.184 39.2604C145.654 38.958 145.186 38.9277 144.838 39.1243L141.572 41.0145C141.919 40.8179 142.388 40.8481 142.917 41.1505L164.208 53.4441C165.251 54.0489 166.083 55.5005 166.083 56.6951L166.038 73.2982C166.038 73.8879 165.826 74.3113 165.493 74.5079L168.76 72.6177C169.092 72.4211 169.304 71.9977 169.304 71.408L169.349 54.805C169.364 53.6104 168.518 52.1436 167.474 51.5539Z"
+    fill="#FF5D5C" />
+  <mask id="path-36-inside-2_14133_113818" fill="white">
+    <path
+      d="M164.211 53.4437C165.254 54.0485 166.086 55.5002 166.086 56.6947L166.041 73.2978C166.041 74.4924 165.194 74.9762 164.151 74.3714L151.585 67.1132C150.496 72.2091 146.187 70.4853 143.994 69.2151C143.193 68.7614 142.709 68.3834 142.678 68.3532C144.901 68.1566 145.31 65.6011 145.249 63.4539L142.875 62.0779C141.832 61.473 141 60.0214 141 58.8268L141.045 42.2238C141.045 41.0292 141.892 40.5453 142.936 41.1502L164.211 53.4437Z" />
+  </mask>
+  <path
+    d="M164.211 53.4437C165.254 54.0485 166.086 55.5002 166.086 56.6947L166.041 73.2978C166.041 74.4924 165.194 74.9762 164.151 74.3714L151.585 67.1132C150.496 72.2091 146.187 70.4853 143.994 69.2151C143.193 68.7614 142.709 68.3834 142.678 68.3532C144.901 68.1566 145.31 65.6011 145.249 63.4539L142.875 62.0779C141.832 61.473 141 60.0214 141 58.8268L141.045 42.2238C141.045 41.0292 141.892 40.5453 142.936 41.1502L164.211 53.4437Z"
+    fill="white" />
+  <path
+    d="M164.211 53.4437L164.462 53.0111L164.461 53.0108L164.211 53.4437ZM166.086 56.6947L166.586 56.6961V56.6947H166.086ZM166.041 73.2978L165.541 73.2964V73.2978H166.041ZM164.151 74.3714L164.401 73.9388L164.401 73.9384L164.151 74.3714ZM151.585 67.1132L151.835 66.6803L151.24 66.3364L151.096 67.0088L151.585 67.1132ZM143.994 69.2151L144.245 68.7824L144.24 68.7799L143.994 69.2151ZM142.678 68.3532L142.634 67.8551L141.568 67.9494L142.325 68.7067L142.678 68.3532ZM145.249 63.4539L145.749 63.4398L145.741 63.1611L145.5 63.0213L145.249 63.4539ZM142.875 62.0779L142.624 62.5105L142.624 62.5105L142.875 62.0779ZM141 58.8268L140.5 58.8255V58.8268H141ZM141.045 42.2238L141.545 42.2251V42.2238H141.045ZM142.936 41.1502L142.685 41.5827L142.685 41.5831L142.936 41.1502ZM163.96 53.8763C164.389 54.1246 164.801 54.5661 165.106 55.0975C165.412 55.629 165.586 56.2051 165.586 56.6947H166.586C166.586 55.9898 166.344 55.2428 165.973 54.5986C165.602 53.9544 165.077 53.3676 164.462 53.0111L163.96 53.8763ZM165.586 56.6934L165.541 73.2964L166.541 73.2992L166.586 56.6961L165.586 56.6934ZM165.541 73.2978C165.541 73.7882 165.371 74 165.24 74.0748C165.107 74.1504 164.833 74.1889 164.401 73.9388L163.9 74.804C164.512 75.1588 165.183 75.2577 165.734 74.9439C166.287 74.6294 166.541 74.002 166.541 73.2978H165.541ZM164.401 73.9384L151.835 66.6803L151.335 67.5462L163.9 74.8044L164.401 73.9384ZM151.096 67.0088C150.838 68.2138 150.404 68.9547 149.912 69.3993C149.426 69.8395 148.838 70.031 148.187 70.0517C146.849 70.0942 145.328 69.4098 144.245 68.7824L143.743 69.6477C144.853 70.2905 146.583 71.1031 148.219 71.0512C149.056 71.0246 149.887 70.7709 150.583 70.1408C151.275 69.5151 151.787 68.5606 152.074 67.2177L151.096 67.0088ZM144.24 68.7799C143.854 68.5611 143.545 68.3611 143.331 68.2136C143.224 68.1399 143.141 68.0797 143.085 68.0374C143.012 67.9828 143.009 67.9768 143.032 67.9996L142.325 68.7067C142.363 68.7447 142.432 68.7973 142.483 68.8363C142.551 68.8875 142.645 68.9558 142.763 69.0371C142.999 69.1996 143.333 69.4154 143.748 69.6502L144.24 68.7799ZM142.722 68.8512C144.074 68.7317 144.864 67.8733 145.284 66.8206C145.695 65.7937 145.78 64.5366 145.749 63.4398L144.749 63.468C144.779 64.5184 144.69 65.6126 144.356 66.4495C144.032 67.2605 143.506 67.778 142.634 67.8551L142.722 68.8512ZM145.5 63.0213L143.126 61.6453L142.624 62.5105L144.998 63.8865L145.5 63.0213ZM143.126 61.6453C142.697 61.397 142.285 60.9555 141.98 60.4241C141.674 59.8925 141.5 59.3165 141.5 58.8268H140.5C140.5 59.5318 140.742 60.2788 141.113 60.9229C141.484 61.5672 142.009 62.1539 142.624 62.5105L143.126 61.6453ZM141.5 58.8282L141.545 42.2251L140.545 42.2224L140.5 58.8255L141.5 58.8282ZM141.545 42.2238C141.545 41.7334 141.715 41.5216 141.846 41.4468C141.979 41.3711 142.253 41.3327 142.685 41.5827L143.186 40.7176C142.574 40.3628 141.903 40.2639 141.352 40.5776C140.799 40.8922 140.545 41.5196 140.545 42.2238H141.545ZM142.685 41.5831L163.961 53.8766L164.461 53.0108L143.186 40.7173L142.685 41.5831Z"
+    fill="#FF5D5C" mask="url(#path-36-inside-2_14133_113818)" />
+  <path
+    d="M158.844 58.8272C158.844 57.1336 157.65 55.0771 156.183 54.2303C154.852 53.4591 153.748 53.943 153.552 55.3039C153.355 53.7313 152.251 51.9621 150.921 51.191C149.454 50.3442 148.259 51.0246 148.259 52.7031C148.259 53.4591 148.501 54.2908 148.91 55.062L153.522 63.424L158.118 60.5056C158.557 60.2183 158.844 59.6437 158.844 58.8272Z"
+    fill="#DA3635" />
+  <defs>
+    <linearGradient id="paint0_linear_14133_113818" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/profileQuestions.svg b/src/assets/form/profileQuestions.svg
new file mode 100644
index 000000000..ff870c287
--- /dev/null
+++ b/src/assets/form/profileQuestions.svg
@@ -0,0 +1,212 @@
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <rect width="200" height="200" fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M120.104 52.7464C120.131 52.7466 120.159 52.7467 120.187 52.7467C120.214 52.7467 120.242 52.7466 120.27 52.7464H190.285V52.72C190.514 52.7374 190.745 52.7462 190.978 52.7462C195.961 52.7462 200 48.7067 200 43.7238C200 38.9571 196.304 35.0537 191.621 34.724C191.654 34.2581 191.671 33.7878 191.671 33.3134C191.671 22.5809 182.971 13.8806 172.238 13.8806C171.662 13.8806 171.092 13.9056 170.528 13.9548C166.088 5.65012 157.332 0 147.256 0C132.691 0 120.883 11.8077 120.883 26.3731L120.883 26.3916C120.652 26.3796 120.42 26.3735 120.187 26.3735C112.904 26.3735 107 32.2774 107 39.5601C107 46.6106 112.533 52.3687 119.494 52.7288V52.7464H120.104Z"
+    fill="#FFDDDD" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M10.8947 90.1842C5.43002 90.1842 1 85.7542 1 80.2895C1 74.8248 5.43002 70.3947 10.8947 70.3947C12.9017 70.3947 14.7691 70.9922 16.3287 72.0191C16.0098 70.4971 15.8421 68.9194 15.8421 67.3026C15.8421 54.6655 26.0865 44.4211 38.7237 44.4211C41.0154 44.4211 43.2284 44.758 45.3159 45.3849C50.1664 40.2235 57.0555 37 64.6974 37C79.3838 37 91.2895 48.9057 91.2895 63.5921C91.2895 66.5533 90.8055 69.4014 89.9123 72.0617C92.9366 73.6455 95.0003 76.8141 95.0003 80.4648C95.0003 85.7001 90.7562 89.9441 85.5209 89.9441C85.3816 89.9441 85.2431 89.9411 85.1053 89.9352V90.1842H64.6974H38.7237H10.8947Z"
+    fill="#FFDDDD" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M172.34 38.8476C172.338 38.8476 172.336 38.8476 172.334 38.8476C172.332 38.8476 172.33 38.8476 172.328 38.8476H160.562H159.973V38.8059C157.976 38.5203 156.441 36.8031 156.441 34.7274C156.441 32.4518 158.286 30.6071 160.562 30.6071C161.3 30.6071 161.994 30.8015 162.593 31.142C162.419 30.4033 162.327 29.633 162.327 28.8413C162.327 23.3149 166.807 18.835 172.334 18.835C176.412 18.835 179.92 21.2741 181.479 24.7731C181.761 24.7387 182.048 24.721 182.34 24.721C185.984 24.721 188.983 27.4802 189.363 31.0232C189.908 30.7567 190.521 30.6071 191.169 30.6071C193.445 30.6071 195.29 32.4518 195.29 34.7274C195.29 37.0029 193.445 38.8476 191.169 38.8476C190.969 38.8476 190.773 38.8334 190.581 38.8059V38.8476H182.34H172.34Z"
+    fill="white" />
+  <path
+    d="M70.7209 52.9167C70.106 52.8694 69.5856 52.7038 69.1362 52.4436L64.027 49.487C64.4765 49.7472 64.9968 49.9127 65.6118 49.9837L70.7209 52.9167Z"
+    fill="#FF5D5C" />
+  <path
+    d="M59.655 55.7071L54.5459 52.7504C53.2686 51.9935 52.2279 50.5507 51.6838 48.0434L56.793 51.0001C57.3133 53.5073 58.3541 54.9502 59.655 55.7071Z"
+    fill="#FF5D5C" />
+  <path
+    d="M31.932 26.6375L65.2359 7.40732C66.0638 6.93426 66.797 6.88695 67.3411 7.19444L72.4502 10.1511C71.9062 9.84362 71.1729 9.89093 70.345 10.364L37.0411 29.5942C35.409 30.5403 34.1081 32.8111 34.1081 34.6797L34.179 60.6511C34.179 61.5736 34.5102 62.2359 35.0305 62.5434L29.9214 59.5867C29.401 59.2792 29.0699 58.6169 29.0699 57.6944L28.9989 31.723C28.9753 29.8544 30.2999 27.56 31.932 26.6375Z"
+    fill="#FF5D5C" />
+  <mask id="path-7-inside-1_14421_60386" fill="white">
+    <path
+      d="M37.0319 29.5938C35.3998 30.54 34.0989 32.8107 34.0989 34.6793L34.1698 60.6507C34.1698 62.5193 35.4944 63.2762 37.1265 62.3301L56.7825 50.9765C58.4855 58.9477 65.2267 56.2512 68.6565 54.2643C69.9101 53.5547 70.667 52.9634 70.7143 52.9161C67.2373 52.6086 66.5986 48.6112 66.6932 45.2524L70.4068 43.0999C72.0389 42.1538 73.3398 39.8831 73.3398 38.0144L73.2689 12.043C73.2689 10.1744 71.9443 9.4175 70.3122 10.3636L37.0319 29.5938Z" />
+  </mask>
+  <path
+    d="M37.0319 29.5938C35.3998 30.54 34.0989 32.8107 34.0989 34.6793L34.1698 60.6507C34.1698 62.5193 35.4944 63.2762 37.1265 62.3301L56.7825 50.9765C58.4855 58.9477 65.2267 56.2512 68.6565 54.2643C69.9101 53.5547 70.667 52.9634 70.7143 52.9161C67.2373 52.6086 66.5986 48.6112 66.6932 45.2524L70.4068 43.0999C72.0389 42.1538 73.3398 39.8831 73.3398 38.0144L73.2689 12.043C73.2689 10.1744 71.9443 9.4175 70.3122 10.3636L37.0319 29.5938Z"
+    fill="white" />
+  <path
+    d="M37.0319 29.5938L36.7811 29.1613L36.7817 29.1609L37.0319 29.5938ZM34.0989 34.6793L33.5989 34.6807V34.6793H34.0989ZM34.1698 60.6507L34.6698 60.6494V60.6507H34.1698ZM37.1265 62.3301L36.8757 61.8975L36.8764 61.8971L37.1265 62.3301ZM56.7825 50.9765L56.5324 50.5435L57.1278 50.1996L57.2714 50.872L56.7825 50.9765ZM68.6565 54.2643L68.4058 53.8316L68.4102 53.8292L68.6565 54.2643ZM70.7143 52.9161L70.7584 52.418L71.8251 52.5123L71.0679 53.2696L70.7143 52.9161ZM66.6932 45.2524L66.1934 45.2383L66.2013 44.9596L66.4425 44.8198L66.6932 45.2524ZM70.4068 43.0999L70.6576 43.5325L70.6576 43.5325L70.4068 43.0999ZM73.3398 38.0144L73.8398 38.0131V38.0144H73.3398ZM73.2689 12.043L72.7689 12.0444V12.043H73.2689ZM70.3122 10.3636L70.563 10.7962L70.5624 10.7966L70.3122 10.3636ZM37.2827 30.0264C36.5599 30.4454 35.8835 31.1769 35.3867 32.0401C34.8899 32.9033 34.5989 33.8527 34.5989 34.6793H33.5989C33.5989 33.6373 33.9584 32.517 34.52 31.5412C35.0817 30.5653 35.8718 29.6884 36.7811 29.1613L37.2827 30.0264ZM34.5989 34.6779L34.6698 60.6494L33.6698 60.6521L33.5989 34.6807L34.5989 34.6779ZM34.6698 60.6507C34.6698 61.4781 34.9589 61.9267 35.2834 62.1114C35.6094 62.2969 36.1501 62.3182 36.8757 61.8975L37.3773 62.7627C36.4709 63.2881 35.5332 63.4041 34.7888 62.9805C34.0431 62.5561 33.6698 61.6919 33.6698 60.6507H34.6698ZM36.8764 61.8971L56.5324 50.5435L57.0326 51.4095L37.3766 62.7631L36.8764 61.8971ZM57.2714 50.872C57.6825 52.7959 58.3844 54.0151 59.2094 54.7617C60.0295 55.5038 61.0176 55.8209 62.0878 55.8549C64.2659 55.9241 66.7042 54.8174 68.4058 53.8317L68.9071 54.697C67.179 55.6981 64.5318 56.9331 62.0561 56.8544C60.7995 56.8145 59.5685 56.4353 58.5385 55.5032C57.5134 54.5756 56.734 53.1427 56.2935 51.081L57.2714 50.872ZM68.4102 53.8292C69.0229 53.4823 69.5131 53.1651 69.8541 52.9301C70.0246 52.8126 70.1571 52.7162 70.2484 52.6474C70.3559 52.5665 70.3793 52.544 70.3608 52.5625L71.0679 53.2696C71.0257 53.3118 70.9367 53.381 70.8498 53.4464C70.7467 53.524 70.6028 53.6286 70.4215 53.7535C70.0587 54.0035 69.5436 54.3367 68.9028 54.6994L68.4102 53.8292ZM70.6703 53.4141C68.6921 53.2392 67.5309 51.9925 66.9001 50.414C66.2797 48.8614 66.1455 46.9409 66.1934 45.2383L67.193 45.2665C67.1464 46.9226 67.2842 48.6803 67.8287 50.0429C68.3629 51.3797 69.2595 52.2855 70.7584 52.418L70.6703 53.4141ZM66.4425 44.8198L70.1561 42.6673L70.6576 43.5325L66.944 45.685L66.4425 44.8198ZM70.1561 42.6673C70.8788 42.2484 71.5552 41.5168 72.052 40.6537C72.5489 39.7905 72.8398 38.8411 72.8398 38.0144H73.8398C73.8398 39.0564 73.4804 40.1767 72.9187 41.1525C72.357 42.1285 71.5669 43.0053 70.6576 43.5325L70.1561 42.6673ZM72.8398 38.0158L72.7689 12.0444L73.7689 12.0417L73.8398 38.0131L72.8398 38.0158ZM72.7689 12.043C72.7689 11.2156 72.4798 10.767 72.1553 10.5824C71.8293 10.3969 71.2887 10.3755 70.563 10.7962L70.0614 9.93106C70.9678 9.40561 71.9055 9.28965 72.6499 9.71323C73.3957 10.1376 73.7689 11.0018 73.7689 12.043H72.7689ZM70.5624 10.7966L37.2821 30.0268L36.7817 29.1609L70.0621 9.93071L70.5624 10.7966Z"
+    fill="#FF5D5C" mask="url(#path-7-inside-1_14421_60386)" />
+  <path
+    d="M45.4312 38.0156C45.4312 35.3664 47.2998 32.1496 49.5941 30.825C51.6756 29.6187 53.4023 30.3756 53.7098 32.5044C54.0173 30.0444 55.744 27.277 57.8255 26.0707C60.1199 24.7461 61.9885 25.8105 61.9885 28.436C61.9885 29.6187 61.6101 30.9196 60.9714 32.1259L53.7571 45.2062L46.5665 40.6411C45.8806 40.1917 45.4312 39.2929 45.4312 38.0156Z"
+    fill="#DA3635" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.719 90.8662)" fill="#A0C7F0" />
+  <path
+    d="M99.7218 74.0342L194.232 126.054L194.235 128.601L99.7218 183.168L5.20909 128.601L5.20928 126.053L99.7218 74.0342Z"
+    fill="#4277AF" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.719 71.4873)"
+    fill="url(#paint0_linear_14421_60386)" />
+  <circle cx="14.177" cy="14.177" r="14.177" transform="matrix(0.866025 -0.5 0.866025 0.5 69.8398 131.177)"
+    fill="#A0C7F0" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L78.2199 136.604C77.934 137.671 76.8373 138.304 75.7704 138.018C74.7034 137.732 74.0703 136.636 74.3562 135.569L85.2266 95Z"
+    fill="#D6AD92" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L83.6772 116.237C83.3913 117.304 82.2947 117.937 81.2277 117.651C80.1608 117.365 79.5276 116.269 79.8135 115.202L85.2266 95Z"
+    fill="#AE907B" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L85.1412 110.774C84.8553 111.84 83.7586 112.474 82.6917 112.188C81.6247 111.902 80.9916 110.805 81.2774 109.738L85.2266 95Z"
+    fill="#88674F" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L93.9042 119.107C93.8684 120.211 92.9445 121.077 91.8405 121.042C90.7365 121.006 89.8705 120.082 89.9063 118.978L91.2656 77Z"
+    fill="#AE907B" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L94.1167 112.543C94.081 113.647 93.157 114.513 92.053 114.478C90.949 114.442 90.0831 113.518 90.1188 112.414L91.2656 77Z"
+    fill="#88674F" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L115.574 133.569C115.86 134.636 115.227 135.732 114.16 136.018C113.093 136.304 111.996 135.671 111.71 134.604L100.84 94.0352Z"
+    fill="#D6AD92" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L110.634 115.132C110.92 116.199 110.286 117.295 109.22 117.581C108.153 117.867 107.056 117.234 106.77 116.167L100.84 94.0352Z"
+    fill="#AE907B" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L109.089 109.367C109.375 110.434 108.742 111.531 107.675 111.817C106.608 112.103 105.511 111.469 105.225 110.402L100.84 94.0352Z"
+    fill="#88674F" />
+  <ellipse cx="20.1148" cy="20.3939" rx="20.1148" ry="20.3939" transform="matrix(0.866025 -0.5 0.866025 0.5 58 95.115)"
+    fill="#AE907B" />
+  <circle cx="18.7543" cy="18.7543" r="18.7543" transform="matrix(0.866025 -0.5 0.866025 0.5 60.8398 92.7548)"
+    fill="#D6AD92" />
+  <circle cx="12.4455" cy="12.4455" r="12.4455" transform="matrix(0.866025 -0.5 0.866025 0.5 71.7671 92.7549)"
+    fill="#E6BC9F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 125.39 134.488)"
+    fill="#DA3635" />
+  <path
+    d="M120.211 133.595C120.479 130.246 128.116 129.138 131.095 132.016L140.554 141.158C141.877 142.437 141.526 144.071 139.701 145.125C137.417 146.444 133.684 146.385 131.527 144.998L124.26 140.325C121.464 138.527 120.005 136.166 120.198 133.752L120.211 133.595Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M123.654 133.555L134.281 141.767C134.771 142.146 135.058 142.73 135.058 143.349V143.498C135.058 144.782 133.866 145.733 132.615 145.449L132.156 145.344C131.935 145.24 131.725 145.124 131.528 144.998L124.262 140.325C121.466 138.527 120.007 136.166 120.2 133.752L120.213 133.595C120.306 132.422 121.304 131.524 122.689 130.976C122.845 131.221 122.936 131.512 122.936 131.823V132.093C122.936 132.665 123.201 133.205 123.654 133.555Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M140.39 141.009L140.544 141.159C141.868 142.438 141.517 144.072 139.692 145.126C137.408 146.445 133.675 146.387 131.517 144.999L130.218 144.163C130.66 143.429 131.456 142.974 132.322 142.974H133.835H137.316C138.177 142.974 138.988 142.568 139.504 141.88L139.715 141.599C139.899 141.353 140.13 141.154 140.39 141.009Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M135.837 139.757C134.968 140.364 134.146 141.098 133.661 141.583C133.424 141.82 133.04 141.82 132.804 141.583C132.567 141.346 132.567 140.963 132.804 140.726C133.328 140.201 134.204 139.419 135.143 138.764C135.612 138.436 136.11 138.13 136.597 137.905C137.075 137.684 137.59 137.518 138.081 137.518C138.416 137.518 138.687 137.789 138.687 138.124C138.687 138.459 138.416 138.73 138.081 138.73C137.844 138.73 137.516 138.816 137.106 139.006C136.705 139.191 136.271 139.454 135.837 139.757Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M134.384 134.823C134.533 135.122 134.412 135.486 134.113 135.636C134.042 135.671 133.895 135.807 133.709 136.148C133.535 136.466 133.37 136.884 133.222 137.352C132.927 138.287 132.721 139.344 132.623 140.028C132.576 140.36 132.269 140.59 131.937 140.543C131.606 140.495 131.376 140.188 131.423 139.857C131.527 139.127 131.746 138.002 132.067 136.987C132.227 136.481 132.418 135.982 132.645 135.567C132.859 135.174 133.156 134.759 133.57 134.552C133.87 134.402 134.234 134.523 134.384 134.823Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.977 135.419C133.431 135.622 134.922 136.027 135.857 136.338C136.175 136.444 136.347 136.787 136.241 137.105C136.135 137.423 135.792 137.594 135.474 137.488C134.591 137.194 133.173 136.81 131.809 136.62C131.127 136.524 130.476 136.48 129.923 136.513C129.355 136.546 128.96 136.657 128.729 136.811C128.45 136.997 128.074 136.922 127.888 136.643C127.703 136.365 127.778 135.989 128.056 135.803C128.552 135.472 129.203 135.341 129.851 135.302C130.514 135.263 131.25 135.317 131.977 135.419Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M129.737 134.107C128.867 134.593 128.046 135.18 127.562 135.567C127.301 135.776 126.919 135.733 126.71 135.472C126.501 135.211 126.543 134.829 126.805 134.62C127.331 134.199 128.208 133.573 129.146 133.049C130.054 132.542 131.134 132.063 132.032 132.063C132.367 132.063 132.638 132.334 132.638 132.669C132.638 133.004 132.367 133.275 132.032 133.275C131.476 133.275 130.637 133.604 129.737 134.107Z"
+    fill="#769FCB" />
+  <path
+    d="M124.342 132.667C125.492 133.331 127.357 133.331 128.508 132.667C129.085 132.333 129.373 131.896 129.371 131.459L129.371 125.398L123.479 125.398L123.479 131.459C123.476 131.896 123.764 132.333 124.342 132.667Z"
+    fill="#FFCCB7" />
+  <path
+    d="M124.342 130.123C125.492 130.788 127.357 130.788 128.508 130.123C129.085 129.79 129.373 129.352 129.371 128.915L129.371 122.854L123.479 122.854L123.479 128.915C123.476 129.352 123.764 129.79 124.342 130.123Z"
+    fill="#EF937F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 102.277 143.334)"
+    fill="#DA3635" />
+  <path
+    d="M97.0977 142.442C97.3657 139.093 105.003 137.985 107.982 140.863L117.44 150.004C118.764 151.283 118.413 152.918 116.588 153.972C114.304 155.29 110.571 155.232 108.413 153.845L101.147 149.171C98.351 147.373 96.8921 145.012 97.0852 142.599L97.0977 142.442Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M100.59 142.584L111.155 150.614C111.653 150.992 111.945 151.581 111.945 152.206V152.345C111.945 153.629 110.753 154.58 109.502 154.295L109.042 154.191C108.822 154.087 108.612 153.971 108.415 153.845L101.148 149.171C98.3526 147.373 96.8937 145.012 97.0868 142.599L97.0993 142.442C97.1932 141.269 98.191 140.371 99.576 139.823C99.7322 140.067 99.8227 140.358 99.8227 140.67V141.036C99.8227 141.643 100.107 142.216 100.59 142.584Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M117.276 149.856L117.431 150.005C118.755 151.284 118.403 152.919 116.578 153.973C114.295 155.291 110.562 155.233 108.404 153.846L107.105 153.01C107.546 152.276 108.343 151.82 109.209 151.82H110.722H114.203C115.064 151.82 115.875 151.415 116.391 150.726L116.602 150.446C116.786 150.2 117.017 150.001 117.276 149.856Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.724 148.604C111.854 149.211 111.033 149.944 110.547 150.43C110.311 150.667 109.927 150.667 109.69 150.43C109.454 150.193 109.454 149.809 109.69 149.573C110.215 149.048 111.091 148.266 112.03 147.61C112.499 147.282 112.997 146.977 113.484 146.752C113.962 146.531 114.477 146.365 114.968 146.365C115.302 146.365 115.574 146.636 115.574 146.971C115.574 147.305 115.302 147.577 114.968 147.577C114.731 147.577 114.402 147.663 113.993 147.852C113.592 148.038 113.158 148.301 112.724 148.604Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.27 143.67C111.42 143.969 111.299 144.333 110.999 144.483C110.929 144.518 110.781 144.653 110.595 144.994C110.421 145.313 110.257 145.731 110.109 146.199C109.814 147.134 109.608 148.191 109.51 148.875C109.463 149.207 109.156 149.437 108.824 149.389C108.493 149.342 108.263 149.035 108.31 148.704C108.414 147.974 108.632 146.849 108.953 145.834C109.113 145.328 109.305 144.828 109.531 144.414C109.746 144.021 110.042 143.606 110.457 143.398C110.757 143.249 111.121 143.37 111.27 143.67Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M108.863 144.266C110.318 144.469 111.809 144.873 112.744 145.185C113.062 145.291 113.233 145.634 113.128 145.952C113.022 146.269 112.678 146.441 112.361 146.335C111.478 146.041 110.06 145.657 108.696 145.466C108.013 145.371 107.363 145.326 106.81 145.359C106.242 145.393 105.847 145.504 105.615 145.658C105.337 145.844 104.961 145.769 104.775 145.49C104.589 145.212 104.665 144.835 104.943 144.65C105.439 144.319 106.09 144.188 106.738 144.149C107.4 144.11 108.137 144.164 108.863 144.266Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M106.624 142.954C105.753 143.44 104.933 144.026 104.449 144.413C104.187 144.622 103.806 144.58 103.597 144.319C103.388 144.057 103.43 143.676 103.692 143.467C104.218 143.046 105.094 142.42 106.032 141.896C106.941 141.388 108.021 140.909 108.919 140.909C109.254 140.909 109.525 141.181 109.525 141.516C109.525 141.85 109.254 142.122 108.919 142.122C108.362 142.122 107.524 142.451 106.624 142.954Z"
+    fill="#769FCB" />
+  <path
+    d="M101.228 141.513C102.379 142.178 104.244 142.178 105.394 141.513C105.972 141.18 106.26 140.743 106.257 140.305L106.257 134.244L100.365 134.244L100.365 140.305C100.363 140.743 100.651 141.18 101.228 141.513Z"
+    fill="#FFCCB7" />
+  <path
+    d="M101.228 138.97C102.379 139.634 104.244 139.634 105.394 138.97C105.972 138.637 106.26 138.199 106.257 137.762L106.257 131.701L100.365 131.701L100.365 137.762C100.363 138.199 100.651 138.637 101.228 138.97Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.386 66C115.15 68.1745 113.594 70.3102 110.715 71.972C104.446 75.5916 94.2811 75.5916 88.0116 71.972C85.6055 70.5828 84.1228 68.8623 83.5635 67.0649C83.4456 67.5414 83.3911 68.0222 83.4001 68.5027L83.3794 68.5001L82.3385 86.0757C82.0156 91.5292 84.9156 96.884 90.562 101.26L99.9317 108.522C101.162 109.475 101.757 110.653 101.607 111.839L98.7226 134.642C98.6791 135.303 99.0943 135.972 99.9682 136.476C101.633 137.438 104.333 137.438 105.998 136.476C106.66 136.094 106.802 135.73 107.008 135.202C107.074 135.034 107.146 134.849 107.243 134.642L118.207 106.897C119.586 103.407 118.838 99.7476 116.087 96.5383L112.081 91.8636L124.126 99.3197C125.847 100.385 126.668 101.835 126.369 103.282L121.589 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.199 129.208 128.864 128.247C129.738 127.742 130.153 127.073 130.109 126.412L140.109 100.746C141.69 96.6882 140.518 92.4345 136.834 88.8601L115.921 68.5715C115.948 67.7072 115.77 66.8412 115.386 66Z"
+    fill="#4C4D53" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.266 123.512C127.042 128.888 124.18 125.343 126.919 105.506C127.435 101.769 126.133 97.9763 123.319 95.4636L114.545 87.6291C114.149 87.2759 113.556 87.3071 113.13 87.6226C112.36 88.1921 111.594 88.3918 110.35 88.4619C109.447 88.5127 109.005 89.6039 109.661 90.2256L115.058 95.3378L119.003 98.1775C120.194 99.0347 120.857 100.096 120.887 101.195L121.161 111.022L121.34 111.5V117.464L121.588 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.198 129.208 128.863 128.247C129.737 127.742 130.153 127.073 130.109 126.412L131.266 123.512ZM107.795 130.88C104.6 130.986 102.43 123.263 104.387 107.084C104.877 103.029 103.303 98.9535 100.049 96.4832L82.4942 83.1542L82.3234 85.9835C82.0092 91.1869 84.6293 96.3086 89.7896 100.578L98.3496 107.661C99.4006 108.531 99.9401 109.572 99.8886 110.632L98.7223 134.642C98.6788 135.303 99.094 135.972 99.9679 136.477C101.633 137.438 104.332 137.438 105.997 136.477C106.871 135.972 107.287 135.303 107.243 134.642L107.795 130.88Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M95.4665 27.3316C85.137 29.577 79.2296 38.3341 79.0057 47.3318H78.8398V64.5647C78.8398 68.5209 80.4809 72.0939 83.1194 74.6401L80.9907 77.9144L96.0867 87.7021C98.9098 89.5325 102.638 87.5062 102.638 84.1417C104.959 82.3429 104.812 78.7919 102.35 77.1914L102.036 76.987L113.341 70.4442C114.208 69.9421 114.889 69.2018 115.318 68.333L119.04 70.7526C121.279 72.2083 124.274 71.5732 125.73 69.334C126.862 67.5925 126.369 65.2628 124.627 64.1305L121.309 61.9733V43.1938L121.39 41.6535C121.856 32.7559 114.509 25.4154 105.612 25.8894L100.961 26.1372L95.4665 27.3316Z"
+    fill="#FF9C9B" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.438 75.322L102.116 73.8122C99.5937 72.1724 97.9437 69.4842 97.6234 66.4929L95.5682 47.2992C95.5682 47.2987 95.5678 47.2984 95.5674 47.2983C95.5669 47.2983 95.5664 47.2987 95.5664 47.2993V67.3551C95.5664 70.7396 97.2783 73.8944 100.116 75.7391L102.347 77.1895C104.633 78.676 104.923 81.8451 103.093 83.7302C103.084 83.7398 103.075 83.7495 103.066 83.7594C104.93 81.8783 104.649 78.682 102.35 77.1872L101.951 76.9277L104.438 75.322ZM102.602 84.7058C102.596 84.7353 102.591 84.7648 102.587 84.7942C102.582 84.8239 102.578 84.8538 102.575 84.8838C102.585 84.825 102.594 84.7657 102.602 84.7058Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M105.232 16.6523L95.8566 18.9655L96.2634 26.7943L96.0559 27.8022L94.9165 33.4102C94.4327 35.7913 95.6796 38.1129 97.7792 39.0899L97.9823 40.2209C98.5337 43.2923 101.471 45.3352 104.542 44.7837C107.613 44.2323 109.656 41.2954 109.105 38.224L106.765 25.1884L106.962 24.0477L106.538 23.9248L105.232 16.6523Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.657 5.34717L94.5839 8.41241L96.5731 19.4921L92.5352 19.6622L95.9965 25.4067L95.4724 28.4327C94.9812 31.269 96.8823 33.9666 99.7187 34.4579C101.101 34.6973 102.45 34.3685 103.527 33.6402C104.911 34.1386 106.44 34.2913 107.992 34.0128C112.707 33.1663 115.842 28.6581 114.996 23.9434L111.657 5.34717Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.234 31.9478C111.16 32.7029 109.908 33.2416 108.531 33.4888C103.477 34.3963 98.6435 31.0344 97.736 25.9798L96.7254 20.3506C96.637 19.8584 96.1987 19.5072 95.6991 19.5282L94.3787 19.5839C93.887 19.6046 93.4835 19.9799 93.4273 20.4688L93.4011 20.6972C93.3758 20.9166 93.424 21.1382 93.538 21.3275L95.2216 24.1217C95.2824 24.2225 95.3605 24.3117 95.4524 24.3852L96.0177 24.8373C96.1824 24.9689 96.425 24.9273 96.5364 24.7483C96.7066 24.4747 97.1246 24.5548 97.1815 24.872L97.9228 29.0009C98.3084 31.1487 99.4539 32.9688 101.033 34.2341C101.236 34.3972 101.502 34.4645 101.756 34.4069C102.226 34.3006 102.675 34.13 103.092 33.9034C103.373 33.751 103.703 33.7072 104.009 33.7976C105.262 34.1674 106.618 34.2587 107.991 34.0121C109.63 33.718 111.077 32.9815 112.234 31.9478Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.014 20.4058H113.153C110.869 20.4058 108.878 18.8513 108.325 16.6355L108.156 15.9608C107.627 13.8454 105.572 12.4823 103.418 12.8175L102.632 12.9397C100.605 13.2551 99.2853 15.2437 99.783 17.2348C100.022 18.1887 99.8465 19.199 99.3011 20.0172L97.1916 23.1814C96.9634 23.5237 96.5447 23.6855 96.1456 23.5858L94.5041 23.1754C92.4758 20.9266 91.2383 17.9309 91.2383 14.6419C91.2383 7.65997 96.815 2 103.694 2C109.467 2 114.323 5.98577 115.735 11.3938C117.3 12.1715 118.382 13.8333 118.382 15.7577C118.382 17.9656 116.958 19.8278 115.014 20.4058Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.17 71.5074L123.521 67.5586L121.509 67.4367C119.68 67.3259 118.2 65.9074 118.012 64.0846C117.993 63.9011 118.069 63.7208 118.215 63.6075L118.549 63.3473C119.004 62.9934 118.891 62.2775 118.35 62.0806C118.06 61.9753 117.867 61.7001 117.867 61.392V41.4189C117.867 39.8103 116.563 38.5063 114.955 38.5063C114.832 38.5063 114.736 38.6116 114.748 38.7336L115.621 48.1404C115.765 49.692 115.544 51.2558 114.977 52.707L114.864 52.9953C114.773 53.2274 114.727 53.4745 114.727 53.7237V57.6547C114.727 57.8832 114.766 58.11 114.842 58.3253L115.373 59.8179C116.002 61.584 116.063 63.5023 115.549 65.305L115.094 66.8994C114.964 67.3531 115.002 67.8262 115.181 68.2415L119.041 70.751C120.005 71.3776 121.109 71.6168 122.17 71.5074Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.352 85.7497L102.344 85.6175L88.6759 76.3234C87.8045 75.7308 87.9439 74.4066 88.9195 74.0084C90.1944 73.488 89.9219 71.6083 88.5518 71.4713L85.7012 71.1862C84.6538 71.0815 83.8668 70.1827 83.9013 69.1306L84.799 41.7507C84.8249 40.9592 84.4942 40.1978 83.8979 39.6767C82.2844 38.2664 79.7516 39.265 79.5346 41.3969L78.8672 47.9546V73.5629C78.8672 75.3113 79.7646 76.8501 81.124 77.7438L81.0142 77.9126L96.1102 87.7003C98.4459 89.2147 101.402 88.0891 102.352 85.7497Z"
+    fill="#DA3635" />
+  <ellipse cx="96.4787" cy="21.4493" rx="1.92787" ry="3.08459" fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M98.027 21.7513C98.0457 21.611 98.0556 21.4653 98.0556 21.3159C98.0556 20.1884 97.4931 19.2744 96.7993 19.2744C96.1054 19.2744 95.543 20.1884 95.543 21.3159C95.543 22.0656 95.7917 22.721 96.1623 23.0759C95.971 22.7728 95.8552 22.3772 95.8552 21.9443C95.8552 20.9903 96.4177 20.2169 97.1115 20.2169C97.3609 20.2169 97.3982 20.5724 97.4377 20.9491C97.464 21.1997 97.4913 21.4596 97.5827 21.6302C97.6541 21.7637 97.8295 21.7578 97.9964 21.7523C98.0066 21.7519 98.0168 21.7516 98.027 21.7513Z"
+    fill="#EF937F" />
+  <ellipse cx="105.301" cy="23.4348" rx="0.765209" ry="1.33954" transform="rotate(2.6285 105.301 23.4348)"
+    fill="#333333" />
+  <ellipse cx="112.703" cy="22.2175" rx="0.765209" ry="1.33912" transform="rotate(2.6285 112.703 22.2175)"
+    fill="#333333" />
+  <path d="M103.805 22.9914C104.57 22.5036 105.553 21.9842 106.889 22.3353" stroke="#333333" stroke-linecap="round" />
+  <path d="M112.285 20.6782C112.574 20.6782 113.106 20.6782 113.827 20.6782" stroke="#333333" stroke-linecap="round" />
+  <ellipse cx="110.34" cy="27" rx="1.5" ry="1" fill="#EF937F" />
+  <path d="M108.43 29.5752C108.858 29.9202 109.921 30.3204 110.743 29.1611" stroke="#333333" stroke-linecap="round" />
+  <path
+    d="M110.812 87.8705C109.744 87.2148 109.15 86.3488 109.15 85.449L109.15 84.587L129.953 73.2443C132.272 71.9795 135.885 71.955 138.256 73.1878L150.851 79.7381L150.851 80.8974C150.851 81.8127 150.236 82.6923 149.136 83.3513L128.685 95.5987C127.227 96.4716 124.801 96.4628 123.363 95.5793L110.812 87.8705Z"
+    fill="#989898" />
+  <rect width="30.8472" height="21.5482" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 107.345 84.5134)"
+    fill="#C5C5C5" />
+  <rect width="25.3527" height="19.5019" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 112.185 82.7427)"
+    fill="#444444" />
+  <rect width="1.94964" height="3.61134" rx="0.974821" transform="matrix(0.866025 -0.5 0.866025 0.5 115.936 88.1482)"
+    fill="#818181" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M114.784 81.2417C113.349 82.0701 113.349 83.4133 114.784 84.2417L115.455 84.629L135.621 88.7133L141.033 85.5888L117.971 79.4015L114.784 81.2417ZM122.658 76.6956L144.185 83.7688L146.341 82.5241L126.448 74.5075L122.658 76.6956ZM128.752 73.177L148.139 81.4858L148.433 81.3163C148.65 81.1907 148.835 81.0533 148.987 80.9077L130.967 71.8981L128.752 73.177Z"
+    fill="#656565" />
+  <path
+    d="M122.381 67.6153C120.929 69.5596 120.723 71.86 121.919 72.7533L123.623 74.4953L128.549 69.1283L127.176 65.7122C125.979 64.8189 123.833 65.6709 122.381 67.6153Z"
+    fill="#A0C7F1" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.405 72.5504L122.331 71.8357C122.223 70.7934 122.57 69.7552 123.283 68.9873C124.094 68.1139 125.282 67.6934 126.462 67.862L127.092 67.9519C127.974 68.0779 128.756 68.5855 129.23 69.3399L130.432 71.2524C131.623 73.1475 131.089 75.6467 129.226 76.8884L129.06 76.9757L129.801 79.9403C129.899 80.3321 130.251 80.6069 130.655 80.6069C130.789 80.6069 130.897 80.7154 130.897 80.8494V81.3349C130.897 81.6515 130.641 81.9082 130.324 81.9082C129.536 81.9082 128.816 81.463 128.463 80.7582L127.09 78.0124L126.833 78.1479C126.16 78.5022 125.333 78.364 124.811 77.81C123.454 76.3681 122.609 74.52 122.405 72.5504Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.331 71.8359L122.405 72.5506C122.609 74.5202 123.455 76.3683 124.812 77.8102C125.333 78.3642 126.16 78.5024 126.833 78.1481L127.091 78.0126L127.755 79.3412L127.764 79.3352L126.212 76.2324C125.891 75.5901 125.408 75.0427 124.81 74.6443C123.908 74.043 123.367 73.0307 123.367 71.9466V68.901C123.339 68.9294 123.311 68.9582 123.284 68.9875C122.571 69.7554 122.224 70.7936 122.331 71.8359ZM130.017 76.2031L127.922 73.368L129.115 76.9473L129.226 76.8886C129.524 76.6898 129.789 76.4587 130.017 76.2031Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.046 90.1728L102.077 88.0438L103.936 82.4665L106.167 81.1652L108.584 82.2806C109.947 82.5285 112.86 83.2474 113.603 84.1397C114.193 84.8474 115.83 84.8816 117.043 84.907C117.743 84.9216 118.301 84.9333 118.437 85.0693C118.809 85.4411 118.437 86.3706 117.136 86.5566C116.529 86.6432 115.802 86.4877 115.085 86.3345C114.264 86.1588 113.456 85.9861 112.86 86.1847C111.744 86.5566 111.93 87.8579 112.86 88.4157C113.789 88.9734 116.764 90.8325 117.322 91.3902C117.879 91.948 117.693 92.6916 117.322 93.0634C117.056 93.3289 115.559 92.8362 113.506 91.5853C111.358 92.7231 108.734 92.7582 106.512 91.5617L104.123 90.2752C104.097 90.2411 104.072 90.2069 104.047 90.1728L104.046 90.1728Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.078 88.0445L104.047 90.1735L104.047 90.1735C104.072 90.2076 104.098 90.2417 104.124 90.2758L106.513 91.5623C108.73 92.7563 111.348 92.7239 113.493 91.5931L112.308 91.0008L109.923 90.6338C107.312 90.2322 105.01 88.7045 103.626 86.4553L102.965 85.3813L102.078 88.0445ZM114.264 92.0281L114.308 92.0008L113.64 91.6665C113.854 91.7955 114.063 91.9161 114.264 92.0281Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.485 89.417C100.926 88.8989 100.345 86.4253 101.187 83.8919C102.028 81.3586 103.975 79.7248 105.534 80.2428L108.028 81.9076L108.01 81.9572C107.89 81.8819 107.762 81.821 107.625 81.7757C106.137 81.2813 104.277 82.8477 103.471 85.2745C102.763 87.4057 103.103 89.4917 104.204 90.3031L102.485 89.417ZM104.717 90.5679L104.868 90.6454L104.88 90.6122C104.825 90.6 104.771 90.5853 104.717 90.5679Z"
+    fill="#A0C7F1" />
+  <path
+    d="M109.973 22.2202V22.2202C110.105 23.19 110.586 24.0785 111.325 24.7202L111.869 25.1929C112.489 25.7314 112.474 26.6989 111.837 27.2172L111.344 27.6182"
+    stroke="#333333" stroke-linecap="round" />
+  <defs>
+    <linearGradient id="paint0_linear_14421_60386" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/profileSkip.svg b/src/assets/form/profileSkip.svg
index 777597bb3..646b24670 100644
--- a/src/assets/form/profileSkip.svg
+++ b/src/assets/form/profileSkip.svg
@@ -1,166 +1,98 @@
-<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5791_75116)">
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" fill="white"/>
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" fill="white"/>
-<path d="M29.3915 114.311C28.6927 113.977 27.4068 113.824 26.8901 114.54C26.4203 115.175 26.115 116.619 26.1914 117.377C26.2383 117.893 26.4497 118.451 26.7961 118.85C27.2659 119.396 27.5536 119.197 28.1643 119.379C28.7397 119.543 28.9981 120.107 29.5618 119.396C29.9082 118.956 29.7908 118.246 29.8671 117.711C29.9611 117.118 30.1078 114.176 29.092 114.235" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" fill="white"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" fill="#DA3635"/>
-<path d="M27.6298 114.311C28.2346 114.035 29.6145 114.446 29.1624 115.386C28.9334 115.873 28.4813 115.826 28.311 116.39C28.264 116.554 28.2347 117.617 28.3873 117.682C28.8101 117.881 28.7338 116.725 28.9628 116.59C29.7496 116.073 29.4207 117.394 29.7378 117.588C30.5423 118.105 30.648 115.28 30.2839 114.769C29.8435 114.1 27.7355 113.343 27.1895 114.253C27.3539 114.3 27.6122 114.388 27.7825 114.405" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" fill="white"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" fill="white"/>
-<path d="M22.2746 127.2C22.1513 127.546 22.2922 128.11 21.8929 128.415C21.8753 128.322 21.8166 128.186 21.8166 128.069C21.5876 128.433 21.3175 128.827 20.9065 128.979C20.6012 128.04 21.2412 127.235 21.9106 126.613C22.0456 126.748 22.2276 126.901 22.2922 127.053" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" fill="white"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" fill="white"/>
-<path d="M29.2384 142.76C29.2208 142.989 29.4968 143.365 29.4498 143.518C29.3441 143.976 28.9214 143.976 28.5397 144.123C28.1463 144.258 27.9349 144.287 27.5356 144.516C27.3066 144.669 26.8369 145.262 26.5315 145.215C25.41 145.062 26.6255 143.5 27.0013 143.271C27.5004 142.954 28.7746 142.485 29.2033 142.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M35.9443 142.097C35.8679 142.843 36.5373 143.401 36.185 144.07C35.956 144.528 35.1986 145.62 34.5644 145.374C33.6073 145.009 34.4 144.023 34.6701 143.536C34.8697 143.189 34.9754 142.866 35.2749 142.625C35.4628 142.473 35.9913 142.079 35.9443 142.097Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" fill="white"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" fill="white"/>
-<path d="M27.4827 128.128C27.2831 130.101 26.7076 132.132 26.2966 134.105C26.0382 135.321 26.4023 136.337 26.5256 137.517C26.6607 138.82 26.8133 140.095 26.9366 141.386C26.9953 142.021 26.8427 142.901 27.4064 143.16C27.9701 143.418 28.8332 142.919 29.3793 142.843C29.6377 141.04 29.1797 138.973 29.1797 137.124C29.1797 136.09 29.1504 135.38 29.6377 134.481C30.0311 133.753 30.4128 132.919 30.3952 132.068C30.8062 134.147 30.9119 136.225 31.7163 138.163C32.5031 140.118 33.6599 141.968 34.7638 143.7C36.3727 142.972 36.132 141.304 35.3275 140.106C34.5113 138.891 34.0827 137.617 33.9183 136.178C33.7656 134.781 33.7832 133.465 33.9359 132.068C34.0122 131.281 34.2706 130.353 34.1473 129.566C34.0122 128.686 33.5719 128.609 32.7205 128.351C32.0041 128.14 27.7587 127.441 27.5473 128.275" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" fill="white"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" fill="white"/>
-<path d="M27.1011 119.073C25.3102 119.15 24.9344 123.231 23.8833 124.382C23.4606 124.851 23.0202 125.292 22.5035 125.673C21.975 126.067 21.3173 126.19 21.975 126.889C22.568 127.541 22.7794 127.089 23.3431 126.678C23.8128 126.331 24.3589 126.102 24.8933 125.826C26.3965 125.069 26.3026 124.352 26.5609 122.855C26.7253 123.554 26.9837 124.082 27.0306 124.81C27.0776 125.644 26.9543 126.495 27.0306 127.312C27.1833 129.179 28.9566 129.114 30.4892 129.255C31.276 129.314 32.0217 128.862 32.5678 128.921C32.8732 128.95 33.1608 129.332 33.5543 129.197C34.118 128.997 33.9947 128.545 34.1591 128.046C34.4762 127.118 35.3863 125.785 35.3099 124.799C35.2219 123.648 33.4427 122.309 32.8673 121.281C32.2918 120.265 31.6048 118.809 30.1838 118.944C29.6553 118.991 29.4557 119.432 28.9566 119.537C28.4575 119.643 27.8058 119.373 27.3654 119.156" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1394 129.672C31.5463 130.383 31.5169 131.14 31.4112 132.127C31.2879 133.201 31.0296 134.158 31.0179 135.268C31.0002 137.499 31.0179 139.695 31.0179 141.956C31.0179 142.684 30.6362 145.385 31.2292 145.779C31.652 144.639 31.3349 142.943 31.3937 141.715C31.47 140.136 31.3936 138.468 31.4993 136.906C31.6344 135.174 31.5933 133.371 31.9104 131.674C31.9985 131.205 32.2451 130.019 32.7618 129.837C33.4899 129.566 33.9127 130.911 34.0653 130.929C34.8111 131.034 34.0184 129.367 33.2139 129.273C32.4388 129.173 32.2275 129.461 32.1394 129.672Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" fill="white"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" fill="white"/>
-<path d="M33.6071 129.267C33.6071 129.69 33.7421 130.312 33.2724 130.512C32.5912 130.788 32.603 129.995 32.603 129.543C32.4973 129.561 32.2859 129.484 32.1626 129.496C31.8749 128.48 34.0005 128.568 33.7539 129.572" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.575 126.441L148.045 137.459C154.369 141.038 154.419 146.909 148.158 150.524L96.0668 180.598C89.849 184.188 79.768 184.188 73.5502 180.598L30.3016 155.629" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M42.6586 80.5252L33.4559 75.3041C27.1452 71.7237 27.1009 65.8596 33.3571 62.2475L77.9341 36.511C84.1519 32.9211 94.233 32.9211 100.451 36.511L170.121 76.7354" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M47.7647 83.2691C47.4781 83.4335 47.1956 83.6063 46.9174 83.7834C37.9049 89.4868 37.9091 98.3477 46.9259 104.013C53.1436 107.925 62.0465 109.451 70.393 108.608C71.5902 108.486 72.4755 109.223 71.9064 109.843C62.0381 120.529 64.032 133.917 77.926 143.469C78.7185 144.013 80.1517 144.043 81.0243 143.537L151.7 102.732C152.572 102.226 152.53 101.395 151.594 100.936C135.15 92.8592 112.046 91.6578 93.5609 97.3402C92.4776 97.6732 91.2298 97.142 91.4448 96.4423C92.8654 91.8011 90.5048 86.8564 84.3334 83.2691C74.267 77.4223 57.8943 77.4223 47.7647 83.2691Z" fill="#EDEDED"/>
-<path d="M42.5926 81.0228C42.268 81.2082 41.9476 81.4021 41.6357 81.6003C31.4513 88.0456 31.4555 98.0572 41.6441 104.465C48.6712 108.882 58.7334 110.611 68.1633 109.654C69.5122 109.515 70.5154 110.349 69.8705 111.049C58.7207 123.126 60.9718 138.255 76.6742 149.047C77.5678 149.662 79.1866 149.692 80.173 149.123L160.047 103.01C161.033 102.441 160.987 101.501 159.929 100.983C141.343 91.8521 115.233 90.499 94.341 96.9191C93.1185 97.2942 91.7063 96.6956 91.9508 95.9074C93.5569 90.6634 90.8886 85.0738 83.9163 81.0228C72.5431 74.413 54.0416 74.413 42.5926 81.0228Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M91.9258 78.3123L91.9764 95.4944C91.9764 95.4438 91.9848 95.3974 91.9974 95.3468C92.2503 94.5164 92.3768 93.6775 92.3768 92.8386L92.3262 75.6566C92.3304 76.4955 92.204 77.3344 91.9468 78.1648C91.9342 78.2154 91.9258 78.266 91.9258 78.3123Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M43.5791 75.7958L43.6297 92.9778C43.6381 96.4007 45.7669 99.8194 50.0118 102.488C55.8755 106.176 64.2768 107.618 72.1469 106.821C73.0322 106.733 73.7404 107.142 73.7404 107.605L73.6898 90.4232C73.6898 89.9595 72.9816 89.5507 72.0964 89.6392C64.2262 90.4359 55.8291 88.9942 49.9612 85.3057C45.7163 82.6374 43.5875 79.2187 43.5791 75.7958Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M149.378 83.2697C149.378 83.5689 149.184 83.8683 148.787 84.0959L82.1206 122.587L82.1712 139.769L148.838 101.278C149.234 101.05 149.432 100.751 149.428 100.452L149.378 83.2697Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M67.7168 104.3L67.7674 121.482C67.7842 127.97 71.6118 134.453 79.2502 139.701C79.9963 140.216 81.3495 140.241 82.1715 139.765L82.1209 122.583C81.2989 123.059 79.9457 123.034 79.1996 122.519C71.5612 117.271 67.7337 110.788 67.7168 104.3Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M50.7537 65.7421C50.4839 65.898 50.2141 66.0582 49.9527 66.2268C41.4502 71.6057 41.4587 79.9649 49.9612 85.31C55.8248 88.9985 64.2261 90.4402 72.0963 89.6434C73.2218 89.5296 74.0607 90.2209 73.5211 90.8069C64.2135 100.89 66.0935 113.515 79.1992 122.524C79.9454 123.038 81.2985 123.063 82.1206 122.587L148.787 84.096C149.609 83.6196 149.571 82.8356 148.69 82.4014C133.178 74.7799 111.388 73.6502 93.949 79.008C92.9288 79.3199 91.7485 78.8225 91.9509 78.1607C93.2914 73.7851 91.0615 69.1186 85.2442 65.7336C75.7511 60.2241 60.31 60.2241 50.7537 65.7421Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M129.093 121.963C131.133 123.139 131.146 125.048 129.118 126.224C127.09 127.4 123.794 127.4 121.754 126.224C119.714 125.048 119.705 123.139 121.733 121.963C123.76 120.786 127.053 120.786 129.093 121.963Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M125.417 57.1666V124.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M130.655 48.727L126.083 46.0703L134.228 50.7146L138.807 53.3713L130.655 48.727Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.273 25.3822L138.853 28.0453C138.223 27.6751 137.391 27.792 136.56 28.2727L131.98 25.6095C132.812 25.1288 133.643 25.0184 134.273 25.3822Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.267 74.0663L107.687 71.4031C106.434 70.6756 106.518 68.1619 107.785 65.9794L112.364 68.6425C111.097 70.825 111.006 73.3388 112.267 74.0663Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.357 68.6423L107.778 65.9791L115.871 51.9618L120.451 54.625L112.357 68.6423Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.076 44.8751L121.503 42.2184L129.707 28.0127L134.287 30.6694L126.076 44.8751Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.286 30.6695L129.707 28.0064C130.331 26.9216 131.156 26.0772 131.98 25.603L136.56 28.2662C135.735 28.7469 134.91 29.5848 134.286 30.6695Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M120.451 54.6249L115.871 51.9617C116.17 51.4421 116.17 50.8835 115.865 50.7211L120.444 53.3842C120.749 53.5466 120.756 54.1052 120.451 54.6249Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M124.998 45.5053L120.418 42.8421C120.568 42.9265 120.769 42.9006 120.964 42.7836C121.159 42.6732 121.354 42.4719 121.503 42.212L126.083 44.8752C125.933 45.135 125.738 45.3299 125.543 45.4468C125.342 45.5572 125.147 45.5897 124.998 45.5053Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.852 40.8544L112.272 38.1978L120.418 42.842L124.997 45.5052L116.852 40.8544Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M136.56 28.2661C137.411 27.7724 138.268 27.6685 138.905 28.0712C140.126 28.8442 140.002 31.293 138.755 33.456L130.655 47.4798C130.356 47.993 130.356 48.5516 130.662 48.7205L138.807 53.3648C140.106 54.0988 140.184 56.5801 138.866 58.782C138.249 59.8148 137.456 60.6073 136.657 61.0685C135.832 61.5426 135.001 61.6595 134.371 61.2958L126.115 56.593C125.966 56.5086 125.771 56.5346 125.576 56.645C125.381 56.7554 125.186 56.9568 125.037 57.2166L116.833 71.4223C116.203 72.5136 115.378 73.3515 114.553 73.8256C113.754 74.2868 112.962 74.4037 112.338 74.092C111.006 73.4164 111.071 70.8572 112.357 68.6292L120.451 54.6119C120.75 54.0923 120.75 53.5337 120.444 53.3713L112.189 48.6685C110.909 47.9345 110.922 45.5247 112.234 43.3227C112.838 42.3094 113.611 41.5494 114.397 41.0947C115.28 40.5881 116.177 40.4712 116.839 40.8479L124.985 45.4922C125.134 45.5766 125.335 45.5507 125.53 45.4337C125.725 45.3233 125.92 45.122 126.069 44.8621L134.273 30.6564C134.91 29.5847 135.735 28.7468 136.56 28.2661Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M112.195 48.6752L107.616 46.012C106.336 45.278 106.349 42.8682 107.661 40.6662C108.265 39.6529 109.038 38.8929 109.824 38.4382C110.708 37.9316 111.604 37.8147 112.267 38.1914L116.846 40.8545C116.177 40.4778 115.287 40.5882 114.404 41.1014C113.618 41.5561 112.845 42.3225 112.241 43.3293C110.929 45.5313 110.916 47.9412 112.195 48.6752Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.2121 145.224C37.7749 148.437 37.8109 153.646 32.2781 156.859C26.7512 160.072 17.7537 160.072 12.1909 156.859C6.6281 153.646 6.59814 148.437 12.131 145.224C17.6578 142.011 26.6494 142.011 32.2121 145.224Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M30.6175 146.021C35.2872 148.719 35.3171 153.089 30.6775 155.786C26.0378 158.483 18.485 158.483 13.8093 155.786C9.13372 153.089 9.11569 148.719 13.7553 146.021C18.395 143.324 25.9419 143.324 30.6175 146.021Z" fill="#EDEDED"/>
-<path d="M33.1714 145.751C33.1654 145.805 33.1654 145.859 33.1594 145.919C33.1534 145.967 33.1475 146.015 33.1415 146.063C33.1355 146.117 33.1235 146.171 33.1175 146.225C33.1115 146.273 33.0994 146.321 33.0875 146.369C33.0755 146.423 33.0635 146.477 33.0455 146.531C33.0335 146.579 33.0155 146.627 33.0035 146.675C32.9855 146.729 32.9676 146.782 32.9496 146.83C32.9316 146.878 32.9137 146.926 32.8957 146.974C32.8717 147.028 32.8477 147.082 32.8237 147.142C32.8058 147.19 32.7818 147.232 32.7578 147.28C32.7338 147.334 32.7038 147.388 32.6739 147.442C32.6499 147.484 32.6259 147.532 32.6019 147.574C32.566 147.64 32.524 147.706 32.482 147.766C32.458 147.808 32.4341 147.844 32.4041 147.885C32.3561 147.957 32.3022 148.029 32.2482 148.095C32.2243 148.125 32.2003 148.155 32.1763 148.191C32.0864 148.305 31.9905 148.413 31.8946 148.521C31.8706 148.551 31.8406 148.575 31.8167 148.605C31.7387 148.689 31.6549 148.773 31.5709 148.851C31.529 148.887 31.493 148.922 31.451 148.958C31.3971 149.006 31.3431 149.048 31.2891 149.096C31.2412 149.138 31.1932 149.18 31.1393 149.222C31.0853 149.27 31.0254 149.312 30.9655 149.36C30.9115 149.402 30.8576 149.444 30.8036 149.48C30.7437 149.522 30.6837 149.57 30.6178 149.612C30.5578 149.654 30.5039 149.69 30.444 149.732C30.378 149.774 30.3121 149.816 30.2461 149.858C30.1622 149.912 30.0783 149.96 29.9944 150.013C29.7546 150.151 29.5088 150.277 29.257 150.403C29.1911 150.433 29.1252 150.469 29.0532 150.499C28.8255 150.607 28.5917 150.703 28.3519 150.799C28.3219 150.811 28.292 150.823 28.256 150.835C27.9983 150.931 27.7345 151.021 27.4707 151.104C27.2849 151.164 27.0931 151.212 26.9073 151.266C26.7634 151.308 26.6196 151.344 26.4757 151.38C26.2779 151.428 26.0741 151.47 25.8703 151.512C25.7204 151.542 25.5765 151.578 25.4267 151.602C25.3667 151.614 25.3008 151.62 25.2408 151.632C24.9891 151.674 24.7373 151.71 24.4795 151.74C24.4076 151.746 24.3297 151.758 24.2577 151.764C24.1139 151.782 23.964 151.788 23.8142 151.8C23.5684 151.818 23.3226 151.836 23.0709 151.848C22.915 151.854 22.7531 151.86 22.5973 151.86C22.3995 151.866 22.1957 151.866 21.9978 151.86C21.83 151.86 21.6622 151.854 21.4943 151.848C21.3085 151.842 21.1227 151.83 20.9368 151.818C20.769 151.806 20.6012 151.794 20.4273 151.776C20.2415 151.758 20.0617 151.74 19.8819 151.716C19.72 151.698 19.5522 151.674 19.3903 151.644C19.1925 151.614 19.0007 151.578 18.8089 151.542C18.659 151.512 18.5031 151.482 18.3533 151.452C18.1255 151.404 17.8977 151.344 17.6699 151.284C17.5261 151.248 17.3762 151.212 17.2323 151.164C17.1544 151.14 17.0765 151.116 17.0046 151.092C16.7768 151.021 16.555 150.943 16.3392 150.865C16.2732 150.841 16.2133 150.817 16.1473 150.793C15.9495 150.715 15.7577 150.631 15.5659 150.547C15.47 150.505 15.3741 150.469 15.2842 150.421C15.0084 150.289 14.7387 150.151 14.4809 150.001C12.317 148.755 11.238 147.112 11.244 145.476L11.232 150.193C11.226 151.83 12.305 153.466 14.4689 154.719C14.7267 154.869 14.9964 155.007 15.2722 155.139C15.3621 155.181 15.464 155.223 15.5539 155.265C15.7157 155.336 15.8776 155.414 16.0455 155.48C16.0754 155.492 16.1054 155.504 16.1354 155.51C16.1953 155.534 16.2612 155.558 16.3272 155.582C16.543 155.66 16.7708 155.738 16.9926 155.81C17.0705 155.834 17.1484 155.858 17.2263 155.882C17.2803 155.9 17.3283 155.918 17.3822 155.93C17.4721 155.954 17.568 155.972 17.6639 155.996C17.8917 156.056 18.1135 156.11 18.3473 156.164C18.4072 156.176 18.4672 156.194 18.5271 156.206C18.6171 156.224 18.707 156.236 18.7969 156.254C18.9887 156.29 19.1865 156.326 19.3783 156.356C19.4562 156.368 19.5342 156.386 19.6121 156.397C19.696 156.409 19.786 156.415 19.8699 156.427C20.0497 156.451 20.2355 156.469 20.4213 156.487C20.5112 156.493 20.5952 156.511 20.6851 156.517C20.769 156.523 20.847 156.523 20.9309 156.529C21.1167 156.541 21.3025 156.553 21.4883 156.559C21.5842 156.565 21.6741 156.571 21.7701 156.571C21.842 156.571 21.9199 156.571 21.9918 156.571C22.1897 156.571 22.3935 156.571 22.5913 156.571C22.6932 156.571 22.7891 156.571 22.891 156.571C22.9509 156.571 23.0109 156.559 23.0649 156.559C23.3106 156.547 23.5624 156.529 23.8082 156.511C23.9101 156.505 24.006 156.499 24.1079 156.493C24.1558 156.487 24.2038 156.481 24.2517 156.475C24.3237 156.469 24.4016 156.457 24.4735 156.451C24.7313 156.421 24.9831 156.386 25.2348 156.344C25.2948 156.332 25.3607 156.326 25.4207 156.314C25.4507 156.308 25.4806 156.308 25.5105 156.302C25.6304 156.278 25.7444 156.248 25.8643 156.224C26.0681 156.182 26.2719 156.14 26.4697 156.092C26.6136 156.056 26.7574 156.014 26.9013 155.978C27.0931 155.924 27.2789 155.876 27.4647 155.816C27.5067 155.804 27.5487 155.792 27.5847 155.78C27.8124 155.708 28.0342 155.63 28.25 155.546C28.28 155.534 28.31 155.522 28.346 155.51C28.5857 155.414 28.8195 155.319 29.0472 155.211C29.1132 155.181 29.1851 155.151 29.251 155.115C29.5028 154.995 29.7546 154.863 29.9884 154.725C30.0364 154.701 30.0783 154.671 30.1203 154.647C30.1622 154.623 30.1982 154.599 30.2401 154.569C30.3061 154.527 30.372 154.485 30.438 154.443C30.4979 154.401 30.5578 154.365 30.6118 154.323C30.6717 154.281 30.7377 154.24 30.7976 154.192C30.8516 154.15 30.9055 154.108 30.9595 154.066C31.0194 154.024 31.0733 153.976 31.1333 153.934C31.1872 153.892 31.2352 153.85 31.2831 153.808C31.3371 153.76 31.391 153.718 31.439 153.67C31.463 153.652 31.481 153.634 31.5049 153.616C31.5229 153.598 31.5409 153.58 31.5589 153.562C31.6429 153.478 31.7267 153.4 31.8046 153.316C31.8286 153.286 31.8586 153.262 31.8826 153.232C31.9845 153.125 32.0805 153.011 32.1644 152.903C32.1704 152.897 32.1703 152.891 32.1763 152.891C32.1943 152.867 32.2123 152.837 32.2363 152.813C32.2903 152.741 32.3442 152.675 32.3922 152.603C32.4161 152.561 32.4461 152.525 32.4701 152.483C32.5121 152.417 32.554 152.351 32.5899 152.291C32.6019 152.273 32.614 152.255 32.6199 152.237C32.6379 152.213 32.6439 152.183 32.6619 152.159C32.6919 152.106 32.7218 152.052 32.7458 151.998C32.7698 151.95 32.7878 151.908 32.8117 151.86C32.8357 151.806 32.8597 151.752 32.8837 151.692C32.8957 151.668 32.9077 151.644 32.9137 151.62C32.9197 151.596 32.9256 151.572 32.9376 151.554C32.9556 151.5 32.9736 151.446 32.9916 151.398C33.0036 151.35 33.0215 151.302 33.0335 151.254C33.0455 151.2 33.0635 151.146 33.0755 151.092C33.0814 151.062 33.0935 151.033 33.0995 151.009C33.1055 150.991 33.1055 150.967 33.1115 150.949C33.1234 150.895 33.1295 150.841 33.1355 150.787C33.1415 150.739 33.1474 150.691 33.1534 150.643C33.1594 150.589 33.1594 150.535 33.1654 150.475C33.1654 150.445 33.1714 150.409 33.1714 150.379C33.1714 150.349 33.1714 150.313 33.1714 150.283L33.1834 145.566C33.1834 145.62 33.1774 145.686 33.1714 145.751Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M29.9404 141.028C34.2384 143.51 34.2624 147.532 29.9944 150.013C25.7264 152.495 18.7789 152.495 14.4809 150.013C10.1829 147.532 10.1649 143.51 14.4329 141.028C18.7009 138.546 25.6424 138.546 29.9404 141.028Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<line x1="22.2247" y1="142.207" x2="22.2247" y2="147.793" stroke="#DA3635" stroke-width="2" stroke-linecap="round"/>
-<line x1="25.7753" y1="145.207" x2="18.2247" y2="145.207" stroke="#DA3635" stroke-width="2" stroke-linecap="round"/>
-<path d="M180.108 74.6321C183.506 76.5827 183.52 79.7463 180.149 81.7037C176.779 83.6543 171.29 83.6543 167.892 81.7037C164.493 79.7532 164.48 76.5896 167.857 74.6321C171.235 72.6747 176.716 72.6816 180.108 74.6321Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" fill="white"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" fill="white"/>
-<path d="M160.944 63.9987C160.96 64.2128 160.929 64.7022 160.878 64.8959C160.649 64.8959 160.618 64.7838 160.582 64.585C160.241 65.1101 159.767 66.4457 159.405 65.3191C159.191 64.6513 159.471 63.7999 160.073 63.3921" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" fill="white"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" fill="white"/>
-<path d="M171.772 65.8951C171.935 66.3845 172.766 67.0218 172.068 67.3837C171.349 67.761 170.844 66.5834 170.763 65.9818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" fill="white"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" fill="white"/>
-<path d="M171.201 74.7299C171.171 75.0255 171.92 75.7443 172.053 76.1318C172.231 76.6722 172.038 77.1106 171.757 77.5694C171.252 78.3851 171.268 77.8956 171.151 77.2584C171.054 76.7027 170.676 76.2439 170.483 75.7392" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.176 80.1489C166.007 81.1124 162.53 83.381 163.575 81.1787L165.176 80.1489Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" fill="white"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" fill="white"/>
-<path d="M171.986 75.9686C172.608 76.0655 172.527 76.8811 172.394 77.3553C172.297 77.6509 171.512 78.9866 171.252 78.8082C170.681 78.3851 171.446 77.7478 171.594 77.5184C171.808 77.1921 172.231 76.5396 172.068 76.1318" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" fill="white"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" fill="white"/>
-<path d="M165.746 58.2993C165.894 58.4318 168.035 56.1275 167.969 56.0766C167.821 55.9287 167.444 55.7809 167.398 55.6025C167.317 55.2252 167.102 54.6236 167.25 54.2617C167.791 54.4758 168.081 53.9201 168.035 53.395C167.969 52.7425 166.893 52.1715 167.006 53.0535C166.22 53.2319 166.338 52.5131 165.517 51.9574C164.569 52.2531 164.487 51.8912 163.998 51.6006C163.59 52.661 164.079 55.6483 165.369 55.0774C164.895 55.0468 165.384 55.0927 165.435 55.373C165.369 55.3883 164.946 56.4844 164.931 56.4844" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" fill="white"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" fill="#DA3635"/>
-<path d="M164.228 51.2131C164.671 50.5605 164.962 50.5452 165.635 50.3617C166.257 50.1833 166.924 49.8061 167.613 50.1986C168.28 50.5758 168.316 51.6362 168.627 52.2887C168.969 53.0738 169.657 53.7111 169.835 54.542C170.049 55.4546 169.591 55.7197 168.775 55.9644C168.122 56.1581 167.485 56.0459 167.159 55.424C167.047 55.2099 166.945 54.6899 167.026 54.4452C167.159 54.0679 167.664 54.1036 167.857 53.7926C168.071 53.4664 167.745 52.7323 167.317 52.7628C167.138 52.7781 167.057 53.1554 166.746 53.1707C166.567 53.186 166.042 52.9107 165.93 52.7476C165.798 52.5844 165.833 52.1256 165.635 52.0797C165.42 52.0135 165.145 52.4723 164.946 52.5385C164.161 52.7832 164.131 52.1817 164.013 51.6056" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M167.969 56.0612C167.612 56.5506 166.71 57.4835 166.042 57.5141C165.211 57.5651 165.043 55.8981 165.456 55.3577C164.686 54.7867 164.426 55.7808 164.233 56.3518C163.957 57.1828 163.626 57.8863 163.106 58.5898C162.55 59.3749 161.964 60.1396 161.536 61.0062C161.097 61.9187 160.521 62.6376 159.966 63.4532C160.44 63.6011 160.588 63.8764 160.914 64.1873C161.566 63.7132 162.107 62.8007 162.611 62.1634C163.116 61.4956 163.641 60.889 163.952 60.1039C164.263 60.7258 164.064 61.6893 164.64 62.0972C165.099 62.4081 165.945 62.3572 166.486 62.3572C167.072 62.3572 167.893 62.5713 168.219 62.0462C168.678 61.3121 168.168 60.1192 168.515 59.3545C169.448 60.058 169.738 62.505 170.003 63.6011C170.151 64.2536 170.182 66.2622 171.064 66.3795C171.242 66.3947 171.834 66.15 171.961 66.0379C172.257 65.7626 172.221 65.7932 172.124 65.3548C172.012 64.8501 171.665 64.4065 171.538 63.8866C171.405 63.3462 171.324 62.7905 171.263 62.2399C171.099 60.787 170.529 59.7419 169.973 58.4012C169.662 57.6314 169.565 56.8973 168.795 56.4589C168.525 56.26 168.326 56.0969 167.969 56.0612Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" fill="white"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" fill="white"/>
-<path d="M165.058 77.7988C165.303 77.9773 165.221 79.6749 165.17 80.0674C165.104 80.6741 164.319 81.714 163.6 81.6528C163.407 81.1634 163.748 80.5772 163.83 80.0827C163.911 79.5423 163.896 78.9867 163.83 78.4514" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M168.245 61.9441C169.29 63.0197 169.208 64.9009 169.014 66.2569C168.821 67.5977 167.725 69.3922 168.637 70.5494C169.193 71.2682 169.601 72.0839 170.172 72.7517C170.63 73.2921 171.329 73.8783 171.283 74.6787C171.268 75.005 171.003 75.5097 170.697 75.6728C170.207 75.9328 170.029 75.525 169.667 75.1324C168.979 74.3626 168.489 73.5623 167.643 72.9607C166.68 72.2776 166.435 71.6862 166.221 70.5749C165.94 69.2698 165.879 67.9596 165.716 66.6699C165.42 68.1585 165.685 69.6573 165.42 71.1306C165.273 71.9972 165.094 72.8129 165.16 73.7101C165.242 74.7858 165.487 75.8512 165.42 76.9422C165.369 77.712 165.273 78.1198 164.523 78.3288C164.309 78.3798 163.917 78.5226 163.738 78.4257C163.295 78.1963 163.381 76.3661 163.346 75.943C163.131 72.8741 162.367 69.8051 162.576 66.7005C162.642 65.8491 162.739 64.7225 162.984 63.9221C163.213 63.1523 163.636 61.9798 164.289 61.47C164.646 62.3825 165.349 62.3366 166.313 62.3213C166.94 62.3009 167.786 62.4131 168.245 61.9441Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" fill="white"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" fill="white"/>
-<path d="M182.569 51.1009C183.273 51.3813 182.977 53.4358 183.044 54.2056C183.14 55.3832 181.657 55.6585 180.546 54.9549C179.811 54.4808 179.485 52.5029 179.419 51.626C179.322 50.0915 181.723 49.9794 182.243 51.2488" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" fill="white"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" fill="white"/>
-<path d="M182.998 54.3789C182.295 56.0255 180.383 54.4451 179.975 55.0824C179.679 55.5412 179.679 56.9278 179.618 57.4835C179.506 58.3808 179.537 59.329 179.537 60.2415C179.537 61.567 179.047 64.3403 180.633 64.9775C182.641 65.7932 183.508 62.6121 183.457 61.2203C183.406 60.1243 183.227 59.0486 183.243 57.9372C183.258 56.9075 183.829 55.0161 182.916 54.2463" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" fill="white"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" fill="white"/>
-<path d="M188.305 64.1466C188.417 64.4066 188.6 64.9623 188.743 65.2223C187.617 65.5638 186.913 66.0074 187.01 64.3556" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M177.196 64.0343C176.758 64.4421 176.967 65.9307 175.973 65.5841C174.943 65.2068 175.81 64.4574 175.958 63.6876C176.365 63.8355 176.885 63.8049 177.196 64.0343Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" fill="white"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" fill="white"/>
-<path d="M176.508 65.5484C176.901 66.0684 176.671 66.5272 176.294 66.8076C176.309 66.7923 175.116 67.0676 175.004 67.0013C174.025 66.5119 175.361 65.4821 175.545 64.9622" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" fill="white"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" fill="white"/>
-<path d="M187.535 65.5485C187.484 65.9258 187.438 66.4967 187.372 66.8383C187.438 66.7873 187.586 66.6751 187.668 66.6242C187.29 68.4033 189.839 66.4763 188.565 65.3191" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" fill="white"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" fill="white"/>
-<path d="M185.282 75.0867C185.705 76.8659 183.895 77.1259 184.221 75.2192C184.532 75.2345 184.859 75.0561 185.073 74.9899" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" fill="white"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" fill="white"/>
-<path d="M179.649 77.5846C179.552 77.6509 179.434 77.6815 179.353 77.7783C180.056 77.972 180.087 78.6603 180.413 79.2159C180.938 78.3646 180.413 77.5999 179.434 77.5999" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" fill="white"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" fill="white"/>
-<path d="M180.286 79.1038C179.944 77.7172 178.634 77.0952 177.263 76.9474C177.278 78.0434 179.516 80.7708 180.515 79.216" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" fill="white"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" fill="white"/>
-<path d="M184.089 76.0654C184.385 76.5243 184.94 76.4886 185.267 76.0807C185.771 77.3705 183.977 77.3705 183.059 77.2584C180.969 77.0289 183.712 76.6211 183.875 75.8717C184.186 76.1011 184.66 76.249 185.083 76.1827" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" fill="white"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" fill="#DA3635"/>
-<path d="M181.82 52.1103C181.851 51.5241 182.702 51.4578 182.799 51.9982C182.85 52.1919 181.948 53.3848 181.8 53.4205C181.096 53.5836 180.658 52.3907 179.888 52.5385C178.955 52.7323 179.2 53.8793 179.807 54.333C181.147 55.3781 181.897 53.8283 182.631 52.9617C182.957 52.5844 183.171 52.7985 183.334 52.1919C183.431 51.835 183.268 51.4221 183.202 51.0958C183.039 50.1986 182.875 49.5257 181.943 49.2657C181.142 49.0363 180.031 49.2147 179.409 49.7041C178.512 50.4076 178.869 51.9064 179.705 50.8154C180.148 51.4527 181.127 51.8605 181.892 51.5495" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3015 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" fill="white"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3016 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3015 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" fill="white"/>
-<path d="M179.959 54.7051C180.352 55.6533 179.893 57.4478 180.01 58.5591C180.143 59.9305 180.174 61.3018 180.174 62.7088C180.174 63.6061 180.107 63.8049 180.78 64.2943C181.565 64.8806 182.167 64.9468 182.447 64.1312C182.906 62.7751 182.269 60.6849 182.233 59.283C182.203 57.9932 183.803 55.1843 183.166 54.1902C184.915 54.8427 185.501 56.4435 186.153 58.0595C186.775 59.645 187.754 61.3426 188.162 62.9892C188.295 63.5143 188.519 64.1159 188.096 64.4574C187.555 64.9162 186.857 64.4421 186.628 64.0802C186.332 63.6061 186.317 62.3163 186.138 61.7453C185.909 60.9297 185.618 60.1956 185.159 59.5226C184.864 60.5014 185.063 61.6944 185.19 62.6885C185.272 63.3563 185.746 65.0233 185.501 65.6299C185.323 66.0888 184.425 66.6903 184.114 67.3633C183.757 68.0974 183.085 68.9946 182.891 69.795C182.432 71.6557 184.639 72.8792 185.18 74.4494C185.491 75.3823 184.787 75.6933 184.023 75.1019C183.253 74.5157 183.008 73.1749 182.06 72.8792C181.112 74.3016 181.127 76.4529 180.571 78.023C177.63 77.6662 180.994 71.982 180.668 70.7075C180.49 69.9734 179.689 69.5656 179.526 68.7652C179.394 68.0617 179.674 67.3123 179.771 66.6241C179.949 65.4158 179.577 65.63 179.185 64.7939C178.761 63.8967 178.843 62.4285 178.874 61.4649C178.614 61.8422 176.702 65.8084 175.947 63.9986C175.687 63.392 177.645 60.6034 177.829 59.9815C178.303 58.2482 177.502 54.4604 180.067 54.8223" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M61.7227 45.2692C63.499 46.2931 63.5063 47.9537 61.7444 48.9811C59.9825 50.005 57.1136 50.005 55.3372 48.9811C53.5609 47.9573 53.5537 46.2967 55.3192 45.2692C57.0847 44.2418 59.95 44.2454 61.7227 45.2692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M58.6665 22.5L58.6665 47.1667" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M66.135 11.8464L66.0994 24.5038C66.0994 24.6154 66.0733 24.7269 66.0234 24.8385L66.059 12.1811C66.1089 12.0719 66.135 11.958 66.135 11.8464Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M50.5181 26.2083L50.5537 13.5509C50.5537 13.8974 50.7886 14.2368 51.2253 14.4884L51.1897 27.1458C50.753 26.8918 50.5181 26.5524 50.5181 26.2083Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.0591 12.181L66.0235 24.8384L64.5591 28.0401L64.597 15.3804L66.0591 12.181Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M64.5972 15.3804L64.5616 28.0377C64.3551 28.4911 63.7451 28.8471 62.9619 28.9681L62.9975 16.3107C63.7807 16.1897 64.3907 15.8361 64.5972 15.3804Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M55.2841 16.8283L55.2485 29.4856L51.1899 27.1431L51.2255 14.4857L55.2841 16.8283Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M62.9951 16.3107L62.9595 28.9704L57.439 29.8272L57.4769 17.1698L62.9951 16.3107Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M57.4767 17.17L57.4411 29.8274C56.6579 29.9484 55.8224 29.8179 55.248 29.4856L55.2837 16.8282C55.858 17.1605 56.6935 17.2911 57.4767 17.17Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.4657 10.9115C66.04 11.2438 66.2679 11.7279 66.059 12.1813L64.597 15.3806C64.3905 15.8339 63.7806 16.1899 62.9973 16.311L57.4768 17.1678C56.6936 17.2888 55.8581 17.1583 55.2838 16.826L51.2253 14.4835C50.6509 14.1512 50.423 13.667 50.6295 13.2137L52.0916 10.0143C52.298 9.56101 52.9104 9.205 53.6912 9.08396L59.2118 8.22716C59.995 8.10374 60.8304 8.23428 61.4048 8.56656L65.4657 10.9115Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.1279 10.2183C66.1256 10.2587 66.1232 10.2967 66.1184 10.337C66.116 10.3702 66.1113 10.4058 66.1065 10.4391C66.1018 10.477 66.0947 10.5174 66.0876 10.5554C66.0804 10.5886 66.0733 10.6242 66.0662 10.6574C66.0567 10.6954 66.0496 10.7334 66.0377 10.7713C66.0282 10.8046 66.0187 10.8402 66.0069 10.8734C65.995 10.9114 65.9831 10.9493 65.9689 10.9849C65.957 11.0182 65.9452 11.0514 65.9309 11.0846C65.9143 11.125 65.8977 11.1629 65.8811 11.2033C65.8668 11.2365 65.8502 11.2697 65.836 11.3006C65.817 11.3386 65.7957 11.3789 65.7767 11.4169C65.7601 11.4478 65.7434 11.4786 65.7244 11.5118C65.6983 11.5569 65.6698 11.6044 65.639 11.6495C65.62 11.678 65.6034 11.7065 65.5844 11.7326C65.5488 11.7824 65.5132 11.8322 65.4752 11.8821C65.4586 11.9034 65.442 11.9272 65.4254 11.9485C65.3613 12.0269 65.2948 12.1076 65.2236 12.1835C65.2047 12.2025 65.1857 12.2239 65.1667 12.2428C65.1097 12.3022 65.0528 12.3615 64.9911 12.4185C64.9626 12.4446 64.9341 12.4707 64.9056 12.4968C64.87 12.53 64.832 12.5633 64.7917 12.5965C64.7561 12.6273 64.7205 12.6558 64.6849 12.6843C64.6445 12.7175 64.6042 12.7484 64.5615 12.7792C64.5235 12.8077 64.4855 12.8362 64.4452 12.8647C64.4024 12.8955 64.3574 12.9264 64.3146 12.9572C64.2743 12.9857 64.2316 13.0142 64.1912 13.0403C64.1461 13.0712 64.0987 13.0996 64.0512 13.1305C63.9919 13.1685 63.9325 13.2041 63.8708 13.242C63.7023 13.3394 63.5243 13.4319 63.3463 13.5174C63.2988 13.5411 63.2513 13.5625 63.2039 13.5838C63.0401 13.6598 62.8764 13.731 62.7055 13.7974C62.6841 13.8069 62.6627 13.8164 62.639 13.8235C62.4563 13.8924 62.2688 13.9564 62.0813 14.0158C61.9507 14.0561 61.8155 14.0941 61.6802 14.1297C61.5781 14.1582 61.4784 14.1867 61.374 14.2128C61.2316 14.246 61.0868 14.2745 60.9444 14.3053C60.84 14.3267 60.7355 14.3504 60.6311 14.3694C60.5884 14.3765 60.5433 14.3837 60.4982 14.3908C60.3202 14.4193 60.1398 14.4454 59.9595 14.4667C59.9072 14.4738 59.855 14.481 59.8028 14.4857C59.6984 14.4976 59.594 14.5023 59.4895 14.5118C59.3139 14.5261 59.1406 14.5403 58.9626 14.5474C58.8511 14.5522 58.7371 14.5545 58.6256 14.5569C58.4832 14.5593 58.3408 14.5617 58.1984 14.5593C58.0797 14.5569 57.961 14.5545 57.8424 14.5498C57.7095 14.545 57.5789 14.5379 57.4484 14.5284C57.3273 14.5189 57.2087 14.5094 57.0876 14.4976C56.9571 14.4857 56.8289 14.4715 56.6984 14.4549C56.5821 14.4406 56.4658 14.424 56.3495 14.405C56.2118 14.3837 56.0742 14.3599 55.9365 14.3338C55.8273 14.3125 55.7205 14.2911 55.6137 14.2674C55.45 14.2318 55.2909 14.1914 55.1296 14.1487C55.0251 14.1202 54.9207 14.0965 54.8187 14.0656C54.7641 14.049 54.7095 14.0324 54.6549 14.0158C54.4935 13.9659 54.3368 13.9113 54.1802 13.8544C54.1351 13.8378 54.09 13.8212 54.0449 13.8045C53.9025 13.75 53.7672 13.6882 53.6296 13.6289C53.5631 13.6004 53.4943 13.5719 53.4302 13.5411C53.2332 13.4485 53.0433 13.3489 52.8582 13.242C51.3226 12.3568 50.5584 11.1938 50.5607 10.0332L50.5513 13.3821C50.5489 14.5427 51.3131 15.7056 52.8487 16.5933C53.0315 16.7001 53.2237 16.7974 53.4207 16.8923C53.4872 16.9232 53.556 16.9493 53.6224 16.9802C53.7387 17.0324 53.8527 17.0846 53.9737 17.1321C53.9951 17.1392 54.0164 17.1463 54.0378 17.1558C54.0829 17.1724 54.128 17.189 54.1731 17.2056C54.3274 17.2626 54.4864 17.3172 54.6454 17.367C54.7 17.3836 54.7546 17.4026 54.8091 17.4192C54.8471 17.4311 54.8827 17.443 54.9183 17.4525C54.9824 17.4715 55.0512 17.4833 55.1177 17.5023C55.2767 17.545 55.4381 17.5854 55.6019 17.621C55.6446 17.6305 55.6873 17.6423 55.73 17.6518C55.7941 17.6661 55.8582 17.6732 55.9223 17.6851C56.0599 17.7112 56.1976 17.7349 56.3353 17.7563C56.3898 17.7658 56.4444 17.7776 56.499 17.7847C56.5583 17.7942 56.6201 17.7966 56.6818 17.8061C56.8123 17.8227 56.9405 17.837 57.071 17.8488C57.1327 17.8559 57.1944 17.8654 57.2561 17.8702C57.3131 17.8749 57.3724 17.8749 57.4294 17.8797C57.5599 17.8892 57.6929 17.8963 57.8234 17.901C57.8898 17.9034 57.9563 17.9105 58.0204 17.9105C58.0726 17.9129 58.1272 17.9082 58.1794 17.9105C58.3218 17.9129 58.4642 17.9105 58.6066 17.9082C58.6778 17.9058 58.749 17.9105 58.8178 17.9082C58.8606 17.9058 58.9009 17.901 58.9436 17.8987C59.1193 17.8915 59.2949 17.8773 59.4705 17.8631C59.5417 17.8583 59.6129 17.8559 59.6818 17.8488C59.715 17.8465 59.7482 17.8393 59.7814 17.837C59.8337 17.8322 59.8859 17.8251 59.9404 17.818C60.1208 17.7966 60.3012 17.7705 60.4792 17.742C60.5219 17.7349 60.567 17.7278 60.6098 17.7207C60.6311 17.7159 60.6525 17.7135 60.6738 17.7112C60.7593 17.6969 60.84 17.6756 60.9254 17.6566C61.0702 17.6281 61.2126 17.5996 61.355 17.564C61.4594 17.5379 61.5591 17.5094 61.6612 17.4809C61.7964 17.4453 61.9317 17.4074 62.0623 17.367C62.0908 17.3575 62.1192 17.3504 62.1477 17.3433C62.3091 17.2911 62.4658 17.2341 62.62 17.1772C62.6414 17.1677 62.6628 17.1582 62.6865 17.151C62.8574 17.0846 63.0211 17.0134 63.1849 16.9374C63.2324 16.9161 63.2798 16.8923 63.3273 16.871C63.5077 16.7832 63.6833 16.693 63.8518 16.5957C63.8827 16.5767 63.9159 16.5577 63.9468 16.5387C63.9752 16.5221 64.0037 16.5031 64.0322 16.4841C64.0797 16.4533 64.1272 16.4248 64.1746 16.3939C64.2173 16.3654 64.2577 16.337 64.298 16.3109C64.3431 16.28 64.3858 16.2492 64.4286 16.2183C64.4689 16.1898 64.5069 16.1613 64.5449 16.1305C64.5852 16.0996 64.6279 16.0664 64.6659 16.0355C64.7015 16.0071 64.7371 15.9762 64.7727 15.9454C64.8107 15.9121 64.8487 15.8813 64.8843 15.848C64.8985 15.8338 64.9151 15.8219 64.9293 15.8077C64.9436 15.7958 64.9555 15.7816 64.9673 15.7697C65.029 15.7128 65.086 15.6534 65.143 15.5941C65.1619 15.5751 65.1809 15.5537 65.1999 15.5348C65.2711 15.4564 65.3399 15.3781 65.4016 15.2998C65.404 15.2974 65.4088 15.2927 65.4112 15.2903C65.4254 15.2713 65.4373 15.2523 65.4515 15.2357C65.4895 15.1859 65.5275 15.136 65.5607 15.0862C65.5797 15.0577 65.5963 15.0316 65.6153 15.0031C65.6437 14.958 65.6746 14.9106 65.7007 14.8655C65.7078 14.8536 65.7173 14.8394 65.7244 14.8275C65.7339 14.8085 65.7434 14.7895 65.7529 14.7705C65.7743 14.7325 65.7933 14.6922 65.8122 14.6542C65.8289 14.621 65.8431 14.5878 65.8574 14.5569C65.874 14.5189 65.8906 14.4786 65.9072 14.4382C65.9143 14.4216 65.9238 14.4026 65.9285 14.386C65.9357 14.3694 65.938 14.3552 65.9452 14.3386C65.9594 14.3006 65.9713 14.2626 65.9832 14.227C65.9926 14.1938 66.0045 14.1582 66.014 14.125C66.0235 14.087 66.033 14.049 66.0425 14.011C66.0472 13.9897 66.0543 13.9707 66.0567 13.9493C66.0591 13.9351 66.0615 13.9208 66.0638 13.9066C66.071 13.8686 66.0757 13.8283 66.0828 13.7903C66.0876 13.7571 66.0923 13.7215 66.0947 13.6882C66.0994 13.6479 66.1018 13.6099 66.1042 13.5696C66.1066 13.5458 66.1089 13.5245 66.1089 13.5007C66.1089 13.477 66.1089 13.4557 66.1089 13.4319L66.1184 10.083C66.135 10.1258 66.1303 10.1709 66.1279 10.2183Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.835 6.86938C66.8848 8.63045 66.9038 11.4857 63.873 13.2467C60.8421 15.0078 55.9102 15.0078 52.8604 13.2467C49.8106 11.4857 49.7963 8.63045 52.8271 6.86938C55.858 5.10832 60.7852 5.10832 63.835 6.86938Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M62.4301 8.70399C64.6991 9.86459 64.7133 11.7443 62.4586 12.9025C60.2039 14.0631 56.5346 14.0631 54.2656 12.9025C51.9967 11.742 51.9848 9.86221 54.2395 8.70399C56.4942 7.54577 60.1611 7.54577 62.4301 8.70399Z" fill="#DA3635"/>
-<path d="M63.0615 7.15904C65.6817 8.6709 65.6984 11.125 63.0947 12.6369C60.4911 14.1487 56.2546 14.1487 53.6344 12.6369C51.0141 11.125 51.0022 8.6709 53.6059 7.15904C56.2095 5.64718 60.4413 5.64718 63.0615 7.15904Z" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M66.1279 23.4737C66.1256 23.5141 66.1232 23.552 66.1184 23.5924C66.1161 23.6256 66.1113 23.6612 66.1066 23.6944C66.1018 23.7324 66.0947 23.7728 66.0876 23.8107C66.0805 23.844 66.0734 23.8796 66.0662 23.9128C66.0567 23.9508 66.0496 23.9887 66.0378 24.0267C66.0283 24.0599 66.0188 24.0955 66.0069 24.1288C65.995 24.1667 65.9832 24.2047 65.9689 24.2427C65.957 24.2759 65.9452 24.3091 65.9309 24.3424C65.9143 24.3827 65.8977 24.4207 65.8811 24.461C65.8669 24.4943 65.8503 24.5275 65.836 24.5583C65.817 24.5963 65.7957 24.6367 65.7767 24.6746C65.7601 24.7055 65.7434 24.7364 65.7244 24.7696C65.6983 24.8147 65.6699 24.8621 65.639 24.9072C65.62 24.9357 65.6034 24.9642 65.5844 24.9903C65.5488 25.0402 65.5132 25.09 65.4753 25.1398C65.4586 25.1612 65.442 25.1849 65.4254 25.2063C65.3613 25.2846 65.2949 25.3653 65.2237 25.4413C65.2047 25.4602 65.1857 25.4816 65.1667 25.5006C65.1097 25.5599 65.0528 25.6193 64.9911 25.6762C64.9626 25.7023 64.9341 25.7284 64.9056 25.7545C64.87 25.7878 64.8321 25.821 64.7917 25.8542C64.7561 25.8851 64.7205 25.9136 64.6849 25.942C64.6445 25.9753 64.6042 26.0061 64.5615 26.037C64.5235 26.0655 64.4855 26.0939 64.4452 26.1224C64.4025 26.1533 64.3574 26.1841 64.3147 26.215C64.2743 26.2435 64.2316 26.2719 64.1912 26.2981C64.1461 26.3289 64.0987 26.3574 64.0512 26.3882C63.9919 26.4262 63.9325 26.4618 63.8708 26.4998C63.7023 26.5971 63.5243 26.6897 63.3463 26.7751C63.2989 26.7988 63.2514 26.8202 63.2039 26.8416C63.0401 26.9175 62.8764 26.9887 62.7055 27.0552C62.6841 27.0647 62.6628 27.0742 62.639 27.0813C62.4563 27.1501 62.2688 27.2142 62.0813 27.2735C61.9507 27.3139 61.8155 27.3518 61.6802 27.3874C61.5781 27.4159 61.4784 27.4444 61.374 27.4705C61.2316 27.5037 61.0868 27.5322 60.9444 27.5631C60.84 27.5844 60.7356 27.6082 60.6311 27.6272C60.5884 27.6343 60.5433 27.6414 60.4982 27.6485C60.3202 27.677 60.1398 27.7031 59.9595 27.7245C59.9072 27.7316 59.855 27.7387 59.8028 27.7435C59.6984 27.7553 59.594 27.7601 59.4895 27.7696C59.3139 27.7838 59.1406 27.798 58.9626 27.8052C58.8511 27.8099 58.7372 27.8123 58.6256 27.8147C58.4832 27.817 58.3408 27.8194 58.1984 27.817C58.0797 27.8147 57.961 27.8123 57.8424 27.8075C57.7095 27.8028 57.5789 27.7957 57.4484 27.7862C57.3273 27.7767 57.2087 27.7672 57.0876 27.7553C56.9571 27.7435 56.8289 27.7292 56.6984 27.7126C56.5821 27.6984 56.4658 27.6818 56.3495 27.6628C56.2118 27.6414 56.0742 27.6177 55.9365 27.5916C55.8273 27.5702 55.7205 27.5488 55.6137 27.5251C55.45 27.4895 55.2909 27.4492 55.1296 27.4064C55.0251 27.378 54.9207 27.3542 54.8187 27.3234C54.7641 27.3067 54.7095 27.2901 54.6549 27.2735C54.4935 27.2237 54.3368 27.1691 54.1802 27.1121C54.1351 27.0955 54.09 27.0789 54.0449 27.0623C53.9025 27.0077 53.7672 26.946 53.6296 26.8867C53.5631 26.8582 53.4943 26.8297 53.4302 26.7988C53.2332 26.7063 53.0433 26.6066 52.8582 26.4998C51.3226 25.6145 50.5584 24.4515 50.5607 23.2886L50.5513 26.6375C50.5489 27.798 51.3131 28.961 52.8487 29.8487C53.0315 29.9555 53.2237 30.0528 53.4207 30.1477C53.4872 30.1786 53.556 30.2047 53.6224 30.2355C53.7387 30.2877 53.8527 30.34 53.9737 30.3874C53.9951 30.3945 54.0164 30.4017 54.0378 30.4112C54.0829 30.4278 54.128 30.4444 54.1731 30.461C54.3274 30.518 54.4864 30.5726 54.6454 30.6224C54.7 30.639 54.7546 30.658 54.8092 30.6746C54.8471 30.6865 54.8827 30.6983 54.9183 30.7078C54.9824 30.7268 55.0513 30.7387 55.1177 30.7577C55.2767 30.8004 55.4381 30.8407 55.6019 30.8763C55.6446 30.8858 55.6873 30.8977 55.73 30.9072C55.7941 30.9214 55.8582 30.9286 55.9223 30.9404C56.06 30.9665 56.1976 30.9903 56.3353 31.0116C56.3899 31.0211 56.4444 31.033 56.499 31.0401C56.5584 31.0496 56.6201 31.052 56.6818 31.0615C56.8123 31.0781 56.9405 31.0923 57.071 31.1042C57.1327 31.1113 57.1944 31.1208 57.2561 31.1256C57.3131 31.1303 57.3724 31.1303 57.4294 31.1351C57.5599 31.1446 57.6929 31.1517 57.8234 31.1564C57.8899 31.1588 57.9563 31.1659 58.0204 31.1659C58.0726 31.1683 58.1272 31.1635 58.1794 31.1659C58.3218 31.1683 58.4642 31.1659 58.6066 31.1635C58.6778 31.1612 58.749 31.1659 58.8178 31.1635C58.8606 31.1612 58.9009 31.1564 58.9436 31.154C59.1193 31.1469 59.2949 31.1327 59.4705 31.1184C59.5417 31.1137 59.6129 31.1113 59.6818 31.1042C59.715 31.1018 59.7482 31.0947 59.7815 31.0923C59.8337 31.0876 59.8859 31.0805 59.9405 31.0733C60.1208 31.052 60.3012 31.0259 60.4792 30.9974C60.5219 30.9903 60.5671 30.9832 60.6098 30.976C60.6311 30.9713 60.6525 30.9689 60.6739 30.9665C60.7593 30.9523 60.84 30.9309 60.9254 30.912C61.0702 30.8835 61.2126 30.855 61.355 30.8194C61.4595 30.7933 61.5591 30.7648 61.6612 30.7363C61.7965 30.7007 61.9318 30.6627 62.0623 30.6224C62.0908 30.6129 62.1193 30.6058 62.1477 30.5987C62.3091 30.5465 62.4658 30.4895 62.62 30.4325C62.6414 30.423 62.6628 30.4135 62.6865 30.4064C62.8574 30.34 63.0211 30.2688 63.1849 30.1928C63.2324 30.1715 63.2798 30.1477 63.3273 30.1264C63.5077 30.0385 63.6833 29.9484 63.8518 29.851C63.8827 29.8321 63.9159 29.8131 63.9468 29.7941C63.9752 29.7775 64.0037 29.7585 64.0322 29.7395C64.0797 29.7086 64.1272 29.6802 64.1746 29.6493C64.2174 29.6208 64.2577 29.5923 64.298 29.5662C64.3431 29.5354 64.3859 29.5045 64.4286 29.4737C64.4689 29.4452 64.5069 29.4167 64.5449 29.3859C64.5852 29.355 64.6279 29.3218 64.6659 29.2909C64.7015 29.2624 64.7371 29.2316 64.7727 29.2007C64.8107 29.1675 64.8487 29.1366 64.8843 29.1034C64.8985 29.0892 64.9151 29.0773 64.9294 29.0631C64.9436 29.0512 64.9555 29.037 64.9673 29.0251C65.0291 28.9681 65.086 28.9088 65.143 28.8495C65.162 28.8305 65.1809 28.8091 65.1999 28.7901C65.2711 28.7118 65.34 28.6335 65.4017 28.5552C65.404 28.5528 65.4088 28.548 65.4112 28.5457C65.4254 28.5267 65.4373 28.5077 65.4515 28.4911C65.4895 28.4412 65.5275 28.3914 65.5607 28.3416C65.5797 28.3131 65.5963 28.287 65.6153 28.2585C65.6438 28.2134 65.6746 28.1659 65.7007 28.1208C65.7078 28.109 65.7173 28.0947 65.7244 28.0829C65.7339 28.0639 65.7434 28.0449 65.7529 28.0259C65.7743 27.9879 65.7933 27.9476 65.8123 27.9096C65.8289 27.8764 65.8431 27.8431 65.8574 27.8123C65.874 27.7743 65.8906 27.734 65.9072 27.6936C65.9143 27.677 65.9238 27.658 65.9286 27.6414C65.9357 27.6248 65.9381 27.6105 65.9452 27.5939C65.9594 27.556 65.9713 27.518 65.9832 27.4824C65.9927 27.4492 66.0045 27.4136 66.014 27.3803C66.0235 27.3424 66.033 27.3044 66.0425 27.2664C66.0473 27.245 66.0544 27.2261 66.0567 27.2047C66.0591 27.1905 66.0615 27.1762 66.0639 27.162C66.071 27.124 66.0757 27.0837 66.0828 27.0457C66.0876 27.0125 66.0923 26.9769 66.0947 26.9436C66.0995 26.9033 66.1018 26.8653 66.1042 26.825C66.1066 26.8012 66.1089 26.7799 66.1089 26.7561C66.1089 26.7324 66.1089 26.711 66.1089 26.6873L66.1184 23.3384C66.1351 23.3835 66.1303 23.4286 66.1279 23.4737Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M75.2494 12.8928C75.2185 12.9189 75.1877 12.9474 75.1568 12.9735C75.1283 12.9948 75.0999 13.0186 75.0714 13.0399C75.0382 13.0637 75.0073 13.0874 74.9741 13.1111C74.9432 13.1325 74.9148 13.1515 74.8839 13.1705C74.8507 13.1918 74.8151 13.2132 74.7795 13.2322C74.7486 13.2512 74.7154 13.2678 74.6821 13.2844C74.6465 13.3034 74.6086 13.3224 74.573 13.339C74.5398 13.3556 74.5065 13.3698 74.4709 13.3841C74.4306 13.4007 74.3902 13.4173 74.3475 13.4339C74.3119 13.4482 74.2787 13.46 74.2431 13.4719C74.2004 13.4861 74.1576 13.5004 74.1126 13.5122C74.077 13.5217 74.0413 13.5336 74.0057 13.5431C73.9535 13.5573 73.8989 13.5692 73.842 13.5811C73.8088 13.5882 73.7755 13.5953 73.7399 13.6024C73.6782 13.6143 73.6141 13.6238 73.5501 13.6309C73.5216 13.6357 73.4931 13.6404 73.4646 13.6428C73.3602 13.6546 73.2534 13.6618 73.1442 13.6665C73.1157 13.6665 73.0872 13.6665 73.0587 13.6689C72.9733 13.6713 72.8879 13.6713 72.8024 13.6689C72.7621 13.6689 72.7241 13.6665 72.6838 13.6641C72.6315 13.6618 72.5817 13.657 72.5295 13.6546C72.482 13.6499 72.4346 13.6475 72.3871 13.6428C72.3349 13.638 72.2803 13.6309 72.2281 13.6238C72.1782 13.6167 72.1307 13.6095 72.0809 13.6024C72.0263 13.5929 71.9717 13.5834 71.9172 13.5739C71.8673 13.5645 71.8151 13.555 71.7653 13.5455C71.7107 13.5336 71.6537 13.5217 71.5967 13.5075C71.5255 13.4909 71.4567 13.4743 71.3831 13.4553C71.1885 13.4031 70.9915 13.3414 70.7969 13.2725C70.7447 13.2559 70.6949 13.2369 70.6426 13.2179C70.4694 13.1539 70.2961 13.085 70.1228 13.0091C70.0991 12.9996 70.0777 12.9901 70.054 12.9806C69.8713 12.8975 69.6885 12.8073 69.5058 12.7124C69.38 12.6459 69.2542 12.5747 69.1284 12.5035C69.0335 12.449 68.9385 12.3967 68.8436 12.3398C68.7154 12.2615 68.5873 12.176 68.4615 12.0929C68.3689 12.0312 68.2763 11.9743 68.1861 11.9102C68.1482 11.8841 68.1126 11.8556 68.0746 11.8295C67.9227 11.7203 67.7732 11.6064 67.6236 11.4901C67.5809 11.4569 67.5382 11.4236 67.4955 11.388C67.4101 11.3192 67.3294 11.248 67.2463 11.1768C67.1086 11.0605 66.971 10.9418 66.8357 10.8184C66.7502 10.7401 66.6672 10.6594 66.5817 10.5787C66.4749 10.4767 66.3705 10.3722 66.2684 10.2678C66.183 10.18 66.0976 10.0898 66.0145 9.9996C65.9219 9.89991 65.8317 9.79786 65.7416 9.6958C65.6585 9.60087 65.5802 9.50593 65.4995 9.41099C65.414 9.30656 65.3286 9.20213 65.2479 9.09533C65.1743 8.99802 65.1007 8.90308 65.0295 8.80578C64.9441 8.68948 64.861 8.57081 64.7803 8.45214C64.7162 8.3572 64.6522 8.26464 64.5928 8.16733C64.5003 8.02255 64.4124 7.8754 64.327 7.72825C64.2724 7.63332 64.2131 7.53838 64.1609 7.44107C64.1324 7.38885 64.1063 7.33664 64.0778 7.28442C63.9971 7.13015 63.9212 6.97588 63.85 6.81924C63.8286 6.77414 63.8072 6.72905 63.7882 6.68395C63.7242 6.54155 63.6696 6.39677 63.615 6.25199C63.5889 6.18079 63.558 6.11196 63.5319 6.04076C63.456 5.82953 63.3895 5.61592 63.3325 5.40469C62.8579 3.63413 63.1474 2.22433 63.9995 1.37939L61.5454 3.81925C60.6933 4.66656 60.4038 6.07636 60.8785 7.84455C60.9354 8.05578 61.0019 8.26701 61.0778 8.48062C61.1039 8.55182 61.1348 8.62065 61.1609 8.69185C61.2083 8.81527 61.2534 8.93631 61.3057 9.05973C61.3151 9.08109 61.3246 9.10245 61.3341 9.12144C61.3531 9.16653 61.3769 9.21163 61.3958 9.25672C61.467 9.411 61.543 9.56764 61.6237 9.72191C61.6522 9.77412 61.6783 9.82634 61.7068 9.87856C61.7258 9.91416 61.7424 9.94976 61.7614 9.98299C61.7946 10.0447 61.8349 10.104 61.8705 10.1634C61.956 10.3105 62.0438 10.4577 62.1387 10.6048C62.1625 10.6428 62.1838 10.6831 62.2099 10.7211C62.2479 10.7781 62.2883 10.8303 62.3262 10.8873C62.4069 11.0059 62.49 11.1246 62.5754 11.2433C62.6087 11.2907 62.6395 11.3382 62.6751 11.3857C62.7131 11.4355 62.7558 11.483 62.7938 11.5328C62.8768 11.6396 62.9599 11.7441 63.0477 11.8485C63.0881 11.8983 63.1261 11.9505 63.1688 11.998C63.2068 12.0431 63.2495 12.0858 63.2898 12.1333C63.38 12.2353 63.4702 12.3374 63.5628 12.4371C63.6102 12.4869 63.653 12.5391 63.7004 12.589C63.7384 12.6293 63.7788 12.6649 63.8167 12.7053C63.9188 12.8097 64.0232 12.9141 64.13 13.0162C64.1822 13.066 64.2321 13.1206 64.2867 13.1705C64.3175 13.1989 64.3531 13.2274 64.384 13.2559C64.5193 13.3793 64.6569 13.498 64.7946 13.6143C64.8492 13.6618 64.9037 13.7116 64.9607 13.7591C64.9868 13.7804 65.0153 13.8018 65.0438 13.8232C65.0865 13.8588 65.1292 13.892 65.1743 13.9252C65.3215 14.0415 65.4734 14.1554 65.6253 14.2646C65.6632 14.2907 65.6988 14.3192 65.7368 14.3453C65.7558 14.3572 65.7724 14.3714 65.7914 14.3857C65.865 14.4355 65.9409 14.4806 66.0145 14.5304C66.1403 14.6135 66.2685 14.6989 66.3966 14.7773C66.4916 14.8342 66.5865 14.8864 66.6814 14.941C66.8072 15.0122 66.933 15.0858 67.0588 15.1499C67.0849 15.1641 67.1134 15.1807 67.1395 15.195C67.2938 15.2733 67.4504 15.3493 67.607 15.4181C67.6308 15.4276 67.6522 15.4371 67.6759 15.4466C67.8491 15.5225 68.0224 15.5913 68.1956 15.6554C68.2479 15.6744 68.2977 15.6934 68.3499 15.71C68.5445 15.7788 68.7392 15.8405 68.9361 15.8928C68.9741 15.9023 69.0097 15.9118 69.0477 15.9212C69.0809 15.9307 69.1142 15.9355 69.1498 15.945C69.2067 15.9592 69.2637 15.9711 69.3183 15.983C69.3705 15.9924 69.4203 16.0019 69.4702 16.0114C69.5248 16.0209 69.5794 16.0304 69.6339 16.0399C69.6838 16.047 69.7336 16.0542 69.7835 16.0613C69.8357 16.0684 69.8903 16.0755 69.9425 16.0803C69.9899 16.085 70.0374 16.0898 70.0872 16.0945C70.1395 16.0992 70.1893 16.1016 70.2415 16.104C70.2629 16.104 70.2842 16.1064 70.3056 16.1087C70.3246 16.1087 70.3436 16.1087 70.3626 16.1087C70.4504 16.1111 70.5358 16.1111 70.6189 16.1087C70.6474 16.1087 70.6759 16.1087 70.7044 16.1064C70.8135 16.1016 70.9203 16.0945 71.0248 16.0826C71.0295 16.0826 71.0342 16.0826 71.039 16.0826C71.0627 16.0803 71.0865 16.0755 71.1102 16.0708C71.1743 16.0613 71.2383 16.0518 71.3 16.0399C71.3333 16.0328 71.3665 16.0257 71.3997 16.0186C71.4543 16.0067 71.5089 15.9948 71.5635 15.9806C71.5778 15.9758 71.5944 15.9735 71.6086 15.9711C71.63 15.964 71.6513 15.9568 71.6727 15.9521C71.7154 15.9379 71.7605 15.926 71.8009 15.9117C71.8365 15.8999 71.872 15.8856 71.9053 15.8738C71.9456 15.8572 71.9884 15.8405 72.0287 15.8239C72.0477 15.8168 72.0667 15.8097 72.0833 15.8026C72.0999 15.7955 72.1141 15.786 72.1307 15.7788C72.1687 15.7622 72.2043 15.7432 72.2399 15.7243C72.2732 15.7076 72.304 15.6887 72.3372 15.672C72.3728 15.6507 72.4061 15.6317 72.4417 15.6103C72.4607 15.5985 72.4796 15.589 72.4986 15.5771C72.5105 15.57 72.5224 15.5605 72.5342 15.551C72.5675 15.5273 72.6007 15.5035 72.6316 15.4798C72.66 15.4584 72.6885 15.4371 72.717 15.4133C72.7478 15.3872 72.7787 15.3611 72.8096 15.3326C72.8262 15.316 72.8452 15.3018 72.8641 15.2852C72.8808 15.2686 72.8974 15.2519 72.914 15.2353L75.3681 12.7955C75.3206 12.8311 75.2826 12.8619 75.2494 12.8928Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M76.0208 8.76783C76.963 12.2852 74.8887 14.3857 71.3855 13.4577C67.8824 12.5297 64.2772 8.92448 63.3349 5.40709C62.3927 1.88971 64.4694 -0.208383 67.9726 0.719618C71.4757 1.64762 75.0785 5.25045 76.0208 8.76783Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M73.0586 8.94765C73.0776 9.01648 73.0349 9.05683 72.9685 9.04021L66.6172 7.35747C66.5484 7.33848 66.4772 7.26728 66.4606 7.20082L66.012 5.52283C65.993 5.45162 66.0334 5.41365 66.1022 5.43026L72.4534 7.11301C72.5199 7.132 72.5934 7.20082 72.6101 7.26965L73.0586 8.94765Z" fill="#EDEDED"/>
-<path d="M71.8481 8.24348L71.5586 7.14223L72.9185 5.77515L73.2105 6.87403L71.8481 8.24348Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M67.1581 6.98537L66.8662 5.88648L68.848 3.89282L69.1399 4.99171L67.1581 6.98537Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M69.1401 4.99171L68.8481 3.89282L74.0839 5.29551L74.3758 6.39439L69.1401 4.99171Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M74.3757 6.39438L72.3916 8.38804L71.8481 8.24327L73.2104 6.87381L69.0617 5.76068L67.7017 7.13014L67.1582 6.98536L69.14 4.9917L74.3757 6.39438Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-</g>
-<defs>
-<clipPath id="clip0_5791_75116">
-<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <g clip-path="url(#clip0_14133_116819)">
+    <path
+      d="M21 102.5H47.5L98 106.5H179.75C182.097 106.5 184 104.597 184 102.25C184 99.9028 182.097 98 179.75 98H175.5C174.119 98 173 96.8807 173 95.5C173 94.1193 174.119 93 175.5 93H183.75C189.687 93 194.5 88.1871 194.5 82.25V78.5C194.5 74.3579 191.142 71 187 71C182.858 71 179.5 67.6421 179.5 63.5V61C179.5 57.9624 177.038 55.5 174 55.5C170.962 55.5 168.5 53.0376 168.5 50V46.25C168.5 41.1414 172.641 37 177.75 37H185.25C188.426 37 191 34.4256 191 31.25C191 28.0744 188.426 25.5 185.25 25.5H169.5C166.186 25.5 163.5 22.8137 163.5 19.5C163.5 16.1863 160.814 13.5 157.5 13.5H113.574C112.428 13.5 111.5 12.5715 111.5 11.4262C111.5 6.22027 107.28 2 102.074 2H59.9262C54.7203 2 50.5 6.22027 50.5 11.4262C50.5 12.5715 49.5715 13.5 48.4262 13.5H36C28.5442 13.5 22.5 19.5442 22.5 27V35C22.5 38.0376 20.0376 40.5 17 40.5C13.9624 40.5 11.5 42.9624 11.5 46V47C11.5 50.5899 14.4101 53.5 18 53.5H24C28.1421 53.5 31.5 56.8579 31.5 61C31.5 65.1421 28.1421 68.5 24 68.5H17.75C10.1561 68.5 4 74.6561 4 82.25V85.5C4 94.8888 11.6112 102.5 21 102.5Z"
+      fill="#E3E3E3" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M132.201 51.806H155.194H176.418H191.746V51.7836C191.941 51.7984 192.137 51.806 192.336 51.806C196.569 51.806 200 48.3746 200 44.1418C200 40.0928 196.86 36.7772 192.883 36.4968C192.911 36.1011 192.925 35.7015 192.925 35.2985C192.925 26.1817 185.535 18.791 176.418 18.791C175.928 18.791 175.442 18.8124 174.963 18.8543C171.191 11.7997 163.753 7 155.194 7C142.821 7 132.791 17.0302 132.791 29.403L132.791 29.4182C132.596 29.4081 132.399 29.403 132.201 29.403C126.015 29.403 121 34.4181 121 40.6045C121 46.5931 125.7 51.4841 131.612 51.7907V51.806H132.201Z"
+      fill="#676767" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M28 37.9825C27.8347 37.9941 27.668 38 27.5 38C23.3579 38 20 34.4183 20 30C20 25.5817 23.3579 22 27.5 22C29.2006 22 30.769 22.6037 32.0271 23.6212C32.4631 16.575 38.1046 11 45 11C46.7774 11 48.4714 11.3704 50.0145 12.0409C52.7381 8.94552 56.6804 7 61.0658 7C69.2847 7 75.9474 13.8335 75.9474 22.2632C75.9474 23.6076 75.7779 24.9114 75.4596 26.1534C77.542 27.0488 79.0002 29.1187 79.0002 31.5292C79.0002 34.7595 76.3815 37.3782 73.1512 37.3782C73.1006 37.3782 73.0502 37.3775 73 37.3763V38H45H28V37.9825Z"
+      fill="#676767" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+      fill="#A0C7F0" />
+    <path
+      d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+      fill="#4277AF" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+      fill="url(#paint0_linear_14133_116819)" />
+    <rect width="80.5611" height="80.5611" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 86.291)"
+      fill="#769FCB" />
+    <path d="M174.22 117.5C174.553 115.167 174.22 110.3 170.22 109.5C165.22 108.5 172.72 119 174.22 117.5Z"
+      fill="#3D8C5C" />
+    <path d="M177.72 117.5C177.553 116.167 177.82 113.7 180.22 114.5C183.22 115.5 178.721 118.5 177.72 117.5Z"
+      fill="#66AF82" />
+    <path d="M174.72 118C177.386 115.166 181.92 108.4 178.72 104C174.72 98.4998 172.22 120 174.72 118Z"
+      fill="#66AF82" />
+    <path
+      d="M168.433 63.2912L171.273 54.6866C171.409 54.2768 171.791 54 172.223 54H181.734C182.561 54 183.03 54.9467 182.53 55.6051L180.303 58.5344C179.803 59.1928 180.273 60.1395 181.1 60.1395H186.62C187.506 60.1395 187.955 61.2065 187.334 61.8394L175.298 74.1242C174.521 74.9171 173.223 74.0428 173.666 73.0251L176.724 66.0039C177.012 65.3434 176.528 64.6047 175.807 64.6047H169.383C168.702 64.6047 168.22 63.9382 168.433 63.2912Z"
+      fill="#FFA800" />
+    <path
+      d="M41.6778 49.4743L39.8415 43.5627C39.7375 43.228 39.4279 43 39.0775 43H33.0559C32.405 43 32.0265 43.736 32.4053 44.2655L33.7058 46.0834C34.0846 46.6128 33.7061 47.3488 33.0552 47.3488H29.826C29.1288 47.3488 28.7652 48.1786 29.2379 48.6912L36.6517 56.7306C37.2564 57.3863 38.3183 56.7102 37.9801 55.8849L36.23 51.615C36.0143 51.0886 36.4014 50.5116 36.9702 50.5116H40.9138C41.4529 50.5116 41.8377 49.9892 41.6778 49.4743Z"
+      fill="#FFA800" />
+    <path d="M44 106.623C42.0508 103.814 36.9827 98.9448 32.3045 101.941C26.4568 105.687 42.0508 110.368 44 106.623Z"
+      fill="#3D8C5C" />
+    <path d="M44 105C42.4072 95.2152 38.0749 78.1075 33.4877 87.9555C27.7537 100.265 40.1774 105 44 105Z"
+      fill="#66AF82" />
+    <path d="M127.81 55.6826H156.139V127.461L127.81 143.954L99.4805 160.444V88.6624L127.81 55.6826Z" fill="#EDF7FF" />
+    <path d="M42.8164 55.6826V127.461L71.1458 143.954L99.4752 160.444V88.6624L42.8164 55.6826Z" fill="#A0C7F1" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 89.9649C59.2918 90.3507 58.8735 90.5911 58.5402 90.397L47.0804 83.7239C46.9266 83.6343 46.832 83.4698 46.832 83.2918V69.9439C46.832 69.5581 47.2503 69.3177 47.5836 69.5118L59.0434 76.1849C59.1972 76.2745 59.2918 76.439 59.2918 76.617V89.9649ZM74.6481 99.5496C74.9814 99.7437 75.3997 99.5033 75.3997 99.1175V85.7668C75.3997 85.5888 75.3051 85.4242 75.1512 85.3346L63.6915 78.6642C63.3582 78.4701 62.94 78.7106 62.94 79.0963V92.4444C62.94 92.6224 63.0346 92.7869 63.1884 92.8765L74.6481 99.5496ZM90.771 108.706C91.1043 108.9 91.5225 108.659 91.5225 108.273V94.9224C91.5225 94.7444 91.4278 94.5798 91.274 94.4902L79.8113 87.8196C79.478 87.6256 79.0598 87.8661 79.0598 88.2518V101.603C79.0598 101.781 79.1545 101.945 79.3084 102.035L90.771 108.706ZM90.771 130.231C91.1043 130.425 91.5225 130.184 91.5225 129.799V116.448C91.5225 116.27 91.4278 116.105 91.274 116.016L79.8113 109.345C79.478 109.151 79.0598 109.391 79.0598 109.777V123.128C79.0598 123.306 79.1545 123.471 79.3084 123.56L90.771 130.231ZM75.3997 120.646C75.3997 121.031 74.9815 121.272 74.6482 121.078L63.1884 114.407C63.0346 114.318 62.94 114.153 62.94 113.975V100.624C62.94 100.238 63.3582 99.998 63.6915 100.192L75.1512 106.863C75.3051 106.952 75.3997 107.117 75.3997 107.295V120.646ZM58.5403 111.925C58.8736 112.119 59.2918 111.879 59.2918 111.493V98.142C59.2918 97.964 59.1972 97.7995 59.0433 97.7099L47.5836 91.0394C47.2502 90.8454 46.832 91.0859 46.832 91.4716V104.822C46.832 105 46.9267 105.165 47.0805 105.255L58.5403 111.925Z"
+      fill="#405C76" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 84.8462L55.2678 88.4914L47.0804 83.7238C46.9266 83.6342 46.832 83.4697 46.832 83.2917V81.6267L54.4697 73.5215L59.0434 76.1848C59.1972 76.2744 59.2918 76.4389 59.2918 76.6169V84.8462ZM50.5495 92.7657L47.5836 91.0393C47.2502 90.8453 46.832 91.0858 46.832 91.4715V96.1333L50.5495 92.7657ZM48.906 106.317L58.2356 97.2397L59.0433 97.7098C59.1972 97.7994 59.2918 97.9639 59.2918 98.1419V110.865L58.1092 111.674L48.906 106.317ZM65.8714 115.969L63.3859 114.522L74.7373 106.621L75.1512 106.862C75.3051 106.952 75.3997 107.117 75.3997 107.295V109.821L65.8714 115.969ZM91.5225 99.4197L83.5989 104.532L80.408 102.675L91.5225 94.939V99.4197ZM72.2231 83.6301L75.1512 85.3345C75.3051 85.4241 75.3997 85.5887 75.3997 85.7667V99.1174C75.3997 99.5031 74.9814 99.7436 74.6481 99.5495L63.1884 92.8764C63.0899 92.819 63.0157 92.731 62.975 92.6283L72.2231 83.6301ZM65.1677 79.5233L62.94 81.5414V79.0962C62.94 78.7105 63.3582 78.47 63.6915 78.6641L65.1677 79.5233ZM86.9328 91.9638L79.0598 97.3476V88.2517C79.0598 87.866 79.478 87.6255 79.8113 87.8195L86.9328 91.9638ZM69.7464 103.716L63.6915 100.192C63.3582 99.9979 62.94 100.238 62.94 100.624V108.371L69.7464 103.716Z"
+      fill="#333B51" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M139.47 83.831C139.136 84.0251 138.718 83.7846 138.718 83.3989V70.0509C138.718 69.8729 138.813 69.7083 138.967 69.6187L150.426 62.9483C150.76 62.7542 151.178 62.9947 151.178 63.3804V76.7284C151.178 76.9064 151.083 77.071 150.929 77.1606L139.47 83.831ZM139.47 104.671C139.136 104.865 138.718 104.624 138.718 104.239V90.888C138.718 90.71 138.813 90.5454 138.967 90.4559L150.426 83.7854C150.76 83.5914 151.178 83.8318 151.178 84.2175V97.5656C151.178 97.7436 151.083 97.9081 150.929 97.9977L139.47 104.671ZM111.48 119.447C111.48 119.832 111.899 120.073 112.232 119.879L123.692 113.208C123.846 113.119 123.94 112.954 123.94 112.776V99.428C123.94 99.0423 123.522 98.8019 123.189 98.9959L111.729 105.666C111.575 105.756 111.48 105.92 111.48 106.098V119.447ZM112.232 99.0391C111.899 99.2331 111.48 98.9926 111.48 98.6069V85.2589C111.48 85.0809 111.575 84.9163 111.729 84.8268L123.189 78.1563C123.522 77.9622 123.94 78.2027 123.94 78.5884V91.9364C123.94 92.1144 123.846 92.279 123.692 92.3686L112.232 99.0391Z"
+      fill="#FF9C9B" />
+    <path
+      d="M138.479 137.788C138.479 137.966 138.385 138.131 138.231 138.22L128.475 143.916L127.502 144.484C127.169 144.679 126.75 144.438 126.75 144.052V120.947C126.75 120.769 126.844 120.605 126.998 120.515L137.727 114.254C138.061 114.059 138.479 114.299 138.479 114.685V137.788Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.42 138.022C138.458 137.951 138.479 137.871 138.479 137.788V114.685C138.479 114.299 138.06 114.059 137.727 114.253L136.719 114.841C136.719 114.852 136.72 114.862 136.72 114.873V136.691C136.72 136.88 136.827 137.053 136.996 137.138L138.166 137.723C138.295 137.787 138.382 137.898 138.42 138.022Z"
+      fill="#606060" />
+    <path
+      d="M41.4996 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H99.4826C100.074 21 100.596 21.2971 100.911 21.7501L156.378 53.9423C156.837 54.0058 157.238 54.2481 157.512 54.6001L157.526 54.6058H157.52C157.748 54.9059 157.893 55.2751 157.893 55.6819C157.893 56.657 157.108 57.4445 156.141 57.4445H128.611L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273C99.0787 90.4273 98.669 90.2859 98.3401 89.9974L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885H41.4996Z"
+      fill="#FF5D5C" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M156.052 54.4755C156.437 54.5698 156.773 54.7933 157.012 55.1001L157.026 55.1058H157.02C157.248 55.4059 157.393 55.7751 157.393 56.1819C157.393 57.157 156.608 57.9446 155.641 57.9446H128.111L116.535 71.4225L99 90V86.5L128 54L156.052 54.4755Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M107.03 82.649L100.807 89.8156C100.464 90.2154 99.9854 90.423 99.5 90.4271V85.9999L127.826 54.2554L127.98 58.0229L107.03 82.649Z"
+      fill="#FF5D5C" />
+    <path d="M74.1914 59.6488V42.38L81.5767 38.0815V50.6076L74.1914 59.6488Z" fill="#EDF7FF" />
+    <path d="M66.8008 55.4629L74.186 59.7613V42.38L66.8008 38.0815V55.4629Z" fill="#A0C7F1" />
+    <path d="M66.8008 38.0816L74.186 33.7803L81.5713 38.0816L74.186 42.3801L66.8008 38.0816Z" fill="white" />
+    <path d="M69.6328 38.0851L74.2226 35.2793L78.8123 38.0851L74.2226 40.889L69.6328 38.0851Z" fill="#A0C7F1" />
+    <path d="M69.6328 38.0851L74.2226 35.2793V38.0851V40.889L69.6328 38.0851Z" fill="#769FCB" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M48.7188 70.173L47.5836 69.512C47.2503 69.3179 46.832 69.5584 46.832 69.9441V83.292C46.832 83.47 46.9266 83.6346 47.0804 83.7241L58.5402 90.3973C58.8735 90.5914 59.2918 90.3509 59.2918 89.9652V89.2929L48.9671 83.2808C48.8133 83.1912 48.7188 83.0267 48.7188 82.8487V70.173ZM64.8267 79.3252V92.0013C64.8267 92.1792 64.9213 92.3438 65.0751 92.4334L75.3997 98.4455V99.1178C75.3997 99.5035 74.9814 99.744 74.6481 99.5499L63.1884 92.8767C63.0346 92.7872 62.94 92.6226 62.94 92.4446V79.0965C62.94 78.7108 63.3582 78.4704 63.6915 78.6644L64.8267 79.3252ZM80.9466 88.4805V101.16C80.9466 101.338 81.0412 101.502 81.1951 101.592L91.5225 107.602V108.274C91.5225 108.659 91.1043 108.9 90.771 108.706L79.3084 102.035C79.1545 101.946 79.0598 101.781 79.0598 101.603V88.252C79.0598 87.8663 79.478 87.6259 79.8113 87.8199L80.9466 88.4805ZM80.9466 110.006V122.685C80.9466 122.863 81.0412 123.028 81.1951 123.117L91.5225 129.127V129.799C91.5225 130.185 91.1043 130.425 90.771 130.231L79.3084 123.561C79.1545 123.471 79.0598 123.306 79.0598 123.128V109.777C79.0598 109.392 79.478 109.151 79.8113 109.345L80.9466 110.006ZM64.8267 100.853L63.6915 100.192C63.3582 99.9983 62.94 100.239 62.94 100.624V113.975C62.94 114.153 63.0346 114.318 63.1884 114.407L74.6482 121.078C74.9815 121.272 75.3997 121.032 75.3997 120.646V119.974L65.0751 113.964C64.9213 113.875 64.8267 113.71 64.8267 113.532V100.853ZM48.7188 91.7004V104.379C48.7188 104.557 48.8134 104.722 48.9672 104.812L59.2918 110.821V111.493C59.2918 111.879 58.8736 112.119 58.5403 111.925L47.0805 105.255C46.9267 105.165 46.832 105.001 46.832 104.823V91.4718C46.832 91.0861 47.2502 90.8457 47.5836 91.0397L48.7188 91.7004Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M151.174 66.3265L141.979 82.3682L139.466 83.8313C139.132 84.0253 138.714 83.7849 138.714 83.3992V70.0511C138.714 69.8731 138.809 69.7085 138.963 69.619L150.422 62.9485C150.756 62.7545 151.174 62.9949 151.174 63.3806V66.3265ZM111.477 116.756L120.833 100.365L123.185 98.9961C123.518 98.8021 123.936 99.0426 123.936 99.4282V112.776C123.936 112.954 123.842 113.119 123.688 113.208L112.228 119.879C111.895 120.073 111.477 119.832 111.477 119.447V116.756ZM150.267 83.876L139.641 104.569L139.466 104.671C139.132 104.865 138.714 104.625 138.714 104.239V102.256L147.083 85.7292L150.267 83.876Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.718 82.3634V83.3992C138.718 83.7849 139.136 84.0253 139.47 83.8313L150.929 77.1608C151.083 77.0713 151.178 76.9067 151.178 76.7287V63.3806C151.178 62.9949 150.76 62.7545 150.426 62.9485L149.416 63.5365V75.8488C149.416 76.0268 149.322 76.1914 149.168 76.2809L138.718 82.3634ZM138.718 103.203V104.239C138.718 104.625 139.136 104.865 139.47 104.671L150.929 97.9979C151.083 97.9084 151.178 97.7438 151.178 97.5659V84.2178C151.178 83.8321 150.76 83.5916 150.426 83.7856L149.416 84.3736V96.686C149.416 96.8639 149.322 97.0285 149.168 97.1181L138.718 103.203ZM111.48 118.411L121.93 112.329C122.084 112.239 122.179 112.074 122.179 111.896V99.5841L123.189 98.9961C123.522 98.8021 123.94 99.0426 123.94 99.4282V112.776C123.94 112.954 123.846 113.119 123.692 113.208L112.232 119.879C111.899 120.073 111.48 119.832 111.48 119.447V118.411ZM111.48 97.5714V98.6072C111.48 98.9929 111.899 99.2333 112.232 99.0393L123.692 92.3688C123.846 92.2793 123.94 92.1147 123.94 91.9367V78.5886C123.94 78.203 123.522 77.9625 123.189 78.1565L122.179 78.7445V91.0568C122.179 91.2348 122.084 91.3994 121.93 91.4889L111.48 97.5714Z"
+      fill="#D86867" />
+    <path d="M100.219 160.5C100.385 153.5 102.819 139.8 111.219 141C121.719 142.5 102.719 162.999 100.219 160.5Z"
+      fill="#66AF82" />
+    <path d="M100.219 160.5C101.552 156 102.419 146.4 95.219 144C86.219 141 95.219 164.5 100.219 160.5Z"
+      fill="#3D8C5C" />
+  </g>
+  <defs>
+    <linearGradient id="paint0_linear_14133_116819" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+    <clipPath id="clip0_14133_116819">
+      <rect width="200" height="200" fill="white" />
+    </clipPath>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/profileUpdated.svg b/src/assets/form/profileUpdated.svg
index e7ce84651..a2141f75c 100644
--- a/src/assets/form/profileUpdated.svg
+++ b/src/assets/form/profileUpdated.svg
@@ -1,160 +1,213 @@
 <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M42.6586 80.0251L33.4559 74.8039C27.1452 71.2236 27.1009 65.3595 33.3571 61.7474L77.9341 36.0109C84.1519 32.421 94.233 32.421 100.451 36.0109L170.121 76.2352" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M43.2705 79.5955C42.9455 79.7812 42.6247 79.9754 42.3123 80.1738C32.1144 86.6277 32.1186 96.6525 42.3208 103.068C49.3571 107.492 59.4327 109.223 68.875 108.264C70.2258 108.125 71.2303 108.961 70.5845 109.662C59.42 121.755 61.674 136.904 77.3972 147.71C78.2921 148.326 79.9129 148.355 80.9006 147.786L160.88 101.612C161.868 101.042 161.821 100.101 160.762 99.5819C142.151 90.4392 116.007 89.0843 95.0874 95.5128C93.8633 95.8885 92.4493 95.2891 92.6941 94.4998C94.3023 89.2489 91.6304 83.6519 84.6489 79.5955C73.2606 72.977 54.7347 72.977 43.2705 79.5955Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M47.7731 80.4986C47.4795 80.6669 47.1897 80.8429 46.9075 81.0227C37.6943 86.8717 37.6982 95.9569 46.9151 101.771C53.272 105.78 62.3746 107.349 70.9051 106.48C72.1254 106.354 73.033 107.112 72.4495 107.747C62.3631 118.706 64.3995 132.435 78.6043 142.228C79.4128 142.787 80.8771 142.814 81.7694 142.297L154.025 100.452C154.918 99.9352 154.876 99.0822 153.919 98.6117C137.105 90.3259 113.485 89.098 94.5862 94.924C93.4803 95.2645 92.2028 94.7213 92.424 94.0059C93.8769 89.2472 91.463 84.1748 85.1557 80.4986C74.8672 74.5005 58.1303 74.5005 47.7731 80.4986Z" fill="#EDEDED"/>
-<path d="M92.6689 76.8814L92.7196 94.0862C92.7196 94.0355 92.728 93.9891 92.7407 93.9384C92.9939 93.1069 93.1206 92.2669 93.1206 91.4269L93.0699 74.2222C93.0741 75.0621 92.9475 75.9021 92.69 76.7337C92.6774 76.7843 92.6689 76.8307 92.6689 76.8814Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M44.2583 74.3616L44.309 91.5664C44.3174 94.9938 46.449 98.417 50.6995 101.089C56.5709 104.782 64.9834 106.226 72.864 105.428C73.7504 105.339 74.4595 105.749 74.4595 106.213L74.4089 89.0084C74.4089 88.5441 73.6997 88.1347 72.8133 88.2233C64.9327 89.0211 56.5245 87.5775 50.6489 83.8841C46.3983 81.2122 44.2667 77.789 44.2583 74.3616Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M150.197 81.8411C150.197 82.1408 150.003 82.4405 149.606 82.6684L82.8511 121.21L82.9017 138.415L149.657 99.8732C150.054 99.6452 150.252 99.3455 150.248 99.0458L150.197 81.8411Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M68.4277 102.904L68.4784 120.109C68.4953 126.605 72.3279 133.097 79.9764 138.352C80.7235 138.867 82.0784 138.892 82.9015 138.415L82.8509 121.21C82.0278 121.687 80.6728 121.662 79.9257 121.147C72.2773 115.888 68.4446 109.4 68.4277 102.904Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M51.4423 64.2903C51.1722 64.4465 50.9021 64.6068 50.6404 64.7757C42.1266 70.1617 42.1351 78.5319 50.6488 83.8841C56.5202 87.5775 64.9326 89.0211 72.8132 88.2233C73.9402 88.1094 74.7802 88.8058 74.2399 89.3883C64.92 99.4849 66.8026 112.127 79.9256 121.147C80.6728 121.662 82.0277 121.687 82.8508 121.21L149.606 82.6685C150.429 82.1915 150.391 81.4064 149.509 80.9716C133.975 73.3401 112.157 72.2089 94.6949 77.5737C93.6734 77.8861 92.4915 77.388 92.6941 76.7253C94.0364 72.3439 91.8035 67.6713 85.9785 64.2818C76.4728 58.765 61.0113 58.765 51.4423 64.2903Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M129.885 120.59C131.928 121.767 131.941 123.68 129.911 124.857C127.88 126.035 124.58 126.035 122.537 124.857C120.494 123.68 120.485 121.767 122.515 120.59C124.546 119.408 127.842 119.408 129.885 120.59Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M128.348 121.725C129.655 122.245 129.663 123.09 128.365 123.61C127.067 124.13 124.956 124.13 123.65 123.61C122.344 123.09 122.338 122.245 123.636 121.725C124.934 121.203 127.042 121.203 128.348 121.725Z" fill="#EDEDED"/>
-<path d="M126.407 55.3333V122.667" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M147.926 14.2713L140.489 9.94899C141.637 9.28629 142.789 9.12589 143.667 9.62819L151.105 13.9505C150.227 13.4482 149.078 13.6086 147.926 14.2713Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.459 45.8442L121.021 41.5219L137.319 13.2961L144.756 17.6184L128.459 45.8442Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M144.756 17.6185L137.318 13.2962C138.192 11.7809 139.34 10.6159 140.493 9.94897L147.93 14.2713C146.778 14.934 145.629 16.1032 144.756 17.6185Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M123.735 43.1514L116.298 38.8291L121.021 41.5221L128.459 45.8444L123.735 43.1514Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.404 54.1175L109.967 49.7952C108.206 48.7906 108.198 45.5236 109.945 42.4972C110.819 40.9818 111.967 39.8168 113.115 39.1499C114.264 38.4872 115.416 38.3268 116.294 38.8291L123.731 43.1514C122.849 42.6491 121.701 42.8095 120.553 43.4722C119.405 44.1349 118.257 45.3041 117.383 46.8194C115.635 49.8459 115.644 53.1129 117.404 54.1175Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M147.926 14.2713C149.074 13.6086 150.226 13.4482 151.104 13.9505C152.864 14.955 152.873 18.2221 151.125 21.2485L132.709 53.1508C131.586 55.0967 130.088 56.6754 128.497 57.5955C126.901 58.5157 125.403 58.6676 124.267 58.0218L117.408 54.1132C115.648 53.1086 115.639 49.8416 117.387 46.8151C118.261 45.2998 119.409 44.1348 120.557 43.4679C121.705 42.8009 122.857 42.6448 123.735 43.1471L128.459 45.84L144.752 17.6143C145.63 16.1032 146.778 14.9339 147.926 14.2713Z" fill="#47C562" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M129.696 125.293L149.169 136.304C155.498 139.882 155.551 145.755 149.288 149.371L93.7651 181.427C87.5473 185.017 77.4663 185.017 71.2485 181.427L27.9998 156.458" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M70.5697 160.617C71.5393 161.178 71.5466 162.09 70.5806 162.65L39.5796 180.667C38.6136 181.228 37.0398 181.228 36.0703 180.667L3.39778 161.804C2.4282 161.243 2.42096 160.331 3.38691 159.771L34.388 141.754C35.3503 141.193 36.9277 141.193 37.8973 141.754L70.5697 160.617Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M21.0057 159.633C21.3349 159.825 21.3349 160.132 21.0093 160.32L16.241 163.092C15.9154 163.28 15.3836 163.283 15.0544 163.092L10.2571 160.32C9.92791 160.132 9.92792 159.821 10.2535 159.633L15.0218 156.862C15.3474 156.674 15.8828 156.674 16.2084 156.862L21.0057 159.633Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M35.0791 146.721C35.2926 146.844 35.2962 147.047 35.0827 147.17L19.5587 156.189C19.3452 156.312 18.9979 156.312 18.7845 156.189C18.571 156.066 18.5674 155.863 18.7809 155.74L34.3049 146.721C34.5183 146.598 34.8657 146.598 35.0791 146.721Z" fill="#706F6F"/>
-<path d="M25.101 155.581C25.3144 155.704 25.318 155.907 25.1046 156.03L22.2031 157.716C21.9896 157.839 21.6459 157.839 21.4289 157.716C21.2118 157.593 21.2118 157.39 21.4253 157.267L24.3267 155.581C24.5366 155.458 24.8839 155.458 25.101 155.581Z" fill="#706F6F"/>
-<path d="M32.5033 151.279C32.7168 151.402 32.7204 151.605 32.5069 151.728L27.395 154.698C27.1815 154.821 26.8378 154.821 26.6208 154.698C26.4037 154.575 26.4037 154.373 26.6172 154.249L31.7291 151.279C31.9426 151.156 32.2863 151.156 32.5033 151.279Z" fill="#706F6F"/>
-<path d="M31.2259 165.993C31.5551 166.185 31.5551 166.492 31.2295 166.681L26.4612 169.452C26.1356 169.64 25.6038 169.644 25.2746 169.452L20.4773 166.681C20.1481 166.492 20.1481 166.181 20.4737 165.993L25.242 163.222C25.5676 163.034 26.103 163.034 26.4287 163.222L31.2259 165.993Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M45.2993 153.081C45.5128 153.204 45.5164 153.407 45.303 153.53L29.7789 162.549C29.5654 162.672 29.2181 162.672 29.0047 162.549C28.7912 162.426 28.7876 162.223 29.0011 162.1L44.5251 153.081C44.7386 152.958 45.0859 152.958 45.2993 153.081Z" fill="#706F6F"/>
-<path d="M35.3212 161.941C35.5346 162.064 35.5382 162.267 35.3248 162.39L32.4233 164.076C32.2099 164.199 31.8662 164.199 31.6491 164.076C31.432 163.953 31.432 163.75 31.6455 163.627L34.547 161.941C34.7604 161.818 35.1041 161.818 35.3212 161.941Z" fill="#706F6F"/>
-<path d="M43.0924 172.834C43.5627 173.106 43.5663 173.551 43.0996 173.822L38.3313 176.593C37.8646 176.865 37.0976 176.865 36.6273 176.593L31.8301 173.822C31.3598 173.551 31.3562 173.109 31.8229 172.834L36.5912 170.063C37.0579 169.792 37.8212 169.792 38.2951 170.063L43.0924 172.834Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M44.724 167.14C44.9375 167.263 44.9411 167.465 44.7276 167.588L41.8261 169.274C41.6127 169.397 41.269 169.397 41.0519 169.274C40.8349 169.151 40.8349 168.949 41.0483 168.826L43.9498 167.14C44.1596 167.017 44.5069 167.017 44.724 167.14Z" fill="#706F6F"/>
-<path d="M54.1229 164.676C54.3364 164.799 54.34 165.002 54.1265 165.125L51.2251 166.811C51.0116 166.934 50.6679 166.934 50.4509 166.811C50.2338 166.688 50.2338 166.485 50.4472 166.362L53.3487 164.676C53.5622 164.549 53.9059 164.549 54.1229 164.676Z" fill="#706F6F"/>
-<path d="M52.1259 162.838C52.3393 162.961 52.343 163.164 52.1295 163.287L47.0176 166.257C46.8041 166.38 46.4604 166.38 46.2433 166.257C46.0263 166.134 46.0263 165.931 46.2397 165.808L51.3517 162.838C51.5651 162.715 51.9088 162.715 52.1259 162.838Z" fill="#706F6F"/>
-<path d="M49.2968 167.288C49.5103 167.411 49.5139 167.614 49.3004 167.737L44.1885 170.707C43.975 170.83 43.6313 170.83 43.4142 170.707C43.1972 170.584 43.1972 170.382 43.4106 170.259L48.5226 167.288C48.7361 167.165 49.0834 167.165 49.2968 167.288Z" fill="#706F6F"/>
-<path d="M59.5898 158.605C59.8032 158.728 59.8068 158.931 59.5934 159.054L54.4814 162.024C54.268 162.147 53.9243 162.147 53.7072 162.024C53.4901 161.901 53.4901 161.699 53.7036 161.576L58.8156 158.605C59.029 158.482 59.3727 158.482 59.5898 158.605Z" fill="#706F6F"/>
-<path d="M59.8394 170.682C61.6157 171.706 61.623 173.366 59.8611 174.394C58.0992 175.418 55.2303 175.418 53.4539 174.394C51.6776 173.37 51.6704 171.709 53.4359 170.682C55.2014 169.654 58.0667 169.658 59.8394 170.682Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M23.0595 145.855C25.2953 147.147 25.3098 149.238 23.0885 150.529C20.8671 151.821 17.2529 151.821 15.0171 150.529C12.7813 149.238 12.7705 147.147 14.9918 145.855C17.2131 144.563 20.8237 144.567 23.0595 145.855Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M22.3324 146.38C24.1124 147.407 24.1233 149.075 22.3542 150.102C20.585 151.13 17.7052 151.13 15.9253 150.102C14.1453 149.075 14.1345 147.407 15.9036 146.38C17.6763 145.352 20.5525 145.352 22.3324 146.38Z" fill="#EDEDED"/>
-<path d="M23.0485 146.351C23.0485 146.369 23.0449 146.39 23.0449 146.409C23.0449 146.427 23.0413 146.445 23.0376 146.459C23.034 146.477 23.0304 146.499 23.0268 146.517C23.0232 146.535 23.0195 146.553 23.0159 146.568C23.0123 146.586 23.0087 146.608 23.0015 146.626C22.9978 146.644 22.9906 146.662 22.987 146.676C22.9798 146.694 22.9761 146.712 22.9689 146.734C22.9617 146.752 22.958 146.767 22.9508 146.785C22.9436 146.803 22.9363 146.825 22.9255 146.843C22.9182 146.861 22.911 146.875 22.9038 146.893C22.8929 146.911 22.8857 146.933 22.8749 146.951C22.8676 146.966 22.8568 146.984 22.8495 146.998C22.8351 147.02 22.8206 147.045 22.8061 147.067C22.7953 147.081 22.788 147.096 22.7772 147.11C22.7591 147.136 22.741 147.161 22.7229 147.186C22.7157 147.197 22.7084 147.208 22.6976 147.219C22.665 147.259 22.6324 147.299 22.5963 147.338C22.5854 147.349 22.5782 147.36 22.5673 147.367C22.5384 147.396 22.5094 147.425 22.4769 147.454C22.4624 147.469 22.4479 147.479 22.4335 147.494C22.4154 147.512 22.3973 147.526 22.3756 147.545C22.3575 147.559 22.3394 147.573 22.3213 147.588C22.2996 147.602 22.2815 147.621 22.2598 147.635C22.2417 147.649 22.22 147.664 22.2019 147.678C22.1802 147.693 22.1585 147.711 22.1368 147.725C22.1151 147.74 22.097 147.754 22.0753 147.769C22.0536 147.783 22.0283 147.798 22.0029 147.812C21.974 147.83 21.9414 147.848 21.9125 147.867C21.8293 147.917 21.7389 147.961 21.6484 148.004C21.6231 148.015 21.6014 148.026 21.576 148.037C21.4928 148.073 21.4096 148.109 21.3264 148.145C21.3156 148.149 21.3047 148.156 21.2939 148.16C21.2034 148.196 21.1093 148.225 21.0117 148.257C20.9465 148.279 20.8778 148.297 20.8091 148.315C20.7584 148.33 20.7078 148.344 20.6535 148.355C20.5812 148.373 20.5088 148.387 20.4364 148.402C20.3822 148.413 20.3315 148.424 20.2773 148.435C20.2556 148.438 20.2338 148.442 20.2121 148.445C20.1217 148.46 20.0312 148.474 19.9408 148.485C19.9155 148.489 19.8865 148.492 19.8612 148.496C19.8106 148.503 19.7563 148.503 19.702 148.51C19.6152 148.518 19.5248 148.525 19.4379 148.529C19.38 148.532 19.3258 148.532 19.2679 148.532C19.1955 148.532 19.1232 148.536 19.0544 148.532C18.9929 148.532 18.9351 148.529 18.8735 148.529C18.8084 148.525 18.7397 148.521 18.6746 148.518C18.613 148.514 18.5552 148.507 18.4937 148.503C18.4285 148.496 18.3634 148.489 18.2983 148.482C18.2404 148.474 18.1825 148.467 18.1247 148.456C18.0559 148.445 17.9872 148.435 17.9184 148.42C17.8642 148.409 17.8099 148.398 17.7556 148.387C17.6724 148.369 17.5928 148.348 17.5132 148.33C17.4626 148.315 17.4083 148.304 17.3577 148.286C17.3287 148.279 17.3034 148.268 17.2745 148.261C17.1949 148.236 17.1153 148.207 17.0357 148.178C17.014 148.17 16.9887 148.163 16.967 148.152C16.8946 148.123 16.8259 148.094 16.7571 148.065C16.7246 148.051 16.6884 148.037 16.6558 148.022C16.5581 147.975 16.4604 147.924 16.3664 147.874C15.5922 147.429 15.2087 146.843 15.2087 146.257L15.2051 147.942C15.2051 148.529 15.5886 149.111 16.3628 149.56C16.4568 149.614 16.5509 149.665 16.6486 149.708C16.6811 149.722 16.7173 149.737 16.7499 149.751C16.8078 149.777 16.8657 149.806 16.9272 149.827C16.938 149.831 16.9489 149.835 16.9597 149.838C16.9814 149.845 17.0067 149.856 17.0284 149.864C17.108 149.892 17.1876 149.918 17.2672 149.947C17.2962 149.954 17.3215 149.965 17.3504 149.972C17.3685 149.979 17.3866 149.983 17.4047 149.99C17.4373 150.001 17.4734 150.005 17.506 150.016C17.5856 150.037 17.6688 150.059 17.7484 150.077C17.7701 150.081 17.7918 150.088 17.8135 150.091C17.8461 150.099 17.8786 150.102 17.9112 150.11C17.9799 150.124 18.0487 150.135 18.121 150.146C18.15 150.149 18.1753 150.157 18.2042 150.16C18.2332 150.164 18.2657 150.167 18.2947 150.171C18.3598 150.178 18.4249 150.186 18.4901 150.193C18.5226 150.196 18.5515 150.2 18.5841 150.204C18.613 150.207 18.642 150.207 18.671 150.207C18.7361 150.211 18.8048 150.214 18.8699 150.218C18.9025 150.218 18.935 150.222 18.9712 150.222C18.9965 150.222 19.0255 150.222 19.0508 150.222C19.1232 150.222 19.1955 150.222 19.2643 150.222C19.3004 150.222 19.3366 150.222 19.3728 150.222C19.3945 150.222 19.4162 150.218 19.4343 150.218C19.5248 150.214 19.6116 150.207 19.6984 150.2C19.7346 150.196 19.7707 150.196 19.8033 150.193C19.8214 150.193 19.8359 150.189 19.854 150.186C19.8793 150.182 19.9082 150.178 19.9336 150.175C20.024 150.164 20.1145 150.149 20.2049 150.135C20.2266 150.131 20.2483 150.128 20.27 150.124C20.2809 150.12 20.2917 150.12 20.3026 150.12C20.346 150.113 20.3858 150.102 20.4292 150.095C20.5016 150.081 20.5739 150.066 20.6463 150.048C20.6969 150.037 20.7476 150.019 20.8018 150.008C20.8706 149.99 20.9393 149.972 21.0044 149.95C21.0189 149.947 21.0334 149.943 21.0478 149.94C21.1274 149.914 21.207 149.885 21.2866 149.856C21.2975 149.853 21.3083 149.845 21.3192 149.842C21.406 149.809 21.4892 149.773 21.5688 149.733C21.5941 149.722 21.6158 149.712 21.6412 149.701C21.7316 149.657 21.8221 149.61 21.9053 149.563C21.9197 149.552 21.9378 149.545 21.9523 149.534C21.9668 149.527 21.9813 149.516 21.9957 149.505C22.021 149.491 22.0427 149.476 22.0681 149.462C22.0898 149.447 22.1115 149.433 22.1296 149.419C22.1513 149.404 22.173 149.386 22.1947 149.372C22.2164 149.357 22.2345 149.343 22.2526 149.328C22.2743 149.314 22.2924 149.296 22.3141 149.281C22.3322 149.267 22.3503 149.252 22.3683 149.238C22.3864 149.22 22.4081 149.205 22.4262 149.187C22.4335 149.18 22.4407 149.173 22.448 149.165C22.4552 149.158 22.4624 149.151 22.466 149.147C22.4986 149.118 22.5275 149.089 22.5565 149.06C22.5673 149.05 22.5746 149.042 22.5854 149.031C22.6216 148.992 22.6542 148.952 22.6867 148.912L22.6903 148.908C22.6976 148.898 22.7048 148.89 22.712 148.88C22.7301 148.854 22.7482 148.829 22.7663 148.804C22.7772 148.789 22.7844 148.775 22.7952 148.76C22.8097 148.738 22.8242 148.713 22.8387 148.691C22.8423 148.684 22.8459 148.681 22.8495 148.673C22.8531 148.662 22.8604 148.655 22.864 148.644C22.8748 148.626 22.8857 148.605 22.8929 148.586C22.9002 148.568 22.9074 148.554 22.9146 148.536C22.9219 148.518 22.9327 148.496 22.94 148.478C22.9436 148.471 22.9472 148.46 22.9508 148.453C22.9544 148.445 22.9544 148.438 22.9581 148.427C22.9653 148.409 22.9725 148.391 22.9761 148.369C22.9798 148.351 22.987 148.333 22.9906 148.319C22.9942 148.301 23.0015 148.279 23.0051 148.261C23.0087 148.25 23.0123 148.239 23.0123 148.228C23.0123 148.221 23.0159 148.214 23.0159 148.207C23.0195 148.189 23.0232 148.167 23.0268 148.149C23.0304 148.131 23.0304 148.113 23.034 148.098C23.0377 148.08 23.0376 148.058 23.0376 148.04C23.0376 148.029 23.0413 148.018 23.0413 148.004C23.0413 147.993 23.0413 147.982 23.0413 147.968L23.0449 146.282C23.0521 146.304 23.0485 146.325 23.0485 146.351Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M21.8942 144.665C23.4318 145.551 23.439 146.991 21.9123 147.877C20.3856 148.764 17.9037 148.764 16.3662 147.877C14.8286 146.991 14.8214 145.551 16.3481 144.665C17.8748 143.778 20.3566 143.778 21.8942 144.665Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M19.3367 144.918L20.3642 147.234C20.3787 147.266 20.3569 147.306 20.3208 147.309L18.1211 147.631C18.0958 147.635 18.0741 147.621 18.0632 147.599L17.8932 147.215C17.8787 147.183 17.9004 147.143 17.9366 147.139L19.2643 146.944C19.3005 146.94 19.3222 146.901 19.3078 146.868L18.5119 145.07C18.4974 145.037 18.5191 144.998 18.5553 144.994L19.2861 144.886C19.3041 144.882 19.3259 144.896 19.3367 144.918Z" fill="#DA3635"/>
-<path d="M26.1501 164.039L27.6117 167.332C27.6334 167.379 27.6045 167.433 27.5538 167.44L24.4208 167.9C24.3846 167.903 24.3521 167.885 24.3376 167.853L24.0952 167.303C24.0735 167.256 24.1024 167.201 24.1531 167.194L26.0416 166.916C26.0922 166.908 26.1212 166.854 26.0995 166.807L24.9671 164.249C24.9454 164.202 24.9743 164.148 25.025 164.141L26.0633 163.989C26.1031 163.989 26.1356 164.007 26.1501 164.039Z" fill="#706F6F"/>
-<path d="M37.4523 171.054L38.9139 174.346C38.9356 174.394 38.9067 174.448 38.8561 174.455L35.723 174.914C35.6868 174.918 35.6543 174.9 35.6398 174.867L35.3974 174.318C35.3757 174.271 35.4047 174.216 35.4553 174.209L37.3438 173.93C37.3945 173.923 37.4234 173.869 37.4017 173.822L36.2693 171.264C36.2476 171.217 36.2766 171.163 36.3272 171.156L37.3655 171.004C37.4053 171.004 37.4379 171.022 37.4523 171.054Z" fill="#706F6F"/>
-<path d="M15.9299 157.741L17.3915 161.033C17.4132 161.08 17.3843 161.134 17.3336 161.142L14.2006 161.601C14.1644 161.605 14.1318 161.587 14.1174 161.554L13.875 161.004C13.8533 160.957 13.8822 160.903 13.9329 160.896L15.8214 160.617C15.872 160.61 15.901 160.556 15.8793 160.508L14.7469 157.951C14.7252 157.904 14.7541 157.849 14.8047 157.842L15.8431 157.69C15.8829 157.69 15.9154 157.708 15.9299 157.741Z" fill="#706F6F"/>
-<path d="M184.591 71.9854C190.088 75.1603 190.124 80.3076 184.656 83.4825C179.189 86.6573 170.304 86.6573 164.808 83.4825C159.311 80.3076 159.281 75.1603 164.748 71.9854C170.21 68.8105 179.095 68.8105 184.591 71.9854Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M183.01 72.9095C187.624 75.575 187.654 79.893 183.069 82.5585C178.485 85.224 171.021 85.224 166.401 82.5585C161.787 79.893 161.763 75.575 166.348 72.9095C170.932 70.244 178.396 70.244 183.01 72.9095Z" fill="#EDEDED"/>
-<path d="M185.539 72.5007C185.533 72.554 185.533 72.6073 185.527 72.6666C185.521 72.7139 185.515 72.7613 185.509 72.8087C185.503 72.862 185.492 72.9153 185.486 72.9686C185.48 73.016 185.468 73.0634 185.456 73.1108C185.444 73.1641 185.432 73.2174 185.415 73.2707C185.403 73.3181 185.385 73.3655 185.373 73.4129C185.355 73.4662 185.338 73.5195 185.32 73.5669C185.302 73.6143 185.284 73.6617 185.267 73.7091C185.243 73.7624 185.219 73.8157 185.195 73.8749C185.178 73.9223 185.154 73.9637 185.13 74.0111C185.107 74.0644 185.077 74.1177 185.047 74.171C185.024 74.2125 185 74.2599 184.976 74.3014C184.941 74.3665 184.899 74.4317 184.858 74.4909C184.834 74.5324 184.81 74.5679 184.781 74.6094C184.733 74.6804 184.68 74.7515 184.627 74.8167C184.603 74.8463 184.579 74.8759 184.556 74.9115C184.467 75.024 184.372 75.1306 184.277 75.2372C184.254 75.2668 184.224 75.2905 184.2 75.3202C184.123 75.4031 184.04 75.486 183.958 75.563C183.916 75.5985 183.88 75.6341 183.839 75.6697C183.786 75.717 183.732 75.7644 183.679 75.8059C183.632 75.8473 183.584 75.8888 183.531 75.9303C183.478 75.9777 183.418 76.0191 183.359 76.0665C183.306 76.108 183.253 76.1494 183.199 76.185C183.14 76.2264 183.081 76.2738 183.016 76.3153C182.956 76.3567 182.903 76.3923 182.844 76.4337C182.779 76.4752 182.714 76.5167 182.648 76.5581C182.566 76.6114 182.483 76.6588 182.4 76.7121C182.163 76.8483 181.92 76.9728 181.671 77.0971C181.606 77.1268 181.541 77.1623 181.47 77.1919C181.245 77.2985 181.014 77.3933 180.777 77.4881C180.747 77.4999 180.717 77.5118 180.682 77.5236C180.427 77.6184 180.167 77.7072 179.906 77.7902C179.722 77.8494 179.533 77.8968 179.349 77.9501C179.207 77.9916 179.065 78.0271 178.923 78.0626C178.727 78.11 178.526 78.1515 178.324 78.1929C178.176 78.2225 178.034 78.2581 177.886 78.2818C177.827 78.2936 177.762 78.2996 177.703 78.3114C177.454 78.3529 177.205 78.3884 176.95 78.418C176.879 78.4239 176.802 78.4358 176.731 78.4417C176.589 78.4595 176.441 78.4654 176.293 78.4773C176.05 78.495 175.807 78.5128 175.558 78.5246C175.404 78.5306 175.244 78.5365 175.09 78.5365C174.895 78.5424 174.694 78.5424 174.498 78.5365C174.332 78.5365 174.166 78.5306 174 78.5246C173.817 78.5187 173.633 78.5069 173.45 78.495C173.284 78.4832 173.118 78.4713 172.946 78.4536C172.763 78.4358 172.585 78.418 172.407 78.3943C172.247 78.3766 172.081 78.3529 171.921 78.3233C171.726 78.2936 171.536 78.2581 171.347 78.2226C171.199 78.193 171.045 78.1633 170.897 78.1337C170.672 78.0863 170.447 78.0271 170.221 77.9679C170.079 77.9323 169.931 77.8968 169.789 77.8494C169.712 77.8257 169.635 77.802 169.564 77.7783C169.339 77.7072 169.12 77.6302 168.907 77.5532C168.841 77.5295 168.782 77.5059 168.717 77.4822C168.522 77.4052 168.332 77.3222 168.142 77.2393C168.048 77.1978 167.953 77.1623 167.864 77.1149C167.592 76.9846 167.325 76.8484 167.07 76.7003C164.932 75.4683 163.866 73.8453 163.872 72.2341L163.86 76.8957C163.854 78.5128 164.92 80.1299 167.058 81.3678C167.313 81.5159 167.58 81.6521 167.852 81.7824C167.941 81.8239 168.042 81.8654 168.131 81.9068C168.291 81.9779 168.45 82.0549 168.616 82.1201C168.646 82.1319 168.676 82.1438 168.705 82.1497C168.764 82.1734 168.829 82.1971 168.895 82.2208C169.108 82.2978 169.333 82.3748 169.552 82.4459C169.629 82.4696 169.706 82.4932 169.783 82.5169C169.836 82.5347 169.884 82.5524 169.937 82.5643C170.026 82.588 170.121 82.6058 170.216 82.6295C170.441 82.6887 170.66 82.742 170.891 82.7953C170.95 82.8072 171.009 82.8249 171.069 82.8368C171.157 82.8545 171.246 82.8664 171.335 82.8842C171.525 82.9197 171.72 82.9552 171.91 82.9849C171.987 82.9967 172.064 83.0145 172.141 83.0263C172.224 83.0382 172.312 83.0441 172.395 83.0559C172.573 83.0796 172.757 83.0974 172.94 83.1152C173.029 83.1211 173.112 83.1389 173.201 83.1448C173.284 83.1507 173.361 83.1507 173.444 83.1566C173.627 83.1685 173.811 83.1803 173.995 83.1863C174.089 83.1922 174.178 83.1981 174.273 83.1981C174.344 83.1981 174.421 83.1981 174.492 83.1981C174.688 83.1981 174.889 83.1981 175.084 83.1981C175.185 83.1981 175.28 83.1981 175.381 83.1981C175.44 83.1981 175.499 83.1863 175.552 83.1863C175.795 83.1744 176.044 83.1566 176.287 83.1389C176.388 83.1329 176.482 83.127 176.583 83.1211C176.63 83.1152 176.678 83.1093 176.725 83.1033C176.796 83.0974 176.873 83.0855 176.944 83.0796C177.199 83.05 177.448 83.0145 177.697 82.973C177.756 82.9612 177.821 82.9552 177.88 82.9434C177.91 82.9375 177.939 82.9315 177.969 82.9315C178.088 82.9078 178.2 82.8783 178.319 82.8546C178.52 82.8131 178.721 82.7716 178.917 82.7242C179.059 82.6887 179.201 82.6472 179.343 82.6117C179.533 82.5584 179.716 82.511 179.9 82.4518C179.942 82.4399 179.983 82.4281 180.019 82.4162C180.244 82.3451 180.463 82.2682 180.676 82.1852C180.706 82.1734 180.735 82.1615 180.771 82.1497C181.008 82.0549 181.239 81.9602 181.464 81.8535C181.529 81.8239 181.6 81.7943 181.665 81.7587C181.914 81.6403 182.163 81.51 182.394 81.3738C182.441 81.3501 182.483 81.3204 182.524 81.2967C182.566 81.2731 182.601 81.2494 182.643 81.2197C182.708 81.1783 182.773 81.1368 182.838 81.0953C182.897 81.0539 182.956 81.0183 183.01 80.9769C183.069 80.9354 183.134 80.894 183.193 80.8466C183.247 80.8051 183.3 80.7636 183.353 80.7222C183.413 80.6807 183.466 80.6333 183.525 80.5919C183.578 80.5504 183.626 80.5089 183.673 80.4675C183.727 80.4201 183.78 80.3786 183.827 80.3313C183.851 80.3135 183.869 80.2957 183.892 80.2779C183.91 80.2602 183.928 80.2424 183.946 80.2246C184.029 80.1417 184.112 80.0647 184.189 79.9818C184.212 79.9521 184.242 79.9284 184.266 79.8988C184.366 79.7922 184.461 79.6797 184.544 79.5731C184.55 79.5671 184.55 79.5612 184.556 79.5612C184.574 79.5375 184.591 79.5079 184.615 79.4842C184.668 79.4132 184.722 79.348 184.769 79.2769C184.793 79.2354 184.822 79.1999 184.846 79.1584C184.887 79.0933 184.929 79.0281 184.964 78.9689C184.976 78.9511 184.988 78.9334 184.994 78.9156C185.012 78.8919 185.024 78.8623 185.036 78.8386C185.065 78.7853 185.095 78.7319 185.118 78.6786C185.142 78.6313 185.16 78.5898 185.184 78.5424C185.207 78.4891 185.231 78.4358 185.255 78.3765C185.267 78.3529 185.278 78.3292 185.284 78.3055C185.29 78.2818 185.296 78.2581 185.308 78.2403C185.326 78.187 185.344 78.1337 185.361 78.0863C185.373 78.0389 185.391 77.9915 185.403 77.9442C185.415 77.8909 185.432 77.8375 185.444 77.7842C185.45 77.7546 185.462 77.725 185.468 77.7013C185.474 77.6836 185.474 77.6598 185.48 77.6421C185.492 77.5888 185.498 77.5355 185.503 77.4822C185.509 77.4348 185.515 77.3874 185.521 77.34C185.527 77.2867 185.527 77.2334 185.533 77.1741C185.533 77.1445 185.539 77.109 185.539 77.0794C185.539 77.0498 185.539 77.0142 185.539 76.9846L185.551 72.323C185.545 72.3763 185.545 72.4415 185.539 72.5007Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M182.346 67.8392C186.593 70.2914 186.617 74.2659 182.4 76.7181C178.182 79.1704 171.317 79.1704 167.07 76.7181C162.823 74.2659 162.806 70.2914 167.023 67.8392C171.24 65.3869 178.1 65.3869 182.346 67.8392Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M175.268 68.0701L178.005 74.2421C178.046 74.331 177.987 74.4317 177.892 74.4436L172.028 75.3024C171.963 75.3143 171.898 75.2787 171.874 75.2195L171.418 74.1948C171.377 74.1059 171.436 74.0052 171.531 73.9934L175.067 73.4721C175.162 73.4603 175.215 73.3596 175.179 73.2707L173.059 68.4788C173.018 68.39 173.077 68.2893 173.172 68.2774L175.12 67.9931C175.179 67.9753 175.239 68.005 175.268 68.0701Z" fill="#DA3635"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" fill="white"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" fill="white"/>
-<path d="M106.673 153.499C106.688 153.713 106.658 154.202 106.607 154.396C106.377 154.396 106.347 154.284 106.311 154.085C105.969 154.61 105.495 155.946 105.133 154.819C104.919 154.151 105.2 153.3 105.801 152.892" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" fill="white"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" fill="white"/>
-<path d="M117.501 155.395C117.664 155.885 118.495 156.522 117.796 156.884C117.078 157.261 116.573 156.083 116.491 155.482" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" fill="white"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" fill="white"/>
-<path d="M116.93 164.23C116.899 164.526 117.649 165.244 117.781 165.632C117.96 166.172 117.766 166.611 117.486 167.07C116.981 167.885 116.996 167.396 116.879 166.759C116.782 166.203 116.405 165.744 116.211 165.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.904 169.649C111.735 170.613 108.258 172.881 109.303 170.679L110.904 169.649Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" fill="white"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" fill="white"/>
-<path d="M117.715 165.469C118.337 165.566 118.255 166.381 118.123 166.855C118.026 167.151 117.241 168.487 116.981 168.308C116.41 167.885 117.174 167.248 117.322 167.019C117.536 166.692 117.959 166.04 117.796 165.632" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" fill="white"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" fill="white"/>
-<path d="M111.475 147.799C111.623 147.932 113.764 145.628 113.698 145.577C113.55 145.429 113.172 145.281 113.127 145.102C113.045 144.725 112.831 144.124 112.979 143.762C113.519 143.976 113.81 143.42 113.764 142.895C113.698 142.243 112.622 141.672 112.734 142.553C111.949 142.732 112.066 142.013 111.245 141.457C110.297 141.753 110.216 141.391 109.726 141.101C109.318 142.161 109.808 145.148 111.098 144.577C110.624 144.547 111.113 144.593 111.164 144.873C111.098 144.888 110.675 145.984 110.659 145.984" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" fill="white"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" fill="#DA3635"/>
-<path d="M109.956 140.713C110.4 140.061 110.69 140.045 111.363 139.862C111.985 139.683 112.653 139.306 113.341 139.699C114.009 140.076 114.045 141.136 114.356 141.789C114.697 142.574 115.385 143.211 115.564 144.042C115.778 144.955 115.319 145.22 114.503 145.465C113.851 145.658 113.214 145.546 112.887 144.924C112.775 144.71 112.673 144.19 112.755 143.945C112.887 143.568 113.392 143.604 113.586 143.293C113.8 142.967 113.474 142.232 113.045 142.263C112.867 142.278 112.785 142.656 112.474 142.671C112.296 142.686 111.771 142.411 111.659 142.248C111.526 142.085 111.562 141.626 111.363 141.58C111.149 141.514 110.874 141.972 110.675 142.039C109.89 142.283 109.859 141.682 109.742 141.106" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M113.698 145.561C113.341 146.051 112.439 146.984 111.771 147.014C110.94 147.065 110.772 145.398 111.185 144.858C110.415 144.287 110.155 145.281 109.961 145.852C109.686 146.683 109.354 147.386 108.834 148.09C108.279 148.875 107.692 149.64 107.264 150.506C106.826 151.419 106.25 152.138 105.694 152.953C106.168 153.101 106.316 153.376 106.642 153.687C107.295 153.213 107.835 152.301 108.34 151.664C108.845 150.996 109.37 150.389 109.681 149.604C109.992 150.226 109.793 151.189 110.369 151.597C110.828 151.908 111.674 151.857 112.214 151.857C112.801 151.857 113.621 152.071 113.948 151.546C114.407 150.812 113.897 149.619 114.243 148.855C115.176 149.558 115.467 152.005 115.732 153.101C115.88 153.754 115.91 155.762 116.792 155.88C116.971 155.895 117.562 155.65 117.69 155.538C117.985 155.263 117.95 155.293 117.853 154.855C117.741 154.35 117.394 153.907 117.266 153.387C117.134 152.846 117.052 152.291 116.991 151.74C116.828 150.287 116.257 149.242 115.701 147.901C115.39 147.132 115.294 146.397 114.524 145.959C114.254 145.76 114.055 145.597 113.698 145.561Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" fill="white"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" fill="white"/>
-<path d="M110.787 167.299C111.032 167.477 110.95 169.175 110.899 169.567C110.833 170.174 110.048 171.214 109.329 171.153C109.135 170.663 109.477 170.077 109.558 169.583C109.64 169.042 109.625 168.487 109.558 167.951" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M113.973 151.444C115.018 152.52 114.937 154.401 114.743 155.757C114.549 157.098 113.453 158.892 114.366 160.05C114.921 160.768 115.329 161.584 115.9 162.252C116.359 162.792 117.057 163.379 117.012 164.179C116.996 164.505 116.731 165.01 116.425 165.173C115.936 165.433 115.757 165.025 115.395 164.633C114.707 163.863 114.218 163.062 113.372 162.461C112.408 161.778 112.163 161.186 111.949 160.075C111.669 158.77 111.608 157.46 111.445 156.17C111.149 157.659 111.414 159.157 111.149 160.631C111.001 161.497 110.823 162.313 110.889 163.21C110.971 164.286 111.215 165.351 111.149 166.442C111.098 167.212 111.001 167.62 110.252 167.829C110.038 167.88 109.645 168.023 109.467 167.926C109.023 167.697 109.11 165.866 109.074 165.443C108.86 162.374 108.095 159.305 108.304 156.201C108.371 155.349 108.467 154.223 108.712 153.422C108.942 152.653 109.365 151.48 110.017 150.97C110.374 151.883 111.078 151.837 112.041 151.822C112.668 151.801 113.514 151.913 113.973 151.444Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" fill="white"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" fill="white"/>
-<path d="M128.298 140.601C129.001 140.881 128.706 142.936 128.772 143.706C128.869 144.883 127.385 145.158 126.274 144.455C125.54 143.981 125.214 142.003 125.147 141.126C125.051 139.592 127.452 139.479 127.972 140.749" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" fill="white"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" fill="white"/>
-<path d="M128.727 143.879C128.023 145.525 126.111 143.945 125.704 144.582C125.408 145.041 125.408 146.428 125.347 146.984C125.235 147.881 125.265 148.829 125.265 149.741C125.265 151.067 124.776 153.84 126.361 154.477C128.37 155.293 129.236 152.112 129.185 150.72C129.134 149.624 128.956 148.549 128.971 147.437C128.987 146.407 129.558 144.516 128.645 143.746" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" fill="white"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" fill="white"/>
-<path d="M134.033 153.647C134.145 153.907 134.329 154.462 134.472 154.722C133.345 155.064 132.642 155.507 132.738 153.856" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.925 153.534C122.486 153.942 122.695 155.431 121.701 155.084C120.672 154.707 121.538 153.958 121.686 153.188C122.094 153.336 122.614 153.305 122.925 153.534Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" fill="white"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" fill="white"/>
-<path d="M122.237 155.048C122.629 155.568 122.4 156.027 122.022 156.308C122.038 156.292 120.845 156.568 120.733 156.501C119.754 156.012 121.09 154.982 121.273 154.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" fill="white"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" fill="white"/>
-<path d="M133.264 155.049C133.213 155.426 133.167 155.997 133.1 156.338C133.167 156.287 133.315 156.175 133.396 156.124C133.019 157.903 135.568 155.976 134.293 154.819" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" fill="white"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" fill="white"/>
-<path d="M131.01 164.587C131.433 166.366 129.624 166.626 129.95 164.719C130.261 164.735 130.587 164.556 130.801 164.49" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" fill="white"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" fill="white"/>
-<path d="M125.377 167.085C125.28 167.151 125.163 167.182 125.081 167.278C125.785 167.472 125.815 168.16 126.142 168.716C126.667 167.865 126.142 167.1 125.163 167.1" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" fill="white"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" fill="white"/>
-<path d="M126.014 168.604C125.673 167.217 124.363 166.595 122.991 166.448C123.006 167.544 125.244 170.271 126.244 168.716" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" fill="white"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" fill="white"/>
-<path d="M129.818 165.566C130.113 166.024 130.669 165.989 130.995 165.581C131.5 166.871 129.705 166.871 128.788 166.758C126.698 166.529 129.44 166.121 129.603 165.372C129.914 165.601 130.388 165.749 130.812 165.683" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" fill="white"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" fill="#DA3635"/>
-<path d="M127.549 141.61C127.579 141.024 128.431 140.958 128.528 141.498C128.579 141.692 127.676 142.885 127.528 142.921C126.825 143.084 126.386 141.891 125.617 142.039C124.684 142.232 124.928 143.379 125.535 143.833C126.876 144.878 127.625 143.328 128.359 142.462C128.686 142.085 128.9 142.299 129.063 141.692C129.16 141.335 128.997 140.922 128.93 140.596C128.767 139.699 128.604 139.026 127.671 138.766C126.871 138.536 125.759 138.715 125.137 139.204C124.24 139.908 124.597 141.407 125.433 140.316C125.877 140.953 126.855 141.361 127.62 141.05" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" fill="white"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" fill="white"/>
-<path d="M125.688 144.205C126.081 145.154 125.622 146.948 125.739 148.059C125.872 149.431 125.902 150.802 125.902 152.209C125.902 153.106 125.836 153.305 126.509 153.795C127.294 154.381 127.895 154.447 128.176 153.631C128.635 152.275 127.997 150.185 127.962 148.783C127.931 147.493 129.532 144.685 128.895 143.69C130.643 144.343 131.229 145.944 131.882 147.56C132.504 149.145 133.483 150.843 133.891 152.489C134.023 153.015 134.247 153.616 133.824 153.958C133.284 154.416 132.586 153.942 132.356 153.58C132.06 153.106 132.045 151.817 131.867 151.246C131.637 150.43 131.347 149.696 130.888 149.023C130.592 150.002 130.791 151.195 130.919 152.189C131 152.857 131.474 154.524 131.229 155.13C131.051 155.589 130.154 156.191 129.843 156.863C129.486 157.598 128.813 158.495 128.619 159.295C128.161 161.156 130.368 162.379 130.908 163.95C131.219 164.883 130.516 165.194 129.751 164.602C128.981 164.016 128.737 162.675 127.788 162.379C126.84 163.802 126.855 165.953 126.3 167.523C123.358 167.166 126.723 161.482 126.397 160.208C126.218 159.474 125.418 159.066 125.255 158.265C125.122 157.562 125.403 156.813 125.499 156.124C125.678 154.916 125.306 155.13 124.913 154.294C124.49 153.397 124.572 151.929 124.602 150.965C124.342 151.342 122.43 155.309 121.676 153.499C121.416 152.892 123.374 150.104 123.557 149.482C124.031 147.748 123.231 143.961 125.795 144.323" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" fill="white"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" fill="white"/>
-<path d="M85.255 13.9513C85.6456 12.7461 88.3296 12.2104 88.2403 13.9402C88.1901 14.7939 87.9446 15.1231 87.0574 15.2124C86.3431 15.2626 85.1378 14.6153 85.255 13.8007" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" fill="white"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" fill="white"/>
-<path d="M85.7517 15.1344C85.5564 15.7593 84.9872 17.0148 86.1925 16.6521C86.5664 16.535 87.4257 16.3564 87.1523 15.8877C86.9682 15.564 86.1813 15.4357 85.9693 15.073" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" fill="white"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" fill="white"/>
-<path d="M87.1022 27.3155C87.091 29.5977 85.9862 31.8688 86.2038 34.1398C86.254 34.6197 86.427 35.1387 86.2931 35.6297C86.148 36.1096 85.5677 36.4834 85.1492 35.9645C84.8869 35.6409 84.9539 34.6923 84.9427 34.2905C84.9148 33.6265 85.0208 33.0573 84.9037 32.41C84.6302 30.9983 85.1492 29.5196 84.7362 28.1302C84.513 27.3936 84.3345 27.1202 84.5019 26.3557C84.7474 25.2509 84.3066 24.5255 85.6681 24.386C86.4716 24.3079 87.264 24.1516 88.0452 23.9731C88.2796 23.9229 89.1723 23.4541 89.3955 23.5825C89.708 23.7666 89.4458 25.5801 89.4458 26.0209C89.4458 27.5275 89.2896 28.9504 89.4458 30.418C89.563 31.428 89.2393 32.4658 89.15 33.4647C89.0998 34.0896 89.4234 35.6074 88.3465 35.3451C87.4146 35.1275 87.6825 32.3765 87.6434 31.5563C87.6043 30.3901 88.1122 28.2864 87.2026 27.3769" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" fill="white"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" fill="white"/>
-<path d="M88.062 35.1665C88.101 35.4009 87.9839 35.5013 87.8667 35.6966C88.5028 36.3718 88.6591 35.7636 88.8767 35.2669C88.475 35.3562 88.4247 35.3841 88.1345 35.239" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" fill="white"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" fill="white"/>
-<path d="M87.8667 35.7858C87.2418 36.7958 89.1111 36.7065 89.7639 36.7065C90.9469 36.6953 89.9704 36.1373 89.4515 35.8862C89.206 35.769 88.9995 35.6295 88.7484 35.6686C88.3746 35.7188 88.2797 36.1875 87.8779 35.6797" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" fill="white"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" fill="white"/>
-<path d="M85.2551 36.0871C85.2551 36.2935 85.1881 36.4386 85.2048 36.6451C86.0753 37.2812 86.0084 36.6563 86.0084 36.0369C85.7852 36.1261 85.5285 36.1931 85.3053 36.0871" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" fill="white"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" fill="white"/>
-<path d="M85.1043 36.5894C85.0374 37.1362 85.015 37.2757 85.4559 37.7332C85.8186 38.0959 86.1589 38.4475 86.6779 38.4977C86.9234 37.9397 86.3151 37.1474 85.9748 36.7344C85.7125 36.8628 85.3498 36.8907 85.2103 36.6061" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" fill="white"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" fill="white"/>
-<path d="M85.2551 15.9266C84.8645 16.0438 84.5911 16.3005 84.3065 16.5739C83.9717 16.8976 83.4528 17.1989 83.2408 17.6397C82.9283 18.3149 82.772 19.5592 82.7106 20.3014C82.6213 21.1942 82.6827 22.0925 82.7608 22.9853C82.8501 23.9451 83.6425 25.1002 84.1224 25.9316C84.3567 26.3222 84.7585 27.4884 85.0821 26.5956C85.3165 25.9483 84.7697 25.3122 84.6692 24.7152C85.4727 25.156 86.3042 24.9886 87.2137 24.9886C88.2014 24.9774 89.1444 24.7821 89.5517 23.8223C89.5406 24.5645 89.6019 25.0555 89.4848 25.4573C90.1599 24.4975 90.9244 23.0858 91.0918 21.8916C91.2592 20.6194 90.4278 19.269 89.9646 18.1307C89.7191 17.5337 89.4346 17.065 89.0049 16.5739C88.8375 16.3675 88.6143 15.949 88.4079 15.8095C88.0731 15.5528 88.3185 15.642 87.9279 15.7313C87.1244 15.9266 85.8243 17.4165 85.3723 15.9545C85.3221 15.9545 85.3054 15.9936 85.3221 16.0829" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" fill="white"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" fill="#DA3635"/>
-<path d="M85.9692 13.9122C86.0752 13.8843 85.9971 13.65 86.1255 13.5886C86.4212 13.4212 86.3598 13.6779 86.6723 13.6779C87.0629 13.6779 87.487 13.265 87.8664 13.1199C87.9334 13.265 88.0227 13.6109 88.2403 13.5886C88.4747 13.5496 88.536 13.0976 88.5137 12.9134C88.4468 12.4336 88.0339 12.3554 87.6321 12.2382C87.2582 12.1322 86.8174 12.0318 86.4268 12.0039C85.7126 11.9537 85.4559 12.3945 85.1825 13.0418C84.976 13.5216 84.8979 14.0127 85.2215 14.4702C85.4949 14.8608 86.0418 15.469 86.4268 15.7536C86.8676 16.0773 87.7492 16.2726 88.0115 15.7146C88.3072 15.0785 88.0115 14.7548 87.4535 14.9111C86.6723 15.1454 86.5719 15.1677 85.986 14.6376C85.8297 14.5093 85.3889 14.4423 85.3889 14.1299C85.4001 13.7783 85.7628 13.8062 85.88 14.0908" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-</svg>
+  <rect width="200" height="200" fill="white" />
+  <path
+    d="M21 102.5H47.5L98 106.5H179.75C182.097 106.5 184 104.597 184 102.25C184 99.9028 182.097 98 179.75 98H175.5C174.119 98 173 96.8807 173 95.5C173 94.1193 174.119 93 175.5 93H183.75C189.687 93 194.5 88.1871 194.5 82.25V78.5C194.5 74.3579 191.142 71 187 71C182.858 71 179.5 67.6421 179.5 63.5V61C179.5 57.9624 177.038 55.5 174 55.5C170.962 55.5 168.5 53.0376 168.5 50V46.25C168.5 41.1414 172.641 37 177.75 37H185.25C188.426 37 191 34.4256 191 31.25C191 28.0744 188.426 25.5 185.25 25.5H169.5C166.186 25.5 163.5 22.8137 163.5 19.5C163.5 16.1863 160.814 13.5 157.5 13.5H149.312C146.137 13.5 143.562 10.9256 143.562 7.75C143.562 4.57436 140.988 2 137.812 2H89.5C86.3244 2 83.75 4.57436 83.75 7.75C83.75 10.9256 81.1756 13.5 78 13.5H66.75C64.9551 13.5 63.5 12.0449 63.5 10.25C63.5 8.45507 62.0449 7 60.25 7H23.25C21.4551 7 20 8.45507 20 10.25C20 12.0449 18.5449 13.5 16.75 13.5H10C6.68629 13.5 4 16.1863 4 19.5C4 22.8137 6.68629 25.5 10 25.5H15C19.1421 25.5 22.5 28.8579 22.5 33V35C22.5 38.0376 20.0376 40.5 17 40.5C13.9624 40.5 11.5 42.9624 11.5 46V47C11.5 50.5899 14.4101 53.5 18 53.5H24C28.1421 53.5 31.5 56.8579 31.5 61C31.5 65.1421 28.1421 68.5 24 68.5H17.75C10.1561 68.5 4 74.6561 4 82.25V85.5C4 94.8888 11.6112 102.5 21 102.5Z"
+    fill="#DDEDFF" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M148.554 44.806C148.539 44.806 148.525 44.806 148.51 44.806C148.496 44.806 148.481 44.806 148.467 44.806H134.821C134.799 44.8062 134.776 44.8063 134.754 44.8063C134.732 44.8063 134.71 44.8062 134.687 44.806H134.403V44.7973C130.865 44.6148 128.053 41.6883 128.053 38.1048C128.053 34.4036 131.053 31.4033 134.754 31.4033C134.873 31.4033 134.99 31.4063 135.107 31.4124L135.107 31.403C135.107 24.0007 141.108 18 148.51 18C153.631 18 158.081 20.8714 160.337 25.0918C160.624 25.0668 160.914 25.054 161.208 25.054C166.662 25.054 171.084 29.4756 171.084 34.9299C171.084 35.171 171.075 35.4101 171.058 35.6469C173.437 35.8148 175.316 37.7984 175.316 40.2206C175.316 42.753 173.263 44.8059 170.73 44.8059C170.613 44.8059 170.496 44.8014 170.38 44.7927V44.806H148.554Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M23 59.9825C22.8347 59.9941 22.668 60 22.5 60C18.3579 60 15 56.4183 15 52C15 47.5817 18.3579 44 22.5 44C24.2006 44 25.769 44.6037 27.0271 45.6212C27.4631 38.575 33.1046 33 40 33C41.7774 33 43.4714 33.3704 45.0145 34.0409C47.7381 30.9455 51.6804 29 56.0658 29C64.2847 29 70.9474 35.8335 70.9474 44.2632C70.9474 45.7283 70.7461 47.1452 70.3704 48.4864C72.5053 49.4054 74 51.5282 74 54C74 57.3137 71.3137 60 68 60H40H23V59.9825Z"
+    fill="white" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+    fill="#A0C7F0" />
+  <path
+    d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+    fill="#4277AF" />
+  <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+    fill="url(#paint0_linear_14421_58839)" />
+  <path
+    d="M70.0789 41.7061C69.5471 41.6652 69.0972 41.522 68.7085 41.297L64.2905 38.7402C64.6791 38.9652 65.1291 39.1084 65.6609 39.1698L70.0789 41.7061Z"
+    fill="#66AF82" />
+  <path
+    d="M60.5098 44.1193L56.0918 41.5625C54.9872 40.908 54.0873 39.6603 53.6168 37.4922L58.0349 40.0489C58.4849 42.2171 59.3849 43.4648 60.5098 44.1193Z"
+    fill="#66AF82" />
+  <path
+    d="M36.5365 18.9814L65.3358 2.35223C66.0517 1.94315 66.6858 1.90224 67.1562 2.16814L71.5743 4.7249C71.1039 4.459 70.4698 4.4999 69.7539 4.90899L40.9546 21.5381C39.5433 22.3563 38.4183 24.3199 38.4183 25.9357L38.4796 48.3943C38.4796 49.192 38.766 49.7647 39.216 50.0306L34.7979 47.4739C34.3479 47.208 34.0616 46.6352 34.0616 45.8375L34.0002 23.379C33.9798 21.7631 35.1252 19.7791 36.5365 18.9814Z"
+    fill="#66AF82" />
+  <mask id="path-10-inside-1_14421_58839" fill="white">
+    <path
+      d="M40.9507 21.5385C39.5394 22.3567 38.4144 24.3203 38.4144 25.9361L38.4758 48.3947C38.4758 50.0106 39.6212 50.6651 41.0325 49.8469L58.0298 40.029C59.5025 46.922 65.3319 44.5902 68.2978 42.8721C69.3818 42.2585 70.0363 41.7471 70.0773 41.7062C67.0705 41.4403 66.5183 37.9836 66.6001 35.0791L69.8114 33.2178C71.2227 32.3996 72.3477 30.436 72.3477 28.8202L72.2863 6.36162C72.2863 4.74575 71.1409 4.09122 69.7295 4.90938L40.9507 21.5385Z" />
+  </mask>
+  <path
+    d="M40.9507 21.5385C39.5394 22.3567 38.4144 24.3203 38.4144 25.9361L38.4758 48.3947C38.4758 50.0106 39.6212 50.6651 41.0325 49.8469L58.0298 40.029C59.5025 46.922 65.3319 44.5902 68.2978 42.8721C69.3818 42.2585 70.0363 41.7471 70.0773 41.7062C67.0705 41.4403 66.5183 37.9836 66.6001 35.0791L69.8114 33.2178C71.2227 32.3996 72.3477 30.436 72.3477 28.8202L72.2863 6.36162C72.2863 4.74575 71.1409 4.09122 69.7295 4.90938L40.9507 21.5385Z"
+    fill="white" />
+  <path
+    d="M40.9507 21.5385L40.6999 21.1059L40.7005 21.1056L40.9507 21.5385ZM38.4144 25.9361L37.9144 25.9375V25.9361H38.4144ZM38.4758 48.3947L38.9758 48.3933V48.3947H38.4758ZM41.0325 49.8469L40.7817 49.4143L40.7824 49.414L41.0325 49.8469ZM58.0298 40.029L57.7797 39.596L58.3751 39.2521L58.5188 39.9245L58.0298 40.029ZM68.2978 42.8721L68.0471 42.4394L68.0515 42.437L68.2978 42.8721ZM70.0773 41.7062L70.1213 41.2082L71.1881 41.3025L70.4308 42.0598L70.0773 41.7062ZM66.6001 35.0791L66.1003 35.065L66.1081 34.7863L66.3493 34.6465L66.6001 35.0791ZM69.8114 33.2178L70.0621 33.6504L70.0621 33.6504L69.8114 33.2178ZM72.3477 28.8202L72.8477 28.8188V28.8202H72.3477ZM72.2863 6.36162L71.7863 6.36299V6.36162H72.2863ZM69.7295 4.90938L69.9803 5.34195L69.9797 5.3423L69.7295 4.90938ZM41.2015 21.9711C40.5891 22.3261 40.0118 22.9489 39.5866 23.6876C39.1614 24.4265 38.9144 25.2359 38.9144 25.9361H37.9144C37.9144 25.0205 38.2299 24.0402 38.7199 23.1888C39.2101 22.3372 39.901 21.5691 40.6999 21.1059L41.2015 21.9711ZM38.9144 25.9348L38.9757 48.3933L37.9758 48.396L37.9144 25.9375L38.9144 25.9348ZM38.9758 48.3947C38.9758 49.0957 39.22 49.4555 39.4722 49.599C39.7258 49.7433 40.1664 49.771 40.7817 49.4143L41.2833 50.2795C40.4873 50.741 39.6496 50.8505 38.9776 50.4681C38.3042 50.0849 37.9758 49.3095 37.9758 48.3947H38.9758ZM40.7824 49.414L57.7797 39.596L58.2799 40.4619L41.2826 50.2799L40.7824 49.414ZM58.5188 39.9245C58.8722 41.5789 59.474 42.6187 60.1739 43.2521C60.8689 43.881 61.7068 44.151 62.6197 44.18C64.483 44.2392 66.5774 43.2908 68.0471 42.4394L68.5484 43.3047C67.0522 44.1715 64.749 45.2481 62.588 45.1795C61.4887 45.1445 60.4078 44.8124 59.5029 43.9936C58.6029 43.1791 57.9238 41.9256 57.5409 40.1334L58.5188 39.9245ZM68.0515 42.437C68.5794 42.1381 69.0016 41.8648 69.295 41.6627C69.4417 41.5616 69.5555 41.4787 69.6337 41.4199C69.7281 41.3488 69.7439 41.3325 69.7237 41.3527L70.4308 42.0598C70.3902 42.1004 70.3088 42.1633 70.2351 42.2188C70.1452 42.2865 70.0199 42.3775 69.8624 42.4861C69.5473 42.7033 69.1001 42.9925 68.5441 43.3072L68.0515 42.437ZM70.0332 42.2043C68.2902 42.0501 67.2681 40.949 66.7161 39.5677C66.1745 38.2122 66.0587 36.5405 66.1003 35.065L67.0999 35.0932C67.0596 36.5222 67.179 38.0311 67.6448 39.1966C68.1001 40.3362 68.8576 41.0964 70.1213 41.2082L70.0332 42.2043ZM66.3493 34.6465L69.5606 32.7852L70.0621 33.6504L66.8508 35.5117L66.3493 34.6465ZM69.5606 32.7852C70.173 32.4302 70.7502 31.8074 71.1754 31.0687C71.6007 30.3298 71.8477 29.5204 71.8477 28.8202H72.8477C72.8477 29.7358 72.5322 30.7161 72.0421 31.5675C71.552 32.4191 70.8611 33.1872 70.0621 33.6504L69.5606 32.7852ZM71.8477 28.8215L71.7863 6.36299L72.7863 6.36025L72.8477 28.8188L71.8477 28.8215ZM71.7863 6.36162C71.7863 5.66058 71.542 5.30078 71.2899 5.1573C71.0363 5.013 70.5956 4.98525 69.9803 5.34195L69.4788 4.47681C70.2748 4.01535 71.1125 3.90578 71.7845 4.28817C72.4579 4.67138 72.7863 5.44679 72.7863 6.36162H71.7863ZM69.9797 5.3423L41.2009 21.9714L40.7005 21.1056L69.4794 4.47646L69.9797 5.3423Z"
+    fill="#66AF82" mask="url(#path-10-inside-1_14421_58839)" />
+  <path
+    d="M62.8932 15.2752C63.4291 14.9795 63.9687 14.9074 64.3801 15.131C65.2028 15.5781 65.2066 17.0386 64.3914 18.3909L55.7754 32.6461C55.2508 33.5152 54.5488 34.222 53.8054 34.6331C53.0581 35.0442 52.3599 35.1127 51.8278 34.8242L48.6199 33.0788C47.7972 32.6317 47.7934 31.1712 48.6086 29.8189C49.0162 29.1409 49.5558 28.6216 50.0917 28.3223C50.6277 28.0266 51.1673 27.9545 51.5787 28.1781L53.7865 29.3825L61.4062 16.7718C61.8176 16.0902 62.3535 15.5709 62.8932 15.2752Z"
+    fill="#66AF82" />
+  <circle cx="14.177" cy="14.177" r="14.177" transform="matrix(0.866025 -0.5 0.866025 0.5 69.8398 131.177)"
+    fill="#A0C7F0" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L78.2199 136.604C77.934 137.671 76.8373 138.304 75.7704 138.018C74.7034 137.732 74.0703 136.636 74.3562 135.569L85.2266 95Z"
+    fill="#D6AD92" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L83.6772 116.237C83.3913 117.304 82.2947 117.937 81.2277 117.651C80.1608 117.365 79.5276 116.269 79.8135 115.202L85.2266 95Z"
+    fill="#AE907B" />
+  <path
+    d="M85.2266 95L89.0903 96.0353L85.1412 110.774C84.8553 111.84 83.7586 112.474 82.6917 112.188C81.6247 111.902 80.9916 110.805 81.2774 109.738L85.2266 95Z"
+    fill="#88674F" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L93.9042 119.107C93.8684 120.211 92.9445 121.077 91.8405 121.042C90.7365 121.006 89.8705 120.082 89.9063 118.978L91.2656 77Z"
+    fill="#AE907B" />
+  <path
+    d="M91.2656 77L95.2635 77.1295L94.1167 112.543C94.081 113.647 93.157 114.513 92.053 114.478C90.949 114.442 90.0831 113.518 90.1188 112.414L91.2656 77Z"
+    fill="#88674F" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L115.574 133.569C115.86 134.636 115.227 135.732 114.16 136.018C113.093 136.304 111.996 135.671 111.71 134.604L100.84 94.0352Z"
+    fill="#D6AD92" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L110.634 115.132C110.92 116.199 110.286 117.295 109.22 117.581C108.153 117.867 107.056 117.234 106.77 116.167L100.84 94.0352Z"
+    fill="#AE907B" />
+  <path
+    d="M100.84 94.0352L104.704 92.9999L109.089 109.367C109.375 110.434 108.742 111.531 107.675 111.817C106.608 112.103 105.511 111.469 105.225 110.402L100.84 94.0352Z"
+    fill="#88674F" />
+  <ellipse cx="20.1148" cy="20.3939" rx="20.1148" ry="20.3939" transform="matrix(0.866025 -0.5 0.866025 0.5 58 95.1143)"
+    fill="#AE907B" />
+  <circle cx="18.7543" cy="18.7543" r="18.7543" transform="matrix(0.866025 -0.5 0.866025 0.5 60.8398 92.7539)"
+    fill="#D6AD92" />
+  <circle cx="12.4455" cy="12.4455" r="12.4455" transform="matrix(0.866025 -0.5 0.866025 0.5 71.767 92.7539)"
+    fill="#E6BC9F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 125.39 134.487)"
+    fill="#DA3635" />
+  <path
+    d="M120.211 133.596C120.479 130.246 128.116 129.138 131.095 132.017L140.554 141.158C141.877 142.437 141.526 144.072 139.701 145.125C137.417 146.444 133.684 146.386 131.527 144.998L124.26 140.325C121.464 138.527 120.005 136.166 120.198 133.752L120.211 133.596Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M123.654 133.554L134.281 141.766C134.771 142.145 135.058 142.73 135.058 143.349V143.498C135.058 144.782 133.866 145.733 132.615 145.448L132.156 145.344C131.935 145.24 131.725 145.124 131.528 144.998L124.262 140.324C121.466 138.526 120.007 136.165 120.2 133.752L120.213 133.595C120.306 132.422 121.304 131.524 122.689 130.976C122.845 131.22 122.936 131.511 122.936 131.823V132.092C122.936 132.665 123.201 133.205 123.654 133.554Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M140.39 141.009L140.544 141.158C141.868 142.437 141.517 144.072 139.692 145.126C137.408 146.444 133.675 146.386 131.518 144.998L130.218 144.163C130.66 143.429 131.456 142.973 132.322 142.973H133.835H137.316C138.177 142.973 138.988 142.568 139.505 141.879L139.715 141.598C139.9 141.352 140.131 141.153 140.39 141.009Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M135.837 139.757C134.968 140.364 134.146 141.097 133.661 141.583C133.424 141.819 133.04 141.819 132.804 141.583C132.567 141.346 132.567 140.962 132.804 140.726C133.328 140.201 134.204 139.419 135.143 138.763C135.613 138.435 136.11 138.13 136.597 137.905C137.075 137.684 137.59 137.518 138.081 137.518C138.416 137.518 138.687 137.789 138.687 138.124C138.687 138.458 138.416 138.73 138.081 138.73C137.844 138.73 137.516 138.816 137.106 139.005C136.705 139.191 136.271 139.454 135.837 139.757Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M134.384 134.822C134.533 135.122 134.412 135.486 134.113 135.636C134.043 135.671 133.895 135.806 133.709 136.147C133.535 136.466 133.37 136.884 133.222 137.352C132.927 138.287 132.721 139.344 132.623 140.028C132.576 140.359 132.269 140.59 131.937 140.542C131.606 140.495 131.376 140.188 131.423 139.857C131.527 139.127 131.746 138.002 132.067 136.987C132.227 136.48 132.418 135.981 132.645 135.567C132.859 135.174 133.156 134.759 133.57 134.551C133.87 134.402 134.234 134.523 134.384 134.822Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.977 135.419C133.431 135.623 134.922 136.027 135.857 136.339C136.175 136.445 136.347 136.788 136.241 137.105C136.135 137.423 135.792 137.595 135.474 137.489C134.591 137.194 133.173 136.811 131.809 136.62C131.127 136.525 130.476 136.48 129.923 136.513C129.355 136.547 128.96 136.658 128.729 136.812C128.45 136.998 128.074 136.922 127.888 136.644C127.703 136.365 127.778 135.989 128.056 135.803C128.552 135.473 129.203 135.341 129.851 135.303C130.514 135.264 131.25 135.318 131.977 135.419Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M129.737 134.107C128.867 134.593 128.046 135.179 127.562 135.566C127.301 135.775 126.919 135.733 126.71 135.472C126.501 135.21 126.543 134.829 126.805 134.62C127.331 134.199 128.208 133.573 129.146 133.049C130.054 132.541 131.134 132.062 132.032 132.062C132.367 132.062 132.638 132.334 132.638 132.669C132.638 133.003 132.367 133.275 132.032 133.275C131.476 133.275 130.637 133.604 129.737 134.107Z"
+    fill="#769FCB" />
+  <path
+    d="M124.341 132.667C125.492 133.331 127.357 133.331 128.508 132.667C129.085 132.333 129.373 131.896 129.37 131.459L129.37 125.398L123.479 125.398L123.479 131.459C123.476 131.896 123.764 132.333 124.341 132.667Z"
+    fill="#FFCCB7" />
+  <path
+    d="M124.341 130.123C125.492 130.787 127.357 130.787 128.508 130.123C129.085 129.79 129.373 129.352 129.37 128.915L129.37 122.854L123.479 122.854L123.479 128.915C123.476 129.352 123.764 129.79 124.341 130.123Z"
+    fill="#EF937F" />
+  <rect width="20.1141" height="8.43723" rx="4.21861" transform="matrix(0.866025 0.5 -0.866025 0.5 102.277 143.334)"
+    fill="#DA3635" />
+  <path
+    d="M97.0977 142.442C97.3657 139.093 105.003 137.985 107.982 140.863L117.44 150.004C118.764 151.283 118.412 152.918 116.588 153.972C114.304 155.29 110.571 155.232 108.413 153.845L101.147 149.171C98.351 147.373 96.8921 145.013 97.0852 142.599L97.0977 142.442Z"
+    fill="#A0C7F0" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M100.59 142.583L111.155 150.613C111.653 150.992 111.945 151.581 111.945 152.206V152.345C111.945 153.628 110.753 154.579 109.501 154.295L109.042 154.191C108.822 154.086 108.612 153.971 108.415 153.844L101.148 149.171C98.3525 147.373 96.8936 145.012 97.0867 142.598L97.0992 142.442C97.1931 141.269 98.1909 140.371 99.5759 139.822C99.7321 140.067 99.8226 140.358 99.8226 140.67V141.036C99.8226 141.643 100.107 142.216 100.59 142.583Z"
+    fill="white" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M117.277 149.855L117.431 150.005C118.755 151.284 118.403 152.919 116.579 153.972C114.295 155.291 110.562 155.233 108.404 153.845L107.105 153.009C107.546 152.275 108.343 151.82 109.209 151.82H110.722H114.203C115.064 151.82 115.875 151.415 116.391 150.726L116.602 150.445C116.786 150.199 117.017 150 117.277 149.855Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.724 148.604C111.854 149.211 111.033 149.944 110.547 150.429C110.311 150.666 109.927 150.666 109.69 150.429C109.454 150.193 109.454 149.809 109.69 149.572C110.215 149.048 111.091 148.266 112.03 147.61C112.499 147.282 112.997 146.977 113.484 146.752C113.962 146.531 114.477 146.364 114.968 146.364C115.302 146.364 115.574 146.636 115.574 146.97C115.574 147.305 115.302 147.576 114.968 147.576C114.731 147.576 114.402 147.663 113.993 147.852C113.592 148.037 113.158 148.3 112.724 148.604Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.27 143.669C111.42 143.969 111.299 144.333 110.999 144.482C110.929 144.517 110.781 144.653 110.595 144.994C110.421 145.313 110.257 145.73 110.109 146.199C109.814 147.134 109.608 148.191 109.51 148.875C109.463 149.206 109.156 149.436 108.824 149.389C108.493 149.342 108.263 149.035 108.31 148.703C108.414 147.973 108.633 146.848 108.953 145.833C109.113 145.327 109.305 144.828 109.531 144.413C109.746 144.02 110.042 143.606 110.457 143.398C110.757 143.248 111.121 143.37 111.27 143.669Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M108.863 144.266C110.318 144.469 111.809 144.874 112.744 145.185C113.062 145.291 113.233 145.634 113.128 145.952C113.022 146.27 112.678 146.441 112.361 146.335C111.478 146.041 110.06 145.657 108.696 145.467C108.013 145.371 107.363 145.327 106.81 145.36C106.242 145.393 105.847 145.504 105.615 145.659C105.337 145.844 104.961 145.769 104.775 145.49C104.589 145.212 104.665 144.836 104.943 144.65C105.439 144.319 106.09 144.188 106.738 144.15C107.4 144.11 108.137 144.164 108.863 144.266Z"
+    fill="#769FCB" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M106.624 142.954C105.753 143.44 104.933 144.026 104.449 144.413C104.187 144.622 103.806 144.58 103.597 144.318C103.388 144.057 103.43 143.676 103.692 143.466C104.218 143.045 105.094 142.419 106.032 141.895C106.941 141.388 108.021 140.909 108.919 140.909C109.254 140.909 109.525 141.181 109.525 141.515C109.525 141.85 109.254 142.121 108.919 142.121C108.362 142.121 107.524 142.451 106.624 142.954Z"
+    fill="#769FCB" />
+  <path
+    d="M101.228 141.514C102.379 142.178 104.244 142.178 105.394 141.514C105.972 141.18 106.26 140.743 106.257 140.306L106.257 134.244L100.365 134.244L100.365 140.306C100.363 140.743 100.651 141.18 101.228 141.514Z"
+    fill="#FFCCB7" />
+  <path
+    d="M101.228 138.97C102.379 139.634 104.244 139.634 105.394 138.97C105.972 138.636 106.26 138.199 106.257 137.762L106.257 131.7L100.365 131.7L100.365 137.762C100.363 138.199 100.651 138.636 101.228 138.97Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.386 66C115.15 68.1745 113.593 70.3102 110.715 71.972C104.446 75.5916 94.281 75.5916 88.0115 71.972C85.6054 70.5828 84.1227 68.8623 83.5634 67.0649C83.4455 67.5414 83.391 68.0222 83.4 68.5027L83.3792 68.5001L82.3384 86.0757C82.0155 91.5292 84.9155 96.884 90.5619 101.26L99.9316 108.522C101.162 109.475 101.757 110.653 101.607 111.839L98.7225 134.642C98.679 135.303 99.0942 135.972 99.9681 136.476C101.633 137.438 104.333 137.438 105.998 136.476C106.66 136.094 106.802 135.73 107.008 135.202C107.073 135.034 107.146 134.849 107.243 134.642L118.207 106.897C119.586 103.407 118.838 99.7476 116.087 96.5383L112.081 91.8636L124.126 99.3197C125.847 100.385 126.668 101.835 126.369 103.282L121.589 126.412C121.545 127.073 121.96 127.742 122.834 128.247C124.499 129.208 127.199 129.208 128.864 128.247C129.738 127.742 130.153 127.073 130.109 126.412L140.109 100.746C141.69 96.6882 140.518 92.4345 136.833 88.8601L115.921 68.5715C115.948 67.7072 115.77 66.8412 115.386 66Z"
+    fill="#4C4D53" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M131.266 123.513C127.042 128.888 124.18 125.343 126.919 105.507C127.435 101.769 126.133 97.9764 123.319 95.4637L114.545 87.6292C114.149 87.276 113.556 87.3072 113.13 87.6228C112.36 88.1922 111.594 88.3919 110.35 88.462C109.447 88.5128 109.005 89.6041 109.661 90.2258L115.058 95.3379L119.003 98.1776C120.194 99.0348 120.857 100.097 120.887 101.195L121.161 111.022L121.34 111.5V117.464L121.588 126.412C121.545 127.073 121.96 127.743 122.834 128.247C124.499 129.208 127.198 129.208 128.863 128.247C129.737 127.743 130.153 127.073 130.109 126.412L131.266 123.513ZM107.795 130.88C104.6 130.986 102.43 123.263 104.387 107.084C104.877 103.029 103.303 98.9536 100.049 96.4834L82.4942 83.1543L82.3234 85.9837C82.0092 91.1871 84.6293 96.3087 89.7896 100.579L98.3496 107.661C99.4006 108.531 99.9401 109.573 99.8886 110.633L98.7223 134.642C98.6788 135.303 99.094 135.972 99.9679 136.477C101.633 137.438 104.332 137.438 105.997 136.477C106.871 135.972 107.287 135.303 107.243 134.642L107.795 130.88Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M95.4665 27.3311C85.137 29.5765 79.2296 38.3336 79.0057 47.3313H78.8398V64.5642C78.8398 68.5205 80.4809 72.0934 83.1194 74.6396L80.9907 77.9139L96.0867 87.7016C98.9098 89.532 102.638 87.5057 102.638 84.1412C104.959 82.3424 104.812 78.7914 102.35 77.1909L102.036 76.9865L113.341 70.4437C114.208 69.9416 114.889 69.2013 115.318 68.3325L119.04 70.7521C121.279 72.2078 124.274 71.5727 125.73 69.3336C126.862 67.592 126.369 65.2623 124.627 64.13L121.309 61.9729V43.1933L121.39 41.653C121.856 32.7554 114.509 25.4149 105.612 25.8889L100.961 26.1367L95.4665 27.3311Z"
+    fill="#FF9C9B" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.438 75.3225L102.116 73.8127C99.5937 72.1729 97.9437 69.4847 97.6234 66.4934L95.5682 47.2997C95.5682 47.2992 95.5678 47.2989 95.5674 47.2988C95.5669 47.2988 95.5664 47.2992 95.5664 47.2997V67.3556C95.5664 70.7401 97.2783 73.8949 100.116 75.7396L102.347 77.19C104.633 78.6765 104.923 81.8456 103.093 83.7307C103.084 83.7402 103.075 83.75 103.066 83.7598C104.93 81.8788 104.649 78.6825 102.35 77.1877L101.951 76.9282L104.438 75.3225ZM102.602 84.7063C102.596 84.7358 102.591 84.7653 102.587 84.7947C102.582 84.8244 102.578 84.8543 102.575 84.8843C102.585 84.8255 102.594 84.7662 102.602 84.7063Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M105.232 16.6523L95.8566 18.9655L96.2634 26.7943L96.0559 27.8022L94.9165 33.4102C94.4327 35.7913 95.6796 38.1129 97.7792 39.0899L97.9823 40.2209C98.5337 43.2923 101.471 45.3352 104.542 44.7837C107.613 44.2323 109.656 41.2954 109.105 38.224L106.765 25.1884L106.962 24.0477L106.538 23.9248L105.232 16.6523Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M111.657 5.34766L94.5839 8.41289L96.5731 19.4926L92.5352 19.6627L95.9965 25.4072L95.4724 28.4331C94.9812 31.2695 96.8823 33.9671 99.7187 34.4583C101.101 34.6977 102.45 34.369 103.527 33.6407C104.911 34.1391 106.44 34.2918 107.992 34.0132C112.707 33.1668 115.842 28.6586 114.996 23.9439L111.657 5.34766Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M112.234 31.9478C111.16 32.7029 109.908 33.2416 108.531 33.4888C103.477 34.3963 98.6435 31.0344 97.736 25.9798L96.7254 20.3506C96.637 19.8584 96.1987 19.5072 95.6991 19.5282L94.3787 19.5839C93.887 19.6046 93.4835 19.9799 93.4273 20.4688L93.4011 20.6972C93.3758 20.9166 93.424 21.1382 93.538 21.3275L95.2216 24.1217C95.2824 24.2225 95.3605 24.3117 95.4524 24.3852L96.0177 24.8373C96.1824 24.9689 96.425 24.9273 96.5364 24.7483C96.7066 24.4747 97.1246 24.5548 97.1815 24.872L97.9228 29.0009C98.3084 31.1487 99.4539 32.9688 101.033 34.2341C101.236 34.3972 101.502 34.4645 101.756 34.4069C102.226 34.3006 102.675 34.13 103.092 33.9034C103.373 33.751 103.703 33.7072 104.009 33.7976C105.262 34.1674 106.618 34.2587 107.991 34.0121C109.63 33.718 111.077 32.9815 112.234 31.9478Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M115.014 20.4058H113.153C110.869 20.4058 108.878 18.8513 108.325 16.6355L108.156 15.9608C107.627 13.8454 105.572 12.4823 103.418 12.8175L102.632 12.9397C100.605 13.2551 99.2853 15.2437 99.783 17.2348C100.022 18.1887 99.8465 19.199 99.3011 20.0172L97.1916 23.1814C96.9634 23.5237 96.5447 23.6855 96.1456 23.5858L94.5041 23.1754C92.4758 20.9266 91.2383 17.9309 91.2383 14.6419C91.2383 7.65997 96.815 2 103.694 2C109.467 2 114.323 5.98577 115.735 11.3938C117.3 12.1715 118.382 13.8333 118.382 15.7577C118.382 17.9656 116.958 19.8278 115.014 20.4058Z"
+    fill="#333333" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.17 71.507L123.521 67.5581L121.509 67.4362C119.68 67.3254 118.2 65.9069 118.012 64.0841C117.993 63.9006 118.069 63.7203 118.215 63.607L118.549 63.3468C119.004 62.9929 118.891 62.277 118.35 62.0801C118.06 61.9748 117.867 61.6996 117.867 61.3915V41.4184C117.867 39.8098 116.563 38.5059 114.955 38.5059C114.832 38.5059 114.736 38.6112 114.748 38.7331L115.621 48.1399C115.765 49.6915 115.544 51.2553 114.977 52.7065L114.864 52.9948C114.773 53.2269 114.727 53.474 114.727 53.7233V57.6542C114.727 57.8827 114.766 58.1095 114.842 58.3248L115.373 59.8174C116.002 61.5835 116.063 63.5018 115.549 65.3045L115.094 66.899C114.964 67.3527 115.002 67.8258 115.181 68.241L119.041 70.7505C120.005 71.3771 121.109 71.6163 122.17 71.507Z"
+    fill="#DA3635" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.352 85.7502L102.344 85.618L88.6759 76.3239C87.8045 75.7313 87.9439 74.407 88.9195 74.0088C90.1944 73.4885 89.9219 71.6088 88.5518 71.4718L85.7012 71.1867C84.6538 71.082 83.8668 70.1832 83.9013 69.1311L84.799 41.7512C84.8249 40.9597 84.4942 40.1983 83.8979 39.6771C82.2844 38.2669 79.7516 39.2654 79.5346 41.3974L78.8672 47.9551V73.5634C78.8672 75.3118 79.7646 76.8506 81.124 77.7443L81.0142 77.9131L96.1102 87.7008C98.4459 89.2152 101.402 88.0896 102.352 85.7502Z"
+    fill="#DA3635" />
+  <ellipse cx="96.4787" cy="21.4498" rx="1.92787" ry="3.08459" fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M98.027 21.7513C98.0457 21.611 98.0556 21.4653 98.0556 21.3159C98.0556 20.1884 97.4931 19.2744 96.7993 19.2744C96.1054 19.2744 95.543 20.1884 95.543 21.3159C95.543 22.0656 95.7917 22.721 96.1623 23.0759C95.971 22.7728 95.8552 22.3772 95.8552 21.9443C95.8552 20.9903 96.4177 20.2169 97.1115 20.2169C97.3609 20.2169 97.3982 20.5724 97.4377 20.9491C97.464 21.1997 97.4913 21.4596 97.5827 21.6302C97.6541 21.7637 97.8295 21.7578 97.9964 21.7523C98.0066 21.7519 98.0168 21.7516 98.027 21.7513Z"
+    fill="#EF937F" />
+  <ellipse cx="105.301" cy="23.4348" rx="0.765209" ry="1.33954" transform="rotate(2.6285 105.301 23.4348)"
+    fill="#333333" />
+  <ellipse cx="112.703" cy="22.2175" rx="0.765209" ry="1.33912" transform="rotate(2.6285 112.703 22.2175)"
+    fill="#333333" />
+  <path d="M103.805 22.9919C104.57 22.5041 105.553 21.9846 106.889 22.3358" stroke="#333333" stroke-linecap="round" />
+  <path d="M112.285 20.6777C112.574 20.6777 113.106 20.6777 113.827 20.6777" stroke="#333333" stroke-linecap="round" />
+  <ellipse cx="110.34" cy="27" rx="1.5" ry="1" fill="#EF937F" />
+  <path d="M108.43 29.5752C108.858 29.9202 109.921 30.3204 110.743 29.1611" stroke="#333333" stroke-linecap="round" />
+  <path
+    d="M110.812 87.8708C109.744 87.2151 109.15 86.3491 109.15 85.4492L109.15 84.5872L129.953 73.2446C132.272 71.9798 135.885 71.9552 138.256 73.1881L150.851 79.7383L150.851 80.8977C150.851 81.813 150.236 82.6926 149.136 83.3515L128.685 95.5989C127.227 96.4719 124.801 96.4631 123.363 95.5796L110.812 87.8708Z"
+    fill="#989898" />
+  <rect width="30.8472" height="21.5482" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 107.345 84.5137)"
+    fill="#C5C5C5" />
+  <rect width="25.3527" height="19.5019" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 112.185 82.7432)"
+    fill="#444444" />
+  <rect width="1.94964" height="3.61134" rx="0.974821" transform="matrix(0.866025 -0.5 0.866025 0.5 115.936 88.1484)"
+    fill="#818181" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M114.784 81.242C113.349 82.0704 113.349 83.4136 114.784 84.242L115.455 84.6293L135.621 88.7136L141.033 85.5891L117.971 79.4018L114.784 81.242ZM122.658 76.6959L144.185 83.7691L146.341 82.5244L126.448 74.5078L122.658 76.6959ZM128.752 73.1773L148.139 81.4861L148.433 81.3166C148.65 81.191 148.835 81.0536 148.987 80.908L130.967 71.8984L128.752 73.1773Z"
+    fill="#656565" />
+  <path
+    d="M122.381 67.6153C120.93 69.5596 120.723 71.86 121.919 72.7533L123.623 74.4953L128.549 69.1283L127.176 65.7122C125.98 64.8189 123.833 65.6709 122.381 67.6153Z"
+    fill="#A0C7F1" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.405 72.5502L122.331 71.8355C122.223 70.7932 122.57 69.755 123.283 68.9872C124.094 68.1137 125.282 67.6932 126.462 67.8618L127.092 67.9517C127.974 68.0777 128.756 68.5854 129.23 69.3397L130.432 71.2522C131.623 73.1474 131.089 75.6465 129.226 76.8882L129.06 76.9756L129.801 79.9401C129.899 80.3319 130.251 80.6067 130.655 80.6067C130.789 80.6067 130.897 80.7153 130.897 80.8492V81.3347C130.897 81.6514 130.641 81.908 130.324 81.908C129.536 81.908 128.816 81.4628 128.463 80.758L127.09 78.0122L126.833 78.1477C126.16 78.502 125.333 78.3638 124.811 77.8098C123.454 76.3679 122.609 74.5199 122.405 72.5502Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M122.331 71.8362L122.405 72.5509C122.609 74.5206 123.455 76.3686 124.812 77.8106C125.333 78.3645 126.16 78.5027 126.833 78.1484L127.091 78.0129L127.755 79.3415L127.764 79.3356L126.212 76.2327C125.891 75.5904 125.408 75.043 124.81 74.6447C123.908 74.0434 123.367 73.031 123.367 71.947V68.9014C123.339 68.9297 123.311 68.9585 123.284 68.9879C122.571 69.7557 122.223 70.7939 122.331 71.8362ZM130.017 76.2034L127.922 73.3684L129.115 76.9476L129.226 76.8889C129.524 76.6901 129.789 76.4591 130.017 76.2034Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M104.046 90.1727L102.077 88.0437L103.936 82.4664L106.167 81.165L108.584 82.2805C109.947 82.5284 112.86 83.2472 113.603 84.1396C114.193 84.8472 115.83 84.8815 117.043 84.9069C117.743 84.9215 118.301 84.9332 118.437 85.0692C118.809 85.441 118.437 86.3705 117.136 86.5564C116.529 86.643 115.802 86.4876 115.085 86.3344C114.264 86.1587 113.455 85.986 112.86 86.1846C111.744 86.5564 111.93 87.8578 112.86 88.4155C113.789 88.9733 116.764 90.8324 117.321 91.3901C117.879 91.9478 117.693 92.6915 117.321 93.0633C117.056 93.3288 115.559 92.8361 113.506 91.5852C111.358 92.723 108.734 92.7581 106.512 91.5615L104.123 90.2751C104.097 90.2409 104.071 90.2068 104.046 90.1727L104.046 90.1727Z"
+    fill="#FFD2C4" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.078 88.044L104.047 90.173L104.047 90.173C104.072 90.2071 104.098 90.2413 104.124 90.2754L106.513 91.5619C108.73 92.7559 111.348 92.7234 113.493 91.5927L112.308 91.0003L109.923 90.6333C107.312 90.2318 105.01 88.704 103.626 86.4549L102.965 85.3809L102.078 88.044ZM114.264 92.0277L114.308 92.0003L113.64 91.666C113.854 91.7951 114.063 91.9156 114.264 92.0277Z"
+    fill="#EF937F" />
+  <path fill-rule="evenodd" clip-rule="evenodd"
+    d="M102.485 89.4165C100.926 88.8985 100.345 86.4248 101.187 83.8915C102.028 81.3581 103.975 79.7243 105.534 80.2423L108.028 81.9071L108.01 81.9567C107.89 81.8815 107.762 81.8205 107.625 81.7752C106.137 81.2808 104.277 82.8472 103.471 85.274C102.763 87.4052 103.103 89.4912 104.204 90.3026L102.485 89.4165ZM104.717 90.5674L104.868 90.6449L104.88 90.6117C104.825 90.5995 104.771 90.5848 104.717 90.5674Z"
+    fill="#A0C7F1" />
+  <path
+    d="M109.973 22.2207V22.2207C110.105 23.1905 110.586 24.079 111.325 24.7207L111.869 25.1934C112.489 25.7319 112.474 26.6994 111.837 27.2177L111.344 27.6187"
+    stroke="#333333" stroke-linecap="round" />
+  <defs>
+    <linearGradient id="paint0_linear_14421_58839" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/form/sprite.svg b/src/assets/form/sprite.svg
index d0564bf93..de4831aa5 100644
--- a/src/assets/form/sprite.svg
+++ b/src/assets/form/sprite.svg
@@ -1024,6 +1024,12 @@
       fill="#FF7100" />
   </symbol>
 
+  <svg id="eyeV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M10.0002 3.75C5.8335 3.75 2.27516 6.34167 0.833496 10C2.27516 13.6583 5.8335 16.25 10.0002 16.25C14.1668 16.25 17.7252 13.6583 19.1668 10C17.7252 6.34167 14.1668 3.75 10.0002 3.75ZM10.0002 14.1667C7.70016 14.1667 5.8335 12.3 5.8335 10C5.8335 7.7 7.70016 5.83333 10.0002 5.83333C12.3002 5.83333 14.1668 7.7 14.1668 10C14.1668 12.3 12.3002 14.1667 10.0002 14.1667ZM10.0002 7.5C8.61683 7.5 7.50016 8.61667 7.50016 10C7.50016 11.3833 8.61683 12.5 10.0002 12.5C11.3835 12.5 12.5002 11.3833 12.5002 10C12.5002 8.61667 11.3835 7.5 10.0002 7.5Z"
+      fill="#333333" />
+  </svg>
+
   <symbol id="aidantsConnect" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
     <rect width="40" height="40" rx="20" fill="#FFE5E4" />
     <path
@@ -1296,4 +1302,5 @@
       d="M5.68104 29.103C5.23919 29.103 4.89359 28.7312 4.89359 28.2893V12.2822C4.89359 11.5822 5.37043 11.0923 6.04852 11.0923C6.80972 11.0923 7.38281 11.6522 7.38281 12.3959V16.2369H8.14402V12.3916C8.14402 11.9235 8.22276 11.7047 8.48087 11.4554C8.73461 11.2148 9.07146 11.0835 9.42581 11.0835C10.1301 11.0835 10.6639 11.6479 10.6639 12.3916V16.2369H11.4163V12.3259C11.4163 11.2629 10.4889 10.3311 9.43456 10.3311C8.91835 10.3311 8.37588 10.5585 7.9909 10.9348C7.89028 11.031 7.82029 11.1141 7.75029 11.2235C7.69342 11.1448 7.63655 11.0791 7.5578 10.996L7.54905 10.9873C7.36094 10.8079 7.15095 10.6548 6.94096 10.5454L6.93222 10.541C6.66973 10.4229 6.37662 10.3617 6.07039 10.3617C4.97233 10.3617 4.14551 11.241 4.14551 12.4091V21.7272V28.2981C4.14551 29.1468 4.83672 29.8424 5.68979 29.8424H11.4163V29.1118L5.68104 29.103Z"
       fill="#A50F0E" />
   </symbol>
+
 </svg>
\ No newline at end of file
diff --git a/src/assets/form/structureCreated.svg b/src/assets/form/structureCreated.svg
index b32856ddd..5d42ddda6 100644
--- a/src/assets/form/structureCreated.svg
+++ b/src/assets/form/structureCreated.svg
@@ -1,197 +1,138 @@
-<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_5987_73910)">
-<path d="M33.9991 113.833L12.9823 101.799C6.72068 98.2138 6.6998 92.3728 12.9358 88.7724L40.3438 72.9484C46.5616 69.3586 56.6426 69.3586 62.8604 72.9484L178.985 139.993" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M109.406 131.833L27.9999 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.209 161.011L164.415 175.903C158.197 179.493 148.116 179.493 141.898 175.903L115.293 160.543" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M139.719 144.533C141.097 145.325 141.103 146.625 139.736 147.417L95.7307 172.992C94.3585 173.79 92.1273 173.785 90.7495 172.992L44.3736 146.218C42.9958 145.426 42.9847 144.132 44.3569 143.334L88.3621 117.759C89.7287 116.967 91.9655 116.967 93.3433 117.759L139.719 144.533Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M130.488 144.695C131.598 145.336 131.603 146.379 130.499 147.021L95.017 167.643C93.9125 168.284 92.1108 168.284 91.0008 167.643L53.6055 146.05C52.4955 145.409 52.4899 144.366 53.5944 143.724L89.0764 123.102C90.1808 122.461 91.9825 122.461 93.0925 123.102L130.488 144.695Z" fill="#EDEDED"/>
-<path d="M58.6543 105.593V144.522L92.6859 163.989V125.055L58.6543 105.593Z" fill="white"/>
-<path d="M58.6543 105.593V144.522L92.6859 163.989V125.055L58.6543 105.593Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6859 125.055L126.673 105.565L92.6859 86.0586L58.6543 105.593L92.6859 125.055Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.7079 122.182L121.624 105.598L92.7079 89.0034L63.7578 105.62L92.7079 122.182Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M126.673 105.565L126.723 144.522L92.6855 163.989V125.055L126.673 105.565Z" fill="white"/>
-<path d="M126.673 105.565L126.723 144.522L92.6855 163.989V125.055L126.673 105.565Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6857 81.6016L58.6484 101.141L92.6857 120.603L126.673 101.108L92.6857 81.6016ZM63.7579 101.175L92.708 84.5523L121.619 101.153L92.708 117.736L63.7579 101.175Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M58.6543 101.142V108.12L92.6859 127.587V120.603L58.6543 101.142Z" fill="white"/>
-<path d="M58.6543 101.142V108.12L92.6859 127.587V120.603L58.6543 101.142Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6855 120.603V127.202L126.673 107.707V101.114L92.6855 120.603Z" fill="white"/>
-<path d="M92.6855 120.603V127.202L126.673 107.707V101.114L92.6855 120.603Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.707 84.5522V89.0035L117.741 103.373L121.624 101.153L92.707 84.5522Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.7578 101.175L92.7079 84.5522V89.0035L67.6011 103.373L63.7578 101.175Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 118.087V128.267L122.032 124.513L123.108 123.905V113.72L115.455 118.087Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 118.093V127.151L122.032 123.397V114.344L115.455 118.093Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.75 123.426V133.611L112.332 129.851L113.403 129.243V119.063L105.75 123.426Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.75 123.431V132.495L112.332 128.741V119.683L105.75 123.431Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 128.39V138.57L102.832 134.821L103.909 134.208V124.028L96.2559 128.39Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 128.395V137.46L102.832 133.706V124.647L96.2559 128.395Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 130.51V140.69L122.053 136.941L123.13 136.328V126.142L115.477 130.51Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 130.515V139.579L122.053 135.825V126.767L115.477 130.515Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 135.848V146.028L112.354 142.279L113.43 141.666V131.486L105.777 135.848Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 135.853V144.918L112.354 141.164V132.105L105.777 135.853Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 140.818V150.998L102.86 147.244L103.931 146.636V136.45L96.2832 140.818Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 140.824V149.882L102.86 146.128V137.075L96.2832 140.824Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M82.2773 156.046L82.3108 130.024L90.4101 134.699L90.3767 160.72L82.2773 156.046Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M59.959 143.167L59.9925 117.145L68.0918 121.819L68.0583 147.841L59.959 143.167Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M79.5053 132.44L79.4383 156.492L67.2559 149.458L67.3228 125.406L79.5053 132.44Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.4378 125.283L68.2491 123.654L68.171 149.994L65.3652 151.628L65.4378 125.283Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M79.5879 131.536L82.3992 129.901L82.3155 158.16L79.5098 159.794L79.5879 131.536Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M63.7246 122.377L66.5359 120.748L82.3999 129.902L79.5886 131.536L63.7246 122.377Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M79.5885 131.536L79.5104 159.795L77.7924 158.802L77.8649 132.462L65.437 125.283L65.3645 151.628L63.6465 150.635L63.7246 122.377L79.5885 131.536Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.377 129.294L66.2025 128.814L77.8606 135.552L77.8662 136.512L65.377 129.294Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M77.8656 136.511L77.8489 140.622L65.3652 133.404L65.3764 129.293L77.8656 136.511Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M76.5431 144.048L76.5375 147.339L75.4219 146.697L75.433 143.406L76.5431 144.048Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M75.5731 144.885L75.389 145.108C75.3333 145.175 75.2384 145.203 75.1492 145.175L74.1061 144.84C73.9499 144.79 73.7937 144.924 73.8216 145.085C73.8383 145.169 73.8941 145.23 73.9722 145.258L75.5954 145.766C75.6568 145.788 75.7293 145.777 75.7851 145.738L76.2313 145.442C76.3652 145.353 76.3652 145.164 76.2313 145.074L75.8632 144.834C75.7684 144.779 75.6456 144.795 75.5731 144.885Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M58.6543 63.5234V102.458L92.6915 121.92V82.9852L58.6543 63.5234Z" fill="white"/>
-<path d="M58.6543 63.5234V102.458L92.6915 121.92V82.9852L58.6543 63.5234Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.6915 82.9849L126.673 63.4952L92.6915 43.9888L58.6543 63.5231L92.6915 82.9849Z" fill="white"/>
-<path d="M92.6915 82.9849L126.673 63.4952L92.6915 43.9888L58.6543 63.5231L92.6915 82.9849Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M126.673 63.4951L126.723 102.458L92.6914 121.92V82.9848L126.673 63.4951Z" fill="white"/>
-<path d="M126.673 63.4951L126.723 102.458L92.6914 121.92V82.9848L126.673 63.4951Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.5339 76.403V86.583L61.9519 82.8289L60.8809 82.2209V72.041L68.5339 76.403Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.5277 76.4083V85.4671L61.9512 81.713V72.6543L68.5277 76.4083Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.2351 81.7414V91.9269L71.6586 88.1729L70.582 87.5593V77.3794L78.2351 81.7414Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.2347 81.747V90.8057L71.6582 87.0573V77.9985L78.2347 81.747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.7276 86.7058V96.8913L81.1511 93.1373L80.0801 92.5293V82.3438L87.7276 86.7058Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.7289 86.7114V95.7757L81.1523 92.0217V82.9629L87.7289 86.7114Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.6336 88.8254V99.0053L62.057 95.2569L60.9805 94.6433V84.4634L68.6336 88.8254Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.6332 88.8309V97.8953L62.0566 94.1413V85.0825L68.6332 88.8309Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.3331 94.1692V104.349L71.7621 100.595L70.6855 99.9871V89.8071L78.3331 94.1692Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.3343 94.1744V103.233L71.7578 99.4792V90.4204L78.3343 94.1744Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8328 99.1335V109.313L81.2562 105.559L80.1797 104.957V94.7715L87.8328 99.1335Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M87.8268 99.1391V108.198L81.2559 104.444V95.3906L87.8268 99.1391Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 76.0183V86.1982L122.032 82.4442L123.108 81.8362V71.6562L115.455 76.0183Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.455 76.0239V85.0826L122.032 81.3286V72.2754L115.455 76.0239Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.756 81.3567V91.5422L112.332 87.7881L113.403 87.1746V76.9946L105.756 81.3567Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.756 81.3622V90.4265L112.332 86.6725V77.6138L105.756 81.3622Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 86.321V96.5009L102.838 92.7525L103.909 92.1389V81.959L96.2559 86.321Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2559 86.3266V95.3909L102.838 91.6369V82.5781L96.2559 86.3266Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 88.4402V98.6257L122.059 94.8717L123.13 94.2581V84.0781L115.477 88.4402Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M115.477 88.4457V97.51L122.059 93.756V84.6973L115.477 88.4457Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 93.7839V103.964L112.354 100.21L113.43 99.6018V89.4219L105.777 93.7839Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.777 93.7897V102.854L112.354 99.1V90.0356L105.777 93.7897Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 98.7483V108.928L102.86 105.174L103.936 104.566V94.3862L96.2832 98.7483Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M96.2832 98.7538V107.813L102.86 104.064V95.0054L96.2832 98.7538Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M58.6543 61.5039V63.5232L92.9648 83.7826V81.7634L58.6543 61.5039Z" fill="white"/>
-<path d="M58.6543 61.5039V63.5232L92.9648 83.7826V81.7634L58.6543 61.5039Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.9648 81.7633L126.55 62.5079L92.2843 42.1982L58.6543 61.5038L92.9648 81.7633Z" fill="white"/>
-<path d="M92.9648 81.7633L126.55 62.5079L92.2843 42.1982L58.6543 61.5038L92.9648 81.7633Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M126.55 62.5078L126.6 64.5494L92.9648 83.7825V81.7632L126.55 62.5078Z" fill="white"/>
-<path d="M126.55 62.5078L126.6 64.5494L92.9648 83.7825V81.7632L126.55 62.5078Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M90.7567 41.1665L60.5684 58.4975L64.5901 60.7956L92.9712 77.2955L119.138 62.2906L123.115 60.0092L90.7567 41.1665ZM92.988 74.7463L65.0977 58.5254L90.7791 43.7826L118.641 60.037L116.929 61.0188L92.988 74.7463Z" fill="white"/>
-<path d="M90.7567 41.1665L60.5684 58.4975L64.5901 60.7956L92.9712 77.2955L119.138 62.2906L123.115 60.0092L90.7567 41.1665ZM92.988 74.7463L65.0977 58.5254L90.7791 43.7826L118.641 60.037L116.929 61.0188L92.988 74.7463Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M60.5684 58.4976V60.6284L92.9657 79.432V77.3012L60.5684 58.4976Z" fill="white"/>
-<path d="M60.5684 58.4976V60.6284L92.9657 79.432V77.3012L60.5684 58.4976Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M92.9648 77.3012V79.432L123.114 62.1401V60.0093L92.9648 77.3012Z" fill="white"/>
-<path d="M92.9648 77.3012V79.432L123.114 62.1401V60.0093L92.9648 77.3012Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M90.7734 43.7827L90.8069 46.2036L116.544 61.242L118.63 60.0371L90.7734 43.7827Z" fill="white"/>
-<path d="M90.7734 43.7827L90.8069 46.2036L116.544 61.242L118.63 60.0371L90.7734 43.7827Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M65.0918 58.5255L90.7787 43.7827L90.8121 46.2036L67.2003 59.7248L65.0918 58.5255Z" fill="white"/>
-<path d="M65.0918 58.5255L90.7787 43.7827L90.8121 46.2036L67.2003 59.7248L65.0918 58.5255Z" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M97.1891 55.8248C100.374 57.6609 100.394 60.642 97.2286 62.478C94.0632 64.314 88.917 64.314 85.7319 62.478C82.5468 60.642 82.5336 57.6609 85.699 55.8248C88.8644 53.9888 94.004 53.9822 97.1891 55.8248Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M183.915 137.345C187.146 139.207 187.159 142.228 183.954 144.097C180.749 145.966 175.531 145.959 172.3 144.097C169.068 142.235 169.055 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.724 34.9455)" fill="white" stroke="#706F6F"/>
-<path d="M197.06 9.24078C197.357 9.06825 197.599 9.20628 197.603 9.55134L197.616 14.3691C197.616 14.7099 197.374 15.1283 197.077 15.3008L193.652 17.2762C193.354 17.4487 193.113 17.3107 193.109 16.9657L193.096 12.1478C193.096 11.8071 193.337 11.3887 193.635 11.2162L197.06 9.24078Z" fill="#DA3635"/>
-<path d="M196.391 11.626C196.421 11.6088 196.447 11.6044 196.473 11.6174C196.516 11.6433 196.516 11.7252 196.473 11.8028L195.723 13.1011V13.1874L196.477 13.6187C196.521 13.6446 196.521 13.7265 196.477 13.8042C196.456 13.843 196.43 13.8689 196.4 13.8861C196.374 13.9034 196.344 13.9077 196.318 13.8947L195.563 13.4634L195.49 13.5066L194.739 14.8048C194.718 14.8436 194.692 14.8695 194.662 14.8868C194.631 14.904 194.606 14.9083 194.58 14.8954C194.537 14.8652 194.537 14.7832 194.58 14.7099L195.33 13.4117V13.3254L194.575 12.8941C194.532 12.8682 194.532 12.7863 194.575 12.7086C194.597 12.6698 194.627 12.6396 194.653 12.6267C194.683 12.6094 194.709 12.6051 194.735 12.618L195.49 13.0494L195.563 13.0062L196.314 11.708C196.331 11.6735 196.361 11.6433 196.391 11.626Z" fill="white"/>
-<path d="M165.837 52.9245C166.635 52.463 167.287 52.8339 167.291 53.7526L167.304 58.083C167.308 59.0017 166.657 60.1232 165.859 60.5847L161.986 62.8232C161.188 63.2847 160.536 62.9095 160.536 61.9951L160.523 57.6647C160.519 56.746 161.17 55.6246 161.964 55.1674L165.837 52.9245ZM166.998 58.2599L166.985 53.9295C166.985 53.2049 166.467 52.9116 165.837 53.2782L161.964 55.5167C161.334 55.879 160.825 56.7632 160.83 57.4878L160.843 61.8183C160.843 62.5429 161.36 62.8318 161.986 62.4695L165.859 60.231C166.489 59.8644 166.998 58.9845 166.998 58.2599Z" fill="#706F6F"/>
-<path d="M165.838 53.2738C166.467 52.9115 166.981 53.2005 166.985 53.9251L166.998 58.2555C166.998 58.9801 166.489 59.86 165.859 60.2267L161.986 62.4652C161.356 62.8275 160.843 62.5385 160.843 61.8139L160.83 57.4835C160.83 56.7589 161.339 55.8747 161.964 55.5124L165.838 53.2738Z" fill="white"/>
-<path d="M190.314 30.272C190.651 30.0779 190.927 30.2332 190.927 30.6214C190.927 31.0096 190.655 31.484 190.319 31.6781L165.63 45.9331C165.289 46.1272 165.018 45.9676 165.018 45.5838C165.018 45.1956 165.289 44.7254 165.626 44.527L190.314 30.272Z" fill="#DA3635"/>
-<path d="M185.911 29.8404C186.252 29.6463 186.524 29.8016 186.524 30.1898C186.524 30.5779 186.252 31.0481 185.915 31.2465L170.034 40.4163C169.698 40.6104 169.426 40.4508 169.422 40.0669C169.422 39.6787 169.694 39.2086 170.03 39.0145L185.911 29.8404Z" 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.1314C187.364 46.0322 187.498 46.1099 187.498 46.3083C187.498 46.5024 187.364 46.7396 187.192 46.8345L169.461 57.0739C169.288 57.1731 169.154 57.0912 169.154 56.8971C169.154 56.703 169.288 56.4701 169.461 56.3709L187.192 46.1314Z" fill="#706F6F"/>
-<path d="M165.837 64.2679C166.635 63.8064 167.286 64.1773 167.291 65.0917L167.304 69.4221C167.308 70.3365 166.657 71.4579 165.859 71.9194L161.986 74.158C161.188 74.6195 160.536 74.2442 160.536 73.3298L160.523 68.9994C160.519 68.085 161.17 66.9636 161.964 66.5021L165.837 64.2679ZM166.998 69.5989L166.985 65.2685C166.985 64.5482 166.467 64.2549 165.837 64.6172L161.964 66.8558C161.334 67.2181 160.825 68.1023 160.83 68.8226L160.843 73.153C160.843 73.8733 161.36 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.919 55.7542C186.091 55.655 186.225 55.7369 186.225 55.931C186.225 56.1251 186.091 56.358 185.919 56.4572L169.24 66.0842C169.067 66.1834 168.934 66.1015 168.934 65.9074C168.934 65.7133 169.067 65.4804 169.24 65.3812L185.919 55.7542Z" fill="#706F6F"/>
-<path d="M179.463 61.2577C179.631 61.1628 179.769 61.2404 179.769 61.4345C179.769 61.6286 179.631 61.8658 179.463 61.9607L169.275 67.8439C169.107 67.9388 168.969 67.8611 168.969 67.667C168.969 67.4729 169.107 67.2357 169.275 67.1408L179.463 61.2577Z" fill="#706F6F"/>
-<path d="M165.838 76.3793C166.467 76.017 166.981 76.306 166.985 77.0306L166.998 81.361C166.998 82.0813 166.489 82.9655 165.859 83.3321L161.986 85.5706C161.356 85.933 160.843 85.6397 160.843 84.9194L160.83 80.5889C160.83 79.8643 161.339 78.9801 161.964 78.6178L165.838 76.3793Z" fill="white"/>
-<path d="M165.837 76.03C166.635 75.5685 167.287 75.9394 167.291 76.8581L167.304 81.1885C167.308 82.1072 166.657 83.2287 165.859 83.6902L161.986 85.9287C161.188 86.3902 160.536 86.0149 160.536 85.1006L160.523 80.7701C160.519 79.8514 161.17 78.73 161.964 78.2728L165.837 76.03ZM166.998 81.361L166.985 77.0306C166.985 76.306 166.467 76.0127 165.837 76.3793L161.964 78.6179C161.334 78.9802 160.825 79.8644 160.83 80.589L160.843 84.9194C160.843 85.6397 161.36 85.933 161.986 85.5707L165.859 83.3322C166.489 82.9699 166.998 82.0857 166.998 81.361Z" fill="#706F6F"/>
-<path d="M179.511 71.484C179.679 71.3891 179.817 71.4625 179.817 71.6609C179.817 71.855 179.679 72.0879 179.511 72.1871L169.56 77.9322C169.392 78.0271 169.254 77.9538 169.254 77.7597C169.254 77.5656 169.392 77.3284 169.56 77.2335L179.511 71.484Z" fill="#706F6F"/>
-<path d="M187.432 67.0028C187.601 66.9079 187.739 66.9855 187.739 67.1796C187.739 67.3737 187.601 67.611 187.432 67.7058L181.002 71.4195C180.829 71.5187 180.695 71.441 180.695 71.2426C180.695 71.0485 180.829 70.8113 181.002 70.7164L187.432 67.0028Z" fill="#706F6F"/>
-<path d="M187.192 69.2369C187.364 69.1377 187.498 69.2153 187.498 69.4137C187.498 69.6078 187.364 69.8408 187.192 69.94L169.461 80.1794C169.288 80.2786 169.154 80.201 169.154 80.0069C169.154 79.8128 169.288 79.5799 169.461 79.4807L187.192 69.2369Z" fill="#706F6F"/>
-<path d="M165.837 88.6373C166.635 88.1758 167.287 88.5424 167.291 89.4611L167.304 93.7916C167.308 94.7103 166.657 95.8317 165.859 96.2932L161.986 98.5317C161.188 98.9932 160.536 98.618 160.536 97.7036L160.523 93.3732C160.519 92.4545 161.17 91.3374 161.964 90.8759L165.837 88.6373ZM166.998 93.9684L166.985 89.638C166.985 88.9177 166.467 88.6244 165.837 88.9867L161.964 91.2252C161.334 91.5875 160.825 92.4717 160.83 93.192L160.843 97.5224C160.843 98.247 161.36 98.5403 161.986 98.178L165.859 95.9395C166.489 95.5772 166.998 94.693 166.998 93.9684Z" fill="#706F6F"/>
-<path d="M165.838 88.9867C166.467 88.6244 166.981 88.9134 166.985 89.638L166.998 93.9684C166.998 94.693 166.489 95.5772 165.859 95.9395L161.986 98.1781C161.356 98.5404 160.843 98.2471 160.843 97.5225L160.83 93.1921C160.83 92.4718 161.339 91.5876 161.964 91.2253L165.838 88.9867Z" fill="white"/>
-<path d="M182.068 82.7067C182.236 82.6118 182.374 82.6851 182.374 82.8835C182.374 83.0776 182.236 83.3149 182.068 83.4097L169.357 90.7508C169.189 90.8457 169.051 90.768 169.051 90.5739C169.051 90.3798 169.189 90.1426 169.357 90.0477L182.068 82.7067Z" fill="#706F6F"/>
-<path d="M187.192 81.8401C187.364 81.7409 187.498 81.8229 187.498 82.017C187.498 82.2111 187.364 82.444 187.192 82.5432L169.461 92.7826C169.288 92.8818 169.154 92.7999 169.154 92.6058C169.154 92.4117 169.288 92.1788 169.461 92.0796L187.192 81.8401Z" fill="#706F6F"/>
-<path d="M165.367 66.7223C165.475 66.6576 165.583 66.6446 165.669 66.6921C165.837 66.787 165.837 67.0975 165.669 67.3822L163.927 70.3971C163.819 70.5826 163.681 70.7292 163.53 70.8155C163.379 70.9017 163.236 70.919 163.129 70.8543L162.482 70.4833C162.313 70.3885 162.313 70.0779 162.482 69.7933C162.564 69.6509 162.671 69.5388 162.784 69.4784C162.891 69.4137 162.999 69.4008 163.085 69.4482L163.534 69.7027L165.074 67.0328C165.151 66.8948 165.259 66.787 165.367 66.7223Z" fill="#DA3635"/>
-<path d="M165.367 55.8146C165.475 55.7499 165.583 55.7369 165.669 55.7844C165.837 55.8793 165.837 56.1898 165.669 56.4745L163.927 59.4894C163.819 59.6748 163.681 59.8215 163.53 59.9077C163.379 59.994 163.236 60.0112 163.129 59.9466L162.482 59.5756C162.313 59.4807 162.313 59.1702 162.482 58.8855C162.564 58.7432 162.671 58.631 162.784 58.5706C162.891 58.506 162.999 58.493 163.085 58.5405L163.534 58.7949L165.074 56.1251C165.151 55.9871 165.259 55.8749 165.367 55.8146Z" fill="#DA3635"/>
-<path d="M165.367 78.9156C165.475 78.8509 165.583 78.838 165.669 78.8854C165.837 78.9803 165.837 79.2909 165.669 79.5755L163.927 82.5904C163.819 82.7759 163.681 82.9226 163.53 83.0088C163.379 83.0951 163.236 83.1123 163.129 83.0476L162.482 82.6767C162.313 82.5818 162.313 82.2713 162.482 81.9866C162.564 81.8443 162.671 81.7321 162.784 81.6717C162.891 81.607 162.999 81.5941 163.085 81.6416L163.534 81.896L165.074 79.2262C165.151 79.0925 165.259 78.9803 165.367 78.9156Z" fill="#DA3635"/>
-<path d="M165.367 91.0143C165.475 90.9496 165.583 90.9366 165.669 90.9841C165.837 91.079 165.837 91.3895 165.669 91.6742L163.927 94.6891C163.819 94.8746 163.681 95.0212 163.53 95.1075C163.379 95.1937 163.236 95.211 163.129 95.1463L162.482 94.7753C162.313 94.6804 162.313 94.3699 162.482 94.0852C162.564 93.9429 162.671 93.8308 162.784 93.7704C162.891 93.7057 162.999 93.6927 163.085 93.7402L163.534 93.9947L165.074 91.3248C165.151 91.1911 165.259 91.079 165.367 91.0143Z" fill="#DA3635"/>
-<path d="M94.6207 57.1831C96.4494 58.0939 96.4608 59.5728 94.6434 60.4836C92.826 61.3944 89.8714 61.3944 88.0428 60.4836C86.2141 59.5728 86.2065 58.0939 88.0238 57.1831C89.8412 56.2723 92.792 56.2723 94.6207 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="M31.3816 176.272C34.6128 178.134 34.6259 181.155 31.4211 183.024C28.2162 184.886 22.9976 184.886 19.7664 183.024C16.5353 181.161 16.5221 178.141 19.7335 176.272C22.9384 174.403 28.157 174.403 31.3816 176.272Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" fill="white"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" fill="white"/>
-<path d="M25.9067 153.364C25.6368 153.996 24.5576 154.127 24.3667 153.331C24.2549 152.89 24.1627 152.949 23.9193 152.568C23.6955 152.186 23.4125 152.554 23.2019 152.074C22.919 151.423 22.9782 149.455 23.5178 148.961C24.0245 148.501 24.4194 148.626 24.8998 149.027C25.1367 149.251 25.2617 149.521 25.5184 149.725C25.7092 149.869 25.9922 149.948 26.1502 150.008C27.2426 150.468 26.4989 151.133 26.341 151.798C26.2752 152.054 26.2949 152.429 26.1962 152.673C26.0712 152.989 25.8014 153.147 25.7026 153.436" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" fill="white"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" fill="white"/>
-<path d="M20.2542 157.523C20.5569 158.727 20.6029 160.234 20.6029 161.629C20.6029 163.169 20.2081 164.597 20.2542 166.117C20.7938 166.229 21.3466 162.202 21.4255 161.61C21.5703 160.675 21.6624 159.655 21.4913 158.74C21.4255 158.359 20.7148 156.437 20.1094 157.233" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" fill="white"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" fill="white"/>
-<path d="M29.6377 159.076C30.717 158.918 30.5459 162.978 30.559 163.788C30.5722 164.709 30.6512 165.453 30.9868 166.328C31.0986 166.598 31.5725 167.309 31.2566 167.598C30.8288 167.993 30.355 167.249 30.2563 166.914C30.3221 167.249 30.1773 167.263 30.0523 167.44C29.7035 166.789 29.7035 165.775 29.4995 165.058C29.2758 164.235 29.0718 163.472 29.0718 162.616C29.0718 161.649 29.006 160.695 29.006 159.76C29.006 159.556 28.8809 158.747 29.0389 158.602C29.3745 158.299 29.7825 158.78 29.7825 159.129" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" fill="white"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" fill="white"/>
-<path d="M28.4262 171.402C28.8211 171.876 29.2488 172.369 29.6963 172.817C30.4136 173.547 30.4597 174.067 30.4136 175.1C30.3478 176.055 29.2686 177.417 29.4265 175.732C29.5055 174.89 29.5252 174.969 28.8737 174.541C28.2222 174.113 27.2877 173.37 26.9192 172.665C26.3796 171.619 27.9195 170.428 28.5842 171.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" fill="white"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" fill="white"/>
-<path d="M23.2206 171.691C23.2206 173.231 23.0166 174.752 22.9508 176.311C22.9179 177.075 23.0297 177.976 22.9508 178.72C22.8718 179.529 22.0295 180.023 21.3977 180.562C20.9239 180.01 21.5885 178.739 21.6215 178.042C21.6873 176.917 21.3977 175.85 21.2266 174.758C21.1279 174.107 20.5948 172.218 20.97 171.586C21.5754 170.573 23.0034 171.52 23.2403 172.33" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" fill="white"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" fill="white"/>
-<path d="M30.4145 173.514C31.5727 173.639 30.6383 176.956 29.8091 177.272C28.9075 177.621 29.5393 176.127 29.7169 175.686C29.9407 175.1 30.3816 173.975 30.3355 173.37" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" fill="white"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" fill="white"/>
-<path d="M22.9979 178.384C23.6034 179.45 22.8992 180.497 21.9319 181.128C21.5041 181.411 20.8526 181.747 20.596 181.128C20.3722 180.576 21.0435 179.746 21.2146 179.253C21.2014 181.346 22.5965 179.128 22.9914 178.332C23.1361 178.411 23.0901 178.476 23.1164 178.601" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.3502 164.361C36.7776 164.551 36.5736 165.361 36.6658 165.881C36.7316 166.216 36.8698 166.434 36.8895 166.802C36.9027 167.105 36.7776 167.625 37.0343 167.802C37.2909 167.98 37.8766 167.704 38.0346 167.5C38.3373 167.085 38.1596 166.868 38.1465 166.466C38.1333 166.026 38.8309 165.894 38.6532 165.433C38.4887 165.045 37.7779 164.157 37.3502 164.361Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" fill="white"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" fill="white"/>
-<path d="M40.2656 169.79C40.1077 170.533 40.1208 171.362 40.0616 172.106C39.9958 172.711 40.2525 174.166 39.9037 174.646C39.1403 175.712 38.9495 173.442 38.9165 173.027C38.8244 171.981 39.1535 171.204 39.2193 170.204" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" fill="white"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" fill="white"/>
-<path d="M39.0159 175.851C39.0028 176.009 39.0291 176.199 39.0949 176.324C40.0162 176.548 42.4906 176.752 41.747 177.943C41.2205 177.989 40.6019 177.66 40.082 177.529C39.5292 177.384 38.9238 177.384 38.371 177.226C37.7656 177.068 37.4497 176.752 37.6537 176.055C37.7656 175.66 37.7327 175.548 38.2591 175.561C38.5619 175.574 38.7988 175.515 38.8646 175.91" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M36.5995 175.851C36.8693 176.2 36.6785 177.693 36.6653 178.292C36.6521 179.26 36.6785 180.51 35.54 180.431C35.5071 179.339 35.5531 178.259 35.6058 177.18C35.619 176.831 35.4281 175.956 35.5926 175.686C35.8427 175.337 36.5995 175.245 36.5995 175.851Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" fill="white"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" fill="white"/>
-<path d="M41.8055 177.259C42.5359 176.338 42.5228 178.068 42.2464 178.542C41.6146 179.687 41.6936 177.43 41.8186 177.193" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M24.2676 153.015C23.3002 153.015 22.2341 152.87 21.5826 153.726C21.1548 154.298 19.8716 156.141 19.9637 156.819C20.0558 157.536 21.089 157.786 21.2206 158.53C21.3457 159.247 21.2075 160.372 21.1548 161.103C21.0298 162.978 20.5494 164.768 20.5231 166.67C20.5099 167.684 20.0492 168.671 20.0953 169.651C20.1282 170.336 20.7008 171.665 21.3786 171.935C21.8853 172.126 22.188 171.79 22.6355 171.711C23.1291 171.645 23.3528 171.823 23.7806 172.027C25.0375 172.659 26.0641 172.823 27.2552 171.961C27.6698 171.678 27.9857 171.389 28.4266 171.152C29.0321 170.849 29.2361 170.961 29.269 170.119C29.3348 169.309 29.2229 168.5 29.269 167.703C29.3348 166.611 28.8741 165.453 28.6635 164.374C28.4398 163.103 28.5977 162.294 28.8412 161.057C28.907 160.741 28.7623 159.833 29.0189 159.616C29.3545 159.313 30.0981 159.885 30.4601 159.55C31.0787 159.023 29.6178 156.661 29.1571 156.174C28.3937 155.332 27.4461 154.384 26.5708 153.68C26.4721 153.614 26.1431 153.331 26.018 153.318C25.5574 153.252 25.8601 153.417 25.5245 153.542C24.952 153.844 24.6032 153.857 24.2676 153.015Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" fill="white"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" fill="white"/>
-<path d="M22.3001 153.509C22.3133 153.364 22.4449 153.351 22.3133 153.239C22.8397 156.253 24.7087 158.984 25.9656 161.774C26.1894 162.281 26.5184 163.248 27.0317 163.472C27.5384 163.676 28.4926 163.459 29.0191 163.393C30.0984 163.281 29.8615 163.867 30.0062 164.808C30.1642 165.874 30.4471 166.282 29.0849 166.348C28.2426 166.394 26.8145 166.631 26.3407 165.795C25.8472 164.939 25.9919 163.59 27.058 163.577C26.4263 163.419 25.8011 161.912 25.3273 161.169C24.7876 160.313 24.3928 159.135 23.8203 158.299C23.1556 157.345 22.3593 156.141 21.9974 155.029C21.8723 154.634 21.5236 152.712 22.412 153.173" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" fill="white"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" fill="#DA3635"/>
-<path d="M25.8269 150.192C25.7939 150.416 25.6821 150.666 25.557 150.824C25.5241 150.047 25.0503 149.139 24.2869 148.823C23.3064 148.428 23.3656 149.33 23.2735 150.074C23.1945 150.87 23.0037 151.646 23.7013 152.186C23.9579 152.377 24.6686 152.364 24.1619 152.791C23.9382 152.982 23.3656 152.726 23.0695 152.982C22.8918 152.508 22.9774 152.081 22.7339 151.587C22.497 151.061 22.1284 150.574 22.2601 149.968C22.4838 149.001 23.9908 148.08 24.8924 147.876C26.1954 147.573 26.8929 148.968 27.143 150.08C27.2878 150.732 27.2088 151.047 27.7287 151.521C28.2683 152.015 28.9527 152.285 29.4595 152.857C30.2689 153.759 30.4137 155.457 29.3937 156.286C28.9198 155.634 28.2025 155.351 27.5839 154.858C27.1364 154.509 26.1361 153.89 25.8861 153.43C25.5702 152.844 25.8729 152.067 26.123 151.607C26.2678 151.35 26.6495 151.021 26.5507 150.686C26.4389 150.35 26.044 150.212 25.8203 150.462" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" fill="white"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" fill="white"/>
-<path d="M38.1729 167.309C38.3638 167.848 39.0745 167.815 39.4891 168.151C39.805 168.421 40.2854 168.835 40.2656 169.533C40.2525 170.106 39.7589 169.928 39.5023 170.296C39.3443 170.533 39.4233 171.422 39.3575 171.738C39.2785 172.211 39.2325 172.626 39.2127 173.12C39.1798 174.041 39.3707 174.896 39.3575 175.818C39.0877 175.916 37.7715 176.153 37.5346 175.976C37.2319 175.752 37.3438 174.515 37.3109 174.166C37.2319 174.515 37.2121 175.37 36.9621 175.627C36.7054 175.897 35.8038 176.055 35.5801 175.831C35.2971 175.528 35.5669 173.929 35.534 173.514C35.5209 172.929 35.4353 172.343 35.3893 171.77C35.2774 170.52 34.8825 168.849 35.4551 167.677C35.7249 167.124 36.2974 166.71 36.8502 167.045C37.1661 167.236 36.8634 167.697 37.5017 167.73C37.6794 167.743 37.9755 167.394 38.0545 167.381" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M37.0944 163.235C37.5551 163.459 37.3971 163.953 37.7262 164.203C38.075 164.473 38.5027 164.216 38.8976 164.696C39.6412 165.585 38.9963 166.407 38.0091 166.618C38.0091 166.618 36.9299 165.887 37.1997 164.492C37.1142 164.091 36.9365 163.597 37.0944 163.235Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M34.429 103.278C39.4291 106.166 39.4614 110.848 34.4883 113.736C29.5151 116.624 21.4331 116.624 16.433 113.736C11.4329 110.848 11.406 106.166 16.3791 103.278C21.3522 100.39 29.4235 100.39 34.429 103.278Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M32.9909 103.989C37.1882 106.414 37.2151 110.342 33.0448 112.766C28.8744 115.191 22.0855 115.191 17.8829 112.766C13.6856 110.342 13.664 106.414 17.8344 103.989C22.0101 101.565 28.7936 101.565 32.9909 103.989Z" fill="#EDEDED"/>
-<path d="M35.2905 103.747C35.2851 103.795 35.2851 103.844 35.2797 103.898C35.2743 103.941 35.269 103.984 35.2636 104.027C35.2582 104.076 35.2474 104.124 35.242 104.173C35.2366 104.216 35.2259 104.259 35.2151 104.302C35.2043 104.35 35.1935 104.399 35.1774 104.447C35.1666 104.49 35.1504 104.533 35.1396 104.577C35.1235 104.625 35.1073 104.674 35.0912 104.717C35.075 104.76 35.0588 104.803 35.0427 104.846C35.0211 104.894 34.9996 104.943 34.978 104.997C34.9618 105.04 34.9403 105.078 34.9187 105.121C34.8972 105.169 34.8702 105.218 34.8433 105.266C34.8218 105.304 34.8002 105.347 34.7787 105.385C34.7463 105.444 34.7086 105.503 34.6709 105.557C34.6493 105.595 34.6278 105.627 34.6008 105.665C34.5577 105.73 34.5092 105.794 34.4607 105.854C34.4392 105.88 34.4176 105.907 34.3961 105.94C34.3153 106.042 34.2291 106.139 34.1429 106.236C34.1213 106.263 34.0944 106.285 34.0728 106.312C34.0028 106.387 33.9273 106.462 33.8519 106.532C33.8142 106.565 33.7819 106.597 33.7441 106.629C33.6957 106.673 33.6472 106.716 33.5987 106.753C33.5556 106.791 33.5125 106.829 33.464 106.867C33.4155 106.91 33.3616 106.947 33.3077 106.99C33.2592 107.028 33.2107 107.066 33.1622 107.098C33.1084 107.136 33.0545 107.179 32.9952 107.217C32.9413 107.254 32.8928 107.287 32.839 107.324C32.7797 107.362 32.7204 107.4 32.6611 107.438C32.5857 107.486 32.5103 107.529 32.4349 107.578C32.2193 107.702 31.9984 107.815 31.7721 107.928C31.7129 107.955 31.6536 107.987 31.5889 108.014C31.3842 108.111 31.1741 108.197 30.9585 108.284C30.9316 108.294 30.9047 108.305 30.8723 108.316C30.6407 108.402 30.4036 108.483 30.1665 108.558C29.9995 108.612 29.8271 108.655 29.66 108.704C29.5307 108.742 29.4014 108.774 29.2721 108.806C29.0943 108.849 28.9111 108.887 28.7279 108.925C28.5932 108.952 28.4639 108.984 28.3292 109.006C28.2753 109.016 28.216 109.022 28.1622 109.032C27.9359 109.07 27.7096 109.103 27.4779 109.129C27.4132 109.135 27.3432 109.146 27.2785 109.151C27.1492 109.167 27.0145 109.173 26.8798 109.183C26.6589 109.2 26.438 109.216 26.2117 109.226C26.0716 109.232 25.9261 109.237 25.786 109.237C25.6082 109.243 25.425 109.243 25.2472 109.237C25.0964 109.237 24.9455 109.232 24.7946 109.226C24.6276 109.221 24.4606 109.21 24.2935 109.2C24.1427 109.189 23.9918 109.178 23.8356 109.162C23.6685 109.146 23.5069 109.129 23.3453 109.108C23.1998 109.092 23.0489 109.07 22.9034 109.043C22.7256 109.016 22.5532 108.984 22.3808 108.952C22.2461 108.925 22.106 108.898 21.9713 108.871C21.7666 108.828 21.5618 108.774 21.3571 108.72C21.2278 108.688 21.0931 108.655 20.9638 108.612C20.8937 108.591 20.8237 108.569 20.759 108.548C20.5543 108.483 20.3549 108.413 20.1609 108.343C20.1017 108.321 20.0478 108.3 19.9885 108.278C19.8107 108.208 19.6383 108.133 19.4659 108.057C19.3797 108.02 19.2935 107.987 19.2126 107.944C18.9648 107.826 18.7223 107.702 18.4907 107.567C16.5456 106.446 15.5757 104.97 15.5811 103.504L15.5703 107.745C15.5649 109.216 16.5348 110.687 18.4799 111.813C18.7116 111.947 18.954 112.071 19.2019 112.19C19.2827 112.228 19.3743 112.265 19.4551 112.303C19.6006 112.368 19.7461 112.438 19.8969 112.497C19.9239 112.508 19.9508 112.519 19.9778 112.524C20.0316 112.545 20.0909 112.567 20.1502 112.589C20.3441 112.659 20.5489 112.729 20.7482 112.793C20.8183 112.815 20.8883 112.836 20.9584 112.858C21.0069 112.874 21.05 112.89 21.0985 112.901C21.1793 112.923 21.2655 112.939 21.3517 112.96C21.5564 113.014 21.7558 113.063 21.9659 113.111C22.0198 113.122 22.0737 113.138 22.1276 113.149C22.2084 113.165 22.2892 113.176 22.37 113.192C22.5425 113.224 22.7202 113.257 22.8927 113.284C22.9627 113.294 23.0328 113.311 23.1028 113.321C23.1782 113.332 23.259 113.337 23.3345 113.348C23.4961 113.37 23.6632 113.386 23.8302 113.402C23.911 113.408 23.9864 113.424 24.0673 113.429C24.1427 113.434 24.2127 113.434 24.2882 113.44C24.4552 113.451 24.6222 113.461 24.7893 113.467C24.8755 113.472 24.9563 113.478 25.0425 113.478C25.1071 113.478 25.1772 113.478 25.2418 113.478C25.4196 113.478 25.6028 113.478 25.7806 113.478C25.8722 113.478 25.9585 113.478 26.05 113.478C26.1039 113.478 26.1578 113.467 26.2063 113.467C26.4272 113.456 26.6535 113.44 26.8744 113.424C26.966 113.418 27.0522 113.413 27.1438 113.408C27.1869 113.402 27.23 113.397 27.2731 113.391C27.3378 113.386 27.4078 113.375 27.4725 113.37C27.7042 113.343 27.9305 113.311 28.1568 113.273C28.2106 113.262 28.2699 113.257 28.3238 113.246C28.3507 113.241 28.3777 113.241 28.4046 113.235C28.5124 113.214 28.6147 113.187 28.7225 113.165C28.9057 113.127 29.0889 113.09 29.2667 113.047C29.396 113.014 29.5253 112.976 29.6546 112.944C29.8271 112.896 29.9941 112.853 30.1611 112.799C30.1988 112.788 30.2365 112.777 30.2689 112.766C30.4736 112.702 30.673 112.632 30.8669 112.556C30.8939 112.545 30.9208 112.535 30.9532 112.524C31.1687 112.438 31.3788 112.352 31.5835 112.255C31.6428 112.228 31.7075 112.201 31.7667 112.168C31.993 112.061 32.2193 111.942 32.4295 111.818C32.4726 111.797 32.5103 111.77 32.548 111.748C32.5857 111.726 32.6181 111.705 32.6558 111.678C32.715 111.64 32.7743 111.603 32.8336 111.565C32.8874 111.527 32.9413 111.495 32.9898 111.457C33.0437 111.419 33.103 111.382 33.1569 111.339C33.2053 111.301 33.2538 111.263 33.3023 111.225C33.3562 111.188 33.4047 111.145 33.4586 111.107C33.5071 111.069 33.5502 111.031 33.5933 110.994C33.6418 110.951 33.6903 110.913 33.7334 110.87C33.7549 110.854 33.7711 110.837 33.7926 110.821C33.8088 110.805 33.825 110.789 33.8411 110.773C33.9166 110.697 33.992 110.627 34.062 110.552C34.0836 110.525 34.1105 110.503 34.1321 110.476C34.2237 110.379 34.3099 110.277 34.3853 110.18C34.3907 110.175 34.3907 110.169 34.3961 110.169C34.4123 110.148 34.4284 110.121 34.45 110.099C34.4985 110.035 34.547 109.975 34.5901 109.911C34.6116 109.873 34.6386 109.841 34.6601 109.803C34.6978 109.744 34.7355 109.684 34.7679 109.631C34.7786 109.614 34.7894 109.598 34.7948 109.582C34.8056 109.561 34.8164 109.534 34.8325 109.512C34.8595 109.464 34.8864 109.415 34.908 109.367C34.9295 109.323 34.9457 109.286 34.9672 109.243C34.9888 109.194 35.0103 109.146 35.0319 109.092C35.0427 109.07 35.0534 109.049 35.0588 109.027C35.0642 109.006 35.0696 108.984 35.0804 108.968C35.0965 108.919 35.1127 108.871 35.1289 108.828C35.1396 108.785 35.1558 108.742 35.1666 108.698C35.1774 108.65 35.1935 108.601 35.2043 108.553C35.2097 108.526 35.2205 108.499 35.2259 108.478C35.2312 108.461 35.2312 108.44 35.2366 108.424C35.2474 108.375 35.2528 108.327 35.2582 108.278C35.2636 108.235 35.269 108.192 35.2743 108.149C35.2797 108.1 35.2797 108.052 35.2851 107.998C35.2851 107.971 35.2905 107.939 35.2905 107.912C35.2905 107.885 35.2905 107.852 35.2905 107.826L35.3013 103.585C35.2959 103.634 35.2905 103.688 35.2905 103.747Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M32.3867 99.5065C36.2499 101.737 36.2714 105.353 32.4352 107.583C28.5989 109.814 22.3542 109.814 18.4909 107.583C14.6277 105.353 14.6116 101.737 18.4478 99.5065C22.2841 97.2758 28.5235 97.2758 32.3867 99.5065Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M25.782 99.6196L28.2713 105.234C28.309 105.315 28.2551 105.406 28.1689 105.417L22.8348 106.198C22.7755 106.209 22.7162 106.177 22.6947 106.123L22.2798 105.191C22.2421 105.11 22.296 105.018 22.3822 105.008L25.5988 104.534C25.685 104.523 25.7335 104.431 25.7012 104.35L23.7723 99.9914C23.7346 99.9106 23.7884 99.819 23.8747 99.8082L25.6473 99.5496C25.7012 99.5334 25.7551 99.5658 25.782 99.6196Z" fill="#DA3635"/>
-<path d="M91.334 42.5L91.334 58.5" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M110.969 5.64581L104.223 1.72504C105.264 1.1239 106.309 0.978403 107.106 1.43404L113.852 5.35481C113.056 4.89535 112.011 5.04085 110.969 5.64581Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M93.311 34.2818L86.5645 30.3611L101.344 4.75732L108.09 8.6781L93.311 34.2818Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M108.09 8.67827L101.344 4.75749C102.136 3.38292 103.178 2.32616 104.223 1.72119L110.97 5.64196C109.924 6.24693 108.883 7.3037 108.09 8.67827Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M89.0258 31.8431L82.2793 27.9224L86.5638 30.3614L93.3103 34.2821L89.0258 31.8431Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M83.2833 41.7905L76.5368 37.8698C74.9401 36.9585 74.9325 33.9949 76.5176 31.2496C77.3102 29.8751 78.3517 28.8183 79.3931 28.2133C80.4346 27.6122 81.4798 27.4667 82.2763 27.9223L89.0228 31.8431C88.2263 31.3875 87.1811 31.533 86.1396 32.1341C85.0981 32.7352 84.0567 33.7958 83.2641 35.1704C81.6751 37.9157 81.6866 40.8793 83.2833 41.7905Z" fill="white" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M110.97 5.64594C112.011 5.0448 113.056 4.8993 113.853 5.35494C115.449 6.26621 115.457 9.22976 113.872 11.9751L97.1626 40.9138C96.1441 42.6789 94.7848 44.1109 93.3413 44.9456C91.894 45.7803 90.5348 45.9181 89.5048 45.3323L83.2829 41.7868C81.6862 40.8755 81.6785 37.9119 83.2637 35.1666C84.0563 33.7921 85.0977 32.7353 86.1392 32.1303C87.1807 31.5292 88.2259 31.3837 89.0223 31.8393L93.3069 34.2822L108.086 8.67841C108.883 7.30384 109.924 6.24707 110.97 5.64594Z" fill="#47C562" stroke="#47C562" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-</g>
-<defs>
-<clipPath id="clip0_5987_73910">
-<rect width="200" height="200" fill="white" transform="translate(0 0.5)"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <g clip-path="url(#clip0_14133_131667)">
+    <circle cx="98.5" cy="84.5" r="84.5" fill="#FFF6E6" />
+    <circle cx="99" cy="90" r="79" fill="#FEEFD3" />
+    <ellipse cx="98.5" cy="90" rx="70.5" ry="71" fill="#FFE4B0" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M162.883 37.3675C162.852 37.3683 162.821 37.3687 162.789 37.3687C160.697 37.3687 159 35.6721 159 33.5792C159 31.4864 160.697 29.7898 162.789 29.7898C163.559 29.7898 164.275 30.0192 164.873 30.4133C164.75 29.8296 164.686 29.2245 164.686 28.6044C164.686 23.7647 168.609 19.8413 173.449 19.8413C174.326 19.8413 175.174 19.9704 175.973 20.2105C177.831 18.2342 180.469 17 183.395 17C189.02 17 193.579 21.5596 193.579 27.1841C193.579 28.3182 193.394 29.4091 193.052 30.428C194.211 31.0343 195.001 32.2481 195.001 33.6466C195.001 35.6516 193.376 37.277 191.371 37.277C191.317 37.277 191.263 37.2758 191.209 37.2734V37.3675H183.514C183.474 37.368 183.435 37.3682 183.395 37.3682C183.356 37.3682 183.316 37.368 183.277 37.3675H162.883Z"
+      fill="#FFE4B0" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M11.2015 71.806H34.194H55.4179H70.7463V71.7836C70.9408 71.7984 71.1375 71.806 71.3358 71.806C75.5686 71.806 79 68.3746 79 64.1418C79 60.0928 75.8602 56.7772 71.8825 56.4968C71.9109 56.1011 71.9254 55.7015 71.9254 55.2985C71.9254 46.1817 64.5347 38.791 55.4179 38.791C54.9277 38.791 54.4425 38.8124 53.9631 38.8543C50.1909 31.7997 42.753 27 34.194 27C21.8212 27 11.791 37.0302 11.791 49.403L11.791 49.4182C11.5958 49.4081 11.3993 49.403 11.2015 49.403C5.01508 49.403 0 54.4181 0 60.6045C0 66.5931 4.69958 71.4841 10.6119 71.7907V71.806H11.2015Z"
+      fill="#FFE4B0" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.175 50.806C138.184 50.8061 138.193 50.8061 138.201 50.8061C138.21 50.8061 138.219 50.8061 138.228 50.806H160.536V50.7976C160.609 50.8031 160.683 50.8059 160.757 50.8059C162.345 50.8059 163.632 49.5189 163.632 47.9312C163.632 46.4125 162.454 45.1688 160.962 45.0637C160.972 44.9153 160.978 44.7654 160.978 44.6143C160.978 41.1947 158.206 38.4226 154.786 38.4226C154.603 38.4226 154.421 38.4306 154.241 38.4463C152.826 35.8002 150.037 34 146.826 34C142.185 34 138.423 37.7621 138.423 42.403L138.423 42.4089C138.35 42.4051 138.276 42.4031 138.201 42.4031C135.881 42.4031 134 44.2842 134 46.6046C134 48.851 135.763 50.6857 137.981 50.8004V50.806H138.175Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M48.4926 62.3333C48.495 62.3333 48.4975 62.3333 48.5 62.3333C48.5025 62.3333 48.505 62.3333 48.5074 62.3333H65.1667H66V62.2743C68.8269 61.8699 71 59.4387 71 56.5C71 53.2783 68.3883 50.6667 65.1667 50.6667C64.1208 50.6667 63.1392 50.9419 62.2904 51.4239C62.5365 50.3781 62.6667 49.2876 62.6667 48.1667C62.6667 40.3426 56.324 34 48.5 34C42.7269 34 37.7603 37.4532 35.5532 42.4068C35.153 42.3581 34.7454 42.333 34.332 42.333C29.1734 42.333 24.9271 46.2392 24.3895 51.2551C23.6176 50.8782 22.7502 50.6667 21.8333 50.6667C18.6117 50.6667 16 53.2783 16 56.5C16 59.7217 18.6117 62.3333 21.8333 62.3333C22.1163 62.3333 22.3945 62.3132 22.6667 62.2743V62.3333H48.4926Z"
+      fill="white" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8662)"
+      fill="#A0C7F0" />
+    <path
+      d="M99.7216 74.0342L194.231 126.054L194.234 128.601L99.7216 183.168L5.20884 128.601L5.20904 126.053L99.7216 74.0342Z"
+      fill="#4277AF" />
+    <rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4873)"
+      fill="url(#paint0_linear_14133_131667)" />
+    <rect width="80.5611" height="80.5611" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 86.291)"
+      fill="#769FCB" />
+    <path d="M174.22 117.5C174.553 115.167 174.22 110.3 170.22 109.5C165.22 108.5 172.72 119 174.22 117.5Z"
+      fill="#3D8C5C" />
+    <path d="M174.72 118C177.386 115.166 181.92 108.4 178.72 104C174.72 98.4998 172.22 120 174.72 118Z"
+      fill="#66AF82" />
+    <path
+      d="M179.04 118.156C178.873 116.823 179.14 114.356 181.54 115.156C184.54 116.156 180.041 119.156 179.04 118.156Z"
+      fill="#66AF82" />
+    <path d="M178.483 112.5C178.316 113.667 177.485 117 178.483 119" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M175.077 110.621C174.257 111.094 174.257 111.861 175.077 112.334L175.374 112.505L175.077 112.677C174.257 113.15 174.257 113.917 175.077 114.39C175.896 114.863 177.224 114.863 178.044 114.39L178.341 114.219L178.637 114.39C179.456 114.863 180.785 114.863 181.604 114.39C182.424 113.917 182.424 113.15 181.604 112.677L181.308 112.505L181.604 112.334C182.424 111.861 182.424 111.094 181.604 110.621C180.785 110.148 179.457 110.148 178.637 110.621L178.341 110.792L178.044 110.621C177.224 110.148 175.896 110.148 175.077 110.621Z"
+      fill="#E9BAFF" />
+    <circle cx="1.71307" cy="1.71307" r="1.71307" transform="matrix(0.866025 -0.5 0.866025 0.5 175.373 112.506)"
+      fill="#FFEDAC" />
+    <path
+      d="M91.9821 170.889C91.2364 169.722 89.4466 167.53 88.2535 168.09C86.762 168.79 92.355 171.589 91.9821 170.889Z"
+      fill="#66AF82" />
+    <path d="M91.5014 166C91.3348 167.166 91.2014 169.9 92.0014 171.5" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M88.0834 163.623C87.2648 164.095 87.2648 164.861 88.0834 165.334L88.3802 165.505L88.0836 165.677C87.2649 166.149 87.2649 166.916 88.0836 167.388C88.9022 167.861 90.2294 167.861 91.048 167.388L91.3447 167.217L91.6408 167.388C92.4594 167.861 93.7866 167.861 94.6053 167.388C95.4239 166.915 95.4239 166.149 94.6053 165.676L94.3092 165.505L94.6054 165.334C95.424 164.862 95.424 164.096 94.6054 163.623C93.7868 163.15 92.4595 163.15 91.6409 163.623L91.3447 163.794L91.0479 163.623C90.2293 163.15 88.902 163.15 88.0834 163.623Z"
+      fill="#FF9F9F" />
+    <circle cx="1.71154" cy="1.71154" r="1.71154" transform="matrix(0.866025 -0.5 0.866025 0.5 88.3789 165.506)"
+      fill="#FFEDAC" />
+    <path
+      d="M21.6976 121.889C22.4433 120.722 24.233 118.53 25.4262 119.09C26.9176 119.79 21.3247 122.589 21.6976 121.889Z"
+      fill="#66AF82" />
+    <path d="M22.1783 117C22.3449 118.167 22.4783 120.9 21.6783 122.5" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M25.8921 114.457C26.7831 114.971 26.7831 115.805 25.8921 116.319L25.5691 116.506L25.8919 116.692C26.7829 117.207 26.7829 118.041 25.8919 118.555C25.001 119.07 23.5565 119.07 22.6655 118.555L22.3427 118.369L22.0204 118.555C21.1294 119.069 19.6849 119.069 18.794 118.555C17.903 118.04 17.903 117.206 18.794 116.692L19.1162 116.506L18.7938 116.32C17.9029 115.805 17.9029 114.971 18.7938 114.457C19.6848 113.943 21.1293 113.943 22.0202 114.457L22.3427 114.643L22.6657 114.457C23.5566 113.942 25.0012 113.942 25.8921 114.457Z"
+      fill="#CF9FFF" />
+    <circle cx="1.86278" cy="1.86278" r="1.86278" transform="matrix(-0.866025 -0.5 -0.866025 0.5 25.5684 116.506)"
+      fill="#FFEDAC" />
+    <path d="M95.5 170.5C95.5 171.5 95.4 173.8 95 175" stroke="#3D8C5C" stroke-linecap="round" />
+    <path d="M95.5 175C95.5 173.833 95.8001 171.8 97 173C98.2 174.2 96.5 174.834 95.5 175Z" fill="#66AF82" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M92.329 168.769C91.5737 169.205 91.5737 169.912 92.329 170.348L92.6028 170.506L92.3291 170.664C91.5739 171.1 91.5739 171.807 92.3291 172.243C93.0844 172.679 94.3088 172.679 95.0641 172.243L95.3378 172.085L95.6109 172.243C96.3662 172.679 97.5907 172.679 98.3459 172.243C99.1012 171.807 99.1012 171.1 98.3459 170.664L98.0727 170.506L98.3461 170.348C99.1013 169.912 99.1013 169.205 98.3461 168.769C97.5908 168.333 96.3663 168.333 95.6111 168.769L95.3378 168.927L95.0639 168.769C94.3087 168.333 93.0842 168.333 92.329 168.769Z"
+      fill="#4277AF" />
+    <circle cx="1.57904" cy="1.57904" r="1.57904" transform="matrix(0.866025 -0.5 0.866025 0.5 92.6035 170.506)"
+      fill="#FFEDAC" />
+    <path d="M18.1797 121.5C18.1797 122.5 18.2797 124.8 18.6797 126" stroke="#3D8C5C" stroke-linecap="round" />
+    <path d="M18.1797 126C18.1797 124.833 17.8796 122.8 16.6797 124C15.4797 125.2 17.1797 125.833 18.1797 126Z"
+      fill="#66AF82" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M21.8866 119.457C22.777 119.971 22.777 120.805 21.8866 121.319L21.5638 121.505L21.8865 121.691C22.7768 122.205 22.7768 123.039 21.8865 123.553C20.9961 124.067 19.5525 124.067 18.6621 123.553L18.3395 123.367L18.0174 123.552C17.1271 124.067 15.6835 124.067 14.7931 123.552C13.9028 123.038 13.9028 122.205 14.7931 121.691L15.1152 121.505L14.793 121.319C13.9026 120.805 13.9026 119.971 14.793 119.457C15.6833 118.943 17.1269 118.943 18.0173 119.457L18.3395 119.643L18.6623 119.457C19.5527 118.943 20.9963 118.943 21.8866 119.457Z"
+      fill="#AF4242" />
+    <circle cx="1.86156" cy="1.86156" r="1.86156" transform="matrix(-0.866025 -0.5 -0.866025 0.5 21.5645 121.505)"
+      fill="#FFEDAC" />
+    <path d="M44 106.623C42.0508 103.814 36.9827 98.9448 32.3045 101.941C26.4568 105.687 42.0508 110.368 44 106.623Z"
+      fill="#3D8C5C" />
+    <path d="M44 105C42.4072 95.2152 38.0749 78.1075 33.4877 87.9555C27.7537 100.265 40.1774 105 44 105Z"
+      fill="#66AF82" />
+    <path d="M127.81 55.6826H156.139V127.461L127.81 143.954L99.4805 160.444V88.6624L127.81 55.6826Z" fill="#EDF7FF" />
+    <path d="M42.8164 55.6826V127.461L71.1458 143.954L99.4752 160.444V88.6624L42.8164 55.6826Z" fill="#A0C7F1" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 89.9647C59.2918 90.3504 58.8735 90.5909 58.5402 90.3968L47.0804 83.7236C46.9266 83.6341 46.832 83.4695 46.832 83.2916V69.9436C46.832 69.5579 47.2503 69.3174 47.5836 69.5115L59.0434 76.1847C59.1972 76.2742 59.2918 76.4388 59.2918 76.6168V89.9647ZM74.6481 99.5494C74.9814 99.7435 75.3997 99.503 75.3997 99.1173V85.7665C75.3997 85.5885 75.3051 85.4239 75.1512 85.3344L63.6915 78.6639C63.3582 78.4699 62.94 78.7104 62.94 79.096V92.4441C62.94 92.6221 63.0346 92.7867 63.1884 92.8762L74.6481 99.5494ZM90.771 108.705C91.1043 108.899 91.5225 108.659 91.5225 108.273V94.9221C91.5225 94.7441 91.4278 94.5795 91.274 94.49L79.8113 87.8194C79.478 87.6254 79.0598 87.8659 79.0598 88.2515V101.603C79.0598 101.781 79.1545 101.945 79.3084 102.035L90.771 108.705ZM90.771 130.231C91.1043 130.425 91.5225 130.184 91.5225 129.799V116.448C91.5225 116.269 91.4278 116.105 91.274 116.015L79.8113 109.345C79.478 109.151 79.0598 109.391 79.0598 109.777V123.128C79.0598 123.306 79.1545 123.471 79.3084 123.56L90.771 130.231ZM75.3997 120.645C75.3997 121.031 74.9815 121.271 74.6482 121.077L63.1884 114.407C63.0346 114.317 62.94 114.153 62.94 113.975V100.624C62.94 100.238 63.3582 99.9978 63.6915 100.192L75.1512 106.862C75.3051 106.952 75.3997 107.116 75.3997 107.294V120.645ZM58.5403 111.925C58.8736 112.119 59.2918 111.878 59.2918 111.493V98.1418C59.2918 97.9638 59.1972 97.7992 59.0433 97.7097L47.5836 91.0392C47.2502 90.8452 46.832 91.0856 46.832 91.4713V104.822C46.832 105 46.9267 105.165 47.0805 105.254L58.5403 111.925Z"
+      fill="#405C76" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M59.2918 84.8462L55.2678 88.4914L47.0804 83.7238C46.9266 83.6342 46.832 83.4697 46.832 83.2917V81.6267L54.4697 73.5215L59.0434 76.1848C59.1972 76.2744 59.2918 76.4389 59.2918 76.6169V84.8462ZM50.5495 92.7657L47.5836 91.0393C47.2502 90.8453 46.832 91.0858 46.832 91.4715V96.1333L50.5495 92.7657ZM48.906 106.317L58.2356 97.2397L59.0433 97.7098C59.1972 97.7994 59.2918 97.9639 59.2918 98.1419V110.865L58.1092 111.674L48.906 106.317ZM65.8714 115.969L63.3859 114.522L74.7373 106.621L75.1512 106.862C75.3051 106.952 75.3997 107.117 75.3997 107.295V109.821L65.8714 115.969ZM91.5225 99.4197L83.5989 104.532L80.408 102.675L91.5225 94.939V99.4197ZM72.2231 83.6301L75.1512 85.3345C75.3051 85.4241 75.3997 85.5887 75.3997 85.7667V99.1174C75.3997 99.5031 74.9814 99.7436 74.6481 99.5495L63.1884 92.8764C63.0899 92.819 63.0157 92.731 62.975 92.6283L72.2231 83.6301ZM65.1677 79.5233L62.94 81.5414V79.0962C62.94 78.7105 63.3582 78.47 63.6915 78.6641L65.1677 79.5233ZM86.9328 91.9638L79.0598 97.3476V88.2517C79.0598 87.866 79.478 87.6255 79.8113 87.8195L86.9328 91.9638ZM69.7464 103.716L63.6915 100.192C63.3582 99.9979 62.94 100.238 62.94 100.624V108.371L69.7464 103.716Z"
+      fill="#333B51" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M139.47 83.8308C139.136 84.0248 138.718 83.7844 138.718 83.3987V70.0506C138.718 69.8726 138.813 69.708 138.967 69.6185L150.426 62.948C150.76 62.754 151.178 62.9945 151.178 63.3801V76.7282C151.178 76.9062 151.083 77.0708 150.929 77.1603L139.47 83.8308ZM139.47 104.671C139.136 104.865 138.718 104.624 138.718 104.239V90.8877C138.718 90.7097 138.813 90.5452 138.967 90.4556L150.426 83.7851C150.76 83.5911 151.178 83.8316 151.178 84.2173V97.5654C151.178 97.7433 151.083 97.9079 150.929 97.9975L139.47 104.671ZM111.48 119.446C111.48 119.832 111.899 120.072 112.232 119.878L123.692 113.208C123.846 113.118 123.94 112.954 123.94 112.776V99.4278C123.94 99.0421 123.522 98.8016 123.189 98.9956L111.729 105.666C111.575 105.756 111.48 105.92 111.48 106.098V119.446ZM112.232 99.0388C111.899 99.2328 111.48 98.9924 111.48 98.6067V85.2586C111.48 85.0806 111.575 84.9161 111.729 84.8265L123.189 78.156C123.522 77.962 123.94 78.2025 123.94 78.5882V91.9362C123.94 92.1142 123.846 92.2788 123.692 92.3683L112.232 99.0388Z"
+      fill="#FF9C9B" />
+    <path
+      d="M138.479 137.789C138.479 137.966 138.385 138.131 138.231 138.221L128.475 143.916L127.502 144.484C127.169 144.679 126.75 144.438 126.75 144.052V120.947C126.75 120.769 126.844 120.605 126.998 120.515L137.727 114.254C138.061 114.059 138.479 114.3 138.479 114.686V137.789Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.42 138.022C138.458 137.951 138.479 137.871 138.479 137.788V114.685C138.479 114.299 138.06 114.059 137.727 114.253L136.719 114.842C136.719 114.852 136.72 114.862 136.72 114.873V136.691C136.72 136.88 136.827 137.054 136.996 137.138L138.166 137.723C138.295 137.788 138.382 137.898 138.42 138.022Z"
+      fill="#606060" />
+    <path
+      d="M41.4996 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H99.4826C100.074 21 100.596 21.2971 100.911 21.7501L156.378 53.9423C156.837 54.0058 157.238 54.2481 157.512 54.6001L157.526 54.6058H157.52C157.748 54.9059 157.893 55.2751 157.893 55.6819C157.893 56.657 157.108 57.4445 156.141 57.4445H128.611L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273C99.0787 90.4273 98.669 90.2859 98.3401 89.9974L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885H41.4996Z"
+      fill="#FF5D5C" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path
+      d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M156.052 54.4755C156.437 54.5698 156.773 54.7933 157.012 55.1001L157.026 55.1058H157.02C157.248 55.4059 157.393 55.7751 157.393 56.1819C157.393 57.157 156.608 57.9446 155.641 57.9446H128.111L116.535 71.4225L99 90V86.5L128 54L156.052 54.4755Z"
+      fill="#DA3635" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M107.03 82.649L100.807 89.8156C100.464 90.2154 99.9854 90.423 99.5 90.4271V85.9999L127.826 54.2554L127.98 58.0229L107.03 82.649Z"
+      fill="#FF5D5C" />
+    <path d="M74.1914 59.6488V42.38L81.5767 38.0815V50.6076L74.1914 59.6488Z" fill="#EDF7FF" />
+    <path d="M66.8008 55.4629L74.186 59.7613V42.38L66.8008 38.0815V55.4629Z" fill="#A0C7F1" />
+    <path d="M66.8008 38.0816L74.186 33.7803L81.5713 38.0816L74.186 42.3801L66.8008 38.0816Z" fill="white" />
+    <path d="M69.6328 38.0851L74.2226 35.2793L78.8123 38.0851L74.2226 40.889L69.6328 38.0851Z" fill="#A0C7F1" />
+    <path d="M69.6328 38.0851L74.2226 35.2793V38.0851V40.889L69.6328 38.0851Z" fill="#769FCB" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M48.7188 70.173L47.5836 69.512C47.2503 69.3179 46.832 69.5584 46.832 69.9441V83.292C46.832 83.47 46.9266 83.6346 47.0804 83.7241L58.5402 90.3973C58.8735 90.5914 59.2918 90.3509 59.2918 89.9652V89.2929L48.9671 83.2808C48.8133 83.1912 48.7188 83.0267 48.7188 82.8487V70.173ZM64.8267 79.3252V92.0013C64.8267 92.1792 64.9213 92.3438 65.0751 92.4334L75.3997 98.4455V99.1178C75.3997 99.5035 74.9814 99.744 74.6481 99.5499L63.1884 92.8767C63.0346 92.7872 62.94 92.6226 62.94 92.4446V79.0965C62.94 78.7108 63.3582 78.4704 63.6915 78.6644L64.8267 79.3252ZM80.9466 88.4805V101.16C80.9466 101.338 81.0412 101.502 81.1951 101.592L91.5225 107.602V108.274C91.5225 108.659 91.1043 108.9 90.771 108.706L79.3084 102.035C79.1545 101.946 79.0598 101.781 79.0598 101.603V88.252C79.0598 87.8663 79.478 87.6259 79.8113 87.8199L80.9466 88.4805ZM80.9466 110.006V122.685C80.9466 122.863 81.0412 123.028 81.1951 123.117L91.5225 129.127V129.799C91.5225 130.185 91.1043 130.425 90.771 130.231L79.3084 123.561C79.1545 123.471 79.0598 123.306 79.0598 123.128V109.777C79.0598 109.392 79.478 109.151 79.8113 109.345L80.9466 110.006ZM64.8267 100.853L63.6915 100.192C63.3582 99.9983 62.94 100.239 62.94 100.624V113.975C62.94 114.153 63.0346 114.318 63.1884 114.407L74.6482 121.078C74.9815 121.272 75.3997 121.032 75.3997 120.646V119.974L65.0751 113.964C64.9213 113.875 64.8267 113.71 64.8267 113.532V100.853ZM48.7188 91.7004V104.379C48.7188 104.557 48.8134 104.722 48.9672 104.812L59.2918 110.821V111.493C59.2918 111.879 58.8736 112.119 58.5403 111.925L47.0805 105.255C46.9267 105.165 46.832 105.001 46.832 104.823V91.4718C46.832 91.0861 47.2502 90.8457 47.5836 91.0397L48.7188 91.7004Z"
+      fill="#333333" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M151.174 66.3265L141.979 82.3682L139.466 83.8313C139.132 84.0253 138.714 83.7849 138.714 83.3992V70.0511C138.714 69.8731 138.809 69.7085 138.963 69.619L150.422 62.9485C150.756 62.7545 151.174 62.9949 151.174 63.3806V66.3265ZM111.477 116.756L120.833 100.365L123.185 98.9961C123.518 98.8021 123.936 99.0426 123.936 99.4282V112.776C123.936 112.954 123.842 113.119 123.688 113.208L112.228 119.879C111.895 120.073 111.477 119.832 111.477 119.447V116.756ZM150.267 83.876L139.641 104.569L139.466 104.671C139.132 104.865 138.714 104.625 138.714 104.239V102.256L147.083 85.7292L150.267 83.876Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M138.718 82.3634V83.3992C138.718 83.7849 139.136 84.0253 139.47 83.8313L150.929 77.1608C151.083 77.0713 151.178 76.9067 151.178 76.7287V63.3806C151.178 62.9949 150.76 62.7545 150.426 62.9485L149.416 63.5365V75.8488C149.416 76.0268 149.322 76.1914 149.168 76.2809L138.718 82.3634ZM138.718 103.203V104.239C138.718 104.625 139.136 104.865 139.47 104.671L150.929 97.9979C151.083 97.9084 151.178 97.7438 151.178 97.5659V84.2178C151.178 83.8321 150.76 83.5916 150.426 83.7856L149.416 84.3736V96.686C149.416 96.8639 149.322 97.0285 149.168 97.1181L138.718 103.203ZM111.48 118.411L121.93 112.329C122.084 112.239 122.179 112.074 122.179 111.896V99.5841L123.189 98.9961C123.522 98.8021 123.94 99.0426 123.94 99.4282V112.776C123.94 112.954 123.846 113.119 123.692 113.208L112.232 119.879C111.899 120.073 111.48 119.832 111.48 119.447V118.411ZM111.48 97.5714V98.6072C111.48 98.9929 111.899 99.2333 112.232 99.0393L123.692 92.3688C123.846 92.2793 123.94 92.1147 123.94 91.9367V78.5886C123.94 78.203 123.522 77.9625 123.189 78.1565L122.179 78.7445V91.0568C122.179 91.2348 122.084 91.3994 121.93 91.4889L111.48 97.5714Z"
+      fill="#D86867" />
+    <path d="M100.219 160.5C100.385 153.5 102.819 139.8 111.219 141C121.719 142.5 102.719 162.999 100.219 160.5Z"
+      fill="#66AF82" />
+    <path d="M100.219 160.5C101.552 156 102.419 146.4 95.219 144C86.219 141 95.219 164.5 100.219 160.5Z"
+      fill="#3D8C5C" />
+  </g>
+  <defs>
+    <linearGradient id="paint0_linear_14133_131667" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+    <clipPath id="clip0_14133_131667">
+      <rect width="200" height="200" fill="white" />
+    </clipPath>
+  </defs>
+</svg>
\ No newline at end of file
diff --git a/src/assets/ico/arrowBack.svg b/src/assets/ico/arrowBack.svg
index 2fc7c8670..60282a83c 100644
--- a/src/assets/ico/arrowBack.svg
+++ b/src/assets/ico/arrowBack.svg
@@ -1,4 +1,5 @@
 <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5" stroke-linecap="round"/>
-</svg>
+  <path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
+    stroke-linejoin="round" />
+  <line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5" stroke-linecap="round" />
+</svg>
\ No newline at end of file
diff --git a/src/assets/ico/sprite.svg b/src/assets/ico/sprite.svg
index d7f79f954..0591e89ab 100644
--- a/src/assets/ico/sprite.svg
+++ b/src/assets/ico/sprite.svg
@@ -1723,7 +1723,7 @@
       fill="#333333" />
   </symbol>
 
-  <symbol id="arrowBack" width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+  <symbol id="arrowBack" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path d="M20 11L11 20L20 29" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
       stroke-linejoin="round" />
     <line x1="12.5679" y1="20.0684" x2="29.8861" y2="20.0684" stroke="black" stroke-width="1.5"
@@ -2715,6 +2715,60 @@
       fill="white" />
   </symbol>
 
+  <symbol id="arrowBackV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path id="Vector"
+      d="M15.8332 9.1666H6.5249L10.5916 5.09993C10.9166 4.77494 10.9166 4.2416 10.5916 3.9166C10.2666 3.5916 9.74157 3.5916 9.41657 3.9166L3.9249 9.40827C3.5999 9.73327 3.5999 10.2583 3.9249 10.5833L9.41657 16.0749C9.74157 16.3999 10.2666 16.3999 10.5916 16.0749C10.9166 15.7499 10.9166 15.2249 10.5916 14.8999L6.5249 10.8333H15.8332C16.2916 10.8333 16.6666 10.4583 16.6666 9.99994C16.6666 9.5416 16.2916 9.1666 15.8332 9.1666Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="arrowForwardV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M4.66683 10.8342H13.9752L9.9085 14.9009C9.5835 15.2259 9.5835 15.7592 9.9085 16.0842C10.2335 16.4092 10.7585 16.4092 11.0835 16.0842L16.5752 10.5926C16.9002 10.2676 16.9002 9.74258 16.5752 9.41758L11.0918 3.91758C10.7668 3.59258 10.2418 3.59258 9.91683 3.91758C9.59183 4.24258 9.59183 4.76758 9.91683 5.09258L13.9752 9.16758H4.66683C4.2085 9.16758 3.8335 9.54258 3.8335 10.0009C3.8335 10.4592 4.2085 10.8342 4.66683 10.8342Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="refreshV3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none">
+    <path
+      d="M15.2086 5.29158C13.8502 3.93325 11.9252 3.14991 9.80855 3.36658C6.75022 3.67491 4.23355 6.15825 3.89189 9.21658C3.43355 13.2582 6.55855 16.6666 10.5002 16.6666C13.1586 16.6666 15.4419 15.1082 16.5086 12.8666C16.7752 12.3082 16.3752 11.6666 15.7586 11.6666C15.4502 11.6666 15.1586 11.8332 15.0252 12.1082C14.0836 14.1332 11.8252 15.4166 9.35855 14.8666C7.50855 14.4582 6.01689 12.9499 5.62522 11.0999C4.92522 7.86658 7.38355 4.99991 10.5002 4.99991C11.8836 4.99991 13.1169 5.57491 14.0169 6.48325L12.7586 7.74158C12.2336 8.26658 12.6002 9.16658 13.3419 9.16658H16.3336C16.7919 9.16658 17.1669 8.79158 17.1669 8.33325V5.34158C17.1669 4.59991 16.2669 4.22491 15.7419 4.74991L15.2086 5.29158Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="addV3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none">
+    <path
+      d="M10.5002 5.83325C10.0418 5.83325 9.66683 6.20825 9.66683 6.66659V9.16659H7.16683C6.7085 9.16659 6.3335 9.54159 6.3335 9.99992C6.3335 10.4583 6.7085 10.8333 7.16683 10.8333H9.66683V13.3333C9.66683 13.7916 10.0418 14.1666 10.5002 14.1666C10.9585 14.1666 11.3335 13.7916 11.3335 13.3333V10.8333H13.8335C14.2918 10.8333 14.6668 10.4583 14.6668 9.99992C14.6668 9.54159 14.2918 9.16659 13.8335 9.16659H11.3335V6.66659C11.3335 6.20825 10.9585 5.83325 10.5002 5.83325Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="editV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M3 14.5501V17.0835C3 17.3168 3.18333 17.5001 3.41667 17.5001H5.95C6.05833 17.5001 6.16667 17.4585 6.24167 17.3751L15.3417 8.28346L12.2167 5.15846L3.125 14.2501C3.04167 14.3335 3 14.4335 3 14.5501ZM17.7583 5.8668C18.0833 5.5418 18.0833 5.0168 17.7583 4.6918L15.8083 2.7418C15.4833 2.4168 14.9583 2.4168 14.6333 2.7418L13.1083 4.2668L16.2333 7.3918L17.7583 5.8668Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="deleteV3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none">
+    <path
+      d="M5.49984 15.8333C5.49984 16.75 6.24984 17.5 7.1665 17.5H13.8332C14.7498 17.5 15.4998 16.75 15.4998 15.8333V7.5C15.4998 6.58333 14.7498 5.83333 13.8332 5.83333H7.1665C6.24984 5.83333 5.49984 6.58333 5.49984 7.5V15.8333ZM15.4998 3.33333H13.4165L12.8248 2.74167C12.6748 2.59167 12.4582 2.5 12.2415 2.5H8.75817C8.5415 2.5 8.32484 2.59167 8.17484 2.74167L7.58317 3.33333H5.49984C5.0415 3.33333 4.6665 3.70833 4.6665 4.16667C4.6665 4.625 5.0415 5 5.49984 5H15.4998C15.9582 5 16.3332 4.625 16.3332 4.16667C16.3332 3.70833 15.9582 3.33333 15.4998 3.33333Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="emailV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M17.1667 3.33301H3.83341C2.91675 3.33301 2.16675 4.08301 2.16675 4.99967V14.9997C2.16675 15.9163 2.91675 16.6663 3.83341 16.6663H17.1667C18.0834 16.6663 18.8334 15.9163 18.8334 14.9997V4.99967C18.8334 4.08301 18.0834 3.33301 17.1667 3.33301ZM16.8334 6.87467L11.3834 10.283C10.8417 10.6247 10.1584 10.6247 9.61675 10.283L4.16675 6.87467C3.95841 6.74134 3.83341 6.51634 3.83341 6.27467C3.83341 5.71634 4.44175 5.38301 4.91675 5.67467L10.5001 9.16634L16.0834 5.67467C16.5584 5.38301 17.1667 5.71634 17.1667 6.27467C17.1667 6.51634 17.0417 6.74134 16.8334 6.87467Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="lockV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M15.4999 6.66634H14.6666V4.99967C14.6666 2.69967 12.7999 0.833008 10.4999 0.833008C8.19992 0.833008 6.33325 2.69967 6.33325 4.99967V6.66634H5.49992C4.58325 6.66634 3.83325 7.41634 3.83325 8.33301V16.6663C3.83325 17.583 4.58325 18.333 5.49992 18.333H15.4999C16.4166 18.333 17.1666 17.583 17.1666 16.6663V8.33301C17.1666 7.41634 16.4166 6.66634 15.4999 6.66634ZM10.4999 14.1663C9.58325 14.1663 8.83325 13.4163 8.83325 12.4997C8.83325 11.583 9.58325 10.833 10.4999 10.833C11.4166 10.833 12.1666 11.583 12.1666 12.4997C12.1666 13.4163 11.4166 14.1663 10.4999 14.1663ZM7.99992 6.66634V4.99967C7.99992 3.61634 9.11659 2.49967 10.4999 2.49967C11.8833 2.49967 12.9999 3.61634 12.9999 4.99967V6.66634H7.99992Z"
+      fill="currentColor" />
+  </symbol>
+
+  <symbol id="appointmentV3" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
+    <path
+      d="M15.8333 3.33366H15V2.50033C15 2.04199 14.625 1.66699 14.1667 1.66699C13.7083 1.66699 13.3333 2.04199 13.3333 2.50033V3.33366H6.66667V2.50033C6.66667 2.04199 6.29167 1.66699 5.83333 1.66699C5.375 1.66699 5 2.04199 5 2.50033V3.33366H4.16667C3.24167 3.33366 2.50833 4.08366 2.50833 5.00033L2.5 16.667C2.5 17.5837 3.24167 18.3337 4.16667 18.3337H15.8333C16.75 18.3337 17.5 17.5837 17.5 16.667V5.00033C17.5 4.08366 16.75 3.33366 15.8333 3.33366ZM15.8333 15.8337C15.8333 16.292 15.4583 16.667 15 16.667H5C4.54167 16.667 4.16667 16.292 4.16667 15.8337V7.50033H15.8333V15.8337ZM5.83333 9.16699H7.5V10.8337H5.83333V9.16699ZM9.16667 9.16699H10.8333V10.8337H9.16667V9.16699ZM12.5 9.16699H14.1667V10.8337H12.5V9.16699Z"
+      fill="currentColor" />
+  </symbol>
+
   <symbol id="chevronRight" width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
     <path d="M15 25.5L22.5 18L15 10.5V25.5Z" fill="#949494" />
   </symbol>
-- 
GitLab


From 64f35b5933417587c2154e33c769e72bc072625c Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:49:33 +0100
Subject: [PATCH 48/77] update button

---
 src/app/map/components/map.component.scss | 47 ++++++++++++-----------
 src/app/map/components/map.component.ts   |  2 +-
 2 files changed, 25 insertions(+), 24 deletions(-)

diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index a16f3745f..e331b96d1 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -63,33 +63,18 @@
 ::ng-deep .leaflet-popup {
   border-radius: 6px;
   bottom: -15px !important;
-  h1 {
-    color: $grey-1;
-    @include font-bold-20;
-    font-size: 18px;
-    margin: 0;
+
+  &.orientation {
+    padding: 0;
+    text-align: -webkit-center;
   }
-  p {
-    color: $grey-3;
-    @include font-regular-16;
+
+  button {
+    @include btn-search-filter;
+    @include font-bold-14;
     font-size: 16px;
-    margin: 0 0 13px 0;
-    font-style: italic;
   }
-  .pop-up {
-    text-align: center;
-    padding-top: 20px;
-    &.orientation {
-      padding: 0;
-      text-align: -webkit-center;
-    }
 
-    button {
-      @include btn-search-filter;
-      @include font-bold-14;
-      font-size: 16px;
-    }
-  }
   span {
     margin-right: 4px;
     &.eye {
@@ -102,6 +87,22 @@
 }
 ::ng-deep .leaflet-popup-content {
   width: 240px;
+  margin: 16px;
+  display: flex;
+  flex-direction: column;
+  gap: 12px;
+  text-align: center;
+  h1 {
+    @include font-bold-18;
+  }
+  p {
+    color: $grey-3;
+    @include font-regular-16;
+    margin: 0;
+    // font-size: 16px;
+    // margin: 0 0 13px 0;
+    // font-style: italic;
+  }
 }
 ::ng-deep .leaflet-popup-tip-container {
   display: none;
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index c4f30ca5f..fd52dfbe4 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -222,7 +222,7 @@ export class MapComponent implements OnChanges {
       '<p>' +
       (structure.structureType?.name || '') +
       '</p>' +
-      '<div class="pop-up"><button type="button" class="btnShowDetails">Voir</button></div>'
+      '<button type="button" class="btnShowDetails">Voir la structure</button>'
     );
   }
 
-- 
GitLab


From c4ba8fc45fe2809c5240ff25cf83c8abf440e7e9 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 14:53:18 +0100
Subject: [PATCH 49/77] Revert "update button"

This reverts commit 64f35b5933417587c2154e33c769e72bc072625c.
---
 src/app/map/components/map.component.scss | 47 +++++++++++------------
 src/app/map/components/map.component.ts   |  2 +-
 2 files changed, 24 insertions(+), 25 deletions(-)

diff --git a/src/app/map/components/map.component.scss b/src/app/map/components/map.component.scss
index e331b96d1..a16f3745f 100644
--- a/src/app/map/components/map.component.scss
+++ b/src/app/map/components/map.component.scss
@@ -63,18 +63,33 @@
 ::ng-deep .leaflet-popup {
   border-radius: 6px;
   bottom: -15px !important;
-
-  &.orientation {
-    padding: 0;
-    text-align: -webkit-center;
+  h1 {
+    color: $grey-1;
+    @include font-bold-20;
+    font-size: 18px;
+    margin: 0;
   }
-
-  button {
-    @include btn-search-filter;
-    @include font-bold-14;
+  p {
+    color: $grey-3;
+    @include font-regular-16;
     font-size: 16px;
+    margin: 0 0 13px 0;
+    font-style: italic;
   }
+  .pop-up {
+    text-align: center;
+    padding-top: 20px;
+    &.orientation {
+      padding: 0;
+      text-align: -webkit-center;
+    }
 
+    button {
+      @include btn-search-filter;
+      @include font-bold-14;
+      font-size: 16px;
+    }
+  }
   span {
     margin-right: 4px;
     &.eye {
@@ -87,22 +102,6 @@
 }
 ::ng-deep .leaflet-popup-content {
   width: 240px;
-  margin: 16px;
-  display: flex;
-  flex-direction: column;
-  gap: 12px;
-  text-align: center;
-  h1 {
-    @include font-bold-18;
-  }
-  p {
-    color: $grey-3;
-    @include font-regular-16;
-    margin: 0;
-    // font-size: 16px;
-    // margin: 0 0 13px 0;
-    // font-style: italic;
-  }
 }
 ::ng-deep .leaflet-popup-tip-container {
   display: none;
diff --git a/src/app/map/components/map.component.ts b/src/app/map/components/map.component.ts
index fd52dfbe4..c4f30ca5f 100644
--- a/src/app/map/components/map.component.ts
+++ b/src/app/map/components/map.component.ts
@@ -222,7 +222,7 @@ export class MapComponent implements OnChanges {
       '<p>' +
       (structure.structureType?.name || '') +
       '</p>' +
-      '<button type="button" class="btnShowDetails">Voir la structure</button>'
+      '<div class="pop-up"><button type="button" class="btnShowDetails">Voir</button></div>'
     );
   }
 
-- 
GitLab


From 4f08e8fdb1c512f5ad47883f45566280ebc6c54e Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 16:31:59 +0100
Subject: [PATCH 50/77] fix merge

---
 src/app/shared/components/index.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index 5a3097dfe..2343e3682 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -6,7 +6,6 @@ import { AddressAutocompleteComponent } from './address-autocomplete/address-aut
 import { AppointmentChoiceComponent } from './appointment-choice/appointment-choice.component';
 import { ButtonComponent } from './button/button.component';
 import { CheckboxFormComponent } from './checkbox-form/checkbox-form.component';
-import { CustomModalComponent } from './custom-modal/custom-modal.component';
 import { GoBackComponent } from './go-back/go-back.component';
 import { HourPickerComponent } from './hour-picker/hour-picker.component';
 import { LogoCardComponent } from './logo-card/logo-card.component';
@@ -41,7 +40,6 @@ export {
   CollapseComponent,
   CollapseContentComponent,
   CollapseHeaderComponent,
-  CustomModalComponent,
   GoBackComponent,
   HourPickerComponent,
   InformationStepComponent,
-- 
GitLab


From fe736553833a9c9d13c6afd0d462df8e52d9276f Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 16:42:24 +0100
Subject: [PATCH 51/77] adjust width

---
 src/app/form/form-view/form-view.component.scss               | 1 -
 .../structure-web-and-social-network.component.html           | 2 +-
 src/styles.scss                                               | 4 ++++
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index a9fcdef85..424b08be8 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -25,7 +25,6 @@
   padding: 32px 48px;
   display: flex;
   justify-content: center;
-  min-width: 600px;
 
   @media #{$tablet} {
     margin: 0px 0.5rem;
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index 992a82b68..0912d0be9 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -1,5 +1,5 @@
+<app-go-back [active]="isEditMode" (action)="goBack()" />
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Votre présence sur internet et les réseaux sociaux</h3>
     <p>Facultatif</p>
diff --git a/src/styles.scss b/src/styles.scss
index 8d47444d2..5eea1080e 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -189,6 +189,10 @@ form p.notRequired {
 .formView {
   form {
     padding-bottom: 1rem;
+    min-width: 600px;
+    @media #{$tablet} {
+      min-width: auto;
+    }
   }
 }
 
-- 
GitLab


From d5e27db56a532885a65da2428609ce0965cbcb04 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Mon, 11 Dec 2023 16:42:30 +0100
Subject: [PATCH 52/77] update ico

---
 .../information-step.component.html           |   5 +-
 src/assets/form/formTime.svg                  | 433 ++++++++----------
 2 files changed, 195 insertions(+), 243 deletions(-)

diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index 86d40a669..e146141b8 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -39,11 +39,8 @@
 <!-- An attempt to create a structure has been made, some info are needed -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureFormTime">
   <div class="information-step-container structure-time no-max-width">
-    <h3>
-      Nous vous proposons de prendre 10 minutes afin de renseigner les informations de la structure et la créer sur
-      Rés'in.
-    </h3>
     <img src="../../assets/form/formTime.svg" alt="" />
+    <h3>10 minutes sont nécessaires pour renseigner les informations et créer la structure</h3>
     <p>Informations dont il faut vous munir :</p>
     <ul>
       <li>les coordonnées de la structure</li>
diff --git a/src/assets/form/formTime.svg b/src/assets/form/formTime.svg
index 12c7bf45c..eec42f06a 100644
--- a/src/assets/form/formTime.svg
+++ b/src/assets/form/formTime.svg
@@ -1,240 +1,195 @@
 <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
-<line x1="0.5" y1="-0.5" x2="165.5" y2="-0.5" transform="matrix(0.866025 0.5 -0.866025 0.5 32 28.667)" stroke="#706F6F" stroke-linecap="round" stroke-dasharray="5 8"/>
-<path d="M102.383 152.538L121.817 163.637C128.093 167.221 128.12 173.068 121.878 176.672L103.765 187.13C97.5474 190.72 87.4663 190.72 81.2485 187.13L37.9999 162.16" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M105.243 146.326C108.9 148.538 108.923 152.129 105.288 154.341C101.653 156.553 95.7441 156.553 92.0867 154.341C88.4294 152.129 88.4142 148.538 92.0489 146.326C95.6836 144.114 101.585 144.114 105.243 146.326Z" fill="white" stroke="#DA3635" stroke-miterlimit="10"/>
-<path d="M101.955 148.211C103.783 149.382 103.795 151.284 101.977 152.455C100.16 153.626 97.2054 153.626 95.3767 152.455C93.5481 151.284 93.5405 149.382 95.3578 148.211C97.1752 147.04 100.126 147.04 101.955 148.211Z" fill="#EDEDED"/>
-<path d="M98.6667 83.333V150.666" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M127.506 25.0159L117.71 19.3226C111.355 15.6309 102.559 16.148 92.8465 21.7578L102.643 27.4511C112.356 21.8468 121.151 21.3242 127.506 25.0159Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M68.211 104.499L78.0074 110.192C71.7359 106.545 67.844 98.7945 67.8162 87.7805C67.7551 65.608 83.3503 38.5929 102.648 27.4511L92.852 21.7578C73.5539 32.8997 57.9587 59.9148 58.0198 82.0873C58.0476 93.1013 61.9395 100.852 68.211 104.499Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M78.0029 110.185C64.3783 102.267 64.4157 76.7791 78.0865 53.2573C91.7572 29.7354 113.885 17.0864 127.509 25.005C141.134 32.9235 141.096 58.411 127.426 81.9329C113.755 105.455 91.6276 118.104 78.0029 110.185Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M104.706 31.9821C104.094 32.3324 103.605 33.1886 103.605 33.8892L103.633 44.0747C103.633 44.7697 104.128 45.0532 104.739 44.703C105.345 44.3527 105.84 43.5021 105.834 42.8015L105.807 32.616C105.807 31.9154 105.312 31.6319 104.706 31.9821Z" fill="#DA3635"/>
-<path d="M104.867 88.4422C104.255 88.7925 103.766 89.6487 103.766 90.3437L103.794 100.535C103.794 101.23 104.289 101.513 104.9 101.163C105.506 100.813 106.001 99.9622 105.996 99.2616L105.968 89.0705C105.968 88.3755 105.473 88.092 104.867 88.4422Z" fill="#DA3635"/>
-<path d="M75.8004 82.0543C75.1943 82.4046 74.6995 83.2553 74.7051 83.9558C74.7051 84.6563 75.1999 84.9399 75.8115 84.5896L84.6738 79.4746C85.2854 79.1243 85.7747 78.2681 85.7747 77.5676C85.7747 76.8726 85.2798 76.589 84.6682 76.9393L75.8004 82.0543Z" fill="#DA3635"/>
-<path d="M124.932 53.6823C124.321 54.0325 123.831 54.8887 123.831 55.5837C123.831 56.2843 124.326 56.5678 124.938 56.2175L133.8 51.1025C134.406 50.7522 134.901 49.896 134.901 49.1955C134.901 48.5005 134.401 48.217 133.794 48.5672L124.932 53.6823Z" fill="#DA3635"/>
-<path d="M84.2289 53.5881C83.9453 53.7493 83.6673 54.0384 83.4505 54.411C83.0224 55.1504 83.0224 55.9566 83.4561 56.2012L89.7442 59.7873C89.961 59.9096 90.2446 59.8707 90.5226 59.7094C90.8061 59.5482 91.0841 59.2591 91.301 58.8922C91.7291 58.1471 91.7291 57.3465 91.2954 57.1019L85.0072 53.5158C84.7904 53.3824 84.5069 53.4213 84.2289 53.5881Z" fill="#DA3635"/>
-<path d="M119.083 73.4473C118.8 73.6085 118.522 73.8977 118.305 74.2646C117.877 75.0096 117.877 75.8102 118.311 76.0604L124.599 79.6409C124.816 79.7632 125.099 79.7299 125.377 79.5631C125.661 79.4019 125.939 79.1128 126.155 78.7402C126.584 78.0008 126.584 77.2002 126.15 76.95L119.862 73.3639C119.65 73.2416 119.367 73.2861 119.083 73.4473Z" fill="#DA3635"/>
-<path d="M90.6059 89.8877C90.3224 90.049 90.0444 90.3381 89.8276 90.705L83.5783 101.53C83.1502 102.275 83.1502 103.076 83.5839 103.32C83.8007 103.443 84.0843 103.404 84.3678 103.242C84.6514 103.081 84.9294 102.792 85.1462 102.42L91.3954 91.6002C91.8235 90.8552 91.8235 90.0545 91.3899 89.8043C91.173 89.682 90.8895 89.7265 90.6059 89.8877Z" fill="#DA3635"/>
-<path d="M125.238 29.9086C124.954 30.0698 124.676 30.3589 124.46 30.7259L118.21 41.5508C117.782 42.2903 117.782 43.0909 118.216 43.3411C118.433 43.4634 118.716 43.4245 118.994 43.2633C119.278 43.102 119.556 42.8129 119.773 42.446L126.022 31.621C126.45 30.8816 126.45 30.0754 126.016 29.8308C125.805 29.7029 125.522 29.7418 125.238 29.9086Z" fill="#DA3635"/>
-<path d="M119.244 62.0656L115.325 59.7861L100.992 68.9376L104.911 71.2171L119.244 62.0656Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M104.911 71.217L100.992 68.9375L101.214 73.3242L105.134 75.6037L104.911 71.217Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M119.244 62.0654L104.911 71.2169L105.134 75.6036L119.461 66.4521L119.244 62.0654Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M93.1416 49.6565L89.2219 47.377L85.8249 51.5969L89.739 53.8764L93.1416 49.6565Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M89.7386 53.8762L85.8245 51.5967L101.181 73.1798L105.1 75.4594L89.7386 53.8762Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M93.1414 49.6562L89.7388 53.8761L105.101 75.4593L108.498 71.2339L93.1414 49.6562Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M106.374 68.6815C107.186 68.2145 107.919 68.17 108.448 68.4758L109.265 68.9484C108.737 68.6426 108.003 68.6815 107.191 69.1541C105.579 70.0826 104.278 72.3399 104.283 74.1913C104.283 75.1087 104.611 75.7592 105.134 76.0594L104.317 75.5868C103.794 75.281 103.466 74.6361 103.466 73.7187C103.46 71.8673 104.761 69.61 106.374 68.6815Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M105.134 76.0506C103.998 75.3902 104.001 73.2644 105.141 71.3025C106.281 69.3406 108.127 68.2855 109.263 68.9459C110.399 69.6062 110.396 71.7321 109.256 73.694C108.116 75.6559 106.27 76.711 105.134 76.0506Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M42.112 153.449C47.02 156.284 47.0517 160.88 42.1702 163.715C37.294 166.549 29.3557 166.549 24.4478 163.715C19.5398 160.88 19.5134 156.284 24.3949 153.449C29.2764 150.615 37.2041 150.615 42.112 153.449Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 5"/>
-<path d="M40.7054 154.148C44.8253 156.528 44.8517 160.384 40.7583 162.764C36.6648 165.143 30.001 165.143 25.8758 162.764C21.7559 160.384 21.7348 156.528 25.8282 154.148C29.9217 151.768 36.5802 151.768 40.7054 154.148Z" fill="#EDEDED"/>
-<path d="M42.9582 153.91C42.9529 153.958 42.953 154.005 42.9477 154.058C42.9424 154.101 42.9371 154.143 42.9318 154.185C42.9265 154.233 42.9159 154.28 42.9106 154.328C42.9054 154.37 42.8948 154.413 42.8842 154.455C42.8736 154.503 42.863 154.55 42.8472 154.598C42.8366 154.64 42.8207 154.682 42.8102 154.725C42.7943 154.772 42.7784 154.82 42.7626 154.862C42.7467 154.905 42.7308 154.947 42.715 154.989C42.6938 155.037 42.6726 155.084 42.6515 155.137C42.6356 155.18 42.6145 155.217 42.5933 155.259C42.5722 155.306 42.5457 155.354 42.5193 155.402C42.4981 155.439 42.477 155.481 42.4558 155.518C42.4241 155.576 42.3871 155.634 42.35 155.687C42.3289 155.724 42.3077 155.756 42.2813 155.793C42.239 155.857 42.1914 155.92 42.1438 155.978C42.1226 156.005 42.1015 156.031 42.0803 156.063C42.001 156.163 41.9164 156.258 41.8318 156.354C41.8106 156.38 41.7841 156.401 41.763 156.428C41.6942 156.502 41.6202 156.576 41.5462 156.645C41.5091 156.676 41.4774 156.708 41.4404 156.74C41.3928 156.782 41.3452 156.819 41.2976 156.861C41.2553 156.898 41.213 156.935 41.1654 156.972C41.1178 157.015 41.0649 157.052 41.012 157.094C40.9644 157.131 40.9168 157.168 40.8692 157.2C40.8163 157.237 40.7634 157.279 40.7053 157.316C40.6524 157.353 40.6048 157.385 40.5519 157.422C40.4937 157.459 40.4355 157.496 40.3774 157.533C40.3033 157.581 40.2293 157.623 40.1552 157.671C39.9437 157.792 39.7268 157.903 39.5047 158.014C39.4465 158.041 39.3884 158.072 39.3249 158.099C39.1239 158.194 38.9177 158.279 38.7061 158.363C38.6797 158.374 38.6532 158.385 38.6215 158.395C38.3941 158.48 38.1614 158.559 37.9287 158.633C37.7647 158.686 37.5955 158.728 37.4315 158.776C37.3046 158.813 37.1777 158.845 37.0508 158.876C36.8762 158.919 36.6964 158.956 36.5166 158.993C36.3844 159.019 36.2575 159.051 36.1252 159.072C36.0723 159.083 36.0142 159.088 35.9613 159.098C35.7392 159.136 35.517 159.167 35.2896 159.194C35.2262 159.199 35.1574 159.21 35.0939 159.215C34.967 159.231 34.8348 159.236 34.7026 159.247C34.4857 159.262 34.2689 159.278 34.0468 159.289C33.9093 159.294 33.7665 159.299 33.629 159.299C33.4544 159.305 33.2746 159.305 33.1001 159.299C32.952 159.299 32.8039 159.294 32.6558 159.289C32.4919 159.284 32.3279 159.273 32.164 159.262C32.0159 159.252 31.8678 159.241 31.7145 159.225C31.5505 159.21 31.3918 159.194 31.2332 159.173C31.0904 159.157 30.9423 159.136 30.7995 159.109C30.625 159.083 30.4557 159.051 30.2865 159.019C30.1543 158.993 30.0168 158.966 29.8846 158.94C29.6836 158.898 29.4826 158.845 29.2816 158.792C29.1547 158.76 29.0225 158.728 28.8956 158.686C28.8268 158.665 28.7581 158.644 28.6946 158.623C28.4936 158.559 28.2979 158.49 28.1076 158.422C28.0494 158.4 27.9965 158.379 27.9383 158.358C27.7638 158.289 27.5946 158.215 27.4253 158.141C27.3407 158.104 27.2561 158.072 27.1767 158.03C26.9335 157.914 26.6955 157.792 26.4681 157.66C24.5588 156.56 23.6069 155.111 23.6122 153.667L23.6016 157.829C23.5963 159.273 24.5483 160.717 26.4575 161.822C26.6849 161.954 26.9229 162.076 27.1662 162.192C27.2455 162.229 27.3354 162.266 27.4147 162.303C27.5575 162.367 27.7003 162.436 27.8484 162.494C27.8749 162.504 27.9013 162.515 27.9277 162.52C27.9806 162.541 28.0388 162.563 28.097 162.584C28.2874 162.652 28.4883 162.721 28.684 162.785C28.7528 162.806 28.8215 162.827 28.8903 162.848C28.9379 162.864 28.9802 162.88 29.0278 162.89C29.1071 162.912 29.1917 162.928 29.2764 162.949C29.4773 163.002 29.673 163.049 29.8793 163.097C29.9322 163.107 29.985 163.123 30.0379 163.134C30.1173 163.15 30.1966 163.16 30.2759 163.176C30.4452 163.208 30.6197 163.24 30.7889 163.266C30.8577 163.277 30.9264 163.292 30.9952 163.303C31.0692 163.314 31.1486 163.319 31.2226 163.329C31.3813 163.351 31.5452 163.366 31.7092 163.382C31.7885 163.388 31.8625 163.403 31.9419 163.409C32.0159 163.414 32.0847 163.414 32.1587 163.419C32.3227 163.43 32.4866 163.441 32.6506 163.446C32.7352 163.451 32.8145 163.456 32.8991 163.456C32.9626 163.456 33.0313 163.456 33.0948 163.456C33.2693 163.456 33.4492 163.456 33.6237 163.456C33.7136 163.456 33.7982 163.456 33.8881 163.456C33.941 163.456 33.9939 163.446 34.0415 163.446C34.2583 163.435 34.4804 163.419 34.6973 163.403C34.7872 163.398 34.8718 163.393 34.9617 163.388C35.004 163.382 35.0463 163.377 35.0887 163.372C35.1521 163.366 35.2209 163.356 35.2843 163.351C35.5117 163.324 35.7339 163.292 35.956 163.255C36.0089 163.245 36.0671 163.24 36.1199 163.229C36.1464 163.224 36.1728 163.224 36.1993 163.218C36.305 163.197 36.4055 163.171 36.5113 163.15C36.6911 163.113 36.8709 163.076 37.0455 163.033C37.1724 163.002 37.2993 162.965 37.4263 162.933C37.5955 162.885 37.7594 162.843 37.9234 162.79C37.9604 162.779 37.9974 162.769 38.0292 162.758C38.2301 162.695 38.4258 162.626 38.6162 162.552C38.6427 162.541 38.6691 162.531 38.7008 162.52C38.9124 162.436 39.1186 162.351 39.3196 162.256C39.3778 162.229 39.4413 162.203 39.4994 162.171C39.7216 162.065 39.9437 161.949 40.1499 161.827C40.1922 161.806 40.2293 161.78 40.2663 161.759C40.3033 161.738 40.335 161.716 40.3721 161.69C40.4302 161.653 40.4884 161.616 40.5466 161.579C40.5995 161.542 40.6524 161.51 40.7 161.473C40.7529 161.436 40.811 161.399 40.8639 161.357C40.9115 161.32 40.9591 161.283 41.0067 161.246C41.0596 161.209 41.1072 161.166 41.1601 161.129C41.2077 161.092 41.25 161.055 41.2923 161.018C41.3399 160.976 41.3875 160.939 41.4298 160.897C41.451 160.881 41.4668 160.865 41.488 160.849C41.5038 160.833 41.5197 160.817 41.5356 160.801C41.6096 160.727 41.6837 160.659 41.7524 160.585C41.7736 160.558 41.8 160.537 41.8212 160.511C41.9111 160.415 41.9957 160.315 42.0697 160.22C42.075 160.214 42.075 160.209 42.0803 160.209C42.0962 160.188 42.112 160.162 42.1332 160.14C42.1808 160.077 42.2284 160.019 42.2707 159.955C42.2919 159.918 42.3183 159.887 42.3395 159.849C42.3765 159.791 42.4135 159.733 42.4452 159.68C42.4558 159.664 42.4664 159.649 42.4717 159.633C42.4823 159.611 42.4928 159.585 42.5087 159.564C42.5351 159.516 42.5616 159.469 42.5827 159.421C42.6039 159.379 42.6198 159.342 42.6409 159.299C42.6621 159.252 42.6832 159.204 42.7044 159.151C42.715 159.13 42.7255 159.109 42.7308 159.088C42.7361 159.067 42.7414 159.046 42.752 159.03C42.7678 158.982 42.7837 158.935 42.7996 158.892C42.8102 158.85 42.826 158.808 42.8366 158.765C42.8472 158.718 42.863 158.67 42.8736 158.623C42.8789 158.596 42.8895 158.57 42.8948 158.548C42.9001 158.533 42.9001 158.511 42.9054 158.496C42.9159 158.448 42.9212 158.4 42.9265 158.353C42.9318 158.31 42.9371 158.268 42.9424 158.226C42.9477 158.178 42.9477 158.131 42.953 158.078C42.953 158.051 42.9582 158.02 42.9582 157.993C42.9582 157.967 42.9582 157.935 42.9582 157.909L42.9688 153.746C42.9688 153.799 42.9635 153.852 42.9582 153.91Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M40.1076 149.748C43.8996 151.937 43.9208 155.486 40.1552 157.675C36.3897 159.865 30.2601 159.865 26.4681 157.675C22.6761 155.486 22.6602 151.937 26.4258 149.748C30.1913 147.558 36.3156 147.558 40.1076 149.748Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M37.8439 151.466C37.9762 151.546 37.9814 151.673 37.8387 151.752L34.7342 153.555C34.602 153.635 34.602 153.762 34.7395 153.841L37.7011 155.549C37.8334 155.629 37.8386 155.756 37.6959 155.835L37.0559 156.205C36.9184 156.284 36.691 156.284 36.5588 156.21L33.5971 154.502C33.4596 154.423 33.2322 154.423 33.0947 154.502L29.9638 156.321C29.8263 156.401 29.5988 156.401 29.4666 156.327L28.7262 155.898C28.5887 155.819 28.5834 155.687 28.7262 155.607L31.8571 153.788C31.9946 153.709 31.9946 153.577 31.8624 153.503L28.9219 151.805C28.7844 151.726 28.7791 151.593 28.9219 151.514L29.5618 151.144C29.6993 151.064 29.9268 151.064 30.0643 151.144L33.0048 152.841C33.137 152.921 33.3644 152.921 33.4966 152.841L36.6011 151.038C36.7386 150.959 36.966 150.959 37.1035 151.038L37.8439 151.466Z" fill="#DA3635"/>
-<path d="M31.4751 148.098L31.4435 137.776L25.876 134.538L25.9076 144.86C25.9076 145.871 26.2708 146.613 26.8552 146.952L32.4228 150.19C31.8305 149.851 31.4751 149.108 31.4751 148.098Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M27.5896 141.867L22.022 138.629C21.5877 138.376 21.3192 137.816 21.3113 137.065L26.8788 140.303C26.8867 141.061 27.1552 141.614 27.5896 141.867Z" fill="white"/>
-<path d="M27.5896 141.867L22.022 138.629C21.5877 138.376 21.3192 137.816 21.3113 137.065L26.8788 140.303C26.8867 141.061 27.1552 141.614 27.5896 141.867Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M27.5896 141.867L22.022 138.629C21.5877 138.376 21.3192 137.816 21.3113 137.065L26.8788 140.303C26.8867 141.061 27.1552 141.614 27.5896 141.867Z" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M26.8867 140.304L21.3192 137.074L21.3113 135.494L26.8788 138.732L26.8867 140.304Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M26.8791 138.732L21.3115 135.495V135.179L26.8791 138.417V138.732Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M23.0013 142.507L17.4338 139.269C17.0705 139.056 16.8336 138.645 16.7783 138.053L22.3459 141.291C22.4011 141.883 22.6459 142.294 23.0013 142.507Z" fill="white"/>
-<path d="M23.0013 142.507L17.4338 139.269C17.0705 139.056 16.8336 138.645 16.7783 138.053L22.3459 141.291C22.4011 141.883 22.6459 142.294 23.0013 142.507Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M23.0013 142.507L17.4338 139.269C17.0705 139.056 16.8336 138.645 16.7783 138.053L22.3459 141.291C22.4011 141.883 22.6459 142.294 23.0013 142.507Z" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M37.2956 111.589L31.728 108.352L38.109 111.992L43.6686 115.23L37.2956 111.589Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M37.2479 111.557L31.6804 108.319C31.6962 108.327 31.712 108.335 31.7278 108.343L37.2953 111.581C37.2795 111.581 37.2637 111.565 37.2479 111.557Z" fill="white"/>
-<path d="M37.2479 111.557L31.6804 108.319C31.6962 108.327 31.712 108.335 31.7278 108.343L37.2953 111.581C37.2795 111.581 37.2637 111.565 37.2479 111.557Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M37.2479 111.557L31.6804 108.319C31.6962 108.327 31.712 108.335 31.7278 108.343L37.2953 111.581C37.2795 111.581 37.2637 111.565 37.2479 111.557Z" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M18.358 141.765L18.3501 138.566V137.263L18.3185 126.515L12.751 123.277L12.7826 134.025V135.328L12.7905 138.527C12.7905 139.277 13.059 139.838 13.4933 140.09L19.0608 143.328C18.6265 143.076 18.358 142.523 18.358 141.765Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M28.6557 110.428C31.4513 108.817 33.9389 108.888 35.5579 110.294C36.1028 110.775 36.6635 111.234 37.2952 111.589L43.6762 115.23C44.9397 115.948 44.8686 118.388 43.4708 120.536C42.9259 121.366 42.2626 121.997 41.5913 122.384C40.7542 122.866 39.9171 122.969 39.2853 122.613L37.5006 121.587L37.5242 128.931L37.5322 131.45L37.5716 144.733C37.5795 146.668 36.2133 149.022 34.5312 149.993C34.4364 150.048 34.3338 150.104 34.2311 150.151C32.6438 150.893 31.475 149.93 31.475 148.106L31.4434 137.784C31.4513 139.237 30.4326 140.99 29.1769 141.717C29.1058 141.756 29.0269 141.796 28.9479 141.835C27.7633 142.388 26.8867 141.669 26.8867 140.303L26.8788 138.724V138.408C26.8867 139.853 25.868 141.614 24.6044 142.341C23.4277 143.02 22.4643 142.538 22.3458 141.282C21.9273 142.072 21.3192 142.775 20.6321 143.17C20.5295 143.225 20.4268 143.28 20.3241 143.32C19.179 143.802 18.3577 143.083 18.3498 141.756L18.3419 138.558V137.255L18.3104 126.507C18.2946 120.923 22.2116 114.132 27.0763 111.328L28.6557 110.428Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M29.6745 109.915C29.8246 109.852 29.9746 109.797 30.1168 109.733C30.3142 109.654 30.5195 109.591 30.7169 109.528C30.8512 109.489 30.9776 109.449 31.1118 109.418C31.2303 109.386 31.3487 109.362 31.4751 109.339C31.633 109.307 31.791 109.283 31.941 109.267C32.0279 109.26 32.1148 109.244 32.2016 109.244C32.3912 109.228 32.5807 109.228 32.7702 109.236C32.8097 109.236 32.8492 109.236 32.8966 109.236C33.1177 109.252 33.3309 109.275 33.5441 109.315C33.5994 109.323 33.6468 109.339 33.7021 109.354C33.8679 109.394 34.0259 109.441 34.1838 109.496C34.2312 109.512 34.2865 109.528 34.3339 109.552C34.5313 109.631 34.7287 109.718 34.9104 109.828L29.3428 106.59C29.327 106.582 29.3112 106.575 29.2955 106.567C29.1533 106.488 29.0033 106.417 28.8532 106.353C28.8295 106.346 28.7979 106.338 28.7663 106.322C28.719 106.306 28.6637 106.29 28.6163 106.267C28.5373 106.243 28.4662 106.211 28.3873 106.188C28.3083 106.164 28.2214 106.148 28.1425 106.132C28.0872 106.116 28.0398 106.109 27.9845 106.093C27.9529 106.085 27.9292 106.077 27.8976 106.069C27.7239 106.038 27.5502 106.022 27.3685 106.006C27.3606 106.006 27.3448 106.006 27.3369 106.006C27.2975 106.006 27.258 106.006 27.2106 106.006C27.0684 105.998 26.9263 105.998 26.7841 106.006C26.7368 106.006 26.6894 106.014 26.642 106.022C26.5551 106.03 26.4683 106.038 26.3814 106.045C26.2945 106.053 26.2155 106.053 26.1366 106.069C26.0655 106.077 25.9944 106.101 25.9233 106.116C25.8049 106.14 25.6864 106.164 25.5601 106.195C25.4969 106.211 25.4337 106.219 25.3626 106.235C25.2995 106.251 25.2284 106.282 25.1652 106.306C24.9678 106.361 24.7703 106.432 24.565 106.511C24.4939 106.543 24.4229 106.559 24.3439 106.582C24.2728 106.614 24.1939 106.653 24.1149 106.685C24.0438 106.717 23.9727 106.748 23.9017 106.78C23.6332 106.906 23.3646 107.04 23.0961 107.198L21.5167 108.107C21.2324 108.272 20.956 108.454 20.6796 108.644C20.5927 108.707 20.5059 108.77 20.419 108.833C20.2295 108.967 20.0478 109.102 19.8662 109.252C19.7635 109.331 19.6688 109.418 19.5661 109.496C19.4003 109.639 19.2344 109.781 19.0686 109.931C18.9659 110.018 18.8711 110.112 18.7685 110.207C18.7053 110.263 18.6421 110.318 18.579 110.381C18.5158 110.444 18.4526 110.515 18.3894 110.578C18.192 110.784 17.9946 110.989 17.805 111.202C17.7418 111.273 17.6787 111.329 17.6155 111.4C17.5681 111.455 17.5207 111.518 17.4654 111.581C17.347 111.716 17.2364 111.858 17.1259 112C17.0548 112.095 16.9758 112.182 16.9047 112.276C16.8416 112.355 16.7863 112.434 16.731 112.513C16.652 112.624 16.5652 112.734 16.4862 112.845C16.4309 112.924 16.3756 112.995 16.3204 113.074C16.2256 113.208 16.1387 113.342 16.0518 113.477C15.9966 113.564 15.9334 113.643 15.8781 113.729C15.8544 113.761 15.8307 113.8 15.807 113.832C15.6491 114.077 15.499 114.322 15.3569 114.574C15.349 114.59 15.3411 114.606 15.3253 114.63C15.2937 114.677 15.27 114.732 15.2384 114.78C15.1358 114.953 15.0331 115.135 14.9383 115.317C14.891 115.404 14.8515 115.49 14.812 115.569C14.7646 115.656 14.7251 115.743 14.6777 115.83C14.6382 115.909 14.5988 115.98 14.5593 116.059C14.4566 116.264 14.3618 116.478 14.275 116.683C14.2592 116.722 14.2434 116.754 14.2276 116.786C14.2197 116.793 14.2197 116.801 14.2118 116.817C14.1012 117.078 13.9907 117.338 13.888 117.607C13.8722 117.654 13.8564 117.702 13.8327 117.757C13.7932 117.852 13.7617 117.954 13.7301 118.049C13.6827 118.176 13.6353 118.31 13.5879 118.436C13.5563 118.539 13.5247 118.641 13.4932 118.744C13.4537 118.863 13.4142 118.989 13.3826 119.107C13.3589 119.178 13.3352 119.257 13.3115 119.328C13.272 119.463 13.2483 119.597 13.2089 119.731C13.1694 119.881 13.1299 120.031 13.0983 120.181C13.0904 120.237 13.0746 120.284 13.0588 120.339C13.0351 120.45 13.0272 120.553 13.0035 120.663C12.9561 120.9 12.9167 121.137 12.8851 121.366C12.8772 121.429 12.8614 121.492 12.8535 121.556C12.8377 121.706 12.8219 121.848 12.814 121.99C12.8061 122.093 12.7903 122.195 12.7824 122.306C12.7587 122.63 12.7429 122.961 12.7429 123.277L18.3104 126.515C18.3104 126.191 18.3262 125.867 18.3499 125.544C18.3578 125.441 18.3736 125.338 18.3815 125.228C18.4052 125.014 18.4289 124.809 18.4605 124.596C18.4921 124.359 18.5395 124.13 18.579 123.893C18.6105 123.735 18.6342 123.577 18.6737 123.411C18.7053 123.261 18.7448 123.111 18.7843 122.961C18.8396 122.756 18.8869 122.543 18.9501 122.337C18.9817 122.219 19.0212 122.093 19.0607 121.974C19.1318 121.737 19.2107 121.508 19.2976 121.271C19.3292 121.176 19.3687 121.074 19.4003 120.979C19.5187 120.655 19.653 120.331 19.7872 120.016C19.803 119.976 19.8188 119.944 19.8346 119.913C19.961 119.629 20.0952 119.336 20.2374 119.06C20.2847 118.973 20.3242 118.886 20.3716 118.799C20.5059 118.531 20.648 118.27 20.7981 118.01C20.8297 117.962 20.8533 117.907 20.8849 117.86C21.0587 117.552 21.2482 117.252 21.4377 116.959C21.493 116.872 21.5483 116.793 21.6036 116.707C21.7457 116.493 21.8879 116.288 22.0379 116.075C22.1169 115.964 22.1959 115.854 22.2827 115.743C22.4091 115.569 22.5433 115.404 22.6776 115.238C22.7882 115.096 22.9066 114.961 23.0172 114.819C23.1277 114.693 23.2383 114.566 23.3568 114.44C23.5463 114.227 23.7437 114.022 23.9411 113.816C24.0675 113.69 24.186 113.564 24.3123 113.445C24.4071 113.35 24.5098 113.263 24.6124 113.169C24.7783 113.019 24.9441 112.876 25.1099 112.734C25.2126 112.647 25.3074 112.568 25.41 112.49C25.5917 112.347 25.7812 112.205 25.9628 112.071C26.0497 112.008 26.1366 111.937 26.2234 111.881C26.4998 111.692 26.7762 111.51 27.0605 111.344L28.64 110.436C28.9085 110.278 29.177 110.144 29.4455 110.018C29.5324 109.978 29.6034 109.947 29.6745 109.915Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M91.4532 146.223V146.223C87.3669 143.978 87.2871 140.229 91.2765 137.926L139.934 109.833C146.152 106.244 156.233 106.244 162.451 109.833L179.938 119.93" stroke="#706F6F" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 8"/>
-<path d="M199.176 108.147L181.158 97.7439C180.867 97.5762 180.388 97.5762 180.097 97.7439L148.539 116.083C148.391 116.167 148.322 116.28 148.322 116.389L148.317 118.352C148.317 118.465 148.391 118.574 148.539 118.663L166.558 129.065C166.849 129.233 167.327 129.233 167.618 129.065L199.176 110.726C199.319 110.642 199.393 110.534 199.393 110.42L199.398 108.457C199.398 108.472 199.393 108.487 199.388 108.502C199.413 108.373 199.344 108.24 199.176 108.147Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M197.869 107.895L180.709 97.9854C180.428 97.8226 179.979 97.8226 179.698 97.9854L149.639 115.451C149.501 115.53 149.432 115.639 149.432 115.742L149.427 117.612C149.427 117.72 149.496 117.824 149.639 117.908L166.799 127.817C167.081 127.98 167.529 127.98 167.811 127.817L197.869 110.351C198.007 110.272 198.076 110.164 198.076 110.06L198.081 108.191C198.081 108.205 198.076 108.22 198.076 108.235C198.096 108.112 198.032 107.988 197.869 107.895Z" fill="#EDEDED"/>
-<path d="M170.085 73.3478L171.762 73.333C171.693 73.333 171.628 73.3527 171.559 73.3873L169.882 73.4021C169.946 73.3675 170.015 73.3527 170.085 73.3478Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M150.394 114.031L148.717 114.046C148.525 114.046 148.342 113.908 148.258 113.666L149.935 113.651C150.019 113.893 150.202 114.036 150.394 114.031Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M142.246 90.3159L140.569 90.3307L169.882 73.4074L171.559 73.3926L142.246 90.3159Z" fill="#706F6F" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M149.935 113.656L148.258 113.666L140.317 91.1788L141.999 91.1689L149.935 113.656Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M141.999 91.1687L140.322 91.1835C140.209 90.858 140.317 90.4781 140.569 90.3351L142.246 90.3203C141.994 90.4634 141.886 90.8431 141.999 91.1687Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M171.559 73.3923C171.811 73.2493 172.107 73.3923 172.22 73.7178L180.156 96.205C180.27 96.5256 180.161 96.9054 179.91 97.0534L150.596 113.977C150.344 114.12 150.049 113.977 149.935 113.656L141.999 91.1689C141.885 90.8434 141.994 90.4636 142.245 90.3205L171.559 73.3923Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M171.323 75.3944C171.559 75.2563 171.841 75.3944 171.944 75.7003L179.432 96.9049C179.54 97.2108 179.437 97.5659 179.2 97.704L151.558 113.665C151.321 113.804 151.04 113.665 150.932 113.365L143.444 92.1599C143.336 91.8541 143.439 91.494 143.681 91.3608L171.323 75.3944Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M198.185 106.914L198.18 108.788C198.18 108.892 198.111 109 197.973 109.079L197.978 107.205C198.111 107.126 198.18 107.023 198.185 106.914Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M149.329 116.379L149.334 114.505C149.334 114.613 149.403 114.717 149.546 114.801L149.541 116.675C149.398 116.596 149.329 116.488 149.329 116.379Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M197.973 107.204L197.968 109.083L167.786 126.623L167.791 124.749L197.973 107.204Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M166.775 124.75L166.77 126.624L149.536 116.675L149.541 114.801L166.775 124.75Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M167.791 124.749L167.786 126.623C167.505 126.786 167.051 126.786 166.77 126.623L166.775 124.749C167.056 124.912 167.51 124.912 167.791 124.749Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M197.973 106.618C198.254 106.781 198.254 107.042 197.978 107.205L167.796 124.745C167.515 124.907 167.061 124.907 166.78 124.745L149.546 114.796C149.265 114.633 149.265 114.372 149.546 114.209L179.728 96.669C180.009 96.5062 180.463 96.5062 180.744 96.669L197.973 106.618Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M185.045 113.167C185.104 113.202 185.104 113.256 185.045 113.296L178.573 117.054C178.514 117.089 178.415 117.089 178.356 117.054L174.662 114.923C174.603 114.889 174.603 114.835 174.662 114.795L181.133 111.037C181.192 111.002 181.291 111.002 181.35 111.037L185.045 113.167Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linejoin="round"/>
-<path d="M158.535 82.1177C158.764 82.0028 158.896 81.803 158.83 81.6716C158.764 81.5401 158.525 81.5267 158.296 81.6416C158.067 81.7565 157.935 81.9562 158.001 82.0876C158.067 82.2191 158.306 82.2326 158.535 82.1177Z" fill="#706F6F"/>
-<path d="M160.594 117.66C160.52 117.66 160.451 117.645 160.407 117.621L159.258 116.955L161.3 115.766C161.344 115.741 161.413 115.727 161.487 115.727C161.561 115.727 161.63 115.741 161.674 115.766L162.824 116.432L160.782 117.621C160.737 117.645 160.663 117.66 160.594 117.66Z" fill="white"/>
-<path d="M161.477 115.974C161.517 115.974 161.541 115.984 161.546 115.984L162.331 116.437L160.658 117.409C160.654 117.414 160.629 117.419 160.589 117.419C160.55 117.419 160.525 117.409 160.525 117.409L159.741 116.955L161.413 115.984C161.418 115.979 161.443 115.974 161.477 115.974ZM161.477 115.48C161.364 115.48 161.25 115.505 161.166 115.554L159.065 116.773C158.893 116.871 158.898 117.034 159.07 117.133L160.279 117.833C160.363 117.883 160.476 117.907 160.589 117.907C160.703 117.907 160.816 117.883 160.9 117.833L163.001 116.615C163.174 116.516 163.169 116.354 163.001 116.255L161.793 115.554C161.704 115.505 161.591 115.48 161.477 115.48Z" fill="#706F6F"/>
-<path d="M158.207 116.285C158.133 116.285 158.064 116.27 158.02 116.246L156.87 115.58L160.249 113.612C160.293 113.587 160.363 113.572 160.437 113.572C160.511 113.572 160.58 113.587 160.624 113.612L161.773 114.278L158.394 116.246C158.35 116.27 158.281 116.285 158.207 116.285Z" fill="white"/>
-<path d="M160.432 113.818C160.471 113.818 160.496 113.828 160.496 113.828L161.28 114.282L158.271 116.033C158.266 116.038 158.242 116.043 158.202 116.043C158.163 116.043 158.138 116.033 158.138 116.033L157.354 115.579L160.363 113.833C160.372 113.823 160.397 113.818 160.432 113.818ZM160.432 113.325C160.318 113.325 160.205 113.35 160.121 113.399L156.683 115.397C156.51 115.495 156.515 115.658 156.688 115.757L157.896 116.457C157.985 116.507 158.094 116.531 158.207 116.531C158.321 116.531 158.434 116.507 158.518 116.457L161.956 114.46C162.128 114.361 162.128 114.198 161.956 114.1L160.747 113.399C160.659 113.35 160.545 113.325 160.432 113.325Z" fill="#706F6F"/>
-<path d="M155.825 114.909C155.751 114.909 155.682 114.894 155.632 114.869L154.483 114.203L155.622 113.538C155.667 113.513 155.736 113.498 155.81 113.498C155.884 113.498 155.953 113.513 155.997 113.538L157.146 114.203L156.002 114.869C155.968 114.894 155.899 114.909 155.825 114.909Z" fill="white"/>
-<path d="M155.815 113.739C155.854 113.739 155.879 113.749 155.879 113.749L156.663 114.203L155.889 114.652C155.884 114.657 155.859 114.662 155.825 114.662C155.785 114.662 155.76 114.652 155.76 114.652L154.976 114.198L155.746 113.749C155.751 113.749 155.775 113.739 155.815 113.739ZM155.815 113.246C155.701 113.246 155.588 113.271 155.504 113.32L154.3 114.02C154.128 114.119 154.133 114.282 154.305 114.381L155.514 115.081C155.603 115.13 155.716 115.155 155.825 115.155C155.938 115.155 156.051 115.13 156.135 115.081L157.339 114.381C157.511 114.282 157.511 114.119 157.339 114.02L156.13 113.32C156.042 113.271 155.928 113.246 155.815 113.246Z" fill="#706F6F"/>
-<path d="M171.48 105.813C171.406 105.813 171.337 105.798 171.293 105.774L170.138 105.108L171.283 104.442C171.327 104.417 171.396 104.402 171.47 104.402C171.544 104.402 171.613 104.417 171.663 104.447L172.812 105.113L171.672 105.779C171.623 105.798 171.554 105.813 171.48 105.813Z" fill="white"/>
-<path d="M171.465 104.644C171.505 104.644 171.529 104.654 171.534 104.654L172.319 105.107L171.549 105.556C171.544 105.561 171.52 105.566 171.48 105.566C171.441 105.566 171.416 105.556 171.416 105.556L170.632 105.102L171.406 104.654C171.406 104.649 171.431 104.644 171.465 104.644ZM171.465 104.15C171.352 104.15 171.238 104.175 171.155 104.224L169.951 104.925C169.778 105.023 169.778 105.186 169.951 105.285L171.159 105.985C171.248 106.035 171.362 106.059 171.47 106.059C171.584 106.059 171.697 106.035 171.781 105.985L172.984 105.285C173.157 105.186 173.152 105.023 172.98 104.925L171.771 104.224C171.692 104.175 171.579 104.15 171.465 104.15Z" fill="#706F6F"/>
-<path d="M176.245 108.566C176.171 108.566 176.102 108.551 176.058 108.526L174.908 107.861L176.053 107.195C176.097 107.17 176.166 107.155 176.24 107.155C176.314 107.155 176.383 107.17 176.428 107.2L177.577 107.866L176.438 108.531C176.388 108.546 176.319 108.566 176.245 108.566Z" fill="white"/>
-<path d="M176.235 107.397C176.275 107.397 176.299 107.406 176.304 107.406L177.089 107.86L176.319 108.309C176.314 108.314 176.29 108.319 176.25 108.319C176.211 108.319 176.186 108.309 176.186 108.309L175.402 107.855L176.176 107.406C176.176 107.402 176.201 107.397 176.235 107.397ZM176.235 106.903C176.122 106.903 176.008 106.928 175.925 106.977L174.721 107.678C174.548 107.776 174.548 107.939 174.721 108.038L175.929 108.738C176.013 108.788 176.127 108.812 176.24 108.812C176.354 108.812 176.467 108.788 176.551 108.738L177.754 108.038C177.927 107.939 177.922 107.776 177.754 107.678L176.546 106.977C176.462 106.928 176.349 106.903 176.235 106.903Z" fill="#706F6F"/>
-<path d="M182.81 101.991C182.736 101.991 182.667 101.976 182.623 101.952L179.086 99.9094L180.23 99.2435C180.275 99.2189 180.344 99.2041 180.418 99.2041C180.492 99.2041 180.561 99.2189 180.605 99.2435L184.142 101.286L182.997 101.952C182.948 101.976 182.879 101.991 182.81 101.991Z" fill="white"/>
-<path d="M180.413 99.4454C180.452 99.4454 180.477 99.4553 180.482 99.4553L183.648 101.285L182.874 101.734C182.869 101.739 182.844 101.744 182.805 101.744C182.766 101.744 182.741 101.734 182.741 101.734L179.574 99.9041L180.349 99.4553C180.354 99.4503 180.378 99.4454 180.413 99.4454ZM180.413 98.9521C180.299 98.9521 180.186 98.9768 180.102 99.0261L178.899 99.7265C178.726 99.8252 178.731 99.988 178.903 100.087L182.494 102.163C182.583 102.213 182.692 102.237 182.805 102.237C182.918 102.237 183.032 102.213 183.116 102.163L184.319 101.463C184.492 101.364 184.492 101.201 184.319 101.103L180.728 99.0261C180.64 98.9768 180.526 98.9521 180.413 98.9521Z" fill="#706F6F"/>
-<path d="M178.484 107.263C178.41 107.263 178.341 107.248 178.297 107.224L177.147 106.558L178.292 105.892C178.336 105.867 178.405 105.853 178.479 105.853C178.553 105.853 178.622 105.867 178.672 105.892L179.821 106.558L178.681 107.224C178.627 107.248 178.558 107.263 178.484 107.263Z" fill="white"/>
-<path d="M178.469 106.099C178.509 106.099 178.534 106.109 178.534 106.109L179.318 106.562L178.543 107.011C178.538 107.016 178.514 107.021 178.474 107.021C178.435 107.021 178.41 107.011 178.41 107.011L177.626 106.557L178.4 106.109C178.41 106.104 178.435 106.099 178.469 106.099ZM178.469 105.605C178.356 105.605 178.243 105.63 178.159 105.679L176.955 106.38C176.783 106.479 176.787 106.641 176.96 106.74L178.169 107.44C178.252 107.49 178.366 107.514 178.479 107.514C178.593 107.514 178.706 107.49 178.79 107.44L179.994 106.74C180.166 106.641 180.161 106.479 179.994 106.38L178.785 105.679C178.696 105.63 178.583 105.605 178.469 105.605Z" fill="#706F6F"/>
-<path d="M180.867 108.64C180.793 108.64 180.724 108.625 180.68 108.601L179.53 107.935L180.675 107.269C180.719 107.244 180.788 107.229 180.862 107.229C180.936 107.229 181.005 107.244 181.049 107.269L182.204 107.935L181.059 108.601C181.01 108.625 180.941 108.64 180.867 108.64Z" fill="white"/>
-<path d="M180.857 107.476C180.896 107.476 180.921 107.486 180.921 107.486L181.705 107.939L180.931 108.388C180.926 108.393 180.901 108.398 180.862 108.398C180.822 108.398 180.798 108.388 180.798 108.388L180.014 107.934L180.788 107.486C180.793 107.481 180.818 107.476 180.857 107.476ZM180.857 106.982C180.744 106.982 180.63 107.007 180.546 107.056L179.343 107.757C179.17 107.855 179.175 108.018 179.343 108.117L180.551 108.817C180.635 108.867 180.748 108.891 180.862 108.891C180.975 108.891 181.089 108.867 181.173 108.817L182.376 108.117C182.549 108.018 182.544 107.855 182.376 107.757L181.168 107.056C181.084 107.007 180.97 106.982 180.857 106.982Z" fill="#706F6F"/>
-<path d="M182.958 104.664C182.884 104.664 182.815 104.649 182.77 104.625L181.621 103.959L185 101.996C185.044 101.971 185.113 101.956 185.187 101.956C185.261 101.956 185.33 101.971 185.375 101.996L186.524 102.661L183.145 104.629C183.096 104.649 183.027 104.664 182.958 104.664Z" fill="white"/>
-<path d="M185.182 102.197C185.222 102.197 185.246 102.207 185.251 102.207L186.036 102.661L183.027 104.412C183.022 104.417 182.997 104.422 182.963 104.422C182.923 104.422 182.899 104.412 182.899 104.412L182.114 103.958L185.123 102.212C185.118 102.207 185.143 102.197 185.182 102.197ZM185.182 101.704C185.069 101.704 184.955 101.729 184.872 101.778L181.434 103.776C181.261 103.874 181.266 104.037 181.439 104.136L182.647 104.836C182.731 104.886 182.844 104.91 182.958 104.91C183.071 104.91 183.185 104.886 183.269 104.836L186.706 102.839C186.879 102.74 186.874 102.577 186.706 102.479L185.498 101.778C185.409 101.729 185.296 101.704 185.182 101.704Z" fill="#706F6F"/>
-<path d="M187.575 104.743C187.501 104.743 187.432 104.728 187.388 104.703L186.233 104.037L187.378 103.371C187.422 103.347 187.491 103.332 187.565 103.332C187.639 103.332 187.708 103.347 187.753 103.371L188.902 104.037L187.758 104.703C187.718 104.728 187.649 104.743 187.575 104.743Z" fill="white"/>
-<path d="M187.565 103.573C187.605 103.573 187.629 103.583 187.629 103.583L188.414 104.037L187.639 104.486C187.634 104.491 187.61 104.496 187.57 104.496C187.531 104.496 187.506 104.486 187.506 104.486L186.722 104.032L187.496 103.583C187.506 103.583 187.531 103.573 187.565 103.573ZM187.565 103.08C187.452 103.08 187.338 103.105 187.254 103.154L186.051 103.854C185.878 103.953 185.883 104.116 186.051 104.215L187.259 104.915C187.343 104.964 187.457 104.989 187.57 104.989C187.684 104.989 187.797 104.964 187.881 104.915L189.084 104.215C189.257 104.116 189.252 103.953 189.084 103.854L187.876 103.154C187.792 103.105 187.679 103.08 187.565 103.08Z" fill="#706F6F"/>
-<path d="M180.719 105.966C180.645 105.966 180.576 105.952 180.531 105.927L179.382 105.261L180.526 104.595C180.571 104.57 180.64 104.556 180.714 104.556C180.788 104.556 180.857 104.57 180.901 104.595L182.051 105.261L180.906 105.927C180.862 105.952 180.793 105.966 180.719 105.966Z" fill="white"/>
-<path d="M180.709 104.797C180.748 104.797 180.773 104.807 180.773 104.807L181.557 105.261L180.783 105.709C180.778 105.714 180.753 105.719 180.714 105.719C180.674 105.719 180.65 105.709 180.65 105.709L179.865 105.256L180.64 104.807C180.645 104.807 180.669 104.797 180.709 104.797ZM180.709 104.304C180.595 104.304 180.482 104.328 180.398 104.378L179.195 105.078C179.022 105.177 179.027 105.34 179.2 105.438L180.408 106.139C180.492 106.188 180.605 106.213 180.719 106.213C180.832 106.213 180.946 106.188 181.03 106.139L182.233 105.438C182.406 105.34 182.401 105.177 182.233 105.078L181.025 104.378C180.936 104.328 180.822 104.304 180.709 104.304Z" fill="#706F6F"/>
-<path d="M185.341 106.041C185.267 106.041 185.198 106.026 185.153 106.001L184.004 105.335L185.143 104.669C185.188 104.645 185.262 104.63 185.331 104.63C185.405 104.63 185.474 104.645 185.518 104.669L186.667 105.335L185.528 106.001C185.484 106.026 185.415 106.041 185.341 106.041Z" fill="white"/>
-<path d="M185.331 104.876C185.37 104.876 185.395 104.886 185.395 104.886L186.179 105.34L185.405 105.789C185.4 105.794 185.375 105.798 185.34 105.798C185.301 105.798 185.276 105.789 185.276 105.789L184.492 105.335L185.262 104.886C185.266 104.881 185.291 104.876 185.331 104.876ZM185.331 104.383C185.217 104.383 185.104 104.407 185.02 104.457L183.816 105.157C183.644 105.256 183.649 105.419 183.816 105.517L185.025 106.218C185.109 106.267 185.222 106.292 185.336 106.292C185.449 106.292 185.562 106.267 185.646 106.218L186.85 105.517C187.022 105.419 187.022 105.256 186.85 105.157L185.641 104.457C185.553 104.407 185.444 104.383 185.331 104.383Z" fill="#706F6F"/>
-<path d="M183.101 107.342C183.027 107.342 182.958 107.328 182.914 107.303L181.765 106.637L182.909 105.971C182.953 105.946 183.022 105.932 183.096 105.932C183.17 105.932 183.239 105.946 183.284 105.971L184.433 106.637L183.289 107.303C183.244 107.328 183.175 107.342 183.101 107.342Z" fill="white"/>
-<path d="M183.091 106.173C183.131 106.173 183.155 106.183 183.155 106.183L183.94 106.637L183.165 107.085C183.16 107.09 183.136 107.095 183.096 107.095C183.057 107.095 183.032 107.085 183.032 107.085L182.248 106.632L183.022 106.183C183.032 106.183 183.057 106.173 183.091 106.173ZM183.091 105.68C182.978 105.68 182.864 105.704 182.781 105.754L181.577 106.454C181.404 106.553 181.409 106.715 181.577 106.814L182.786 107.515C182.869 107.564 182.983 107.589 183.096 107.589C183.21 107.589 183.323 107.564 183.407 107.515L184.611 106.814C184.783 106.715 184.778 106.553 184.611 106.454L183.402 105.754C183.318 105.704 183.205 105.68 183.091 105.68Z" fill="#706F6F"/>
-<path d="M180.571 103.289C180.497 103.289 180.428 103.274 180.383 103.249L179.229 102.583L180.368 101.917C180.413 101.893 180.482 101.878 180.556 101.878C180.63 101.878 180.699 101.893 180.748 101.917L181.897 102.583L180.758 103.249C180.714 103.274 180.645 103.289 180.571 103.289Z" fill="white"/>
-<path d="M180.561 102.124C180.6 102.124 180.625 102.134 180.625 102.134L181.409 102.588L180.635 103.037C180.63 103.042 180.605 103.046 180.571 103.046C180.536 103.046 180.507 103.037 180.507 103.037L179.722 102.583L180.497 102.134C180.502 102.129 180.526 102.124 180.561 102.124ZM180.561 101.631C180.448 101.631 180.334 101.656 180.25 101.705L179.047 102.405C178.874 102.504 178.879 102.667 179.052 102.765L180.26 103.466C180.349 103.515 180.457 103.54 180.571 103.54C180.684 103.54 180.798 103.515 180.882 103.466L182.085 102.765C182.258 102.667 182.258 102.504 182.085 102.405L180.877 101.705C180.788 101.656 180.674 101.631 180.561 101.631Z" fill="#706F6F"/>
-<path d="M178.336 104.59C178.262 104.59 178.193 104.576 178.149 104.551L177 103.885L178.144 103.219C178.188 103.194 178.257 103.18 178.331 103.18C178.405 103.18 178.474 103.194 178.519 103.219L179.668 103.885L178.524 104.551C178.479 104.576 178.405 104.59 178.336 104.59Z" fill="white"/>
-<path d="M178.321 103.421C178.361 103.421 178.386 103.431 178.386 103.431L179.17 103.885L178.395 104.333C178.391 104.338 178.366 104.343 178.331 104.343C178.297 104.343 178.267 104.333 178.267 104.333L177.483 103.88L178.257 103.431C178.262 103.431 178.287 103.421 178.321 103.421ZM178.321 102.928C178.208 102.928 178.095 102.952 178.011 103.002L176.807 103.702C176.635 103.801 176.64 103.964 176.812 104.062L178.021 104.763C178.109 104.812 178.218 104.837 178.331 104.837C178.445 104.837 178.558 104.812 178.642 104.763L179.846 104.062C180.018 103.964 180.018 103.801 179.846 103.702L178.637 103.002C178.548 102.952 178.435 102.928 178.321 102.928Z" fill="#706F6F"/>
-<path d="M173.715 104.511C173.641 104.511 173.572 104.496 173.527 104.472L172.373 103.806L173.517 103.14C173.562 103.115 173.631 103.101 173.705 103.101C173.779 103.101 173.848 103.115 173.897 103.14L175.046 103.806L173.902 104.472C173.858 104.496 173.789 104.511 173.715 104.511Z" fill="white"/>
-<path d="M173.705 103.342C173.744 103.342 173.769 103.352 173.774 103.352L174.558 103.806L173.784 104.254C173.779 104.259 173.754 104.264 173.72 104.264C173.68 104.264 173.655 104.254 173.655 104.254L172.871 103.801L173.646 103.352C173.646 103.352 173.67 103.342 173.705 103.342ZM173.705 102.849C173.591 102.849 173.478 102.873 173.394 102.923L172.191 103.623C172.018 103.722 172.023 103.884 172.195 103.983L173.404 104.683C173.493 104.733 173.606 104.757 173.715 104.757C173.828 104.757 173.942 104.733 174.025 104.683L175.229 103.983C175.402 103.884 175.397 103.722 175.224 103.623L174.016 102.923C173.932 102.878 173.818 102.849 173.705 102.849Z" fill="#706F6F"/>
-<path d="M176.097 105.887C176.023 105.887 175.954 105.872 175.91 105.848L174.76 105.182L175.905 104.516C175.949 104.491 176.018 104.477 176.092 104.477C176.166 104.477 176.235 104.491 176.284 104.516L177.434 105.182L176.289 105.848C176.24 105.872 176.171 105.887 176.097 105.887Z" fill="white"/>
-<path d="M176.087 104.718C176.127 104.718 176.151 104.728 176.151 104.728L176.935 105.182L176.161 105.63C176.156 105.635 176.131 105.64 176.097 105.64C176.062 105.64 176.033 105.63 176.033 105.63L175.249 105.177L176.023 104.728C176.028 104.728 176.053 104.718 176.087 104.718ZM176.087 104.225C175.974 104.225 175.86 104.249 175.776 104.299L174.573 104.999C174.4 105.098 174.405 105.26 174.578 105.359L175.786 106.059C175.875 106.109 175.984 106.133 176.097 106.133C176.21 106.133 176.324 106.109 176.408 106.059L177.611 105.359C177.784 105.26 177.784 105.098 177.611 104.999L176.403 104.299C176.314 104.254 176.201 104.225 176.087 104.225Z" fill="#706F6F"/>
-<path d="M173.863 107.189C173.789 107.189 173.72 107.174 173.675 107.15L172.526 106.484L173.67 105.818C173.715 105.793 173.784 105.778 173.858 105.778C173.932 105.778 174.001 105.793 174.045 105.823L175.194 106.489L174.055 107.155C174.006 107.169 173.937 107.189 173.863 107.189Z" fill="white"/>
-<path d="M173.853 106.02C173.892 106.02 173.917 106.029 173.922 106.029L174.706 106.483L173.932 106.932C173.927 106.937 173.902 106.942 173.863 106.942C173.828 106.942 173.803 106.932 173.798 106.932L173.014 106.478L173.789 106.029C173.789 106.025 173.813 106.02 173.853 106.02ZM173.853 105.526C173.739 105.526 173.626 105.551 173.542 105.6L172.338 106.301C172.166 106.399 172.166 106.562 172.338 106.661L173.547 107.361C173.636 107.411 173.744 107.435 173.858 107.435C173.971 107.435 174.085 107.411 174.168 107.361L175.372 106.661C175.545 106.562 175.545 106.399 175.372 106.301L174.163 105.6C174.08 105.551 173.966 105.526 173.853 105.526Z" fill="#706F6F"/>
-<path d="M167.45 116.438C167.376 116.438 167.307 116.423 167.263 116.399L166.114 115.733L167.253 115.067C167.298 115.042 167.367 115.027 167.441 115.027C167.515 115.027 167.584 115.042 167.628 115.067L168.777 115.733L167.633 116.399C167.594 116.423 167.524 116.438 167.45 116.438Z" fill="white"/>
-<path d="M167.44 115.269C167.48 115.269 167.505 115.278 167.505 115.278L168.289 115.732L167.514 116.181C167.51 116.186 167.485 116.191 167.45 116.191C167.411 116.191 167.386 116.181 167.386 116.181L166.602 115.727L167.371 115.278C167.376 115.278 167.401 115.269 167.44 115.269ZM167.44 114.775C167.327 114.775 167.214 114.8 167.13 114.849L165.926 115.55C165.754 115.648 165.759 115.811 165.926 115.91L167.135 116.61C167.219 116.66 167.332 116.684 167.445 116.684C167.559 116.684 167.672 116.66 167.756 116.61L168.96 115.91C169.132 115.811 169.132 115.648 168.96 115.55L167.751 114.849C167.662 114.8 167.554 114.775 167.44 114.775Z" fill="#706F6F"/>
-<path d="M169.685 115.141C169.611 115.141 169.542 115.126 169.497 115.102L168.343 114.436L169.487 113.77C169.532 113.745 169.601 113.73 169.675 113.73C169.749 113.73 169.818 113.745 169.862 113.77L171.011 114.436L169.867 115.102C169.828 115.121 169.759 115.141 169.685 115.141Z" fill="white"/>
-<path d="M169.675 113.972C169.714 113.972 169.739 113.982 169.739 113.982L170.523 114.435L169.749 114.884C169.744 114.889 169.719 114.894 169.68 114.894C169.64 114.894 169.616 114.884 169.616 114.884L168.831 114.43L169.606 113.982C169.616 113.977 169.635 113.972 169.675 113.972ZM169.675 113.479C169.561 113.479 169.448 113.503 169.364 113.552L168.161 114.253C167.988 114.352 167.993 114.514 168.161 114.613L169.369 115.313C169.453 115.363 169.566 115.387 169.68 115.387C169.793 115.387 169.907 115.363 169.991 115.313L171.194 114.613C171.367 114.514 171.362 114.352 171.194 114.253L169.986 113.552C169.902 113.503 169.788 113.479 169.675 113.479Z" fill="#706F6F"/>
-<path d="M169.245 107.111C169.171 107.111 169.102 107.096 169.058 107.071L167.909 106.406L169.053 105.74C169.097 105.715 169.166 105.7 169.24 105.7C169.314 105.7 169.384 105.715 169.433 105.74L170.582 106.406L169.438 107.071C169.384 107.096 169.314 107.111 169.245 107.111Z" fill="white"/>
-<path d="M169.231 105.941C169.27 105.941 169.295 105.951 169.3 105.951L170.084 106.405L169.31 106.854C169.305 106.859 169.28 106.864 169.245 106.864C169.206 106.864 169.181 106.854 169.176 106.854L168.392 106.4L169.167 105.951C169.171 105.951 169.196 105.941 169.231 105.941ZM169.231 105.448C169.117 105.448 169.004 105.473 168.92 105.522L167.716 106.223C167.544 106.321 167.549 106.484 167.721 106.583L168.93 107.283C169.019 107.332 169.132 107.357 169.245 107.357C169.359 107.357 169.472 107.332 169.556 107.283L170.76 106.583C170.932 106.484 170.927 106.321 170.755 106.223L169.546 105.522C169.458 105.478 169.344 105.448 169.231 105.448Z" fill="#706F6F"/>
-<path d="M167.006 108.413C166.932 108.413 166.863 108.398 166.814 108.373L165.664 107.707L166.804 107.041C166.848 107.017 166.917 107.002 166.991 107.002C167.065 107.002 167.134 107.017 167.184 107.041L168.333 107.707L167.193 108.373C167.149 108.393 167.08 108.413 167.006 108.413Z" fill="white"/>
-<path d="M166.996 107.243C167.036 107.243 167.06 107.253 167.06 107.253L167.845 107.707L167.07 108.156C167.065 108.161 167.041 108.166 167.006 108.166C166.967 108.166 166.942 108.156 166.937 108.156L166.153 107.702L166.922 107.253C166.932 107.248 166.957 107.243 166.996 107.243ZM166.996 106.75C166.883 106.75 166.769 106.775 166.686 106.824L165.482 107.524C165.309 107.623 165.314 107.786 165.487 107.884L166.695 108.585C166.784 108.634 166.898 108.659 167.011 108.659C167.125 108.659 167.238 108.634 167.322 108.585L168.525 107.884C168.698 107.786 168.698 107.623 168.525 107.524L167.317 106.824C167.223 106.775 167.11 106.75 166.996 106.75Z" fill="#706F6F"/>
-<path d="M171.628 108.487C171.554 108.487 171.485 108.472 171.441 108.447L170.287 107.782L171.431 107.116C171.475 107.091 171.544 107.076 171.618 107.076C171.692 107.076 171.761 107.091 171.806 107.116L172.955 107.782L171.811 108.447C171.766 108.472 171.697 108.487 171.628 108.487Z" fill="white"/>
-<path d="M171.613 107.317C171.653 107.317 171.677 107.327 171.682 107.327L172.467 107.781L171.692 108.23C171.687 108.235 171.663 108.24 171.628 108.24C171.589 108.24 171.564 108.23 171.564 108.23L170.78 107.776L171.554 107.327C171.554 107.327 171.579 107.317 171.613 107.317ZM171.613 106.824C171.5 106.824 171.386 106.849 171.302 106.898L170.099 107.599C169.926 107.697 169.931 107.86 170.104 107.959L171.312 108.659C171.401 108.708 171.51 108.733 171.623 108.733C171.737 108.733 171.85 108.708 171.934 108.659L173.137 107.959C173.31 107.86 173.31 107.697 173.137 107.599L171.929 106.898C171.84 106.854 171.727 106.824 171.613 106.824Z" fill="#706F6F"/>
-<path d="M164.772 109.71C164.698 109.71 164.629 109.696 164.585 109.671L163.435 109.005L164.575 108.339C164.619 108.315 164.688 108.3 164.762 108.3C164.836 108.3 164.905 108.315 164.95 108.339L166.099 109.005L164.959 109.671C164.915 109.696 164.841 109.71 164.772 109.71Z" fill="white"/>
-<path d="M164.757 108.541C164.797 108.541 164.821 108.551 164.826 108.551L165.611 109.005L164.841 109.454C164.836 109.459 164.812 109.463 164.772 109.463C164.733 109.463 164.708 109.454 164.708 109.454L163.924 109L164.698 108.551C164.698 108.551 164.723 108.541 164.757 108.541ZM164.757 108.048C164.644 108.048 164.53 108.072 164.447 108.122L163.243 108.822C163.07 108.921 163.07 109.084 163.243 109.182L164.451 109.883C164.54 109.932 164.654 109.957 164.762 109.957C164.876 109.957 164.989 109.932 165.073 109.883L166.276 109.182C166.449 109.084 166.444 108.921 166.272 108.822L165.063 108.122C164.984 108.072 164.871 108.048 164.757 108.048Z" fill="#706F6F"/>
-<path d="M169.388 109.79C169.314 109.79 169.245 109.775 169.201 109.75L168.052 109.084L169.191 108.418C169.236 108.394 169.305 108.379 169.379 108.379C169.453 108.379 169.522 108.394 169.571 108.418L170.72 109.084L169.576 109.75C169.531 109.77 169.462 109.79 169.388 109.79Z" fill="white"/>
-<path d="M169.379 108.62C169.418 108.62 169.443 108.63 169.443 108.63L170.227 109.084L169.453 109.533C169.448 109.538 169.423 109.543 169.384 109.543C169.349 109.543 169.319 109.533 169.319 109.533L168.535 109.079L169.305 108.63C169.319 108.625 169.344 108.62 169.379 108.62ZM169.379 108.127C169.265 108.127 169.152 108.152 169.068 108.201L167.864 108.901C167.692 109 167.697 109.163 167.869 109.261L169.078 109.962C169.167 110.011 169.275 110.036 169.388 110.036C169.502 110.036 169.615 110.011 169.699 109.962L170.903 109.261C171.075 109.163 171.075 109 170.903 108.901L169.694 108.201C169.606 108.152 169.492 108.127 169.379 108.127Z" fill="#706F6F"/>
-<path d="M162.532 111.012C162.458 111.012 162.389 110.997 162.34 110.973L161.191 110.307L162.335 109.641C162.379 109.616 162.448 109.602 162.522 109.602C162.596 109.602 162.665 109.616 162.71 109.641L163.864 110.307L162.72 110.973C162.675 110.993 162.606 111.012 162.532 111.012Z" fill="white"/>
-<path d="M162.523 109.843C162.562 109.843 162.587 109.853 162.587 109.853L163.371 110.307L162.597 110.755C162.592 110.76 162.567 110.765 162.533 110.765C162.493 110.765 162.468 110.755 162.463 110.755L161.679 110.302L162.454 109.853C162.463 109.848 162.488 109.843 162.523 109.843ZM162.523 109.35C162.409 109.35 162.296 109.374 162.212 109.424L161.008 110.124C160.836 110.223 160.841 110.385 161.013 110.484L162.222 111.184C162.311 111.234 162.424 111.258 162.537 111.258C162.651 111.258 162.764 111.234 162.848 111.184L164.052 110.484C164.224 110.385 164.219 110.223 164.047 110.124L162.838 109.424C162.75 109.374 162.636 109.35 162.523 109.35Z" fill="#706F6F"/>
-<path d="M167.154 111.086C167.08 111.086 167.011 111.072 166.967 111.047L165.818 110.381L166.957 109.715C167.001 109.691 167.07 109.676 167.144 109.676C167.218 109.676 167.288 109.691 167.337 109.72L168.486 110.386L167.347 111.052C167.297 111.072 167.223 111.086 167.154 111.086Z" fill="white"/>
-<path d="M167.144 109.917C167.184 109.917 167.208 109.927 167.213 109.927L167.998 110.381L167.223 110.83C167.218 110.835 167.194 110.839 167.154 110.839C167.12 110.839 167.095 110.83 167.09 110.83L166.306 110.376L167.08 109.927C167.08 109.927 167.105 109.917 167.144 109.917ZM167.144 109.424C167.031 109.424 166.917 109.449 166.833 109.498L165.63 110.198C165.457 110.297 165.457 110.46 165.63 110.558L166.838 111.259C166.927 111.308 167.036 111.333 167.149 111.333C167.263 111.333 167.376 111.308 167.46 111.259L168.663 110.558C168.836 110.46 168.836 110.297 168.663 110.198L167.455 109.498C167.366 109.453 167.253 109.424 167.144 109.424Z" fill="#706F6F"/>
-<path d="M160.298 112.309C160.224 112.309 160.155 112.294 160.106 112.265L158.957 111.599L160.096 110.933C160.14 110.908 160.209 110.894 160.283 110.894C160.357 110.894 160.426 110.908 160.471 110.933L161.62 111.599L160.481 112.265C160.441 112.294 160.372 112.309 160.298 112.309Z" fill="white"/>
-<path d="M160.288 111.14C160.328 111.14 160.352 111.15 160.352 111.15L161.137 111.603L160.362 112.052C160.357 112.057 160.333 112.062 160.298 112.062C160.259 112.062 160.234 112.052 160.229 112.052L159.445 111.598L160.214 111.15C160.224 111.15 160.249 111.14 160.288 111.14ZM160.288 110.646C160.175 110.646 160.061 110.671 159.978 110.72L158.774 111.421C158.601 111.52 158.606 111.682 158.779 111.781L159.987 112.481C160.076 112.531 160.19 112.555 160.303 112.555C160.417 112.555 160.53 112.531 160.614 112.481L161.817 111.781C161.99 111.682 161.99 111.52 161.817 111.421L160.609 110.72C160.515 110.671 160.402 110.646 160.288 110.646Z" fill="#706F6F"/>
-<path d="M164.915 112.388C164.841 112.388 164.772 112.373 164.727 112.349L163.578 111.683L164.722 111.017C164.767 110.992 164.836 110.978 164.91 110.978C164.984 110.978 165.053 110.992 165.102 111.017L166.252 111.683L165.107 112.349C165.058 112.368 164.989 112.388 164.915 112.388Z" fill="white"/>
-<path d="M164.905 111.219C164.944 111.219 164.969 111.229 164.969 111.229L165.753 111.682L164.979 112.131C164.974 112.136 164.949 112.141 164.91 112.141C164.875 112.141 164.846 112.131 164.846 112.131L164.062 111.678L164.836 111.229C164.846 111.224 164.87 111.219 164.905 111.219ZM164.905 110.726C164.792 110.726 164.678 110.75 164.594 110.8L163.391 111.5C163.218 111.599 163.223 111.761 163.396 111.86L164.604 112.56C164.693 112.61 164.801 112.634 164.915 112.634C165.028 112.634 165.142 112.61 165.226 112.56L166.429 111.86C166.602 111.761 166.602 111.599 166.429 111.5L165.221 110.8C165.132 110.75 165.018 110.726 164.905 110.726Z" fill="#706F6F"/>
-<path d="M169.537 112.462C169.463 112.462 169.394 112.448 169.349 112.423L168.2 111.757L169.345 111.091C169.389 111.067 169.458 111.052 169.532 111.052C169.606 111.052 169.675 111.067 169.724 111.096L170.874 111.762L169.734 112.428C169.68 112.448 169.611 112.462 169.537 112.462Z" fill="white"/>
-<path d="M169.527 111.293C169.566 111.293 169.591 111.303 169.596 111.303L170.38 111.757L169.611 112.206C169.606 112.21 169.581 112.215 169.542 112.215C169.502 112.215 169.477 112.206 169.477 112.206L168.693 111.752L169.468 111.303C169.468 111.303 169.487 111.293 169.527 111.293ZM169.527 110.8C169.413 110.8 169.3 110.824 169.216 110.874L168.013 111.574C167.84 111.673 167.84 111.836 168.013 111.934L169.221 112.635C169.305 112.684 169.418 112.709 169.532 112.709C169.645 112.709 169.759 112.684 169.842 112.635L171.046 111.934C171.219 111.836 171.214 111.673 171.046 111.574L169.838 110.874C169.754 110.829 169.64 110.8 169.527 110.8Z" fill="#706F6F"/>
-<path d="M162.68 113.686C162.606 113.686 162.537 113.671 162.493 113.647L161.344 112.981L162.483 112.315C162.527 112.29 162.596 112.275 162.67 112.275C162.744 112.275 162.813 112.29 162.858 112.315L164.007 112.981L162.863 113.647C162.823 113.671 162.754 113.686 162.68 113.686Z" fill="white"/>
-<path d="M162.67 112.517C162.71 112.517 162.734 112.527 162.734 112.527L163.519 112.98L162.744 113.429C162.739 113.434 162.715 113.439 162.68 113.439C162.646 113.439 162.616 113.429 162.616 113.429L161.832 112.975L162.601 112.527C162.606 112.527 162.631 112.517 162.67 112.517ZM162.67 112.023C162.557 112.023 162.443 112.048 162.36 112.097L161.156 112.798C160.983 112.896 160.988 113.059 161.161 113.158L162.369 113.858C162.458 113.908 162.567 113.932 162.68 113.932C162.794 113.932 162.907 113.908 162.991 113.858L164.194 113.158C164.367 113.059 164.367 112.896 164.194 112.798L162.986 112.097C162.897 112.048 162.784 112.023 162.67 112.023Z" fill="#706F6F"/>
-<path d="M167.302 113.765C167.228 113.765 167.159 113.75 167.115 113.726L165.965 113.06L167.11 112.394C167.154 112.369 167.223 112.354 167.297 112.354C167.371 112.354 167.44 112.369 167.485 112.394L168.634 113.06L167.489 113.726C167.445 113.745 167.376 113.765 167.302 113.765Z" fill="white"/>
-<path d="M167.292 112.596C167.332 112.596 167.356 112.606 167.361 112.606L168.146 113.059L167.371 113.508C167.366 113.513 167.342 113.518 167.302 113.518C167.263 113.518 167.238 113.508 167.238 113.508L166.454 113.055L167.228 112.606C167.228 112.601 167.253 112.596 167.292 112.596ZM167.292 112.103C167.179 112.103 167.065 112.127 166.981 112.177L165.778 112.877C165.605 112.976 165.61 113.138 165.783 113.237L166.991 113.937C167.075 113.987 167.189 114.011 167.302 114.011C167.416 114.011 167.529 113.987 167.613 113.937L168.816 113.237C168.989 113.138 168.984 112.976 168.816 112.877L167.608 112.177C167.514 112.127 167.401 112.103 167.292 112.103Z" fill="#706F6F"/>
-<path d="M163.741 115.831C163.667 115.831 163.598 115.817 163.554 115.792L162.404 115.126L164.871 113.691C164.915 113.666 164.984 113.651 165.058 113.651C165.132 113.651 165.201 113.666 165.245 113.691L166.395 114.357L163.928 115.792C163.884 115.817 163.81 115.831 163.741 115.831Z" fill="white"/>
-<path d="M165.053 113.893C165.093 113.893 165.117 113.903 165.117 113.903L165.901 114.356L163.805 115.575C163.8 115.58 163.776 115.584 163.736 115.584C163.697 115.584 163.672 115.575 163.672 115.575L162.888 115.121L164.984 113.903C164.994 113.903 165.019 113.893 165.053 113.893ZM165.053 113.399C164.94 113.399 164.826 113.424 164.742 113.473L162.217 114.943C162.044 115.042 162.044 115.205 162.217 115.303L163.425 116.004C163.509 116.053 163.623 116.078 163.736 116.078C163.85 116.078 163.963 116.053 164.047 116.004L166.572 114.534C166.745 114.435 166.745 114.272 166.572 114.174L165.364 113.473C165.28 113.424 165.166 113.399 165.053 113.399Z" fill="#706F6F"/>
-<path d="M158.064 113.612C157.99 113.612 157.921 113.597 157.876 113.572L156.727 112.907L157.871 112.241C157.916 112.216 157.985 112.201 158.059 112.201C158.133 112.201 158.202 112.216 158.246 112.241L159.4 112.907L158.261 113.572C158.207 113.592 158.133 113.612 158.064 113.612Z" fill="white"/>
-<path d="M158.049 112.442C158.088 112.442 158.113 112.452 158.118 112.452L158.902 112.906L158.133 113.355C158.128 113.36 158.103 113.365 158.064 113.365C158.024 113.365 158 113.355 158 113.355L157.215 112.901L157.99 112.452C157.99 112.447 158.015 112.442 158.049 112.442ZM158.049 111.949C157.936 111.949 157.822 111.974 157.738 112.023L156.535 112.724C156.362 112.822 156.362 112.985 156.535 113.084L157.743 113.784C157.832 113.833 157.941 113.858 158.054 113.858C158.167 113.858 158.281 113.833 158.365 113.784L159.568 113.084C159.741 112.985 159.736 112.822 159.563 112.724L158.355 112.023C158.276 111.974 158.162 111.949 158.049 111.949Z" fill="#706F6F"/>
-<path d="M175.954 103.214C175.88 103.214 175.811 103.199 175.762 103.174L174.612 102.508L177.991 100.545C178.035 100.521 178.104 100.506 178.178 100.506C178.252 100.506 178.322 100.521 178.366 100.545L179.515 101.211L176.136 103.179C176.097 103.199 176.023 103.214 175.954 103.214Z" fill="white"/>
-<path d="M178.178 100.742C178.218 100.742 178.243 100.752 178.243 100.752L179.027 101.206L176.018 102.957C176.013 102.962 175.988 102.967 175.954 102.967C175.914 102.967 175.89 102.957 175.89 102.957L175.106 102.503L178.114 100.752C178.114 100.752 178.139 100.742 178.178 100.742ZM178.178 100.249C178.065 100.249 177.952 100.274 177.868 100.323L174.43 102.321C174.257 102.419 174.262 102.582 174.435 102.681L175.643 103.381C175.732 103.43 175.845 103.455 175.954 103.455C176.067 103.455 176.181 103.43 176.265 103.381L179.703 101.383C179.875 101.285 179.875 101.122 179.703 101.023L178.494 100.323C178.405 100.279 178.292 100.249 178.178 100.249Z" fill="#706F6F"/>
-<path d="M162.977 119.038C162.903 119.038 162.834 119.023 162.789 118.999L161.64 118.333L165.019 116.365C165.063 116.34 165.132 116.325 165.206 116.325C165.28 116.325 165.349 116.34 165.393 116.365L166.543 117.031L163.164 118.994C163.12 119.023 163.051 119.038 162.977 119.038Z" fill="white"/>
-<path d="M165.201 116.571C165.24 116.571 165.265 116.581 165.265 116.581L166.049 117.035L163.041 118.781C163.036 118.786 163.011 118.791 162.972 118.791C162.932 118.791 162.907 118.781 162.907 118.781L162.123 118.327L165.132 116.581C165.142 116.576 165.166 116.571 165.201 116.571ZM165.201 116.078C165.088 116.078 164.974 116.103 164.89 116.152L161.452 118.15C161.28 118.248 161.285 118.411 161.452 118.51L162.661 119.21C162.745 119.26 162.858 119.284 162.972 119.284C163.085 119.284 163.198 119.26 163.282 119.21L166.72 117.213C166.893 117.114 166.888 116.951 166.72 116.853L165.512 116.152C165.428 116.103 165.314 116.078 165.201 116.078Z" fill="#706F6F"/>
-<path d="M174.011 109.863C173.937 109.863 173.868 109.848 173.823 109.823L172.669 109.157L173.813 108.492C173.858 108.467 173.927 108.452 174.001 108.452C174.075 108.452 174.144 108.467 174.193 108.492L175.342 109.157L174.198 109.823C174.154 109.848 174.085 109.863 174.011 109.863Z" fill="white"/>
-<path d="M174.001 108.698C174.04 108.698 174.065 108.708 174.065 108.708L174.849 109.162L174.075 109.611C174.07 109.616 174.045 109.621 174.006 109.621C173.966 109.621 173.941 109.611 173.941 109.611L173.157 109.157L173.932 108.708C173.937 108.703 173.961 108.698 174.001 108.698ZM174.001 108.205C173.887 108.205 173.774 108.23 173.69 108.279L172.486 108.979C172.314 109.078 172.319 109.241 172.491 109.34L173.7 110.04C173.784 110.089 173.897 110.114 174.011 110.114C174.124 110.114 174.237 110.089 174.321 110.04L175.525 109.34C175.697 109.241 175.693 109.078 175.525 108.979L174.316 108.279C174.228 108.23 174.114 108.205 174.001 108.205Z" fill="#706F6F"/>
-<path d="M171.776 111.166C171.702 111.166 171.633 111.151 171.589 111.126L170.439 110.46L171.579 109.794C171.623 109.77 171.692 109.755 171.766 109.755C171.84 109.755 171.909 109.77 171.954 109.794L173.103 110.46L171.959 111.126C171.919 111.146 171.845 111.166 171.776 111.166Z" fill="white"/>
-<path d="M171.761 109.996C171.801 109.996 171.826 110.006 171.826 110.006L172.61 110.46L171.835 110.909C171.83 110.914 171.806 110.919 171.766 110.919C171.727 110.919 171.702 110.909 171.702 110.909L170.918 110.455L171.687 110.006C171.702 110.001 171.727 109.996 171.761 109.996ZM171.761 109.503C171.648 109.503 171.535 109.528 171.451 109.577L170.247 110.277C170.075 110.376 170.079 110.539 170.252 110.637L171.461 111.338C171.544 111.387 171.658 111.412 171.771 111.412C171.885 111.412 171.998 111.387 172.082 111.338L173.286 110.637C173.458 110.539 173.458 110.376 173.286 110.277L172.077 109.577C171.988 109.528 171.875 109.503 171.761 109.503Z" fill="#706F6F"/>
-<path d="M171.919 113.838C171.845 113.838 171.776 113.824 171.732 113.799L170.583 113.133L178.381 108.595C178.425 108.57 178.494 108.556 178.568 108.556C178.642 108.556 178.711 108.57 178.756 108.595L179.905 109.261L172.107 113.799C172.062 113.824 171.993 113.838 171.919 113.838Z" fill="white"/>
-<path d="M178.568 108.802C178.608 108.802 178.632 108.812 178.632 108.812L179.417 109.265L171.988 113.586C171.983 113.591 171.959 113.596 171.919 113.596C171.88 113.596 171.855 113.586 171.855 113.586L171.071 113.133L178.504 108.812C178.509 108.807 178.534 108.802 178.568 108.802ZM178.568 108.309C178.455 108.309 178.341 108.333 178.257 108.383L170.395 112.95C170.222 113.049 170.222 113.211 170.395 113.31L171.604 114.011C171.687 114.06 171.801 114.085 171.914 114.085C172.028 114.085 172.141 114.06 172.225 114.011L180.087 109.443C180.26 109.344 180.255 109.182 180.087 109.083L178.879 108.383C178.795 108.333 178.682 108.309 178.568 108.309Z" fill="#706F6F"/>
-<path d="M36.5761 22.326C40.2335 24.5379 40.2562 28.1294 36.6215 30.3414C32.9868 32.5533 27.0776 32.5533 23.4202 30.3414C19.7628 28.1294 19.7477 24.5379 23.3824 22.326C27.0171 20.114 32.9188 20.114 36.5761 22.326Z" fill="white" stroke="#706F6F" stroke-miterlimit="10"/>
-<path d="M34.5521 27.4248C34.0247 27.8023 33.3009 27.9367 32.6443 27.916C31.4758 27.885 30.3125 27.4869 29.4232 26.8148C28.8803 26.4063 28.3064 26.1064 27.6963 25.8117C27.1224 25.5325 26.595 25.1241 26.0211 24.8087C25.0543 24.2813 24.0668 23.7229 23.0948 23.1852C22.6656 22.9577 20.794 21.9185 21.3679 21.3291C21.9263 21.6083 24.3408 23.087 25.0802 23.4954C26.1504 24.1055 27.1689 24.7777 28.2185 25.4188C28.6787 25.698 30.3694 26.6028 30.7985 26.701C31.1759 26.7837 32.3289 27.1457 33.2647 26.913C33.6421 26.8148 34.8571 26.0082 35.0743 25.7445C35.307 26.489 35.1105 27.0319 34.5521 27.4248Z" fill="white" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M35.0277 25.9151C34.3866 26.7217 33.0062 27.1974 31.9566 26.9492C31.3827 26.8199 30.7881 26.7527 30.2142 26.5562C29.4904 26.3081 28.8493 25.8324 28.2081 25.4395C26.9259 24.6536 25.6437 23.878 24.346 23.1387C23.8186 22.8595 23.3791 22.4976 22.8828 22.1874C22.5364 21.9754 21.6316 21.7117 21.4713 21.3498C21.1611 20.7087 23.3584 19.8556 23.8186 19.7884C24.8371 19.6591 25.6075 20.3985 26.4141 20.8741C27.1844 21.3343 28.022 21.6445 28.7976 22.1408C29.5679 22.632 30.4055 23.0094 31.1966 23.5058C31.9359 23.9659 32.577 24.5709 33.3474 24.969C33.6576 25.1344 34.7589 25.9565 35.0536 25.7755" fill="white"/>
-<path d="M35.0277 25.9151C34.3866 26.7217 33.0062 27.1974 31.9566 26.9492C31.3827 26.8199 30.7881 26.7527 30.2142 26.5562C29.4904 26.3081 28.8493 25.8324 28.2081 25.4395C26.9259 24.6536 25.6437 23.878 24.346 23.1387C23.8186 22.8595 23.3791 22.4976 22.8828 22.1874C22.5364 21.9754 21.6316 21.7117 21.4713 21.3498C21.1611 20.7087 23.3584 19.8556 23.8186 19.7884C24.8371 19.6591 25.6075 20.3985 26.4141 20.8741C27.1844 21.3343 28.022 21.6445 28.7976 22.1408C29.5679 22.632 30.4055 23.0094 31.1966 23.5058C31.9359 23.9659 32.577 24.5709 33.3474 24.969C33.6576 25.1344 34.7589 25.9565 35.0536 25.7755" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M35.0277 25.9151C34.3866 26.7217 33.0062 27.1974 31.9566 26.9492C31.3827 26.8199 30.7881 26.7527 30.2142 26.5562C29.4904 26.3081 28.8493 25.8324 28.2081 25.4395C26.9259 24.6536 25.6437 23.878 24.346 23.1387C23.8186 22.8595 23.3791 22.4976 22.8828 22.1874C22.5364 21.9754 21.6316 21.7117 21.4713 21.3498C21.1611 20.7087 23.3584 19.8556 23.8186 19.7884C24.8371 19.6591 25.6075 20.3985 26.4141 20.8741C27.1844 21.3343 28.022 21.6445 28.7976 22.1408C29.5679 22.632 30.4055 23.0094 31.1966 23.5058C31.9359 23.9659 32.577 24.5709 33.3474 24.969C33.6576 25.1344 34.7589 25.9565 35.0536 25.7755" fill="white"/>
-<path d="M35.0277 25.9151C34.3866 26.7217 33.0062 27.1974 31.9566 26.9492C31.3827 26.8199 30.7881 26.7527 30.2142 26.5562C29.4904 26.3081 28.8493 25.8324 28.2081 25.4395C26.9259 24.6536 25.6437 23.878 24.346 23.1387C23.8186 22.8595 23.3791 22.4976 22.8828 22.1874C22.5364 21.9754 21.6316 21.7117 21.4713 21.3498C21.1611 20.7087 23.3584 19.8556 23.8186 19.7884C24.8371 19.6591 25.6075 20.3985 26.4141 20.8741C27.1844 21.3343 28.022 21.6445 28.7976 22.1408C29.5679 22.632 30.4055 23.0094 31.1966 23.5058C31.9359 23.9659 32.577 24.5709 33.3474 24.969C33.6576 25.1344 34.7589 25.9565 35.0536 25.7755" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M22.9864 24.8964C23.7257 24.7671 23.6275 23.1075 22.9191 23.3195C22.3763 23.4332 22.3763 25.0101 22.9864 24.8964Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.3405 26.7839C28.6321 26.5874 28.5339 28.2315 29.2732 28.3608C29.8833 28.49 29.8833 26.8976 29.3405 26.7839Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M31.9876 6.75927C31.7239 6.92472 30.2814 7.34867 29.8833 6.82648C29.6713 6.54728 30.3124 5.80793 30.3124 5.47704C30.3124 5.09961 30.0332 4.73769 30.0643 4.39128C30.0798 4.08107 30.1935 4.19481 30.3952 4.08106C30.4469 4.06555 30.5244 4.14828 30.6072 4.09657C30.6744 4.04487 30.5916 3.93112 30.6227 3.88459C31.0001 3.40893 31.8377 2.76782 32.5098 3.14525C33.1975 3.52268 33.0992 4.59292 32.6753 5.13063C32.4478 5.40982 32.1841 5.64249 31.8532 5.77174C31.605 5.86998 31.3775 5.86998 31.4602 6.21639" fill="white"/>
-<path d="M31.9876 6.75927C31.7239 6.92472 30.2814 7.34867 29.8833 6.82648C29.6713 6.54728 30.3124 5.80793 30.3124 5.47704C30.3124 5.09961 30.0332 4.73769 30.0643 4.39128C30.0798 4.08107 30.1935 4.19481 30.3952 4.08106C30.4469 4.06555 30.5244 4.14828 30.6072 4.09657C30.6744 4.04487 30.5916 3.93112 30.6227 3.88459C31.0001 3.40893 31.8377 2.76782 32.5098 3.14525C33.1975 3.52268 33.0992 4.59292 32.6753 5.13063C32.4478 5.40982 32.1841 5.64249 31.8532 5.77174C31.605 5.86998 31.3775 5.86998 31.4602 6.21639" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M31.9876 6.75927C31.7239 6.92472 30.2814 7.34867 29.8833 6.82648C29.6713 6.54728 30.3124 5.80793 30.3124 5.47704C30.3124 5.09961 30.0332 4.73769 30.0643 4.39128C30.0798 4.08107 30.1935 4.19481 30.3952 4.08106C30.4469 4.06555 30.5244 4.14828 30.6072 4.09657C30.6744 4.04487 30.5916 3.93112 30.6227 3.88459C31.0001 3.40893 31.8377 2.76782 32.5098 3.14525C33.1975 3.52268 33.0992 4.59292 32.6753 5.13063C32.4478 5.40982 32.1841 5.64249 31.8532 5.77174C31.605 5.86998 31.3775 5.86998 31.4602 6.21639" fill="white"/>
-<path d="M31.9876 6.75927C31.7239 6.92472 30.2814 7.34867 29.8833 6.82648C29.6713 6.54728 30.3124 5.80793 30.3124 5.47704C30.3124 5.09961 30.0332 4.73769 30.0643 4.39128C30.0798 4.08107 30.1935 4.19481 30.3952 4.08106C30.4469 4.06555 30.5244 4.14828 30.6072 4.09657C30.6744 4.04487 30.5916 3.93112 30.6227 3.88459C31.0001 3.40893 31.8377 2.76782 32.5098 3.14525C33.1975 3.52268 33.0992 4.59292 32.6753 5.13063C32.4478 5.40982 32.1841 5.64249 31.8532 5.77174C31.605 5.86998 31.3775 5.86998 31.4602 6.21639" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.4478 9.40603C32.2668 9.20956 31.4602 9.43704 31.4137 9.6542C31.362 9.85067 32.1841 11.8722 32.5977 12.2342C33.0889 12.6633 33.9264 12.9063 34.521 13.201C34.9295 13.413 35.4103 13.5784 35.7722 13.8576C36.0669 14.0851 36.2014 14.4677 36.4961 14.6952C36.7236 14.8762 37.1062 15.0054 37.2664 14.6435C37.3492 14.4315 37.1837 14.1678 37.101 13.9714C36.9045 13.444 36.8063 13.1028 36.3099 12.8236C35.4207 12.3324 34.4228 12.0532 33.7817 11.2311C33.4508 10.802 32.5305 9.90237 32.5667 9.35949" fill="white"/>
-<path d="M32.4478 9.40603C32.2668 9.20956 31.4602 9.43704 31.4137 9.6542C31.362 9.85067 32.1841 11.8722 32.5977 12.2342C33.0889 12.6633 33.9264 12.9063 34.521 13.201C34.9295 13.413 35.4103 13.5784 35.7722 13.8576C36.0669 14.0851 36.2014 14.4677 36.4961 14.6952C36.7236 14.8762 37.1062 15.0054 37.2664 14.6435C37.3492 14.4315 37.1837 14.1678 37.101 13.9714C36.9045 13.444 36.8063 13.1028 36.31 12.8236C35.4207 12.3324 34.4228 12.0532 33.7817 11.2311C33.4508 10.802 32.5305 9.90237 32.5667 9.35949" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.4478 9.40603C32.2668 9.20956 31.4602 9.43704 31.4137 9.6542C31.362 9.85067 32.1841 11.8722 32.5977 12.2342C33.0889 12.6633 33.9264 12.9063 34.521 13.201C34.9295 13.413 35.4103 13.5784 35.7722 13.8576C36.0669 14.0851 36.2014 14.4677 36.4961 14.6952C36.7236 14.8762 37.1062 15.0054 37.2664 14.6435C37.3492 14.4315 37.1837 14.1678 37.101 13.9714C36.9045 13.444 36.8063 13.1028 36.3099 12.8236C35.4207 12.3324 34.4228 12.0532 33.7817 11.2311C33.4508 10.802 32.5305 9.90237 32.5667 9.35949" fill="white"/>
-<path d="M32.4478 9.40603C32.2668 9.20956 31.4602 9.43704 31.4137 9.6542C31.362 9.85067 32.1841 11.8722 32.5977 12.2342C33.0889 12.6633 33.9264 12.9063 34.521 13.201C34.9295 13.413 35.4103 13.5784 35.7722 13.8576C36.0669 14.0851 36.2014 14.4677 36.4961 14.6952C36.7236 14.8762 37.1062 15.0054 37.2664 14.6435C37.3492 14.4315 37.1837 14.1678 37.101 13.9714C36.9045 13.444 36.8063 13.1028 36.31 12.8236C35.4207 12.3324 34.4228 12.0532 33.7817 11.2311C33.4508 10.802 32.5305 9.90237 32.5667 9.35949" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M26.2384 8.50098C26.864 8.65091 27.5051 8.99215 27.1432 9.7315C26.8329 10.3726 26.3883 10.8638 26.471 11.6186C26.5382 12.0943 26.7502 12.57 26.7657 13.0456C26.7812 13.5368 26.6985 14.2607 26.5537 14.7518C26.4555 15.1138 26.2435 15.5377 25.8299 15.6204C25.4835 15.6877 25.1216 15.4085 25.1216 15.031C25.1371 14.5037 25.6128 14.028 25.5662 13.4386C25.5352 13.0612 25.4008 12.6992 25.3853 12.3373C25.3698 11.8927 25.3181 11.448 25.287 10.9879C25.2715 10.445 25.4163 10.0986 25.6955 9.6436C25.8609 9.3489 26.3056 8.90426 26.3056 8.57336" fill="white"/>
-<path d="M26.2384 8.50098C26.864 8.65091 27.5051 8.99215 27.1432 9.7315C26.8329 10.3726 26.3883 10.8638 26.471 11.6186C26.5382 12.0943 26.7502 12.57 26.7657 13.0456C26.7812 13.5368 26.6985 14.2607 26.5537 14.7518C26.4555 15.1138 26.2435 15.5377 25.8299 15.6204C25.4835 15.6877 25.1216 15.4085 25.1216 15.031C25.1371 14.5037 25.6128 14.028 25.5662 13.4386C25.5352 13.0612 25.4008 12.6992 25.3853 12.3373C25.3698 11.8927 25.3181 11.448 25.287 10.9879C25.2715 10.445 25.4163 10.0986 25.6955 9.6436C25.8609 9.3489 26.3056 8.90426 26.3056 8.57336" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M26.2384 8.50098C26.864 8.65091 27.5051 8.99215 27.1432 9.7315C26.8329 10.3726 26.3883 10.8638 26.471 11.6186C26.5382 12.0943 26.7502 12.57 26.7657 13.0456C26.7812 13.5368 26.6985 14.2607 26.5537 14.7518C26.4555 15.1138 26.2435 15.5377 25.8299 15.6204C25.4835 15.6877 25.1216 15.4085 25.1216 15.031C25.1371 14.5037 25.6128 14.028 25.5662 13.4386C25.5352 13.0612 25.4008 12.6992 25.3853 12.3373C25.3698 11.8927 25.3181 11.448 25.287 10.9879C25.2715 10.445 25.4163 10.0986 25.6955 9.6436C25.8609 9.3489 26.3056 8.90426 26.3056 8.57336" fill="white"/>
-<path d="M26.2384 8.50098C26.864 8.65091 27.5051 8.99215 27.1432 9.7315C26.8329 10.3726 26.3883 10.8638 26.471 11.6186C26.5382 12.0943 26.7502 12.57 26.7657 13.0456C26.7812 13.5368 26.6985 14.2607 26.5537 14.7518C26.4555 15.1138 26.2435 15.5377 25.8299 15.6204C25.4835 15.6877 25.1216 15.4085 25.1216 15.031C25.1371 14.5037 25.6128 14.028 25.5662 13.4386C25.5352 13.0612 25.4008 12.6992 25.3853 12.3373C25.3698 11.8927 25.3181 11.448 25.287 10.9879C25.2715 10.445 25.4163 10.0986 25.6955 9.6436C25.8609 9.3489 26.3056 8.90426 26.3056 8.57336" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2423 19.7362C29.8834 19.8344 29.0768 19.0278 28.9475 18.9296C28.5856 18.6504 28.3581 18.3867 27.9135 18.3867C27.5205 18.4022 27.1224 18.485 26.714 18.516C26.3366 18.5315 25.9746 18.4643 25.5972 18.5315C25.318 18.5832 24.9871 18.6452 24.8889 18.9399C24.8062 19.2191 24.9871 19.6121 25.1991 19.6948C25.4266 19.7775 25.9695 19.6793 26.2332 19.6638C28.3995 19.5655 25.1164 19.4828 27.2827 19.581C27.7946 19.6121 29.0251 20.2067 29.2888 19.6483" fill="white"/>
-<path d="M29.2423 19.7362C29.8834 19.8344 29.0768 19.0278 28.9475 18.9296C28.5856 18.6504 28.3581 18.3867 27.9135 18.3867C27.5205 18.4022 27.1224 18.485 26.714 18.516C26.3366 18.5315 25.9746 18.4643 25.5972 18.5315C25.318 18.5832 24.9871 18.6452 24.8889 18.9399C24.8062 19.2191 24.9871 19.6121 25.1991 19.6948C25.4266 19.7775 25.9695 19.6793 26.2332 19.6638C28.3995 19.5655 25.1164 19.4828 27.2827 19.581C27.7946 19.6121 29.0251 20.2067 29.2888 19.6483" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M29.2423 19.7362C29.8834 19.8344 29.0768 19.0278 28.9475 18.9296C28.5856 18.6504 28.3581 18.3867 27.9135 18.3867C27.5205 18.4022 27.1224 18.485 26.714 18.516C26.3366 18.5315 25.9746 18.4643 25.5972 18.5315C25.318 18.5832 24.9871 18.6452 24.8889 18.9399C24.8062 19.2191 24.9871 19.6121 25.1991 19.6948C25.4266 19.7775 25.9695 19.6793 26.2332 19.6638C28.3995 19.5655 25.1164 19.4828 27.2827 19.581C27.7946 19.6121 29.0251 20.2067 29.2888 19.6483" fill="white"/>
-<path d="M29.2423 19.7362C29.8834 19.8344 29.0768 19.0278 28.9475 18.9296C28.5856 18.6504 28.3581 18.3867 27.9135 18.3867C27.5205 18.4022 27.1224 18.485 26.714 18.516C26.3366 18.5315 25.9746 18.4643 25.5972 18.5315C25.318 18.5832 24.9871 18.6452 24.8889 18.9399C24.8062 19.2191 24.9871 19.6121 25.1991 19.6948C25.4266 19.7775 25.9695 19.6793 26.2332 19.6638C28.3995 19.5655 25.1164 19.4828 27.2827 19.581C27.7946 19.6121 29.0251 20.2067 29.2888 19.6483" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.69 24.4676C30.3126 24.5969 30.0799 24.3694 29.7852 24.4004C29.506 24.4159 29.537 24.6796 29.5215 24.9743C29.506 25.6981 29.8317 25.8429 30.3901 26.2048C30.8193 26.484 31.145 26.8149 31.7034 26.5823C32.8512 26.1221 30.8658 25.1553 30.7676 24.6434" fill="white"/>
-<path d="M30.69 24.4676C30.3126 24.5969 30.0799 24.3694 29.7852 24.4004C29.506 24.4159 29.537 24.6796 29.5215 24.9743C29.506 25.6981 29.8317 25.8429 30.3901 26.2048C30.8193 26.484 31.145 26.8149 31.7034 26.5823C32.8512 26.1221 30.8658 25.1553 30.7676 24.6434" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.69 24.4676C30.3126 24.5969 30.0799 24.3694 29.7852 24.4004C29.506 24.4159 29.537 24.6796 29.5215 24.9743C29.506 25.6981 29.8317 25.8429 30.3901 26.2048C30.8193 26.484 31.145 26.8149 31.7034 26.5823C32.8512 26.1221 30.8658 25.1553 30.7676 24.6434" fill="white"/>
-<path d="M30.69 24.4676C30.3126 24.5969 30.0799 24.3694 29.7852 24.4004C29.506 24.4159 29.537 24.6796 29.5215 24.9743C29.506 25.6981 29.8317 25.8429 30.3901 26.2048C30.8193 26.484 31.145 26.8149 31.7034 26.5823C32.8512 26.1221 30.8658 25.1553 30.7676 24.6434" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M24.987 18.7697C24.7905 19.1781 25.0542 19.3436 25.1007 19.6745C25.1317 19.9226 24.7388 20.1656 24.5889 20.3621C24.4079 20.5896 23.8805 21.5306 23.5548 21.4634C23.1929 21.3961 22.9809 20.4138 23.0429 20.1139C23.1412 19.7675 23.5031 18.9454 23.7978 18.749C24.1597 18.4853 24.7336 18.8317 25.1111 18.6818" fill="white"/>
-<path d="M24.987 18.7697C24.7905 19.1781 25.0542 19.3436 25.1007 19.6745C25.1317 19.9226 24.7388 20.1656 24.5889 20.3621C24.4079 20.5896 23.8805 21.5306 23.5548 21.4634C23.1929 21.3961 22.9809 20.4138 23.0429 20.1139C23.1412 19.7675 23.5031 18.9454 23.7978 18.749C24.1597 18.4853 24.7336 18.8317 25.1111 18.6818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M24.987 18.7697C24.7905 19.1781 25.0542 19.3436 25.1007 19.6745C25.1317 19.9226 24.7388 20.1656 24.5889 20.3621C24.4079 20.5896 23.8805 21.5306 23.5548 21.4634C23.1929 21.3961 22.9809 20.4138 23.0429 20.1139C23.1412 19.7675 23.5031 18.9454 23.7978 18.749C24.1597 18.4853 24.7336 18.8317 25.1111 18.6818" fill="white"/>
-<path d="M24.987 18.7697C24.7905 19.1781 25.0542 19.3436 25.1007 19.6745C25.1317 19.9226 24.7388 20.1656 24.5889 20.3621C24.4079 20.5896 23.8805 21.5306 23.5548 21.4634C23.1929 21.3961 22.9809 20.4138 23.0429 20.1139C23.1412 19.7675 23.5031 18.9454 23.7978 18.749C24.1597 18.4853 24.7336 18.8317 25.1111 18.6818" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M26.6467 13.0205C26.4192 13.5944 26.2537 14.1373 26.383 14.7784C26.4968 15.3523 27.0086 15.7969 27.3033 16.3036C28.0116 17.4721 28.6166 18.6871 28.994 19.9849C29.1439 20.5122 29.3404 24.24 29.8833 24.1883C30.1625 24.1728 30.4262 24.1366 30.6898 24.09C31.362 23.9608 31.181 20.1141 31.0673 19.5402C30.8863 18.7026 30.8191 17.8495 30.6071 17.0119C30.4934 16.5828 30.3279 16.2261 30.3434 15.7814C30.3589 15.3523 30.6226 14.3855 30.5709 13.977" fill="white"/>
-<path d="M26.6467 13.0205C26.4192 13.5944 26.2537 14.1373 26.383 14.7784C26.4968 15.3523 27.0086 15.7969 27.3033 16.3036C28.0116 17.4721 28.6166 18.6871 28.994 19.9849C29.1439 20.5122 29.3404 24.24 29.8833 24.1883C30.1625 24.1728 30.4262 24.1366 30.6898 24.09C31.362 23.9608 31.181 20.1141 31.0673 19.5402C30.8863 18.7026 30.8191 17.8495 30.6071 17.0119C30.4934 16.5828 30.3279 16.2261 30.3434 15.7814C30.3589 15.3523 30.6226 14.3855 30.5709 13.977" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M26.6467 13.0205C26.4192 13.5944 26.2537 14.1373 26.383 14.7784C26.4968 15.3523 27.0086 15.7969 27.3033 16.3036C28.0116 17.4721 28.6166 18.6871 28.994 19.9849C29.1439 20.5122 29.3404 24.24 29.8833 24.1883C30.1625 24.1728 30.4262 24.1366 30.6898 24.09C31.362 23.9608 31.181 20.1141 31.0673 19.5402C30.8863 18.7026 30.8191 17.8495 30.6071 17.0119C30.4934 16.5828 30.3279 16.2261 30.3434 15.7814C30.3589 15.3523 30.6226 14.3855 30.5709 13.977" fill="white"/>
-<path d="M26.6467 13.0205C26.4192 13.5944 26.2537 14.1373 26.383 14.7784C26.4968 15.3523 27.0086 15.7969 27.3033 16.3036C28.0116 17.4721 28.6166 18.6871 28.994 19.9849C29.1439 20.5122 29.3404 24.24 29.8833 24.1883C30.1625 24.1728 30.4262 24.1366 30.6898 24.09C31.362 23.9608 31.181 20.1141 31.0673 19.5402C30.8863 18.7026 30.8191 17.8495 30.6071 17.0119C30.4934 16.5828 30.3279 16.2261 30.3434 15.7814C30.3589 15.3523 30.6226 14.3855 30.5709 13.977" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M30.1005 6.04049C29.6093 7.23999 31.9256 7.32271 31.5482 6.25246C32.6805 6.31967 32.8304 7.63292 32.9131 8.51704C32.9286 8.76521 32.9441 9.09094 32.8976 9.3236C32.8149 9.70103 32.8149 9.60279 32.5202 9.67001C32.3392 9.70103 32.1117 9.6545 31.9308 9.72171C31.6361 9.85097 31.7653 9.78893 31.6671 10.0681C31.4189 10.7403 31.2586 11.5158 31.0777 12.219C30.9794 12.6119 30.9122 13.041 30.8812 13.4495C30.8657 13.6149 30.9329 14.0596 30.8502 14.1733C30.7519 14.3543 30.602 14.2716 30.39 14.2871C29.4542 14.3388 28.8131 14.3181 27.9755 13.8579C27.4998 13.6098 27.0242 13.2995 26.5951 12.9531C26.0677 12.524 26.1659 12.3947 26.4451 11.7846C26.6726 11.278 26.8226 10.7506 27.019 10.2232C27.231 9.68035 27.1845 9.58212 26.807 9.17367C26.5795 8.92549 26.1194 8.71351 26.1969 8.4188C26.2797 8.10859 26.7398 7.87593 26.988 7.66395C27.5619 7.17277 28.0738 6.66092 28.7769 6.31451C29.0251 6.18525 30.0074 6.11803 30.0436 6.05082C29.9971 5.98878 30.147 6.00429 30.1005 6.04049Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1014 1.96628C32.4633 2.08003 32.6753 2.49365 32.7115 2.85557C32.7632 3.51219 32.4995 3.5639 31.9411 3.66213C31.4655 3.74486 30.9226 3.63111 30.7727 4.1895C30.6227 4.70136 31.2638 5.0943 30.721 5.53894C30.1109 6.03012 28.6994 5.45621 28.5339 4.79959C28.3375 3.94649 28.6994 2.64876 29.3405 2.05418C30.0799 1.36653 31.7085 0.839162 32.2152 2.0852" fill="white"/>
-<path d="M32.1014 1.96628C32.4633 2.08003 32.6753 2.49365 32.7115 2.85557C32.7632 3.51219 32.4995 3.5639 31.9411 3.66213C31.4655 3.74486 30.9226 3.63111 30.7727 4.1895C30.6227 4.70136 31.2638 5.0943 30.721 5.53894C30.1109 6.03012 28.6994 5.45621 28.5339 4.79959C28.3375 3.94649 28.6994 2.64876 29.3405 2.05418C30.0799 1.36653 31.7085 0.839162 32.2152 2.0852" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M32.1014 1.96628C32.4633 2.08003 32.6753 2.49365 32.7115 2.85557C32.7632 3.51219 32.4995 3.5639 31.9411 3.66213C31.4655 3.74486 30.9226 3.63111 30.7727 4.1895C30.6227 4.70136 31.2638 5.0943 30.721 5.53894C30.1109 6.03012 28.6994 5.45621 28.5339 4.79959C28.3375 3.94649 28.6994 2.64876 29.3405 2.05418C30.0799 1.36653 31.7085 0.839162 32.2152 2.0852" fill="#DA3635"/>
-<path d="M32.1014 1.96628C32.4633 2.08003 32.6753 2.49365 32.7115 2.85557C32.7632 3.51219 32.4995 3.5639 31.9411 3.66213C31.4655 3.74486 30.9226 3.63111 30.7727 4.1895C30.6227 4.70136 31.2638 5.0943 30.721 5.53894C30.1109 6.03012 28.6994 5.45621 28.5339 4.79959C28.3375 3.94649 28.6994 2.64876 29.3405 2.05418C30.0799 1.36653 31.7085 0.839162 32.2152 2.0852" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M102.614 159.531C102.344 160.163 101.265 160.294 101.074 159.498C100.962 159.057 100.87 159.116 100.627 158.735C100.403 158.353 100.12 158.721 99.9092 158.241C99.6262 157.589 99.6855 155.622 100.225 155.128C100.732 154.668 101.127 154.793 101.607 155.194C101.844 155.418 101.969 155.688 102.226 155.892C102.417 156.036 102.699 156.115 102.857 156.175C103.95 156.635 103.206 157.3 103.048 157.965C102.982 158.221 103.002 158.596 102.903 158.84C102.778 159.156 102.509 159.314 102.41 159.603" fill="white"/>
-<path d="M102.614 159.531C102.344 160.163 101.265 160.294 101.074 159.498C100.962 159.057 100.87 159.116 100.627 158.735C100.403 158.353 100.12 158.721 99.9092 158.241C99.6262 157.589 99.6855 155.622 100.225 155.128C100.732 154.668 101.127 154.793 101.607 155.194C101.844 155.418 101.969 155.688 102.226 155.892C102.417 156.036 102.699 156.115 102.857 156.175C103.95 156.635 103.206 157.3 103.048 157.965C102.982 158.221 103.002 158.596 102.903 158.84C102.778 159.156 102.509 159.314 102.41 159.603" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M102.614 159.531C102.344 160.163 101.265 160.294 101.074 159.498C100.962 159.057 100.87 159.116 100.627 158.735C100.403 158.353 100.12 158.721 99.9092 158.241C99.6262 157.589 99.6855 155.622 100.225 155.128C100.732 154.668 101.127 154.793 101.607 155.194C101.844 155.418 101.969 155.688 102.226 155.892C102.417 156.036 102.699 156.115 102.857 156.175C103.95 156.635 103.206 157.3 103.048 157.965C102.982 158.221 103.002 158.596 102.903 158.84C102.778 159.156 102.509 159.314 102.41 159.603" fill="white"/>
-<path d="M102.614 159.531C102.344 160.163 101.265 160.294 101.074 159.498C100.962 159.057 100.87 159.116 100.627 158.735C100.403 158.353 100.12 158.721 99.9092 158.241C99.6262 157.589 99.6855 155.622 100.225 155.128C100.732 154.668 101.127 154.793 101.607 155.194C101.844 155.418 101.969 155.688 102.226 155.892C102.417 156.036 102.699 156.115 102.857 156.175C103.95 156.635 103.206 157.3 103.048 157.965C102.982 158.221 103.002 158.596 102.903 158.84C102.778 159.156 102.509 159.314 102.41 159.603" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M96.9609 163.69C97.2637 164.894 97.3097 166.401 97.3097 167.796C97.3097 169.336 96.9149 170.764 96.9609 172.284C97.5006 172.396 98.0534 168.369 98.1323 167.777C98.2771 166.842 98.3692 165.822 98.1981 164.907C98.1323 164.526 97.4216 162.604 96.8162 163.4" fill="white"/>
-<path d="M96.9609 163.69C97.2637 164.894 97.3097 166.401 97.3097 167.796C97.3097 169.336 96.9149 170.764 96.9609 172.284C97.5006 172.396 98.0534 168.369 98.1323 167.777C98.2771 166.842 98.3692 165.822 98.1981 164.907C98.1323 164.526 97.4216 162.604 96.8162 163.4" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M96.9609 163.69C97.2637 164.894 97.3097 166.401 97.3097 167.796C97.3097 169.336 96.9149 170.764 96.9609 172.284C97.5006 172.396 98.0534 168.369 98.1323 167.777C98.2771 166.842 98.3692 165.822 98.1981 164.907C98.1323 164.526 97.4216 162.604 96.8162 163.4" fill="white"/>
-<path d="M96.9609 163.69C97.2637 164.894 97.3097 166.401 97.3097 167.796C97.3097 169.336 96.9149 170.764 96.9609 172.284C97.5006 172.396 98.0534 168.369 98.1323 167.777C98.2771 166.842 98.3692 165.822 98.1981 164.907C98.1323 164.526 97.4216 162.604 96.8162 163.4" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M106.345 165.243C107.424 165.085 107.253 169.145 107.267 169.954C107.28 170.876 107.359 171.619 107.694 172.495C107.806 172.764 108.28 173.475 107.964 173.765C107.536 174.16 107.063 173.416 106.964 173.08C107.03 173.416 106.885 173.429 106.76 173.607C106.411 172.955 106.411 171.942 106.207 171.224C105.983 170.402 105.779 169.639 105.779 168.783C105.779 167.816 105.713 166.861 105.713 165.927C105.713 165.723 105.588 164.913 105.746 164.769C106.082 164.466 106.49 164.946 106.49 165.295" fill="white"/>
-<path d="M106.345 165.243C107.424 165.085 107.253 169.145 107.267 169.954C107.28 170.876 107.359 171.619 107.694 172.495C107.806 172.764 108.28 173.475 107.964 173.765C107.536 174.16 107.063 173.416 106.964 173.08C107.03 173.416 106.885 173.429 106.76 173.607C106.411 172.955 106.411 171.942 106.207 171.224C105.983 170.402 105.779 169.639 105.779 168.783C105.779 167.816 105.713 166.861 105.713 165.927C105.713 165.723 105.588 164.913 105.746 164.769C106.082 164.466 106.49 164.946 106.49 165.295" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M106.345 165.243C107.424 165.085 107.253 169.145 107.267 169.954C107.28 170.876 107.359 171.619 107.694 172.495C107.806 172.764 108.28 173.475 107.964 173.765C107.536 174.16 107.063 173.416 106.964 173.08C107.03 173.416 106.885 173.429 106.76 173.607C106.411 172.955 106.411 171.942 106.207 171.224C105.983 170.402 105.779 169.639 105.779 168.783C105.779 167.816 105.713 166.861 105.713 165.927C105.713 165.723 105.588 164.913 105.746 164.769C106.082 164.466 106.49 164.946 106.49 165.295" fill="white"/>
-<path d="M106.345 165.243C107.424 165.085 107.253 169.145 107.267 169.954C107.28 170.876 107.359 171.619 107.694 172.495C107.806 172.764 108.28 173.475 107.964 173.765C107.536 174.16 107.063 173.416 106.964 173.08C107.03 173.416 106.885 173.429 106.76 173.607C106.411 172.955 106.411 171.942 106.207 171.224C105.983 170.402 105.779 169.639 105.779 168.783C105.779 167.816 105.713 166.861 105.713 165.927C105.713 165.723 105.588 164.913 105.746 164.769C106.082 164.466 106.49 164.946 106.49 165.295" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M105.134 177.569C105.529 178.043 105.957 178.536 106.405 178.984C107.122 179.714 107.168 180.234 107.122 181.267C107.056 182.222 105.977 183.584 106.135 181.899C106.214 181.057 106.233 181.136 105.582 180.708C104.93 180.28 103.996 179.537 103.627 178.832C103.088 177.786 104.628 176.595 105.292 177.497" fill="white"/>
-<path d="M105.134 177.569C105.529 178.043 105.957 178.536 106.405 178.984C107.122 179.714 107.168 180.234 107.122 181.267C107.056 182.222 105.977 183.584 106.135 181.899C106.214 181.057 106.233 181.136 105.582 180.708C104.93 180.28 103.996 179.537 103.627 178.832C103.088 177.786 104.628 176.595 105.292 177.497" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M105.134 177.569C105.529 178.043 105.957 178.536 106.405 178.984C107.122 179.714 107.168 180.234 107.122 181.267C107.056 182.222 105.977 183.584 106.135 181.899C106.214 181.057 106.233 181.136 105.582 180.708C104.93 180.28 103.996 179.537 103.627 178.832C103.088 177.786 104.628 176.595 105.292 177.497" fill="white"/>
-<path d="M105.134 177.569C105.529 178.043 105.957 178.536 106.405 178.984C107.122 179.714 107.168 180.234 107.122 181.267C107.056 182.222 105.977 183.584 106.135 181.899C106.214 181.057 106.233 181.136 105.582 180.708C104.93 180.28 103.996 179.537 103.627 178.832C103.088 177.786 104.628 176.595 105.292 177.497" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M99.9291 177.858C99.9291 179.398 99.7251 180.919 99.6593 182.478C99.6264 183.242 99.7382 184.143 99.6593 184.887C99.5803 185.696 98.738 186.19 98.1062 186.729C97.6324 186.177 98.297 184.906 98.3299 184.209C98.3958 183.084 98.1062 182.017 97.9351 180.925C97.8364 180.274 97.3033 178.385 97.6784 177.753C98.2839 176.74 99.7119 177.687 99.9488 178.497" fill="white"/>
-<path d="M99.9291 177.858C99.9291 179.398 99.7251 180.919 99.6593 182.478C99.6264 183.242 99.7382 184.143 99.6593 184.887C99.5803 185.696 98.738 186.19 98.1062 186.729C97.6324 186.177 98.297 184.906 98.3299 184.209C98.3958 183.084 98.1062 182.017 97.9351 180.925C97.8364 180.274 97.3033 178.385 97.6784 177.753C98.2839 176.74 99.7119 177.687 99.9488 178.497" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M99.9291 177.858C99.9291 179.398 99.7251 180.919 99.6593 182.478C99.6264 183.242 99.7382 184.143 99.6593 184.887C99.5803 185.696 98.738 186.19 98.1062 186.729C97.6324 186.177 98.297 184.906 98.3299 184.209C98.3958 183.084 98.1062 182.017 97.9351 180.925C97.8364 180.274 97.3033 178.385 97.6784 177.753C98.2839 176.74 99.7119 177.687 99.9488 178.497" fill="white"/>
-<path d="M99.9291 177.858C99.9291 179.398 99.7251 180.919 99.6593 182.478C99.6264 183.242 99.7382 184.143 99.6593 184.887C99.5803 185.696 98.738 186.19 98.1062 186.729C97.6324 186.177 98.297 184.906 98.3299 184.209C98.3958 183.084 98.1062 182.017 97.9351 180.925C97.8364 180.274 97.3033 178.385 97.6784 177.753C98.2839 176.74 99.7119 177.687 99.9488 178.497" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M107.122 179.681C108.28 179.806 107.346 183.123 106.516 183.439C105.615 183.787 106.247 182.294 106.424 181.853C106.648 181.267 107.089 180.142 107.043 179.536" fill="white"/>
-<path d="M107.122 179.681C108.28 179.806 107.346 183.123 106.516 183.439C105.615 183.787 106.247 182.294 106.424 181.853C106.648 181.267 107.089 180.142 107.043 179.536" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M107.122 179.681C108.28 179.806 107.346 183.123 106.516 183.439C105.615 183.787 106.247 182.294 106.424 181.853C106.648 181.267 107.089 180.142 107.043 179.536" fill="white"/>
-<path d="M107.122 179.681C108.28 179.806 107.346 183.123 106.516 183.439C105.615 183.787 106.247 182.294 106.424 181.853C106.648 181.267 107.089 180.142 107.043 179.536" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M99.7052 184.551C100.311 185.617 99.6065 186.663 98.6391 187.295C98.2114 187.578 97.5599 187.914 97.3032 187.295C97.0795 186.742 97.7507 185.913 97.9218 185.419C97.9087 187.512 99.3038 185.294 99.6986 184.498C99.8434 184.577 99.7974 184.643 99.8237 184.768" fill="white"/>
-<path d="M99.7052 184.551C100.311 185.617 99.6065 186.663 98.6391 187.295C98.2114 187.578 97.5599 187.914 97.3032 187.295C97.0795 186.742 97.7507 185.913 97.9218 185.419C97.9087 187.512 99.3038 185.294 99.6986 184.498C99.8434 184.577 99.7974 184.643 99.8237 184.768" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M99.7052 184.551C100.311 185.617 99.6065 186.663 98.6391 187.295C98.2114 187.578 97.5599 187.914 97.3032 187.295C97.0795 186.742 97.7507 185.913 97.9218 185.419C97.9087 187.512 99.3038 185.294 99.6986 184.498C99.8434 184.577 99.7974 184.643 99.8237 184.768" fill="white"/>
-<path d="M99.7052 184.551C100.311 185.617 99.6065 186.663 98.6391 187.295C98.2114 187.578 97.5599 187.914 97.3032 187.295C97.0795 186.742 97.7507 185.913 97.9218 185.419C97.9087 187.512 99.3038 185.294 99.6986 184.498C99.8434 184.577 99.7974 184.643 99.8237 184.768" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M114.058 170.527C113.485 170.718 113.281 171.527 113.374 172.047C113.439 172.383 113.578 172.6 113.597 172.969C113.61 173.271 113.485 173.791 113.742 173.969C113.999 174.147 114.584 173.87 114.742 173.666C115.045 173.252 114.867 173.034 114.854 172.633C114.841 172.192 115.539 172.06 115.361 171.6C115.196 171.212 114.486 170.323 114.058 170.527Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.973 175.956C116.815 176.7 116.829 177.529 116.769 178.273C116.704 178.878 116.96 180.332 116.611 180.813C115.848 181.879 115.657 179.608 115.624 179.194C115.532 178.147 115.861 177.371 115.927 176.371" fill="white"/>
-<path d="M116.973 175.956C116.815 176.7 116.829 177.529 116.769 178.273C116.704 178.878 116.96 180.332 116.611 180.813C115.848 181.879 115.657 179.608 115.624 179.194C115.532 178.147 115.861 177.371 115.927 176.371" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M116.973 175.956C116.815 176.7 116.829 177.529 116.769 178.273C116.704 178.878 116.96 180.332 116.611 180.813C115.848 181.879 115.657 179.608 115.624 179.194C115.532 178.147 115.861 177.371 115.927 176.371" fill="white"/>
-<path d="M116.973 175.956C116.815 176.7 116.829 177.529 116.769 178.273C116.704 178.878 116.96 180.332 116.611 180.813C115.848 181.879 115.657 179.608 115.624 179.194C115.532 178.147 115.861 177.371 115.927 176.371" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M115.723 182.017C115.71 182.175 115.736 182.366 115.802 182.491C116.723 182.715 119.198 182.919 118.454 184.11C117.928 184.156 117.309 183.827 116.789 183.695C116.236 183.55 115.631 183.55 115.078 183.393C114.473 183.235 114.157 182.919 114.361 182.221C114.473 181.826 114.44 181.714 114.966 181.728C115.269 181.741 115.506 181.681 115.572 182.076" fill="white"/>
-<path d="M115.723 182.017C115.71 182.175 115.736 182.366 115.802 182.491C116.723 182.715 119.198 182.919 118.454 184.11C117.928 184.156 117.309 183.827 116.789 183.695C116.236 183.55 115.631 183.55 115.078 183.393C114.473 183.235 114.157 182.919 114.361 182.221C114.473 181.826 114.44 181.714 114.966 181.728C115.269 181.741 115.506 181.681 115.572 182.076" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M115.723 182.017C115.71 182.175 115.736 182.366 115.802 182.491C116.723 182.715 119.198 182.919 118.454 184.11C117.928 184.156 117.309 183.827 116.789 183.695C116.236 183.55 115.631 183.55 115.078 183.393C114.473 183.235 114.157 182.919 114.361 182.221C114.473 181.826 114.44 181.714 114.966 181.728C115.269 181.741 115.506 181.681 115.572 182.076" fill="white"/>
-<path d="M115.723 182.017C115.71 182.175 115.736 182.366 115.802 182.491C116.723 182.715 119.198 182.919 118.454 184.11C117.928 184.156 117.309 183.827 116.789 183.695C116.236 183.55 115.631 183.55 115.078 183.393C114.473 183.235 114.157 182.919 114.361 182.221C114.473 181.826 114.44 181.714 114.966 181.728C115.269 181.741 115.506 181.681 115.572 182.076" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M113.308 182.017C113.578 182.366 113.387 183.859 113.374 184.458C113.36 185.426 113.387 186.676 112.248 186.597C112.215 185.505 112.261 184.425 112.314 183.346C112.327 182.997 112.136 182.122 112.301 181.852C112.551 181.503 113.308 181.411 113.308 182.017Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M118.513 183.425C119.244 182.504 119.231 184.235 118.954 184.708C118.322 185.853 118.401 183.596 118.526 183.359" fill="white"/>
-<path d="M118.513 183.425C119.244 182.504 119.231 184.235 118.954 184.708C118.322 185.853 118.401 183.596 118.526 183.359" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M118.513 183.425C119.244 182.504 119.231 184.235 118.954 184.708C118.322 185.853 118.401 183.596 118.526 183.359" fill="white"/>
-<path d="M118.513 183.425C119.244 182.504 119.231 184.235 118.954 184.708C118.322 185.853 118.401 183.596 118.526 183.359" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M100.975 159.182C100.008 159.182 98.9418 159.037 98.2903 159.893C97.8626 160.465 96.5793 162.308 96.6715 162.986C96.7636 163.703 97.7968 163.953 97.9284 164.697C98.0534 165.414 97.9152 166.539 97.8626 167.27C97.7376 169.145 97.2572 170.935 97.2308 172.837C97.2177 173.851 96.757 174.838 96.8031 175.818C96.836 176.503 97.4085 177.832 98.0863 178.102C98.5931 178.293 98.8958 177.957 99.3433 177.878C99.8368 177.812 100.061 177.99 100.488 178.194C101.745 178.826 102.772 178.99 103.963 178.128C104.378 177.845 104.693 177.556 105.134 177.319C105.74 177.016 105.944 177.128 105.977 176.286C106.043 175.476 105.931 174.667 105.977 173.87C106.043 172.778 105.582 171.62 105.371 170.541C105.148 169.271 105.305 168.461 105.549 167.224C105.615 166.908 105.47 166 105.727 165.783C106.062 165.48 106.806 166.052 107.168 165.717C107.786 165.19 106.326 162.828 105.865 162.341C105.101 161.499 104.154 160.551 103.279 159.847C103.18 159.781 102.851 159.498 102.726 159.485C102.265 159.419 102.568 159.584 102.232 159.709C101.66 160.011 101.311 160.024 100.975 159.182Z" fill="white" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M99.0076 159.675C99.0208 159.53 99.1524 159.517 99.0208 159.405C99.5472 162.419 101.416 165.15 102.673 167.941C102.897 168.447 103.226 169.415 103.739 169.638C104.246 169.842 105.2 169.625 105.727 169.559C106.806 169.448 106.569 170.033 106.714 170.974C106.872 172.04 107.155 172.448 105.792 172.514C104.95 172.56 103.522 172.797 103.048 171.961C102.555 171.106 102.699 169.757 103.766 169.744C103.134 169.586 102.509 168.079 102.035 167.335C101.495 166.48 101.1 165.302 100.528 164.466C99.8631 163.512 99.0668 162.307 98.7049 161.195C98.5799 160.8 98.2311 158.879 99.1195 159.339" fill="white"/>
-<path d="M99.0076 159.675C99.0208 159.53 99.1524 159.517 99.0208 159.405C99.5472 162.419 101.416 165.15 102.673 167.941C102.897 168.447 103.226 169.415 103.739 169.638C104.246 169.842 105.2 169.625 105.727 169.559C106.806 169.448 106.569 170.033 106.714 170.974C106.872 172.04 107.155 172.448 105.792 172.514C104.95 172.56 103.522 172.797 103.048 171.961C102.555 171.106 102.699 169.757 103.766 169.744C103.134 169.586 102.509 168.079 102.035 167.335C101.495 166.48 101.1 165.302 100.528 164.466C99.8631 163.512 99.0668 162.307 98.7049 161.195C98.5799 160.8 98.2311 158.879 99.1195 159.339" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M99.0076 159.675C99.0208 159.53 99.1524 159.517 99.0208 159.405C99.5472 162.419 101.416 165.15 102.673 167.941C102.897 168.447 103.226 169.415 103.739 169.638C104.246 169.842 105.2 169.625 105.727 169.559C106.806 169.448 106.569 170.033 106.714 170.974C106.872 172.04 107.155 172.448 105.792 172.514C104.95 172.56 103.522 172.797 103.048 171.961C102.555 171.106 102.699 169.757 103.766 169.744C103.134 169.586 102.509 168.079 102.035 167.335C101.495 166.48 101.1 165.302 100.528 164.466C99.8631 163.512 99.0668 162.307 98.7049 161.195C98.5799 160.8 98.2311 158.879 99.1195 159.339" fill="white"/>
-<path d="M99.0076 159.675C99.0208 159.53 99.1524 159.517 99.0208 159.405C99.5472 162.419 101.416 165.15 102.673 167.941C102.897 168.447 103.226 169.415 103.739 169.638C104.246 169.842 105.2 169.625 105.727 169.559C106.806 169.448 106.569 170.033 106.714 170.974C106.872 172.04 107.155 172.448 105.792 172.514C104.95 172.56 103.522 172.797 103.048 171.961C102.555 171.106 102.699 169.757 103.766 169.744C103.134 169.586 102.509 168.079 102.035 167.335C101.495 166.48 101.1 165.302 100.528 164.466C99.8631 163.512 99.0668 162.307 98.7049 161.195C98.5799 160.8 98.2311 158.879 99.1195 159.339" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M102.535 156.358C102.502 156.582 102.39 156.832 102.265 156.99C102.232 156.214 101.758 155.306 100.995 154.99C100.014 154.595 100.074 155.496 99.9815 156.24C99.9025 157.036 99.7117 157.813 100.409 158.352C100.666 158.543 101.377 158.53 100.87 158.958C100.646 159.149 100.074 158.892 99.7775 159.149C99.5998 158.675 99.6854 158.247 99.4419 157.754C99.205 157.227 98.8364 156.74 98.9681 156.135C99.1918 155.167 100.699 154.246 101.6 154.042C102.903 153.739 103.601 155.134 103.851 156.247C103.996 156.898 103.917 157.214 104.437 157.688C104.976 158.181 105.661 158.451 106.167 159.024C106.977 159.925 107.122 161.623 106.102 162.452C105.628 161.801 104.911 161.518 104.292 161.024C103.844 160.675 102.844 160.057 102.594 159.596C102.278 159.011 102.581 158.234 102.831 157.773C102.976 157.517 103.357 157.188 103.259 156.852C103.147 156.516 102.752 156.378 102.528 156.628" fill="white"/>
-<path d="M102.535 156.358C102.502 156.582 102.39 156.832 102.265 156.99C102.232 156.214 101.758 155.306 100.995 154.99C100.014 154.595 100.074 155.496 99.9815 156.24C99.9025 157.036 99.7117 157.813 100.409 158.352C100.666 158.543 101.377 158.53 100.87 158.958C100.646 159.149 100.074 158.892 99.7775 159.149C99.5998 158.675 99.6854 158.247 99.4419 157.754C99.205 157.227 98.8364 156.74 98.9681 156.135C99.1918 155.167 100.699 154.246 101.6 154.042C102.903 153.739 103.601 155.134 103.851 156.247C103.996 156.898 103.917 157.214 104.437 157.688C104.976 158.181 105.661 158.451 106.167 159.024C106.977 159.925 107.122 161.623 106.102 162.452C105.628 161.801 104.911 161.518 104.292 161.024C103.844 160.675 102.844 160.057 102.594 159.596C102.278 159.011 102.581 158.234 102.831 157.773C102.976 157.517 103.357 157.188 103.259 156.852C103.147 156.516 102.752 156.378 102.528 156.628" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M102.535 156.358C102.502 156.582 102.39 156.832 102.265 156.99C102.232 156.214 101.758 155.306 100.995 154.99C100.014 154.595 100.074 155.496 99.9815 156.24C99.9025 157.036 99.7117 157.813 100.409 158.352C100.666 158.543 101.377 158.53 100.87 158.958C100.646 159.149 100.074 158.892 99.7775 159.149C99.5998 158.675 99.6854 158.247 99.4419 157.754C99.205 157.227 98.8364 156.74 98.9681 156.135C99.1918 155.167 100.699 154.246 101.6 154.042C102.903 153.739 103.601 155.134 103.851 156.247C103.996 156.898 103.917 157.214 104.437 157.688C104.976 158.181 105.661 158.451 106.167 159.024C106.977 159.925 107.122 161.623 106.102 162.452C105.628 161.801 104.911 161.518 104.292 161.024C103.844 160.675 102.844 160.057 102.594 159.596C102.278 159.011 102.581 158.234 102.831 157.773C102.976 157.517 103.357 157.188 103.259 156.852C103.147 156.516 102.752 156.378 102.528 156.628" fill="#DA3635"/>
-<path d="M102.535 156.358C102.502 156.582 102.39 156.832 102.265 156.99C102.232 156.214 101.758 155.306 100.995 154.99C100.014 154.595 100.074 155.496 99.9815 156.24C99.9025 157.036 99.7117 157.813 100.409 158.352C100.666 158.543 101.377 158.53 100.87 158.958C100.646 159.149 100.074 158.892 99.7775 159.149C99.5998 158.675 99.6854 158.247 99.4419 157.754C99.205 157.227 98.8364 156.74 98.9681 156.135C99.1918 155.167 100.699 154.246 101.6 154.042C102.903 153.739 103.601 155.134 103.851 156.247C103.996 156.898 103.917 157.214 104.437 157.688C104.976 158.181 105.661 158.451 106.167 159.024C106.977 159.925 107.122 161.623 106.102 162.452C105.628 161.801 104.911 161.518 104.292 161.024C103.844 160.675 102.844 160.057 102.594 159.596C102.278 159.011 102.581 158.234 102.831 157.773C102.976 157.517 103.357 157.188 103.259 156.852C103.147 156.516 102.752 156.378 102.528 156.628" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M114.88 173.475C115.071 174.014 115.782 173.981 116.197 174.317C116.513 174.587 116.993 175.001 116.973 175.699C116.96 176.272 116.466 176.094 116.21 176.462C116.052 176.699 116.131 177.588 116.065 177.904C115.986 178.377 115.94 178.792 115.92 179.286C115.887 180.207 116.078 181.062 116.065 181.984C115.795 182.082 114.479 182.319 114.242 182.142C113.939 181.918 114.051 180.681 114.018 180.332C113.939 180.681 113.92 181.536 113.67 181.793C113.413 182.063 112.511 182.221 112.288 181.997C112.005 181.694 112.274 180.095 112.242 179.68C112.228 179.095 112.143 178.509 112.097 177.936C111.985 176.686 111.59 175.015 112.163 173.843C112.432 173.29 113.005 172.876 113.558 173.211C113.874 173.402 113.571 173.863 114.209 173.896C114.387 173.909 114.683 173.56 114.762 173.547" fill="white"/>
-<path d="M114.88 173.475C115.071 174.014 115.782 173.981 116.197 174.317C116.513 174.587 116.993 175.001 116.973 175.699C116.96 176.272 116.466 176.094 116.21 176.462C116.052 176.699 116.131 177.588 116.065 177.904C115.986 178.377 115.94 178.792 115.92 179.286C115.887 180.207 116.078 181.062 116.065 181.984C115.795 182.082 114.479 182.319 114.242 182.142C113.939 181.918 114.051 180.681 114.018 180.332C113.939 180.681 113.92 181.536 113.67 181.793C113.413 182.063 112.511 182.221 112.288 181.997C112.005 181.694 112.274 180.095 112.242 179.68C112.228 179.095 112.143 178.509 112.097 177.936C111.985 176.686 111.59 175.015 112.163 173.843C112.432 173.29 113.005 172.876 113.558 173.211C113.874 173.402 113.571 173.863 114.209 173.896C114.387 173.909 114.683 173.56 114.762 173.547" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M114.88 173.475C115.071 174.014 115.782 173.981 116.197 174.317C116.513 174.587 116.993 175.001 116.973 175.699C116.96 176.272 116.466 176.094 116.21 176.462C116.052 176.699 116.131 177.588 116.065 177.904C115.986 178.377 115.94 178.792 115.92 179.286C115.887 180.207 116.078 181.062 116.065 181.984C115.795 182.082 114.479 182.319 114.242 182.142C113.939 181.918 114.051 180.681 114.018 180.332C113.939 180.681 113.92 181.536 113.67 181.793C113.413 182.063 112.511 182.221 112.288 181.997C112.005 181.694 112.274 180.095 112.242 179.68C112.228 179.095 112.143 178.509 112.097 177.936C111.985 176.686 111.59 175.015 112.163 173.843C112.432 173.29 113.005 172.876 113.558 173.211C113.874 173.402 113.571 173.863 114.209 173.896C114.387 173.909 114.683 173.56 114.762 173.547" fill="white"/>
-<path d="M114.88 173.475C115.071 174.014 115.782 173.981 116.197 174.317C116.513 174.587 116.993 175.001 116.973 175.699C116.96 176.272 116.466 176.094 116.21 176.462C116.052 176.699 116.131 177.588 116.065 177.904C115.986 178.377 115.94 178.792 115.92 179.286C115.887 180.207 116.078 181.062 116.065 181.984C115.795 182.082 114.479 182.319 114.242 182.142C113.939 181.918 114.051 180.681 114.018 180.332C113.939 180.681 113.92 181.536 113.67 181.793C113.413 182.063 112.511 182.221 112.288 181.997C112.005 181.694 112.274 180.095 112.242 179.68C112.228 179.095 112.143 178.509 112.097 177.936C111.985 176.686 111.59 175.015 112.163 173.843C112.432 173.29 113.005 172.876 113.558 173.211C113.874 173.402 113.571 173.863 114.209 173.896C114.387 173.909 114.683 173.56 114.762 173.547" stroke="#706F6F" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-<path d="M113.801 169.401C114.262 169.625 114.104 170.119 114.433 170.369C114.782 170.639 115.21 170.382 115.605 170.862C116.348 171.751 115.703 172.573 114.716 172.784C114.716 172.784 113.637 172.053 113.907 170.658C113.821 170.257 113.644 169.763 113.801 169.401Z" fill="#DA3635" stroke="#DA3635" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
-</svg>
+  <g clip-path="url(#clip0_14133_125036)">
+    <path
+      d="M21 102.5H47.5L98 106.5H179.75C182.097 106.5 184 104.597 184 102.25C184 99.9028 182.097 98 179.75 98H175.5C174.119 98 173 96.8807 173 95.5C173 94.1193 174.119 93 175.5 93H183.75C189.687 93 194.5 88.1871 194.5 82.25V78.5C194.5 74.3579 191.142 71 187 71C182.858 71 179.5 67.6421 179.5 63.5V61C179.5 57.9624 177.038 55.5 174 55.5C170.962 55.5 168.5 53.0376 168.5 50V46.25C168.5 41.1414 172.641 37 177.75 37H185.25C188.426 37 191 34.4256 191 31.25C191 28.0744 188.426 25.5 185.25 25.5H169.5C166.186 25.5 163.5 22.8137 163.5 19.5C163.5 16.1863 160.814 13.5 157.5 13.5H149.312C146.137 13.5 143.562 10.9256 143.562 7.75C143.562 4.57436 140.988 2 137.812 2H89.5C86.3244 2 83.75 4.57436 83.75 7.75C83.75 10.9256 81.1756 13.5 78 13.5H66.75C64.9551 13.5 63.5 12.0449 63.5 10.25C63.5 8.45507 62.0449 7 60.25 7H23.25C21.4551 7 20 8.45507 20 10.25C20 12.0449 18.5449 13.5 16.75 13.5H10C6.68629 13.5 4 16.1863 4 19.5C4 22.8137 6.68629 25.5 10 25.5H15C19.1421 25.5 22.5 28.8579 22.5 33V35C22.5 38.0376 20.0376 40.5 17 40.5C13.9624 40.5 11.5 42.9624 11.5 46V47C11.5 50.5899 14.4101 53.5 18 53.5H24C28.1421 53.5 31.5 56.8579 31.5 61C31.5 65.1421 28.1421 68.5 24 68.5H17.75C10.1561 68.5 4 74.6561 4 82.25V85.5C4 94.8888 11.6112 102.5 21 102.5Z"
+      fill="#DDEDFF" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M148.554 44.806C148.539 44.806 148.525 44.806 148.51 44.806C148.496 44.806 148.482 44.806 148.467 44.806H134.821C134.799 44.8062 134.777 44.8063 134.754 44.8063C134.732 44.8063 134.71 44.8062 134.687 44.806H134.404V44.7973C130.865 44.6148 128.053 41.6883 128.053 38.1048C128.053 34.4036 131.053 31.4033 134.754 31.4033C134.873 31.4033 134.991 31.4063 135.107 31.4124L135.107 31.403C135.107 24.0007 141.108 18 148.51 18C153.631 18 158.081 20.8714 160.338 25.0918C160.624 25.0668 160.915 25.054 161.208 25.054C166.662 25.054 171.084 29.4756 171.084 34.9299C171.084 35.171 171.075 35.4101 171.058 35.6469C173.438 35.8148 175.316 37.7984 175.316 40.2206C175.316 42.753 173.263 44.8059 170.731 44.8059C170.613 44.8059 170.496 44.8014 170.38 44.7927V44.806H148.554Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M23 46.9825C22.8347 46.9941 22.668 47 22.5 47C18.3579 47 15 43.4183 15 39C15 34.5817 18.3579 31 22.5 31C24.2006 31 25.769 31.6037 27.0271 32.6212C27.4631 25.575 33.1046 20 40 20C41.7774 20 43.4714 20.3704 45.0145 21.0409C47.7381 17.9455 51.6804 16 56.0658 16C64.2847 16 70.9474 22.8335 70.9474 31.2632C70.9474 32.6076 70.7779 33.9114 70.4596 35.1534C72.542 36.0488 74.0002 38.1187 74.0002 40.5292C74.0002 43.7595 71.3815 46.3782 68.1512 46.3782C68.1006 46.3782 68.0502 46.3775 68 46.3763V47H40H23V46.9825Z"
+      fill="white" />
+    <rect width="112.945" height="112.945" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 87.0557)"
+      fill="#A0C7F0" />
+    <path
+      d="M99.7217 69.6358L197.531 123.472L197.535 126.108L99.7217 182.58L1.90882 126.108L1.90903 123.47L99.7217 69.6358Z"
+      fill="#4277AF" />
+    <rect width="112.945" height="112.945" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 67)"
+      fill="url(#paint0_linear_14133_125036)" />
+    <path
+      d="M157.392 124.902C157.341 142.654 132.455 156.974 101.807 156.886C71.159 156.798 46.3554 142.335 46.4065 124.583C46.4576 106.83 71.344 92.511 101.992 92.5991C132.64 92.6873 157.443 107.15 157.392 124.902Z"
+      fill="#769FCB" />
+    <path
+      d="M157.626 102.134C158.293 97.3011 161.326 87.9345 168.126 89.1345C176.626 90.6345 156.626 107.135 157.626 102.134Z"
+      fill="#66AF82" />
+    <path
+      d="M158.625 99.6344C159.792 96.4678 161.425 89.2344 158.625 85.6344C155.125 81.1344 155.125 102.134 158.625 99.6344Z"
+      fill="#3D8C5C" />
+    <path d="M20.9999 116.5C21.6666 112 22.1999 103.5 18.9999 105.5C14.9999 108 19.4999 119.5 20.9999 116.5Z"
+      fill="#3D8C5C" />
+    <path d="M20.4999 117C18.1666 114.333 13.2999 109.9 12.4999 113.5C11.4999 118 21.9999 119.5 20.4999 117Z"
+      fill="#66AF82" />
+    <path
+      d="M51.7623 111.12L51.73 122.451C51.7103 129.8 56.5559 137.159 66.2707 142.766L66.303 131.435C56.593 125.826 51.7426 118.47 51.7623 111.12Z"
+      fill="#4277AF" />
+    <path
+      d="M150.245 122.73L150.277 111.4C150.254 118.654 145.488 125.9 135.964 131.431C116.792 142.57 85.5988 142.572 66.3006 131.43L66.2683 142.761C85.5665 153.902 116.76 153.901 135.931 142.762C145.456 137.231 150.222 129.985 150.245 122.73Z"
+      fill="#A0C7F1" />
+    <path
+      d="M150.273 111.407C150.228 127.165 128.136 139.877 100.93 139.798C73.7245 139.72 51.7065 126.882 51.7519 111.123C51.7972 95.3647 73.8887 82.6533 101.095 82.7316C128.301 82.8099 150.319 95.6482 150.273 111.407Z"
+      fill="#EDF7FF" />
+    <path
+      d="M69.1958 127.383C69.8049 127.738 70.7911 127.733 71.3978 127.383L80.2048 122.266C80.8067 121.919 80.8048 121.349 80.1957 120.994C79.5893 120.644 78.6052 120.641 78.0013 120.996L69.1943 126.113C68.5876 126.463 68.5895 127.034 69.1958 127.383Z"
+      fill="#A0C7F1" />
+    <path
+      d="M118.011 99.0137C118.62 99.3682 119.606 99.3638 120.208 99.0163L129.02 93.8967C129.622 93.5492 129.62 92.9789 129.011 92.6244C128.404 92.2747 127.42 92.2715 126.816 92.6265L118.005 97.7462C117.403 98.0937 117.405 98.664 118.011 99.0137Z"
+      fill="#A0C7F1" />
+    <path
+      d="M127.012 127.38C127.618 127.73 128.602 127.733 129.206 127.378C129.813 127.028 129.811 126.458 129.202 126.103L120.341 120.986C119.732 120.631 118.746 120.635 118.139 120.986C117.537 121.333 117.539 121.904 118.148 122.258L127.012 127.38Z"
+      fill="#A0C7F1" />
+    <path
+      d="M77.8753 99.0166C78.4844 99.3712 79.4705 99.3668 80.0724 99.0193C80.6791 98.669 80.6772 98.0987 80.0681 97.7442L71.2072 92.6267C70.6008 92.277 69.6119 92.2766 69.0053 92.6269C68.4034 92.9743 68.408 93.5495 69.0144 93.8992L77.8753 99.0166Z"
+      fill="#A0C7F1" />
+    <path
+      d="M98.1447 134.314C98.4262 134.479 98.8155 134.575 99.2466 134.577C100.101 134.578 100.799 134.175 100.794 133.677L100.756 126.438C100.753 126.189 100.578 125.963 100.299 125.803C100.018 125.638 99.6284 125.542 99.2022 125.537C98.3429 125.539 97.6496 125.94 97.6545 126.437L97.693 133.676C97.6858 133.931 97.8613 134.157 98.1447 134.314Z"
+      fill="#A0C7F1" />
+    <path
+      d="M97.9164 94.1994C98.1979 94.3643 98.5872 94.4605 99.0134 94.4649C99.8727 94.4631 100.566 94.0628 100.566 93.5621L100.523 86.3262C100.52 86.0772 100.349 85.8484 100.066 85.691C99.7846 85.5261 99.3952 85.4299 98.9642 85.4283C98.1098 85.4273 97.4164 85.8276 97.4166 86.3283L97.455 93.567C97.4547 93.8111 97.635 94.0345 97.9164 94.1994Z"
+      fill="#A0C7F1" />
+    <path
+      d="M126.393 110.641C126.674 110.806 127.064 110.902 127.49 110.907L139.989 110.906C140.848 110.905 141.542 110.504 141.537 110.006C141.534 109.757 141.359 109.531 141.077 109.366C140.796 109.201 140.407 109.105 139.976 109.104L127.481 109.101C126.622 109.103 125.928 109.503 125.929 110.004C125.931 110.253 126.111 110.476 126.393 110.641Z"
+      fill="#A0C7F1" />
+    <path
+      d="M57.1335 110.639C57.4149 110.804 57.8043 110.9 58.2305 110.904L70.7298 110.904C71.5842 110.905 72.2776 110.504 72.2774 110.004C72.2749 109.755 72.0995 109.529 71.8208 109.369C71.5394 109.204 71.1501 109.107 70.7239 109.103L58.2246 109.104C57.3701 109.103 56.672 109.506 56.6769 110.004C56.6718 110.251 56.8473 110.477 57.1335 110.639Z"
+      fill="#A0C7F1" />
+    <path
+      d="M57.7623 96.1205L57.73 107.451C57.7103 114.8 62.5559 122.159 72.2707 127.766L72.303 116.435C62.593 110.826 57.7426 103.47 57.7623 96.1205Z"
+      fill="#4277AF" />
+    <path
+      d="M156.245 107.73L156.277 96.3995C156.254 103.654 151.488 110.9 141.964 116.431C122.792 127.57 91.5988 127.572 72.3006 116.43L72.2683 127.761C91.5665 138.902 122.76 138.901 141.931 127.762C151.456 122.231 156.222 114.985 156.245 107.73Z"
+      fill="#A0C7F1" />
+    <path
+      d="M156.273 96.4067C156.228 112.165 134.136 124.877 106.93 124.798C79.7245 124.72 57.7065 111.882 57.7519 96.1232C57.7972 80.3647 79.8887 67.6533 107.095 67.7316C134.301 67.8099 156.319 80.6482 156.273 96.4067Z"
+      fill="#EDF7FF" />
+    <path
+      d="M149.672 96.3879C149.632 110.035 130.5 121.044 106.939 120.976C83.3782 120.908 64.31 109.79 64.3493 96.1423C64.3886 82.495 83.5204 71.4866 107.082 71.5544C130.643 71.6222 149.711 82.7405 149.672 96.3879Z"
+      fill="white" />
+    <path
+      d="M80.2844 110.519C80.8311 110.837 81.7162 110.833 82.2608 110.519L90.1658 105.926C90.706 105.614 90.7044 105.102 90.1576 104.784C89.6134 104.47 88.7301 104.467 88.188 104.786L80.283 109.379C79.7384 109.693 79.7401 110.205 80.2844 110.519Z"
+      fill="#A0C7F1" />
+    <path
+      d="M124.101 85.0546C124.648 85.3728 125.533 85.3688 126.073 85.0569L133.983 80.4616C134.523 80.1497 134.521 79.6379 133.975 79.3197C133.43 79.0058 132.547 79.0029 132.005 79.3216L124.096 83.9169C123.555 84.2288 123.557 84.7407 124.101 85.0546Z"
+      fill="#A0C7F1" />
+    <path
+      d="M132.177 110.516C132.721 110.83 133.604 110.833 134.146 110.514C134.691 110.2 134.689 109.688 134.142 109.37L126.189 104.776C125.642 104.458 124.757 104.462 124.213 104.777C123.672 105.088 123.674 105.6 124.221 105.919L132.177 110.516Z"
+      fill="#A0C7F1" />
+    <path
+      d="M88.0716 85.0578C88.6183 85.376 89.5034 85.3721 90.0437 85.0602C90.5882 84.7458 90.5865 84.2339 90.0398 83.9157L82.0864 79.3223C81.5422 79.0085 80.6546 79.0081 80.11 79.3225C79.5698 79.6344 79.574 80.1506 80.1182 80.4645L88.0716 85.0578Z"
+      fill="#A0C7F1" />
+    <path
+      d="M106.266 116.74C106.519 116.888 106.868 116.974 107.255 116.976C108.022 116.977 108.649 116.615 108.644 116.168L108.61 109.671C108.608 109.447 108.45 109.244 108.2 109.1C107.947 108.952 107.598 108.866 107.215 108.862C106.444 108.864 105.822 109.223 105.826 109.67L105.861 116.167C105.854 116.396 106.012 116.599 106.266 116.74Z"
+      fill="#A0C7F1" />
+    <path
+      d="M106.06 80.7337C106.312 80.8817 106.662 80.9681 107.045 80.9719C107.816 80.9704 108.438 80.611 108.438 80.1617L108.399 73.6668C108.397 73.4434 108.244 73.238 107.989 73.0967C107.737 72.9487 107.387 72.8623 107 72.861C106.233 72.86 105.611 73.2193 105.611 73.6687L105.646 80.166C105.646 80.3852 105.807 80.5856 106.06 80.7337Z"
+      fill="#A0C7F1" />
+    <path
+      d="M131.619 95.4917C131.872 95.6397 132.221 95.7261 132.604 95.7299L143.823 95.7295C144.594 95.7279 145.217 95.3686 145.212 94.9217C145.21 94.6983 145.052 94.4953 144.8 94.3473C144.547 94.1992 144.198 94.1129 143.811 94.1115L132.596 94.1095C131.825 94.111 131.202 94.4703 131.203 94.9197C131.205 95.1432 131.367 95.3436 131.619 95.4917Z"
+      fill="#A0C7F1" />
+    <path
+      d="M69.4564 95.4896C69.709 95.6377 70.0585 95.724 70.441 95.7279L81.6601 95.7274C82.427 95.7284 83.0494 95.3691 83.0492 94.9197C83.047 94.6962 82.8895 94.4933 82.6394 94.3496C82.3868 94.2015 82.0373 94.1152 81.6548 94.1113L70.4357 94.1117C69.6688 94.1108 69.0421 94.4726 69.0466 94.9195C69.042 95.1411 69.1995 95.3441 69.4564 95.4896Z"
+      fill="#A0C7F1" />
+    <path
+      d="M138.171 20.3484L128.375 14.6552C122.02 10.9635 113.225 11.4805 103.512 17.0904L113.308 22.7836C123.021 17.1793 131.817 16.6567 138.171 20.3484Z"
+      fill="#FF5D5C" />
+    <path
+      d="M78.876 99.8319L88.6724 105.525C82.4009 101.878 78.5091 94.1275 78.4813 83.1135C78.4201 60.941 94.0154 33.9259 113.313 22.7841L103.517 17.0908C84.219 28.2327 68.6237 55.2478 68.6849 77.4203C68.7127 88.4343 72.6046 96.1846 78.876 99.8319Z"
+      fill="#DA3635" />
+    <path
+      d="M88.668 105.518C75.0433 97.5996 75.0807 72.1122 88.7515 48.5903C102.422 25.0684 124.55 12.4194 138.174 20.338C151.799 28.2565 151.761 53.744 138.091 77.2659C124.42 100.788 102.293 113.437 88.668 105.518Z"
+      fill="#FF9C9B" />
+    <path
+      d="M91.1535 101.242C78.8968 94.1184 78.9304 71.1899 91.2286 50.0297C103.527 28.8694 123.432 17.4904 135.689 24.614C147.946 31.7375 147.912 54.666 135.614 75.8262C123.316 96.9864 103.41 108.365 91.1535 101.242Z"
+      fill="white" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M126.205 88.6348C123.32 91.7692 120.281 94.4666 117.198 96.6646L139.773 28.0553C141.54 30.162 142.845 32.778 143.69 35.7754L126.205 88.6348ZM128.614 22.5046L101.858 103.212C97.9494 103.682 94.2874 103.074 91.1324 101.241C90.1644 100.678 89.2731 100.017 88.4585 99.2659L105.64 32.3016C113.301 25.6667 121.551 22.0627 128.614 22.5046Z"
+      fill="#FFE0E0" />
+    <path
+      d="M114.093 28.7902C113.508 29.1255 113.039 29.9452 113.039 30.6159L113.066 40.3672C113.066 41.0326 113.54 41.304 114.125 40.9687C114.705 40.6334 115.179 39.819 115.174 39.1483L115.147 29.397C115.147 28.7263 114.673 28.4549 114.093 28.7902Z"
+      fill="#DA3635" />
+    <path
+      d="M114.248 82.8426C113.662 83.1779 113.194 83.9976 113.194 84.663L113.22 94.4196C113.22 95.0849 113.694 95.3564 114.279 95.0211C114.86 94.6857 115.333 93.8714 115.328 93.2007L115.301 83.444C115.301 82.7787 114.828 82.5072 114.248 82.8426Z"
+      fill="#DA3635" />
+    <path
+      d="M86.4212 76.7268C85.841 77.0622 85.3673 77.8765 85.3726 78.5472C85.3726 79.2179 85.8463 79.4893 86.4318 79.154L94.9163 74.2571C95.5018 73.9217 95.9702 73.102 95.9702 72.4314C95.9702 71.766 95.4965 71.4945 94.911 71.8299L86.4212 76.7268Z"
+      fill="#DA3635" />
+    <path
+      d="M133.456 49.5647C132.871 49.9001 132.402 50.7198 132.402 51.3851C132.402 52.0558 132.876 52.3272 133.462 51.9919L141.946 47.0949C142.526 46.7596 143 45.9399 143 45.2692C143 44.6039 142.521 44.3324 141.941 44.6678L133.456 49.5647Z"
+      fill="#DA3635" />
+    <path
+      d="M94.4881 49.4742C94.2167 49.6285 93.9505 49.9053 93.7429 50.2619C93.3331 50.9699 93.3331 51.7417 93.7483 51.9759L99.7683 55.4091C99.9759 55.5262 100.247 55.4889 100.514 55.3345C100.785 55.1802 101.051 54.9034 101.259 54.5521C101.669 53.8388 101.669 53.0724 101.253 52.8382L95.2333 49.405C95.0257 49.2772 94.7543 49.3145 94.4881 49.4742Z"
+      fill="#DA3635" />
+    <path
+      d="M127.856 68.4872C127.585 68.6415 127.319 68.9183 127.111 69.2696C126.701 69.9829 126.701 70.7493 127.116 70.9889L133.136 74.4167C133.344 74.5338 133.616 74.5019 133.882 74.3422C134.153 74.1878 134.419 73.9111 134.627 73.5544C135.037 72.8465 135.037 72.08 134.622 71.8405L128.601 68.4073C128.399 68.2902 128.128 68.3328 127.856 68.4872Z"
+      fill="#DA3635" />
+    <path
+      d="M100.596 84.2264C100.325 84.3808 100.059 84.6576 99.8509 85.0089L93.8681 95.3723C93.4583 96.0855 93.4583 96.852 93.8735 97.0862C94.0811 97.2033 94.3525 97.1661 94.624 97.0117C94.8954 96.8573 95.1616 96.5806 95.3692 96.2239L101.352 85.8658C101.762 85.1526 101.762 84.3861 101.347 84.1466C101.139 84.0295 100.868 84.0721 100.596 84.2264Z"
+      fill="#DA3635" />
+    <path
+      d="M133.751 26.8044C133.479 26.9588 133.213 27.2355 133.006 27.5868L127.023 37.9503C126.613 38.6582 126.613 39.4247 127.028 39.6642C127.236 39.7813 127.507 39.7441 127.773 39.5897C128.045 39.4353 128.311 39.1585 128.519 38.8072L134.501 28.4438C134.911 27.7359 134.911 26.9641 134.496 26.7299C134.294 26.6075 134.022 26.6447 133.751 26.8044Z"
+      fill="#DA3635" />
+    <path d="M129.91 57.3991L125.99 55.1196L111.657 64.2711L115.576 66.5506L129.91 57.3991Z" fill="#FF5D5C" />
+    <path d="M115.576 66.5505L111.657 64.271L111.879 68.6577L115.799 70.9372L115.576 66.5505Z" fill="white" />
+    <path d="M129.91 57.3989L115.576 66.5504L115.799 70.9371L130.126 61.7856L129.91 57.3989Z" fill="#FF9C9B" />
+    <path d="M103.807 44.9895L99.887 42.71L96.4899 46.9299L100.404 49.2094L103.807 44.9895Z" fill="#FF5D5C" />
+    <path d="M100.404 49.2092L96.4898 46.9297L111.846 68.5129L115.766 70.7924L100.404 49.2092Z" fill="#DA3635" />
+    <path d="M103.806 44.9893L100.404 49.2091L115.766 70.7923L119.163 66.5669L103.806 44.9893Z" fill="#FF9C9B" />
+    <path
+      d="M117.039 64.0155C117.85 63.5485 118.584 63.504 119.112 63.8098L119.93 64.2824C119.402 63.9766 118.668 64.0155 117.856 64.4881C116.244 65.4166 114.943 67.6739 114.948 69.5253C114.948 70.4427 115.276 71.0932 115.799 71.3934L114.981 70.9208C114.459 70.615 114.131 69.9701 114.131 69.0527C114.125 67.2013 115.426 64.944 117.039 64.0155Z"
+      fill="#FF5D5C" />
+    <path
+      d="M115.799 71.3841C114.662 70.7237 114.666 68.5979 115.806 66.636C116.946 64.6741 118.792 63.619 119.928 64.2794C121.064 64.9397 121.061 67.0656 119.921 69.0275C118.78 70.9894 116.935 72.0445 115.799 71.3841Z"
+      fill="#FF9C9B" />
+    <path
+      d="M103.998 161.513C102.498 156.846 100.598 147.613 104.998 148.013C110.498 148.513 104.837 164.512 103.998 161.513Z"
+      fill="#66AF82" />
+    <path d="M104 162.012C104.5 160.346 104.3 157.112 99.5003 157.512C93.5003 158.012 102 162.512 104 162.012Z"
+      fill="#3D8C5C" />
+    <path
+      d="M182.672 117.52C182.38 115.181 182.848 110.855 187.057 112.258C192.318 114.012 184.428 119.274 182.672 117.52Z"
+      fill="#66AF82" />
+    <path d="M181.695 107.6C181.403 109.646 179.945 115.492 181.696 119" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M175.725 104.305C174.288 105.134 174.288 106.479 175.725 107.309L176.245 107.61L175.724 107.91C174.287 108.74 174.287 110.085 175.724 110.915C177.161 111.744 179.491 111.744 180.928 110.915L181.449 110.614L181.969 110.914C183.406 111.744 185.736 111.744 187.173 110.914C188.61 110.085 188.61 108.74 187.173 107.91L186.653 107.61L187.173 107.309C188.61 106.48 188.61 105.135 187.173 104.305C185.736 103.475 183.406 103.475 181.969 104.305L181.449 104.605L180.929 104.305C179.492 103.475 177.162 103.475 175.725 104.305Z"
+      fill="#E9BAFF" />
+    <circle cx="3.00443" cy="3.00443" r="3.00443" transform="matrix(0.866025 -0.5 0.866025 0.5 176.246 107.61)"
+      fill="#FFEDAC" />
+    <path
+      d="M89.8426 166.404C88.5055 164.313 85.2965 160.383 83.1571 161.386C80.483 162.641 90.5111 167.659 89.8426 166.404Z"
+      fill="#66AF82" />
+    <path d="M88.9806 157.638C88.6818 159.73 88.4427 164.631 89.8771 167.5" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M82.8457 153.376C81.3779 154.224 81.3779 155.598 82.8457 156.445L83.3788 156.753L82.8485 157.059C81.3807 157.907 81.3807 159.281 82.8485 160.128C84.3163 160.976 86.696 160.976 88.1638 160.128L88.6941 159.822L89.2241 160.128C90.6919 160.975 93.0716 160.975 94.5394 160.128C96.0072 159.28 96.0072 157.906 94.5394 157.059L94.0095 156.753L94.5423 156.446C96.0101 155.598 96.0101 154.224 94.5423 153.377C93.0745 152.529 90.6947 152.529 89.2269 153.377L88.6942 153.684L88.161 153.376C86.6932 152.529 84.3135 152.529 82.8457 153.376Z"
+      fill="#FF9F9F" />
+    <circle cx="3.06882" cy="3.06882" r="3.06882" transform="matrix(0.866025 -0.5 0.866025 0.5 83.375 156.753)"
+      fill="#FFEDAC" />
+    <path
+      d="M29.0675 112.118C30.2565 110.258 33.1103 106.762 35.0128 107.655C37.3909 108.771 28.4729 113.234 29.0675 112.118Z"
+      fill="#66AF82" />
+    <path d="M29.834 104.323C30.0998 106.183 30.3124 110.541 29.0368 113.093" stroke="#3D8C5C" stroke-linecap="round" />
+    <path fill-rule="evenodd" clip-rule="evenodd"
+      d="M35.7559 100.267C37.1765 101.087 37.1766 102.417 35.7559 103.238L35.2412 103.535L35.7567 103.832C37.1773 104.653 37.1773 105.982 35.7567 106.803C34.336 107.623 32.0327 107.623 30.6121 106.803L30.0966 106.505L29.5824 106.802C28.1617 107.622 25.8584 107.622 24.4378 106.802C23.0171 105.982 23.0171 104.652 24.4378 103.832L24.952 103.535L24.4386 103.238C23.0179 102.418 23.0179 101.088 24.4386 100.268C25.8592 99.4478 28.1625 99.4478 29.5832 100.268L30.0966 100.564L30.6113 100.267C32.0319 99.4471 34.3353 99.4471 35.7559 100.267Z"
+      fill="#CF9FFF" />
+    <circle cx="2.97024" cy="2.97024" r="2.97024" transform="matrix(-0.866025 -0.5 -0.866025 0.5 35.2437 103.536)"
+      fill="#FFEDAC" />
+  </g>
+  <defs>
+    <linearGradient id="paint0_linear_14133_125036" x1="89.7041" y1="56.4904" x2="23.917" y2="141.98"
+      gradientUnits="userSpaceOnUse">
+      <stop stop-color="white" />
+      <stop offset="1" stop-color="#D9EDFF" />
+    </linearGradient>
+    <clipPath id="clip0_14133_125036">
+      <rect width="200" height="200" fill="white" />
+    </clipPath>
+  </defs>
+</svg>
\ No newline at end of file
-- 
GitLab


From 6edeb66cbc36dabab9e87005c6fc9ad132d33718 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 09:28:01 +0100
Subject: [PATCH 53/77] clean information step

---
 .../information-step.component.html           |  77 +++++------
 .../information-step.component.scss           | 126 ++++--------------
 2 files changed, 61 insertions(+), 142 deletions(-)

diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index e146141b8..777cebef7 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -2,22 +2,16 @@
 <ng-container *ngIf="formType === formTypeEnum.account && step === accountFormStepEnum.confirmEmailSentInfo">
   <div class="information-step-container no-max-width">
     <img src="../../assets/form/emailVerification.svg" alt="" />
-    <p>
-      Merci !<br />
-      Finalisez votre inscription en ouvrant l’email qui vient de vous être envoyé
-    </p>
+    <h3>Un email vous a été envoyé afin de finaliser votre inscription</h3>
   </div>
 </ng-container>
 
 <!-- Email just got confirmed, request some info about the user -->
 <ng-container *ngIf="formType === formTypeEnum.profile && step === profileFormStepEnum.profileBeginningInfo">
-  <div fxLayout="column" fxLayoutGap="18px" class="information-step-container profile-skip">
-    <p>
-      Pour compléter votre profil,<br />
-      nous aimerions vous poser quelques questions
-    </p>
+  <div class="information-step-container">
     <img src="../../assets/form/profileQuestions.svg" alt="" />
-    <div class="footerForm" fxLayout="row" fxLayoutGap="10px" fxLayoutAlign="center center">
+    <h3>Pour compléter votre profil, nous aimerions vous poser quelques questions</h3>
+    <div class="btnGroup">
       <app-v3-button [label]="'Plus tard'" [variant]="buttonTypeEnumV3.Secondary" (click)="goToHome()" />
       <app-v3-button [label]="'C\'est parti !'" [variant]="buttonTypeEnumV3.Primary" (click)="goToNextPage()" />
     </div>
@@ -26,7 +20,7 @@
 
 <!-- A structure has just been selected, a request will be sent -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.mailSentInfo">
-  <div class="information-step-container structure-display">
+  <div class="information-step-container">
     <img src="../../assets/form/emailVerification.svg" alt="" />
     <p *ngIf="isClaimed">Un message a été envoyé aux membres de la structure :</p>
     <p *ngIf="!isClaimed">
@@ -37,18 +31,18 @@
 </ng-container>
 
 <!-- An attempt to create a structure has been made, some info are needed -->
-<ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureFormTime">
-  <div class="information-step-container structure-time no-max-width">
+<ng-container>
+  <div class="information-step-container no-max-width">
     <img src="../../assets/form/formTime.svg" alt="" />
     <h3>10 minutes sont nécessaires pour renseigner les informations et créer la structure</h3>
-    <p>Informations dont il faut vous munir :</p>
-    <ul>
-      <li>les coordonnées de la structure</li>
-
-      <li>les horaires d’ouverture</li>
-
-      <li>la liste des formations dispensées dans la structure (optionnel)</li>
-    </ul>
+    <div class="list">
+      <p>Informations dont il faut vous munir :</p>
+      <ul>
+        <li>les coordonnées de la structure</li>
+        <li>les horaires d’ouverture</li>
+        <li>la liste des formations dispensées dans la structure (optionnel)</li>
+      </ul>
+    </div>
   </div>
 </ng-container>
 
@@ -56,9 +50,9 @@
 <ng-container
   *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureCreationFinishedInfo"
 >
-  <div class="structureCreated no-max-width">
-    <h3>La structure est désormais référencée sur la cartographie</h3>
+  <div class="information-step-container no-max-width">
     <img src="../../assets/form/structureCreated.svg" alt="" />
+    <h3>La structure est désormais référencée sur la cartographie</h3>
     <p *ngIf="hasPersonalOffer">
       Les prochaines questions concernent les services que vous dispensez en tant qu’intervenant dans cette structure
     </p>
@@ -67,21 +61,20 @@
 
 <!-- The user tried to create a structure without reception place -->
 <ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.noStructure">
-  <div class="information-step-container profile-updated no-max-width">
+  <div class="information-step-container no-max-width">
     <img src="../../assets/form/profileSkip.svg" alt="" />
-    <h3 class="no-margin-top">La structure n'a pas vocation à être ajoutée à la cartographie</h3>
-    <p class="no-margin-top">
+    <h3>La structure n'a pas vocation à être ajoutée à la cartographie</h3>
+    <p class="light">
       La cartographie ne référence que les structures qui disposent d'un lieu d'accueil pour accompagner, former ou
       donner accès au numérique
     </p>
-    <div class="btn">
-      <app-v3-button
-        [variant]="buttonTypeEnumV3.Primary"
-        [wide]="true"
-        [label]="'J\'ai compris'"
-        (click)="goBackProfile()"
-      />
-    </div>
+
+    <app-v3-button
+      [variant]="buttonTypeEnumV3.Primary"
+      [wide]="true"
+      [label]="'J\'ai compris'"
+      (click)="goBackProfile()"
+    />
   </div>
 </ng-container>
 
@@ -89,16 +82,14 @@
 <ng-container
   *ngIf="formType === formTypeEnum.personaloffer && step === personalOfferFormStep.personalOfferFinishedInfo"
 >
-  <div class="information-step-container profile-updated no-max-width">
+  <div class="information-step-container no-max-width">
     <img src="../../assets/form/profileUpdated.svg" alt="" />
     <h3>Merci, les informations de votre profil ont été mises à jour</h3>
-    <div class="btn">
-      <app-v3-button
-        [variant]="buttonTypeEnumV3.Primary"
-        [wide]="true"
-        [label]="'Voir mon compte'"
-        (click)="goBackProfile()"
-      />
-    </div>
+    <app-v3-button
+      [variant]="buttonTypeEnumV3.Primary"
+      [wide]="true"
+      [label]="'Voir mon compte'"
+      (click)="goBackProfile()"
+    />
   </div>
 </ng-container>
diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.scss b/src/app/form/form-view/global-components/information-step/information-step.component.scss
index 2546d8ae6..7aafdb536 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.scss
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.scss
@@ -7,127 +7,55 @@
   align-items: center;
   justify-content: center;
   min-height: inherit;
+  gap: 16px;
 
   img {
     width: 200px;
     height: 200px;
+    margin-bottom: 24px;
   }
-  svg {
-    width: 100%;
-    max-width: 200px;
-  }
-  p {
+
+  h3 {
     @include font-bold-24;
-    margin-top: 3rem;
     text-align: center;
   }
-  &.profile-skip {
-    height: 100%;
-    max-width: unset;
 
-    p {
-      margin: 0;
-    }
-    svg {
-      width: 100%;
-      height: 180px;
-      max-width: 180px;
-    }
+  p {
+    @include font-regular-18;
+    text-align: center;
   }
-  &.structure-display {
-    height: unset;
-    max-width: unset;
-    gap: 16px;
 
-    p {
-      @include font-regular-18;
-      margin-bottom: 0;
-      margin-top: 1em;
-    }
-    span {
-      @include font-bold-24;
-      text-align: center;
-    }
-    svg {
-      width: 100%;
-      height: 180px;
-      max-width: 180px;
-    }
+  .btnGroup {
+    display: flex;
+    gap: 32px;
   }
-  &.structure-time {
-    height: unset;
-    max-width: unset;
-    h3 {
-      @include font-bold-24;
-      text-align: center;
-    }
 
+  .list {
+    display: flex;
+    flex-direction: column;
+    gap: 8px;
     p {
-      @include font-bold-18;
-      margin: 0;
       width: 100%;
+      margin-left: 0;
       text-align: left;
     }
+
     ul {
       width: 100%;
       list-style: none;
       padding: 0;
+      margin: 0;
+      li {
+        @include font-regular-18;
+        margin-bottom: 8px;
+
+        &::before {
+          content: '\2022';
+          color: $red;
+          margin-right: 12px;
+        }
+      }
     }
-    li {
-      @include font-regular-18;
-    }
-    ul li::before {
-      content: '\2022';
-      color: $red;
-      margin-right: 12px;
-    }
-    svg {
-      width: 100%;
-      height: 150px;
-      max-width: 150px;
-      margin-bottom: 24px;
-    }
-  }
-  &.profile-updated {
-    h3 {
-      @include font-bold-24;
-      text-align: center;
-    }
-    p {
-      @include font-regular-18;
-      text-align: center;
-    }
-    .centered {
-      text-align: center;
-      font-weight: normal;
-    }
-    .btn {
-      margin-top: 17px;
-    }
-    svg {
-      height: 180px;
-      width: 180px;
-    }
-  }
-}
-.structureCreated {
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-  align-items: center;
-  max-width: 600px;
-  margin: auto;
-  h3 {
-    @include font-bold-24;
-    text-align: center;
-  }
-  p {
-    @include font-regular-18;
-    text-align: center;
-  }
-  svg {
-    width: 180px;
-    height: 180px;
   }
 }
 
-- 
GitLab


From 5dfc393d1809e283e65d9af1ba428f523542ac44 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:02:34 +0100
Subject: [PATCH 54/77] consent step

---
 src/app/form/form-view/form-view.component.scss           | 7 ++++---
 .../structure-consent/structure-consent.component.scss    | 8 +++++++-
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 424b08be8..4ce6cc08b 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -53,7 +53,10 @@
 }
 
 ::ng-deep.title {
-  margin-bottom: 16px;
+  display: flex;
+  flex-direction: column;
+  gap: 16px;
+
   .overtitle {
     @include font-regular-18;
     color: $grey-3;
@@ -75,8 +78,6 @@
   p {
     @include font-regular-18;
     color: $grey-3;
-    font-style: italic;
-    margin-top: 4px;
   }
   .info {
     @include font-regular-14;
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
index 49d08e461..3af14fba4 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.scss
@@ -3,9 +3,15 @@
 
 h3 {
   @include font-bold-18;
-  margin-top: 1.5rem;
+}
+
+.section {
+  display: flex;
+  flex-direction: column;
+  gap: 16px;
 }
 
 .informationEndForm {
   @include font-regular-12;
+  margin-top: 16px;
 }
-- 
GitLab


From b4036985096abbf2d4760eeaaae8cc3ec2360165 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:26:20 +0100
Subject: [PATCH 55/77] update titles

---
 .../form/form-view/form-view.component.scss   | 11 +++++++
 .../structure-access-modality.component.html  |  2 +-
 .../structure-consent.component.html          |  2 +-
 ...tructure-contact-completion.component.html |  2 +-
 .../structure-contact.component.html          |  2 +-
 .../structure-covid-info.component.html       |  2 +-
 .../structure-description.component.html      |  2 +-
 ...gital-helping-accompaniment.component.html | 10 +++++--
 .../structure-equipments.component.html       |  2 +-
 .../structure-hours.component.html            |  2 +-
 .../structure-labels.component.html           |  2 +-
 .../structure-name-and-address.component.html |  2 +-
 ...ructure-public-target-other.component.html |  2 +-
 .../structure-public-target.component.html    | 29 +++++++------------
 ...ructure-solidarity-material.component.html |  2 +-
 .../structure-training-price.component.html   |  2 +-
 .../structure-training-type.component.html    |  6 ++--
 .../structure-type.component.html             |  2 +-
 ...ture-web-and-social-network.component.html |  4 +--
 .../structure-wifi.component.html             |  5 ++--
 .../structure-form/structureFormStep.enum.ts  |  1 +
 src/app/profile/edit/edit.component.html      |  2 +-
 .../personal-offer-edition.component.html     |  2 +-
 src/app/profile/profile.component.html        |  2 +-
 .../structure-edition-summary.component.html  |  2 +-
 ...tructure-members-management.component.html |  2 +-
 .../structures-management.component.html      |  2 +-
 .../components/go-back/go-back.component.ts   |  4 +--
 .../structure-pmr.component.html              |  3 +-
 src/styles.scss                               |  1 +
 30 files changed, 61 insertions(+), 53 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index 4ce6cc08b..097756c82 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -52,6 +52,12 @@
   }
 }
 
+::ng-deep form {
+  display: flex;
+  flex-direction: column;
+  gap: 40px;
+}
+
 ::ng-deep.title {
   display: flex;
   flex-direction: column;
@@ -86,3 +92,8 @@
     cursor: pointer;
   }
 }
+
+::ng-deep.details {
+  @include font-regular-18;
+  color: $grey-3;
+}
diff --git a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
index a894fea56..83433bbf5 100644
--- a/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
+++ b/src/app/form/form-view/structure-form/structure-access-modality/structure-access-modality.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quelles sont les modalités d'accueil de la structure&nbsp;?</h3>
     <p>Plusieurs choix possibles</p>
diff --git a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
index c3db6fa9e..a9d79f5d0 100644
--- a/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
+++ b/src/app/form/form-view/structure-form/structure-consent/structure-consent.component.html
@@ -9,7 +9,7 @@
     <app-checkbox-form [text]="'J\'accepte'" (checkEvent)="acceptDataBeSaved($event)" />
   </div>
   <div class="section">
-    <app-go-back [active]="isEditMode" (action)="goBack()" />
+    <app-go-back *ngIf="isEditMode" (action)="goBack()" />
     <div class="title">
       <h3>
         Acceptez-vous que les informations de votre structure soient mises à disposition sur la plateforme
diff --git a/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html b/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
index d780095c3..afddcb27a 100644
--- a/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact-completion/structure-contact-completion.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quelle personne pourrait connaître ces informations&nbsp;?</h3>
     <p>Informations demandées : téléphone, email, accessibilité PMR, type de public...</p>
diff --git a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
index 180f45e07..d13974df7 100644
--- a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Comment joindre votre structure&nbsp;?</h3>
     <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
diff --git a/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html b/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
index b6a1c34f1..47a16f41f 100644
--- a/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
+++ b/src/app/form/form-view/structure-form/structure-covid-info/structure-covid-info.component.html
@@ -1,5 +1,5 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Y a-t-il des informations spécifiques à la période COVID&nbsp;?</h3>
     <p>Facultatif</p>
diff --git a/src/app/form/form-view/structure-form/structure-description/structure-description.component.html b/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
index 12639ca6c..31e30a761 100644
--- a/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
+++ b/src/app/form/form-view/structure-form/structure-description/structure-description.component.html
@@ -1,5 +1,5 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Pouvez-vous présenter la structure en quelques mots&nbsp;?</h3>
     <p>Facultatif</p>
diff --git a/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html b/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
index 35bcab2f1..8f86d18d7 100644
--- a/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
+++ b/src/app/form/form-view/structure-form/structure-digital-helping-accompaniment/structure-digital-helping-accompaniment.component.html
@@ -1,8 +1,8 @@
 <form *ngIf="structureForm && onlineProcedures" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
-    <h3>Quelles aides aux démarches en ligne votre structure propose-t-elle&nbsp;?</h3>
-    <p>Facultatif</p>
+    <h3>La structure propose-t-elle une aide gratuite<sup>1</sup> aux démarches en ligne&nbsp;?</h3>
+    <p>Facultatif - Plusieurs choix possibles</p>
     <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
   </div>
   <div class="btn-grid">
@@ -16,4 +16,8 @@
       />
     </span>
   </div>
+  <p class="details">
+    <sup>1</sup> La plateforme Rés'in n'a pas vocation à référencer les structures qui proposent un accompagnement
+    payant aux démarches administratives
+  </p>
 </form>
diff --git a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
index 24b6b30d7..23a974569 100644
--- a/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
+++ b/src/app/form/form-view/structure-form/structure-equipments/structure-equipments.component.html
@@ -1,5 +1,5 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quel matériel est mis à disposition par la structure&nbsp;?</h3>
     <p>Facultatif</p>
diff --git a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
index 1f1c261f8..68b8ddeb0 100644
--- a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
+++ b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
@@ -1,5 +1,5 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quels sont les horaires d'ouverture de la structure&nbsp;?</h3>
     <p>Facultatif</p>
diff --git a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
index a57337d1f..d3a639bf2 100644
--- a/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
+++ b/src/app/form/form-view/structure-form/structure-labels/structure-labels.component.html
@@ -1,5 +1,5 @@
 <form class="labelStep" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>La structure est-elle labellisée&nbsp;?</h3>
     <p>Facultatif - Plusieurs choix possibles</p>
diff --git a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
index cffd319ee..7328c02c7 100644
--- a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
+++ b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
   </div>
diff --git a/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html b/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
index 4cbbf9bd6..6f534a113 100644
--- a/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
+++ b/src/app/form/form-view/structure-form/structure-public-target-other/structure-public-target-other.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quelles sont les autres démarches&nbsp;?</h3>
   </div>
diff --git a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
index bf912463a..b6417158c 100644
--- a/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
+++ b/src/app/form/form-view/structure-form/structure-public-target/structure-public-target.component.html
@@ -1,11 +1,11 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>
       {{
         isMandatoryFields
           ? 'Quel public peut être accueilli dans cette structure&nbsp;?'
-          : 'Proposez-vous des accompagnements adaptés à des publics spécifiques&nbsp;? Lesquels&nbsp;?'
+          : 'La structure propose-t-elle des accompagnements adaptés à des publics spécifiques&nbsp;?'
       }}
     </h3>
     <p>{{ isMandatoryFields ? '' : 'Facultatif - ' }}Plusieurs choix possibles</p>
@@ -15,10 +15,8 @@
     <span>Il faut renseigner au moins un champ</span>
   </p>
   <ng-container *ngIf="!isMandatoryFields">
-    <div *ngIf="languageAndIlliteracy">
-      <div class="title">
-        <h4>Langue et illettrisme</h4>
-      </div>
+    <div *ngIf="languageAndIlliteracy" class="title">
+      <h4>Langue et illettrisme</h4>
       <div class="btn-grid">
         <app-button
           *ngFor="let choice of languageAndIlliteracy.modules"
@@ -30,11 +28,8 @@
         />
       </div>
     </div>
-    <div *ngIf="handicaps">
-      <div class="title">
-        <h4>Handicaps</h4>
-      </div>
-
+    <div *ngIf="handicaps" class="title">
+      <h4>Handicaps</h4>
       <div class="btn-grid">
         <app-button
           *ngFor="let choice of handicaps.modules"
@@ -46,10 +41,8 @@
         />
       </div>
     </div>
-    <div *ngIf="genre">
-      <div class="title">
-        <h4>Genre</h4>
-      </div>
+    <div *ngIf="genre" class="title">
+      <h4>Genre</h4>
       <div class="btn-grid">
         <app-button
           *ngFor="let choice of genre.modules"
@@ -64,10 +57,8 @@
   </ng-container>
 
   <ng-container *ngIf="isMandatoryFields">
-    <div *ngIf="age">
-      <div class="title">
-        <h4>Âge</h4>
-      </div>
+    <div *ngIf="age" class="title">
+      <h4>Âge</h4>
       <div class="btn-grid">
         <app-button
           *ngFor="let choice of age.modules"
diff --git a/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html b/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
index bde6c219c..eb5884bb8 100644
--- a/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
+++ b/src/app/form/form-view/structure-form/structure-solidarity-material/structure-solidarity-material.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm && solidarityMaterial" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Quel matériel numérique vendez-vous à tarif solidaire&nbsp;?</h3>
     <p>Facultatif</p>
diff --git a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
index cba927923..b099d3df0 100644
--- a/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-price/structure-training-price.component.html
@@ -1,5 +1,5 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>Ces accompagnements aux usages numériques sont-ils gratuits&nbsp;?</h3>
     <p>Un seul choix possible</p>
diff --git a/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html b/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
index 75674199b..31d57dd5b 100644
--- a/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
+++ b/src/app/form/form-view/structure-form/structure-training-type/structure-training-type.component.html
@@ -1,8 +1,8 @@
 <form *ngIf="structureForm && trainingCategories.length > 0" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
-    <h3>Quels accompagnements au numérique votre structure propose-t-elle&nbsp;?</h3>
-    <p>Facultatif</p>
+    <h3>La structure propose-t-elle un accompagnement aux usages numérique&nbsp;?</h3>
+    <p>Facultatif - Plusieurs choix possibles</p>
     <p class="info">L'offre des accompagnants numériques est éditable sur le profil de l'accompagnant numérique</p>
   </div>
   <app-training-type-picker
diff --git a/src/app/form/form-view/structure-form/structure-type/structure-type.component.html b/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
index c74c7e65e..ec5e8790b 100644
--- a/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
+++ b/src/app/form/form-view/structure-form/structure-type/structure-type.component.html
@@ -1,5 +1,5 @@
 <form *ngIf="structureForm" [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>De quel type de structure s'agit-il&nbsp;?</h3>
     <p>1 seul choix possible</p>
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index 0912d0be9..f527eaad5 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -1,7 +1,7 @@
-<app-go-back [active]="isEditMode" (action)="goBack()" />
+<app-go-back *ngIf="isEditMode" (action)="goBack()" />
 <form *ngIf="structureForm" [formGroup]="structureForm">
   <div class="title">
-    <h3>Votre présence sur internet et les réseaux sociaux</h3>
+    <h3>La structure est-elle présente sur internet et les réseaux sociaux&nbsp;?</h3>
     <p>Facultatif</p>
   </div>
   <div class="card">
diff --git a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
index d4dde58ee..60550507b 100644
--- a/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
+++ b/src/app/form/form-view/structure-form/structure-wifi/structure-wifi.component.html
@@ -1,7 +1,8 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
-    <h3>Votre structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
+    <h3>La structure propose-t-elle du wifi en accès libre&nbsp;?</h3>
+    <p>Un seul choix possible</p>
   </div>
   <!-- TODO to fix -->
   <!-- <app-radio-form
diff --git a/src/app/form/form-view/structure-form/structureFormStep.enum.ts b/src/app/form/form-view/structure-form/structureFormStep.enum.ts
index e548acc8d..154d2a881 100644
--- a/src/app/form/form-view/structure-form/structureFormStep.enum.ts
+++ b/src/app/form/form-view/structure-form/structureFormStep.enum.ts
@@ -11,6 +11,7 @@ export enum structureFormStep {
   structurePmr,
   structureWebAndSocialNetwork,
   structurePublicTarget,
+  /** Accompagnements adaptés à des publics spécifiques */
   structurePublicTargetOptional,
   structureDigitalHelpingAccompaniment,
   structureDigitalHelpingAccompanimentOther,
diff --git a/src/app/profile/edit/edit.component.html b/src/app/profile/edit/edit.component.html
index 53820bdc9..5cdc80797 100644
--- a/src/app/profile/edit/edit.component.html
+++ b/src/app/profile/edit/edit.component.html
@@ -1,6 +1,6 @@
 <div *ngIf="userProfile" class="content-container full-screen">
   <div class="edit-profile">
-    <app-go-back [active]="true" (action)="goBack()" />
+    <app-go-back (action)="goBack()" />
 
     <div class="header">
       <div class="title">
diff --git a/src/app/profile/personal-offer-edition/personal-offer-edition.component.html b/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
index 9c86427cb..eed4c3c6b 100644
--- a/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
+++ b/src/app/profile/personal-offer-edition/personal-offer-edition.component.html
@@ -1,6 +1,6 @@
 <div class="content-container full-screen">
   <div class="edit-personal-offer">
-    <app-go-back [active]="true" (action)="goBack()" />
+    <app-go-back (action)="goBack()" />
     <div class="header">
       <div class="title">
         <div>
diff --git a/src/app/profile/profile.component.html b/src/app/profile/profile.component.html
index e0ba76c53..58904959d 100644
--- a/src/app/profile/profile.component.html
+++ b/src/app/profile/profile.component.html
@@ -1,6 +1,6 @@
 <div *ngIf="userProfile" class="content-container full-screen">
   <div class="goBack">
-    <app-go-back [active]="true" (action)="goBack()" />
+    <app-go-back (action)="goBack()" />
   </div>
 
   <section>
diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
index 4ab1c52a7..fe4a18317 100644
--- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
+++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html
@@ -1,6 +1,6 @@
 <div class="container">
   <div class="scroll">
-    <app-go-back [active]="true" (action)="goBack()" />
+    <app-go-back (action)="goBack()" />
     <div class="header">
       <h1>
         {{ isUpdateStructure ? 'Mettre à jour la structure' : 'Modifier la structure' }}
diff --git a/src/app/profile/structure-members-management/structure-members-management.component.html b/src/app/profile/structure-members-management/structure-members-management.component.html
index c18fc2ece..d344e95be 100644
--- a/src/app/profile/structure-members-management/structure-members-management.component.html
+++ b/src/app/profile/structure-members-management/structure-members-management.component.html
@@ -1,5 +1,5 @@
 <div class="container members-management">
-  <app-go-back [active]="true" (action)="goBack()" />
+  <app-go-back (action)="goBack()" />
   <div class="headerContainer">
     <div class="header">
       <h1>Gérer les membres de</h1>
diff --git a/src/app/profile/structures-management/structures-management.component.html b/src/app/profile/structures-management/structures-management.component.html
index 581735de7..2010d9544 100644
--- a/src/app/profile/structures-management/structures-management.component.html
+++ b/src/app/profile/structures-management/structures-management.component.html
@@ -1,6 +1,6 @@
 <div class="content-container full-screen">
   <div class="container">
-    <app-go-back [active]="true" (action)="goBack()" />
+    <app-go-back (action)="goBack()" />
     <div class="header">
       <h1 [ngPlural]="structures.length">
         <ng-template ngPluralCase="1">Gestion des structures</ng-template>
diff --git a/src/app/shared/components/go-back/go-back.component.ts b/src/app/shared/components/go-back/go-back.component.ts
index d25cf6c1b..7e5f164f2 100644
--- a/src/app/shared/components/go-back/go-back.component.ts
+++ b/src/app/shared/components/go-back/go-back.component.ts
@@ -1,10 +1,9 @@
-import { Component, EventEmitter, Input, Output } from '@angular/core';
+import { Component, EventEmitter, Output } from '@angular/core';
 import { ButtonTypeV3 } from '../v3/button/button-type.enum';
 
 @Component({
   selector: 'app-go-back',
   template: `<app-v3-button
-    *ngIf="active"
     [label]="'Retour'"
     [variant]="buttonTypeEnumV3.Tertiary"
     [iconFolder]="'ico'"
@@ -14,7 +13,6 @@ import { ButtonTypeV3 } from '../v3/button/button-type.enum';
   /> `,
 })
 export class GoBackComponent {
-  @Input({ required: true }) active: boolean;
   @Output() action = new EventEmitter<Event>();
 
   public buttonTypeEnumV3 = ButtonTypeV3;
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.html b/src/app/shared/components/structure-pmr/structure-pmr.component.html
index f011054e3..b9bf943bf 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.html
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.html
@@ -1,7 +1,8 @@
 <form [formGroup]="structureForm">
-  <app-go-back [active]="isEditMode" (action)="goBack()" />
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
+    <p>Un seul choix possible</p>
   </div>
   <p *ngIf="isEditMode && !structureForm.get('pmrAccess').valid" class="missing-information">
     <app-svg-icon class="validationIcon" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
diff --git a/src/styles.scss b/src/styles.scss
index 5eea1080e..67665692c 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -578,6 +578,7 @@ button {
 h1,
 h2,
 h3,
+h4,
 p {
   margin: 0;
 }
-- 
GitLab


From a26bb92820c2c70574ea909031b433316f45a592 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:29:16 +0100
Subject: [PATCH 56/77] fix text alinement

---
 src/app/shared/components/v3/radio/radio.component.scss | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/app/shared/components/v3/radio/radio.component.scss b/src/app/shared/components/v3/radio/radio.component.scss
index 9c59acf92..7ecf2fc1a 100644
--- a/src/app/shared/components/v3/radio/radio.component.scss
+++ b/src/app/shared/components/v3/radio/radio.component.scss
@@ -30,6 +30,7 @@
     display: flex;
     flex-direction: column;
     gap: 4px;
+    text-align: left;
   }
   label {
     color: $grey-1;
-- 
GitLab


From 3bb8f2c67b1e4973025ef069c2ab5ae233d05732 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:32:48 +0100
Subject: [PATCH 57/77] radio button

---
 .../components/v3/radio/radio.component.html  | 10 ++++----
 .../components/v3/radio/radio.component.scss  | 23 ++++++++-----------
 .../components/v3/radio/radio.component.ts    |  3 +++
 3 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/src/app/shared/components/v3/radio/radio.component.html b/src/app/shared/components/v3/radio/radio.component.html
index c02f0154a..d42100910 100644
--- a/src/app/shared/components/v3/radio/radio.component.html
+++ b/src/app/shared/components/v3/radio/radio.component.html
@@ -7,9 +7,9 @@
     [ngClass]="classes"
     (click)="action.emit($event)"
   />
-  <label [for]="id">{{ label }}</label>
-</div>
-<div *ngIf="description" class="descriptionContainer">
-  <div class="empty"></div>
-  <p class="description">{{ description }}</p>
+  <app-svg-icon *ngIf="iconName" [iconClass]="'icon-40'" [type]="'form'" [icon]="iconName" />
+  <div class="details">
+    <label [for]="id">{{ label }}</label>
+    <p *ngIf="description" class="description">{{ description }}</p>
+  </div>
 </div>
diff --git a/src/app/shared/components/v3/radio/radio.component.scss b/src/app/shared/components/v3/radio/radio.component.scss
index 404f6736e..7ecf2fc1a 100644
--- a/src/app/shared/components/v3/radio/radio.component.scss
+++ b/src/app/shared/components/v3/radio/radio.component.scss
@@ -3,7 +3,7 @@
 
 .radioContainer {
   display: flex;
-  gap: 8px;
+  gap: 1rem;
   align-items: center;
 
   input {
@@ -26,24 +26,21 @@
     }
   }
 
+  .details {
+    display: flex;
+    flex-direction: column;
+    gap: 4px;
+    text-align: left;
+  }
   label {
     color: $grey-1;
     line-height: 24px; /* 150% */
+    font-weight: 700;
     user-select: none;
   }
-}
-
-.descriptionContainer {
-  display: flex;
-  gap: 8px;
-  .empty {
-    flex-basis: 24px;
-  }
-
   .description {
-    margin: 0;
+    @include font-regular-15;
     color: $grey-3;
-    font-size: $font-size-xxsmall;
-    line-height: 20px;
+    font-style: italic;
   }
 }
diff --git a/src/app/shared/components/v3/radio/radio.component.ts b/src/app/shared/components/v3/radio/radio.component.ts
index 59501a85a..2d0e01ba6 100644
--- a/src/app/shared/components/v3/radio/radio.component.ts
+++ b/src/app/shared/components/v3/radio/radio.component.ts
@@ -23,6 +23,9 @@ export class RadioV3Component {
   /** Additional label description */
   @Input() description?: string;
 
+  /** Optional icon to display between the radio and label */
+  @Input() iconName?: string;
+
   @Output() action = new EventEmitter<Event>();
 
   public get classes(): string[] {
-- 
GitLab


From a599f97209ce914a91f7e97620dc05ce98594c64 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:52:14 +0100
Subject: [PATCH 58/77] fix merge

---
 src/app/form/footer-form/footer-form.component.html         | 6 ------
 .../orientation-form-view.component.html                    | 2 +-
 .../structure-add-member-modal.component.ts                 | 1 +
 src/app/shared/components/index.ts                          | 1 -
 4 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/app/form/footer-form/footer-form.component.html b/src/app/form/footer-form/footer-form.component.html
index d02dec0c7..52fd61325 100644
--- a/src/app/form/footer-form/footer-form.component.html
+++ b/src/app/form/footer-form/footer-form.component.html
@@ -7,7 +7,6 @@
     (action)="prevPage()"
   />
 
-  <app-v3-button
   <app-v3-button
     *ngIf="!isLastFormStep && !isNextFormTransition && !isEditMode"
     [variant]="buttonTypeEnumV3.Primary"
@@ -19,15 +18,10 @@
     (action)="nextPage()"
   />
 
-  <!-- Untested, not sure when it activates -->
-  <app-v3-button
-  <!-- Untested, not sure when it activates -->
   <app-v3-button
     *ngIf="isEditMode"
     [variant]="buttonTypeEnumV3.Primary"
     [label]="'Valider'"
-    [variant]="buttonTypeEnumV3.Primary"
-    [label]="'Valider'"
     [disabled]="!isValid"
     (action)="saveEdit()"
   />
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.html b/src/app/form/orientation-form-view/orientation-form-view.component.html
index b3555eb50..54e600aa1 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.html
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.html
@@ -58,7 +58,7 @@
     (goPrev)="prevPage()"
     (goReset)="reset()"
   />
-  <app-modal-confirmation
+  <app-v3-modal
     [opened]="showConfirmationModal"
     [title]="'Attention'"
     [validateLabel]="'Quitter'"
diff --git a/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts b/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
index 575ca69b1..8a61a6144 100644
--- a/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
+++ b/src/app/profile/structure-add-member-modal/structure-add-member-modal.component.ts
@@ -5,6 +5,7 @@ import { StructureWithOwners } from '../../models/structureWithOwners.model';
 import { TempUser } from '../../models/temp-user.model';
 import { NotificationService } from '../../services/notification.service';
 import { StructureService } from '../../services/structure.service';
+import { ButtonTypeV3 } from '../../shared/components/v3/button/button-type.enum';
 import { CustomRegExp } from '../../utils/CustomRegExp';
 
 @Component({
diff --git a/src/app/shared/components/index.ts b/src/app/shared/components/index.ts
index d084b753d..2343e3682 100644
--- a/src/app/shared/components/index.ts
+++ b/src/app/shared/components/index.ts
@@ -40,7 +40,6 @@ export {
   CollapseComponent,
   CollapseContentComponent,
   CollapseHeaderComponent,
-  CustomModalComponent,
   GoBackComponent,
   HourPickerComponent,
   InformationStepComponent,
-- 
GitLab


From 3ac01a8cc4a0dd541668482679749c057d2d9e21 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:54:24 +0100
Subject: [PATCH 59/77] move back btn

---
 .../structure-web-and-social-network.component.html             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index f527eaad5..b38d8cb66 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -1,5 +1,5 @@
-<app-go-back *ngIf="isEditMode" (action)="goBack()" />
 <form *ngIf="structureForm" [formGroup]="structureForm">
+  <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>La structure est-elle présente sur internet et les réseaux sociaux&nbsp;?</h3>
     <p>Facultatif</p>
-- 
GitLab


From 8bc6f98b196d166ef2ea36e8dff189d2d603e633 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:56:22 +0100
Subject: [PATCH 60/77] revert condition

---
 .../information-step/information-step.component.html            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index 777cebef7..2f80b57bc 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -31,7 +31,7 @@
 </ng-container>
 
 <!-- An attempt to create a structure has been made, some info are needed -->
-<ng-container>
+<ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureFormTime">
   <div class="information-step-container no-max-width">
     <img src="../../assets/form/formTime.svg" alt="" />
     <h3>10 minutes sont nécessaires pour renseigner les informations et créer la structure</h3>
-- 
GitLab


From 9c7c581194aeabc76714f1f231b7cf9bd283abde Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 10:59:40 +0100
Subject: [PATCH 61/77] adjust spacing for name & address

---
 .../structure-name-and-address.component.html | 64 ++++++++++---------
 1 file changed, 33 insertions(+), 31 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
index 7328c02c7..3c79f4fc8 100644
--- a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
+++ b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
@@ -3,38 +3,40 @@
   <div class="title">
     <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
   </div>
-  <div class="form-group" fxLayout="column">
-    <label for="structureName">Nom de la structure</label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        formControlName="structureName"
-        class="form-input structureName"
-        (input)="setValidationsForm()"
-      />
-      <app-svg-icon
-        *ngIf="structureForm.get('structureName').valid"
-        [iconClass]="'icon-26'"
-        [type]="'form'"
-        [icon]="'validate'"
-      />
+  <div>
+    <div class="form-group" fxLayout="column">
+      <label for="structureName">Nom de la structure</label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          formControlName="structureName"
+          class="form-input structureName"
+          (input)="setValidationsForm()"
+        />
+        <app-svg-icon
+          *ngIf="structureForm.get('structureName').valid"
+          [iconClass]="'icon-26'"
+          [type]="'form'"
+          [icon]="'validate'"
+        />
+      </div>
     </div>
-  </div>
-  <div class="form-group" fxLayout="column">
-    <label for="address">Adresse de la structure</label>
-    <div class="addressRow" fxLayout="row" fxLayoutGap="13px">
-      <app-address-autocomplete
-        [address]="structureForm.get('address').valid ? structureForm.get('address').value : null"
-        (inputAddress)="setAddressStructure()"
-        (selectedAddress)="setAddressStructure($event)"
-      />
-      <app-svg-icon
-        *ngIf="structureForm.get('address').valid"
-        class="validateIcon"
-        [iconClass]="'icon-26'"
-        [type]="'form'"
-        [icon]="'validate'"
-      />
+    <div class="form-group" fxLayout="column">
+      <label for="address">Adresse de la structure</label>
+      <div class="addressRow" fxLayout="row" fxLayoutGap="13px">
+        <app-address-autocomplete
+          [address]="structureForm.get('address').valid ? structureForm.get('address').value : null"
+          (inputAddress)="setAddressStructure()"
+          (selectedAddress)="setAddressStructure($event)"
+        />
+        <app-svg-icon
+          *ngIf="structureForm.get('address').valid"
+          class="validateIcon"
+          [iconClass]="'icon-26'"
+          [type]="'form'"
+          [icon]="'validate'"
+        />
+      </div>
     </div>
   </div>
 </form>
-- 
GitLab


From 6be80321650b60580463b1bd3a0b85a4103841a9 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 11:00:43 +0100
Subject: [PATCH 62/77] structure contact

---
 .../structure-contact.component.html          | 42 ++++++++++---------
 1 file changed, 22 insertions(+), 20 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
index d13974df7..71888e6ed 100644
--- a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
@@ -4,27 +4,29 @@
     <h3>Comment joindre votre structure&nbsp;?</h3>
     <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
   </div>
-  <div class="form-group" fxLayout="column">
-    <label for="structureName">Email de la structure</label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input type="text" formControlName="contactMail" class="form-input" (input)="setValidationsForm()" />
-      <app-svg-icon *ngIf="isContactMailValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon *ngIf="isContactMailNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+  <div>
+    <div class="form-group" fxLayout="column">
+      <label for="structureName">Email de la structure</label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input type="text" formControlName="contactMail" class="form-input" (input)="setValidationsForm()" />
+        <app-svg-icon *ngIf="isContactMailValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
+        <app-svg-icon *ngIf="isContactMailNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+      </div>
     </div>
-  </div>
-  <div class="form-group" fxLayout="column">
-    <div fxLayout="row" fxLayoutGap="8px">
-      <label for="contactPhone">Téléphone de la structure</label>
-    </div>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        formControlName="contactPhone"
-        class="form-input"
-        (input)="utils.modifyPhoneInput(structureForm, 'contactPhone', $event.target); setValidationsForm()"
-      />
-      <app-svg-icon *ngIf="isContactPhoneValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon *ngIf="isContactPhoneNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+    <div class="form-group" fxLayout="column">
+      <div fxLayout="row" fxLayoutGap="8px">
+        <label for="contactPhone">Téléphone de la structure</label>
+      </div>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          formControlName="contactPhone"
+          class="form-input"
+          (input)="utils.modifyPhoneInput(structureForm, 'contactPhone', $event.target); setValidationsForm()"
+        />
+        <app-svg-icon *ngIf="isContactPhoneValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
+        <app-svg-icon *ngIf="isContactPhoneNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+      </div>
     </div>
   </div>
 </form>
-- 
GitLab


From 5445d74c0a640aff5423818792cf7d94390f1b34 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 11:39:33 +0100
Subject: [PATCH 63/77] wip orientation

---
 .../form/form-view/form-view.component.scss   |   2 +-
 .../base-skills-choice.component.html         |   4 +-
 .../equipment-access-choice.component.html    |   6 +-
 .../equipment-buy-type.component.html         |   4 +-
 .../information-screen.component.html         |   4 +-
 .../needs-selection.component.html            |  27 ++-
 .../structure-orientator.component.html       | 194 +++++++++---------
 ...ediation-language-selection.component.html |  20 +-
 .../accompaniment-type.component.html         |  22 +-
 .../online-demarch.component.html             |  51 ++---
 .../mediation-beneficiary-info.component.html | 177 ++++++++--------
 .../mediation-hours-selection.component.html  |  18 +-
 .../orientation-form-view.component.scss      |  25 ++-
 .../orientation-comments.component.html       |   2 +-
 ...ientation-structure-address.component.html |   2 +-
 src/app/profile/profile.component.scss        |   2 +-
 .../svg-icon/svg-icon.component.scss          |   1 +
 17 files changed, 297 insertions(+), 264 deletions(-)

diff --git a/src/app/form/form-view/form-view.component.scss b/src/app/form/form-view/form-view.component.scss
index c9ae4ef6e..df9690e8f 100644
--- a/src/app/form/form-view/form-view.component.scss
+++ b/src/app/form/form-view/form-view.component.scss
@@ -80,7 +80,6 @@
 
   h4 {
     @include font-bold-18;
-    margin-bottom: 0;
   }
   p {
     @include font-regular-18;
@@ -89,6 +88,7 @@
   .info {
     @include font-regular-14;
   }
+  // V3REMOVE
   .backArrow {
     cursor: pointer;
   }
diff --git a/src/app/form/orientation-form-view/base-skills/base-skills-choice/base-skills-choice.component.html b/src/app/form/orientation-form-view/base-skills/base-skills-choice/base-skills-choice.component.html
index 430b66a76..75856f34c 100644
--- a/src/app/form/orientation-form-view/base-skills/base-skills-choice/base-skills-choice.component.html
+++ b/src/app/form/orientation-form-view/base-skills/base-skills-choice/base-skills-choice.component.html
@@ -1,6 +1,6 @@
-<h2>Quel est le besoin numérique de la personne ?</h2>
+<div class="orientationForm">
+  <h2>Quel est le besoin numérique de la personne ?</h2>
 
-<div fxLayout="column" fxLayoutGap="32px">
   <div class="btn-grid">
     <span *ngFor="let module of baseSkills">
       <app-button
diff --git a/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html b/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html
index e5f682104..c04aa1eea 100644
--- a/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html
+++ b/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html
@@ -1,7 +1,7 @@
-<h2>De quel matériel a-t-il besoin ?</h2>
+<div class="orientationForm">
+  <h2>De quel matériel a-t-il besoin ?</h2>
 
-<div fxLayout="column" fxLayoutGap="32px">
-  <div class="btn-grid">
+  <div fxLayout="column" fxLayoutGap="32px">
     <span *ngFor="let module of equipmentType">
       <app-button
         [ngClass]="{ selectedChoice: true }"
diff --git a/src/app/form/orientation-form-view/equipment-buy/equipment-buy-type/equipment-buy-type.component.html b/src/app/form/orientation-form-view/equipment-buy/equipment-buy-type/equipment-buy-type.component.html
index dbd280f83..69d71e0bc 100644
--- a/src/app/form/orientation-form-view/equipment-buy/equipment-buy-type/equipment-buy-type.component.html
+++ b/src/app/form/orientation-form-view/equipment-buy/equipment-buy-type/equipment-buy-type.component.html
@@ -1,6 +1,6 @@
-<h2>Quel matériel souhaite-t-il acheter à tarif solidaire ?</h2>
+<div class="orientationForm">
+  <h2>Quel matériel souhaite-t-il acheter à tarif solidaire ?</h2>
 
-<div fxLayout="column" fxLayoutGap="32px">
   <div class="btn-grid">
     <span *ngFor="let module of equipmentType">
       <app-button
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
index 6ef01b6ab..b6e6110ee 100644
--- 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
@@ -1,5 +1,5 @@
 <div *ngIf="currentType === currentTypeEnum.appointment" class="container">
-  <img src="../../../../../assets/img/rdvsBeginning.svg" alt="Appointment image" />
+  <img src="../../../../../assets/img/rdvsBeginning.svg" alt="" />
   <h2>Vous vous apprêtez à demander un rendez-vous auprès d'un·e accompagnant·e numérique</h2>
   <p>
     Ces professionnel·les peuvent aider à la prise en main des services administratifs en ligne, mais ne sont pas
@@ -8,7 +8,7 @@
   </p>
 </div>
 <div *ngIf="currentType === currentTypeEnum.onlineMediation" class="container">
-  <img src="../../../../../assets/img/onlineMediationBeginning.svg" alt="Illustration RDV en ligne" />
+  <img src="../../../../../assets/img/onlineMediationBeginning.svg" alt="" />
   <h2>Vous vous apprêtez à choisir un créneau de médiation numérique à distance</h2>
   <p>
     Ce service d’accompagnement permettra à la personne d'être assistée depuis son domicile dans ses usages numériques.
diff --git a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html
index 59da1fbb1..9d7dd1fdd 100644
--- a/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html
+++ b/src/app/form/orientation-form-view/global-components/needs-selection/needs-selection.component.html
@@ -1,12 +1,17 @@
-<h2>Quels sont les besoins de la personne ?</h2>
-<div class="formGroup">
-  <app-radio-option
-    *ngFor="let option of needsList"
-    [id]="option.key"
-    [label]="option.title"
-    [description]="option.hint"
-    [iconName]="option.icon"
-    [selected]="getSelected() === option.key"
-    (selectedEvent)="selectNeed(option.key)"
-  />
+<div class="orientationForm">
+  <div class="title">
+    <h2>Quels sont les besoins de la personne ?</h2>
+    <p>Un seul choix possible</p>
+  </div>
+  <div class="formGroup">
+    <app-radio-option
+      *ngFor="let option of needsList"
+      [id]="option.key"
+      [label]="option.title"
+      [description]="option.hint"
+      [iconName]="option.icon"
+      [selected]="getSelected() === option.key"
+      (selectedEvent)="selectNeed(option.key)"
+    />
+  </div>
 </div>
diff --git a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
index 15cfca06a..9eabe0161 100644
--- a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
+++ b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
@@ -1,102 +1,104 @@
-<h2>Quelle structure oriente la personne&nbsp;?</h2>
-<div *ngIf="hasStructures && structuresLinked.length >= 2" class="select-structure border">
-  <div class="number">{{ structuresLinked.length }} structures sont associées à votre compte</div>
-  <div
-    *ngFor="let structure of structuresLinked"
-    class="structure-item"
-    tabindex="0"
-    [ngClass]="{ 'item-selected': structure.structureName === selected?.structureName }"
-    (click)="select(structure)"
-    (keyup.enter)="select(structure)"
-  >
-    <div class="item-frame">
-      <div class="name">{{ structure.structureName }}</div>
-      <div class="commune">{{ structure.address.commune }}</div>
+<div class="orientationForm">
+  <h2>Quelle structure oriente la personne&nbsp;?</h2>
+  <div *ngIf="hasStructures && structuresLinked.length >= 2" class="select-structure border">
+    <div class="number">{{ structuresLinked.length }} structures sont associées à votre compte</div>
+    <div
+      *ngFor="let structure of structuresLinked"
+      class="structure-item"
+      tabindex="0"
+      [ngClass]="{ 'item-selected': structure.structureName === selected?.structureName }"
+      (click)="select(structure)"
+      (keyup.enter)="select(structure)"
+    >
+      <div class="item-frame">
+        <div class="name">{{ structure.structureName }}</div>
+        <div class="commune">{{ structure.address.commune }}</div>
+      </div>
+      <app-svg-icon
+        *ngIf="structure.structureName === selected?.structureName"
+        class="form-icon"
+        [iconClass]="'icon-26'"
+        [type]="'form'"
+        [icon]="'validate'"
+      />
     </div>
-    <app-svg-icon
-      *ngIf="structure.structureName === selected?.structureName"
-      class="form-icon"
-      [iconClass]="'icon-26'"
-      [type]="'form'"
-      [icon]="'validate'"
-    />
   </div>
-</div>
-<div *ngIf="!hasStructures" class="select-structure">
-  <form [formGroup]="form">
-    <div class="form-group" fxLayout="column">
-      <label for="structureName">Nom de votre structure</label>
-      <div fxLayout="row" fxLayoutGap="13px">
-        <input
-          type="text"
-          autocomplete="on"
-          formControlName="structureName"
-          class="form-input"
-          (input)="updatedForm('structureName', $event.target)"
-        />
-        <app-svg-icon
-          *ngIf="form.get('structureName').value && form.get('structureName').valid"
-          [iconClass]="'validation'"
-          [type]="'form'"
-          [icon]="'validate'"
-        />
-        <app-svg-icon
-          *ngIf="form.get('structureName').value && !form.get('structureName').valid"
-          [iconClass]="'validation'"
-          [type]="'form'"
-          [icon]="'notValidate'"
-        />
+  <div *ngIf="!hasStructures" class="select-structure">
+    <form [formGroup]="form">
+      <div class="form-group" fxLayout="column">
+        <label for="structureName">Nom de votre structure</label>
+        <div fxLayout="row" fxLayoutGap="13px">
+          <input
+            type="text"
+            autocomplete="on"
+            formControlName="structureName"
+            class="form-input"
+            (input)="updatedForm('structureName', $event.target)"
+          />
+          <app-svg-icon
+            *ngIf="form.get('structureName').value && form.get('structureName').valid"
+            [iconClass]="'validation'"
+            [type]="'form'"
+            [icon]="'validate'"
+          />
+          <app-svg-icon
+            *ngIf="form.get('structureName').value && !form.get('structureName').valid"
+            [iconClass]="'validation'"
+            [type]="'form'"
+            [icon]="'notValidate'"
+          />
+        </div>
       </div>
-    </div>
-    <div class="form-group" fxLayout="column">
-      <label for="structureMail">Email de votre structure</label>
-      <p class="notRequired">Facultatif</p>
-      <div fxLayout="row" fxLayoutGap="13px">
-        <input
-          type="text"
-          autocomplete="on"
-          formControlName="structureMail"
-          class="form-input"
-          (input)="updatedForm('structureMail', $event.target)"
-        />
-        <app-svg-icon
-          *ngIf="form.get('structureMail').value && form.get('structureMail').valid"
-          [iconClass]="'validation'"
-          [type]="'form'"
-          [icon]="'validate'"
-        />
-        <app-svg-icon
-          *ngIf="form.get('structureMail').value && !form.get('structureMail').valid"
-          [iconClass]="'validation'"
-          [type]="'form'"
-          [icon]="'notValidate'"
-        />
+      <div class="form-group" fxLayout="column">
+        <label for="structureMail">Email de votre structure</label>
+        <p class="notRequired">Facultatif</p>
+        <div fxLayout="row" fxLayoutGap="13px">
+          <input
+            type="text"
+            autocomplete="on"
+            formControlName="structureMail"
+            class="form-input"
+            (input)="updatedForm('structureMail', $event.target)"
+          />
+          <app-svg-icon
+            *ngIf="form.get('structureMail').value && form.get('structureMail').valid"
+            [iconClass]="'validation'"
+            [type]="'form'"
+            [icon]="'validate'"
+          />
+          <app-svg-icon
+            *ngIf="form.get('structureMail').value && !form.get('structureMail').valid"
+            [iconClass]="'validation'"
+            [type]="'form'"
+            [icon]="'notValidate'"
+          />
+        </div>
       </div>
-    </div>
-    <div class="form-group" fxLayout="column">
-      <label for="structurePhone">Téléphone de votre structure</label>
-      <p class="notRequired">Facultatif</p>
-      <div fxLayout="row" fxLayoutGap="13px">
-        <input
-          type="phone"
-          autocomplete="on"
-          formControlName="structurePhone"
-          class="form-input"
-          (input)="updatedForm('structurePhone', $event.target)"
-        />
-        <app-svg-icon
-          *ngIf="form.get('structurePhone').value && form.get('structurePhone').valid"
-          [iconClass]="'validation'"
-          [type]="'form'"
-          [icon]="'validate'"
-        />
-        <app-svg-icon
-          *ngIf="form.get('structurePhone').value && !form.get('structurePhone').valid"
-          [iconClass]="'validation'"
-          [type]="'form'"
-          [icon]="'notValidate'"
-        />
+      <div class="form-group" fxLayout="column">
+        <label for="structurePhone">Téléphone de votre structure</label>
+        <p class="notRequired">Facultatif</p>
+        <div fxLayout="row" fxLayoutGap="13px">
+          <input
+            type="phone"
+            autocomplete="on"
+            formControlName="structurePhone"
+            class="form-input"
+            (input)="updatedForm('structurePhone', $event.target)"
+          />
+          <app-svg-icon
+            *ngIf="form.get('structurePhone').value && form.get('structurePhone').valid"
+            [iconClass]="'validation'"
+            [type]="'form'"
+            [icon]="'validate'"
+          />
+          <app-svg-icon
+            *ngIf="form.get('structurePhone').value && !form.get('structurePhone').valid"
+            [iconClass]="'validation'"
+            [type]="'form'"
+            [icon]="'notValidate'"
+          />
+        </div>
       </div>
-    </div>
-  </form>
+    </form>
+  </div>
 </div>
diff --git a/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html b/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html
index 7efd28aa6..d60a39069 100644
--- a/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/mediation-language-selection/mediation-language-selection.component.html
@@ -1,11 +1,13 @@
-<h2>Dans quelle langue la personne souhaite-t-elle être rappelée ?</h2>
+<div class="orientationForm">
+  <h2>Dans quelle langue la personne souhaite-t-elle être rappelée ?</h2>
 
-<div class="formGroup">
-  <app-radio-option
-    *ngFor="let lang of languages"
-    [id]="lang.key"
-    [label]="lang.title"
-    [selected]="selected === lang.key"
-    (selectedEvent)="handleSelect(lang.key)"
-  />
+  <div class="formGroup">
+    <app-radio-option
+      *ngFor="let lang of languages"
+      [id]="lang.key"
+      [label]="lang.title"
+      [selected]="selected === lang.key"
+      (selectedEvent)="handleSelect(lang.key)"
+    />
+  </div>
 </div>
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
index e8f05d51b..06b035d10 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/accompaniment-type/accompaniment-type.component.html
@@ -1,11 +1,13 @@
-<h2>De quel accompagnement la personne a-t-elle besoin ?</h2>
-<div class="formGroup">
-  <app-radio-option
-    *ngFor="let option of accompanimentTypes"
-    [id]="option.key"
-    [label]="option.title"
-    [description]="option.hint"
-    [selected]="selected === option.key"
-    (selectedEvent)="handleSelect(option.key)"
-  />
+<div class="orientationForm">
+  <h2>De quel accompagnement la personne a-t-elle besoin ?</h2>
+  <div class="formGroup">
+    <app-radio-option
+      *ngFor="let option of accompanimentTypes"
+      [id]="option.key"
+      [label]="option.title"
+      [description]="option.hint"
+      [selected]="selected === option.key"
+      (selectedEvent)="handleSelect(option.key)"
+    />
+  </div>
 </div>
diff --git a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.html b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.html
index 9d5386cc3..244c73398 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-demarch-common/online-demarch.component.html
@@ -1,25 +1,28 @@
-<h2>Quelle démarche en ligne la personne a-t-elle besoin de réaliser ?</h2>
-<div class="btn-grid btnContainer">
-  <span *ngFor="let module of accompanimentType">
-    <app-button
-      *ngIf="module.id !== 'autres'"
-      [ngClass]="{ selectedChoice: true }"
-      [extraClass]="isSelectedModule(module.id) ? 'selected' : ''"
-      [disabled]="module.disabled"
-      [style]="buttonTypeEnum.CheckButton"
-      [text]="module.name"
-      (action)="handleClick(module)"
-    />
-  </span>
+<div class="orientationForm">
+  <h2>Quelle démarche en ligne la personne a-t-elle besoin de réaliser ?</h2>
+  <div class="btn-grid btnContainer">
+    <span *ngFor="let module of accompanimentType">
+      <app-button
+        *ngIf="module.id !== 'autres'"
+        [ngClass]="{ selectedChoice: true }"
+        [extraClass]="isSelectedModule(module.id) ? 'selected' : ''"
+        [disabled]="module.disabled"
+        [style]="buttonTypeEnum.CheckButton"
+        [text]="module.name"
+        (action)="handleClick(module)"
+      />
+    </span>
+  </div>
+  <app-v3-modal
+    [opened]="showStrangersModal"
+    [validateLabel]="'J\'ai compris'"
+    [singleButton]="true"
+    [title]="'Attention'"
+    (closed)="handleClose()"
+  >
+    <div class="modalContent emphasized">
+      Les premières demandes de titres de séjour doivent être redirigées vers les associations spécialisées sur les
+      droits des étrangers.
+    </div>
+  </app-v3-modal>
 </div>
-<app-v3-modal
-  [opened]="showStrangersModal"
-  [validateLabel]="'J\'ai compris'"
-  [singleButton]="true"
-  [title]="'Attention'"
-  (closed)="handleClose()"
-  ><div class="modalContent emphasized">
-    Les premières demandes de titres de séjour doivent être redirigées vers les associations spécialisées sur les droits
-    des étrangers.
-  </div></app-v3-modal
->
diff --git a/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.html b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.html
index 8cc5163b7..f65c86877 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.html
@@ -1,91 +1,98 @@
-<h2 *ngIf="currentType !== 'RDV Conseiller Numérique'">Quelles sont les informations de la personne ?</h2>
-<h2 *ngIf="currentType === 'RDV Conseiller Numérique'">Quelles sont les coordonnées de la personne ?</h2>
-<form [formGroup]="form">
-  <div class="form-group" fxLayout="column">
-    <label for="name">Prénom</label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        autocomplete="on"
-        formControlName="name"
-        class="form-input"
-        (input)="updatedForm('name', $event.target)"
-      />
-      <app-svg-icon *ngIf="form.get('name').valid" [iconClass]="'validation'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon
-        *ngIf="form.get('name').value && !form.get('name').valid"
-        [iconClass]="'validation'"
-        [type]="'form'"
-        [icon]="'notValidate'"
-      />
+<div class="orientationForm">
+  <h2 *ngIf="currentType !== 'RDV Conseiller Numérique'">Quelles sont les informations de la personne ?</h2>
+  <h2 *ngIf="currentType === 'RDV Conseiller Numérique'">Quelles sont les coordonnées de la personne ?</h2>
+  <form [formGroup]="form">
+    <div class="form-group" fxLayout="column">
+      <label for="name">Prénom</label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          autocomplete="on"
+          formControlName="name"
+          class="form-input"
+          (input)="updatedForm('name', $event.target)"
+        />
+        <app-svg-icon *ngIf="form.get('name').valid" [iconClass]="'validation'" [type]="'form'" [icon]="'validate'" />
+        <app-svg-icon
+          *ngIf="form.get('name').value && !form.get('name').valid"
+          [iconClass]="'validation'"
+          [type]="'form'"
+          [icon]="'notValidate'"
+        />
+      </div>
     </div>
-  </div>
-  <div class="form-group" fxLayout="column">
-    <label for="surname">Nom</label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        autocomplete="on"
-        formControlName="surname"
-        class="form-input"
-        (input)="updatedForm('surname', $event.target)"
-      />
-      <app-svg-icon *ngIf="form.get('surname').valid" [iconClass]="'validation'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon
-        *ngIf="form.get('surname').value && !form.get('surname').valid"
-        [iconClass]="'validation'"
-        [type]="'form'"
-        [icon]="'notValidate'"
-      />
+    <div class="form-group" fxLayout="column">
+      <label for="surname">Nom</label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          autocomplete="on"
+          formControlName="surname"
+          class="form-input"
+          (input)="updatedForm('surname', $event.target)"
+        />
+        <app-svg-icon
+          *ngIf="form.get('surname').valid"
+          [iconClass]="'validation'"
+          [type]="'form'"
+          [icon]="'validate'"
+        />
+        <app-svg-icon
+          *ngIf="form.get('surname').value && !form.get('surname').valid"
+          [iconClass]="'validation'"
+          [type]="'form'"
+          [icon]="'notValidate'"
+        />
+      </div>
     </div>
-  </div>
 
-  <div *ngIf="isEmail()" class="form-group" fxLayout="column">
-    <label for="email">Email <sup *ngIf="isOrientationRdv" class="footnote-nb">1</sup></label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        autocomplete="on"
-        formControlName="email"
-        class="form-input"
-        (input)="updatedForm('email', $event.target)"
-      />
-      <app-svg-icon
-        *ngIf="form.get('email').value && form.get('email').valid"
-        [iconClass]="'validation'"
-        [type]="'form'"
-        [icon]="'validate'"
-      />
-      <app-svg-icon
-        *ngIf="form.get('email').value && !form.get('email').valid"
-        [iconClass]="'validation'"
-        [type]="'form'"
-        [icon]="'notValidate'"
-      />
+    <div *ngIf="isEmail()" class="form-group" fxLayout="column">
+      <label for="email">Email <sup *ngIf="isOrientationRdv" class="footnote-nb">1</sup></label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          autocomplete="on"
+          formControlName="email"
+          class="form-input"
+          (input)="updatedForm('email', $event.target)"
+        />
+        <app-svg-icon
+          *ngIf="form.get('email').value && form.get('email').valid"
+          [iconClass]="'validation'"
+          [type]="'form'"
+          [icon]="'validate'"
+        />
+        <app-svg-icon
+          *ngIf="form.get('email').value && !form.get('email').valid"
+          [iconClass]="'validation'"
+          [type]="'form'"
+          [icon]="'notValidate'"
+        />
+      </div>
     </div>
-  </div>
 
-  <div *ngIf="isPhone()" class="form-group" fxLayout="column">
-    <label for="phone">Téléphone<sup *ngIf="isOrientationRdv" class="footnote-nb">1</sup></label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="phone"
-        autocomplete="on"
-        formControlName="phone"
-        class="form-input"
-        (input)="updatedForm('phone', $event.target)"
-      />
-      <app-svg-icon *ngIf="form.get('phone').valid" [iconClass]="'validation'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon
-        *ngIf="form.get('phone').value && !form.get('phone').valid"
-        [iconClass]="'validation'"
-        [type]="'form'"
-        [icon]="'notValidate'"
-      />
+    <div *ngIf="isPhone()" class="form-group" fxLayout="column">
+      <label for="phone">Téléphone<sup *ngIf="isOrientationRdv" class="footnote-nb">1</sup></label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="phone"
+          autocomplete="on"
+          formControlName="phone"
+          class="form-input"
+          (input)="updatedForm('phone', $event.target)"
+        />
+        <app-svg-icon *ngIf="form.get('phone').valid" [iconClass]="'validation'" [type]="'form'" [icon]="'validate'" />
+        <app-svg-icon
+          *ngIf="form.get('phone').value && !form.get('phone').valid"
+          [iconClass]="'validation'"
+          [type]="'form'"
+          [icon]="'notValidate'"
+        />
+      </div>
     </div>
-  </div>
-  <p *ngIf="isOrientationRdv && isPhone() && isEmail()" class="footnote">
-    <sup class="footnote-nb">1</sup> Un moyen de communication (email et/ou téléphone) est obligatoire pour valider
-    cette étape
-  </p>
-</form>
+    <p *ngIf="isOrientationRdv && isPhone() && isEmail()" class="footnote">
+      <sup class="footnote-nb">1</sup> Un moyen de communication (email et/ou téléphone) est obligatoire pour valider
+      cette étape
+    </p>
+  </form>
+</div>
diff --git a/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.html b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.html
index 963e78036..0886512f8 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.html
+++ b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-hours-selection/mediation-hours-selection.component.html
@@ -1,10 +1,12 @@
-<h2>Sur quel créneau horaire la personne souhaite-t-elle être rappelée ?</h2>
-<div class="subtitle">Horaires de la Hotline</div>
-<div class="container">
-  <div *ngFor="let slot of timeSlots" class="slot">
-    <div class="day">{{ slot.day }}</div>
-    <button type="button" class="time" [ngClass]="{ selected: isSelected(slot) }" (click)="selectHour(slot)">
-      <span *ngFor="let str of slot.hours.split(' ')">{{ str }}</span>
-    </button>
+<div class="orientationForm">
+  <h2>Sur quel créneau horaire la personne souhaite-t-elle être rappelée ?</h2>
+  <div class="subtitle">Horaires de la Hotline</div>
+  <div class="container">
+    <div *ngFor="let slot of timeSlots" class="slot">
+      <div class="day">{{ slot.day }}</div>
+      <button type="button" class="time" [ngClass]="{ selected: isSelected(slot) }" (click)="selectHour(slot)">
+        <span *ngFor="let str of slot.hours.split(' ')">{{ str }}</span>
+      </button>
+    </div>
   </div>
 </div>
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.scss b/src/app/form/orientation-form-view/orientation-form-view.component.scss
index b3ae5cd9c..a97889045 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.scss
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.scss
@@ -7,18 +7,13 @@
   height: 100%;
 }
 
-::ng-deep h2 {
-  margin-top: 0;
-}
-
 .orientation {
   height: 100%;
   display: flex;
   flex-direction: column;
   .container {
     box-sizing: border-box;
-    max-width: 980px;
-    width: 100%;
+
     height: 100%;
     margin: auto;
     overflow-y: auto;
@@ -35,6 +30,10 @@
 }
 
 ::ng-deep.title {
+  display: flex;
+  flex-direction: column;
+  gap: 16px;
+
   .overtitle {
     @include font-regular-18;
     color: $grey-3;
@@ -55,9 +54,8 @@
   p {
     @include font-regular-18;
     color: $grey-3;
-    font-style: italic;
-    margin-top: 4px;
   }
+  // V3REMOVE
   .backArrow {
     cursor: pointer;
   }
@@ -66,3 +64,14 @@
 div.titleform {
   color: $red;
 }
+
+::ng-deep .orientationForm {
+  display: flex;
+  flex-direction: column;
+  gap: 40px;
+
+  min-width: 600px;
+  @media #{$tablet} {
+    min-width: auto;
+  }
+}
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
index a035946c1..aaca754f4 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
@@ -1,4 +1,4 @@
-<form [formGroup]="form">
+<form class="orientationForm" [formGroup]="form">
   <div class="title">
     <h3>Avez-vous des précisions à apporter&nbsp;?</h3>
     <p>Facultatif</p>
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
index 5278bdf7a..d9fe658f0 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
@@ -1,4 +1,4 @@
-<form *ngIf="form" [formGroup]="form">
+<form *ngIf="form" class="orientationForm" [formGroup]="form">
   <div class="title">
     <p class="overtitle">{{ structureName }}</p>
     <h3>Autour de quelle adresse cherchez-vous une structure&nbsp;?</h3>
diff --git a/src/app/profile/profile.component.scss b/src/app/profile/profile.component.scss
index 309a2c0c0..c3a08de0f 100644
--- a/src/app/profile/profile.component.scss
+++ b/src/app/profile/profile.component.scss
@@ -47,7 +47,7 @@ section {
   h1 {
     @include font-bold-18;
   }
-
+  // V3REMOVE
   .backArrow {
     cursor: pointer;
   }
diff --git a/src/app/shared/components/svg-icon/svg-icon.component.scss b/src/app/shared/components/svg-icon/svg-icon.component.scss
index 0809bd11b..7f77f0f91 100644
--- a/src/app/shared/components/svg-icon/svg-icon.component.scss
+++ b/src/app/shared/components/svg-icon/svg-icon.component.scss
@@ -79,6 +79,7 @@ $sizes: (
     fill: $green-1;
     stroke: $green-1;
   }
+  // V3REMOVE
   &.backArrow {
     height: 40px;
     width: 40px;
-- 
GitLab


From aba6724e63e442e7953dbe5ace0c461685e7e6ad Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 11:45:10 +0100
Subject: [PATCH 64/77] adjust padding

---
 .../equipment-access-choice.component.html                      | 2 +-
 .../components/structure-pmr/structure-pmr.component.html       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html b/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html
index c04aa1eea..e8ec46b02 100644
--- a/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html
+++ b/src/app/form/orientation-form-view/equipment-access/equipment-access-choice/equipment-access-choice.component.html
@@ -1,7 +1,7 @@
 <div class="orientationForm">
   <h2>De quel matériel a-t-il besoin ?</h2>
 
-  <div fxLayout="column" fxLayoutGap="32px">
+  <div class="btn-grid">
     <span *ngFor="let module of equipmentType">
       <app-button
         [ngClass]="{ selectedChoice: true }"
diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.html b/src/app/shared/components/structure-pmr/structure-pmr.component.html
index b9bf943bf..7807fbd4a 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.html
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.html
@@ -1,4 +1,4 @@
-<form [formGroup]="structureForm">
+<form class="orientationFrom" [formGroup]="structureForm">
   <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
-- 
GitLab


From ea8e8902cf2eac40ccd5f34fea3c0b077fc53549 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Tue, 12 Dec 2023 11:54:47 +0100
Subject: [PATCH 65/77] merge types

---
 .../base-skills/base-skills.component.ts                   | 3 +--
 .../equipment-access/equipment-access.component.ts         | 3 +--
 .../equipment-buy/equipment-buy.component.ts               | 3 +--
 .../global-components/navigation/navigation.component.ts   | 6 ++----
 .../interfaces/orientationIndicator.interface.ts           | 2 +-
 .../mediation-beneficiary-info.component.ts                | 2 +-
 .../online-demarch/onlineDemarch-form.component.ts         | 4 +---
 .../orientation-form-view.component.ts                     | 3 +--
 .../orientation-structure-list.component.ts                | 2 +-
 src/app/form/orientation-form-view/types/mediation.type.ts | 3 ---
 .../form/orientation-form-view/types/mediationStep.type.ts | 4 ----
 .../{onlineDemarcheStep.type.ts => orientation.types.ts}   | 7 +++++++
 12 files changed, 17 insertions(+), 25 deletions(-)
 delete mode 100644 src/app/form/orientation-form-view/types/mediation.type.ts
 delete mode 100644 src/app/form/orientation-form-view/types/mediationStep.type.ts
 rename src/app/form/orientation-form-view/types/{onlineDemarcheStep.type.ts => orientation.types.ts} (58%)

diff --git a/src/app/form/orientation-form-view/base-skills/base-skills.component.ts b/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
index 6bb501123..e01cf9f33 100644
--- a/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
+++ b/src/app/form/orientation-form-view/base-skills/base-skills.component.ts
@@ -3,8 +3,7 @@ import { FormGroup } from '@angular/forms';
 import { OrientationUtils } from '../../../utils/orientationUtils';
 import { FiltersSteps, GenericOrientationSteps, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
-import { MediationType } from '../types/mediation.type';
-import { MediationStepType } from '../types/mediationStep.type';
+import { MediationStepType, MediationType } from '../types/orientation.types';
 
 @Component({
   selector: 'app-base-skills',
diff --git a/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts b/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
index a686f54a1..42bc7fed6 100644
--- a/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
+++ b/src/app/form/orientation-form-view/equipment-access/equipment-access.component.ts
@@ -6,8 +6,7 @@ import { OrientationUtils } from '../../../utils/orientationUtils';
 import { FiltersSteps, GenericOrientationSteps, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
 import { StructureOrientationForm } from '../interfaces/structureOrientationForm.interface';
-import { MediationType } from '../types/mediation.type';
-import { MediationStepType } from '../types/mediationStep.type';
+import { MediationStepType, MediationType } from '../types/orientation.types';
 
 @Component({
   selector: 'app-equipment-access',
diff --git a/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts b/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
index adf0e9135..a009475d2 100644
--- a/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
+++ b/src/app/form/orientation-form-view/equipment-buy/equipment-buy.component.ts
@@ -6,8 +6,7 @@ import { OrientationUtils } from '../../../utils/orientationUtils';
 import { FiltersSteps, GenericOrientationSteps, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
 import { StructureOrientationForm } from '../interfaces/structureOrientationForm.interface';
-import { MediationType } from '../types/mediation.type';
-import { MediationStepType } from '../types/mediationStep.type';
+import { MediationStepType, MediationType } from '../types/orientation.types';
 
 @Component({
   selector: 'app-equipment-buy',
diff --git a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
index 37cc1c623..3f11f48f9 100644
--- a/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
+++ b/src/app/form/orientation-form-view/global-components/navigation/navigation.component.ts
@@ -2,9 +2,7 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { ActivatedRoute, Router } from '@angular/router';
 import { ButtonTypeV3 } from '../../../../shared/components/v3/button/button-type.enum';
 import { NeedsType, OnlineDemarche } from '../../enums/orientation.enums';
-import { MediationType } from '../../types/mediation.type';
-import { MediationStepType } from '../../types/mediationStep.type';
-import { OnlineMediationSteps } from '../../types/onlineDemarcheStep.type';
+import { MediationStepType, MediationType } from '../../types/orientation.types';
 
 @Component({
   selector: 'app-navigation',
@@ -12,7 +10,7 @@ import { OnlineMediationSteps } from '../../types/onlineDemarcheStep.type';
   styleUrls: ['./navigation.component.scss'],
 })
 export class NavigationComponent {
-  @Input() currentStep: OnlineMediationSteps | MediationStepType;
+  @Input() currentStep: MediationStepType;
   @Input() currentType: OnlineDemarche | MediationType;
   @Input() isPageValid: boolean;
   @Input() needType: NeedsType;
diff --git a/src/app/form/orientation-form-view/interfaces/orientationIndicator.interface.ts b/src/app/form/orientation-form-view/interfaces/orientationIndicator.interface.ts
index 8d5dc451c..d8fadede4 100644
--- a/src/app/form/orientation-form-view/interfaces/orientationIndicator.interface.ts
+++ b/src/app/form/orientation-form-view/interfaces/orientationIndicator.interface.ts
@@ -1,5 +1,5 @@
 import { Address } from '../../../models/address.model';
-import { MediationType } from '../types/mediation.type';
+import { MediationType } from '../types/orientation.types';
 
 export interface OrientationIndicatorStructure {
   nom: string;
diff --git a/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.ts b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.ts
index eddda6a5d..9b8ac7ac6 100644
--- a/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/online-mediation/mediation-beneficiary-info/mediation-beneficiary-info.component.ts
@@ -1,7 +1,7 @@
 import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
 import { UntypedFormGroup } from '@angular/forms';
 import { Utils } from '../../../../../utils/utils';
-import { MediationType } from '../../../types/mediation.type';
+import { MediationType } from '../../../types/orientation.types';
 
 @Component({
   selector: 'app-mediation-beneficiary-info',
diff --git a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
index b80af137f..e4fd6e3ae 100644
--- a/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
+++ b/src/app/form/orientation-form-view/online-demarch/onlineDemarch-form.component.ts
@@ -17,9 +17,7 @@ import {
   StructuresListSteps,
 } from '../enums/orientation.enums';
 import { FiltersForm } from '../interfaces/filtersForm.interface';
-import { MediationType } from '../types/mediation.type';
-import { MediationStepType } from '../types/mediationStep.type';
-import { OnlineMediationSteps } from '../types/onlineDemarcheStep.type';
+import { MediationStepType, MediationType, OnlineMediationSteps } from '../types/orientation.types';
 
 @Component({
   selector: 'app-online-demarch-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 545338a29..73c394f7c 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
@@ -37,8 +37,7 @@ import {
 } from './interfaces/orientationIndicator.interface';
 import { StructureOrientationForm } from './interfaces/structureOrientationForm.interface';
 import { StructureOrientator } from './interfaces/structureOrientator.interface';
-import { MediationType } from './types/mediation.type';
-import { MediationStepType } from './types/mediationStep.type';
+import { MediationStepType, MediationType } from './types/orientation.types';
 
 @Component({
   selector: 'app-orientation-form-view',
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
index 4cdfe49c6..f2a34f123 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-list.component.ts
@@ -5,7 +5,7 @@ import { User } from '../../../models/user.model';
 import { Filter } from '../../../structure-list/models/filter.model';
 import { OrientationUtils } from '../../../utils/orientationUtils';
 import { FiltersSteps, NeedsType, RecapsType, StructuresListSteps } from '../enums/orientation.enums';
-import { MediationStepType } from '../types/mediationStep.type';
+import { MediationStepType } from '../types/orientation.types';
 
 @Component({
   selector: 'app-orientation-structure-list',
diff --git a/src/app/form/orientation-form-view/types/mediation.type.ts b/src/app/form/orientation-form-view/types/mediation.type.ts
deleted file mode 100644
index 8e0f65934..000000000
--- a/src/app/form/orientation-form-view/types/mediation.type.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import { GenericOrientationSteps, OnlineDemarche } from '../enums/orientation.enums';
-
-export type MediationType = OnlineDemarche | GenericOrientationSteps;
diff --git a/src/app/form/orientation-form-view/types/mediationStep.type.ts b/src/app/form/orientation-form-view/types/mediationStep.type.ts
deleted file mode 100644
index 608b1fdc7..000000000
--- a/src/app/form/orientation-form-view/types/mediationStep.type.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-import { FiltersSteps } from '../enums/orientation.enums';
-import { OnlineMediationSteps } from './onlineDemarcheStep.type';
-
-export type MediationStepType = OnlineMediationSteps | FiltersSteps;
diff --git a/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts b/src/app/form/orientation-form-view/types/orientation.types.ts
similarity index 58%
rename from src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
rename to src/app/form/orientation-form-view/types/orientation.types.ts
index e0142098b..2a9694d2a 100644
--- a/src/app/form/orientation-form-view/types/onlineDemarcheStep.type.ts
+++ b/src/app/form/orientation-form-view/types/orientation.types.ts
@@ -1,12 +1,19 @@
 import {
   AppointmentSteps,
+  FiltersSteps,
+  GenericOrientationSteps,
   HotlineMediationSteps,
+  OnlineDemarche,
   OnlineDemarchesCommonSteps,
   StructuresListSteps,
 } from '../enums/orientation.enums';
 
+export type MediationType = OnlineDemarche | GenericOrientationSteps;
+
 export type OnlineMediationSteps =
   | HotlineMediationSteps
   | StructuresListSteps
   | OnlineDemarchesCommonSteps
   | AppointmentSteps;
+
+export type MediationStepType = OnlineMediationSteps | FiltersSteps;
-- 
GitLab


From 5bed47dcc2a344aceaefa3ca5e3d2a9da437968f Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 08:43:46 +0100
Subject: [PATCH 66/77] typo

---
 .../components/structure-pmr/structure-pmr.component.html       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/shared/components/structure-pmr/structure-pmr.component.html b/src/app/shared/components/structure-pmr/structure-pmr.component.html
index 7807fbd4a..c77262744 100644
--- a/src/app/shared/components/structure-pmr/structure-pmr.component.html
+++ b/src/app/shared/components/structure-pmr/structure-pmr.component.html
@@ -1,4 +1,4 @@
-<form class="orientationFrom" [formGroup]="structureForm">
+<form class="orientationForm" [formGroup]="structureForm">
   <app-go-back *ngIf="isEditMode" (action)="goBack()" />
   <div class="title">
     <h3>{{ title ? title : 'La personne a-t-elle besoin d’un accès mobilité réduite ?' }}</h3>
-- 
GitLab


From 0ef1b2dcc22bf57040bcb1ff1c24d7d4c43e206d Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 08:52:29 +0100
Subject: [PATCH 67/77] orientator

---
 .../structure-orientator.component.html       | 142 +++++++++---------
 1 file changed, 72 insertions(+), 70 deletions(-)

diff --git a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
index 9eabe0161..41a5db1a2 100644
--- a/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
+++ b/src/app/form/orientation-form-view/global-components/structure-orientator/structure-orientator.component.html
@@ -25,78 +25,80 @@
   </div>
   <div *ngIf="!hasStructures" class="select-structure">
     <form [formGroup]="form">
-      <div class="form-group" fxLayout="column">
-        <label for="structureName">Nom de votre structure</label>
-        <div fxLayout="row" fxLayoutGap="13px">
-          <input
-            type="text"
-            autocomplete="on"
-            formControlName="structureName"
-            class="form-input"
-            (input)="updatedForm('structureName', $event.target)"
-          />
-          <app-svg-icon
-            *ngIf="form.get('structureName').value && form.get('structureName').valid"
-            [iconClass]="'validation'"
-            [type]="'form'"
-            [icon]="'validate'"
-          />
-          <app-svg-icon
-            *ngIf="form.get('structureName').value && !form.get('structureName').valid"
-            [iconClass]="'validation'"
-            [type]="'form'"
-            [icon]="'notValidate'"
-          />
+      <div>
+        <div class="form-group" fxLayout="column">
+          <label for="structureName">Nom de votre structure</label>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              type="text"
+              autocomplete="on"
+              formControlName="structureName"
+              class="form-input"
+              (input)="updatedForm('structureName', $event.target)"
+            />
+            <app-svg-icon
+              *ngIf="form.get('structureName').value && form.get('structureName').valid"
+              [iconClass]="'validation'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="form.get('structureName').value && !form.get('structureName').valid"
+              [iconClass]="'validation'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
+          </div>
         </div>
-      </div>
-      <div class="form-group" fxLayout="column">
-        <label for="structureMail">Email de votre structure</label>
-        <p class="notRequired">Facultatif</p>
-        <div fxLayout="row" fxLayoutGap="13px">
-          <input
-            type="text"
-            autocomplete="on"
-            formControlName="structureMail"
-            class="form-input"
-            (input)="updatedForm('structureMail', $event.target)"
-          />
-          <app-svg-icon
-            *ngIf="form.get('structureMail').value && form.get('structureMail').valid"
-            [iconClass]="'validation'"
-            [type]="'form'"
-            [icon]="'validate'"
-          />
-          <app-svg-icon
-            *ngIf="form.get('structureMail').value && !form.get('structureMail').valid"
-            [iconClass]="'validation'"
-            [type]="'form'"
-            [icon]="'notValidate'"
-          />
+        <div class="form-group" fxLayout="column">
+          <label for="structureMail">Email de votre structure</label>
+          <p class="notRequired">Facultatif</p>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              type="text"
+              autocomplete="on"
+              formControlName="structureMail"
+              class="form-input"
+              (input)="updatedForm('structureMail', $event.target)"
+            />
+            <app-svg-icon
+              *ngIf="form.get('structureMail').value && form.get('structureMail').valid"
+              [iconClass]="'validation'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="form.get('structureMail').value && !form.get('structureMail').valid"
+              [iconClass]="'validation'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
+          </div>
         </div>
-      </div>
-      <div class="form-group" fxLayout="column">
-        <label for="structurePhone">Téléphone de votre structure</label>
-        <p class="notRequired">Facultatif</p>
-        <div fxLayout="row" fxLayoutGap="13px">
-          <input
-            type="phone"
-            autocomplete="on"
-            formControlName="structurePhone"
-            class="form-input"
-            (input)="updatedForm('structurePhone', $event.target)"
-          />
-          <app-svg-icon
-            *ngIf="form.get('structurePhone').value && form.get('structurePhone').valid"
-            [iconClass]="'validation'"
-            [type]="'form'"
-            [icon]="'validate'"
-          />
-          <app-svg-icon
-            *ngIf="form.get('structurePhone').value && !form.get('structurePhone').valid"
-            [iconClass]="'validation'"
-            [type]="'form'"
-            [icon]="'notValidate'"
-          />
+        <div class="form-group" fxLayout="column">
+          <label for="structurePhone">Téléphone de votre structure</label>
+          <p class="notRequired">Facultatif</p>
+          <div fxLayout="row" fxLayoutGap="13px">
+            <input
+              type="phone"
+              autocomplete="on"
+              formControlName="structurePhone"
+              class="form-input"
+              (input)="updatedForm('structurePhone', $event.target)"
+            />
+            <app-svg-icon
+              *ngIf="form.get('structurePhone').value && form.get('structurePhone').valid"
+              [iconClass]="'validation'"
+              [type]="'form'"
+              [icon]="'validate'"
+            />
+            <app-svg-icon
+              *ngIf="form.get('structurePhone').value && !form.get('structurePhone').valid"
+              [iconClass]="'validation'"
+              [type]="'form'"
+              [icon]="'notValidate'"
+            />
+          </div>
         </div>
       </div>
     </form>
-- 
GitLab


From 87ec88e29e0f3f7c189136520099dd2d265caafc Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 09:08:51 +0100
Subject: [PATCH 68/77] fix orientation map

---
 src/app/carto/carto.component.html                            | 2 +-
 src/app/carto/carto.component.scss                            | 4 ++--
 .../orientation-form-view.component.scss                      | 4 ++--
 src/assets/scss/_layout.scss                                  | 1 +
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/app/carto/carto.component.html b/src/app/carto/carto.component.html
index 928ead9f4..7b598ceaf 100644
--- a/src/app/carto/carto.component.html
+++ b/src/app/carto/carto.component.html
@@ -1,4 +1,4 @@
-<div class="content-container no-pt" [ngClass]="{ 'height-100': isOrientationForm }">
+<div class="content-container no-pt" [ngClass]="{ orientationHeight: isOrientationForm }">
   <h1 class="visually-hidden">Cartographie</h1>
   <div class="hide-on-print">
     <app-structure-list-search [filters]="filters" (searchEvent)="getStructures($event)" />
diff --git a/src/app/carto/carto.component.scss b/src/app/carto/carto.component.scss
index c913fccf2..d7f9e46b6 100644
--- a/src/app/carto/carto.component.scss
+++ b/src/app/carto/carto.component.scss
@@ -16,8 +16,8 @@
   flex-direction: column;
 }
 
-.height-100 {
-  height: calc(100vh - #{$header-height} - #{$orientation-progressBarAndButtons});
+.orientationHeight {
+  height: calc(100vh - #{$header-height} - #{$progress-bar-height} - #{$orientation-progressBarAndButtons});
 }
 
 .panes-container {
diff --git a/src/app/form/orientation-form-view/orientation-form-view.component.scss b/src/app/form/orientation-form-view/orientation-form-view.component.scss
index a97889045..86ab63866 100644
--- a/src/app/form/orientation-form-view/orientation-form-view.component.scss
+++ b/src/app/form/orientation-form-view/orientation-form-view.component.scss
@@ -70,8 +70,8 @@ div.titleform {
   flex-direction: column;
   gap: 40px;
 
-  min-width: 600px;
+  width: 600px;
   @media #{$tablet} {
-    min-width: auto;
+    width: auto;
   }
 }
diff --git a/src/assets/scss/_layout.scss b/src/assets/scss/_layout.scss
index d31119314..8aec0e8f5 100644
--- a/src/assets/scss/_layout.scss
+++ b/src/assets/scss/_layout.scss
@@ -5,3 +5,4 @@ $footer-height-phone: 75px;
 $header-post-height: 180px;
 $content-desktop-width: 980px;
 $orientation-progressBarAndButtons: 119px;
+$progress-bar-height: 49px;
-- 
GitLab


From e951e072eb0b3ecb8d68d2b07a429fa39948f920 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 09:35:13 +0100
Subject: [PATCH 69/77] name & address spacing

---
 .../structure-name-and-address.component.html | 64 ++++++++++---------
 1 file changed, 33 insertions(+), 31 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
index 7328c02c7..3c79f4fc8 100644
--- a/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
+++ b/src/app/form/form-view/structure-form/structure-name-and-address/structure-name-and-address.component.html
@@ -3,38 +3,40 @@
   <div class="title">
     <h3>Quelle structure voulez-vous référencer&nbsp;?</h3>
   </div>
-  <div class="form-group" fxLayout="column">
-    <label for="structureName">Nom de la structure</label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        formControlName="structureName"
-        class="form-input structureName"
-        (input)="setValidationsForm()"
-      />
-      <app-svg-icon
-        *ngIf="structureForm.get('structureName').valid"
-        [iconClass]="'icon-26'"
-        [type]="'form'"
-        [icon]="'validate'"
-      />
+  <div>
+    <div class="form-group" fxLayout="column">
+      <label for="structureName">Nom de la structure</label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          formControlName="structureName"
+          class="form-input structureName"
+          (input)="setValidationsForm()"
+        />
+        <app-svg-icon
+          *ngIf="structureForm.get('structureName').valid"
+          [iconClass]="'icon-26'"
+          [type]="'form'"
+          [icon]="'validate'"
+        />
+      </div>
     </div>
-  </div>
-  <div class="form-group" fxLayout="column">
-    <label for="address">Adresse de la structure</label>
-    <div class="addressRow" fxLayout="row" fxLayoutGap="13px">
-      <app-address-autocomplete
-        [address]="structureForm.get('address').valid ? structureForm.get('address').value : null"
-        (inputAddress)="setAddressStructure()"
-        (selectedAddress)="setAddressStructure($event)"
-      />
-      <app-svg-icon
-        *ngIf="structureForm.get('address').valid"
-        class="validateIcon"
-        [iconClass]="'icon-26'"
-        [type]="'form'"
-        [icon]="'validate'"
-      />
+    <div class="form-group" fxLayout="column">
+      <label for="address">Adresse de la structure</label>
+      <div class="addressRow" fxLayout="row" fxLayoutGap="13px">
+        <app-address-autocomplete
+          [address]="structureForm.get('address').valid ? structureForm.get('address').value : null"
+          (inputAddress)="setAddressStructure()"
+          (selectedAddress)="setAddressStructure($event)"
+        />
+        <app-svg-icon
+          *ngIf="structureForm.get('address').valid"
+          class="validateIcon"
+          [iconClass]="'icon-26'"
+          [type]="'form'"
+          [icon]="'validate'"
+        />
+      </div>
     </div>
   </div>
 </form>
-- 
GitLab


From 944eb1f470fb758b60b10bbab89007099a717d98 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 09:43:27 +0100
Subject: [PATCH 70/77] revert test condition

---
 .../information-step/information-step.component.html            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/form/form-view/global-components/information-step/information-step.component.html b/src/app/form/form-view/global-components/information-step/information-step.component.html
index 777cebef7..2f80b57bc 100644
--- a/src/app/form/form-view/global-components/information-step/information-step.component.html
+++ b/src/app/form/form-view/global-components/information-step/information-step.component.html
@@ -31,7 +31,7 @@
 </ng-container>
 
 <!-- An attempt to create a structure has been made, some info are needed -->
-<ng-container>
+<ng-container *ngIf="formType === formTypeEnum.structure && step === structureFormStepEnum.structureFormTime">
   <div class="information-step-container no-max-width">
     <img src="../../assets/form/formTime.svg" alt="" />
     <h3>10 minutes sont nécessaires pour renseigner les informations et créer la structure</h3>
-- 
GitLab


From 7cf41a4caba28c349270452d21faf5b2dc4a91a7 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 09:48:04 +0100
Subject: [PATCH 71/77] ng deep search bar btn

---
 .../v3/search-bar/search-bar.component.scss           |  2 +-
 .../components/v3/search-bar/search-bar.component.ts  | 11 +++++------
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/src/app/shared/components/v3/search-bar/search-bar.component.scss b/src/app/shared/components/v3/search-bar/search-bar.component.scss
index 534e4d3ff..4e1c7ec80 100644
--- a/src/app/shared/components/v3/search-bar/search-bar.component.scss
+++ b/src/app/shared/components/v3/search-bar/search-bar.component.scss
@@ -29,7 +29,7 @@
       border: 1px solid $grey-1;
     }
   }
-  app-v3-icon-button {
+  ::ng-deep app-v3-icon-button {
     button {
       border-radius: 0 4px 4px 0;
     }
diff --git a/src/app/shared/components/v3/search-bar/search-bar.component.ts b/src/app/shared/components/v3/search-bar/search-bar.component.ts
index e5ec13635..2c8f5db93 100644
--- a/src/app/shared/components/v3/search-bar/search-bar.component.ts
+++ b/src/app/shared/components/v3/search-bar/search-bar.component.ts
@@ -1,15 +1,14 @@
-import { Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
+import { Component, EventEmitter, Input, Output } from '@angular/core';
 import { ButtonTypeV3 } from '../button/button-type.enum';
 
 @Component({
   selector: 'app-v3-search-bar',
   templateUrl: './search-bar.component.html',
   styleUrls: ['./search-bar.component.scss'],
-  encapsulation: ViewEncapsulation.None,
 })
 export class SearchBarV3Component {
-  @Input() placeholder: string = 'Rechercher';
-  @Input() value: string = '';
+  @Input() placeholder = 'Rechercher';
+  @Input() value = '';
   /** Triggers when input changes */
   @Output() valueChange = new EventEmitter<string>();
   /** Triggers when button is clicked or Enter is pressed on input */
@@ -17,11 +16,11 @@ export class SearchBarV3Component {
 
   public buttonTypeV3 = ButtonTypeV3;
 
-  public handleSearch() {
+  public handleSearch(): void {
     this.search.emit(this.value);
   }
 
-  public onChange(event: Event) {
+  public onChange(event: Event): void {
     this.value = (event.target as HTMLInputElement).value;
     this.valueChange.emit(this.value);
   }
-- 
GitLab


From 79244e293d7d42f16d62e890afb0edafd45221f3 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 09:50:03 +0100
Subject: [PATCH 72/77] flex direction gap 0

---
 .../shared/components/v3/search-bar/search-bar.component.scss   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/app/shared/components/v3/search-bar/search-bar.component.scss b/src/app/shared/components/v3/search-bar/search-bar.component.scss
index 4e1c7ec80..c6fba459f 100644
--- a/src/app/shared/components/v3/search-bar/search-bar.component.scss
+++ b/src/app/shared/components/v3/search-bar/search-bar.component.scss
@@ -4,6 +4,8 @@
 .search-bar {
   display: flex;
   align-items: center;
+  flex-direction: row;
+  gap: 0;
 
   input {
     box-sizing: border-box;
-- 
GitLab


From 71b4a1c6f85c6715fdaf7217301135048efa6616 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 09:52:06 +0100
Subject: [PATCH 73/77] fix spacing

---
 .../structure-contact.component.html          | 42 ++++++++++---------
 1 file changed, 22 insertions(+), 20 deletions(-)

diff --git a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
index d13974df7..71888e6ed 100644
--- a/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
+++ b/src/app/form/form-view/structure-form/structure-contact/structure-contact.component.html
@@ -4,27 +4,29 @@
     <h3>Comment joindre votre structure&nbsp;?</h3>
     <span class="label-optional">Veuillez renseigner au moins un des 2 champs</span>
   </div>
-  <div class="form-group" fxLayout="column">
-    <label for="structureName">Email de la structure</label>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input type="text" formControlName="contactMail" class="form-input" (input)="setValidationsForm()" />
-      <app-svg-icon *ngIf="isContactMailValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon *ngIf="isContactMailNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+  <div>
+    <div class="form-group" fxLayout="column">
+      <label for="structureName">Email de la structure</label>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input type="text" formControlName="contactMail" class="form-input" (input)="setValidationsForm()" />
+        <app-svg-icon *ngIf="isContactMailValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
+        <app-svg-icon *ngIf="isContactMailNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+      </div>
     </div>
-  </div>
-  <div class="form-group" fxLayout="column">
-    <div fxLayout="row" fxLayoutGap="8px">
-      <label for="contactPhone">Téléphone de la structure</label>
-    </div>
-    <div fxLayout="row" fxLayoutGap="13px">
-      <input
-        type="text"
-        formControlName="contactPhone"
-        class="form-input"
-        (input)="utils.modifyPhoneInput(structureForm, 'contactPhone', $event.target); setValidationsForm()"
-      />
-      <app-svg-icon *ngIf="isContactPhoneValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
-      <app-svg-icon *ngIf="isContactPhoneNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+    <div class="form-group" fxLayout="column">
+      <div fxLayout="row" fxLayoutGap="8px">
+        <label for="contactPhone">Téléphone de la structure</label>
+      </div>
+      <div fxLayout="row" fxLayoutGap="13px">
+        <input
+          type="text"
+          formControlName="contactPhone"
+          class="form-input"
+          (input)="utils.modifyPhoneInput(structureForm, 'contactPhone', $event.target); setValidationsForm()"
+        />
+        <app-svg-icon *ngIf="isContactPhoneValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'validate'" />
+        <app-svg-icon *ngIf="isContactPhoneNotValid()" [iconClass]="'icon-26'" [type]="'form'" [icon]="'notValidate'" />
+      </div>
     </div>
   </div>
 </form>
-- 
GitLab


From 3c35d27372fafeb38f251b39029dd228ff4a9849 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 15:33:31 +0100
Subject: [PATCH 74/77] update icon

---
 src/app/form/footer-form/footer-form.component.html  |  2 +-
 src/app/form/footer-form/footer-form.component.scss  | 12 ------------
 .../shared/components/v3/button/Button.stories.ts    |  4 ++--
 .../v3/button/icon-button/IconButton.stories.ts      |  4 ++--
 4 files changed, 5 insertions(+), 17 deletions(-)

diff --git a/src/app/form/footer-form/footer-form.component.html b/src/app/form/footer-form/footer-form.component.html
index 52fd61325..98def4124 100644
--- a/src/app/form/footer-form/footer-form.component.html
+++ b/src/app/form/footer-form/footer-form.component.html
@@ -12,7 +12,7 @@
     [variant]="buttonTypeEnumV3.Primary"
     [label]="'Suivant'"
     [iconPosition]="'right'"
-    [iconName]="'chevronRight'"
+    [iconName]="'arrowForwardV3'"
     [disabled]="!isValid"
     [style]="buttonTypeEnumV3.Primary"
     (action)="nextPage()"
diff --git a/src/app/form/footer-form/footer-form.component.scss b/src/app/form/footer-form/footer-form.component.scss
index 1bfeac54d..69c593dbe 100644
--- a/src/app/form/footer-form/footer-form.component.scss
+++ b/src/app/form/footer-form/footer-form.component.scss
@@ -32,18 +32,6 @@
   }
 }
 
-.chevronLeft {
-  height: 24px;
-  width: 24px;
-  stroke: $black;
-  margin-right: 10px;
-}
-.chevronRight {
-  height: 24px;
-  width: 24px;
-  margin-left: 10px;
-}
-
 .print {
   stroke: $white;
   width: 20px;
diff --git a/src/app/shared/components/v3/button/Button.stories.ts b/src/app/shared/components/v3/button/Button.stories.ts
index 1fdef4e07..38278a52a 100644
--- a/src/app/shared/components/v3/button/Button.stories.ts
+++ b/src/app/shared/components/v3/button/Button.stories.ts
@@ -50,8 +50,8 @@ export const PrimaryWithIcon: Story = {
     ...Primary.args,
     label: 'Suivant',
     iconPosition: 'right',
-    iconFolder: 'form',
-    iconName: 'chevronRight',
+    iconFolder: 'ico',
+    iconName: 'arrowForwardV3',
   },
 };
 
diff --git a/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts b/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts
index b77ac3f1d..ecd3dd0fb 100644
--- a/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts
+++ b/src/app/shared/components/v3/button/icon-button/IconButton.stories.ts
@@ -26,8 +26,8 @@ export const Primary: Story = {
   args: {
     variant: ButtonTypeV3.PrimaryBlack,
     disabled: false,
-    iconFolder: 'form',
-    iconName: 'chevronRight',
+    iconFolder: 'ico',
+    iconName: 'editV3',
   },
 };
 
-- 
GitLab


From 22612acd13ce4f798cc01e8188f850a24958877f Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 15:36:02 +0100
Subject: [PATCH 75/77] remove structureName

---
 .../orientation-structure-address.component.html                | 1 -
 .../orientation-structure-address.component.ts                  | 2 --
 2 files changed, 3 deletions(-)

diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
index d9fe658f0..b91748741 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.html
@@ -1,6 +1,5 @@
 <form *ngIf="form" class="orientationForm" [formGroup]="form">
   <div class="title">
-    <p class="overtitle">{{ structureName }}</p>
     <h3>Autour de quelle adresse cherchez-vous une structure&nbsp;?</h3>
     <p>Facultatif</p>
   </div>
diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
index 52c536fdc..793137867 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
@@ -9,8 +9,6 @@ import { Address } from '../../../../models/address.model';
 export class OrientationStructureAddressComponent implements OnInit {
   @Input() form: UntypedFormGroup;
   @Output() addressStructure = new EventEmitter<any>();
-  // this variable existed but never was defined
-  public structureName = '';
 
   ngOnInit(): void {
     this.setAddressStructure();
-- 
GitLab


From 4c19f6b864a0ea2c4755af8ec1c89b0e4f5c1826 Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 15:40:42 +0100
Subject: [PATCH 76/77] fix spacing

---
 .../orientation-comments.component.html       | 22 ++++++++++---------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
index aaca754f4..885c7b362 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-comments/orientation-comments.component.html
@@ -3,15 +3,17 @@
     <h3>Avez-vous des précisions à apporter&nbsp;?</h3>
     <p>Facultatif</p>
   </div>
-  <p>Ces informations accompagneront la fiche d'orientation de la personne</p>
-  <div class="textareaBlock" fxLayout="column">
-    <textarea
-      rows="8"
-      placeholder=""
-      maxlength="500"
-      formControlName="comments"
-      (input)="setComment($event.target)"
-    ></textarea>
-    <p class="count">{{ getStructureControl('comments').value?.length || 0 }}&nbsp;/&nbsp;500</p>
+  <div>
+    <p>Ces informations accompagneront la fiche d'orientation de la personne</p>
+    <div class="textareaBlock" fxLayout="column">
+      <textarea
+        rows="8"
+        placeholder=""
+        maxlength="500"
+        formControlName="comments"
+        (input)="setComment($event.target)"
+      ></textarea>
+      <p class="count">{{ getStructureControl('comments').value?.length || 0 }}&nbsp;/&nbsp;500</p>
+    </div>
   </div>
 </form>
-- 
GitLab


From 565d6e336e6e6f925de1a35611a0c6cbbccc3c9a Mon Sep 17 00:00:00 2001
From: Bastien Dumont <bdumont@grandlyon.com>
Date: Wed, 13 Dec 2023 16:24:51 +0100
Subject: [PATCH 77/77] remove goBack

---
 .../orientation-structure-address.component.ts                | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
index 793137867..1a4775b0c 100644
--- a/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
+++ b/src/app/form/orientation-form-view/orientation-structure-list/orientation-structure-address/orientation-structure-address.component.ts
@@ -18,8 +18,4 @@ export class OrientationStructureAddressComponent implements OnInit {
     this.form.get('address').patchValue(address);
     this.addressStructure.emit(address);
   }
-
-  public goBack(): void {
-    history.back();
-  }
 }
-- 
GitLab