diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 9a8fae235e292abe170d26855cfa53ff49932ab2..08a99c8b92286ff091bc801510e0a141346ee2e3 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -31,7 +31,6 @@ import { LoginComponent } from './login/login.component';
 import { MapModule } from './map/map.module';
 import { NewsletterSubscriptionComponent } from './newsletter-subscription/newsletter-subscription.component';
 import { PageComponent } from './page/page.component';
-import { ResetEmailComponent } from './reset-email/reset-email.component';
 import { ForgotPasswordComponent } from './reset-password/forgot-password.component';
 import { ResetPasswordComponent } from './reset-password/reset-password.component';
 import { PersonalOfferResolver } from './resolvers/personal-offer.resolver';
@@ -54,7 +53,6 @@ import { StructureJoinComponent } from './structure/structure-join/structure-joi
     LegalNoticeComponent,
     PageComponent,
     ContactComponent,
-    ResetEmailComponent,
     ForgotPasswordComponent,
     ResetPasswordComponent,
     StructureJoinComponent,
diff --git a/src/app/profile/edit/edit.component.html b/src/app/profile/edit/edit.component.html
index 40109df17207a027a83d0169c4569232418a7d44..c928f91e82b6cba1a94ead5a17d0447ebffc40ce 100644
--- a/src/app/profile/edit/edit.component.html
+++ b/src/app/profile/edit/edit.component.html
@@ -1,4 +1,4 @@
-<div *ngIf="userProfile" class="content-container full-screen">
+<div *ngIf="userProfile && !errorChangeEmail" class="content-container full-screen">
   <div class="edit-profile">
     <app-go-back (action)="showPendingChangesModal()" />
 
@@ -303,3 +303,5 @@
     </div>
   </app-modal>
 </div>
+
+<app-reset-email *ngIf="errorChangeEmail" [statusCode]="statusCode" />
diff --git a/src/app/profile/edit/edit.component.scss b/src/app/profile/edit/edit.component.scss
index aa7dd26920e347ae350499c4fa109ad9a83e86db..a54db44f4f3bea37c7cac8986dfa4e6fad0f2ae0 100644
--- a/src/app/profile/edit/edit.component.scss
+++ b/src/app/profile/edit/edit.component.scss
@@ -34,6 +34,7 @@
 
     .title {
       align-items: center;
+
       h1 {
         @include font-regular-24;
         margin: 0;
@@ -71,9 +72,11 @@
       flex: 1;
       border-bottom: 3px solid transparent;
       transition: all 0.3s ease-in-out;
+
       &:hover {
         border-color: $grey-4;
       }
+
       &.selected {
         font-weight: bold;
         border-color: $grey-1;
@@ -84,6 +87,7 @@
   .content {
     flex: 1;
     max-width: 600px;
+
     p.subTitle {
       @include font-regular-16;
       text-align: left;
@@ -108,6 +112,7 @@
         flex-direction: column;
         gap: 12px;
       }
+
       .buttons {
         display: flex;
         flex-direction: column;
@@ -128,9 +133,11 @@
         margin-top: 8px;
       }
     }
+
     .search-structure input {
       width: 600px;
     }
+
     .structureResults {
       position: absolute;
       width: 600px;
diff --git a/src/app/profile/edit/edit.component.ts b/src/app/profile/edit/edit.component.ts
index 0ab8834a267aaa5dea92b22ece7b5e55b429a5c5..cb6aabfa3ed7655de7ca1b6c61b40161dd79386f 100644
--- a/src/app/profile/edit/edit.component.ts
+++ b/src/app/profile/edit/edit.component.ts
@@ -59,6 +59,8 @@ export class EditComponent implements OnInit {
   public isNewUser = false;
   public isNewEmployer: boolean;
   public hasPersonalOffer = false;
+  public errorChangeEmail = false;
+  public statusCode = 200;
 
   // Modal canExit var
   public emailModal = false;
@@ -82,7 +84,6 @@ export class EditComponent implements OnInit {
     if (history.state.data === 'description') {
       this.currentTab = tabsEnum.description;
     }
-
     this.profileService.getProfile().then((profile) => {
       if (profile.hasOwnProperty('withAppointment')) this.selectedRdvChoice = profile.withAppointment;
       this.userProfile = new User(profile);
@@ -115,15 +116,19 @@ export class EditComponent implements OnInit {
   public phoneValid(): boolean {
     return Boolean(this.userProfile.phone.match(CustomRegExp.PHONE));
   }
+
   public nameValid(): boolean {
     return this.userProfile.name !== '';
   }
+
   public surnameValid(): boolean {
     return this.userProfile.surname !== '';
   }
+
   public descriptionValid(): boolean {
     return this.userProfile.description?.length <= 500;
   }
+
   public emailValid(email: string): boolean {
     return Boolean(RegExp(CustomRegExp.EMAIL).exec(email));
   }
@@ -145,6 +150,7 @@ export class EditComponent implements OnInit {
       password.match(CustomRegExp.MINLENGTH)
     );
   }
+
   public passwordValidConfirm(passwordConfirm: string, password: string): boolean {
     return this.passwordValid(passwordConfirm) && passwordConfirm === password;
   }
@@ -204,15 +210,19 @@ export class EditComponent implements OnInit {
   public showEmailModal(): void {
     this.emailModal = true;
   }
+
   public showPasswordModal(): void {
     this.passwordModal = true;
   }
+
   public showDeleteAccountModal(): void {
     this.deleteAccountModal = true;
   }
+
   public showPassword(key: showPasswordEnum): void {
     this.isShowPassword[key] = !this.isShowPassword[key];
   }
+
   public closeModal(): void {
     this.oldPassword = '';
     this.newPassword = '';
@@ -327,11 +337,18 @@ export class EditComponent implements OnInit {
 
   public confirmNewEmail(): void {
     if (this.emailValid(this.newEmail) && this.newEmail === this.newEmailConfirm) {
-      this.profileService.changeEmail(this.newEmail, this.userProfile.email).subscribe(() => {
-        this.closeModal();
-        this.notificationService.showSuccess('Veuillez confirmer votre nouvelle adresse grâce au mail envoyé');
-        this.newEmail = '';
-        this.newEmailConfirm = '';
+      this.profileService.changeEmail(this.newEmail, this.userProfile.email).subscribe({
+        next: () => {
+          this.closeModal();
+          this.notificationService.showSuccess('Veuillez confirmer votre nouvelle adresse grâce au mail envoyé');
+          this.newEmail = '';
+          this.newEmailConfirm = '';
+        },
+        error: (error: HttpErrorResponse) => {
+          this.statusCode = error.status;
+          this.closeModal();
+          this.errorChangeEmail = true;
+        },
       });
     }
   }
@@ -382,13 +399,16 @@ export class EditComponent implements OnInit {
     this.newJob = null;
     this.hasPersonalOffer = job.hasPersonalOffer;
   }
+
   public isSelectedJob(job: Job): boolean {
     if (this.selectedJob?.name === job.name) this.hasPersonalOffer = job.hasPersonalOffer;
     return this.selectedJob && this.selectedJob.name === job.name;
   }
+
   public isUnexistingJob(): boolean {
     return this.selectedJob && this.selectedJob.name === 'Autre';
   }
+
   public updateNewJob(value: string): void {
     this.newJob = new Job({ name: value, validated: false, hasPersonalOffer: true });
   }
diff --git a/src/app/profile/profile.module.ts b/src/app/profile/profile.module.ts
index c55bb5c483aa4b039fa4b53a7066782785f6b0db..c71a854637395a30a30b1926f3b8948f6301c547 100644
--- a/src/app/profile/profile.module.ts
+++ b/src/app/profile/profile.module.ts
@@ -14,6 +14,7 @@ import { NoInformationComponent } from './structure-edition-summary/no-informati
 import { StructureEditionSummaryComponent } from './structure-edition-summary/structure-edition-summary.component';
 import { StructureMembersManagementComponent } from './structure-members-management/structure-members-management.component';
 import { StructuresManagementComponent } from './structures-management/structures-management.component';
+import  {ResetEmailComponent} from '../reset-email/reset-email.component';
 
 @NgModule({
   declarations: [
@@ -29,6 +30,7 @@ import { StructuresManagementComponent } from './structures-management/structure
     PersonalOfferComponent,
     PersonalOfferEditionComponent,
     ProfileNewsletterComponent,
+    ResetEmailComponent,
   ],
   imports: [CommonModule, ProfileRoutingModule, SharedModule],
 })
diff --git a/src/app/reset-email/reset-email.component.html b/src/app/reset-email/reset-email.component.html
index 675bbf2729856185ab3ffe2d0116b2be0a8acd93..5c4d19c54cc58e3cafb7ab7354354c3af1a93ab8 100644
--- a/src/app/reset-email/reset-email.component.html
+++ b/src/app/reset-email/reset-email.component.html
@@ -1,11 +1,34 @@
 <div class="content-container full-screen">
   <div class="section-container">
-    <p *ngIf="changeSuccess">
-      Vous avez correctement changé votre email associé a votre compte. Vous pouvez désormais vous reconnecter avec
-      votre nouvel email
-    </p>
-    <p *ngIf="!changeSuccess">
-      Une erreur est survenue lors de la validation du changement de votre email... Veuillez envoyer un mail au support.
-    </p>
+    <div class="error-change-email">
+      <div class="image-and-text">
+        <img alt="Erreur" [src]="changeSuccess ? 'assets/img/resin-login.svg' : 'assets/img/Profil-Negatif.svg'" />
+        <p *ngIf="changeSuccess">
+          Vous avez correctement changé votre email associé a votre compte.
+          <br />
+          Vous pouvez désormais vous reconnecter avec votre nouvel email
+        </p>
+        <p *ngIf="!changeSuccess">
+          Une erreur est survenue lors de la validation du
+          <br />
+          changement de votre email.
+          <br />
+          Veuillez envoyer un mail au support
+        </p>
+        <p *ngIf="statusCode === 406 && !changeSuccess">
+          L'adresse email que vous avez renseignée est déjà utilisée par un autre utilisateur.
+        </p>
+      </div>
+      <div class="button-holder">
+        <app-button
+          [variant]="'primary'"
+          [label]="'Contacter le support'"
+          [wide]="true"
+          [iconPosition]="'right'"
+          [iconName]="'email'"
+          (action)="goToContact()"
+        />
+      </div>
+    </div>
   </div>
 </div>
diff --git a/src/app/reset-email/reset-email.component.scss b/src/app/reset-email/reset-email.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..c961d603f916183692c36330e45ad2b0035dab5e
--- /dev/null
+++ b/src/app/reset-email/reset-email.component.scss
@@ -0,0 +1,34 @@
+@import 'color';
+@import 'typography';
+
+.error-change-email {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  height: 100vh;
+  flex-direction: column;
+  margin-top: -10rem;
+
+  p {
+    text-align: center;
+    @include font-bold-24;
+    line-height: 120%;
+    margin-top: 40px;
+  }
+
+  img {
+    margin-left: 50%;
+    transform: translateX(-50%);
+  }
+
+  .button-holder {
+    border-top: 1px solid $grey-7;
+    position: fixed;
+    bottom: 3rem;
+    display: flex;
+    padding: 20px 0 32px 0;
+    justify-content: center;
+    align-items: center;
+    width: 80%;
+  }
+}
diff --git a/src/app/reset-email/reset-email.component.ts b/src/app/reset-email/reset-email.component.ts
index efd74e1545e235a6831e6abb82a2dedd1bb82296..bcb4d0a6d4186a917767be7a7ff9167e3c007098 100644
--- a/src/app/reset-email/reset-email.component.ts
+++ b/src/app/reset-email/reset-email.component.ts
@@ -1,18 +1,24 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, OnInit, Input } from '@angular/core';
 import { ActivatedRoute } from '@angular/router';
 import { ProfileService } from '../profile/services/profile.service';
 import { AuthService } from '../services/auth.service';
+import { Router } from '@angular/router';
+
 @Component({
   selector: 'app-reset-email',
   templateUrl: './reset-email.component.html',
+  styleUrls: ['./reset-email.component.scss'],
 })
 export class ResetEmailComponent implements OnInit {
+  @Input() statusCode: number;
   public token: string;
   public changeSuccess = false;
+
   constructor(
     private activatedRoute: ActivatedRoute,
     private profileService: ProfileService,
     private authService: AuthService,
+    private router: Router,
   ) {
     this.token = this.activatedRoute.snapshot.paramMap.get('id');
   }
@@ -23,11 +29,18 @@ export class ResetEmailComponent implements OnInit {
     }
   }
 
+  public goToContact(): void {
+    this.router.navigate(['/contact']);
+  }
+
   private changeEmail(): void {
     this.profileService.verifyAndUpdateEmail(this.token).subscribe(
       () => {
         this.changeSuccess = true;
-        this.authService.logout();
+
+        setTimeout(() => {
+          this.authService.logout();
+        }, 10000); // Wait for 10 seconds
       },
       () => {
         this.changeSuccess = false;
diff --git a/src/assets/img/Profil-Negatif.svg b/src/assets/img/Profil-Negatif.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6ed9f05f94f48890866883986c9c92cf5fcdfd3e
--- /dev/null
+++ b/src/assets/img/Profil-Negatif.svg
@@ -0,0 +1,79 @@
+<svg width="200" height="201" viewBox="0 0 200 201" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect width="200" height="200" transform="translate(0 0.5)" fill="white"/>
+<path d="M21 103H47.5L98 107H179.75C182.097 107 184 105.097 184 102.75C184 100.403 182.097 98.5 179.75 98.5H175.5C174.119 98.5 173 97.3807 173 96C173 94.6193 174.119 93.5 175.5 93.5H183.75C189.687 93.5 194.5 88.6871 194.5 82.75V79C194.5 74.8579 191.142 71.5 187 71.5C182.858 71.5 179.5 68.1421 179.5 64V61.5C179.5 58.4624 177.038 56 174 56C170.962 56 168.5 53.5376 168.5 50.5V46.75C168.5 41.6414 172.641 37.5 177.75 37.5H185.25C188.426 37.5 191 34.9256 191 31.75C191 28.5744 188.426 26 185.25 26H169.5C166.186 26 163.5 23.3137 163.5 20C163.5 16.6863 160.814 14 157.5 14H113.574C112.428 14 111.5 13.0715 111.5 11.9262C111.5 6.72027 107.28 2.5 102.074 2.5H59.9262C54.7203 2.5 50.5 6.72027 50.5 11.9262C50.5 13.0715 49.5715 14 48.4262 14H36C28.5442 14 22.5 20.0442 22.5 27.5V35.5C22.5 38.5376 20.0376 41 17 41C13.9624 41 11.5 43.4624 11.5 46.5V47.5C11.5 51.0899 14.4101 54 18 54H24C28.1421 54 31.5 57.3579 31.5 61.5C31.5 65.6421 28.1421 69 24 69H17.75C10.1561 69 4 75.1561 4 82.75V86C4 95.3888 11.6112 103 21 103Z" fill="#E3E3E3"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M132.201 52.306H155.194H176.418H191.746V52.2836C191.941 52.2984 192.137 52.306 192.336 52.306C196.569 52.306 200 48.8746 200 44.6418C200 40.5928 196.86 37.2772 192.883 36.9968C192.911 36.6011 192.925 36.2015 192.925 35.7985C192.925 26.6817 185.535 19.291 176.418 19.291C175.928 19.291 175.442 19.3124 174.963 19.3543C171.191 12.2997 163.753 7.5 155.194 7.5C142.821 7.5 132.791 17.5302 132.791 29.903L132.791 29.9182C132.596 29.9081 132.399 29.903 132.201 29.903C126.015 29.903 121 34.9181 121 41.1045C121 47.0931 125.7 51.9841 131.612 52.2907V52.306H132.201Z" fill="#676767"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M28 38.4825C27.8347 38.4941 27.668 38.5 27.5 38.5C23.3579 38.5 20 34.9183 20 30.5C20 26.0817 23.3579 22.5 27.5 22.5C29.2006 22.5 30.769 23.1037 32.0271 24.1212C32.4631 17.075 38.1046 11.5 45 11.5C46.7774 11.5 48.4714 11.8704 50.0145 12.5409C52.7381 9.44552 56.6804 7.5 61.0658 7.5C69.2847 7.5 75.9474 14.3335 75.9474 22.7632C75.9474 24.1076 75.7779 25.4114 75.4596 26.6534C77.542 27.5488 79.0002 29.6187 79.0002 32.0292C79.0002 35.2595 76.3815 37.8782 73.1512 37.8782C73.1006 37.8782 73.0502 37.8775 73 37.8763V38.5H45H28V38.4825Z" fill="#676767"/>
+<path d="M168.433 63.7912L171.273 55.1866C171.409 54.7768 171.791 54.5 172.223 54.5H181.734C182.561 54.5 183.03 55.4467 182.53 56.1051L180.303 59.0344C179.803 59.6928 180.273 60.6395 181.1 60.6395H186.62C187.506 60.6395 187.955 61.7065 187.334 62.3394L175.298 74.6242C174.521 75.4171 173.223 74.5428 173.666 73.5251L176.724 66.5039C177.012 65.8434 176.528 65.1047 175.807 65.1047H169.383C168.702 65.1047 168.22 64.4382 168.433 63.7912Z" fill="#FFA800"/>
+<path d="M41.6778 49.9743L39.8415 44.0627C39.7375 43.728 39.4279 43.5 39.0775 43.5H33.0559C32.405 43.5 32.0265 44.236 32.4053 44.7655L33.7058 46.5834C34.0846 47.1128 33.7061 47.8488 33.0552 47.8488H29.826C29.1288 47.8488 28.7652 48.6786 29.2379 49.1912L36.6517 57.2306C37.2564 57.8863 38.3183 57.2102 37.9801 56.3849L36.23 52.115C36.0143 51.5886 36.4014 51.0116 36.9702 51.0116H40.9138C41.4529 51.0116 41.8377 50.4892 41.6778 49.9743Z" fill="#FFA800"/>
+<rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 91.3662)" fill="#A0C7F0"/>
+<path d="M99.7216 74.5342L194.231 126.554L194.234 129.101L99.7216 183.668L5.20884 129.101L5.20904 126.553L99.7216 74.5342Z" fill="#4277AF"/>
+<rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.9873)" fill="url(#paint0_linear_16969_16820)"/>
+<circle cx="14.177" cy="14.177" r="14.177" transform="matrix(0.866025 -0.5 0.866025 0.5 69.8398 131.677)" fill="#A0C7F0"/>
+<path d="M85.2266 95.5L89.0903 96.5353L78.2199 137.104C77.934 138.171 76.8373 138.804 75.7704 138.518C74.7034 138.232 74.0703 137.136 74.3562 136.069L85.2266 95.5Z" fill="#D6AD92"/>
+<path d="M85.2266 95.5L89.0903 96.5353L83.6772 116.737C83.3913 117.804 82.2947 118.437 81.2277 118.151C80.1608 117.865 79.5276 116.769 79.8135 115.702L85.2266 95.5Z" fill="#AE907B"/>
+<path d="M85.2266 95.5L89.0903 96.5353L85.1412 111.274C84.8553 112.34 83.7586 112.974 82.6917 112.688C81.6247 112.402 80.9916 111.305 81.2774 110.238L85.2266 95.5Z" fill="#88674F"/>
+<path d="M91.2656 77.5L95.2635 77.6295L93.9042 119.607C93.8684 120.711 92.9445 121.577 91.8405 121.542C90.7365 121.506 89.8705 120.582 89.9063 119.478L91.2656 77.5Z" fill="#AE907B"/>
+<path d="M91.2656 77.5L95.2635 77.6295L94.1167 113.043C94.081 114.147 93.157 115.013 92.053 114.978C90.949 114.942 90.0831 114.018 90.1188 112.914L91.2656 77.5Z" fill="#88674F"/>
+<path d="M100.84 94.5352L104.704 93.4999L115.574 134.069C115.86 135.136 115.227 136.232 114.16 136.518C113.093 136.804 111.996 136.171 111.71 135.104L100.84 94.5352Z" fill="#D6AD92"/>
+<path d="M100.84 94.5352L104.704 93.4999L110.634 115.632C110.92 116.699 110.286 117.795 109.22 118.081C108.153 118.367 107.056 117.734 106.77 116.667L100.84 94.5352Z" fill="#AE907B"/>
+<path d="M100.84 94.5352L104.704 93.4999L109.089 109.867C109.375 110.934 108.742 112.031 107.675 112.317C106.608 112.603 105.511 111.969 105.225 110.902L100.84 94.5352Z" 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.6143)" fill="#AE907B"/>
+<circle cx="18.7543" cy="18.7543" r="18.7543" transform="matrix(0.866025 -0.5 0.866025 0.5 60.8398 93.2539)" fill="#D6AD92"/>
+<circle cx="12.4455" cy="12.4455" r="12.4455" transform="matrix(0.866025 -0.5 0.866025 0.5 71.767 93.2539)" 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.987)" fill="#DA3635"/>
+<path d="M120.211 134.096C120.479 130.746 128.116 129.638 131.095 132.517L140.554 141.658C141.877 142.937 141.526 144.572 139.701 145.625C137.417 146.944 133.684 146.886 131.527 145.498L124.26 140.825C121.464 139.027 120.005 136.666 120.198 134.252L120.211 134.096Z" fill="#A0C7F0"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M123.654 134.054L134.281 142.266C134.771 142.645 135.058 143.23 135.058 143.849V143.998C135.058 145.282 133.866 146.233 132.615 145.948L132.156 145.844C131.935 145.74 131.725 145.624 131.528 145.498L124.262 140.824C121.466 139.026 120.007 136.665 120.2 134.252L120.213 134.095C120.306 132.922 121.304 132.024 122.689 131.476C122.845 131.72 122.936 132.011 122.936 132.323V132.592C122.936 133.165 123.201 133.705 123.654 134.054Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M140.39 141.509L140.544 141.658C141.868 142.937 141.517 144.572 139.692 145.626C137.408 146.944 133.675 146.886 131.517 145.498L130.218 144.663C130.66 143.929 131.456 143.473 132.322 143.473H133.835H137.316C138.177 143.473 138.988 143.068 139.504 142.379L139.715 142.098C139.899 141.852 140.13 141.653 140.39 141.509Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M135.837 140.257C134.968 140.864 134.146 141.597 133.661 142.083C133.424 142.319 133.04 142.319 132.804 142.083C132.567 141.846 132.567 141.462 132.804 141.226C133.328 140.701 134.204 139.919 135.143 139.263C135.612 138.935 136.11 138.63 136.597 138.405C137.075 138.184 137.59 138.018 138.081 138.018C138.416 138.018 138.687 138.289 138.687 138.624C138.687 138.958 138.416 139.23 138.081 139.23C137.844 139.23 137.516 139.316 137.106 139.505C136.705 139.691 136.271 139.954 135.837 140.257Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M134.384 135.322C134.533 135.622 134.412 135.986 134.113 136.136C134.042 136.171 133.895 136.306 133.709 136.647C133.535 136.966 133.37 137.384 133.222 137.852C132.927 138.787 132.721 139.844 132.623 140.528C132.576 140.859 132.269 141.09 131.937 141.042C131.606 140.995 131.376 140.688 131.423 140.357C131.527 139.627 131.746 138.502 132.067 137.487C132.227 136.98 132.418 136.481 132.645 136.067C132.859 135.674 133.156 135.259 133.57 135.051C133.87 134.902 134.234 135.023 134.384 135.322Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M131.977 135.919C133.431 136.123 134.922 136.527 135.857 136.839C136.175 136.945 136.347 137.288 136.241 137.605C136.135 137.923 135.792 138.095 135.474 137.989C134.591 137.694 133.173 137.311 131.809 137.12C131.127 137.025 130.476 136.98 129.923 137.013C129.355 137.047 128.96 137.158 128.729 137.312C128.45 137.498 128.074 137.422 127.888 137.144C127.703 136.865 127.778 136.489 128.056 136.303C128.552 135.973 129.203 135.841 129.851 135.803C130.514 135.764 131.25 135.818 131.977 135.919Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M129.737 134.607C128.867 135.093 128.046 135.679 127.562 136.066C127.301 136.275 126.919 136.233 126.71 135.972C126.501 135.71 126.543 135.329 126.805 135.12C127.331 134.699 128.208 134.073 129.146 133.549C130.054 133.041 131.134 132.562 132.032 132.562C132.367 132.562 132.638 132.834 132.638 133.169C132.638 133.503 132.367 133.775 132.032 133.775C131.476 133.775 130.637 134.104 129.737 134.607Z" fill="#769FCB"/>
+<path d="M124.342 133.167C125.492 133.831 127.357 133.831 128.508 133.167C129.085 132.833 129.373 132.396 129.371 131.959L129.371 125.898L123.479 125.898L123.479 131.959C123.476 132.396 123.764 132.833 124.342 133.167Z" fill="#FFCCB7"/>
+<path d="M124.342 130.623C125.492 131.287 127.357 131.287 128.508 130.623C129.085 130.29 129.373 129.852 129.371 129.415L129.371 123.354L123.479 123.354L123.479 129.415C123.476 129.852 123.764 130.29 124.342 130.623Z" 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.834)" fill="#DA3635"/>
+<path d="M97.0977 142.942C97.3657 139.593 105.003 138.485 107.982 141.363L117.44 150.504C118.764 151.783 118.413 153.418 116.588 154.472C114.304 155.79 110.571 155.732 108.413 154.345L101.147 149.671C98.351 147.873 96.8921 145.513 97.0852 143.099L97.0977 142.942Z" fill="#A0C7F0"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M100.59 143.083L111.155 151.113C111.653 151.492 111.945 152.081 111.945 152.706V152.845C111.945 154.128 110.753 155.079 109.501 154.795L109.042 154.691C108.822 154.586 108.612 154.471 108.415 154.344L101.148 149.671C98.3525 147.873 96.8936 145.512 97.0867 143.098L97.0992 142.942C97.1931 141.769 98.1909 140.871 99.5759 140.322C99.7321 140.567 99.8226 140.858 99.8226 141.17V141.536C99.8226 142.143 100.107 142.716 100.59 143.083Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M117.276 150.355L117.431 150.505C118.755 151.784 118.403 153.419 116.578 154.472C114.295 155.791 110.562 155.733 108.404 154.345L107.105 153.509C107.546 152.775 108.343 152.32 109.209 152.32H110.722H114.203C115.064 152.32 115.875 151.915 116.391 151.226L116.602 150.945C116.786 150.699 117.017 150.5 117.276 150.355Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M112.724 149.104C111.854 149.711 111.033 150.444 110.547 150.929C110.311 151.166 109.927 151.166 109.69 150.929C109.454 150.693 109.454 150.309 109.69 150.072C110.215 149.548 111.091 148.766 112.03 148.11C112.499 147.782 112.997 147.477 113.484 147.252C113.962 147.031 114.477 146.864 114.968 146.864C115.302 146.864 115.574 147.136 115.574 147.47C115.574 147.805 115.302 148.076 114.968 148.076C114.731 148.076 114.402 148.163 113.993 148.352C113.592 148.537 113.158 148.8 112.724 149.104Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M111.27 144.169C111.42 144.469 111.299 144.833 110.999 144.982C110.929 145.017 110.781 145.153 110.595 145.494C110.421 145.813 110.257 146.23 110.109 146.699C109.814 147.634 109.608 148.691 109.51 149.375C109.463 149.706 109.156 149.936 108.824 149.889C108.493 149.842 108.263 149.535 108.31 149.203C108.414 148.473 108.632 147.348 108.953 146.333C109.113 145.827 109.305 145.328 109.531 144.913C109.746 144.52 110.042 144.106 110.457 143.898C110.757 143.748 111.121 143.87 111.27 144.169Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M108.863 144.766C110.318 144.969 111.809 145.374 112.744 145.685C113.062 145.791 113.233 146.134 113.128 146.452C113.022 146.77 112.678 146.941 112.361 146.835C111.478 146.541 110.06 146.157 108.696 145.967C108.013 145.871 107.363 145.827 106.81 145.86C106.242 145.893 105.847 146.004 105.615 146.159C105.337 146.344 104.961 146.269 104.775 145.99C104.589 145.712 104.665 145.336 104.943 145.15C105.439 144.819 106.09 144.688 106.738 144.65C107.4 144.61 108.137 144.664 108.863 144.766Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M106.624 143.454C105.753 143.94 104.933 144.526 104.449 144.913C104.187 145.122 103.806 145.08 103.597 144.818C103.388 144.557 103.43 144.176 103.692 143.966C104.218 143.545 105.094 142.919 106.032 142.395C106.941 141.888 108.021 141.409 108.919 141.409C109.254 141.409 109.525 141.681 109.525 142.015C109.525 142.35 109.254 142.621 108.919 142.621C108.362 142.621 107.524 142.951 106.624 143.454Z" fill="#769FCB"/>
+<path d="M101.228 142.014C102.379 142.678 104.244 142.678 105.394 142.014C105.972 141.68 106.259 141.243 106.257 140.806L106.257 134.744L100.365 134.744L100.365 140.806C100.363 141.243 100.651 141.68 101.228 142.014Z" fill="#FFCCB7"/>
+<path d="M101.228 139.47C102.379 140.134 104.244 140.134 105.394 139.47C105.972 139.136 106.259 138.699 106.257 138.262L106.257 132.2L100.365 132.2L100.365 138.262C100.363 138.699 100.651 139.136 101.228 139.47Z" fill="#EF937F"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M115.386 66.5C115.15 68.6745 113.593 70.8102 110.715 72.472C104.446 76.0916 94.2809 76.0916 88.0115 72.472C85.6053 71.0828 84.1226 69.3623 83.5634 67.5649C83.4454 68.0414 83.391 68.5222 83.4 69.0027L83.3792 69.0001L82.3384 86.5757C82.0155 92.0292 84.9155 97.384 90.5619 101.76L99.9316 109.022C101.162 109.975 101.757 111.153 101.607 112.339L98.7225 135.142C98.679 135.803 99.0942 136.472 99.9681 136.976C101.633 137.938 104.333 137.938 105.998 136.976C106.66 136.594 106.802 136.23 107.008 135.702C107.073 135.534 107.146 135.349 107.243 135.142L118.207 107.397C119.586 103.907 118.838 100.248 116.087 97.0383L112.081 92.3636L124.126 99.8197C125.847 100.885 126.668 102.335 126.369 103.782L121.589 126.912C121.545 127.573 121.96 128.242 122.834 128.747C124.499 129.708 127.199 129.708 128.864 128.747C129.738 128.242 130.153 127.573 130.109 126.912L140.109 101.246C141.69 97.1882 140.518 92.9345 136.833 89.3601L115.921 69.0715C115.948 68.2072 115.77 67.3412 115.386 66.5Z" fill="#4C4D53"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M131.266 124.013C127.042 129.388 124.18 125.843 126.919 106.007C127.435 102.269 126.133 98.4764 123.319 95.9637L114.545 88.1292C114.149 87.776 113.556 87.8072 113.13 88.1228C112.36 88.6922 111.594 88.8919 110.35 88.962C109.447 89.0128 109.005 90.1041 109.661 90.7258L115.058 95.8379L119.003 98.6776C120.194 99.5348 120.857 100.597 120.887 101.695L121.161 111.522L121.34 112V117.964L121.588 126.912C121.545 127.573 121.96 128.243 122.834 128.747C124.499 129.708 127.198 129.708 128.863 128.747C129.737 128.243 130.153 127.573 130.109 126.912L131.266 124.013ZM107.795 131.38C104.6 131.486 102.43 123.763 104.387 107.584C104.877 103.529 103.303 99.4536 100.049 96.9834L82.4942 83.6543L82.3234 86.4837C82.0092 91.6871 84.6293 96.8087 89.7896 101.079L98.3496 108.161C99.4006 109.031 99.9401 110.073 99.8886 111.133L98.7223 135.142C98.6788 135.803 99.094 136.472 99.9679 136.977C101.633 137.938 104.332 137.938 105.997 136.977C106.871 136.472 107.287 135.803 107.243 135.142L107.795 131.38Z" fill="#333333"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M95.4665 27.8311C85.137 30.0765 79.2296 38.8336 79.0057 47.8313H78.8398V65.0642C78.8398 69.0205 80.4809 72.5934 83.1194 75.1396L80.9907 78.4139L96.0867 88.2016C98.9098 90.032 102.638 88.0057 102.638 84.6412C104.959 82.8424 104.812 79.2914 102.35 77.6909L102.036 77.4865L113.341 70.9437C114.208 70.4416 114.889 69.7013 115.318 68.8325L119.04 71.2521C121.279 72.7078 124.274 72.0727 125.73 69.8336C126.862 68.092 126.369 65.7623 124.627 64.63L121.309 62.4729V43.6933L121.39 42.153C121.856 33.2554 114.509 25.9149 105.612 26.3889L100.961 26.6367L95.4665 27.8311Z" fill="#FF9C9B"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M104.438 75.8225L102.116 74.3127C99.5937 72.6729 97.9437 69.9847 97.6234 66.9934L95.5682 47.7997C95.5682 47.7992 95.5678 47.7989 95.5674 47.7988C95.5669 47.7988 95.5664 47.7992 95.5664 47.7997V67.8556C95.5664 71.2401 97.2783 74.3949 100.116 76.2396L102.347 77.69C104.633 79.1765 104.923 82.3456 103.093 84.2307C103.084 84.2402 103.075 84.25 103.066 84.2598C104.93 82.3788 104.649 79.1825 102.35 77.6877L101.951 77.4282L104.438 75.8225ZM102.602 85.2063C102.596 85.2358 102.591 85.2653 102.587 85.2947C102.582 85.3244 102.578 85.3543 102.575 85.3843C102.585 85.3255 102.594 85.2662 102.602 85.2063Z" fill="#DA3635"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M105.232 17.1523L95.8566 19.4655L96.2634 27.2943L96.0559 28.3022L94.9165 33.9102C94.4327 36.2913 95.6796 38.6129 97.7792 39.5899L97.9823 40.7209C98.5337 43.7923 101.471 45.8352 104.542 45.2837C107.613 44.7323 109.656 41.7954 109.105 38.724L106.765 25.6884L106.962 24.5477L106.538 24.4248L105.232 17.1523Z" fill="#DA3635"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M111.657 5.84766L94.5839 8.91289L96.5731 19.9926L92.5352 20.1627L95.9965 25.9072L95.4724 28.9331C94.9812 31.7695 96.8823 34.4671 99.7187 34.9583C101.101 35.1977 102.45 34.869 103.527 34.1407C104.911 34.6391 106.44 34.7918 107.992 34.5132C112.707 33.6668 115.842 29.1586 114.996 24.4439L111.657 5.84766Z" fill="#FFD2C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M112.234 32.4478C111.16 33.2029 109.908 33.7416 108.531 33.9888C103.477 34.8963 98.6435 31.5344 97.736 26.4798L96.7254 20.8506C96.637 20.3584 96.1987 20.0072 95.6991 20.0282L94.3787 20.0839C93.887 20.1046 93.4835 20.4799 93.4273 20.9688L93.4011 21.1972C93.3758 21.4166 93.424 21.6382 93.538 21.8275L95.2216 24.6217C95.2824 24.7225 95.3605 24.8117 95.4524 24.8852L96.0177 25.3373C96.1824 25.4689 96.425 25.4273 96.5364 25.2483C96.7066 24.9747 97.1246 25.0548 97.1815 25.372L97.9228 29.5009C98.3084 31.6487 99.4539 33.4688 101.033 34.7341C101.236 34.8972 101.502 34.9645 101.756 34.9069C102.226 34.8006 102.675 34.63 103.092 34.4034C103.373 34.251 103.703 34.2072 104.009 34.2976C105.262 34.6674 106.618 34.7587 107.991 34.5121C109.63 34.218 111.077 33.4815 112.234 32.4478Z" fill="#EF937F"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M115.014 20.9058H113.153C110.869 20.9058 108.878 19.3513 108.325 17.1355L108.156 16.4608C107.627 14.3454 105.572 12.9823 103.418 13.3175L102.632 13.4397C100.605 13.7551 99.2853 15.7437 99.783 17.7348C100.022 18.6887 99.8465 19.699 99.3011 20.5172L97.1916 23.6814C96.9634 24.0237 96.5447 24.1855 96.1456 24.0858L94.5041 23.6754C92.4758 21.4266 91.2383 18.4309 91.2383 15.1419C91.2383 8.15997 96.815 2.5 103.694 2.5C109.467 2.5 114.323 6.48577 115.735 11.8938C117.3 12.6715 118.382 14.3333 118.382 16.2577C118.382 18.4656 116.958 20.3278 115.014 20.9058Z" fill="#333333"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M122.17 72.007L123.521 68.0581L121.509 67.9362C119.68 67.8254 118.2 66.4069 118.012 64.5841C117.993 64.4006 118.069 64.2203 118.215 64.107L118.549 63.8468C119.004 63.4929 118.891 62.777 118.35 62.5801C118.06 62.4748 117.867 62.1996 117.867 61.8915V41.9184C117.867 40.3098 116.563 39.0059 114.955 39.0059C114.832 39.0059 114.736 39.1112 114.748 39.2331L115.621 48.6399C115.765 50.1915 115.544 51.7553 114.977 53.2065L114.864 53.4948C114.773 53.7269 114.727 53.974 114.727 54.2233V58.1542C114.727 58.3827 114.766 58.6095 114.842 58.8248L115.373 60.3174C116.002 62.0835 116.063 64.0018 115.549 65.8045L115.094 67.399C114.964 67.8527 115.002 68.3258 115.181 68.741L119.041 71.2505C120.005 71.8771 121.109 72.1163 122.17 72.007Z" fill="#DA3635"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M102.352 86.2502L102.344 86.118L88.6759 76.8239C87.8045 76.2313 87.9439 74.907 88.9195 74.5088C90.1944 73.9885 89.9219 72.1088 88.5518 71.9718L85.7012 71.6867C84.6538 71.582 83.8668 70.6832 83.9013 69.6311L84.799 42.2512C84.8249 41.4597 84.4942 40.6983 83.8979 40.1771C82.2844 38.7669 79.7516 39.7654 79.5346 41.8974L78.8672 48.4551V74.0634C78.8672 75.8118 79.7646 77.3506 81.124 78.2443L81.0142 78.4131L96.1102 88.2008C98.4459 89.7152 101.402 88.5896 102.352 86.2502Z" fill="#DA3635"/>
+<ellipse cx="96.4787" cy="21.9498" rx="1.92787" ry="3.08459" fill="#FFD2C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M98.027 22.2513C98.0457 22.111 98.0556 21.9653 98.0556 21.8159C98.0556 20.6884 97.4931 19.7744 96.7993 19.7744C96.1054 19.7744 95.543 20.6884 95.543 21.8159C95.543 22.5656 95.7917 23.221 96.1623 23.5759C95.971 23.2728 95.8552 22.8772 95.8552 22.4443C95.8552 21.4903 96.4177 20.7169 97.1115 20.7169C97.3609 20.7169 97.3982 21.0724 97.4377 21.4491C97.464 21.6997 97.4913 21.9596 97.5827 22.1302C97.6541 22.2637 97.8295 22.2578 97.9964 22.2523C98.0066 22.2519 98.0168 22.2516 98.027 22.2513Z" fill="#EF937F"/>
+<ellipse cx="105.301" cy="23.9348" rx="0.765209" ry="1.33954" transform="rotate(2.6285 105.301 23.9348)" fill="#333333"/>
+<ellipse cx="112.703" cy="22.7175" rx="0.765209" ry="1.33912" transform="rotate(2.6285 112.703 22.7175)" fill="#333333"/>
+<path d="M103.805 23.4919C104.57 23.0041 105.553 22.4846 106.889 22.8358" stroke="#333333" stroke-linecap="round"/>
+<path d="M112.285 21.1777C112.574 21.1777 113.106 21.1777 113.827 21.1777" stroke="#333333" stroke-linecap="round"/>
+<ellipse cx="110.34" cy="27.5" rx="1.5" ry="1" fill="#EF937F"/>
+<path d="M108.43 30.0752C108.858 30.4202 109.921 30.8204 110.743 29.6611" stroke="#333333" stroke-linecap="round"/>
+<path d="M110.812 88.3708C109.744 87.7151 109.15 86.8491 109.15 85.9492L109.15 85.0872L129.953 73.7446C132.272 72.4798 135.885 72.4552 138.256 73.6881L150.851 80.2383L150.851 81.3977C150.851 82.313 150.236 83.1926 149.136 83.8515L128.685 96.0989C127.227 96.9719 124.801 96.9631 123.363 96.0796L110.812 88.3708Z" fill="#989898"/>
+<rect width="30.8472" height="21.5482" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 107.345 85.0137)" fill="#C5C5C5"/>
+<rect width="25.3527" height="19.5019" rx="3" transform="matrix(0.866025 -0.5 0.866025 0.5 112.185 83.2432)" 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.6484)" fill="#818181"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M114.784 81.742C113.349 82.5704 113.349 83.9136 114.784 84.742L115.455 85.1293L135.621 89.2136L141.033 86.0891L117.971 79.9018L114.784 81.742ZM122.658 77.1959L144.185 84.2691L146.341 83.0244L126.448 75.0078L122.658 77.1959ZM128.752 73.6773L148.139 81.9861L148.433 81.8166C148.65 81.691 148.835 81.5536 148.987 81.408L130.967 72.3984L128.752 73.6773Z" fill="#656565"/>
+<path d="M122.381 68.1153C120.929 70.0596 120.723 72.36 121.919 73.2533L123.623 74.9953L128.549 69.6283L127.176 66.2122C125.979 65.3189 123.833 66.1709 122.381 68.1153Z" fill="#A0C7F1"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M122.405 73.0502L122.331 72.3355C122.223 71.2932 122.57 70.255 123.283 69.4872C124.094 68.6137 125.282 68.1932 126.462 68.3618L127.092 68.4517C127.974 68.5777 128.756 69.0854 129.23 69.8397L130.432 71.7522C131.623 73.6474 131.089 76.1465 129.226 77.3882L129.06 77.4756L129.801 80.4401C129.899 80.8319 130.251 81.1067 130.655 81.1067C130.789 81.1067 130.897 81.2153 130.897 81.3492V81.8347C130.897 82.1514 130.641 82.408 130.324 82.408C129.536 82.408 128.816 81.9628 128.463 81.258L127.09 78.5122L126.833 78.6477C126.16 79.002 125.333 78.8638 124.811 78.3098C123.454 76.8679 122.609 75.0199 122.405 73.0502Z" fill="#FFD2C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M122.331 72.3362L122.405 73.0509C122.609 75.0206 123.455 76.8686 124.812 78.3106C125.333 78.8645 126.16 79.0027 126.833 78.6484L127.091 78.5129L127.755 79.8415L127.764 79.8356L126.212 76.7327C125.891 76.0904 125.408 75.543 124.81 75.1447C123.908 74.5434 123.367 73.531 123.367 72.447V69.4014C123.339 69.4297 123.311 69.4585 123.284 69.4879C122.571 70.2557 122.224 71.2939 122.331 72.3362ZM130.017 76.7034L127.922 73.8684L129.115 77.4476L129.226 77.3889C129.524 77.1901 129.789 76.9591 130.017 76.7034Z" fill="#EF937F"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M104.046 90.6727L102.077 88.5437L103.936 82.9664L106.167 81.665L108.584 82.7805C109.947 83.0284 112.86 83.7472 113.603 84.6396C114.193 85.3472 115.83 85.3815 117.043 85.4069C117.743 85.4215 118.301 85.4332 118.437 85.5692C118.809 85.941 118.437 86.8705 117.136 87.0564C116.529 87.143 115.802 86.9876 115.085 86.8344C114.264 86.6587 113.456 86.486 112.86 86.6846C111.744 87.0564 111.93 88.3578 112.86 88.9155C113.789 89.4733 116.764 91.3324 117.322 91.8901C117.879 92.4478 117.693 93.1915 117.322 93.5633C117.056 93.8288 115.559 93.3361 113.506 92.0852C111.358 93.223 108.734 93.2581 106.512 92.0615L104.123 90.7751C104.097 90.7409 104.072 90.7068 104.047 90.6727L104.046 90.6727Z" fill="#FFD2C4"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M102.078 88.544L104.047 90.673L104.047 90.673C104.072 90.7071 104.098 90.7413 104.124 90.7754L106.513 92.0619C108.73 93.2559 111.348 93.2234 113.493 92.0927L112.308 91.5003L109.923 91.1333C107.312 90.7318 105.01 89.204 103.626 86.9549L102.965 85.8809L102.078 88.544ZM114.264 92.5277L114.308 92.5003L113.64 92.166C113.854 92.2951 114.063 92.4156 114.264 92.5277Z" fill="#EF937F"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M102.485 89.9165C100.926 89.3985 100.345 86.9248 101.187 84.3915C102.028 81.8581 103.975 80.2243 105.534 80.7423L108.028 82.4071L108.01 82.4567C107.89 82.3815 107.762 82.3205 107.625 82.2752C106.137 81.7808 104.277 83.3472 103.471 85.774C102.763 87.9052 103.103 89.9912 104.204 90.8026L102.485 89.9165ZM104.717 91.0674L104.868 91.1449L104.88 91.1117C104.825 91.0995 104.771 91.0848 104.717 91.0674Z" fill="#A0C7F1"/>
+<path d="M109.973 22.7207V22.7207C110.105 23.6905 110.586 24.579 111.325 25.2207L111.869 25.6934C112.489 26.2319 112.474 27.1994 111.837 27.7177L111.344 28.1187" stroke="#333333" stroke-linecap="round"/>
+<defs>
+<linearGradient id="paint0_linear_16969_16820" 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>