@charset "UTF-8";
@import url("/css_config.css");

/*====================
  ブロック用CSS
====================*/
/* コンテンツ内の余白 */
.page-contents,
.inner-block,
.inner-block-large,
.frame-white,
.frame-yellow,
.mt-be-column,
body {
  > *:not(.header, .frame-white, .frame-yellow, .breadcrumbs, .main, .footer, hr, .link-btn, .inner-block, .inner-block-large, .flow-item, .text-link-block, .sustainable-title, .lum-lightbox, .pagenation_navi) {
    margin-top: 30px;

    &:first-child {
      margin-top: 0 !important;
    }
  }
  > p:not(.frame-white, .frame-yellow, .breadcrumbs, .accent_text_slash, .mt-be-image, .headline-title, .text-link-block) {
    margin-top: 20px;

    &:first-child {
      margin-top: 0 !important;
    }
  }

  .link-btn {
    margin-top: 30px;
  }

  .link-btn_archive {
    margin-top: 60px;
    max-width: 450px;
    min-width: auto;
  }

  .accent_text_slash + .link-btn {
    margin-top: 20px;
  }

  > * {
    margin-bottom: 0;

    &:first-child {
      margin-top: 0 !important;
    }

    &.archive-read {
      margin-bottom: 40px;
    }
    
  }
  > .mt-be-image {
    margin-top: 30px;
  }
  > .mt-be-columns {
    margin-top: 30px;
    &:first-child {
      margin-top: 0;
    }
  }
  .title-block--blue,
  .title-block--green {
    margin-top: 80px;

    @media screen and (max-width: 800px) {
      margin-top: 60px;
    }

    + *:not(.frame-white, .frame-yellow) {
      margin-top: 40px;
    }
  }

  .ecogoods-inner {
    .title-block--blue,
    .title-block--green {
      &:first-of-type {
        margin-top: 0;
      }
    }
  }

  .title-sub--blue,
  .title-sub--green {
    margin-top: 40px;
  }

  .title-item--blue,
  .title-item--green {
    + p:not(.frame-white, .frame-yellow) {
      margin-top: 10px;
    }
  }

  > * + .page-overview {
    margin-top: 80px;

    @media screen and (max-width: 800px) {
      margin-top: 60px;
    }
  }

  .inner-block,
  .inner-block-large {
    margin-top: 40px;
    + *:not(.title-block--blue, .title-block--green, .space-block, .sustainable-title) {
      margin-top: 40px;
    }
  }

  .headline-title {
    + .inner-block,
    + .inner-block-large {
      margin-top: 20px;
    }

    + .frame-white,
    + .frame-yellow {
      margin-top: 0;
      border-radius: 0 0 20px 20px;
    }

    + .text-link-block {
      margin-top: 10px;
    }
  }

  .frame-white,
  .frame-yellow {
    + .inner-block,
    + .inner-block-large {
      margin-top: 80px;

      @media screen and (max-width: 800px) {
        margin-top: 60px;
      }
    }
  }

  /* 罫線 */
  hr {
    display: block;
    margin-block: 60px;
    border: none;
    border-top: 1px dashed #a3a3a3;

    @media screen and (max-width: 600px) {
      margin-block: 40px;
    }
  }
}

.single-body {
  .title-sub--blue,
  .title-sub--green {
    margin-top: 60px;
  }
}

/* 余白ブロック */
.page-contents,
.inner-block,
.inner-block-large,
.frame-white,
.frame-yellow,
.mt-be-column,
body {
  .space-block {
    margin-top: 0;
  }
  .mt-10 {
    height: 10px;
  }
  .mt-20 {
    height: 20px;
  }
  .mt-30 {
    height: 30px;
  }
  .mt-40 {
    height: 40px;
  }
  .mt-50 {
    height: 50px;
  }
  .mt-60 {
    height: 60px;
  }
  .mt-70 {
    height: 70px;
  }
  .mt-80 {
    height: 80px;

    @media screen and (max-width: 600px) {
      height: 40px;
    }
  }
  .mt-90 {
    height: 90px;

    @media screen and (max-width: 600px) {
      height: 45px;
    }
  }
  .mt-100 {
    height: 100px;

    @media screen and (max-width: 600px) {
      height: 50px;
    }
  }
  .mt-110 {
    height: 110px;

    @media screen and (max-width: 600px) {
      height: 55px;
    }
  }
  .mt-120 {
    height: 120px;

    @media screen and (max-width: 600px) {
      height: 60px;
    }
  }
}

/* 段落設定 */
p {
  line-height: 1.6;
  font-weight: 500;
}

.page-contents,
.inner-block,
.inner-block-large,
.frame-white,
.frame-yellow,
.mt-be-column,
body {
  > ul,
  ol {
    margin-left: 1.5em;
    line-height: 1.6;
    font-weight: 500;
  }

  > ul {
    > li {
      list-style-type: disc;
    }
  }

  /* 装飾付き強調テキスト */
  .accent_text_slash {
    color: var(--color-green-dark);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    padding-inline: 15px;
    position: relative;
    width: fit-content;
    text-align: center;
    margin-top: 30px;

    @media screen and (max-width: 800px) {
      font-size: 20px;
    }

    @media screen and (max-width: 600px) {
      &.position-center {
        max-width: 400px;
        text-align: center;
      }
    }

    &:first-child {
      margin-top: 0;
    }

    &::before,
    &::after {
      content: "";
      background-color: var(--color-green-dark);
      width: 2px;
      height: 25px;
      position: absolute;
      bottom: 4px;
    }
    &::before {
      left: 0;
      rotate: -15deg;
    }
    &::after {
      right: 0;
      rotate: 15deg;
    }
  }

  .position-left {
    margin-right: auto;
  }

  .position-center {
    margin-inline: auto;
  }

  .position-right {
    margin-left: auto;
  }

  /* 強調テキスト */
  .accent_text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;

    &.small {
      font-size: 22px;

      @media screen and (max-width: 800px) {
        font-size: 18px;
      }
    }
    &.medium {
      font-size: 26px;

      @media screen and (max-width: 800px) {
        font-size: 20px;
      }
    }
    &.large {
      font-size: 30px;

      @media screen and (max-width: 800px) {
        font-size: 24px;
      }
    }
  }
  .position-center {
    text-align: center;

    @media screen and (max-width: 600px) {
      text-align: left;
    }
  }
  .position-right {
    text-align: right;

    @media screen and (max-width: 600px) {
      text-align: left;
    }
  }
  .text-bold {
    font-weight: 700;
  }
  .text-green {
    color: var(--color-green-dark);
  }
  .text-blue {
    color: var(--color-blue-dark);
  }
}

b, strong {
  font-weight: 700;
}

/* リンクテキスト */
a {
  color: var(--color-blue);
  &:not(:has(img)) {
    &[target="_blank"] {
      &::after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2222%22%20height%3D%2224%22%20viewBox%3D%220%200%2022%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.5%2020.5377V3.46229C0.5%202.66459%200.790525%201.90733%201.29631%201.35505C1.80106%200.803923%202.47942%200.5%203.18085%200.5H8.76596C9.01272%200.5%209.21277%200.734033%209.21277%201.02273C9.21277%201.31142%209.01272%201.54545%208.76596%201.54545H3.18085C2.69728%201.54545%202.23906%201.75542%201.90588%202.11923C1.57375%202.4819%201.39362%202.96606%201.39362%203.46229V20.5377C1.39362%2021.0339%201.57375%2021.5181%201.90588%2021.8808C2.23906%2022.2446%202.69728%2022.4545%203.18085%2022.4545H18.8191C19.3027%2022.4545%2019.7609%2022.2446%2020.0941%2021.8808C20.4263%2021.5181%2020.6064%2021.0339%2020.6064%2020.5377V14.4396C20.6064%2014.1509%2020.8064%2013.9168%2021.0532%2013.9168C21.3%2013.9168%2021.5%2014.1509%2021.5%2014.4396V20.5377C21.5%2021.3354%2021.2095%2022.0927%2020.7037%2022.645C20.1989%2023.1961%2019.5206%2023.5%2018.8191%2023.5H3.18085C2.47942%2023.5%201.80106%2023.1961%201.29631%2022.645C0.790525%2022.0927%200.5%2021.3354%200.5%2020.5377ZM21.5%207.12138C21.4999%207.41%2021.2999%207.64411%2021.0532%207.64411C20.8065%207.64411%2020.6065%207.41%2020.6064%207.12138V2.22592L12.9805%2010.5528C12.8001%2010.7498%2012.5171%2010.7383%2012.3487%2010.5273C12.1804%2010.3162%2012.1901%209.98508%2012.3705%209.78811L19.9192%201.54545H15.4681C15.2213%201.54545%2015.0213%201.31142%2015.0213%201.02273C15.0213%200.734033%2015.2213%200.5%2015.4681%200.5H21.0532C21.3%200.5%2021.5%200.734033%2021.5%201.02273V7.12138Z%22%20fill%3D%22%233993AE%22%20stroke%3D%22%233993AE%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 13px;
        height: 15px;
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
      }
    }
  }
}

.sns-navi {
  a[target="_blank"]::after {
    display: none;
  }
}

/* 画像ブロック */
.mt-be-image {
  figcaption {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
  }
}

.mt-figure-center {
  max-width: fit-content;
  margin-inline: auto;
}

/* マルチカラム */
.mt-be-columns {
  display: grid !important;
  align-items: center;
  gap: 30px 40px;

  &:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
  &:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
  &:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* マルチカラム/横並びブロック */
.mt-be-columns,
.column-block {
  display: flex !important;
  align-items: center;
  gap: 30px 40px;

  @media screen and (max-width: 800px) {
    flex-direction: column;

      &:has(.sustainable-title) {
        row-gap: 60px;
      }
  }

  &:has(.description-card) {
    display: flex !important;
    column-gap: 20px;
    align-items: stretch !important;
  }

  &:has(> :nth-child(2):last-child) {
    .mt-be-column {
      width: calc((100% - 30px) / 2);

      @media screen and (max-width: 800px) {
        width: 100%;
      }
    }
  }
  &:has(> :nth-child(3):last-child) {
    .mt-be-column {
      width: calc((100% - (30px * 2)) / 3);

      @media screen and (max-width: 800px) {
        width: 100%;
      }
    }
  }
  &:has(> :nth-child(4):last-child) {
    .mt-be-column {
      width: calc((100% - (30px * 3)) / 4);

      @media screen and (max-width: 800px) {
        width: 100%;
      }
    }
  }

  &.align_top {
    align-items: flex-start;
  }

  &.align_center {
    align-items: center;
  }

  &.align_bottom {
    align-items: flex-end;
  }

  &.justify_left {
    justify-content: flex-start;
  }

  &.justify_center {
    justify-content: center;
  }

  &.justify_right {
    justify-content: flex-end;
  }

  .mt-be-column {
    &:has(.description-card) {
      width: calc((100% - 40px) / 3);

      @media screen and (max-width: 800px) {
        width: 100%;
      }
    }

    &:empty {
      display: contents;
    }
  }

  .description-card {
    max-width: 100%;
  }

  &:has(.text-link-block) {
    align-items: stretch !important;
    + .column-block {
      margin-top: 0 !important;
    }
  }

  .text-link-block {
    height: 100%;

    .text-link {
      height: 100%;
      display: flex;
      align-items: center;
    }
  }

  &.w-90 {
    max-width: 90%;
    margin-inline: auto;

    @media screen and (max-width: 800px) {
      max-width: 100%;
    }
  }
  &.w-80 {
    max-width: 80%;
    margin-inline: auto;

    @media screen and (max-width: 800px) {
      max-width: 100%;
    }
  }
  &.w-70 {
    max-width: 70%;
    margin-inline: auto;

    @media screen and (max-width: 800px) {
      max-width: 100%;
    }
  }

  &:not(.frame-white, .frame-yellow, .breadcrumbs, .main, .footer, hr, .link-btn, .inner-block, .inner-block-large, .flow-item, .text-link-block, .sustainable-title) {
    + .column-block:has(.sustainable-title) {
      margin-top: 60px;
    }

    &:has(.text-link-block) {
      margin-top: 10px;

      @media screen and (max-width: 800px) {
        row-gap: 0;
      }
    }
  }
}

/* ページ概要用ブロック（2カラム） */
.page-overview {
  display: flex;
  gap: 30px 50px;
  align-items: center;

  @media screen and (max-width: 800px) {
    flex-direction: column;
  }

  &.reverse {
    flex-direction: row-reverse;

    @media screen and (max-width: 800px) {
      flex-direction: column;
    }
  }

  .page-overview_content {
    flex: 1;

    @media screen and (max-width: 800px) {
      order: 2;
    }
    .catchcopy {
      color: var(--color-green);
      font-size: 28px;
      line-height: 1.8;
      letter-spacing: 0.02em;
      font-weight: 700;
      margin-bottom: 0;

      @media screen and (max-width: 800px) {
        font-size: 24px;
      }

      + .text {
        margin-top: 30px;

        @media screen and (max-width: 800px) {
          margin-top: 20px;
        }
      }
    }

    .lead-text {
      font-size: 20px;
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 20px;

      @media screen and (max-width: 800px) {
        margin-top: 20px;
      }

      @media screen and (max-width: 600px) {
        font-size: 18px;
      }
    }

    .text {
      line-height: 1.8;
    }
  }
  .page-overview_image {
    width: 45%;

    @media screen and (max-width: 800px) {
      width: 100%;
      order: 1;
      max-width: 400px;
    }
  }
}

/* 左右余白付きインナーブロック */
.inner-block {
  padding-inline: 34px;

  @media screen and (max-width: 800px) {
    padding-inline: 20px;
  }

  @media screen and (max-width: 600px) {
    padding-inline: 10px;
  }
}
.inner-block-large {
  padding-inline: 70px;

  @media screen and (max-width: 800px) {
    padding-inline: 30px;
  }

  @media screen and (max-width: 600px) {
    padding-inline: 10px;
  }
}

/* 白背景フレーム */
.frame-white {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 40px 60px;
  margin-top: 80px;

  @media screen and (max-width: 800px) {
    margin-top: 60px;
  }

  @media screen and (max-width: 600px) {
    padding: 30px 20px;
  }
}
.frame-yellow {
  background-color: var(--color-yellow-light);
  border-radius: 20px;
  padding: 40px;
  margin-top: 80px;

  @media screen and (max-width: 800px) {
    margin-top: 60px;
  }

  @media screen and (max-width: 600px) {
    padding: 30px 20px;
  }
}

/* 見出し */
.title-block--blue,
.title-block--green {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  border-left: 12px solid;
  border-radius: 8px;

  @media screen and (max-width: 600px) {
    font-size: 22px;
  }
}

.single-body {
  .title-block--blue,
  .title-block--green {
    font-size: 24px;
  }
}
.title-block--blue {
  border-color: var(--color-blue);
  background-color: var(--color-bg-blue-light);
}
.title-block--green {
  border-color: var(--color-green);
  background-color: var(--color-bg-green-light);
}
.title-sub--blue,
.title-sub--green {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: flex-start;
  @media screen and (max-width: 800px) {
    font-size: 20px;
  }
  &::before {
    content: "ー";
    margin-right: 5px;
  }
}
.single-body {
  .title-sub--blue,
  .title-sub--green {
    font-size: 20px;
  }
}
.title-sub--blue {
  color: var(--color-blue-dark);
}
.title-sub--green {
  color: var(--color-green-dark);
}

.title-item--blue,
.title-item--green {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-left: 25px;

  @media screen and (max-width: 800px) {
    font-size: 16px;
    padding-left: 22px;
  }
  &::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 4px;

    @media screen and (max-width: 800px) {
      width: 18px;
      height: 18px;
    }
  }
}

.title-item--blue {
  color: var(--color-blue-dark);
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M10.0005%201.04199C9.65462%201.04198%209.31209%201.11013%208.99252%201.24253C8.67295%201.37494%208.38259%201.56901%208.13804%201.81366L1.81471%208.13783C1.57004%208.38237%201.37596%208.67272%201.24354%208.9923C1.11112%209.31187%201.04297%209.6544%201.04297%2010.0003C1.04297%2010.3462%201.11112%2010.6888%201.24354%2011.0084C1.37596%2011.3279%201.57004%2011.6183%201.81471%2011.8628L8.13804%2018.1862C8.38258%2018.4308%208.67294%2018.6249%208.99251%2018.7573C9.31209%2018.8897%209.65462%2018.9579%2010.0005%2018.9579C10.3465%2018.9579%2010.689%2018.8897%2011.0086%2018.7573C11.3281%2018.6249%2011.6185%2018.4308%2011.863%2018.1862L18.1864%2011.8628C18.431%2011.6183%2018.6251%2011.3279%2018.7575%2011.0084C18.89%2010.6888%2018.9581%2010.3462%2018.9581%2010.0003C18.9581%209.6544%2018.89%209.31187%2018.7575%208.9923C18.6251%208.67272%2018.431%208.38237%2018.1864%208.13783L11.863%201.81449C11.6186%201.56969%2011.3282%201.37547%2011.0087%201.24292C10.6891%201.11037%2010.3465%201.04209%2010.0005%201.04199Z%22%20fill%3D%22%2359C5CD%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

.title-item--green {
  color: var(--color-green-dark);
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M10.0005%201.04199C9.65462%201.04198%209.31209%201.11013%208.99252%201.24253C8.67295%201.37494%208.38259%201.56901%208.13804%201.81366L1.81471%208.13783C1.57004%208.38237%201.37596%208.67272%201.24354%208.9923C1.11112%209.31187%201.04297%209.6544%201.04297%2010.0003C1.04297%2010.3462%201.11112%2010.6888%201.24354%2011.0084C1.37596%2011.3279%201.57004%2011.6183%201.81471%2011.8628L8.13804%2018.1862C8.38258%2018.4308%208.67294%2018.6249%208.99251%2018.7573C9.31209%2018.8897%209.65462%2018.9579%2010.0005%2018.9579C10.3465%2018.9579%2010.689%2018.8897%2011.0086%2018.7573C11.3281%2018.6249%2011.6185%2018.4308%2011.863%2018.1862L18.1864%2011.8628C18.431%2011.6183%2018.6251%2011.3279%2018.7575%2011.0084C18.89%2010.6888%2018.9581%2010.3462%2018.9581%2010.0003C18.9581%209.6544%2018.89%209.31187%2018.7575%208.9923C18.6251%208.67272%2018.431%208.38237%2018.1864%208.13783L11.863%201.81449C11.6186%201.56969%2011.3282%201.37547%2011.0087%201.24292C10.6891%201.11037%2010.3465%201.04209%2010.0005%201.04199Z%22%20fill%3D%22%235C9E31%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

/* リンクボタン */
.link-btn {
  min-width: 500px;
  max-width: 600px;
  margin-inline: auto;
  
  @media screen and (max-width: 800px) {
    min-width: auto;
    max-width: 500px;
  }
  .link-btn_link {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 22px 70px;
    border-radius: 50px;
    line-height: 1.4;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
    font-size: 18px;

    @media screen and (max-width: 600px) {
      font-size: 16px;
      padding: 18px 50px;
    }
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M5.25%201.5L12.75%209L5.25%2016.5%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 18px;
      height: 18px;
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);

      @media screen and (max-width: 600px) {
        right: 20px;
      }
    }

    &[target="_blank"] {
      &::after {
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2222%22%20height%3D%2224%22%20viewBox%3D%220%200%2022%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.5%2020.5377V3.46229C0.5%202.66459%200.790525%201.90733%201.29631%201.35505C1.80106%200.803923%202.47942%200.5%203.18085%200.5H8.76596C9.01272%200.5%209.21277%200.734033%209.21277%201.02273C9.21277%201.31142%209.01272%201.54545%208.76596%201.54545H3.18085C2.69728%201.54545%202.23906%201.75542%201.90588%202.11923C1.57375%202.4819%201.39362%202.96606%201.39362%203.46229V20.5377C1.39362%2021.0339%201.57375%2021.5181%201.90588%2021.8808C2.23906%2022.2446%202.69728%2022.4545%203.18085%2022.4545H18.8191C19.3027%2022.4545%2019.7609%2022.2446%2020.0941%2021.8808C20.4263%2021.5181%2020.6064%2021.0339%2020.6064%2020.5377V14.4396C20.6064%2014.1509%2020.8064%2013.9168%2021.0532%2013.9168C21.3%2013.9168%2021.5%2014.1509%2021.5%2014.4396V20.5377C21.5%2021.3354%2021.2095%2022.0927%2020.7037%2022.645C20.1989%2023.1961%2019.5206%2023.5%2018.8191%2023.5H3.18085C2.47942%2023.5%201.80106%2023.1961%201.29631%2022.645C0.790525%2022.0927%200.5%2021.3354%200.5%2020.5377ZM21.5%207.12138C21.4999%207.41%2021.2999%207.64411%2021.0532%207.64411C20.8065%207.64411%2020.6065%207.41%2020.6064%207.12138V2.22592L12.9805%2010.5528C12.8001%2010.7498%2012.5171%2010.7383%2012.3487%2010.5273C12.1804%2010.3162%2012.1901%209.98508%2012.3705%209.78811L19.9192%201.54545H15.4681C15.2213%201.54545%2015.0213%201.31142%2015.0213%201.02273C15.0213%200.734033%2015.2213%200.5%2015.4681%200.5H21.0532C21.3%200.5%2021.5%200.734033%2021.5%201.02273V7.12138Z%22%20fill%3D%22white%22%20stroke%3D%22white%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 16px;
        height: 18px;
        right: auto;
        left: 30px;

        @media screen and (max-width: 600px) {
          width: 16px;
          height: 18px;
          left: 20px;
          margin-left: 0;
        }
      }
    }

    &[href^="#"]::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9.31452%2016.3088C9.39097%2016.4198%209.49327%2016.5106%209.6126%2016.5733C9.73193%2016.6361%209.86471%2016.6688%209.99952%2016.6688C10.1343%2016.6688%2010.2671%2016.6361%2010.3864%2016.5733C10.5058%2016.5106%2010.6081%2016.4198%2010.6845%2016.3088L18.1845%205.47547C18.2713%205.35052%2018.3222%205.20416%2018.3317%205.05231C18.3412%204.90045%2018.3089%204.7489%2018.2383%204.61413C18.1677%204.47936%2018.0615%204.36651%2017.9312%204.28785C17.801%204.20919%2017.6517%204.16773%2017.4995%204.16797H2.49952C2.34772%204.1686%202.19897%204.21059%202.06925%204.28944C1.93954%204.36829%201.83377%204.481%201.76333%204.61546C1.69288%204.74993%201.66042%204.90105%201.66944%205.05258C1.67846%205.20411%201.72862%205.35031%201.81452%205.47547L9.31452%2016.3088Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 20px;
      height: 20px;
      position: absolute;
      right: auto;
      left: 30px;

      @media screen and (max-width: 600px) {
        width: 18px;
        height: 18px;
        left: 20px;
      }
    }
  }
}
.mt-be-column {
  .link-btn {
    max-width: 100%;
    min-width: auto;

    @media screen and (max-width: 800px) {
      max-width: 600px;
      width: 100%;
    }
  }
}

.page-info-card {
  .link-btn {
    min-width: auto;
    max-width: 500px;
  }
}

/* テーブルブロック */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #c3ebc2;

  tbody {
    border: none;
  }

  th,
  td {
    padding: 20px;
  }
  th {
    background-color: #c3ebc2;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
  }
  th + th {
    border-left: 1px solid #fff;
  }
  td {
    background-color: #fff;
    border: 1px solid #c3ebc2;
    &:first-child {
      border-left: 0;
    }
    &:last-of-type {
      border-right: 0;
    }

    > p:last-child {
      margin-bottom: 0;
    }
  }
  tbody {
    tr {
      &:first-child {
        td {
          border-top: 0;
        }
      }
      &:last-of-type {
        th {
          border-bottom: 0;
        }
        td {
          border-bottom: 0;
        }
      }
    }
  }
}
.table-block {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #c3ebc2;

  table {
    border: none;
  }

  @media screen and (max-width: 600px) {
    &.view_scroll {
      overflow-x: auto;

      table {
        width: 800px;
      }
    }
    &.view_rows {
      table,
      thead,
      tbody,
      tr,
      th,
      td {
        display: block;
        width: 100%;
        height: auto !important;
      }
    }
  }
}

/* 【横長】カード説明ボックス */
.description-card {
  background-color: #fff;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 20px 30px;
  height: 100%;

  @media screen and (max-width: 800px) {
    margin-inline: auto;
  }

  @media screen and (max-width: 600px) {
    padding: 20px;
  }

  &:not(.description-card--horizontal) {
    max-width: 380px;
    width: 100%;
  }
}

.description-card--horizontal {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px 40px;

  @media screen and (max-width: 800px) {
    flex-direction: column;
    row-gap: 10px;
    padding: 30px;
    max-width: 600px;
  }

  &::before {
    content: "";
    display: block;
  }

  .description-card_content {
    margin: 0;
    dt {
      color: var(--color-green);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.6;
      margin-bottom: 15px;

      @media screen and (max-width: 800px) {
        text-align: center;
      }
    }

    dd {
      margin: 0;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.8;
    }
  }
}
.description-card--square {
  .description-card_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    margin: 0;

    dt {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-align: center;

      @media screen and (max-width: 600px) {
        font-size: 22px;
      }
    }

    dd {
      line-height: 1.8;
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.02em;
      margin: 0;
      text-align: center;

      &::before {
        content: "";
        display: block;
        margin-inline: auto;
        margin-bottom: 10px;
      }
    }
  }
}

.icon-earth {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2278%22%20height%3D%2278%22%20viewBox%3D%220%200%2078%2078%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M40.6755%2072.2109L40.5536%2072.1911C40.5707%2072.2043%2040.5908%2072.213%2040.612%2072.2165C40.6333%2072.2199%2040.6551%2072.218%2040.6755%2072.2109ZM68.3868%2028.6071C68.3521%2028.4233%2068.2569%2028.2563%2068.1164%2028.1328C67.976%2028.0092%2067.7982%2027.9361%2067.6115%2027.9251C67.4247%2027.9141%2067.2397%2027.9657%2067.0856%2028.0719C66.9316%2028.1781%2066.8175%2028.3327%2066.7613%2028.5111C66.7075%2028.6805%2066.6015%2028.8286%2066.4583%2028.9339C66.3152%2029.0393%2066.1423%2029.0966%2065.9646%2029.0976H63.6078C63.4553%2029.0976%2063.3057%2029.056%2063.1751%2028.9773L59.7657%2026.9328C59.6351%2026.8541%2059.4855%2026.8125%2059.333%2026.8125H53.8791C53.7131%2026.8125%2053.5509%2026.8618%2053.4129%2026.9542L46.687%2031.4376C46.5707%2031.5151%2046.4756%2031.6202%2046.4101%2031.7436C46.3447%2031.8671%2046.3111%2032.0048%2046.3122%2032.1445V38.5033C46.312%2038.6557%2046.3533%2038.8053%2046.4317%2038.936C46.5101%2039.0667%2046.6225%2039.1736%2046.7571%2039.2452L55.5762%2043.9527C55.7087%2044.0239%2055.8198%2044.1293%2055.898%2044.2578C55.9762%2044.3864%2056.0187%2044.5335%2056.0211%2044.6839L56.0622%2048.2625C56.0646%2048.4106%2056.1059%2048.5555%2056.1822%2048.6826C56.2584%2048.8096%2056.3668%2048.9143%2056.4964%2048.9861L60.0399%2050.9468C60.1712%2051.0197%2060.2807%2051.1263%2060.357%2051.2557C60.4333%2051.385%2060.4737%2051.5324%2060.4741%2051.6826V59.0865C60.4741%2059.2483%2060.5208%2059.4067%2060.6086%2059.5426C60.6964%2059.6785%2060.8215%2059.7862%2060.969%2059.8528C61.1165%2059.9194%2061.28%2059.942%2061.44%2059.9179C61.6%2059.8939%2061.7497%2059.8242%2061.8711%2059.7172C63.3001%2058.4588%2065.3491%2056.6216%2065.6218%2056.2011C66.0727%2055.5034%2066.4957%2054.7889%2066.8908%2054.0576C67.709%2052.5425%2068.4019%2050.963%2068.9627%2049.335C70.8944%2043.7424%2069.3679%2033.6893%2068.3868%2028.6071ZM43.631%2046.1297L34.2877%2039.1218C34.1822%2039.0427%2034.0539%2039%2033.9221%2039H29.4889C29.4131%2039.0001%2029.3379%2038.9852%2029.2679%2038.9561C29.1978%2038.9271%2029.1342%2038.8846%2029.0806%2038.8309L26.9905%2036.7407C26.9338%2036.6841%2026.8666%2036.6393%2026.7926%2036.6087C26.7186%2036.5781%2026.6394%2036.5624%2026.5593%2036.5625H18.4562C18.342%2036.5625%2018.2303%2036.5286%2018.1354%2036.4652C18.0404%2036.4017%2017.9664%2036.3116%2017.9227%2036.206C17.879%2036.1005%2017.8676%2035.9844%2017.8898%2035.8724C17.9121%2035.7604%2017.9671%2035.6576%2018.0479%2035.5768L19.3306%2034.2941C19.3842%2034.2404%2019.4478%2034.1978%2019.5179%2034.1688C19.5879%2034.1398%2019.6631%2034.1249%2019.7389%2034.125H24.6703C24.9359%2034.125%2025.1942%2034.0382%2025.4059%2033.8779C25.6177%2033.7176%2025.7713%2033.4924%2025.8433%2033.2368L26.893%2029.5044C26.9153%2029.4242%2026.9539%2029.3494%2027.0063%2029.2847C27.0587%2029.22%2027.1238%2029.1667%2027.1976%2029.1281L31.3825%2026.974C31.4767%2026.9253%2031.5556%2026.8516%2031.6107%2026.7611C31.6658%2026.6705%2031.6949%2026.5666%2031.6948%2026.4606V24.5563C31.6948%2024.4381%2031.731%2024.3227%2031.7984%2024.2257L34.0226%2021.0234C34.0894%2020.9272%2034.184%2020.8538%2034.2938%2020.8132L37.4062%2019.6447C37.5163%2019.6034%2037.6112%2019.5295%2037.6782%2019.4329C37.7451%2019.3362%2037.781%2019.2215%2037.781%2019.1039V17.3672C37.781%2017.2719%2037.7575%2017.1782%2037.7125%2017.0942C37.6676%2017.0102%2037.6027%2016.9386%2037.5235%2016.8858L34.4035%2014.8108C34.3178%2014.7544%2034.2187%2014.7216%2034.1163%2014.7158C34.0138%2014.7099%2033.9116%2014.7311%2033.82%2014.7773L29.5727%2016.901C29.4755%2016.949%2029.3668%2016.9686%2029.259%2016.9575C29.1512%2016.9465%2029.0487%2016.9052%2028.9633%2016.8385L26.9493%2015.2465C26.8806%2015.1913%2026.8254%2015.121%2026.788%2015.0412C26.7505%2014.9613%2026.7318%2014.874%2026.7333%2014.7858C26.7348%2014.6976%2026.7564%2014.6109%2026.7964%2014.5324C26.8365%2014.4538%2026.894%2014.3854%2026.9646%2014.3325L28.6007%2013.1274C28.6748%2013.0731%2028.7348%2013.0018%2028.7757%2012.9196C28.8166%2012.8374%2028.8373%2012.7465%2028.8359%2012.6547C28.8346%2012.5628%2028.8113%2012.4726%2028.768%2012.3916C28.7247%2012.3106%2028.6626%2012.2411%2028.587%2012.189L26.0383%2010.4111C25.9501%2010.349%2025.8462%2010.3129%2025.7384%2010.307C25.6307%2010.3011%2025.5234%2010.3256%2025.4289%2010.3776C24.5072%2010.8819%2021.8032%2012.3749%2020.8434%2013.0467C16.4028%2016.1609%2012.8291%2020.3554%2010.4596%2025.2342C10.1824%2025.807%209.8396%2026.3905%209.80608%2027.0197C9.77256%2027.6488%209.27897%2029.0534%209.07331%2029.6217C9.04556%2029.6985%209.03448%2029.7803%209.04078%2029.8618C9.04708%2029.9432%209.07063%2030.0223%209.10987%2030.094L14.547%2040.0847C14.5959%2040.1755%2014.6686%2040.2513%2014.7573%2040.304L20.4778%2043.7379C20.552%2043.7821%2020.6153%2043.8424%2020.663%2043.9144C20.7107%2043.9864%2020.7417%2044.0682%2020.7535%2044.1538L21.8991%2052.4626C21.9103%2052.5422%2021.9379%2052.6187%2021.9801%2052.6871C22.0223%2052.7555%2022.0783%2052.8145%2022.1444%2052.8602L26.6081%2055.9284C26.7374%2056.0173%2026.8274%2056.1526%2026.8594%2056.3062L29.2269%2067.5492C29.2401%2067.6152%2029.2654%2067.6782%2029.3015%2067.7351C29.5239%2068.0946%2030.4106%2069.4108%2031.48%2069.6058C31.381%2069.6333%2031.2926%2069.6957%2031.1936%2069.7247C31.4505%2069.7699%2031.7048%2069.8289%2031.9553%2069.9014C32.26%2069.9836%2032.5647%2070.0537%2032.8694%2070.1192C33.3462%2070.2137%2033.3935%2070.2868%2033.622%2069.8633C33.9267%2069.2966%2034.2755%2069.1016%2034.536%2069.0315C34.6435%2069.0067%2034.7419%2068.9521%2034.8198%2068.874C34.8976%2068.7958%2034.9519%2068.6973%2034.9763%2068.5897L36.5104%2061.4783C36.5427%2061.3292%2036.6296%2061.1977%2036.7542%2061.1096L43.6096%2056.2499C43.6893%2056.1935%2043.7543%2056.1188%2043.7991%2056.0321C43.8439%2055.9455%2043.8672%2055.8493%2043.8671%2055.7517V46.6172C43.868%2046.5232%2043.8471%2046.4303%2043.8062%2046.3457C43.7652%2046.2612%2043.7052%2046.1872%2043.631%2046.1297Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M39.9143%207.3125C39.9143%207.3125%2039.3582%207.34449%2039.2455%207.34754C38.4198%207.37191%2037.5961%207.42879%2036.7745%207.51816C33.7793%207.8432%2030.846%208.59475%2028.0635%209.75C28.4337%2010.0059%2027.7969%2010.2405%2027.7969%2010.2405L28.7932%2012.1875H34.1252L37.7815%2014.0156L40.9807%2012.1875L39.9143%207.3125ZM53.965%2018.2904L56.4192%2016.1576C56.496%2016.0909%2056.5549%2016.0061%2056.5906%2015.9108C56.6262%2015.8155%2056.6374%2015.7128%2056.6232%2015.6121C56.6089%2015.5114%2056.5697%2015.4158%2056.5091%2015.3341C56.4484%2015.2525%2056.3683%2015.1873%2056.276%2015.1445L53.4104%2013.8145C53.2649%2013.7466%2053.0984%2013.7389%2052.9472%2013.7931C52.796%2013.8473%2052.6723%2013.9591%2052.603%2014.104L51.4223%2016.5735C51.3581%2016.7085%2051.3457%2016.8624%2051.3876%2017.006C51.4294%2017.1495%2051.5226%2017.2726%2051.6493%2017.352L53.2428%2018.3483C53.3536%2018.4172%2053.4835%2018.4487%2053.6134%2018.4383C53.7434%2018.4279%2053.8666%2018.376%2053.965%2018.2904ZM65.4532%2021.4302L64.565%2020.0591C64.5513%2020.0378%2064.5391%2020.0164%2064.527%2019.9936C64.367%2019.6661%2063.0431%2016.9924%2061.9371%2015.955C61.1068%2015.1704%2060.8707%2015.3959%2060.8052%2015.5695C60.7677%2015.6656%2060.7051%2015.7498%2060.6239%2015.8133L56.2303%2019.3644C56.1221%2019.452%2055.9871%2019.4998%2055.8479%2019.5H53.5734C53.4934%2019.4999%2053.4141%2019.5156%2053.3401%2019.5462C53.2662%2019.5768%2053.1989%2019.6217%2053.1423%2019.6782L51.3142%2021.5064C51.2575%2021.563%2051.2126%2021.6302%2051.1819%2021.7041C51.1512%2021.7781%2051.1355%2021.8574%2051.1355%2021.9375C51.1355%2022.0176%2051.1512%2022.0969%2051.1819%2022.1709C51.2126%2022.2448%2051.2575%2022.312%2051.3142%2022.3686L53.1423%2024.1968C53.1989%2024.2533%2053.2662%2024.2982%2053.3401%2024.3288C53.4141%2024.3594%2053.4934%2024.3751%2053.5734%2024.375H65.0251C65.1074%2024.3751%2065.1888%2024.3585%2065.2645%2024.3263C65.3401%2024.294%2065.4085%2024.2468%2065.4654%2024.1875C65.5224%2024.1281%2065.5667%2024.0578%2065.5958%2023.9809C65.6248%2023.9039%2065.638%2023.8219%2065.6345%2023.7397L65.5507%2021.7364C65.5462%2021.6274%2065.5125%2021.5217%2065.4532%2021.4302Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M39%2010.9688C45.4852%2010.9682%2051.77%2013.2164%2056.7834%2017.3301C61.7969%2021.4439%2065.2289%2027.1688%2066.4945%2033.5293C67.7602%2039.8898%2066.7813%2046.4923%2063.7247%2052.212C60.668%2057.9317%2055.7226%2062.4145%2049.7313%2064.8967C43.7399%2067.3789%2037.0732%2067.7069%2030.8671%2065.8248C24.661%2063.9427%2019.2995%2059.9669%2015.6962%2054.5748C12.0929%2049.1828%2010.4706%2042.7082%2011.1059%2036.2542C11.7412%2029.8002%2014.5946%2023.7661%2019.1801%2019.1801C21.7766%2016.5687%2024.8653%2014.4984%2028.2674%2013.0889C31.6696%2011.6794%2035.3175%2010.9588%2039%2010.9688ZM39%204.875C20.1551%204.875%204.875%2020.1551%204.875%2039C4.875%2057.8449%2020.1551%2073.125%2039%2073.125C57.8449%2073.125%2073.125%2057.8449%2073.125%2039C73.125%2020.1551%2057.8449%204.875%2039%204.875Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 78px;
    height: 78px;
  }
}
.icon-ecology {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2285%22%20height%3D%2285%22%20viewBox%3D%220%200%2085%2085%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M42.4993%203.81836C30.5976%203.81836%2020.9173%2013.4987%2020.9173%2025.4004C20.9173%2037.3021%2030.5976%2046.9824%2042.4993%2046.9824C54.4009%2046.9824%2064.0813%2037.3021%2064.0813%2025.4004C64.0813%2013.4987%2054.4009%203.81836%2042.4993%203.81836ZM41.1164%208.98593L39.1617%2014.8373L47.8186%2013.9304L46.9576%2011.0322L49.3854%2011.7044V14.9197L53.1777%2015.167L52.436%2012.2817L54.4293%2011.1272C58.5048%2014.5352%2061.093%2019.6591%2061.093%2025.4004C61.093%2028.1675%2060.4912%2030.7911%2059.4121%2033.1487L55.0741%2033.8828V39.1086C54.2467%2039.8681%2053.3521%2040.551%2052.4014%2041.149L50.5394%2038.2523L46.9116%2039.2418L47.931%2043.1906C46.1699%2043.7248%2044.3396%2043.9956%2042.4993%2043.9941C37.3506%2043.9941%2032.6982%2041.9131%2029.3347%2038.5445L32.6484%2038.0876L34.8747%2033.7178L27.7838%2030.1727L32.8133%2025.8852L28.4437%2022.2577L23.9791%2023.7457C24.4957%2017.8608%2027.7398%2012.7716%2032.4449%209.74761L33.3905%2017.3106L41.1164%208.98593ZM47.5711%2019.647L41.5663%2023.4945L46.8134%2028.1584L50.603%2027.0508L50.253%2031.5981L57.1908%2029.8491L54.5671%2023.9028L50.3697%2023.961L54.101%2020.7546L47.5712%2019.647H47.5711ZM41.3334%2026.3512L38.1268%2027.7502L40.4003%2029.4409L41.3334%2026.3512ZM33.8026%2026.8748L31.5766%2029.5128L37.7436%2033.8471L33.8026%2026.8748ZM43.7236%2028.3332L41.4501%2032.5894L46.9302%2036.3204L45.0061%2033.5801L47.3964%2030.7235L43.7236%2028.3332ZM9.98844%2032.8812C8.52451%2032.8585%207.02622%2034.7228%207.01759%2039.5023C7.00464%2046.8323%206.29443%2048.9014%209.68662%2057.1914C12.174%2063.2705%2013.2895%2067.9431%2021.2493%2071.7188C22.1923%2075.0427%2021.8159%2075.8243%2021.1762%2078.6648C20.5792%2081.3168%2026.725%2081.8042%2031.2258%2079.5701C36.0554%2076.9358%2035.6501%2069.6827%2034.7874%2064.7642C33.784%2059.0443%2030.627%2057.8555%2027.8906%2055.4122C25.0492%2051.349%2024.388%2043.9882%2019.7797%2041.0188C18.8173%2040.3987%2013.9077%2039.7692%2020.6533%2056.6147C11.7597%2054.412%2013.3796%2044.2012%2012.7365%2036.6413C12.5449%2034.39%2011.28%2032.901%209.98844%2032.8811V32.8812ZM75.0101%2032.8812C73.7185%2032.9011%2072.4537%2034.39%2072.2621%2036.6415C71.6189%2044.2012%2073.2389%2054.412%2064.3453%2056.6147C71.091%2039.769%2066.1812%2040.3987%2065.2189%2041.0188C60.6106%2043.9882%2059.9495%2051.349%2057.108%2055.4124C54.3717%2057.8555%2051.2144%2059.0443%2050.2112%2064.7642C49.3484%2069.6827%2048.9432%2076.9358%2053.7727%2079.5701C58.2736%2081.804%2064.4193%2081.3168%2063.8222%2078.6648C63.1827%2075.8243%2062.8063%2075.0427%2063.7493%2071.7188C71.7091%2067.9431%2072.8245%2063.2705%2075.3119%2057.1914C78.7041%2048.9014%2077.9939%2046.8323%2077.981%2039.5024C77.9723%2034.7228%2076.474%2032.8585%2075.0101%2032.8812Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 85px;
    height: 85px;
  }
}
.icon-food {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2260%22%20viewBox%3D%220%200%2060%2060%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M28.125%200C28.6328%200%2029.0723%200.185547%2029.4434%200.556641C29.8145%200.927734%2030%201.36719%2030%201.875V22.5C30%2023.5352%2029.8047%2024.502%2029.4141%2025.4004C29.0234%2026.2988%2028.4863%2027.0898%2027.8027%2027.7734C27.1191%2028.457%2026.3184%2028.9941%2025.4004%2029.3848C24.4824%2029.7754%2023.5156%2029.9805%2022.5%2030V58.125C22.5%2058.6328%2022.3145%2059.0723%2021.9434%2059.4434C21.5723%2059.8145%2021.1328%2060%2020.625%2060C20.1172%2060%2019.6777%2059.8145%2019.3066%2059.4434C18.9355%2059.0723%2018.75%2058.6328%2018.75%2058.125V30C17.7148%2030%2016.748%2029.8047%2015.8496%2029.4141C14.9512%2029.0234%2014.1602%2028.4863%2013.4766%2027.8027C12.793%2027.1191%2012.2559%2026.3281%2011.8652%2025.4297C11.4746%2024.5312%2011.2695%2023.5547%2011.25%2022.5V1.875C11.25%201.36719%2011.4355%200.927734%2011.8066%200.556641C12.1777%200.185547%2012.6172%200%2013.125%200C13.6328%200%2014.0723%200.185547%2014.4434%200.556641C14.8145%200.927734%2015%201.36719%2015%201.875V22.5C15%2023.0273%2015.0977%2023.5156%2015.293%2023.9648C15.4883%2024.4141%2015.752%2024.8047%2016.084%2025.1367C16.416%2025.4688%2016.8164%2025.7422%2017.2852%2025.957C17.7539%2026.1719%2018.2422%2026.2695%2018.75%2026.25V1.875C18.75%201.36719%2018.9355%200.927734%2019.3066%200.556641C19.6777%200.185547%2020.1172%200%2020.625%200C21.1328%200%2021.5723%200.185547%2021.9434%200.556641C22.3145%200.927734%2022.5%201.36719%2022.5%201.875V26.25C23.0273%2026.25%2023.5156%2026.1523%2023.9648%2025.957C24.4141%2025.7617%2024.8047%2025.498%2025.1367%2025.166C25.4688%2024.834%2025.7422%2024.4336%2025.957%2023.9648C26.1719%2023.4961%2026.2695%2023.0078%2026.25%2022.5V1.875C26.25%201.36719%2026.4355%200.927734%2026.8066%200.556641C27.1777%200.185547%2027.6172%200%2028.125%200ZM48.75%200V58.125C48.75%2058.6328%2048.5645%2059.0723%2048.1934%2059.4434C47.8223%2059.8145%2047.3828%2060%2046.875%2060C46.3672%2060%2045.9277%2059.8145%2045.5566%2059.4434C45.1855%2059.0723%2045%2058.6328%2045%2058.125V41.25C44.2773%2041.25%2043.4961%2041.2598%2042.6562%2041.2793C41.8164%2041.2988%2040.9863%2041.2891%2040.166%2041.25C39.3457%2041.2109%2038.5449%2041.0938%2037.7637%2040.8984C36.9824%2040.7031%2036.2988%2040.4004%2035.7129%2039.9902C35.127%2039.5801%2034.6484%2039.0234%2034.2773%2038.3203C33.9062%2037.6172%2033.7305%2036.7188%2033.75%2035.625V13.125C33.75%2011.3086%2034.0918%209.60938%2034.7754%208.02734C35.459%206.44531%2036.3965%205.05859%2037.5879%203.86719C38.7793%202.67578%2040.166%201.73828%2041.748%201.05469C43.3301%200.371094%2045.0391%200.0195312%2046.875%200H48.75ZM45%203.92578C43.9062%204.14062%2042.9102%204.53125%2042.0117%205.09766C41.1133%205.66406%2040.3223%206.36719%2039.6387%207.20703C38.9551%208.04688%2038.4277%208.95508%2038.0566%209.93164C37.6855%2010.9082%2037.5%2011.9727%2037.5%2013.125V35.625C37.5%2036.1328%2037.6855%2036.5723%2038.0566%2036.9434C38.4277%2037.3145%2038.8672%2037.5%2039.375%2037.5H45V3.92578Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
  }
}
.icon-forest {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2279%22%20height%3D%2279%22%20viewBox%3D%220%200%2079%2079%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M23.0417%2049.2549C15.6354%2048.1637%209.875%2039.7913%209.875%2029.625C9.875%2018.7181%2016.5077%209.875%2024.6875%209.875C32.8673%209.875%2039.5%2018.7181%2039.5%2029.625C39.5%2039.7913%2033.7396%2048.1637%2026.3333%2049.2549V60.8958H52.6667V49.4507H44.8868C43.6736%2049.4512%2042.4957%2049.0422%2041.544%2048.2898C40.5922%2047.5374%2039.9223%2046.4858%2039.6427%2045.3052C39.3632%2044.1247%2039.4903%2042.8843%2040.0036%2041.785C40.5168%2040.6857%2041.3861%2039.7918%2042.4707%2039.2482C41.9909%2037.6359%2042.1322%2035.9025%2042.8666%2034.3892C43.601%2032.8759%2044.8754%2031.6923%2046.4388%2031.0717C46.1664%2029.8877%2046.1645%2028.6574%2046.4333%2027.4726C46.7021%2026.2877%2047.2347%2025.1787%2047.9914%2024.2282C48.748%2023.2776%2049.7094%2022.5099%2050.8038%2021.9823C51.8982%2021.4547%2053.0975%2021.1807%2054.3125%2021.1807C55.5275%2021.1807%2056.7268%2021.4547%2057.8212%2021.9823C58.9156%2022.5099%2059.8769%2023.2776%2060.6336%2024.2282C61.3903%2025.1787%2061.9229%2026.2877%2062.1917%2027.4726C62.4605%2028.6574%2062.4586%2029.8877%2062.1862%2031.0717C63.7496%2031.6923%2065.024%2032.8759%2065.7584%2034.3892C66.4928%2035.9025%2066.6341%2037.6359%2066.1543%2039.2482C67.2389%2039.7918%2068.1082%2040.6857%2068.6214%2041.785C69.1347%2042.8843%2069.2618%2044.1247%2068.9822%2045.3052C68.7027%2046.4858%2068.0328%2047.5374%2067.081%2048.2898C66.1293%2049.0422%2064.9514%2049.4512%2063.7382%2049.4507H55.9583V60.8958H65.0104C66.1017%2060.8958%2067.1482%2061.3293%2067.9199%2062.101C68.6915%2062.8726%2069.125%2063.9192%2069.125%2065.0104C69.125%2066.1017%2068.6915%2067.1482%2067.9199%2067.9199C67.1482%2068.6915%2066.1017%2069.125%2065.0104%2069.125H13.9896C12.8983%2069.125%2011.8518%2068.6915%2011.0801%2067.9199C10.3085%2067.1482%209.875%2066.1017%209.875%2065.0104C9.875%2063.9192%2010.3085%2062.8726%2011.0801%2062.101C11.8518%2061.3293%2012.8983%2060.8958%2013.9896%2060.8958H23.0417V49.2549ZM36.2083%2029.625C36.2083%2034.4358%2034.7419%2038.6639%2032.5282%2041.6149C30.7475%2043.9898%2028.5815%2045.4365%2026.3333%2045.9105V40.3229H23.0417V45.9105C20.7935%2045.4365%2018.6275%2043.9898%2016.8467%2041.6149C14.6331%2038.6639%2013.1667%2034.4358%2013.1667%2029.625C13.1667%2024.8142%2014.6331%2020.5861%2016.8467%2017.6351C19.0604%2014.6841%2021.8665%2013.1667%2024.6875%2013.1667C27.5085%2013.1667%2030.3162%2014.6841%2032.5282%2017.6351C34.7402%2020.5861%2036.2083%2024.8142%2036.2083%2029.625ZM58.9784%2030.3327L58.3431%2033.0862L60.9699%2034.1313C61.7696%2034.4482%2062.4215%2035.0532%2062.7972%2035.827C63.1728%2036.6009%2063.2449%2037.4874%2062.9992%2038.3117L62.2158%2040.9533L64.6763%2042.1893C65.0989%2042.4002%2065.4378%2042.7477%2065.6381%2043.1755C65.8384%2043.6032%2065.8882%2044.0861%2065.7796%2044.5457C65.671%2045.0054%2065.4103%2045.4149%2065.0397%2045.7077C64.6691%2046.0005%2064.2105%2046.1596%2063.7382%2046.159H55.9583V41.9688H52.6667V46.159H44.8868C44.4145%2046.1596%2043.9559%2046.0005%2043.5853%2045.7077C43.2147%2045.4149%2042.954%2045.0054%2042.8454%2044.5457C42.7368%2044.0861%2042.7866%2043.6032%2042.9869%2043.1755C43.1872%2042.7477%2043.5261%2042.4002%2043.9487%2042.1893L46.4092%2040.9533L45.6258%2038.3134C45.3801%2037.489%2045.4522%2036.6025%2045.8278%2035.8287C46.2035%2035.0548%2046.8554%2034.4498%2047.6551%2034.1329L50.2802%2033.0862L49.6466%2030.3327C49.4852%2029.6311%2049.4842%2028.9021%2049.6435%2028.2001C49.8028%2027.498%2050.1184%2026.8409%2050.5669%2026.2777C51.0153%2025.7144%2051.5849%2025.2596%2052.2334%2024.9469C52.8819%2024.6343%2053.5926%2024.472%2054.3125%2024.472C55.0324%2024.472%2055.7431%2024.6343%2056.3916%2024.9469C57.0401%2025.2596%2057.6097%2025.7144%2058.0581%2026.2777C58.5065%2026.8409%2058.8222%2027.498%2058.9815%2028.2001C59.1408%2028.9021%2059.1398%2029.6311%2058.9784%2030.3327ZM13.1667%2065.0104C13.1667%2064.7922%2013.2534%2064.5829%2013.4077%2064.4285C13.562%2064.2742%2013.7713%2064.1875%2013.9896%2064.1875H65.0104C65.2287%2064.1875%2065.438%2064.2742%2065.5923%2064.4285C65.7466%2064.5829%2065.8333%2064.7922%2065.8333%2065.0104C65.8333%2065.2287%2065.7466%2065.438%2065.5923%2065.5923C65.438%2065.7466%2065.2287%2065.8333%2065.0104%2065.8333H13.9896C13.7713%2065.8333%2013.562%2065.7466%2013.4077%2065.5923C13.2534%2065.438%2013.1667%2065.2287%2013.1667%2065.0104Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 79px;
    height: 79px;
  }
}
.icon-beach {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2274%22%20height%3D%2277%22%20viewBox%3D%220%200%2074%2077%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M28.8298%2017.0715C31.5897%2012.0971%2036.1357%208.46732%2041.4676%206.98057C46.7995%205.49382%2052.4807%206.27194%2057.2612%209.14373C62.0418%2012.0155%2065.5302%2016.7458%2066.959%2022.2939C68.3879%2027.8419%2067.6401%2033.7534%2064.8801%2038.7278L64.1093%2040.1202C63.9573%2040.3939%2063.755%2040.6338%2063.5139%2040.8261C63.2728%2041.0185%2062.9977%2041.1595%2062.7042%2041.2411C62.4107%2041.3228%2062.1046%2041.3434%2061.8034%2041.3019C61.5022%2041.2604%2061.2119%2041.1576%2060.9489%2040.9993L46.8951%2032.5549L39.5783%2045.8792C45.4521%2046.601%2050.6475%2049.7612%2054.5109%2054.2657C52.9002%2054.5378%2051.4589%2055.4631%2050.5026%2056.8388C46.9105%2052.9632%2042.1375%2050.5312%2037.0007%2050.5312C31.8638%2050.5312%2027.0908%2052.9632%2023.4956%2056.8388C22.5401%2055.4638%2021.0999%2054.5386%2019.4904%2054.2657C23.3137%2049.8061%2028.4413%2046.6684%2034.238%2045.9016L42.8898%2030.1487L28.9069%2021.7493C28.6436%2021.5914%2028.4128%2021.3811%2028.2276%2021.1303C28.0425%2020.8796%2027.9066%2020.5933%2027.8279%2020.2879C27.7491%2019.9825%2027.729%2019.6639%2027.7687%2019.3504C27.8083%2019.0369%2027.907%2018.7345%2028.059%2018.4607L28.8298%2017.0715ZM33.239%2018.7944L39.3008%2022.4359C40.9473%2019.8082%2042.6123%2017.6458%2044.6751%2015.6919C46.4068%2014.0779%2048.2935%2012.6534%2050.3052%2011.4409C47.0793%2010.7094%2043.7156%2011.0217%2040.6652%2012.3361C37.6147%2013.6505%2035.0235%2015.904%2033.239%2018.7944ZM51.1531%2029.5552C52.8613%2026.3564%2053.6815%2023.8122%2053.9775%2021.3579C54.2149%2019.3687%2054.1224%2017.3314%2053.7801%2014.9091C51.258%2016.3849%2049.371%2017.7549%2047.7862%2019.2532C46.1427%2020.8092%2044.7614%2022.561%2043.3122%2024.8453L51.1531%2029.5552ZM55.1584%2031.9614L61.2449%2035.6189C62.785%2032.5122%2063.358%2028.984%2062.8845%2025.5232C62.4111%2022.0625%2060.9146%2018.8408%2058.6025%2016.3047C58.79%2018.1837%2058.7776%2020.0785%2058.5655%2021.9546C58.177%2025.195%2057.0978%2028.3488%2055.1584%2031.9646M20.7022%2059.8675C20.5479%2059.3668%2020.2404%2058.9325%2019.8265%2058.631C19.4127%2058.3294%2018.9153%2058.1771%2018.4104%2058.1975C17.9055%2058.2179%2017.421%2058.4098%2017.0308%2058.7438C16.6406%2059.0778%2016.3663%2059.5356%2016.2498%2060.0472C15.6023%2062.9058%2014.3782%2064.4233%2013.0401%2065.2896C11.6217%2066.2072%209.80257%2066.5761%207.70898%2066.5761C7.09567%2066.5761%206.50748%2066.8296%206.0738%2067.2809C5.64012%2067.7321%205.39648%2068.3442%205.39648%2068.9824C5.39648%2069.6205%205.64012%2070.2326%206.0738%2070.6838C6.50748%2071.1351%207.09567%2071.3886%207.70898%2071.3886C10.2435%2071.3886%2013.0432%2070.9555%2015.4821%2069.377C16.7871%2068.5318%2017.9035%2067.4062%2018.7566%2066.0756C23.5419%2072.0624%2032.3541%2072.0335%2037.0007%2065.9826C41.7305%2072.1394%2050.7708%2072.0624%2055.4914%2065.758C58.1061%2069.3128%2062.1822%2071.3886%2066.2923%2071.3886C66.9056%2071.3886%2067.4938%2071.1351%2067.9275%2070.6838C68.3612%2070.2326%2068.6048%2069.6205%2068.6048%2068.9824C68.6048%2068.3442%2068.3612%2067.7321%2067.9275%2067.2809C67.4938%2066.8296%2066.9056%2066.5761%2066.2923%2066.5761C62.6447%2066.5761%2058.9416%2064.0191%2057.7083%2059.8899C57.5623%2059.4018%2057.2707%2058.9748%2056.8757%2058.6707C56.4807%2058.3667%2056.0029%2058.2014%2055.5116%2058.1989C55.0203%2058.1964%2054.541%2058.3568%2054.1432%2058.6568C53.7454%2058.9568%2053.4498%2059.3809%2053.2991%2059.8675C50.8818%2067.6958%2041.5517%2067.5643%2039.1929%2060.2012C39.0387%2059.7232%2038.7441%2059.3078%2038.3508%2059.0134C37.9574%2058.7191%2037.4852%2058.5607%2037.0007%2058.5607C36.5161%2058.5607%2036.0439%2058.7191%2035.6505%2059.0134C35.2572%2059.3078%2034.9626%2059.7232%2034.8084%2060.2012C32.4496%2067.5643%2023.1195%2067.6926%2020.7022%2059.8675Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 74px;
    height: 77px;
  }
}
.icon-house {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2270%22%20height%3D%2270%22%20viewBox%3D%220%200%2070%2070%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1086_2565)%22%3E%0A%3Cpath%20d%3D%22M59.6738%2068.7131H10.6896C9.66113%2068.7131%208.82812%2067.8801%208.82812%2066.8517V21.5392C8.82812%2020.5107%209.66113%2019.6777%2010.6896%2019.6777C11.718%2019.6777%2012.551%2020.5107%2012.551%2021.5392V64.9902H57.8123V21.5392C57.8123%2020.5107%2058.6453%2019.6777%2059.6738%2019.6777C60.7022%2019.6777%2061.5352%2020.5107%2061.5352%2021.5392V66.8517C61.5352%2067.8801%2060.7022%2068.7131%2059.6738%2068.7131Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M66.2773%2028.9994C65.6026%2028.9994%2064.9185%2028.8132%2064.2995%2028.427L35.0002%2010.0265L5.7056%2028.427C3.96514%2029.5206%201.66625%2028.9947%200.572641%2027.2543C-0.520964%2025.5138%200.000243507%2023.2149%201.74536%2022.1213L33.0224%202.48297C34.2324%201.72443%2035.7728%201.72443%2036.9827%202.48297L68.2598%2022.126C70.0002%2023.2196%2070.5261%2025.5185%2069.4325%2027.2589C68.7252%2028.3851%2067.5152%2029.004%2066.2773%2029.004V28.9994Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M65.7838%2026.0639C65.5139%2026.4966%2064.9322%2026.6316%2064.4994%2026.357L35.7911%208.32885C35.3584%208.05893%2034.6463%208.05893%2034.2136%208.32885L5.50063%2026.357C5.06784%2026.6316%204.49079%2026.4966%204.21622%2026.0639L3.225%2024.4863C2.95509%2024.0535%203.08539%2023.4764%203.51818%2023.2019L33.2223%204.55475C33.6551%204.28018%2034.3206%203.97304%2034.6975%203.87066C35.0745%203.76828%2036.3449%204.28483%2036.7777%204.55475L66.4772%2023.2065C66.91%2023.4764%2067.045%2024.0581%2066.7704%2024.4909L65.7792%2026.0685L65.7838%2026.0639Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M48.0955%2066.8519H44.8379V36.6032H25.1623V66.8519H21.9048V36.3706C21.9048%2034.7046%2023.2636%2033.3457%2024.9296%2033.3457H45.0706C46.7366%2033.3457%2048.0955%2034.7046%2048.0955%2036.3706V66.8519Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M42.2179%2050.9121C42.2179%2052.3686%2041.0359%2053.5507%2039.5839%2053.5507C38.132%2053.5507%2036.9453%2052.3686%2036.9453%2050.9121C36.9453%2049.4555%2038.1273%2048.2734%2039.5839%2048.2734C41.0405%2048.2734%2042.2179%2049.4555%2042.2179%2050.9121Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1086_2565%22%3E%0A%3Crect%20width%3D%2270%22%20height%3D%2270%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 84px;
    height: 84px;
  }
}
.icon-school {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2270%22%20height%3D%2270%22%20viewBox%3D%220%200%2070%2070%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1086_2573)%22%3E%0A%3Cpath%20d%3D%22M35.002%2015.9297C30.8019%2015.9297%2027.3833%2019.3464%2027.3833%2023.5443C27.3833%2027.7421%2030.8019%2031.1588%2035.002%2031.1588C39.202%2031.1588%2042.6206%2027.7421%2042.6206%2023.5443C42.6206%2019.3464%2039.202%2015.9297%2035.002%2015.9297ZM35.002%2028.8541C32.0761%2028.8541%2029.6932%2026.4723%2029.6932%2023.5481C29.6932%2020.6239%2032.0761%2018.2421%2035.002%2018.2421C37.9278%2018.2421%2040.3108%2020.6239%2040.3108%2023.5481C40.3108%2026.4723%2037.9278%2028.8541%2035.002%2028.8541Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M35.0021%2020.1758C34.4708%2020.1758%2034.0397%2020.6067%2034.0397%2021.1377V23.15L33.1658%2024.0235C32.7885%2024.4005%2032.7885%2025.0085%2033.1658%2025.3855C33.3544%2025.5741%2033.6008%2025.6664%2033.8472%2025.6664C34.0936%2025.6664%2034.3399%2025.5741%2034.5286%2025.3855L35.6835%2024.2312C35.8644%2024.0504%2035.9645%2023.808%2035.9645%2023.5502V21.1415C35.9645%2020.6106%2035.5334%2020.1796%2035.0021%2020.1796V20.1758Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M69.7495%2029.1632L66.9277%2024.8576C66.6428%2024.4228%2066.1577%2024.1612%2065.638%2024.1612H51.4594V13.1337H53.546C54.1119%2013.1337%2054.6316%2012.822%2054.9011%2012.3257C55.1706%2011.8293%2055.1436%2011.2253%2054.8356%2010.752L52.0138%206.44643C51.7289%206.01164%2051.2438%205.75%2050.7241%205.75H19.2793C18.7596%205.75%2018.2746%206.01164%2017.9897%206.44643L15.1678%2010.752C14.856%2011.2253%2014.8329%2011.8293%2015.1024%2012.3257C15.3718%2012.822%2015.8916%2013.1337%2016.4575%2013.1337H18.544V24.1612H4.36156C3.84184%2024.1612%203.35677%2024.4228%203.07189%2024.8576L0.250026%2029.1632C-0.0618037%2029.6364%20-0.0849022%2030.2405%200.18458%2030.7369C0.454063%2031.2332%200.973779%2031.5449%201.53969%2031.5449H6.09395V62.2071C6.09395%2063.0574%206.78305%2063.7462%207.63385%2063.7462H62.3657C63.2165%2063.7462%2063.9056%2063.0574%2063.9056%2062.2071V31.5449H68.4599C69.0258%2031.5449%2069.5455%2031.2332%2069.815%2030.7369C70.0845%2030.2405%2070.0575%2029.6364%2069.7495%2029.1632ZM60.8258%2060.668H58.3543V54.504C58.3543%2053.8653%2057.8384%2053.3497%2057.1994%2053.3497H48.4104C47.7713%2053.3497%2047.2555%2053.8653%2047.2555%2054.504V60.668H43.0823V54.504C43.0823%2053.8653%2042.5665%2053.3497%2041.9274%2053.3497H28.0683C27.4293%2053.3497%2026.9134%2053.8653%2026.9134%2054.504V60.668H23.2869V54.504C23.2869%2053.8653%2022.7711%2053.3497%2022.132%2053.3497H13.343C12.704%2053.3497%2012.1881%2053.8653%2012.1881%2054.504V60.668H9.1699V31.5449H20.0762C20.927%2031.5449%2021.6161%2030.8561%2021.6161%2030.0058V13.1299H48.3719V30.002C48.3719%2030.8523%2049.061%2031.541%2049.9118%2031.541H60.8181V60.6642L60.8258%2060.668Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M17.6665%2034.6992H12.8004C12.1614%2034.6992%2011.6455%2035.2148%2011.6455%2035.8535V40.717C11.6455%2041.3557%2012.1614%2041.8713%2012.8004%2041.8713H17.6665C18.3056%2041.8713%2018.8214%2041.3557%2018.8214%2040.717V35.8535C18.8214%2035.2148%2018.3056%2034.6992%2017.6665%2034.6992ZM16.5116%2039.5627H13.9554V37.0078H16.5116V39.5627Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M27.5527%2034.6992H22.6867C22.0476%2034.6992%2021.5317%2035.2148%2021.5317%2035.8535V40.717C21.5317%2041.3557%2022.0476%2041.8713%2022.6867%2041.8713H27.5527C28.1918%2041.8713%2028.7077%2041.3557%2028.7077%2040.717V35.8535C28.7077%2035.2148%2028.1918%2034.6992%2027.5527%2034.6992ZM26.3978%2039.5627H23.8416V37.0078H26.3978V39.5627Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M37.4351%2034.6992H32.569C31.9299%2034.6992%2031.4141%2035.2148%2031.4141%2035.8535V40.717C31.4141%2041.3557%2031.9299%2041.8713%2032.569%2041.8713H37.4351C38.0741%2041.8713%2038.59%2041.3557%2038.59%2040.717V35.8535C38.59%2035.2148%2038.0741%2034.6992%2037.4351%2034.6992ZM36.2801%2039.5627H33.7239V37.0078H36.2801V39.5627Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M47.3173%2034.6992H42.4474C41.8083%2034.6992%2041.2925%2035.2148%2041.2925%2035.8535V40.717C41.2925%2041.3557%2041.8083%2041.8713%2042.4474%2041.8713H47.3173C47.9564%2041.8713%2048.4723%2041.3557%2048.4723%2040.717V35.8535C48.4723%2035.2148%2047.9564%2034.6992%2047.3173%2034.6992ZM46.1624%2039.5627H43.6023V37.0078H46.1624V39.5627Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M52.3336%2041.8713H57.1997C57.8388%2041.8713%2058.3546%2041.3557%2058.3546%2040.717V35.8535C58.3546%2035.2148%2057.8388%2034.6992%2057.1997%2034.6992H52.3336C51.6946%2034.6992%2051.1787%2035.2148%2051.1787%2035.8535V40.717C51.1787%2041.3557%2051.6946%2041.8713%2052.3336%2041.8713ZM53.4886%2037.0078H56.0448V39.5627H53.4886V37.0078Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M17.6665%2043.6836H12.8004C12.1614%2043.6836%2011.6455%2044.1992%2011.6455%2044.8379V49.7014C11.6455%2050.3401%2012.1614%2050.8557%2012.8004%2050.8557H17.6665C18.3056%2050.8557%2018.8214%2050.3401%2018.8214%2049.7014V44.8379C18.8214%2044.1992%2018.3056%2043.6836%2017.6665%2043.6836ZM16.5116%2048.5471H13.9554V45.9922H16.5116V48.5471Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M27.5527%2043.6836H22.6867C22.0476%2043.6836%2021.5317%2044.1992%2021.5317%2044.8379V49.7014C21.5317%2050.3401%2022.0476%2050.8557%2022.6867%2050.8557H27.5527C28.1918%2050.8557%2028.7077%2050.3401%2028.7077%2049.7014V44.8379C28.7077%2044.1992%2028.1918%2043.6836%2027.5527%2043.6836ZM26.3978%2048.5471H23.8416V45.9922H26.3978V48.5471Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M37.4351%2043.6836H32.569C31.9299%2043.6836%2031.4141%2044.1992%2031.4141%2044.8379V49.7014C31.4141%2050.3401%2031.9299%2050.8557%2032.569%2050.8557H37.4351C38.0741%2050.8557%2038.59%2050.3401%2038.59%2049.7014V44.8379C38.59%2044.1992%2038.0741%2043.6836%2037.4351%2043.6836ZM36.2801%2048.5471H33.7239V45.9922H36.2801V48.5471Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M47.3173%2043.6836H42.4474C41.8083%2043.6836%2041.2925%2044.1992%2041.2925%2044.8379V49.7014C41.2925%2050.3401%2041.8083%2050.8557%2042.4474%2050.8557H47.3173C47.9564%2050.8557%2048.4723%2050.3401%2048.4723%2049.7014V44.8379C48.4723%2044.1992%2047.9564%2043.6836%2047.3173%2043.6836ZM46.1624%2048.5471H43.6023V45.9922H46.1624V48.5471Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M52.3336%2050.8557H57.1997C57.8388%2050.8557%2058.3546%2050.3401%2058.3546%2049.7014V44.8379C58.3546%2044.1992%2057.8388%2043.6836%2057.1997%2043.6836H52.3336C51.6946%2043.6836%2051.1787%2044.1992%2051.1787%2044.8379V49.7014C51.1787%2050.3401%2051.6946%2050.8557%2052.3336%2050.8557ZM53.4886%2045.9922H56.0448V48.5471H53.4886V45.9922Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1086_2573%22%3E%0A%3Crect%20width%3D%2270%22%20height%3D%2270%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 84px;
    height: 84px;
  }
}
.icon-organic {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2259%22%20height%3D%2259%22%20viewBox%3D%220%200%2059%2059%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M56.5287%209.7647C57.9374%2013.5112%2050.3952%2022.6218%2043.2046%2024.9621C30.2024%2020.4585%2029.7796%2028.0203%2019.1375%2035.2085C31.7168%2043.906%2044.8983%2037.1333%2044.6525%2028.5709C34.7479%2034.2448%2028.5455%2034.8643%2024.9859%2034.6922C36.9678%2032.3199%2049.9035%2024.9621%2052.6126%2021.8671L52.6175%2022.2801C52.6175%2037.0645%2029.7796%2059.0002%2029.7796%2059.0002C29.7796%2059.0002%2017.8272%2047.5542%2011.2167%2035.5969C10.2924%2035.587%204.73164%2037.6078%202.67894%2034.8987C0.390227%2031.875%208.88131%2021.7294%2016.2489%2018.7032C29.4281%2024.6868%2036.6531%209.17962%2040.7757%208.32166C28.4767%201.03024%2016.3178%204.02203%2014.946%2014.8535C21.7826%2010.9693%2030.1705%208.76662%2034.0473%208.9387C23.1569%2011.166%2010.6833%2019.2194%206.9466%2022.2801C6.94414%209.97612%2017.1684%200.000201178%2029.7821%200.000201178C33.3009%20-0.01452%2036.7761%200.778862%2039.9399%202.3192C43.1037%203.85954%2045.8716%206.10572%2048.0303%208.88462C48.0303%208.88462%2055.4716%206.46316%2056.5287%209.7647ZM53.9204%2010.8636C52.9396%209.53116%2049.5299%2011.0897%2049.5299%2011.0897C50.01%2011.8895%2050.4362%2012.7196%2050.8082%2013.58C51.189%2014.4571%2051.5125%2015.3579%2051.7768%2016.2768C51.7768%2016.2768%2055.2602%2012.6877%2053.9204%2010.8636ZM5.21102%2033.64C6.2681%2035.0806%209.9556%2033.3991%209.9556%2033.3991C9.43931%2032.5303%208.97709%2031.6305%208.57156%2030.7048C8.16246%2029.7566%207.8135%2028.7837%207.52677%2027.7917C7.52677%2027.7917%203.76552%2031.6709%205.21102%2033.6425%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 59px;
    height: 59px;
  }
}
.icon-trade {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2269%22%20height%3D%2267%22%20viewBox%3D%220%200%2069%2067%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M20.7486%2016.2537L27.6702%209.53271L34.5917%2016.2537L27.6702%2022.9746L20.7486%2016.2537ZM16.738%2033.5899L9.81641%2026.869L16.738%2020.148L23.6595%2026.869L16.738%2033.5899Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3Cpath%20d%3D%22M29.8067%205.05215L46.0347%2020.8306L46.2072%2020.6631C46.5471%2020.34%2047.0024%2020.1568%2047.478%2020.1518C47.9537%2020.1467%2048.413%2020.3201%2048.7602%2020.6359L48.7731%2020.6485L50.6426%2022.4638C51.3002%2023.1024%2051.3218%2024.076%2050.8215%2024.7543L50.8129%2024.769L50.5046%2025.171L63.7871%2038.0685C64.973%2039.2201%2064.973%2041.0626%2063.7871%2042.2141L43.4536%2061.9582C42.2677%2063.1097%2040.3702%2063.1097%2039.1843%2061.9582L29.5954%2052.6473C29.4362%2052.8422%2029.2362%2053.0021%2029.0088%2053.1166C28.7813%2053.2311%2028.5314%2053.2976%2028.2756%2053.3116C28.0198%2053.3257%2027.7639%2053.287%2027.5245%2053.1981C27.2852%2053.1092%2027.068%2052.9722%2026.8872%2052.7959L21.2809%2047.3522C20.9482%2047.0221%2020.7595%2046.58%2020.7543%2046.1181C20.749%2045.6563%2020.9277%2045.2103%2021.2529%2044.8732L21.2658%2044.8585L21.4318%2044.6994L5.20391%2028.9418C4.01797%2027.7903%204.01797%2025.9478%205.20391%2024.7962L25.5373%205.05215C26.7233%203.90059%2028.6208%203.90059%2029.8067%205.05215ZM43.9948%2022.8071L40.2106%2019.1326C40.0919%2019.0129%2039.9496%2018.9177%2039.7921%2018.8527C39.6347%2018.7877%2039.4653%2018.7541%2039.2942%2018.7541C39.1231%2018.7541%2038.9538%2018.7877%2038.7963%2018.8527C38.6388%2018.9177%2038.4965%2019.0129%2038.3778%2019.1326L30.6584%2026.6282C30.5361%2026.7462%2030.4391%2026.8864%2030.3728%2027.041C30.3066%2027.1955%2030.2725%2027.3612%2030.2725%2027.5286C30.2725%2027.6959%2030.3066%2027.8616%2030.3728%2028.0162C30.4391%2028.1707%2030.5361%2028.3109%2030.6584%2028.4289L34.4297%2032.0908L35.745%2030.8136L32.3705%2027.5369L39.2921%2020.7951L42.6752%2024.0906L43.9948%2022.8071ZM33.0519%2033.4266L29.2698%2029.7542C29.1511%2029.6345%2029.0088%2029.5393%2028.8513%2029.4743C28.6939%2029.4093%2028.5245%2029.3757%2028.3534%2029.3757C28.1823%2029.3757%2028.0129%2029.4093%2027.8555%2029.4743C27.698%2029.5393%2027.5557%2029.6345%2027.437%2029.7542L19.7176%2037.2498L19.7068%2037.2603L19.6961%2037.2708C19.1786%2037.7523%2019.1786%2038.548%2019.6961%2039.0505L23.4738%2042.7187L24.8021%2041.429L21.4167%2038.1543L28.3599%2031.4334L31.7323%2034.7059L33.0519%2033.4266ZM19.0233%2017.154L26.7427%2024.6496C27.2602%2025.1521%2028.0796%2025.1521%2028.5755%2024.6287L36.2949%2017.1331C36.4175%2017.0197%2036.5152%2016.8832%2036.5819%2016.7321C36.6486%2016.5809%2036.683%2016.4182%2036.683%2016.2537H36.7046C36.7046%2015.9396%2036.5752%2015.6046%2036.3164%2015.3534L28.5971%207.85777C28.4758%207.73876%2028.3314%207.64428%2028.1722%207.57981C28.0131%207.51533%2027.8423%207.48213%2027.6699%207.48213C27.4974%207.48213%2027.3267%207.51533%2027.1675%207.57981C27.0084%207.64428%2026.864%207.73876%2026.7427%207.85777L19.0233%2015.3743C18.5058%2015.8559%2018.5058%2016.6515%2019.0233%2017.154ZM8.09113%2027.7693L15.8105%2035.265C16.328%2035.7675%2017.1474%2035.7675%2017.6433%2035.265L25.3627%2027.7693C25.488%2027.6535%2025.5872%2027.5137%2025.654%2027.3587C25.7208%2027.2037%2025.7538%2027.037%2025.7508%2026.869H25.7724C25.7724%2026.534%2025.643%2026.22%2025.3843%2025.9687L17.6649%2018.4731C17.5462%2018.3534%2017.4039%2018.2582%2017.2464%2018.1932C17.0889%2018.1281%2016.9196%2018.0946%2016.7485%2018.0946C16.5774%2018.0946%2016.408%2018.1281%2016.2505%2018.1932C16.0931%2018.2582%2015.9507%2018.3534%2015.8321%2018.4731L8.09113%2025.9896C7.57363%2026.4712%207.57363%2027.2668%208.09113%2027.7693ZM23.0404%2046.098L28.1335%2051.0456L48.9111%2023.7431L47.4987%2022.3717L23.0404%2046.098Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 69px;
    height: 67px;
  }
}
.icon-support-item {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2280%22%20height%3D%2277%22%20viewBox%3D%220%200%2080%2077%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M23.3622%2011.7875C22.3388%2011.8051%2021.4169%2012.0486%2020.6512%2012.5259C19.4848%2013.2538%2018.813%2014.4666%2018.6102%2015.7353C18.2047%2018.273%2019.3519%2021.2027%2021.7136%2023.6022C24.075%2026.0014%2027.7567%2027.8222%2032.5%2027.8222H32.8809L31.4563%2025.0799C27.9884%2024.8462%2025.4469%2023.4592%2023.7552%2021.7405C21.8981%2019.8539%2021.1703%2017.5199%2021.3898%2016.1475C21.4995%2015.4611%2021.7652%2015.0571%2022.1808%2014.7979C22.5964%2014.5386%2023.2922%2014.3655%2024.4864%2014.5985C26.5298%2014.997%2029.8353%2016.6961%2034.2059%2020.5064L34.4172%2020.3026H38.0747C32.5575%2015.069%2028.3536%2012.5909%2025.045%2011.9454C24.6369%2011.8645%2024.2229%2011.8139%2023.8067%2011.7941C23.6566%2011.7873%2023.5084%2011.785%2023.3622%2011.7875ZM56.6378%2011.7875C56.4916%2011.7852%2056.3434%2011.7874%2056.1933%2011.7941C55.793%2011.8122%2055.3792%2011.8626%2054.9552%2011.9454C51.6464%2012.5909%2047.4423%2015.069%2041.9255%2020.3026H45.5827L45.7939%2020.5063C50.1645%2016.696%2053.47%2014.997%2055.5134%2014.5983C56.7077%2014.3652%2057.4034%2014.5385%2057.8191%2014.7977C58.2347%2015.057%2058.5003%2015.4609%2058.61%2016.1472C58.8295%2017.5196%2058.1017%2019.8536%2056.2447%2021.7402C54.553%2023.4592%2052.0114%2024.8461%2048.5436%2025.0798L47.1191%2027.8222H47.5C52.2433%2027.8222%2055.925%2026.0015%2058.2864%2023.6022C60.6481%2021.2027%2061.7953%2018.273%2061.3898%2015.7353C61.187%2014.4666%2060.5152%2013.2538%2059.3488%2012.5259C58.5831%2012.0486%2057.6613%2011.8051%2056.6378%2011.7875ZM35.5828%2023.0097L34.2109%2024.3296L35.8694%2027.5214H44.1311L45.7889%2024.3296L44.4175%2023.0097H35.5831H35.5828ZM11.4062%2030.2284V37.1464H33.5938V30.2284H11.4062ZM36.4062%2030.2284V70.8339H43.5938V30.2284H36.4062ZM46.4062%2030.2284V37.1464H68.5938V30.2284H46.4062ZM16.4062%2039.8534V70.8339H33.5938V39.8534H16.4062ZM46.4062%2039.8534V70.8339H63.5938V39.8534H46.4062Z%22%20fill%3D%22%234CAC49%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 77px;
  }
}
.icon-animal-experiment {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2269%22%20height%3D%2269%22%20viewBox%3D%220%200%2069%2069%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M22.5831%2035.88C20.2357%2040.9544%209.44004%2036.8949%209.44004%2036.8949C9.14784%2036.7628%208.89201%2036.5618%208.69448%2036.3092C8.49694%2036.0566%208.36359%2035.7599%208.30585%2035.4444L7.93929%2033.4463C7.85119%2032.9696%207.94068%2032.4772%208.19085%2032.062L10.1171%2028.8679C11.0401%2027.334%2012.3843%2026.0976%2013.9897%2025.3057L17.6798%2023.4801C17.6798%2023.4801%2021.2017%2012.7061%2026.9344%2011.8076C26.9344%2011.8076%2031.4942%2016.4364%2023.4815%2026.7274C23.4815%2026.7274%2025.4926%2028.1046%2027.0739%2030.7337C27.0739%2030.7337%2042.2208%2021.9161%2051.7989%2041.0248C60.6826%2058.7449%2043.5232%2057.6423%2037.6884%2056.8086C36.2106%2056.5987%2034.8723%2055.7161%2034.2484%2054.3576C33.5958%2052.9417%2033.7352%2051.2569%2037.5719%2050.7639%22%20stroke%3D%22%234CAC49%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M13.2397%2037.9672C12.5885%2043.7704%2015.82%2047.5826%2020.3798%2048.2424C20.3798%2048.2424%2021.8317%2050.0379%2020.3798%2051.5573C20.3798%2051.5573%2019.0386%2052.7174%2017.9504%2053.7969C16.6926%2055.0461%2017.5767%2057.1952%2019.3505%2057.1952H23.216C23.8974%2057.1952%2024.5313%2056.8459%2024.895%2056.2694L28.5894%2050.4188L29.8357%2046.4801M54.2243%2048.2396C54.2243%2048.2396%2061.9207%2045.1001%2060.8009%2052.0748C59.8449%2058.0304%2052.4777%2054.3389%2052.4777%2054.3389M15.636%2024.4921C15.636%2024.4921%2015.2364%2022.6176%2015.0639%2020.6597C14.798%2017.6337%2015.8085%2013.4822%2019.0602%2011.809C19.0602%2011.809%2020.985%2011.5776%2022.1997%2014.9729%22%20stroke%3D%22%234CAC49%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M34.2128%2052.2388C30.9066%2052.3538%2028.5879%2050.4175%2028.5879%2050.4175%22%20stroke%3D%22%234CAC49%22%20stroke-width%3D%220.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cline%20x1%3D%225.80299%22%20y1%3D%2266.9572%22%20x2%3D%2258.803%22%20y2%3D%229.95717%22%20stroke%3D%22%234CAC49%22%20stroke-width%3D%226%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 69px;
    height: 69px;
  }
}

.icon-sunlight {
  &::before {
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M92.1408%2072.2752C91.472%2072.2752%2090.9291%2072.816%2090.9291%2073.4824V91.658H64.0591V73.4824C64.0591%2073.4824%2064.0591%2073.4534%2064.0591%2073.4438L80.6638%2046.5957L96.5416%2072.2752H92.1505H92.1408Z%22%20fill%3D%22%23DCDCDC%22%2F%3E%0A%3Cpath%20d%3D%22M62.0138%2072.2025H52.0199L56.5855%2064.8145H66.5794L62.0138%2072.2025Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M39.1665%2072.2025L43.7321%2064.8145H53.7357L49.1701%2072.2025H39.1665Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M26.3228%2072.2025L30.8884%2064.8145H40.8919L36.3264%2072.2025H26.3228Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M23.88%2055.127H34.0387L29.5313%2062.3991H19.3726L23.88%2055.127Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M36.8789%2055.127H46.8824L42.3847%2062.3991H32.3811L36.8789%2055.127Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M52.8729%2045.4316L48.3752%2052.7135H38.3716L42.8791%2045.4316H52.8729Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M65.7263%2045.4316L61.2189%2052.7135H51.225L55.7228%2045.4316H65.7263Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M59.7262%2055.127L55.2284%2062.3991H45.2249L49.7323%2055.127H59.7262Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M68.0722%2062.3991H58.0783L62.576%2055.127H72.5699L68.0722%2062.3991Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M74.0627%2052.7135H64.0688L68.5665%2045.4316H78.5701L74.0627%2052.7135Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M29.8705%2045.4316H40.0292L35.5315%2052.7135H25.3728L29.8705%2045.4316Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M17.8798%2064.8145H28.0385L23.4729%2072.2025H17.4436H13.3142L17.8798%2064.8145Z%22%20fill%3D%22%23DBE8BA%22%2F%3E%0A%3Cpath%20d%3D%22M99.8179%2072.7727L81.7689%2043.5875C81.7689%2043.5875%2081.701%2043.5102%2081.6719%2043.4716C81.6429%2043.433%2081.6138%2043.3943%2081.5847%2043.3654C81.5362%2043.3171%2081.4878%2043.2881%2081.4296%2043.2495C81.4005%2043.2302%2081.3714%2043.2012%2081.3327%2043.1819C81.2745%2043.1432%2081.2066%2043.1239%2081.1388%2043.1046C81.1097%2043.0949%2081.0806%2043.0756%2081.0419%2043.066C80.9449%2043.037%2080.8383%2043.0273%2080.7317%2043.0273H29.192C28.7751%2043.0273%2028.3777%2043.2398%2028.1645%2043.5971L10.1154%2072.7824C9.88275%2073.1493%209.87305%2073.6226%2010.0863%2073.9992C10.2996%2074.3855%2010.7067%2074.6173%2011.1429%2074.6173H16.2319V92.7929C16.2319%2093.4592%2016.7747%2094.0001%2017.4436%2094.0001H92.228C92.8969%2094.0001%2093.4397%2093.4592%2093.4397%2092.7929V74.6173H98.7905C99.2266%2074.6173%2099.6338%2074.3759%2099.847%2073.9992C100.06%2073.6129%20100.051%2073.1493%2099.8179%2072.7824V72.7727ZM62.0138%2072.2029H52.0199L56.5855%2064.8245H66.5793L62.0138%2072.2029ZM39.1665%2072.2029L43.732%2064.8245H53.7356L49.17%2072.2029H39.1665ZM26.3227%2072.2029L30.8883%2064.8245H40.8919L36.3263%2072.2029H26.3227ZM23.88%2055.1283H34.0387L29.5409%2062.4101H19.3823L23.88%2055.1283ZM36.8788%2055.1283H46.8824L42.3847%2062.4101H32.3811L36.8788%2055.1283ZM52.8729%2045.4321L48.3752%2052.7139H38.3716L42.8693%2045.4321H52.8729ZM65.7263%2045.4321L61.2286%2052.7139H51.225L55.7227%2045.4321H65.7263ZM59.7261%2055.1283L55.2284%2062.4101H45.2248L49.7225%2055.1283H59.7261ZM68.0721%2062.4005H58.0782L62.576%2055.1186H72.5698L68.0624%2062.4005H68.0721ZM74.0626%2052.7139H64.0687L68.5665%2045.4321H78.5604L74.0626%2052.7139ZM29.8705%2045.4321H40.0292L35.5314%2052.7139H25.3728L29.8705%2045.4321ZM17.8798%2064.8148H28.0384L23.4729%2072.1932H13.3142L17.8798%2064.8148ZM18.6553%2074.6173H61.7229V91.5857H18.6553V74.6173ZM92.228%2072.2029C91.5592%2072.2029%2091.0163%2072.7437%2091.0163%2073.4101V91.5857H64.1463V73.4101C64.1463%2073.4101%2064.1463%2073.3811%2064.1463%2073.3715L80.7511%2046.5234L96.6288%2072.2029H92.2377H92.228Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M11.7439%2012.9061C11.9765%2013.4662%2012.5193%2013.8042%2013.0912%2013.8042C13.2754%2013.8042%2013.4596%2013.7656%2013.6438%2013.698C14.3805%2013.3889%2014.7391%2012.5487%2014.4289%2011.8051L12.8101%207.90344C12.4999%207.16946%2011.6566%206.81213%2010.9102%207.12118C10.1735%207.43022%209.81488%208.27043%2010.1251%209.01406L11.7439%2012.9157V12.9061Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M23.4535%2037.2736C22.7071%2037.5827%2022.3581%2038.4229%2022.6683%2039.1665L24.2871%2043.0682C24.5197%2043.6283%2025.0626%2043.9663%2025.6345%2043.9663C25.8186%2043.9663%2026.0125%2043.9277%2026.187%2043.8601C26.9334%2043.5511%2027.2823%2042.7108%2026.9722%2041.9672L25.3534%2038.0655C25.0432%2037.3316%2024.1999%2036.9742%2023.4535%2037.2833V37.2736Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M4.81311%2029.5842L0.896987%2031.197C0.16029%2031.506%20-0.198365%2032.3462%200.111823%2033.0899C0.344464%2033.65%200.887294%2033.988%201.4592%2033.988C1.64338%2033.988%201.83724%2033.9494%202.01173%2033.8818L5.92785%2032.269C6.66455%2031.9599%207.0232%2031.1197%206.71302%2030.3761C6.40283%2029.6421%205.5595%2029.2848%204.81311%2029.5938V29.5842Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M31.7219%2021.4919C31.9061%2021.4919%2032.1%2021.4533%2032.2745%2021.3857L36.1906%2019.7729C36.937%2019.4638%2037.2859%2018.6236%2036.9758%2017.88C36.6656%2017.146%2035.8126%2016.7887%2035.0759%2017.0977L31.1597%2018.7106C30.4133%2019.0196%2030.0644%2019.8598%2030.3746%2020.6034C30.6072%2021.1636%2031.15%2021.5016%2031.7219%2021.5016V21.4919Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M5.92785%2018.7106L2.01173%2017.0977C1.27503%2016.7887%200.422011%2017.146%200.111823%2017.88C-0.198365%2018.6236%200.16029%2019.4638%200.896987%2019.7729L4.81311%2021.3857C4.99729%2021.463%205.18146%2021.4919%205.36564%2021.4919C5.93755%2021.4919%206.48037%2021.1539%206.71302%2020.5938C7.0232%2019.8501%206.66455%2019.0099%205.92785%2018.7009V18.7106Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M36.1906%2031.1969L32.2745%2029.5841C31.5281%2029.275%2030.6847%2029.6324%2030.3745%2030.3663C30.0644%2031.11%2030.423%2031.9502%2031.1597%2032.2592L35.0758%2033.872C35.26%2033.9493%2035.4442%2033.9783%2035.6284%2033.9783C36.2003%2033.9783%2036.7431%2033.6402%2036.9757%2033.0801C37.2859%2032.3365%2036.9273%2031.4963%2036.1906%2031.1872V31.1969Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M13.6438%2037.2735C12.8974%2036.9645%2012.0541%2037.3218%2011.7439%2038.0558L10.1251%2041.9574C9.81488%2042.7011%2010.1735%2043.5413%2010.9102%2043.8503C11.0944%2043.9276%2011.2786%2043.9566%2011.4628%2043.9566C12.0347%2043.9566%2012.5775%2043.6185%2012.8101%2043.0584L14.4289%2039.1567C14.7391%2038.4131%2014.3805%2037.5729%2013.6438%2037.2639V37.2735Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M23.4535%2013.6979C23.6377%2013.7751%2023.8218%2013.8041%2024.006%2013.8041C24.5779%2013.8041%2025.1207%2013.4661%2025.3534%2012.906L26.9722%209.0043C27.2824%208.26066%2026.9237%207.42045%2026.187%207.11141C25.4406%206.80237%2024.5973%207.1597%2024.2871%207.89367L22.6683%2011.7953C22.3581%2012.539%2022.7168%2013.3792%2023.4535%2013.6882V13.6979Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3Cpath%20d%3D%22M18.5486%2034.1441C23.3469%2034.1441%2027.2436%2030.2521%2027.2436%2025.4812C27.2436%2020.7104%2023.3372%2016.8184%2018.5486%2016.8184C13.7601%2016.8184%209.85367%2020.7104%209.85367%2025.4812C9.85367%2030.2521%2013.7601%2034.1441%2018.5486%2034.1441Z%22%20fill%3D%22%23B4CF71%22%2F%3E%0A%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
  }
}
.icon-geothermalpower {
  &::before {
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1553_3342)%22%3E%0A%3Cpath%20d%3D%22M78.5378%2050.2957V9.47656L59.9273%2023.4314V9.47656L40.8656%2023.4314V9.47656L21.4657%2023.0935V50.2957H1.4808V54.9485H27.5095C27.3016%2058.5313%2027.1571%2062.1353%2027.0831%2065.704C27.0337%2068.0164%2027.0373%2070.1034%2027.5482%2072.2081C28.179%2074.8019%2029.6486%2077.153%2031.682%2078.8282C33.599%2080.4085%2035.858%2081.2602%2038.1028%2081.2602C38.3072%2081.2602%2038.508%2081.2532%2038.7124%2081.2391C40.9467%2081.0843%2043.1351%2080.0706%2044.9394%2078.3672C46.7226%2079.0148%2048.6996%2079.4547%2050.1374%2079.4547H50.2537C51.2616%2079.4547%2053.1364%2079.4582%2055.124%2078.7156C55.4447%2078.596%2055.7583%2078.4622%2056.0614%2078.3109C56.664%2078.8001%2057.3159%2079.2154%2058.0066%2079.5462C59.8039%2080.4015%2061.936%2080.771%2064.0187%2080.5845C66.3199%2080.3768%2068.318%2079.5251%2069.7946%2078.1244C73.1671%2074.9251%2073.8297%2069.6001%2074.0411%2064.3244C74.1398%2061.8572%2073.9988%2059.3936%2073.8578%2057.0109C73.8191%2056.3316%2073.7803%2055.6418%2073.7451%2054.9485H98.5156V50.2957H78.5307H78.5378ZM63.5606%2032.8671H71.2078V40.5044H63.5606V32.8671ZM46.1764%2032.8671H53.8236V40.5044H46.1764V32.8671ZM28.7922%2032.8671H36.4394V40.5044H28.7922V32.8671ZM45.4011%2070.3322C45.2178%2071.6872%2044.7315%2072.9964%2043.995%2074.1438C43.9492%2074.1156%2043.9034%2074.084%2043.8611%2074.0558C42.4797%2073.1196%2041.5845%2071.476%2041.581%2069.8641C41.581%2068.3718%2042.536%2066.869%2043.551%2066.7669C43.5827%2066.7669%2043.6144%2066.7634%2043.6461%2066.7634C44.2769%2066.7634%2045.0839%2067.3582%2045.3482%2068.312C45.4963%2068.8434%2045.5139%2069.5051%2045.4011%2070.3287V70.3322ZM57.6578%2071.916C57.3195%2072.6128%2056.9353%2073.1935%2056.5195%2073.6722C55.7019%2072.3629%2055.198%2070.7897%2055.1486%2069.1848C55.1204%2068.3296%2055.2367%2067.6538%2055.4834%2067.2245C55.6526%2066.9324%2055.938%2066.7317%2056.2693%2066.6719C56.3221%2066.6613%2056.3856%2066.6543%2056.4596%2066.6543C56.6217%2066.6543%2056.819%2066.693%2056.9952%2066.8373C58.0031%2067.6714%2058.5212%2070.121%2057.6578%2071.9124V71.916ZM70.4219%2057.208C70.5629%2059.6118%2070.6932%2061.8854%2070.6016%2064.1836C70.4254%2068.5196%2069.9109%2073.2674%2067.4229%2075.629C65.4036%2077.5436%2061.8056%2077.5436%2059.4903%2076.442C59.3%2076.3505%2059.1167%2076.252%2058.937%2076.1429C59.6453%2075.3651%2060.2515%2074.4535%2060.7554%2073.4153C62.0769%2070.6806%2061.7633%2066.327%2059.1907%2064.1977C58.2216%2063.3953%2056.9353%2063.0679%2055.6561%2063.2967C54.3205%2063.536%2053.1681%2064.3455%2052.495%2065.514C51.9136%2066.5241%2051.6528%2067.7594%2051.7021%2069.2975C51.7726%2071.564%2052.4809%2073.7567%2053.6474%2075.5868C52.3435%2076.0197%2051.0889%2076.0197%2050.2572%2076.0162H50.1374C49.3692%2076.0162%2048.2873%2075.8085%2047.2054%2075.4918C48.0371%2074.0523%2048.5904%2072.4474%2048.8124%2070.7968C48.9886%2069.5016%2048.9393%2068.3894%2048.6644%2067.4004C47.9596%2064.8558%2045.6161%2063.1137%2043.2127%2063.3495C40.411%2063.624%2038.131%2066.5522%2038.1345%2069.8711C38.1345%2072.4932%2039.4525%2075.0589%2041.5881%2076.6638C40.6084%2077.336%2039.5371%2077.7337%2038.4728%2077.8076C36.9152%2077.9167%2035.28%2077.336%2033.8704%2076.1745C32.4044%2074.9674%2031.3472%2073.271%2030.889%2071.3951C30.4767%2069.6952%2030.4767%2067.8474%2030.5225%2065.778C30.5965%2062.1845%2030.7446%2058.5559%2030.9525%2054.9485H70.295C70.3303%2055.7087%2070.3726%2056.4654%2070.4148%2057.208H70.4219Z%22%20fill%3D%22%23A9D06B%22%20stroke%3D%22%23231815%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M98.5227%2085.8711H1.4808V90.5239H98.5227V85.8711Z%22%20fill%3D%22%23A9D06B%22%20stroke%3D%22%23231815%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M15.2373%2069.4785C15.2373%2068.5071%2014.4479%2067.7188%2013.4753%2067.7188C12.5026%2067.7188%2011.7133%2068.5071%2011.7133%2069.4785C11.7133%2070.4499%2012.5026%2071.2382%2013.4753%2071.2382C14.4479%2071.2382%2015.2373%2070.4499%2015.2373%2069.4785Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M22.3051%2078.6154C22.3051%2076.9683%2020.966%2075.6309%2019.3167%2075.6309C17.6675%2075.6309%2016.3283%2076.9683%2016.3283%2078.6154C16.3283%2080.2625%2017.6675%2081.5999%2019.3167%2081.5999C20.966%2081.5999%2022.3051%2080.2625%2022.3051%2078.6154Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M19.679%2062.8633C19.679%2061.8919%2018.8896%2061.1035%2017.917%2061.1035C16.9444%2061.1035%2016.155%2061.8919%2016.155%2062.8633C16.155%2063.8346%2016.9444%2064.623%2017.917%2064.623C18.8896%2064.623%2019.679%2063.8346%2019.679%2062.8633Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M8.06376%2061.2422C8.06376%2060.2708%207.27437%2059.4824%206.30173%2059.4824C5.32909%2059.4824%204.5397%2060.2708%204.5397%2061.2422C4.5397%2062.2136%205.32909%2063.0019%206.30173%2063.0019C7.27437%2063.0019%208.06376%2062.2136%208.06376%2061.2422Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M3.7757%2075.4006C3.7757%2077.0477%205.11484%2078.3851%206.76409%2078.3851C8.41335%2078.3851%209.75249%2077.0477%209.75249%2075.4006C9.75249%2073.7534%208.41335%2072.416%206.76409%2072.416C5.11484%2072.416%203.7757%2073.7534%203.7757%2075.4006Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M85.3498%2060.5918C85.3498%2059.6204%2084.5604%2058.832%2083.5878%2058.832C82.6151%2058.832%2081.8257%2059.6204%2081.8257%2060.5918C81.8257%2061.5632%2082.6151%2062.3515%2083.5878%2062.3515C84.5604%2062.3515%2085.3498%2061.5632%2085.3498%2060.5918Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M89.7196%2065.0078C88.747%2065.0078%2087.9576%2065.7962%2087.9576%2066.7676C87.9576%2067.7389%2088.747%2068.5273%2089.7196%2068.5273C90.6922%2068.5273%2091.4816%2067.7389%2091.4816%2066.7676C91.4816%2065.7962%2090.6922%2065.0078%2089.7196%2065.0078Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M97.6558%2060.5918C97.6558%2059.6204%2096.8664%2058.832%2095.8938%2058.832C94.9211%2058.832%2094.1317%2059.6204%2094.1317%2060.5918C94.1317%2061.5632%2094.9211%2062.3515%2095.8938%2062.3515C96.8664%2062.3515%2097.6558%2061.5632%2097.6558%2060.5918Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M91.0658%2075.1635C91.0658%2076.8529%2092.4366%2078.2255%2094.1317%2078.2255C95.8268%2078.2255%2097.1976%2076.8564%2097.1976%2075.1635C97.1976%2073.4706%2095.8268%2072.1016%2094.1317%2072.1016C92.4366%2072.1016%2091.0658%2073.4706%2091.0658%2075.1635Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M80.7206%2067.1035C79.029%2067.1035%2077.6547%2068.4726%2077.6547%2070.1655C77.6547%2071.8584%2079.0255%2073.2274%2080.7206%2073.2274C82.4157%2073.2274%2083.7865%2071.8584%2083.7865%2070.1655C83.7865%2068.4726%2082.4157%2067.1035%2080.7206%2067.1035Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M80.5218%2078.81C80.5218%2080.4994%2081.8927%2081.872%2083.5877%2081.872C85.2828%2081.872%2086.6537%2080.5029%2086.6537%2078.81C86.6537%2077.1171%2085.2828%2075.748%2083.5877%2075.748C81.8927%2075.748%2080.5218%2077.1171%2080.5218%2078.81Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1553_3342%22%3E%0A%3Crect%20width%3D%22100%22%20height%3D%2284%22%20fill%3D%22white%22%20transform%3D%22translate(0%208)%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
  }
}
.icon-biomasspower {
  &::before {
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M52.4229%2064.4795C53.1131%2064.4795%2053.6726%2065.0393%2053.6729%2065.7295V75.1025C53.6729%2075.6367%2053.3335%2076.112%2052.8281%2076.2852C52.3227%2076.4583%2051.7631%2076.2912%2051.4355%2075.8691C50.875%2075.1467%2050.1621%2074.4773%2049.3477%2073.8965L48.9131%2073.6045C46.6924%2072.1838%2043.7798%2071.3291%2040.5576%2071.3291C37.1231%2071.3292%2034.0406%2072.3001%2031.7725%2073.8926C29.504%2075.5011%2028.1191%2077.7335%2028.1191%2080.1426C28.1191%2080.9839%2028.2811%2081.7856%2028.5801%2082.5391C28.7327%2082.9239%2028.6847%2083.3596%2028.4521%2083.7021C28.2195%2084.0448%2027.8321%2084.25%2027.418%2084.25H21.3447C20.793%2084.2499%2020.3062%2083.8878%2020.1475%2083.3594L19.5801%2081.4717L19.0488%2083.3418C18.896%2083.8791%2018.4053%2084.25%2017.8467%2084.25H14C13.3096%2084.25%2012.75%2083.6904%2012.75%2083V65.7295C12.7502%2065.0393%2013.3098%2064.4795%2014%2064.4795H52.4229ZM40.5576%2071.6553C43.8822%2071.6553%2046.9203%2072.6116%2049.0791%2074.1465H49.0781C51.244%2075.6747%2052.5918%2077.7587%2052.5918%2080.1426C52.5918%2081.4152%2052.1996%2082.6063%2051.502%2083.6807C51.2714%2084.0357%2050.8764%2084.25%2050.4531%2084.25H47.9834C47.5143%2084.2499%2047.0848%2083.987%2046.8711%2083.5693C46.6574%2083.1514%2046.696%2082.6491%2046.9707%2082.2686C47.3837%2081.6965%2047.6054%2081.099%2047.6055%2080.4727C47.6055%2079.3052%2046.8414%2078.2041%2045.541%2077.4102C45.5366%2077.4075%2045.5317%2077.4051%2045.5273%2077.4023C44.2615%2076.6081%2042.5653%2076.1484%2040.6387%2076.1484C38.7121%2076.1485%2037.0158%2076.6081%2035.75%2077.4023C35.7458%2077.405%2035.7415%2077.4076%2035.7373%2077.4102C34.4367%2078.2041%2033.6719%2079.3051%2033.6719%2080.4727C33.672%2081.099%2033.8946%2081.6965%2034.3076%2082.2686C34.5822%2082.6491%2034.6209%2083.1516%2034.4072%2083.5693C34.1935%2083.9872%2033.7633%2084.25%2033.2939%2084.25H30.6621C30.239%2084.2498%2029.8447%2084.0355%2029.6143%2083.6807C28.9166%2082.6063%2028.5244%2081.4152%2028.5244%2080.1426C28.5244%2077.759%2029.8716%2075.6747%2032.0371%2074.1465L32.4521%2073.8662C34.5768%2072.4964%2037.4409%2071.6554%2040.5576%2071.6553ZM40.6387%2076.4746C42.4468%2076.4746%2044.1361%2076.9445%2045.3008%2077.667C46.406%2078.3527%2047.2002%2079.2997%2047.2002%2080.4727C47.2%2081.6455%2046.4059%2082.5917%2045.3008%2083.2773L45.2998%2083.2783C44.6333%2083.6908%2043.8037%2084.0223%2042.8906%2084.2217C42.8032%2084.2407%2042.7135%2084.25%2042.624%2084.25H38.6533C38.5637%2084.25%2038.4742%2084.2408%2038.3867%2084.2217C37.4736%2084.0223%2036.6441%2083.6908%2035.9775%2083.2783L35.9766%2083.2773C34.9404%2082.6345%2034.1781%2081.7625%2034.0869%2080.6895L34.0781%2080.4727L34.0869%2080.2549C34.1782%2079.1819%2034.9405%2078.3098%2035.9766%2077.667C37.1412%2076.9445%2038.8305%2076.4746%2040.6387%2076.4746ZM84.9775%2020.4346C85.2912%2019.9889%2085.8574%2019.7985%2086.377%2019.9629C86.8966%2020.1274%2087.25%2020.6092%2087.25%2021.1543V27.5947C87.2499%2027.8451%2087.1749%2028.0898%2087.0342%2028.2969L85.3389%2030.79L85.6895%2030.7012C86.0636%2030.6052%2086.4615%2030.6871%2086.7666%2030.9238C87.0718%2031.1606%2087.25%2031.5259%2087.25%2031.9121V33.749C87.25%2033.9962%2087.1764%2034.2378%2087.0391%2034.4434L56.3682%2080.335C56.0622%2080.7927%2055.4926%2080.9958%2054.9658%2080.8359C54.4392%2080.6761%2054.0793%2080.191%2054.0791%2079.6406V74.5693C54.0791%2074.312%2054.1586%2074.0601%2054.3066%2073.8496L67.082%2055.6777L66.7705%2055.4697L56.3516%2070.2949C56.0382%2070.7408%2055.4718%2070.9327%2054.9521%2070.7686C54.4324%2070.6042%2054.0791%2070.1213%2054.0791%2069.5762V64.7568C54.0791%2064.4994%2054.1585%2064.2477%2054.3066%2064.0371L84.9775%2020.4346ZM63.8037%2016.75L63.9785%2016.7627C64.3801%2016.8194%2064.734%2017.0689%2064.9199%2017.4375C65.1322%2017.8588%2065.0891%2018.3638%2064.8086%2018.7432L59.0781%2026.4932L59.3926%2026.7148L66.3818%2017.2568L66.4766%2017.1436C66.7113%2016.8939%2067.0407%2016.75%2067.3877%2016.75H73.0215L73.1943%2016.7617C73.5912%2016.8171%2073.9416%2017.0612%2074.1299%2017.4229C74.345%2017.8365%2074.3126%2018.3361%2074.0449%2018.7178L51.6768%2050.5967L51.9893%2050.8057L75.501%2017.2822L75.5957%2017.1641C75.8311%2016.9025%2076.1678%2016.75%2076.5244%2016.75H84.6924C85.1589%2016.75%2085.5867%2017.0098%2085.8018%2017.4238C86.0168%2017.8379%2085.9831%2018.3371%2085.7148%2018.7188L54.1396%2063.623C53.9056%2063.9559%2053.5241%2064.1543%2053.1172%2064.1543H34.2627C33.9194%2064.1543%2033.5906%2064.0129%2033.3545%2063.7637C33.1185%2063.5145%2032.9961%2063.1786%2033.0146%2062.8359L33.0898%2061.4414L30.873%2063.7666C30.6372%2064.0138%2030.3104%2064.1542%2029.9688%2064.1543H25.5293C25.0558%2064.1543%2024.6229%2063.8864%2024.4111%2063.4629C24.1994%2063.0394%2024.2451%2062.5321%2024.5293%2062.1533L34.7822%2048.4863L34.4697%2048.2656L22.9463%2063.6533C22.7103%2063.9685%2022.3391%2064.1543%2021.9453%2064.1543H15.5449C15.0628%2064.1543%2014.6233%2063.8767%2014.416%2063.4414C14.2088%2063.0062%2014.2705%2062.4905%2014.5742%2062.1162L51.0332%2017.2119L51.127%2017.1084C51.3593%2016.88%2051.6735%2016.7501%2052.0029%2016.75H63.8037Z%22%20fill%3D%22%23D7E8B9%22%20stroke%3D%22%23231815%22%20stroke-width%3D%222.5%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
  }
}
.icon-windpower {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1169_3147)%22%3E%0A%3Cpath%20d%3D%22M29.0658%2043.2434C29.0658%2040.9487%2030.9324%2039.082%2033.2271%2039.082C35.5218%2039.082%2037.3885%2040.9487%2037.3885%2043.2434C37.3885%2045.538%2035.5218%2047.4047%2033.2271%2047.4047C30.9324%2047.4047%2029.0658%2045.538%2029.0658%2043.2434Z%22%20fill%3D%22%23A9D06B%22%2F%3E%0A%3Cpath%20d%3D%22M72.7099%2065.3973C72.7099%2063.9767%2073.8663%2062.8203%2075.2777%2062.8203C76.6891%2062.8203%2077.8547%2063.9767%2077.8547%2065.3973C77.8547%2066.8178%2076.6982%2067.9742%2075.2777%2067.9742C73.8572%2067.9742%2072.7099%2066.8178%2072.7099%2065.3973Z%22%20fill%3D%22%23A9D06B%22%2F%3E%0A%3Cpath%20d%3D%22M72.8738%2092.7422L73.921%2075.7507C73.9665%2075.0314%2074.5675%2074.4668%2075.2868%2074.4668C76.0062%2074.4668%2076.6072%2075.0314%2076.6527%2075.7507L77.6999%2092.7331H72.8738V92.7422Z%22%20fill%3D%22%23DCDDDD%22%2F%3E%0A%3Cpath%20d%3D%22M72.0725%2056.0645C71.7356%2055.937%2071.5352%2055.6001%2071.5626%2055.2449L72.6735%2041.395C72.7099%2041.0035%2073.0195%2040.6848%2073.411%2040.6483L74.613%2040.5391C74.613%2040.5391%2074.6585%2040.5391%2074.6858%2040.5391C75.0774%2040.5391%2075.4234%2040.8304%2075.4872%2041.222L77.9639%2056.5562C78.0641%2057.1845%2077.9457%2057.8401%2077.6179%2058.3956L76.2885%2060.6629C76.1974%2060.6447%2076.0972%2060.6447%2076.0062%2060.6265L75.7968%2058.2043C75.7603%2057.7764%2075.4781%2057.403%2075.0774%2057.2482L72.0725%2056.0645Z%22%20fill%3D%22%23DCDDDD%22%2F%3E%0A%3Cpath%20d%3D%22M68.7944%2068.5479C68.4393%2068.7937%2068.2571%2069.2217%2068.3209%2069.6497L68.8035%2072.8458C68.8581%2073.201%2068.676%2073.547%2068.3482%2073.7018L55.8004%2079.6661C55.4453%2079.8391%2055.0173%2079.7207%2054.7896%2079.402L54.0976%2078.4186C53.8518%2078.0726%2053.9246%2077.59%2054.2524%2077.3259L66.2903%2067.5098C66.782%2067.1092%2067.4012%2066.8906%2068.0295%2066.8906H68.0477L70.6884%2066.9088C70.7157%2066.9999%2070.7339%2067.091%2070.7703%2067.1729L68.7853%2068.557L68.7944%2068.5479Z%22%20fill%3D%22%23DCDDDD%22%2F%3E%0A%3Cpath%20d%3D%22M97.6507%2076.1433L97.1408%2077.236C96.9587%2077.6184%2096.5034%2077.8005%2096.1209%2077.6548L81.6063%2072.1367C81.0053%2071.9091%2080.5045%2071.4811%2080.1858%2070.9257L78.8836%2068.631C78.9474%2068.5673%2079.002%2068.4944%2079.0566%2068.4216L81.2602%2069.4505C81.6518%2069.6326%2082.1071%2069.578%2082.4531%2069.3048L84.9845%2067.2924C85.2668%2067.0648%2085.6584%2067.0557%2085.9497%2067.256L97.3866%2075.1416C97.7144%2075.3693%2097.8328%2075.7882%2097.6598%2076.1524L97.6507%2076.1433Z%22%20fill%3D%22%23DCDDDD%22%2F%3E%0A%3Cpath%20d%3D%22M33.2271%2052.4395C30.723%2052.4395%2028.6833%2054.3972%2028.5649%2056.8922L26.9168%2093.8162C26.9077%2094.1258%2027.0169%2094.4263%2027.2355%2094.654C27.454%2094.8816%2027.7454%2095.0091%2028.055%2095.0091H38.3992C38.7088%2095.0091%2039.0093%2094.8816%2039.2187%2094.654C39.4373%2094.4263%2039.5465%2094.1258%2039.5374%2093.8162L37.8893%2056.8922C37.78%2054.3972%2035.7312%2052.4395%2033.2271%2052.4395ZM29.2479%2092.7418L30.8414%2057.0015C30.896%2055.7267%2031.9432%2054.725%2033.2271%2054.725C34.511%2054.725%2035.5582%2055.7267%2035.6128%2057.0015L37.2154%2092.7418H29.2479Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M63.3946%2063.5944C64.8789%2063.5944%2066.2994%2062.7476%2066.9641%2061.3271L67.6926%2059.77C68.503%2058.0308%2067.9475%2055.9729%2066.3631%2054.8802L50.0273%2043.6163C48.5977%2042.6329%2046.7219%2042.6966%2045.356%2043.7802L42.2965%2046.2205L39.4555%2044.8911C39.5921%2044.363%2039.674%2043.8166%2039.674%2043.2429C39.674%2041.0849%2038.6086%2039.1818%2036.9696%2038.0071L38.9455%2034.638C39.7378%2033.2994%2040.0291%2031.7059%2039.7833%2030.1761L36.2411%208.27664C35.9133%206.25515%2034.0922%204.82554%2032.0251%204.99855L30.3132%205.14424C28.401%205.30814%2026.8986%206.81971%2026.7438%208.74103L25.1502%2028.5189C25.0137%2030.249%2026.0062%2031.8425%2027.627%2032.4799L31.2694%2033.9095L31.5425%2037.0328C29.002%2037.7248%2027.0807%2039.9284%2026.8166%2042.6238L22.9102%2042.5964C21.3804%2042.6055%2019.8325%2043.1246%2018.6214%2044.108L1.43872%2058.1218C-0.145693%2059.4149%20-0.464396%2061.7368%200.701147%2063.4123L1.68457%2064.8237C2.44036%2065.9073%203.65143%2066.4992%204.88982%2066.4992C5.45438%2066.4992%206.03715%2066.3717%206.57439%2066.1167L24.4946%2057.6028C26.0699%2056.8561%2026.9532%2055.1989%2026.6891%2053.4779L26.1064%2049.6079L28.6742%2047.8141C29.8397%2048.9705%2031.4424%2049.6899%2033.2089%2049.6899C34.1559%2049.6899%2035.0574%2049.4804%2035.8769%2049.1071L37.8073%2052.5036C38.5813%2053.8603%2039.8015%2054.9075%2041.2584%2055.4538L61.9924%2063.3395C62.4476%2063.5125%2062.912%2063.5944%2063.3764%2063.5944H63.3946ZM28.4648%2030.3582C27.7818%2030.0942%2027.363%2029.4203%2027.4267%2028.6919L29.0202%208.91404C29.084%208.11273%2029.7123%207.47533%2030.5136%207.40248L32.2255%207.24768C33.0905%207.16573%2033.8554%207.77582%2033.992%208.62266L37.5341%2030.5221C37.6981%2031.5329%2037.5068%2032.58%2036.9787%2033.4724L34.8935%2037.0237C34.5383%2036.9326%2034.1741%2036.8598%2033.8008%2036.8234L33.4639%2032.9989C33.4274%2032.5709%2033.1451%2032.1976%2032.7445%2032.0428L28.4466%2030.3491L28.4648%2030.3582ZM24.2397%2048.151C23.8845%2048.3968%2023.7024%2048.8248%2023.7662%2049.2528L24.4491%2053.8239C24.5584%2054.5433%2024.185%2055.2444%2023.5294%2055.554L5.60918%2064.0679C4.88071%2064.4139%204.01566%2064.1863%203.55127%2063.5216L2.56784%2062.1102C2.07612%2061.409%202.21271%2060.4347%202.87744%2059.8884L20.0692%2045.8745C20.8614%2045.228%2021.8539%2044.882%2022.8647%2044.882H22.892L27.0078%2044.9093C27.108%2045.2735%2027.2264%2045.6196%2027.3812%2045.9474L24.2306%2048.151H24.2397ZM29.0657%2043.2429C29.0657%2040.9483%2030.9324%2039.0816%2033.2271%2039.0816C35.5218%2039.0816%2037.3885%2040.9483%2037.3885%2043.2429C37.3885%2045.5376%2035.5218%2047.4043%2033.2271%2047.4043C30.9324%2047.4043%2029.0657%2045.5376%2029.0657%2043.2429ZM39.8015%2051.3744L37.7709%2047.805C38.035%2047.5409%2038.2717%2047.2586%2038.4812%2046.9581L41.9687%2048.579C42.3602%2048.7611%2042.8155%2048.7064%2043.1615%2048.4333L46.7765%2045.5558C47.3502%2045.1005%2048.1333%2045.0732%2048.7343%2045.4921L65.0701%2056.756C65.7348%2057.2113%2065.9716%2058.0763%2065.6256%2058.8048L64.8971%2060.3619C64.5329%2061.145%2063.6223%2061.5092%2062.821%2061.2087L42.0871%2053.3231C41.1309%2052.9588%2040.3205%2052.2668%2039.8106%2051.3744H39.8015Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M78.9201%2075.6132C78.8017%2073.6919%2077.1991%2072.1895%2075.2777%2072.1895C73.3564%2072.1895%2071.7538%2073.6919%2071.6354%2075.6132L70.5154%2093.8067C70.4972%2094.1162%2070.6064%2094.4258%2070.825%2094.6535C71.0435%2094.8811%2071.344%2095.0086%2071.6536%2095.0086H78.8927C79.2023%2095.0086%2079.5028%2094.8811%2079.7214%2094.6535C79.9399%2094.4258%2080.0492%2094.1162%2080.031%2093.8067L78.911%2075.6132H78.9201ZM72.8738%2092.7413L73.921%2075.7498C73.9665%2075.0305%2074.5675%2074.4659%2075.2868%2074.4659C76.0062%2074.4659%2076.6072%2075.0305%2076.6527%2075.7498L77.6999%2092.7322H72.8738V92.7413Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M98.6706%2073.2652L87.2337%2065.3796C86.1136%2064.6056%2084.6294%2064.6511%2083.5549%2065.5071L81.5789%2067.0824L80.031%2066.363C80.0947%2066.0534%2080.1311%2065.7347%2080.1311%2065.4069C80.1311%2063.8954%2079.4209%2062.5659%2078.3373%2061.6735L79.5757%2059.5519C80.1675%2058.5411%2080.3861%2057.3574%2080.204%2056.2009L77.7272%2040.8668C77.4722%2039.2732%2076.0153%2038.1441%2074.4127%2038.2807L73.2107%2038.39C71.7083%2038.5175%2070.5245%2039.7103%2070.4061%2041.2128L69.2952%2055.0627C69.1859%2056.4286%2069.969%2057.6852%2071.2439%2058.186L73.5932%2059.1148L73.7479%2060.8358C72.0725%2061.4004%2070.8159%2062.8482%2070.5245%2064.6329L68.075%2064.6147C66.9004%2064.6147%2065.7622%2065.0063%2064.8607%2065.7438L52.8228%2075.5599C51.5753%2076.5798%2051.3203%2078.4009%2052.24%2079.7213L52.9321%2080.7047C53.5239%2081.5515%2054.4801%2082.025%2055.4544%2082.025C55.9006%2082.025%2056.3559%2081.9249%2056.7838%2081.7245L69.3316%2075.7602C70.57%2075.1775%2071.2621%2073.8662%2071.0617%2072.5095L70.6884%2070.0054L72.0998%2069.0128C72.9557%2069.7686%2074.0667%2070.2421%2075.2868%2070.2421C75.8878%2070.2421%2076.4615%2070.1146%2076.9987%2069.9143L78.2098%2072.0359C78.7835%2073.0558%2079.7032%2073.8389%2080.7959%2074.2578L95.3105%2079.7759C95.6656%2079.9125%2096.0299%2079.9762%2096.3941%2079.9762C97.5596%2079.9762%2098.6797%2079.3115%2099.1987%2078.1915L99.7086%2077.0988C100.346%2075.7329%2099.9089%2074.1121%2098.6614%2073.2561L98.6706%2073.2652ZM72.0725%2056.0644C71.7356%2055.9369%2071.5352%2055.6%2071.5626%2055.2448L72.6735%2041.3949C72.7099%2041.0034%2073.0195%2040.6846%2073.411%2040.6482L74.613%2040.539C74.613%2040.539%2074.6585%2040.539%2074.6858%2040.539C75.0774%2040.539%2075.4234%2040.8303%2075.4872%2041.2219L77.9639%2056.5561C78.0641%2057.1844%2077.9457%2057.84%2077.6179%2058.3954L76.2885%2060.6628C76.1974%2060.6446%2076.0972%2060.6446%2076.0062%2060.6264L75.7968%2058.2042C75.7603%2057.7763%2075.4781%2057.4029%2075.0774%2057.2481L72.0725%2056.0644ZM68.7944%2068.5484C68.4393%2068.7943%2068.2571%2069.2223%2068.3209%2069.6502L68.8035%2072.8464C68.8581%2073.2015%2068.676%2073.5475%2068.3482%2073.7023L55.8004%2079.6666C55.4453%2079.8396%2055.0173%2079.7213%2054.7897%2079.4026L54.0976%2078.4191C53.8518%2078.0731%2053.9246%2077.5905%2054.2524%2077.3264L66.2903%2067.5104C66.782%2067.1097%2067.4012%2066.8912%2068.0295%2066.8912H68.0477L70.6884%2066.9094C70.7157%2067.0004%2070.7339%2067.0915%2070.7704%2067.1735L68.7853%2068.5575L68.7944%2068.5484ZM72.7099%2065.3978C72.7099%2063.9773%2073.8663%2062.8209%2075.2777%2062.8209C76.6891%2062.8209%2077.8547%2063.9773%2077.8547%2065.3978C77.8547%2066.8183%2076.6982%2067.9748%2075.2777%2067.9748C73.8572%2067.9748%2072.7099%2066.8183%2072.7099%2065.3978ZM97.6507%2076.1427L97.1408%2077.2354C96.9587%2077.6178%2096.5034%2077.7999%2096.1209%2077.6542L81.6063%2072.1361C81.0053%2071.9085%2080.5045%2071.4805%2080.1858%2070.925L78.8836%2068.6304C78.9474%2068.5666%2079.002%2068.4938%2079.0566%2068.4209L81.2602%2069.4499C81.6518%2069.632%2082.1071%2069.5774%2082.4531%2069.3042L84.9845%2067.2918C85.2668%2067.0642%2085.6584%2067.0551%2085.9497%2067.2554L97.3866%2075.141C97.7144%2075.3687%2097.8328%2075.7875%2097.6598%2076.1518L97.6507%2076.1427Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M29.2479%2092.7414L30.8414%2057.0011C30.896%2055.7262%2031.9432%2054.7246%2033.2271%2054.7246C34.511%2054.7246%2035.5582%2055.7262%2035.6128%2057.0011L37.2154%2092.7414H29.2479Z%22%20fill%3D%22%23A9D06B%22%2F%3E%0A%3Cpath%20d%3D%22M28.4648%2030.3582C27.7818%2030.0941%2027.363%2029.4203%2027.4267%2028.6918L29.0202%208.91397C29.084%208.11266%2029.7123%207.47526%2030.5136%207.40241L32.2255%207.24761C33.0905%207.16566%2033.8554%207.77575%2033.992%208.62259L37.5341%2030.5221C37.6981%2031.5328%2037.5068%2032.58%2036.9787%2033.4723L34.8935%2037.0236C34.5383%2036.9325%2034.1741%2036.8597%2033.8008%2036.8233L33.4638%2032.9988C33.4274%2032.5709%2033.1451%2032.1975%2032.7445%2032.0427L28.4465%2030.3491L28.4648%2030.3582Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M24.2397%2048.1518C23.8845%2048.3977%2023.7024%2048.8256%2023.7662%2049.2536L24.4491%2053.8247C24.5584%2054.5441%2024.185%2055.2452%2023.5294%2055.5548L5.60917%2064.0688C4.88071%2064.4148%204.01566%2064.1871%203.55126%2063.5224L2.56783%2062.111C2.07612%2061.4099%202.21271%2060.4355%202.87743%2059.8892L20.0692%2045.8753C20.8614%2045.2288%2021.8539%2044.8828%2022.8647%2044.8828H22.892L27.0078%2044.9101C27.108%2045.2744%2027.2264%2045.6204%2027.3812%2045.9482L24.2306%2048.1518H24.2397Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3Cpath%20d%3D%22M39.8015%2051.3745L37.7709%2047.805C38.035%2047.5409%2038.2717%2047.2587%2038.4812%2046.9582L41.9687%2048.579C42.3602%2048.7611%2042.8155%2048.7065%2043.1615%2048.4333L46.7765%2045.5559C47.3502%2045.1006%2048.1333%2045.0733%2048.7343%2045.4921L65.0701%2056.756C65.7348%2057.2113%2065.9716%2058.0764%2065.6256%2058.8048L64.8971%2060.3619C64.5329%2061.145%2063.6223%2061.5093%2062.821%2061.2088L42.0871%2053.3231C41.1309%2052.9589%2040.3205%2052.2669%2039.8106%2051.3745H39.8015Z%22%20fill%3D%22%23D7E8B9%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1169_3147%22%3E%0A%3Crect%20width%3D%22100%22%20height%3D%2290.0382%22%20fill%3D%22white%22%20transform%3D%22translate(0%204.98047)%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
  }
}

.icon-hydroelectricpower {
  &::before {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%2299%22%20viewBox%3D%220%200%20100%2099%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1175_3169)%22%3E%0A%3Cpath%20d%3D%22M93.1682%2022.6234C92.156%2022.6234%2091.3365%2021.8014%2091.3365%2020.7901C91.3365%2014.0578%2087.3314%208.57866%2082.407%208.57866C77.4826%208.57866%2073.4776%2014.056%2073.4776%2020.7901C73.4776%2021.8031%2072.658%2022.6234%2071.6458%2022.6234C70.6336%2022.6234%2069.8141%2021.8014%2069.8141%2020.7901C69.8141%2014.0578%2065.8091%208.57866%2060.8846%208.57866C55.9602%208.57866%2051.9552%2014.056%2051.9552%2020.7901C51.9552%2021.8031%2051.1357%2022.6234%2050.1235%2022.6234C49.1113%2022.6234%2048.2917%2021.8014%2048.2917%2020.7901C48.2917%2014.0578%2044.2867%208.57866%2039.3623%208.57866C34.4379%208.57866%2030.4328%2014.056%2030.4328%2020.7901C30.4328%2021.8031%2029.6133%2022.6234%2028.6011%2022.6234C27.5889%2022.6234%2026.7693%2021.8014%2026.7693%2020.7901C26.7693%2016.6378%2028.0232%2012.7134%2030.2997%209.74248C32.6831%206.6261%2035.9019%204.91016%2039.3605%204.91016C42.8192%204.91016%2046.0361%206.6261%2048.4248%209.74248C49.0762%2010.5926%2049.6436%2011.5215%2050.1235%2012.5101C50.6015%2011.5198%2051.1707%2010.5926%2051.8221%209.74248C54.209%206.6261%2057.4278%204.91016%2060.8864%204.91016C64.345%204.91016%2067.562%206.6261%2069.9507%209.74248C70.6021%2010.5926%2071.1695%2011.5215%2071.6493%2012.5101C72.1274%2011.5215%2072.6966%2010.5926%2073.348%209.74248C75.7349%206.6261%2078.9536%204.91016%2082.4123%204.91016C85.8709%204.91016%2089.0879%206.6261%2091.4766%209.74248C93.7531%2012.7134%2095.007%2016.6378%2095.007%2020.7901C95.007%2021.8031%2094.1874%2022.6234%2093.1752%2022.6234H93.1682Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M40.4848%2064.4135C38.8229%2064.7115%2037.224%2065.1532%2035.7233%2065.7351C35.5726%2065.793%2035.4238%2065.8508%2035.2749%2065.9122C34.3363%2065.5265%2033.3539%2065.197%2032.3434%2064.9236C32.3434%2064.9236%2032.3452%2064.9236%2032.3469%2064.9236C30.0143%2064.2926%2027.5136%2063.9648%2024.9533%2063.9648C23.787%2063.9648%2022.6347%2064.0367%2021.5069%2064.1682C20.577%2064.2768%2019.6664%2064.4293%2018.775%2064.6256C17.4213%2064.9306%2015.4775%2065.5178%2013.9907%2066.1838C12.9785%2066.6378%2012.0189%2067.1548%2011.1292%2067.735C7.17676%2070.3203%205%2073.8363%205%2077.6328C5%2081.4292%207.17676%2084.9452%2011.131%2087.5306C14.8488%2089.9616%2019.7575%2091.3007%2024.9533%2091.3007C28.6203%2091.3007%2032.17%2090.6294%2035.2749%2089.3534C38.3798%2090.6294%2041.9295%2091.3007%2045.5966%2091.3007C49.2636%2091.3007%2052.8133%2090.6294%2055.9182%2089.3534C59.0231%2090.6294%2062.5728%2091.3007%2066.2399%2091.3007C71.4357%2091.3007%2076.3443%2089.9616%2080.0622%2087.5306C84.0147%2084.9452%2086.1932%2081.431%2086.1932%2077.6328C86.1932%2073.8346%2084.0164%2070.3203%2080.0622%2067.735C78.7015%2066.8464%2077.1814%2066.1049%2075.5475%2065.5195C72.7141%2064.5047%2069.5356%2063.9648%2066.2399%2063.9648C65.7951%2063.9648%2065.3502%2063.9754%2064.9089%2063.9946C63.9913%2064.035%2063.0842%2064.1191%2062.1911%2064.2435C60.4854%2064.4819%2059.0546%2064.8149%2057.2772%2065.4038C56.8148%2065.5616%2056.3613%2065.7299%2055.9165%2065.9122C55.3035%2065.6598%2054.6731%2065.4336%2054.0287%2065.2286M54.0322%2065.2286C51.4088%2064.3978%2048.5421%2063.9648%2045.5983%2063.9648C44.7963%2063.9648%2043.9995%2063.9981%2043.2114%2064.063C42.2885%2064.1384%2041.3779%2064.2558%2040.4865%2064.4153M78.1078%2084.5351C74.9644%2086.5911%2070.751%2087.7234%2066.2416%2087.7234C62.7847%2087.7234%2059.4714%2087.0503%2056.6555%2085.776C56.4208%2085.6709%2056.1704%2085.6165%2055.9182%2085.6165C55.666%2085.6165%2055.4156%2085.6691%2055.181%2085.776C52.3668%2087.0503%2049.0517%2087.7234%2045.5948%2087.7234C42.1379%2087.7234%2038.8246%2087.0503%2036.0087%2085.776C35.5394%2085.564%2035.0035%2085.564%2034.5342%2085.776C31.72%2087.0503%2028.4049%2087.7234%2024.948%2087.7234C20.4387%2087.7234%2016.2253%2086.5911%2013.0818%2084.5351C10.1731%2082.6334%208.57247%2080.183%208.57247%2077.6345C8.57247%2075.086%2010.1748%2072.6357%2013.0818%2070.734C16.2253%2068.678%2020.4387%2067.5457%2024.948%2067.5457C28.4049%2067.5457%2031.7182%2068.2188%2034.5342%2069.493C35.0035%2069.7051%2035.5394%2069.7051%2036.0087%2069.493C38.8229%2068.2188%2042.1379%2067.5457%2045.5948%2067.5457C49.0517%2067.5457%2052.365%2068.2188%2055.181%2069.493C55.6503%2069.7051%2056.1862%2069.7051%2056.6555%2069.493C59.4697%2068.2188%2062.7847%2067.5457%2066.2416%2067.5457C70.751%2067.5457%2074.9644%2068.678%2078.1078%2070.734C81.0166%2072.6357%2082.6172%2075.086%2082.6172%2077.6345C82.6172%2080.183%2081.0148%2082.6334%2078.1078%2084.5351Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M89.6394%2016.6602C89.6658%2016.6602%2089.6922%2016.6637%2089.7185%2016.665C91.5792%2016.7222%2092.904%2018.8818%2091.7165%2020.5684L91.7175%2020.5693C82.9635%2032.9999%2077.9948%2048.9794%2077.6931%2065.9951C77.6844%2066.4781%2077.444%2066.9275%2077.0466%2067.2021C76.649%2067.4769%2076.1432%2067.5428%2075.6882%2067.3799C73.028%2066.4271%2070.0216%2065.9131%2066.8864%2065.9131C66.4635%2065.9131%2066.0421%2065.923%2065.6208%2065.9414C65.1922%2065.9601%2064.7757%2065.7946%2064.4773%2065.4863C64.3881%2065.3942%2064.3137%2065.2911%2064.2517%2065.1816C64.0707%2065.7035%2063.611%2066.0964%2063.0427%2066.1758C61.428%2066.4015%2059.8707%2066.7711%2058.405%2067.2705C57.9246%2067.4341%2057.3939%2067.3438%2056.9948%2067.0303C56.5957%2066.7167%2056.3822%2066.2224%2056.4275%2065.7168C58.0435%2047.671%2064.6776%2030.6768%2075.2458%2017.5732V17.5723C75.7142%2016.9885%2076.4199%2016.6602%2077.1521%2016.6602H89.6394Z%22%20fill%3D%22%23D7E8B9%22%20stroke%3D%22%23231815%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M68.115%2016.6582C69.9561%2016.6582%2071.3078%2018.7221%2070.2946%2020.4053L70.1892%2020.5664C61.4851%2032.9265%2056.5243%2048.7968%2056.1726%2065.7051C56.1626%2066.1775%2055.9307%2066.6174%2055.5466%2066.8926C55.1624%2067.1678%2054.671%2067.2461%2054.2204%2067.1035C51.7518%2066.3217%2049.038%2065.9102%2046.239%2065.9102C45.4807%2065.9102%2044.7242%2065.9427%2043.9724%2066.0029C43.5354%2066.0379%2043.1043%2065.8805%2042.7937%2065.5713C42.7046%2065.4826%2042.6294%2065.3831%2042.5661%2065.2773C42.4973%2065.514%2042.3709%2065.7361%2042.1882%2065.9189L42.1872%2065.9209C41.9603%2066.148%2041.6725%2066.2889%2041.3698%2066.3389C39.8058%2066.621%2038.306%2067.036%2036.9079%2067.5781C36.4253%2067.7652%2035.8807%2067.6904%2035.4665%2067.3799C35.0523%2067.0694%2034.8275%2066.5675%2034.8718%2066.0518C36.4328%2047.8776%2043.0885%2030.7533%2053.7243%2017.5674V17.5684C54.1927%2016.9859%2054.8964%2016.6582%2055.6277%2016.6582H68.115Z%22%20fill%3D%22%23A9D06B%22%20stroke%3D%22%23231815%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M57.2596%2066.0859C57.2491%2066.0894%2057.2386%2066.0929%2057.2281%2066.0981C57.2386%2066.0946%2057.2491%2066.0911%2057.2596%2066.0859Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M63.5062%2064.605C63.5062%2064.605%2063.5237%2064.605%2063.5325%2064.6016C63.5237%2064.6016%2063.515%2064.6016%2063.5062%2064.605Z%22%20fill%3D%22%23231815%22%2F%3E%0A%3Cpath%20d%3D%22M46.4213%2016.6621C48.3216%2016.6621%2049.6989%2018.8599%2048.4945%2020.5693C39.8542%2032.8398%2034.9036%2048.5673%2034.4877%2065.3359C34.4895%2065.4129%2034.4873%2065.4909%2034.477%2065.5693C34.378%2066.3149%2033.7418%2066.872%2032.9897%2066.8721H32.9857C32.8535%2066.872%2032.7236%2066.853%2032.5981%2066.8193V66.8203C30.3966%2066.2253%2028.0278%2065.9141%2025.5961%2065.9141C24.4897%2065.9141%2023.3972%2065.9813%2022.3236%2066.1064C21.8791%2066.1583%2021.4347%2066.009%2021.1117%2065.6992C21.0207%2065.6119%2020.9427%2065.5141%2020.8773%2065.4092C20.8707%2065.438%2020.8672%2065.4675%2020.8588%2065.4961C20.7048%2066.0217%2020.2765%2066.4213%2019.7416%2066.5391C18.1443%2066.8907%2016.6336%2067.3814%2015.2484%2068.002C14.7646%2068.2186%2014.2018%2068.1634%2013.769%2067.8574C13.3362%2067.5514%2013.0971%2067.0391%2013.14%2066.5107C14.6299%2048.1698%2021.3062%2030.8696%2032.0277%2017.5752V17.5742C32.4961%2016.9905%2033.2018%2016.6621%2033.934%2016.6621H46.4213Z%22%20fill%3D%22%23D7E8B9%22%20stroke%3D%22%23231815%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1175_3169%22%3E%0A%3Crect%20width%3D%2290%22%20height%3D%2288.3929%22%20fill%3D%22white%22%20transform%3D%22translate(5%204.91016)%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
  }
}

/* ポイント強調ボックス */
.highlight-box-point {
  padding: 40px;
  background-color: var(--color-yellow-light);
  border-radius: 20px;

  @media screen and (max-width: 800px) {
    padding: 20px 40px 40px;
  }

  @media screen and (max-width: 600px) {
    padding: 20px 20px 30px;
  }

  .link-btn {
    margin-top: 20px;
  }
}
.highlight-box_header {
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 20px;

  @media screen and (max-width: 800px) {
    row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .highlight-box_title {
    color: var(--color-green);
    font-size: 48px;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 0;

    @media screen and (max-width: 800px) {
      justify-content: center;
      font-size: 40px;
    }

    &::before,
    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M27.5803%2034.7969H21.5021C20.2678%2034.7969%2019.2521%2035.7969%2019.2678%2037.0313V43.1094C19.2678%2044.3438%2020.2678%2045.3438%2021.5021%2045.3438H21.8896C22.1531%2045.8134%2022.5368%2046.2044%2023.0015%2046.4765C23.4661%2046.7486%2023.9949%2046.8921%2024.5334%2046.8921C25.0719%2046.8921%2025.6006%2046.7486%2026.0653%2046.4765C26.5299%2046.2044%2026.9137%2045.8134%2027.1771%2045.3438H27.5803C28.8146%2045.3438%2029.8146%2044.3438%2029.8146%2043.1094V37.0313C29.8146%2035.7969%2028.8146%2034.7969%2027.5803%2034.7969Z%22%20fill%3D%22%239B9B9B%22%2F%3E%0A%3Cpath%20d%3D%22M28.3767%2036.1406C28.7517%2036.1406%2029.0486%2035.8594%2029.0799%2035.5C29.1892%2034.1563%2029.7674%2030.8906%2032.9236%2027.3906C34.4299%2026.2051%2035.6672%2024.7131%2036.5534%2023.0134C37.4397%2021.3136%2037.9546%2019.445%2038.0642%2017.5313C38.0955%2017.1563%2038.1111%2016.9063%2038.1111%2016.75V16.5938C38.0174%209.125%2031.9705%203.125%2024.5174%203.125C20.9405%203.12481%2017.5079%204.53604%2014.9656%207.05209C12.4232%209.56815%2010.9763%2012.9858%2010.9392%2016.5625C10.9392%2016.5625%2010.9236%2016.9375%2010.9861%2017.5625C11.2361%2021.5313%2013.1736%2025.0469%2016.1267%2027.375C19.283%2030.8906%2019.908%2034.1563%2020.0174%2035.5C20.0486%2035.8594%2020.3455%2036.1406%2020.7205%2036.1406H28.3767Z%22%20fill%3D%22%23FCD53F%22%2F%3E%0A%3Cpath%20d%3D%22M24.5329%2016.7188C27.0642%2016.7188%2029.1267%2018.7656%2029.1579%2021.2969V21.4219C29.1579%2021.4688%2029.1579%2021.5313%2029.1423%2021.625C29.0642%2022.9375%2028.4235%2024.1719%2027.3923%2024.9844L27.2829%2025.0625L27.1892%2025.1563C25.4704%2027.0625%2025.1111%2031.9063%2025.0486%2034.5625H24.0329C23.9548%2031.9063%2023.5798%2027.0625%2021.8611%2025.1563L21.7673%2025.0625L21.6579%2024.9844C21.1418%2024.5762%2020.7188%2024.0626%2020.417%2023.4779C20.1152%2022.8932%2019.9416%2022.2509%2019.9079%2021.5938C19.9079%2021.5313%2019.8923%2021.4844%2019.8923%2021.4531V21.3125C19.9392%2018.7813%2022.0173%2016.7188%2024.5329%2016.7188ZM24.5329%2015.1563C23.2472%2015.1567%2021.9935%2015.5577%2020.9461%2016.3035C19.8988%2017.0493%2019.1097%2018.1029%2018.6887%2019.3178C18.2677%2020.5327%2018.2357%2021.8485%2018.597%2023.0825C18.9583%2024.3164%2019.695%2025.4072%2020.7048%2026.2031C22.5798%2028.2969%2022.4861%2036.1406%2022.4861%2036.1406H26.611C26.611%2036.1406%2026.486%2028.2969%2028.3767%2026.2188C29.7204%2025.1563%2030.611%2023.5469%2030.7204%2021.7188C30.736%2021.5469%2030.736%2021.4375%2030.736%2021.3594V21.2969C30.7196%2019.6626%2030.0588%2018.1008%2028.8972%2016.951C27.7357%2015.8011%2026.1673%2015.1562%2024.5329%2015.1563Z%22%20fill%3D%22%23FFB02E%22%2F%3E%0A%3Cpath%20d%3D%22M29.9495%2039.145C30.0507%2039.1274%2030.1474%2039.09%2030.2341%2039.035C30.3208%2038.98%2030.3958%2038.9084%2030.4549%2038.8244C30.5139%2038.7404%2030.5558%2038.6456%2030.5782%2038.5454C30.6007%2038.4451%2030.6031%2038.3415%2030.5855%2038.2403C30.5678%2038.1392%2030.5304%2038.0425%2030.4754%2037.9558C30.4204%2037.8691%2030.3488%2037.7941%2030.2648%2037.735C30.1808%2037.676%2030.086%2037.634%2029.9858%2037.6116C29.8856%2037.5892%2029.7819%2037.5868%2029.6808%2037.6044L19.1495%2039.4482C19.0484%2039.4658%2018.9517%2039.5032%2018.865%2039.5582C18.7783%2039.6132%2018.7032%2039.6848%2018.6442%2039.7688C18.5851%2039.8528%2018.5432%2039.9476%2018.5208%2040.0478C18.4984%2040.148%2018.4959%2040.2517%2018.5136%2040.3528C18.5312%2040.454%2018.5686%2040.5507%2018.6236%2040.6374C18.6787%2040.7241%2018.7502%2040.7991%2018.8342%2040.8582C18.9182%2040.9172%2019.013%2040.9592%2019.1133%2040.9816C19.2135%2041.004%2019.3171%2041.0064%2019.4183%2040.9888L29.9495%2039.145ZM29.8714%2042.5044C30.0732%2042.4663%2030.2518%2042.3503%2030.3687%2042.1815C30.4856%2042.0127%2030.5313%2041.8046%2030.496%2041.6023C30.4607%2041.4001%2030.3471%2041.2198%2030.18%2041.1006C30.0128%2040.9814%2029.8054%2040.9328%2029.6026%2040.9653L19.212%2042.7935C19.1075%2042.8073%2019.0069%2042.8421%2018.9162%2042.8958C18.8256%2042.9495%2018.7467%2043.021%2018.6844%2043.106C18.622%2043.191%2018.5776%2043.2878%2018.5536%2043.3904C18.5296%2043.493%2018.5267%2043.5995%2018.545%2043.7033C18.5632%2043.8071%2018.6023%2043.9061%2018.6598%2043.9944C18.7173%2044.0827%2018.7921%2044.1585%2018.8797%2044.2171C18.9673%2044.2758%2019.0658%2044.3161%2019.1694%2044.3357C19.2729%2044.3552%2019.3794%2044.3536%2019.4823%2044.331L29.8714%2042.5044Z%22%20fill%3D%22%23D3D3D3%22%2F%3E%0A%3Cpath%20d%3D%22M21.5492%208.50027C19.8148%2011.5003%2020.6898%2015.2503%2023.5023%2016.8596C26.3148%2018.469%2029.9867%2017.3596%2031.7211%2014.3596C33.4554%2011.3596%2032.5804%207.60965%2029.7679%206.00027C26.9554%204.3909%2023.2836%205.50027%2021.5492%208.50027Z%22%20fill%3D%22%23FCEA2B%22%2F%3E%0A%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 100%;
      width: 50px;
      height: 50px;
      display: block;

      @media screen and (max-width: 800px) {
        width: 35px;
        height: 35px;
      }
    }
  }

  .highlight-box_text {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
}

/* Youtube・Googleマップ埋め込みブロック */
.oembed-block {
  max-width: 600px;
  width: 100%;
  margin-top: 0;

  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .caption {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
  }
}

.page-contents,
.inner-block,
.inner-block-large,
.frame-white,
.frame-yellow,
.mt-be-column,
body {
  .oembed-block {
    margin-top: 20px;
  }
}

/* 改善事例ブロック */
.comparison-block {
  display: flex;
  gap: 80px;

  @media screen and (max-width: 800px) {
    flex-direction: column;
    align-items: center;
  }
}
.comparison_list_item {
  flex: 1;
  position: relative;

  @media screen and (max-width: 800px) {
    width: 100%;
    max-width: 550px;
  }

  &:not(:last-child) {
    &::before,
    &::after {
      content: "";
      position: absolute;
      top: calc(50% - 2px);
      right: -50px;
      width: 25px;
      height: 4px;
      border-radius: 9999px;
      background-color: var(--color-green);
      transform-origin: calc(100% - 2px) 50%;

      @media screen and (max-width: 800px) {
        bottom: -50px;
        top: auto;
        left: calc(50% - 2px);
        width: 4px;
        height: 25px;
        right: auto;
        transform-origin: 50% calc(100% - 2px);
      }
    }
    &::before {
      transform: rotate(45deg);
    }
    &::after {
      transform: rotate(-45deg);
    }
  }

  .table-block {
    margin-top: 15px !important;
  }
}

/* 流れブロック */
.flow-item {
  position: relative;
  padding-left: 80px;
  z-index: 0;
  padding-bottom: 60px;
  margin-top: 40px;

  @media screen and (max-width: 600px) {
    padding-left: 65px;
    padding-bottom: 40px;
  }

  &::before {
    display: none;
  }

  &[data-num]::before {
    display: block;
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    aspect-ratio: 1/1;
    font-size: 30px;
    line-height: 1;
    padding-bottom: 3px;

    @media screen and (max-width: 600px) {
      width: 50px;
      height: 50px;
      font-size: 26px;
    }
  }
  &::after {
    content: "";
    background: var(--color-green-light);
    width: 3px;
    height: 100%;
    position: absolute;
    left: 29px;
    top: 0;
    z-index: -1;

    @media screen and (max-width: 600px) {
      left: 24px;
    }
  }
  &:last-of-type,
  &:not(:has(+ .flow-item)) {
    &::after {
      display: none;
    }
  }

  + .flow-item {
    margin-top: 0;
  }
}

.flow-title {
  font-size: 20px;
  padding-top: 10px;
  font-weight: 700;

  @media screen and (max-width: 600px) {
    font-size: 18px;
  }
}

.flow-texts {
  font-weight: 500;
  line-height: 1.6;
  margin-top: 10px;
}

.headline-title + .flow-item {
  margin-top: 20px;
}

/** 装飾テキストリンクブロック **/
.text-link-block {
  margin-top: 30px;

  &:first-child {
    margin-top: 0;
  }

  + .text-link-block {
    margin-top: 0;
  }
  .text-link {
    padding: 20px 50px 20px 10px;
    display: block;
    border-bottom: 1px dashed #a3a3a3;
    color: var(--color-text-base);
    font-weight: 500;
    position: relative;

    &:hover {
      color: var(--color-green);
      text-decoration: none;
    }

    &::after {
      content: "";
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M7.91797%202.26245L19.2311%2013.5756L7.91797%2024.8887%22%20stroke%3D%22%234CAC49%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E");
      background-size: 100%;
      background-repeat: no-repeat;
      width: 18px;
      height: 18px;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    &[target="_blank"]::after {
      background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2222%22%20height%3D%2224%22%20viewBox%3D%220%200%2022%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.5%2020.5377V3.46229C0.5%202.66459%200.790525%201.90733%201.29631%201.35505C1.80106%200.803923%202.47942%200.5%203.18085%200.5H8.76596C9.01272%200.5%209.21277%200.734033%209.21277%201.02273C9.21277%201.31142%209.01272%201.54545%208.76596%201.54545H3.18085C2.69728%201.54545%202.23906%201.75542%201.90588%202.11923C1.57375%202.4819%201.39362%202.96606%201.39362%203.46229V20.5377C1.39362%2021.0339%201.57375%2021.5181%201.90588%2021.8808C2.23906%2022.2446%202.69728%2022.4545%203.18085%2022.4545H18.8191C19.3027%2022.4545%2019.7609%2022.2446%2020.0941%2021.8808C20.4263%2021.5181%2020.6064%2021.0339%2020.6064%2020.5377V14.4396C20.6064%2014.1509%2020.8064%2013.9168%2021.0532%2013.9168C21.3%2013.9168%2021.5%2014.1509%2021.5%2014.4396V20.5377C21.5%2021.3354%2021.2095%2022.0927%2020.7037%2022.645C20.1989%2023.1961%2019.5206%2023.5%2018.8191%2023.5H3.18085C2.47942%2023.5%201.80106%2023.1961%201.29631%2022.645C0.790525%2022.0927%200.5%2021.3354%200.5%2020.5377ZM21.5%207.12138C21.4999%207.41%2021.2999%207.64411%2021.0532%207.64411C20.8065%207.64411%2020.6065%207.41%2020.6064%207.12138V2.22592L12.9805%2010.5528C12.8001%2010.7498%2012.5171%2010.7383%2012.3487%2010.5273C12.1804%2010.3162%2012.1901%209.98508%2012.3705%209.78811L19.9192%201.54545H15.4681C15.2213%201.54545%2015.0213%201.31142%2015.0213%201.02273C15.0213%200.734033%2015.2213%200.5%2015.4681%200.5H21.0532C21.3%200.5%2021.5%200.734033%2021.5%201.02273V7.12138Z%22%20fill%3D%22%234CAC49%22%20stroke%3D%22%234CAC49%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 100%;
      width: 16px;
      height: 18px;
    }
  }
}

/** 【エコサポしまねとは？】セクション見出しブロック **/
.page-contents,
body {
  .page-title.about-section-title {
    margin-bottom: 20px;
    margin-top: 48px;
    .page-title_eg {
      font-size: 2.25rem;

      @media screen and (max-width: 800px) {
        font-size: 28px;
      }
      @media screen and (max-width: 600px) {
        font-size: 26px;
      }
    }
    .page-title_text {
      position: relative;
      width: fit-content;
      margin-inline: auto;
    }
  }
}

/** 	【エコサポしまねとは？】「私たちのミッション」コンテンツブロック **/
.page-contents,
body {
  .mission-block {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;

    @media screen and (max-width: 600px) {
      padding: 20px;
    }

    p {
      max-width: 550px;
      margin-inline: auto;

      @media screen and (max-width: 600px) {
        text-align: left!important;
      }
    }

    .accent_text {
      margin-top: 40px;

      &:first-of-type {
        margin-top: 0;
      }
    }
  }
}

/** 【エコサポしまねとは？】コンテンツ見出しブロック **/
.page-contents,
body {
  .about-sub-title {
    color: var(--color-green);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 10px;
    max-width: 800px;
    margin-inline: auto;
    background-image: linear-gradient(to right, var(--color-green), var(--color-green) 4px, transparent 4px, transparent 8px);
    background-size: 20px 4px;
    background-position: left bottom;
    background-repeat: repeat-x;

    @media screen and (max-width: 800px) {
      font-size: 26px;
    }
    @media screen and (max-width: 600px) {
      font-size: 24px;
    }
}
}

/** ページ情報カードブロック **/
.page-contents,
body {
  .page-info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05);

    img {
      display: block;
      height: auto;
      width: 100%;
      aspect-ratio: 323 / 277;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-info_title {
      font-size: 18px;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.6;
      position: relative;
      padding-bottom: 20px;
      margin-bottom: 20px;

      &::after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22125%22%20height%3D%222%22%20viewBox%3D%220%200%20125%202%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cline%20x1%3D%221%22%20y1%3D%221%22%20x2%3D%22123.016%22%20y2%3D%221%22%20stroke%3D%22%235C9E31%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-dasharray%3D%222%205%22%2F%3E%0A%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 124px;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-inline: auto;
      }

      @media screen and (max-width: 400px) {
        br {
          display: none;
        }
      }
    }

    .page-info_note {
      font-weight: 400;
      margin-bottom: 0;
      letter-spacing: 0.02em;
      line-height: 1.6;
    }

    .link-btn {
      margin-top: 20px;
      .link-btn_link {
        font-size: 16px;
        padding: 14px 30px;
        &::after {
          width: 16px;
          height: 16px;
          right: 15px;
        }
      }
    }
  }
}

/** ページ情報リスト **/
.page-contents,
body {
  .about-read {
    text-align: center;
  }
  .about-end-read:not(.frame-white, .frame-yellow, .breadcrumbs, .accent_text_slash, .mt-be-image, .headline-title, .text-link-block) {
    text-align: center;
    margin-top: 50px;
  }
  .page-card-list {
    margin-top: 40px;
    margin-bottom: 100px;

    .page-info-card {
      width: 300px;
      position: relative;
    }

    &:has(> .page-info-card:nth-child(-n + 5):last-child) {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;

      .page-info-card {
        padding-bottom: 90px;
      }

      .page-info-card {
        width: calc((100% - 60px) / 3);

        @media screen and (max-width: 1000px) {
          width: 350px;          
        }
      }
    }

    &.slick-slider {
      .page-info-card {
        margin-inline: 15px;
      }

      .slick-list {
        margin: 0 -15px;
        overflow: hidden;
      }

      .slick-track {
        display: flex;
      }

      .page-info-card {
        height: auto !important;
      }
    }

    .slick-dots {
      bottom: -40px;
    }

    .sns-list {
      flex-direction: row;
      justify-content: center;
      column-gap: 15px;
      display: flex;

      .sns-item {
        a {
          display: block;

          &::after {
            display: none;
          }

          img {
            aspect-ratio: auto;
            margin-bottom: 0;
          }
        }
      }
    }

    .link-btn {
      position: absolute;
      bottom: 20px;
      width: calc(100% - 60px);
      left: 0;
      right: 0;
    }
  }
}

/* エコサポしまねとは？ページ */
.page-contents,
body {
  .about-mascot {
    margin-top: 80px;
  }
}

/* 【サステナブルページ用】見出しブロック */
.page-contents,
body {
  .title-block--illust {
    margin-top: 120px;
    display: flex;
    flex-direction: column-reverse;

    @media screen and (max-width: 600px) {
      margin-top: 80px;
    }

    @media screen and (max-width: 400px) {
      margin-top: 60px;
    }

    .headline-title {
      text-align: center;
      font-weight: 700;
      font-size: 30px;
      letter-spacing: 0.02em;

      @media screen and (max-width: 600px) {
        font-size: 26px;
      }

      @media screen and (max-width: 400px) {
        font-size: 24px;
      }

      &::after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22516%22%20height%3D%2253%22%20viewBox%3D%220%200%20516%2053%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_1445_3054)%22%3E%0A%3Cpath%20d%3D%22M1.61981%209.23983C4.48981%208.39983%208.02982%209.27983%2010.5498%2010.5698C14.7998%209.86983%2019.5298%2010.5798%2023.1898%2010.9398C20.5698%209.60983%2017.9398%208.34983%2015.2598%207.17983C13.8298%206.28983%2012.9098%203.66983%2015.6898%203.83983C20.2998%204.99983%2023.8898%208.43983%2027.5198%2011.3898C35.1598%2011.8298%2043.3498%2013.7998%2051.0598%2014.7598C48.7298%2014.4098%2031.8898%205.95983%2040.1798%204.89983C45.1798%207.07983%2049.4998%2011.2498%2053.5498%2014.9298C63.6698%2014.9898%2073.5998%2017.5698%2083.7198%2017.7398C80.2598%2015.7598%2068.6898%2014.9098%2068.3498%2010.4498C70.4298%205.25983%2083.4998%2015.7498%2086.3898%2017.7298C97.0098%2017.8098%20107.46%2016.8898%20117.98%2015.8598C115.06%2015.5098%20101.29%2014.5998%20102.38%2010.5398C102.85%209.16983%20104.32%209.20983%20105.3%209.24983C107.94%209.35983%20110.37%2010.5398%20112.69%2011.6398C115.48%2012.5498%20119.08%2013.5498%20121.14%2015.6198C130.59%2014.9798%20139.85%2013.0298%20149.16%2011.7698C145.03%2010.0198%20137.17%2011.5998%20134.6%207.72983C133.17%201.34983%20149.09%2010.2398%20151.62%2011.4498C161.7%2010.2298%20172.15%209.73983%20182.08%209.59983C177.03%207.39983%20171.35%207.35983%20166.24%205.38983C164.72%204.58983%20164.83%203.53983%20165.19%202.80983C166.99%20-0.0201659%20170.85%201.98983%20173.12%202.80983C177.3%204.60983%20181.69%207.58983%20185.72%209.54983C190.18%209.52983%20209.46%209.50983%20214.22%209.53983C210.97%207.87983%20197.79%205.09983%20197.9%201.51983C201.32%20-4.07017%20213.54%207.19983%20217.25%209.62983C226.11%2010.1998%20234.73%2011.4398%20243.42%2012.7998C239.36%2010.9098%20235.93%209.07983%20231.61%207.69983C229.97%207.33983%20228.44%206.99983%20227.82%204.89983C229.63%20-2.38017%20243.53%2011.5198%20246.92%2013.3298C256.06%2014.8598%20265.18%2015.7398%20274.41%2015.6498C268.83%2013.5398%20263.65%2013.8098%20258.22%2010.8798C254.77%209.13983%20257.21%205.96983%20260.34%206.94983C265.38%208.03983%20269.36%2011.6098%20273.84%2013.7798C274.78%2014.0998%20277.05%2015.5298%20277.05%2015.5998C277.06%2015.6098%20277.07%2015.6298%20277.08%2015.6398C286.74%2015.4798%20296.23%2016.2498%20305.96%2015.6898C303.74%2015.1498%20301.58%2014.4098%20299.41%2013.7298C296.98%2012.7998%20293.45%2012.3798%20291.7%2010.0398C291.07%208.42983%20291.65%206.87983%20293.72%207.30983C299.5%207.77983%20303.51%2012.9098%20308.53%2015.4998C317.58%2014.7298%20326.6%2013.5598%20335.68%2012.9398C330.96%2011.8898%20325.93%2011.8898%20321.25%2010.7398C317.14%208.52983%20322.89%205.68983%20325.4%207.15983C330.24%208.34983%20336.03%2011.9998%20340.6%2012.7298C351.03%2012.4498%20361.89%2010.9098%20372.07%2011.1098C367.8%209.83983%20363.71%209.44983%20359.57%207.91983C357.47%207.31983%20353.46%205.82983%20354.46%203.34983C357.78%200.699834%20363.15%203.80983%20366.11%205.67983C369.87%208.16983%20373.69%2011.9698%20378.62%2010.8398C387.71%2010.1098%20396.85%2010.9198%20405.95%2011.1498C401.29%209.80983%20396.58%208.81983%20391.89%207.51983C389.25%207.38983%20385.09%204.07983%20389.6%202.85983C396.82%202.42983%20403.66%208.55983%20409.77%2011.1998C415.77%2010.8198%20424.04%2013.3198%20430.67%2013.7398C434.25%2013.7398%20438.59%2014.5698%20443.08%2015.4898C443.35%2015.5498%20443.52%2015.8098%20443.47%2016.0798C443.41%2016.3498%20443.16%2016.5198%20442.88%2016.4698C438.44%2015.5598%20434.16%2014.7398%20430.67%2014.7398C426.42%2014.8798%20421.28%2012.8998%20417.01%2012.6598C408.72%2014.5198%20401.99%2018.4598%20394.34%2021.9098C388.88%2022.8298%20391.98%2017.8598%20394.87%2016.3698C399.94%2013.8098%20405.78%2013.5398%20411.23%2012.2498C402.9%2012.2698%20395.02%2011.5098%20386.73%2011.5398C385.09%2013.7798%20383.71%2014.2298%20381.66%2015.6398C376.98%2018.3998%20373.04%2022.7298%20367.35%2023.1698C365.22%2023.1498%20365.48%2020.6398%20366.7%2019.7098C370.62%2014.7298%20377.75%2014.0998%20383.35%2011.6298C371.96%2012.2898%20361.12%2012.0098%20349.5%2013.3198C347.93%2015.1298%20345.91%2015.9598%20344.08%2017.6698C340.36%2021.0398%20336.14%2024.2398%20331.6%2026.2798C330.41%2026.2798%20330.29%2024.6398%20330.4%2023.8298C330.67%2019.4298%20340.76%2015.1698%20344.57%2013.5898C334.86%2013.7498%20325.05%2014.9098%20315.41%2015.8498C311.92%2019.6398%20307.54%2021.6798%20303.12%2024.0598C301.63%2024.9798%20299.74%2026.1098%20297.92%2026.0398C297.5%2025.9298%20297.23%2025.6498%20297.17%2025.2698C299.72%2018.5898%20307.08%2018.8498%20312.44%2016.1398C303.45%2017.2398%20294.45%2016.8998%20285.55%2016.6998C283.08%2019.1198%20281.41%2018.6398%20278.95%2020.1498C275.4%2021.9498%20271.77%2023.8298%20267.83%2024.6398C263.68%2026.3298%20262.64%2022.7898%20266.58%2021.3498C270.88%2018.9698%20275.67%2017.8098%20280.44%2016.6598C271.06%2016.6898%20261.89%2016.7498%20252.58%2015.2098C249.16%2018.5598%20244.89%2018.7898%20241.06%2021.2498C230.57%2028.7598%20224.95%2018.2098%20249.5%2014.7298C241.95%2013.6598%20234.5%2012.3798%20226.92%2011.5598C223.07%2015.8198%20217.43%2016.5898%20212.68%2019.4898C210.84%2020.4998%20207.13%2020.6498%20207.13%2018.0398C209.8%2013.8498%20219.26%2012.5798%20223.98%2011.2198C217.37%2010.2598%20204.2%2010.6298%20197.39%2010.5698C196.19%2012.2998%20195.31%2012.5598%20193.78%2013.4598C191.05%2015.8898%20188.31%2018.4198%20185.27%2020.5598C183.89%2021.6998%20176.63%2024.5398%20177.51%2020.3098C180.71%2015.2298%20189.81%2013.9898%20194.98%2010.5698C183.24%2010.5498%20171.45%2010.6498%20159.14%2011.7198C155.59%2014.0498%20153.2%2017.8498%20149.49%2019.5798C147.62%2020.4098%20145.45%2022.2898%20143.41%2020.5398C142.09%2018.4998%20145.44%2017.2698%20147.05%2016.7698C150.08%2015.3898%20153.11%2013.6798%20156.02%2012.0098C147.87%2012.7598%20139.8%2014.3498%20131.67%2015.5098C130%2019.1798%20128.36%2021.0598%20125.37%2023.0798C123.37%2024.6698%20122.08%2026.8498%20118.88%2027.0798C117.9%2027.1898%20117.26%2026.2898%20117.4%2025.4098C117.95%2020.1198%20125.51%2018.7198%20129.27%2015.8398C117.72%2016.9398%20106.37%2018.2598%2094.7298%2018.6298C91.6998%2021.3198%2088.2198%2023.3798%2084.5498%2025.0698C83.0398%2025.9098%2081.5698%2027.6298%2079.7098%2027.6298C71.2098%2024.9598%2086.8698%2019.5098%2089.7198%2018.7098C80.4698%2019.2798%2071.3998%2017.6098%2062.2498%2016.5098C57.8598%2020.7198%2052.3998%2025.6698%2046.3898%2026.9498C42.7798%2026.4798%2044.0598%2023.2298%2046.3098%2021.7498C50.1998%2018.7198%2054.9098%2017.9498%2059.4898%2016.2498C49.9098%2016.3398%2040.4798%2013.6798%2031.0298%2012.7798C28.7298%2015.0198%2025.7698%2016.6398%2022.7598%2017.6698C20.8998%2018.3698%2019.4098%2019.7998%2017.5098%2020.2498C11.4998%2019.7798%2016.2798%2015.6298%2018.4798%2014.8098C21.3698%2013.7798%2024.4198%2012.9998%2027.3798%2012.3998C22.2298%2011.9898%2016.0598%2010.7898%2010.8698%2011.5498C10.6398%2011.8998%209.61978%2011.9598%208.58978%2011.9698C6.86978%2012.2398%205.48981%2012.8498%203.59979%2012.7898C1.0498%2013.2198%20-1.85022%2010.6098%201.65979%209.26983L1.61981%209.23983ZM43.8498%208.19983C43.1298%207.59983%2038.7498%204.28983%2039.1098%206.65983C41.8598%209.89983%2046.5098%2011.9498%2050.5598%2013.4698C48.4598%2011.6198%2046.1298%209.88983%2043.8498%208.18983V8.19983ZM77.4698%2012.8498C75.1298%2012.0898%2071.4698%208.74983%2069.3398%2010.5298C69.9098%2013.5198%2079.6898%2015.0498%2082.5198%2016.1498C80.8698%2014.8598%2079.1698%2013.5298%2077.4598%2012.8498H77.4698ZM143.35%208.63983C141.15%207.72983%20137.37%205.90983%20135.4%206.66983C135.74%2010.0998%20144.11%209.33983%20146.87%2010.1798C145.71%209.62983%20144.56%209.11983%20143.35%208.62983V8.63983ZM180.17%207.69983C176.73%206.14983%20169.3%200.349834%20166.08%203.26983C165.88%203.67983%20165.79%204.04983%20166.7%204.52983C171.17%206.26983%20176.55%206.36983%20181.06%208.19983C180.76%208.02983%20180.47%207.85983%20180.17%207.69983ZM207.84%204.02983C205.31%202.93983%20201.43%20-0.560166%20198.88%201.70983C199.67%203.33983%20202.19%204.15983%20203.86%204.75983C207.19%205.90983%20210.57%207.22983%20213.89%208.34983C211.86%206.84983%20209.69%205.25983%20207.84%204.01983V4.02983ZM241.65%2010.6598C237.99%208.09983%20234.59%204.67983%20230.37%203.81983C228.37%203.74983%20228.49%205.31983%20229.92%206.16983C234.34%207.45983%20238.32%209.20983%20242.4%2011.2398C242.15%2011.0498%20241.9%2010.8598%20241.65%2010.6598ZM269.51%2012.4798C268.03%2011.1698%20266.2%2010.5098%20264.41%209.66983C262.71%208.68983%20260.9%207.82983%20258.9%207.81983C257.33%207.80983%20256.96%209.29983%20258.71%2010.0298C262.14%2012.1298%20267.38%2012.5198%20271.37%2013.7198C270.77%2013.3898%20270.16%2012.9998%20269.5%2012.4698L269.51%2012.4798ZM302.5%2012.6398C299.38%2010.8398%20296.36%207.72983%20292.52%208.33983C291.32%2011.4398%20302.63%2013.3898%20304.93%2014.3998C304.11%2013.8398%20303.3%2013.2698%20302.5%2012.6398ZM332.43%2010.9698C329.15%209.66983%20324.85%206.67983%20321.33%208.40983C320.55%208.81983%20320.72%209.51983%20321.62%209.82983C325.42%2010.6498%20329.54%2010.9798%20333.44%2011.4898C333.08%2011.3198%20332.74%2011.1498%20332.44%2010.9698H332.43ZM368.54%208.65983C353.78%20-2.37017%20347.97%206.34983%20369.49%209.32983C369.13%209.09983%20368.81%208.86983%20368.54%208.65983ZM403.03%208.62983C399.02%207.00983%20392.69%201.84983%20388.58%204.53983C388.53%204.72983%20388.74%204.99983%20388.88%205.13983C390.6%206.65983%20393.43%206.71983%20395.59%207.42983C398.69%208.33983%20401.8%209.00983%20404.92%209.76983C404.31%209.41983%20403.68%209.03983%20403.03%208.63983V8.62983ZM410.22%2013.4598C405.28%2014.5998%20399.95%2014.9198%20395.39%2017.2098C394.28%2017.7798%20389.92%2021.7298%20394.06%2020.9498C399.97%2018.2298%20405.42%2015.2498%20411.54%2013.1998C411.1%2013.2798%20410.66%2013.3698%20410.22%2013.4598ZM382.13%2013.1198C377.62%2015.1598%20367.88%2016.6798%20366.81%2021.9198C367.08%2022.3398%20367.71%2022.1798%20368.51%2021.9198C371.68%2021.5598%20374.12%2019.5898%20376.61%2017.8298C379.32%2015.7798%20382.34%2014.2498%20384.99%2012.1098C384.05%2012.4398%20383.1%2012.7798%20382.14%2013.1198H382.13ZM341.96%2015.6798C338.86%2017.9698%20330.1%2020.4898%20331.57%2025.2698C337.32%2022.5698%20342.38%2017.4998%20347.53%2013.8298C345.63%2014.3098%20343.58%2014.7698%20341.97%2015.6698L341.96%2015.6798ZM310.8%2017.9198C306.47%2019.4098%20300.44%2020.5598%20298.16%2025.0698C299.77%2024.8998%20301.28%2024.0198%20302.66%2023.1698C305.84%2021.3498%20309.63%2019.7798%20312.34%2017.2898C311.81%2017.5298%20311.28%2017.7598%20310.8%2017.9198ZM278.16%2018.1398C274.66%2019.4798%20270.8%2019.9698%20267.6%2021.9598C266.83%2022.4098%20264.68%2023.0698%20265.19%2024.0098C271.79%2023.5698%20277.41%2019.3698%20283.5%2017.0698C281.72%2017.4198%20279.87%2017.7898%20278.17%2018.1498L278.16%2018.1398ZM247.35%2016.1598C243.18%2016.8398%20239.17%2017.8698%20235.45%2019.9798C230.97%2021.7398%20233.85%2023.9598%20237.24%2022.3898C241.54%2019.3998%20246.3%2018.0298%20250.78%2015.4998C249.64%2015.7198%20248.49%2015.9398%20247.35%2016.1598ZM219.19%2013.3498C216.19%2014.7198%20209.42%2015.3998%20208.17%2018.4898C211.65%2020.6098%20214.75%2016.6298%20217.97%2015.7698C220.32%2014.5398%20223.13%2014.0598%20224.97%2012.0198C223.05%2012.3898%20220.89%2012.8798%20219.18%2013.3398L219.19%2013.3498ZM186.46%2015.6498C184.02%2016.9598%20179.99%2017.6798%20178.45%2020.6398C178.2%2021.5498%20178.32%2021.3498%20179.53%2021.4698C185.57%2021.2298%20189.47%2014.9098%20194.29%2011.9998C191.66%2013.2998%20188.94%2014.6398%20186.46%2015.6398V15.6498ZM153.72%2014.4198C151.53%2015.3898%20149.69%2016.8598%20147.4%2017.6798C146.4%2018.0498%20144.37%2018.6198%20144.13%2019.5398C144.35%2020.8498%20146.73%2020.0298%20147.54%2019.4198C150.72%2018.2798%20152.5%2016.0598%20154.97%2013.8198C154.56%2014.0398%20154.14%2014.2298%20153.72%2014.4198ZM123.84%2019.9698C121.73%2021.4798%20118.45%2022.3998%20118.38%2025.4098C118.37%2025.8598%20118.44%2025.9598%20118.46%2025.9798C120.52%2026.3198%20122.34%2024.4498%20123.38%2023.4898C125.82%2021.2498%20128.61%2019.7598%20130.02%2016.5198C127.98%2017.7598%20125.88%2018.8798%20123.84%2019.9698ZM117.91%2014.5998C113.62%2013.1798%20109.73%2010.8998%20105.26%2010.2698C103.08%209.97983%20102.57%2011.4998%20104.71%2012.4098C109.12%2013.7898%20113.81%2014.6498%20118.42%2014.8998C118.25%2014.7998%20118.08%2014.6998%20117.91%2014.5998ZM88.3298%2020.1998C85.2998%2021.3198%2079.8398%2023.0198%2078.1998%2025.5898C78.9798%2027.4698%2081.3098%2026.2798%2082.5798%2025.1598C85.9098%2022.9798%2089.6198%2021.5998%2092.6698%2018.9998C91.1698%2019.2898%2089.7298%2019.6398%2088.3298%2020.1998ZM57.0098%2018.0498C53.7598%2019.5198%2049.7298%2020.0098%2046.9898%2022.4398C45.7898%2023.3898%2043.7698%2025.3998%2046.2798%2025.9198C51.5898%2024.8398%2056.0798%2020.5398%2060.2898%2017.0498C59.1698%2017.3198%2057.7598%2017.6998%2057.0098%2018.0498ZM22.9898%2014.4298C20.5498%2015.0898%2016.5598%2016.0798%2015.4998%2018.5398C15.4998%2018.6798%2015.7098%2018.7898%2015.8898%2018.8498C18.0198%2019.9598%2018.9198%2018.1298%2020.7298%2017.5198C23.6598%2016.0798%2026.6098%2015.2498%2029.1198%2013.0498C27.0998%2013.4298%2025.0498%2013.8498%2022.9898%2014.4298ZM25.2298%2010.7098C22.3198%208.63983%2019.1398%205.62983%2015.5598%204.83983C14.3798%204.61983%2014.9698%205.78983%2015.7698%206.32983C19.0598%207.64983%2021.8998%209.37983%2025.2298%2010.7098ZM1.8898%2011.5998C4.58981%2012.2298%206.48978%2011.0898%208.96979%2010.9398C6.76978%2010.2198%202.78979%208.87983%201.02979%2010.9398C0.999786%2011.2398%201.5098%2011.5198%201.8898%2011.5998Z%22%20fill%3D%22black%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20clip-path%3D%22url(%23clip1_1445_3054)%22%3E%0A%3Cpath%20d%3D%22M449.012%2017.5214C449.055%2017.5488%20449.102%2017.5694%20449.151%2017.5848C449.205%2017.6002%20449.212%2017.6019%20449.174%2017.5848L449.017%2017.4305C448.996%2017.3893%20449.087%2017.5865%20449.083%2017.5796C449.13%2017.7117%20449.141%2017.7168%20449.114%2017.5951C449.12%2017.6482%20449.127%2017.7014%20449.135%2017.7545C449.167%2017.878%20449.242%2017.9791%20449.351%2018.0477C449.393%2018.0786%20449.438%2018.1009%20449.489%2018.1146C449.543%2018.13%20449.552%2018.1334%20449.512%2018.1231L449.311%2017.8677C449.358%2018.0117%20449.365%2018.1403%20449.505%2018.2552C449.56%2018.2997%20449.607%2018.3289%20449.681%2018.3512C449.712%2018.3597%20449.802%2018.4043%20449.731%2018.3546L449.574%2018.2003C449.628%2018.2723%20449.675%2018.3409%20449.717%2018.4197C449.728%2018.4403%20449.801%2018.5963%20449.771%2018.4986C449.829%2018.6855%20449.843%2018.8432%20449.956%2019.0164C450.017%2019.1107%20450.106%2019.205%20450.146%2019.277C450.186%2019.349%20450.21%2019.4433%20450.254%2019.5222C450.29%2019.5873%20450.351%2019.6696%20450.382%2019.721L450.323%2019.505C450.332%2019.4639%20450.328%2019.4724%20450.315%2019.529C450.301%2019.5805%20450.295%2019.6319%20450.301%2019.685C450.304%2019.7811%20450.335%2019.8651%20450.389%2019.9456C450.393%2019.9508%20450.52%2020.1119%20450.525%2020.1171C450.555%2020.1582%20450.591%2020.1908%20450.638%2020.2165C450.685%2020.244%20450.689%2020.2508%20450.651%2020.2354L450.539%2020.0468C450.586%2020.2251%20450.551%2020.34%20450.604%2020.5251C450.637%2020.6417%20450.724%2020.7412%20450.825%2020.8063C450.87%2020.8355%20450.938%2020.8252%20450.856%2020.8149C450.814%2020.7755%20450.806%2020.772%20450.83%2020.8063C450.844%2020.8286%20450.856%2020.8526%20450.867%2020.8766L450.807%2020.6606C450.807%2020.6212%20450.802%2020.628%20450.788%2020.6863C450.776%2020.7377%20450.771%2020.7892%20450.773%2020.8423C450.776%2020.9572%20450.82%2021.0618%20450.9%2021.1458C451.004%2021.2538%20451.137%2021.2744%20451.269%2021.3258L451.077%2021.2161L451.097%2021.2367L450.969%2020.9332C450.966%2020.8903%20450.973%2020.9212%20450.964%2020.952C450.947%2021.0206%20450.947%2021.0943%20450.959%2021.1629C450.98%2021.2812%20451.039%2021.3567%20451.098%2021.4561L451.039%2021.2401C451.036%2021.1989%20451.048%2021.2229%20451.039%2021.2589C451.022%2021.3292%20451.022%2021.3995%20451.036%2021.4698C451.056%2021.5864%20451.114%2021.6653%20451.171%2021.7647L451.112%2021.5487C451.131%2021.7167%20451.126%2021.8436%20451.222%2021.9979C451.259%2022.0562%20451.299%2022.1179%20451.349%2022.1659C451.373%2022.1899%20451.504%2022.2859%20451.48%2022.2602L451.353%2021.9567C451.346%2021.8624%20451.337%2021.9619%20451.33%2021.9945C451.306%2022.099%20451.311%2022.2071%20451.354%2022.3065C451.389%2022.3871%20451.441%2022.4505%20451.513%2022.5019C451.537%2022.5259%20451.565%2022.5431%20451.596%2022.5534C451.729%2022.6151%20451.734%2022.6117%20451.616%2022.5414L451.488%2022.2379C451.502%2022.1968%20451.502%2022.2036%20451.488%2022.2585L451.473%2022.3716C451.471%2022.4797%20451.509%2022.5688%20451.553%2022.6648C451.589%2022.742%20451.624%2022.8106%20451.685%2022.8723C451.713%2022.9066%20451.746%2022.934%20451.786%2022.9546C451.833%2022.9837%20451.838%2022.9871%20451.802%2022.9683L451.69%2022.7797C451.71%2022.8431%20451.725%2022.91%20451.736%2022.9751V22.7471C451.708%2022.9271%20451.683%2023.1003%20451.805%2023.2563C451.906%2023.3849%20452.039%2023.4209%20452.185%2023.4706L451.994%2023.3609L452.02%2023.3832L451.892%2023.0797C451.889%2023.0334%20451.892%2023.0454%20451.877%2023.0883C451.859%2023.1363%20451.847%2023.1946%20451.847%2023.246C451.847%2023.3832%20451.899%2023.5049%20451.997%2023.6026C452.126%2023.7312%20452.265%2023.805%20452.443%2023.8615L452.251%2023.7518L452.277%2023.7724L452.166%2023.5838L452.173%2023.6249V23.3969C452.138%2023.6061%20452.142%2023.8341%20452.255%2024.0261C452.304%2024.1067%20452.378%2024.1599%20452.452%2024.2164C452.507%2024.2593%20452.56%2024.3004%20452.624%2024.3296C452.645%2024.3399%20452.735%2024.3999%20452.692%2024.3673L452.492%2024.1118C452.502%2024.1376%20452.563%2024.2987%20452.547%2024.2387C452.582%2024.3707%20452.565%2024.4667%20452.661%2024.5833C452.805%2024.7616%20452.99%2024.7531%20453.197%2024.7599L452.978%2024.7016C452.944%2024.7016%20452.96%2024.7188%20453.025%2024.7565L452.913%2024.5679C452.884%2024.4993%20452.908%2024.5662%20452.913%2024.6108C452.922%2024.6982%20452.941%2024.7805%20452.986%2024.8577C453.032%2024.9348%20453.101%2024.9897%20453.178%2025.0308C453.195%2025.0411%20453.368%2025.0994%20453.307%2025.0685L453.15%2024.9142C453.202%2024.9897%20453.237%2025.0702%20453.303%2025.1371C453.378%2025.2108%20453.457%2025.228%20453.54%2025.2726L453.383%2025.1183C453.352%2024.9931%20453.345%2024.9777%20453.361%2025.0702C453.364%2025.1028%20453.369%2025.1354%20453.376%2025.1663C453.394%2025.2297%20453.43%2025.2897%20453.472%2025.3394C453.584%2025.4766%20453.735%2025.516%20453.904%2025.5212C453.814%2025.4954%20453.794%2025.492%20453.843%2025.5143C453.892%2025.54%20453.878%2025.5263%20453.8%2025.4697C453.819%2025.4714%20453.887%2025.5949%20453.899%2025.6103C453.949%2025.6772%20454.01%2025.7698%20454.08%2025.8366C454.178%2025.9292%20454.287%2025.9875%20454.418%2026.0132C454.481%2026.0252%20454.414%2026.0972%20454.392%2025.9858C454.404%2026.0475%20454.461%2026.1041%20454.505%2026.1452C454.604%2026.2378%20454.752%2026.2738%20454.859%2026.2961C454.876%2026.2995%20455.064%2026.327%20455.062%2026.3201C455.062%2026.315%20454.826%2026.2138%20455.075%2026.3355L454.918%2026.1812C454.899%2026.1555%20454.89%2026.0064%20454.892%2026.1109C454.892%2026.1847%20454.909%2026.2481%20454.937%2026.3133C454.987%2026.4281%20455.075%2026.4984%20455.176%2026.5704C455.365%2026.7059%20455.529%2026.6939%20455.754%2026.6579H455.522L455.555%2026.6647L455.364%2026.555L455.392%2026.5859L455.28%2026.3973C455.376%2026.6201%20455.459%2026.7487%20455.7%2026.8379C455.844%2026.891%20455.998%2026.903%20456.132%2026.9253L455.94%2026.8156L455.963%2026.8396L455.851%2026.651C455.898%2026.7642%20455.926%2026.8773%20456.019%2026.9682C456.134%2027.0831%20456.255%2027.0848%20456.39%2027.1122L456.198%2027.0025C456.127%2026.8773%20456.123%2026.8807%20456.186%2027.0128L456.203%2027.0471C456.247%2027.1156%20456.313%2027.1808%20456.383%2027.2236C456.522%2027.3077%20456.705%2027.3299%20456.828%2027.3762C456.875%2027.3968%20456.877%2027.3951%20456.832%2027.3728C456.867%2027.402%20456.903%2027.4294%20456.942%2027.4534C457.015%2027.4963%20457.098%2027.5271%20457.177%2027.5563C457.297%2027.6008%20457.429%2027.6077%20457.537%2027.6248L457.346%2027.5151C457.281%2027.4551%20457.473%2027.6797%20457.422%2027.6266C457.471%2027.678%20457.529%2027.714%20457.593%2027.7431C457.705%2027.7946%20457.832%2027.8203%20457.947%2027.8632L457.755%2027.7534C457.734%2027.7209%20457.738%2027.7277%20457.767%2027.774C457.793%2027.8186%20457.826%2027.8563%20457.867%2027.8872C457.936%2027.9506%20458.018%2027.9849%20458.109%2028.014C458.265%2028.0637%20458.415%2028.0569%20458.577%2028.0346H458.345L458.386%2028.0415L458.194%2027.9317C458.13%2027.8717%20458.323%2028.0929%20458.272%2028.0415C458.333%2028.1032%20458.41%2028.1563%20458.495%2028.1803C458.581%2028.2043%20458.68%2028.2009%20458.762%2028.1803L458.804%2028.1666C458.941%2028.1152%20458.943%2028.11%20458.809%2028.1495L458.589%2028.0912C458.572%2028.0792%20458.708%2028.2146%20458.65%2028.1512L458.539%2027.9626C458.586%2028.0843%20458.619%2028.206%20458.718%2028.3021C458.859%2028.4392%20459.025%2028.4135%20459.197%2028.4341L458.978%2028.3758C459.1%2028.4444%20459.209%2028.5112%20459.356%2028.5147C459.394%2028.5147%20459.485%2028.4838%20459.516%2028.4975C459.589%2028.5301%20459.345%2028.4684%20459.546%2028.5489L459.354%2028.4392L459.373%2028.4615L459.262%2028.2729C459.319%2028.4735%20459.357%2028.6381%20459.566%2028.7375C459.594%2028.7513%20459.659%2028.7855%20459.694%2028.7855C459.749%2028.7855%20459.61%2028.717%20459.706%2028.7958C459.817%2028.8867%20459.929%2028.9056%20460.068%2028.9244C460.009%2028.9158%20460.065%2028.9073%20460.11%2028.9313C460.08%2028.9158%20460.207%2029.0016%20460.195%2028.993C460.284%2029.0547%20460.376%2029.1096%20460.477%2029.1473C460.509%2029.1593%20460.547%2029.1662%20460.578%2029.1816C460.434%2029.1113%20460.597%2029.2227%20460.627%2029.2399C460.718%2029.2948%20460.81%2029.3085%20460.908%2029.341L460.716%2029.2313C460.806%2029.3119%20460.892%2029.4216%20461.038%2029.4593C461.167%2029.4919%20461.285%2029.4593%20461.411%2029.4336H461.179C461.151%2029.4422%20461.172%2029.4559%20461.244%2029.4731L461.087%2029.3188C461.061%2029.2827%20461.073%2029.2896%20461.082%2029.3342C461.092%2029.389%20461.117%2029.4456%20461.146%2029.4936C461.223%2029.6188%20461.332%2029.6737%20461.465%2029.7251C461.501%2029.7388%20461.604%2029.7714%20461.667%2029.7902C461.717%2029.8057%20461.759%2029.8194%20461.813%2029.828C461.813%2029.828%20461.972%2029.8537%20461.886%2029.8314L461.695%2029.7217L461.716%2029.7474L461.604%2029.5588C461.643%2029.6702%20461.669%2029.7765%20461.752%2029.8657C461.829%2029.9463%20461.909%2029.9754%20462.001%2030.0268C462.094%2030.0783%20462.189%2030.1383%20462.28%2030.1743C462.266%2030.1691%20462.386%2030.2189%20462.421%2030.2257C462.442%2030.2309%20462.63%2030.26%20462.553%2030.2377L462.362%2030.128C462.398%2030.1674%20462.447%2030.2343%20462.484%2030.2823L462.372%2030.0937C462.421%2030.2514%20462.472%2030.4057%20462.627%2030.4949C462.782%2030.584%20462.952%2030.548%20463.123%2030.5206H462.891L462.924%2030.5275L462.733%2030.4177C462.656%2030.3389%20462.858%2030.5772%20462.804%2030.5206C462.853%2030.572%20462.907%2030.6098%20462.971%2030.6372C463.031%2030.6612%20463.114%2030.6886%20463.18%2030.6835C463.241%2030.6835%20463.248%2030.6783%20463.201%2030.6681C463.147%2030.6492%20463.161%2030.6578%20463.24%2030.6972C463.447%2030.8549%20463.649%2031.0178%20463.872%2031.1533L463.715%2030.999C463.689%2030.8789%20463.682%2030.8635%20463.698%2030.9544C463.701%2030.987%20463.706%2031.0212%20463.715%2031.0538C463.734%2031.1173%20463.769%2031.1773%20463.813%2031.227C463.922%2031.3556%20464.072%2031.3796%20464.199%2031.4224L464.008%2031.3127C463.966%2031.2681%20464.07%2031.4156%20464.104%2031.4481C464.185%2031.5253%20464.276%2031.5424%20464.373%2031.5836C464.471%2031.6247%20464.623%2031.6847%20464.746%2031.7293L464.555%2031.6196C464.523%2031.5836%20464.541%2031.6196%20464.555%2031.6402C464.586%2031.6968%20464.642%2031.7516%20464.694%2031.7893C464.79%2031.8596%20464.893%2031.8716%20465%2031.9093L464.809%2031.7996C464.926%2031.9042%20465.03%2031.9779%20465.156%2032.0396L464.999%2031.8853C464.992%2031.8442%20464.995%2031.8511%20465.011%2031.9042C465.023%2031.9556%20465.046%2032.0002%20465.079%2032.0396C465.145%2032.1391%20465.257%2032.2231%20465.365%2032.2797C465.445%2032.3225%20465.539%2032.3483%20465.628%2032.3671C465.676%2032.3877%20465.727%2032.3963%20465.781%2032.3963C465.837%2032.398%20465.842%2032.3997%20465.795%2032.3997L465.535%2032.2025L465.549%2032.2265L465.49%2032.0105C465.514%2032.1905%20465.499%2032.3603%20465.643%2032.5026C465.814%2032.6706%20466.021%2032.6277%20466.232%2032.5934H466L466.033%2032.6003L465.842%2032.4906C465.767%2032.41%20465.962%2032.6517%20465.91%2032.5969C465.95%2032.6397%20465.997%2032.6757%20466.049%2032.7049C466.115%2032.7426%20466.223%2032.8026%20466.122%2032.7237C466.18%2032.7683%20466.228%2032.8163%20466.288%2032.8609C466.371%2032.9226%20466.443%2032.9998%20466.53%2033.0581C466.659%2033.1438%20466.808%2033.1798%20466.93%2033.2192L466.739%2033.1095C466.76%2033.1318%20466.807%2033.2004%20466.841%2033.2329C466.89%2033.2724%20466.941%2033.3101%20466.995%2033.3444C466.958%2033.3067%20466.96%2033.3118%20467.003%2033.3632C467.124%2033.521%20467.272%2033.545%20467.428%2033.5964L467.237%2033.4867L467.258%2033.5124L467.146%2033.3238C467.218%2033.5364%20467.303%2033.713%20467.543%2033.7764C467.596%2033.7901%20467.651%2033.785%20467.705%2033.7936C467.662%2033.7867%20467.681%2033.8004%20467.712%2033.8056L467.827%2033.821C467.888%2033.8261%20467.89%2033.821%20467.831%2033.8107C467.733%2033.821%20467.864%2033.833%20467.883%2033.8433L467.726%2033.689C467.681%2033.6307%20467.721%2033.6907%20467.735%2033.7301C467.766%2033.8124%20467.803%2033.8827%20467.867%2033.9444C467.932%2034.0062%20468.014%2034.0456%20468.099%2034.0645C468.12%2034.0696%20468.31%2034.085%20468.238%2034.0679L467.979%2033.8707L467.951%2033.7747L467.967%2033.8879C467.979%2033.9444%20467.998%2033.9976%20468.028%2034.0473C468.104%2034.1742%20468.214%2034.2222%20468.346%2034.2788C468.425%2034.3113%20468.503%2034.3594%20468.587%2034.3868C468.621%2034.3971%20468.829%2034.4485%20468.724%2034.4108C468.675%2034.3988%20468.682%2034.4022%20468.745%2034.4262C468.822%2034.4605%20468.815%2034.4536%20468.722%2034.4039L468.611%2034.2153C468.686%2034.4314%20468.785%2034.5874%20468.992%2034.704C469.039%2034.7297%20469.097%2034.7503%20469.149%2034.7623C469.201%2034.7743%20469.318%2034.8%20469.205%2034.7623L469.309%2034.8051C469.208%2034.716%20469.189%2034.7057%20469.25%2034.776C469.276%2034.8154%20469.311%2034.848%20469.341%2034.884L469.229%2034.6954C469.282%2034.8514%20469.332%2035.0057%20469.485%2035.0932C469.639%2035.1806%20469.811%2035.1463%20469.982%2035.1189H469.75L469.783%2035.1257L469.592%2035.016L469.613%2035.0417L469.501%2034.8531C469.557%2035.0349%20469.618%2035.196%20469.808%2035.2783C469.977%2035.3503%20470.114%2035.2937%20470.276%2035.2526H470.044C470.022%2035.2629%20470.004%2035.2509%20469.992%2035.2132C470.013%2035.2612%20470.043%2035.3023%20470.081%2035.34C470.137%2035.4103%20470.051%2035.3006%20470.116%2035.3846C470.217%2035.5166%20470.327%2035.5886%20470.461%2035.6795C470.595%2035.7704%20470.718%2035.7978%20470.847%2035.8732C470.926%2035.9195%20470.992%2035.9761%20471.083%2036.0035C471.133%2036.0173%20471.185%2036.0258%20471.238%2036.0293C471.293%2036.031%20471.3%2036.0293%20471.255%2036.0207L471.063%2035.911C471.006%2035.8458%20471.166%2036.0687%20471.13%2036.0293C471.192%2036.0944%20471.258%2036.1441%20471.349%2036.1699C471.488%2036.2093%20471.608%2036.1716%20471.743%2036.1441H471.511L471.544%2036.1493L471.352%2036.0396L471.37%2036.0618L471.258%2035.8732C471.297%2036.0104%20471.307%2036.1253%20471.42%2036.235C471.579%2036.3876%20471.781%2036.367%20471.983%2036.3396H471.751C471.814%2036.3516%20471.91%2036.3619%20471.959%2036.3739L471.767%2036.2641C471.833%2036.319%20471.913%2036.3996%20471.966%2036.4407L472.054%2036.5076C471.993%2036.4442%20471.974%2036.4356%20472%2036.4785C471.997%2036.5128%20472.082%2036.5933%20472.107%2036.6156C472.302%2036.8025%20472.519%2036.8539%20472.8%2036.8059H472.568C472.629%2036.8145%20472.734%2036.8282%20472.775%2036.8368L472.584%2036.7271L472.605%2036.7528L472.493%2036.5642C472.542%2036.7271%20472.589%2036.8865%20472.749%2036.9774C472.91%2037.0682%20473.073%2037.0305%20473.24%2036.9979H473.009C473.072%2037.0082%20473.136%2037.0271%20473.197%2037.046L473.005%2036.9362L473.028%2036.9602L472.917%2036.7716C473.012%2036.9979%20473.122%2037.1831%20473.359%2037.2911C473.448%2037.3323%20473.547%2037.3494%20473.641%2037.382C473.679%2037.3957%20473.716%2037.4077%20473.756%2037.4163C473.779%2037.4214%20473.97%2037.4283%20473.89%2037.4146L473.699%2037.3048L473.718%2037.3254L473.606%2037.1368C473.645%2037.2397%20473.657%2037.334%20473.728%2037.4266C473.82%2037.5466%20473.944%2037.5706%20474.071%2037.6375C473.956%2037.5774%20474.059%2037.6632%20474.118%2037.7009C474.191%2037.7455%20474.272%2037.7746%20474.359%2037.7746C474.421%2037.7746%20474.481%2037.7643%20474.54%2037.7455L474.644%2037.7026C474.721%2037.6649%20474.697%2037.6649%20474.571%2037.7009L474.352%2037.6426C474.406%2037.6923%20474.428%2037.6975%20474.423%2037.658L474.312%2037.4694C474.341%2037.5586%20474.301%2037.3631%20474.326%2037.5209C474.331%2037.5586%20474.334%2037.5946%20474.345%2037.6306C474.385%2037.7695%20474.484%2037.8861%20474.618%2037.9409C474.672%2037.9632%20474.71%2037.9718%20474.768%2037.9769C474.78%2037.9769%20474.925%2037.9701%20474.843%2037.9666C474.895%2037.9683%20474.947%2037.9872%20475%2037.9872C474.968%2037.9872%20475.219%2037.9838%20475.137%2037.9735L474.829%2037.8483L474.852%2037.8723L474.74%2037.6837C474.82%2037.8826%20474.881%2038.0164%20475.08%2038.1227C475.263%2038.2221%20475.425%2038.205%20475.588%2038.2272L475.397%2038.1175L475.416%2038.1381L475.304%2037.9495C475.357%2038.0815%20475.371%2038.205%20475.484%2038.3095C475.571%2038.3901%20475.674%2038.4295%20475.792%2038.4347C475.844%2038.445%20475.897%2038.4415%20475.949%2038.4244C476.005%2038.4107%20476.01%2038.4124%20475.968%2038.4295L475.66%2038.3044C475.644%2038.265%20475.649%2038.2684%20475.679%2038.313C475.717%2038.3781%20475.769%2038.4278%20475.836%2038.4673C475.916%2038.5187%20475.989%2038.5393%20476.083%2038.5547C476.144%2038.565%20476.21%2038.5804%20476.283%2038.5787C476.266%2038.5787%20476.571%2038.5513%20476.436%2038.5427L476.128%2038.4175C476.059%2038.3027%20476.055%2038.3095%20476.118%2038.4381L476.135%2038.4776C476.191%2038.5667%20476.271%2038.637%20476.369%2038.6764C476.454%2038.7107%20476.537%2038.7193%20476.626%2038.7073C476.659%2038.7073%20476.693%2038.7004%20476.722%2038.6867C476.861%2038.6336%20476.861%2038.6284%20476.72%2038.673L476.501%2038.6147C476.468%2038.5924%20476.598%2038.6953%20476.583%2038.6816C476.705%2038.793%20476.551%2038.661%20476.611%2038.7193C476.708%2038.8136%20476.802%2038.8376%20476.921%2038.8993C476.99%2038.9353%20477.048%2038.985%20477.128%2039.0056C477.198%2039.0245%20477.272%2039.0228%20477.342%2039.0142C477.339%2039.0142%20477.501%2038.9936%20477.422%2038.9919L477.114%2038.8667C477.053%2038.817%20477.222%2038.9936%20477.198%2038.9679C477.246%2039.0176%20477.306%2039.0553%20477.37%2039.0811C477.441%2039.1102%20477.513%2039.1188%20477.589%2039.1273C477.558%2039.1239%20477.724%2039.1839%20477.621%2039.1273C477.755%2039.2011%20477.83%2039.2851%20478.001%2039.2799C478.142%2039.2765%20478.237%2039.2028%20478.359%2039.1513L478.14%2039.2096H478.168C478.065%2039.1685%20477.962%2039.1256%20477.859%2039.0845C477.79%2038.9679%20477.786%2038.973%20477.849%2039.1033C477.868%2039.1513%20477.896%2039.1925%20477.934%2039.2285C478.004%2039.3005%20478.081%2039.3399%20478.176%2039.3674C478.25%2039.3897%20478.345%2039.4068%20478.42%2039.4102C478.473%2039.4171%20478.525%2039.4137%20478.575%2039.3982C478.631%2039.3862%20478.634%2039.3862%20478.589%2039.3982L478.281%2039.2731C478.22%2039.2234%20478.276%2039.2834%20478.295%2039.3125C478.321%2039.3519%20478.354%2039.3879%20478.389%2039.4205C478.481%2039.5062%20478.605%2039.592%20478.737%2039.6263C478.852%2039.6554%20478.915%2039.6588%20479.028%2039.6743C478.985%2039.6691%20479.147%2039.6931%20479.178%2039.6931C479.202%2039.6931%20479.385%2039.6828%20479.309%2039.6777L479%2039.5525L478.946%2039.472C478.964%2039.5131%20478.981%2039.5543%20478.999%2039.5937C479.023%2039.6365%20479.053%2039.6777%20479.087%2039.712C479.188%2039.8114%20479.356%2039.8714%20479.495%2039.8954C479.693%2039.9297%20479.821%2039.9143%20480.038%2039.9349L479.73%2039.8097L479.68%2039.7206L479.723%2039.8234C479.747%2039.8663%20479.775%2039.9126%20479.81%2039.9469C479.875%2040.0103%20479.958%2040.0549%20480.04%2040.0943C480.24%2040.1903%20480.415%2040.144%20480.615%2040.1663L480.395%2040.108C480.533%2040.1972%20480.63%2040.2366%20480.798%2040.2709C480.855%2040.2829%20481.003%2040.3241%20481.092%2040.3463L480.9%2040.2366C480.871%2040.2126%20480.873%2040.1989%20480.897%2040.2435C480.92%2040.2863%20480.951%2040.3309%20480.986%2040.3652C481.05%2040.4286%20481.134%2040.4732%20481.217%2040.5109C481.453%2040.6207%20481.618%2040.5624%20481.837%2040.4578L481.618%2040.5161H481.651C481.578%2040.4938%20481.505%2040.4749%20481.432%2040.4561C481.538%2040.5264%20481.648%2040.6052%20481.768%2040.6687C481.864%2040.7184%20481.942%2040.763%20482.055%2040.7681C482.107%2040.7698%20482.16%2040.7664%20482.212%2040.7527C482.268%2040.739%20482.275%2040.7355%20482.229%2040.739L482.01%2040.6807C482.238%2040.7904%20482.43%2040.8264%20482.68%2040.8538L482.461%2040.7955C482.541%2040.847%20482.616%2040.9053%20482.708%2040.9481C482.853%2041.0133%20482.99%2041.0081%20483.116%2041.0133L482.896%2040.955C483.003%2041.0219%20483.088%2041.1179%20483.21%2041.1676C483.341%2041.2207%20483.447%2041.1762%20483.557%2041.2533C483.666%2041.3305%20483.797%2041.4282%20483.954%2041.4316C484.11%2041.435%20484.208%2041.3562%20484.34%2041.2962L484.121%2041.3545C483.959%2041.3579%20484.138%2041.3408%20484.164%2041.4402C484.091%2041.3596%20484.077%2041.351%20484.123%2041.4145C484.143%2041.4539%20484.171%2041.4882%20484.206%2041.5139C484.297%2041.6014%20484.403%2041.6476%20484.53%2041.6528C484.582%2041.6562%20484.635%2041.6528%20484.687%2041.6391C484.744%2041.6254%20484.751%2041.6202%20484.711%2041.6254L484.403%2041.5002C484.382%2041.4659%20484.387%2041.4711%20484.415%2041.5191C484.436%2041.5585%20484.464%2041.5911%20484.499%2041.6185C484.577%2041.6939%20484.659%2041.7317%20484.764%2041.7488C484.849%2041.7642%20484.952%2041.7162%20485.025%2041.7334L484.932%2041.7385C485.049%2041.7368%20485.086%2041.7437%20485.039%2041.7574C485.07%2041.7677%20485.101%2041.7814%20485.131%2041.7951C485.192%2041.8277%20485.175%2041.7882%20485.079%2041.6785C485.082%2041.7471%20485.161%2041.8534%20485.209%2041.9031C485.338%2042.0351%20485.549%2042.0814%20485.714%2042.1517L485.523%2042.042C485.457%2041.9768%20485.647%2042.2083%20485.596%2042.1551C485.657%2042.2169%20485.732%2042.27%20485.817%2042.294C485.903%2042.318%20486%2042.3163%20486.082%2042.2957L486.124%2042.282C486.261%2042.2289%20486.263%2042.2254%20486.127%2042.2683L485.908%2042.21C485.977%2042.258%20486.061%2042.3266%20486.164%2042.354C486.19%2042.3609%20486.333%2042.366%20486.288%2042.3677C486.263%2042.3677%20486.19%2042.2563%20486.253%2042.3574C486.404%2042.5992%20486.65%2042.618%20486.911%2042.5718H486.679L486.721%2042.5769L486.53%2042.4672C486.456%2042.4037%20486.648%2042.606%20486.61%2042.5666C486.631%2042.5889%20486.658%2042.606%20486.681%2042.6266C486.761%2042.6986%20486.833%2042.7792%20486.923%2042.8392C487.137%2042.9832%20487.369%2042.9781%20487.616%2042.9267H487.385L487.418%2042.9318L487.226%2042.8221C487.195%2042.7929%20487.219%2042.8152%20487.235%2042.8392C487.261%2042.8821%20487.298%2042.9181%20487.333%2042.9541C487.387%2043.0124%20487.447%2043.0672%20487.507%2043.1221C487.702%2043.3021%20487.869%2043.3227%20488.128%2043.2781H487.897L487.939%2043.285L487.747%2043.1753L487.77%2043.1993L487.658%2043.0107C487.716%2043.1444%20487.756%2043.2747%20487.879%2043.369C488.04%2043.489%20488.21%2043.465%20488.397%2043.4393H488.165C488.221%2043.4496%20488.341%2043.4684%20488.367%2043.4753L488.176%2043.3656C488.153%2043.3296%20488.156%2043.333%20488.184%2043.3776C488.21%2043.4204%20488.243%2043.4581%20488.282%2043.4907C488.344%2043.5473%20488.402%2043.5867%20488.472%2043.6382C488.594%2043.729%20488.742%2043.7822%20488.883%2043.8233L488.691%2043.7136L488.717%2043.7445L488.606%2043.5559C488.675%2043.7273%20488.742%2043.8713%20488.921%2043.9553C489.038%2044.0102%20489.182%2044.0256%20489.288%2044.0548L489.097%2043.9451C489.187%2044.0188%20489.266%2044.0959%20489.37%2044.1559C489.475%2044.2159%20489.607%2044.2451%20489.701%2044.2725L489.51%2044.1628L489.536%2044.1937L489.424%2044.0051C489.49%2044.1731%20489.558%2044.3291%20489.74%2044.4045C489.825%2044.4405%20489.908%2044.4474%20489.999%2044.4371C490.025%2044.4337%20490.206%2044.4183%20490.111%2044.4063L489.802%2044.2811C489.868%2044.348%20489.91%2044.4234%20489.997%2044.4731C490.043%2044.4988%20490.1%2044.5177%20490.151%2044.5348C490.165%2044.54%20490.239%2044.5726%20490.205%2044.5503C490.173%2044.5297%20490.264%2044.6223%20490.283%2044.6411C490.33%2044.6874%20490.382%2044.7217%20490.441%2044.7474C490.494%2044.7697%20490.534%2044.78%20490.591%2044.7852C490.583%2044.7852%20490.76%2044.7937%20490.671%2044.7749L490.48%2044.6651C490.429%2044.6154%20490.539%2044.756%20490.553%2044.7697C490.623%2044.8435%20490.701%2044.888%20490.8%2044.9155C490.846%2044.9292%20490.894%2044.936%20490.941%2044.9377C490.818%2044.8743%20490.795%2044.8709%20490.873%2044.924C490.938%2044.9823%20491.02%2045.0218%20491.095%2045.0663L490.938%2044.912C490.91%2044.7783%20490.903%2044.7526%20490.915%2044.8349C490.917%2044.8863%20490.926%2044.9343%20490.94%2044.984C490.971%2045.0818%20491.03%2045.1658%20491.112%2045.2292C491.194%2045.2926%20491.3%2045.3269%20491.41%2045.3252C491.405%2045.3252%20491.69%2045.3012%20491.581%2045.2875L491.361%2045.2292C491.344%2045.2172%20491.466%2045.3321%20491.426%2045.2841L491.314%2045.0955C491.394%2045.3184%20491.553%2045.5481%20491.798%2045.6218C491.852%2045.639%20491.91%2045.6458%20491.967%2045.651C491.833%2045.6407%20491.938%2045.6321%20491.953%2045.6493C491.995%2045.6921%20492.068%2045.7607%20492.124%2045.8104C492.201%2045.879%20492.307%2045.9236%20492.38%2045.9527C492.464%2045.9853%20492.498%2046.0042%20492.582%2046.0145C492.617%2046.023%20492.652%2046.0247%20492.687%2046.0196L492.603%2045.9904L492.707%2046.0333C492.652%2045.9853%20492.639%2045.9767%20492.674%2046.0127C492.702%2046.0539%20492.791%2046.1139%20492.821%2046.1327C492.908%2046.1893%20493.033%2046.2356%20493.105%2046.2665L492.948%2046.1122C492.922%2045.9836%20492.913%2045.951%20492.922%2046.011C492.927%2046.0556%20492.934%2046.1002%20492.939%2046.1447C492.951%2046.191%20492.969%2046.2408%20492.991%2046.2819C493.071%2046.4191%20493.211%2046.4996%20493.366%2046.5185C493.394%2046.5254%20493.42%2046.5271%20493.448%2046.5254C493.521%2046.5254%20493.482%2046.5048%20493.334%2046.4688C493.341%2046.5014%20493.46%2046.5614%20493.489%2046.5768C493.554%2046.6128%20493.671%2046.666%20493.566%2046.5888C493.601%2046.6145%20493.637%2046.654%20493.664%2046.6865L493.552%2046.4979C493.617%2046.6968%20493.69%2046.8734%20493.911%2046.942C493.961%2046.9591%20494.012%2046.9677%20494.066%2046.9694C494.143%2046.9746%20494.129%2046.966%20494.024%2046.9471C494.04%2046.9437%20494.177%2047.014%20494.193%2047.0329L494.082%2046.8443C494.156%2047.0294%20494.237%2047.2043%20494.447%2047.2643C494.599%2047.3072%20494.723%2047.254%20494.864%2047.218H494.632L494.66%2047.2232L494.4%2047.026C494.371%2046.8974%20494.362%2046.8751%20494.369%2046.9574C494.374%2047.0089%20494.381%2047.0586%20494.392%2047.1083C494.414%2047.1837%20494.463%2047.2643%20494.521%2047.3209C494.602%2047.4015%20494.698%2047.4066%20494.79%2047.4529C494.857%2047.4855%20494.919%2047.5369%20494.999%2047.5609C495.055%2047.5781%20495.111%2047.5866%20495.168%2047.5901L495.057%2047.5438C495.062%2047.5283%20495.2%2047.6758%20495.212%2047.6878C495.28%2047.7478%20495.355%2047.7872%20495.445%2047.8061C495.501%2047.8232%20495.557%2047.8267%20495.611%2047.8147C495.525%2047.7889%20495.527%2047.7992%20495.614%2047.8438L495.458%2047.6895C495.43%2047.5592%20495.421%2047.5335%20495.43%2047.6158C495.433%2047.6672%20495.442%2047.7169%20495.454%2047.7649C495.489%2047.8781%20495.567%2047.9844%20495.67%2048.0444C495.846%2048.1456%20496.01%2048.0873%20496.189%2048.0444H495.957L495.985%2048.0495L495.794%2047.9398C495.921%2048.0684%20495.856%2048.0444%20495.973%2048.1661C496.02%2048.2159%20496.076%2048.2536%20496.137%2048.2844C496.384%2048.4079%20496.1%2048.2141%20496.241%2048.3513C496.44%2048.545%20496.703%2048.5519%20496.938%2048.6805L496.781%2048.5262C496.753%2048.4096%20496.741%2048.3804%20496.745%2048.4422C496.745%2048.4885%20496.75%2048.533%20496.76%2048.5793C496.774%2048.6376%20496.793%2048.6925%20496.827%2048.7439C496.933%2048.9119%20497.095%2048.9308%20497.25%2048.9771L497.058%2048.8674C497.164%2048.9634%20497.241%2049.0577%20497.391%2049.0988C497.497%2049.128%20497.596%2049.1297%20497.696%2049.1588L497.436%2048.9617L497.412%2048.8639L497.427%2048.9771C497.44%2049.0268%20497.455%2049.0782%20497.481%2049.1228C497.548%2049.2325%20497.64%2049.2994%20497.757%2049.3474C497.934%2049.4211%20498.093%2049.4228%20498.3%2049.3903H498.068C497.978%2049.3388%20497.967%2049.3371%20498.035%2049.3851C498.088%2049.416%20498.096%2049.4246%20498.06%2049.4143L497.948%2049.2257C498.014%2049.3834%20498.086%2049.5051%20498.208%2049.5977C498.29%2049.6595%20498.342%2049.7075%20498.443%2049.7383C498.493%2049.7537%20498.546%2049.7623%20498.598%2049.764C498.655%2049.7658%20498.661%2049.764%20498.617%2049.7572L498.425%2049.6474L498.452%2049.6783L498.34%2049.4897C498.422%2049.6852%20498.518%2049.8189%20498.687%2049.9303C498.864%2050.0486%20499.025%2050.0178%20499.225%2049.9886H498.993C498.971%2050.0075%20498.993%2050.0212%20499.059%2050.0298L498.903%2049.8755C498.882%2049.8463%20498.875%2049.704%20498.871%2049.8069C498.871%2049.8532%20498.882%2049.9115%20498.894%2049.9578C498.929%2050.0829%20499.023%2050.1841%20499.133%2050.2492C499.333%2050.3658%20499.504%2050.3761%20499.73%2050.3452H499.498C499.453%2050.3367%20499.657%2050.3932%20499.692%2050.4087L499.5%2050.299C499.456%2050.2527%20499.641%2050.4961%20499.582%2050.4121C499.643%2050.5013%20499.685%2050.5818%20499.784%2050.6384C499.859%2050.6813%20499.984%2050.707%20500.05%2050.7173C500.101%2050.7327%20500.153%2050.7413%20500.205%2050.743C500.263%2050.7447%20500.268%2050.743%20500.225%2050.7344L500.033%2050.6247C500.101%2050.6864%20500.15%2050.7584%20500.233%2050.8064C500.303%2050.8459%20500.449%2050.875%20500.498%2050.8905L500.238%2050.6933C500.211%2050.563%20500.202%2050.539%20500.211%2050.6213C500.214%2050.6727%20500.223%2050.7224%20500.233%2050.7722C500.256%2050.8493%20500.305%2050.9282%20500.362%2050.9848C500.519%2051.1391%20500.73%2051.1185%20500.93%2051.0876H500.698C500.751%2051.0979%20500.883%2051.1271%20500.902%2051.1322L500.643%2050.935C500.615%2050.8013%20500.608%2050.7739%20500.62%2050.8562C500.622%2050.9059%20500.63%2050.9556%20500.644%2051.0036C500.677%2051.1082%20500.738%2051.1733%20500.813%2051.2488C500.892%2051.3294%20500.968%2051.3997%20501.081%2051.4339C501.132%2051.4494%20501.182%2051.458%20501.236%2051.4597C501.292%2051.4614%20501.299%2051.4597%20501.254%2051.4545L501.062%2051.3448C501.007%2051.2882%20501.099%2051.4048%20501.101%2051.4065C501.144%2051.4631%20501.186%2051.5077%20501.25%2051.5454C501.292%2051.5694%20501.346%2051.5865%20501.393%2051.6003C501.317%2051.5814%20501.639%2051.6397%20501.526%2051.6088L501.334%2051.4991C501.257%2051.4237%20501.463%2051.6534%20501.409%2051.6003C501.47%2051.6637%20501.543%2051.7134%20501.63%2051.7374C501.769%2051.7786%20501.891%2051.7391%20502.025%2051.7117H501.794L501.827%2051.7168L501.635%2051.6071C501.703%2051.6723%20501.773%2051.7803%20501.85%2051.8523C501.916%2051.914%20501.994%2051.9517%20502.083%2051.9723C502.104%2051.9774%20502.295%2051.9912%20502.221%2051.974L502.029%2051.8643C502.078%2051.902%20502.132%2051.9431%20502.17%2051.9912L502.059%2051.8026C502.109%2051.9603%20502.158%2052.1163%20502.315%2052.2055C502.471%2052.2946%20502.639%2052.2586%20502.808%2052.2312H502.576C502.557%2052.2278%20502.501%2052.1489%20502.551%2052.2312C502.578%2052.2723%20502.612%2052.3118%20502.647%2052.3461C502.712%2052.4061%20502.759%2052.4215%20502.83%2052.4575C502.848%2052.4661%20502.989%2052.5381%20502.936%2052.5021C502.91%2052.4849%20503.011%2052.5929%20503.032%2052.6135C503.091%2052.6684%20503.161%2052.7061%20503.241%2052.7267C503.372%2052.761%20503.485%2052.7267%20503.612%2052.7078H503.381C503.313%2052.6941%20503.433%2052.7301%20503.45%2052.7387L503.293%2052.5844C503.227%2052.4986%20503.349%2052.7438%20503.346%2052.7387C503.398%2052.8313%20503.476%2052.8981%20503.574%2052.941C503.738%2053.0113%20503.873%2052.9581%20504.034%2052.9204H503.802L503.83%2052.9256L503.638%2052.8158C503.678%2052.8501%20503.711%2052.8878%20503.753%2052.9221C503.931%2053.073%20504.194%2053.0953%20504.37%2052.9221C504.527%2052.7678%20504.549%2052.4678%20504.37%2052.3152C504.264%2052.226%20504.18%2052.1266%20504.035%2052.094C503.891%2052.0615%20503.786%2052.1095%20503.656%2052.1403H503.887L503.859%2052.1352L504.119%2052.3323C504.143%2052.3649%20504.135%2052.3718%20504.122%2052.3221C504.11%2052.2723%20504.093%2052.2209%20504.067%2052.178C504.006%2052.0786%20503.922%2052.0169%20503.819%2051.9654C503.623%2051.8643%20503.469%2051.8729%20503.257%2051.9054H503.489L503.455%2051.8986L503.647%2052.0083C503.548%2051.9054%20503.482%2051.8283%20503.351%2051.7597C503.344%2051.7563%20503.224%2051.6945%20503.222%2051.698C503.212%2051.722%20503.367%2051.8266%20503.189%2051.6397C503.105%2051.5505%20502.959%2051.4477%20502.839%2051.4151C502.705%2051.3791%20502.581%2051.4117%20502.449%2051.4322H502.68L502.647%2051.4254L502.839%2051.5351L502.818%2051.5094L502.929%2051.698C502.879%2051.542%20502.827%2051.4219%20502.701%2051.3105C502.625%2051.2419%20502.55%2051.1802%20502.449%2051.1493C502.398%2051.1356%20502.346%2051.1288%20502.292%2051.1253C502.234%2051.1236%20502.228%2051.1271%20502.269%2051.1391L502.461%2051.2488C502.36%2051.1442%20502.292%2051.0139%20502.158%2050.9367C501.998%2050.8442%20501.829%2050.8836%20501.658%2050.9196H501.89L501.857%2050.9145L502.048%2051.0242C502.104%2051.079%20502.012%2050.9727%20502.008%2050.9676C501.963%2050.911%20501.923%2050.8682%20501.857%2050.8287C501.815%2050.8047%20501.761%2050.7876%20501.714%2050.7756C501.79%2050.7944%20501.468%2050.7361%20501.581%2050.767L501.773%2050.8767C501.829%2050.9333%20501.736%2050.8167%20501.735%2050.815C501.691%2050.7584%20501.649%2050.7139%20501.585%2050.6761C501.543%2050.6521%20501.489%2050.6333%20501.442%2050.6213C501.519%2050.6401%20501.198%2050.5801%20501.31%2050.611L501.501%2050.7207C501.451%2050.6761%20501.4%2050.5681%20501.454%2050.7327C501.513%2050.9145%20501.477%2050.767%20501.47%2050.7207C501.449%2050.587%20501.393%2050.4687%20501.28%2050.3847C501.085%2050.2407%20500.827%2050.2424%20500.594%2050.2784H500.825L500.784%2050.2698L501.043%2050.467C501.069%2050.5904%20501.08%2050.6213%20501.073%2050.5596C501.069%2050.515%20501.064%2050.4687%20501.055%2050.4241C501.041%2050.3675%20501.019%2050.3127%20500.987%2050.263C500.883%2050.0984%20500.709%2050.0709%20500.568%2050.0246L500.759%2050.1344C500.651%2050.0349%20500.566%2049.9355%20500.414%2049.8995C500.392%2049.8943%20500.205%2049.8841%20500.279%2049.8926C500.245%2049.8892%20500.094%2049.8498%20500.115%2049.8566L500.306%2049.9663C500.338%2050.0023%20500.319%2049.9543%20500.31%2049.9372C500.287%2049.8943%20500.245%2049.8583%20500.214%2049.8189C500.139%2049.7246%20500.083%2049.6595%20499.97%2049.6029C499.789%2049.5137%20499.608%2049.5017%20499.392%2049.5326H499.624C499.667%2049.5412%20499.559%2049.5034%20499.545%2049.4966L499.702%2049.6509C499.723%2049.68%20499.73%2049.8223%20499.733%2049.7195C499.733%2049.6732%20499.723%2049.6149%20499.711%2049.5686C499.674%2049.4366%20499.575%2049.3406%20499.46%2049.2703C499.254%2049.1417%20499.091%2049.1502%20498.863%2049.1845H499.094C499.185%2049.236%20499.195%2049.2377%20499.127%2049.1897C499.075%2049.1588%20499.066%2049.1502%20499.103%2049.1605L499.214%2049.3491C499.145%2049.1811%20499.079%2049.0319%20498.899%2048.9531C498.836%2048.9256%20498.734%2048.8845%20498.667%2048.9068C498.596%2048.9068%20498.633%2048.9239%20498.781%2048.9599C498.681%2048.9016%20498.659%2048.8811%20498.711%2048.8982L498.822%2049.0868C498.741%2048.8896%20498.645%2048.7576%20498.478%2048.6462C498.3%2048.5279%20498.138%2048.557%20497.939%2048.5896H498.171C498.262%2048.6085%20498.074%2048.5553%20498.094%2048.5656L498.251%2048.7199C498.281%2048.8554%20498.284%2048.8502%20498.26%2048.7045C498.251%2048.653%20498.234%2048.605%20498.206%2048.5588C498.164%2048.485%20498.103%2048.4199%20498.03%2048.377C497.892%2048.2981%20497.73%2048.305%20497.595%2048.2673L497.786%2048.377C497.718%2048.3153%20497.666%2048.2433%20497.584%2048.197C497.502%2048.1507%20497.393%2048.1404%20497.316%2048.1181L497.575%2048.3153C497.649%2048.425%20497.617%2048.4439%20497.603%2048.3204C497.595%2048.2501%20497.581%2048.185%20497.546%2048.1233C497.478%2048.0015%20497.359%2047.9295%20497.236%2047.8712C497.126%2047.8198%20497.025%2047.8044%20496.924%2047.7632C496.966%2047.7804%20496.806%2047.7135%20496.828%2047.7238C496.692%2047.6724%20496.889%2047.7975%20496.795%2047.6946C496.76%2047.6569%20496.71%2047.6175%20496.668%2047.5935C496.635%2047.5763%20496.602%2047.5626%20496.569%2047.5489C496.475%2047.5043%20496.496%2047.5266%20496.628%2047.6175C496.628%2047.5592%20496.515%2047.4683%20496.475%2047.4238C496.266%2047.1889%20496.078%2047.2094%20495.797%2047.2746H496.029L496.001%2047.2695L496.26%2047.4666C496.288%2047.5969%20496.297%2047.6226%20496.288%2047.5403C496.285%2047.4889%20496.276%2047.4392%20496.264%2047.3912C496.233%2047.29%20496.172%2047.2146%20496.092%2047.146C496.011%2047.0774%20495.912%2047.014%20495.811%2046.9848C495.759%2046.9728%20495.707%2046.9643%20495.654%2046.9608C495.597%2046.9574%20495.588%2046.9643%20495.628%2046.9797L495.82%2047.0894C495.684%2046.966%20495.572%2046.8288%20495.39%2046.7723C495.334%2046.7551%20495.278%2046.7465%20495.221%2046.7431C495.285%2046.75%20495.278%2046.7345%20495.196%2046.6985C495.118%2046.6471%20495.02%2046.6402%20494.935%2046.6111L495.195%2046.8083C495.224%2046.9368%20495.233%2046.9591%20495.226%2046.8768C495.221%2046.8254%20495.214%2046.7757%20495.203%2046.726C495.168%2046.6128%20495.09%2046.5065%20494.987%2046.4465C494.81%2046.3436%20494.646%2046.4053%20494.467%2046.4499H494.698L494.67%2046.4448L494.862%2046.5545L494.836%2046.5236L494.947%2046.7122C494.86%2046.4962%20494.763%2046.3676%20494.55%2046.2579C494.465%2046.215%20494.39%2046.1739%20494.303%2046.1482C494.252%2046.131%20494.202%2046.1225%20494.148%2046.1207C494.092%2046.119%20494.087%2046.1207%20494.132%2046.1242L494.324%2046.2339L494.303%2046.2082L494.414%2046.3968C494.343%2046.1739%20494.231%2045.9973%20494.017%2045.879C493.909%2045.8207%20493.897%2045.819%20493.789%2045.7538C493.737%2045.723%20493.683%2045.699%20493.624%2045.6853C493.604%2045.6801%20493.411%2045.663%20493.488%2045.6818L493.747%2045.879C493.798%2045.9442%20493.787%2046.059%20493.763%2045.903C493.752%2045.8344%20493.737%2045.771%20493.702%2045.7093C493.624%2045.5738%20493.512%2045.5275%20493.376%2045.4692C493.341%2045.4538%20493.282%2045.4127%20493.235%2045.3767C493.131%2045.2961%20493.031%2045.2515%20492.927%2045.2155C492.859%2045.1915%20492.796%2045.1606%20492.72%2045.1692C492.634%2045.1778%20492.713%2045.1984%20492.756%2045.2001C492.646%2045.1452%20492.62%2045.1366%20492.68%2045.1761C492.713%2045.2018%20492.714%2045.2018%20492.688%2045.1761C492.664%2045.1401%20492.622%2045.1161%20492.591%2045.0886C492.41%2044.9223%20492.241%2044.8657%20492.016%2044.8057L492.208%2044.9155C492.157%2044.8743%20492.101%2044.8332%20492.061%2044.7817L492.173%2044.9703C492.098%2044.7646%20491.997%2044.6377%20491.828%2044.528C491.737%2044.4697%20491.641%2044.4337%20491.532%2044.4354C491.537%2044.4354%20491.251%2044.4594%20491.361%2044.4731L491.737%2044.6857C491.753%2044.7063%20491.765%2044.8692%20491.76%2044.7629C491.758%2044.7149%20491.749%2044.6617%20491.736%2044.6137C491.697%2044.4817%20491.598%2044.3891%20491.485%2044.3154C491.406%2044.2657%20491.359%2044.228%20491.277%2044.1799C491.182%2044.1234%20491.079%2044.1148%20490.988%2044.0908L491.18%2044.2005C491.236%2044.2571%20491.143%2044.1405%20491.142%2044.1388C491.098%2044.0822%20491.056%2044.0376%20490.992%2043.9999C490.948%2043.9742%20490.896%2043.9605%20490.847%2043.9485C490.91%2043.9639%20490.603%2043.9279%20490.71%2043.9502L490.901%2044.0599C490.724%2043.8902%20490.556%2043.7908%20490.318%2043.6947L490.509%2043.8045C490.393%2043.6862%20490.332%2043.5936%20490.152%2043.5627C490.077%2043.549%20490.023%2043.5473%20489.945%2043.5662C489.912%2043.5747%20489.806%2043.5799%20489.893%2043.5902L490.201%2043.7153L490.175%2043.6845L490.286%2043.873C490.241%2043.7616%20490.201%2043.6485%20490.112%2043.5627C490.046%2043.4993%20489.957%2043.4599%20489.868%2043.4376L489.753%2043.4221C489.801%2043.4256%20489.811%2043.4239%20489.788%2043.4187C489.689%2043.3433%20489.612%2043.2627%20489.484%2043.2267C489.377%2043.1975%20489.304%2043.1941%20489.194%2043.1564L489.386%2043.2661L489.36%2043.2353L489.471%2043.4239C489.395%2043.2353%20489.313%2043.069%20489.104%2043.0021C489.05%2042.9849%20488.994%2042.9747%20488.937%2042.9729C489.064%2043.0329%20489.088%2043.0364%20489.008%2042.9832C488.949%2042.9284%20488.904%2042.9044%20488.839%2042.8546C488.991%2042.9712%20488.844%2042.8306%20488.808%2042.7929C488.733%2042.7141%20488.641%2042.666%20488.534%2042.642C488.379%2042.6078%20488.224%2042.6078%20488.055%2042.6335H488.287L488.247%2042.6266L488.439%2042.7363L488.416%2042.7123L488.527%2042.9009C488.47%2042.7672%20488.43%2042.6369%20488.306%2042.5426C488.148%2042.4226%20487.972%2042.4449%20487.787%2042.4775H488.019L487.979%2042.4706L488.17%2042.5803C488.109%2042.5272%20488.057%2042.4655%20487.996%2042.4123C487.991%2042.4072%20487.921%2042.3403%20487.946%2042.3677C487.98%2042.4054%20487.81%2042.2014%20487.862%2042.2529C487.684%2042.0728%20487.482%2042.0917%20487.252%2042.1397H487.484C487.442%2042.1328%20487.284%2042.0968%20487.294%2042.0986L487.486%2042.2083C487.43%2042.1637%20487.378%2042.1157%20487.326%2042.0694C487.235%2041.9905%20487.275%2042.0265%20487.202%2041.9391C487.035%2041.7351%20486.82%2041.7265%20486.575%2041.7711H486.807L486.765%2041.7659L486.956%2041.8757C487.007%2041.9271%20486.913%2041.7968%20486.92%2041.8037C486.878%2041.7488%20486.829%2041.7025%20486.768%2041.6648C486.742%2041.6476%20486.383%2041.4676%20486.355%2041.5259C486.355%2041.5225%20486.568%2041.6305%20486.38%2041.5088C486.314%2041.4659%20486.253%2041.4419%20486.174%2041.4282C486.105%2041.4162%20486.035%2041.4162%20485.967%2041.4333L485.925%2041.447C485.788%2041.5002%20485.786%2041.5036%20485.922%2041.4608L486.23%2041.5859C486.284%2041.6391%20486.188%2041.5122%20486.19%2041.5156C486.146%2041.459%20486.103%2041.4128%20486.038%2041.3768C485.92%2041.3082%20485.772%2041.267%20485.645%2041.219L485.836%2041.3287L485.89%2041.4213C485.875%2041.3802%20485.857%2041.3407%20485.838%2041.3013C485.814%2041.2602%20485.784%2041.219%20485.749%2041.1864C485.648%2041.087%20485.497%2041.0373%20485.368%2040.9859C485.283%2040.9516%20485.162%2040.9207%20485.101%2040.9121C485.051%2040.9053%20484.997%2040.8933%20484.945%2040.8933C485.002%2040.8933%20484.711%2040.9053%20484.809%2040.9121L485.117%2041.0373C485.18%2041.0904%20484.999%2040.8933%20485.035%2040.9327C484.986%2040.883%20484.929%2040.8435%20484.865%2040.8178C484.8%2040.7921%20484.727%2040.7784%20484.656%2040.7801C484.635%2040.7801%20484.45%2040.8075%20484.516%2040.8093L484.824%2040.9344C484.872%2040.9738%20484.781%2040.8778%20484.776%2040.8727C484.73%2040.8178%20484.675%2040.7853%20484.622%2040.7373C484.676%2040.787%20484.586%2040.6841%20484.577%2040.6772C484.516%2040.6275%20484.476%2040.6087%20484.396%2040.5778C484.281%2040.5332%20484.171%2040.4989%20484.048%2040.5178C483.924%2040.5367%20483.851%2040.5967%20483.746%2040.6447L483.966%2040.5864H483.938C484.011%2040.6069%20484.084%2040.6258%20484.157%2040.6464C484.053%2040.5795%20483.959%2040.5041%20483.837%2040.4526C483.668%2040.3789%20483.539%2040.3721%20483.361%2040.3601L483.581%2040.4184C483.504%2040.3686%20483.428%2040.2915%20483.342%2040.2418C483.205%2040.1612%20483.06%2040.18%20482.936%2040.1732L483.156%2040.2315C483.064%2040.192%20483.01%2040.1492%20482.93%2040.0977C482.801%2040.0155%20482.693%2040.036%20482.557%2040.0069C482.498%2039.9949%20482.442%2039.9537%20482.381%2039.9314C482.313%2039.9074%20482.245%2039.892%20482.172%2039.8937C482.151%2039.8937%20481.963%2039.9212%20482.038%2039.9229L482.257%2039.9812C482.121%2039.9074%20482.001%2039.8183%20481.876%2039.7428C481.655%2039.6125%20481.466%2039.6948%20481.257%2039.7926L481.477%2039.7343H481.442C481.515%2039.7548%20481.588%2039.7754%20481.662%2039.7943C481.628%2039.7806%20481.599%2039.7651%20481.569%2039.7463C481.634%2039.8389%20481.649%2039.8509%20481.613%2039.784C481.585%2039.7291%20481.543%2039.6828%20481.498%2039.6417C481.372%2039.5285%20481.198%2039.5062%20481.04%2039.4634C481.01%2039.4531%20480.981%2039.4462%20480.951%2039.4428C480.796%2039.4119%20480.796%2039.4222%20480.951%2039.4754C480.958%2039.4377%20480.723%2039.3382%20480.714%2039.3365C480.571%2039.2971%20480.394%2039.3262%20480.266%2039.3194L480.486%2039.3777C480.411%2039.3417%20480.378%2039.2851%20480.439%2039.3965C480.533%2039.5663%20480.453%2039.3742%20480.421%2039.3245C480.333%2039.1839%20480.186%2039.0999%20480.021%2039.0896C479.855%2039.0793%20479.686%2039.0862%20479.505%2039.0193L479.697%2039.1291C479.767%2039.2439%20479.77%2039.2371%20479.707%2039.1085C479.69%2039.0605%20479.66%2039.0176%20479.622%2038.9816C479.531%2038.8873%20479.422%2038.8393%20479.289%2038.8325C479.237%2038.8256%20479.185%2038.829%20479.133%2038.8445C479.056%2038.8582%20479.073%2038.8599%20479.183%2038.8496C479.152%2038.8753%20478.936%2038.7707%20478.911%2038.8085C479.058%2038.8787%20479.068%2038.8719%20478.941%2038.7879C479.009%2038.8753%20479.025%2038.8873%20478.99%2038.8204C478.958%2038.7399%20478.864%2038.6559%20478.79%2038.613C478.676%2038.5478%20478.539%2038.541%20478.413%2038.5667C478.337%2038.5804%20478.354%2038.5804%20478.466%2038.5684C478.431%2038.565%20478.396%2038.5564%20478.363%2038.5461L478.554%2038.6559C478.624%2038.7724%20478.628%2038.7656%20478.565%2038.637C478.546%2038.589%20478.518%2038.5478%20478.479%2038.5118C478.403%2038.4313%20478.314%2038.3884%20478.206%2038.3713C478.032%2038.3455%20477.912%2038.4295%20477.762%2038.4913L477.981%2038.433H477.953C478.027%2038.4518%20478.1%2038.4724%20478.173%2038.4913C478.009%2038.3935%20477.804%2038.3181%20477.635%2038.2855L477.826%2038.3953C477.884%2038.4415%20477.72%2038.2718%20477.743%2038.2941C477.694%2038.2444%20477.635%2038.2067%20477.572%2038.1809C477.509%2038.1552%20477.436%2038.1415%20477.363%2038.1432C477.342%2038.1432%20477.154%2038.1724%20477.225%2038.1741L477.445%2038.2324C477.353%2038.1827%20477.267%2038.1381%20477.17%2038.0969C477.072%2038.0558%20477.225%2038.1569%20477.168%2038.0712C477.145%2038.0386%20477.077%2038.0009%20477.051%2037.9804C476.95%2037.8998%20476.848%2037.8278%20476.703%2037.8243C476.654%2037.8243%20476.6%2037.8243%20476.553%2037.838C476.522%2037.8466%20476.492%2037.8586%20476.463%2037.8723C476.376%2037.9066%20476.395%2037.9032%20476.518%2037.8655L476.827%2037.9906C476.896%2038.1055%20476.9%2038.0987%20476.837%2037.9701C476.82%2037.9221%20476.79%2037.8792%20476.752%2037.8432C476.673%2037.7626%20476.586%2037.7197%20476.477%2037.7026C476.398%2037.6889%20476.304%2037.6837%20476.231%2037.7197C476.156%2037.7438%20476.177%2037.7472%20476.297%2037.7335C476.156%2037.7112%20476.144%2037.7112%20476.261%2037.7369L476.417%2037.8912C476.332%2037.7815%20476.259%2037.6735%20476.121%2037.6203C476.057%2037.5946%20475.984%2037.5792%20475.912%2037.5792L475.797%2037.5946C475.742%2037.6083%20475.735%2037.6066%20475.778%2037.5894L476.086%2037.7146L476.067%2037.694L476.179%2037.8826C476.114%2037.718%20476.083%2037.5534%20475.912%2037.4557C475.822%2037.4043%20475.715%2037.4077%20475.641%2037.4009C475.578%2037.3957%20475.432%2037.3288%20475.501%2037.4009L475.613%2037.5894C475.534%2037.3974%20475.468%2037.2037%20475.24%2037.142C475.188%2037.1351%20475.135%2037.1283%20475.083%2037.1214C475.027%2037.1265%20474.973%2037.1351%20474.919%2037.1454C475.061%2037.1454%20475.055%2037.142%20474.906%2037.1283C474.85%2037.1265%20474.845%2037.1317%20474.89%2037.1454L475.081%2037.2551L475.066%2037.238L475.177%2037.4266C475.148%2037.3374%20475.188%2037.5329%20475.163%2037.3751C475.158%2037.3374%20475.155%2037.3014%20475.144%2037.2654C475.104%2037.1248%20475.014%2037.0288%20474.886%2036.9602C474.778%2036.9019%20474.655%2036.8488%20474.531%2036.8522C474.477%2036.8522%20474.428%2036.8676%20474.378%2036.8831C474.334%2036.8968%20474.292%2036.9139%20474.254%2036.9379C474.2%2036.9654%20474.23%2036.9637%20474.346%2036.9294L474.566%2036.9877C474.451%2036.9037%20474.336%2036.8454%20474.19%2036.7854L474.381%2036.8951L474.362%2036.8745L474.474%2037.0631C474.393%2036.8539%20474.339%2036.6602%20474.087%2036.595C474.035%2036.5813%20473.979%2036.583%20473.928%2036.5779C473.881%2036.5728%20473.972%2036.5985%20473.885%2036.5728C473.798%2036.547%20473.714%2036.523%20473.631%2036.4956L473.822%2036.6053C473.772%2036.5676%20473.721%2036.523%20473.678%2036.4785L473.789%2036.6671C473.7%2036.4579%20473.632%2036.2967%20473.392%2036.2196C473.213%2036.163%20473.058%2036.1716%20472.876%2036.2076H473.108L473.075%2036.2024L473.267%2036.3122L473.246%2036.2864L473.357%2036.475C473.296%2036.271%20473.225%2036.0876%20472.997%2036.0173C472.826%2035.9658%20472.638%2035.9727%20472.458%2036.0035H472.69C472.77%2036.0584%20472.777%2036.0601%20472.711%2036.0121C472.645%2035.9607%20472.652%2035.9675%20472.73%2036.031C472.699%2035.9795%20472.671%2035.9315%20472.627%2035.887C472.556%2035.8167%20472.483%2035.7567%20472.413%2035.6984C472.185%2035.5081%20471.927%2035.4961%20471.643%2035.5338H471.875L471.835%2035.5269L472.026%2035.6366L472.009%2035.6144L472.121%2035.803C472.077%2035.6504%20472.056%2035.5132%20471.915%2035.4086C471.744%2035.2817%20471.567%2035.316%20471.373%2035.3589H471.605L471.572%2035.3538L471.764%2035.4635C471.814%2035.5218%20471.725%2035.3812%20471.732%2035.388C471.692%2035.3332%20471.643%2035.2817%20471.582%2035.2475C471.521%2035.2132%20471.45%2035.1943%20471.38%2035.1857C471.354%2035.1789%20471.326%2035.1772%20471.298%2035.1789C471.253%2035.1789%20471.267%2035.1823%20471.342%2035.1875C471.285%2035.1086%20471.124%2035.0674%20471.035%2035.0297C470.961%2034.9971%20470.887%2034.944%20470.816%2034.8994C470.689%2034.8188%20470.868%2034.9903%20470.811%2034.8891C470.786%2034.8463%20470.743%2034.8137%20470.713%2034.7743C470.76%2034.8377%20470.675%2034.704%20470.678%2034.7074C470.635%2034.6508%20470.588%2034.608%20470.529%2034.5668C470.415%2034.4862%20470.294%2034.4194%20470.149%2034.4194C470.05%2034.4194%20469.97%2034.4622%20469.876%2034.4862H470.107L470.079%2034.4811L470.271%2034.5908L470.25%2034.5651L470.361%2034.7537C470.313%2034.596%20470.262%2034.4399%20470.107%2034.3508C469.952%2034.2616%20469.781%2034.2976%20469.611%2034.3251H469.842L469.809%2034.3182L470.001%2034.4279L469.98%2034.4022L470.091%2034.5908C470.032%2034.4194%20469.954%2034.2582%20469.82%2034.1313C469.752%2034.0662%20469.649%2034.0319%20469.583%2034.0062C469.511%2033.9787%20469.44%2033.9633%20469.369%2033.9393C469.182%2033.8759%20469.391%2033.9547%20469.362%2033.9187L469.473%2034.1073C469.391%2033.8724%20469.296%2033.7404%20469.069%2033.6461C469.039%2033.6341%20468.984%2033.6067%20468.942%2033.5964C468.89%2033.5827%20468.749%2033.5347%20468.841%2033.5724C468.733%2033.5278%20468.623%2033.4832%20468.515%2033.4387L468.775%2033.6358C468.804%2033.7507%20468.811%2033.7644%20468.796%2033.6753C468.792%2033.641%20468.787%2033.6084%20468.78%2033.5741C468.759%2033.5004%20468.705%2033.4112%20468.649%2033.3564C468.587%2033.2947%20468.503%2033.2552%20468.416%2033.2364C468.395%2033.2312%20468.205%2033.2158%20468.277%2033.2329L468.536%2033.4301C468.571%2033.4747%20468.55%2033.4575%20468.533%2033.4078C468.517%2033.3615%20468.498%2033.3152%20468.473%2033.2741C468.395%2033.1472%20468.282%2033.0923%20468.16%2033.0409C468.064%2032.9998%20467.974%2032.986%20467.859%2032.9689C467.949%2032.9826%20467.634%2032.9106%20467.721%2032.9398L467.913%2033.0495L467.892%2033.0238L468.003%2033.2124C467.963%2033.0958%20467.937%2032.9895%20467.846%2032.8969C467.738%2032.7872%20467.599%2032.7717%20467.482%2032.734L467.674%2032.8437C467.603%2032.7683%20467.54%2032.6963%20467.451%2032.6294C467.362%2032.5626%20467.503%2032.7117%20467.409%2032.59C467.366%2032.5334%20467.315%2032.4786%20467.251%2032.4408C467.205%2032.4151%20467.146%2032.3928%20467.096%2032.3808L466.981%2032.3654C467.024%2032.3654%20467.037%2032.3654%20467.014%2032.3585C466.939%2032.2934%20466.855%2032.2334%20466.777%2032.1699C466.718%2032.1219%20466.664%2032.0619%20466.596%2032.0225C466.565%2032.0036%20466.356%2031.8956%20466.502%2032.0002C466.617%2032.0842%20466.535%2032.0036%20466.505%2031.9625C466.333%2031.7345%20466.11%2031.7568%20465.856%2031.7979H466.087L466.054%2031.791L466.314%2031.9882L466.298%2031.9642L466.357%2032.1802C466.328%2031.9642%20466.338%2031.7499%20466.117%2031.6213C466.018%2031.563%20465.922%2031.5699%20465.814%2031.5459C465.889%2031.5613%20465.784%2031.5322%20465.767%2031.5236C465.718%2031.4996%20465.727%2031.5013%20465.662%2031.4584L465.819%2031.6127C465.826%2031.6539%20465.821%2031.647%20465.807%2031.5939C465.795%2031.5424%20465.772%2031.4979%20465.739%2031.4584C465.652%2031.3299%20465.558%2031.3076%20465.432%2031.239C465.598%2031.3299%20465.328%2031.1344%20465.326%2031.1327C465.241%2031.083%20465.152%2031.0761%20465.063%2031.0452L465.255%2031.155C465.295%2031.1995%20465.196%2031.0504%20465.162%2031.0178C465.081%2030.9407%20464.99%2030.9235%20464.891%2030.8858C464.791%2030.8481%20464.642%2030.7846%20464.52%2030.7383L464.711%2030.8481C464.743%2030.8824%20464.724%2030.8515%20464.711%2030.8292C464.68%2030.7726%20464.624%2030.7178%20464.572%2030.6801C464.478%2030.6115%20464.347%2030.5892%20464.264%2030.5618L464.523%2030.7589C464.555%2030.8978%20464.558%2030.8927%20464.534%2030.7452L464.525%2030.7041C464.501%2030.6269%20464.452%2030.5446%20464.394%2030.488C464.293%2030.3886%20464.145%2030.3234%20464.034%2030.2343C463.908%2030.1349%20463.776%2030.0303%20463.64%2029.9463C463.571%2029.9034%20463.494%2029.864%20463.412%2029.8417C463.379%2029.8331%20463.191%2029.8297%20463.248%2029.8417L463.44%2029.9514C463.517%2030.0303%20463.313%2029.792%20463.369%2029.8485C463.306%2029.7851%20463.236%2029.7354%20463.149%2029.7097C463.013%2029.6702%20462.89%2029.7062%20462.757%2029.7268H462.989L462.956%2029.7199L463.147%2029.8297L463.126%2029.804L463.238%2029.9925C463.166%2029.7645%20463.029%2029.4971%20462.778%2029.4199C462.728%2029.4045%20462.644%2029.3685%20462.6%2029.3925C462.548%2029.3908%20462.569%2029.3993%20462.663%2029.4182L462.559%2029.3753C462.559%2029.3753%20462.456%2029.3068%20462.435%2029.2948C462.414%2029.2827%20462.315%2029.2107%20462.362%2029.269L462.473%2029.4576C462.404%2029.2519%20462.327%2029.0736%20462.092%2029.0101C462.04%2028.9964%20461.986%2028.9999%20461.933%2028.9896C461.857%2028.9759%20462.003%2029.0016%20461.916%2028.9861C461.853%2028.9741%20461.784%2028.9501%20461.744%2028.9347L461.9%2029.089C461.965%2029.1765%20461.846%2028.9176%20461.852%2028.9278C461.794%2028.8267%20461.707%2028.765%20461.608%2028.7084C461.413%2028.597%20461.259%2028.6072%20461.047%2028.6484H461.278L461.245%2028.6432L461.437%2028.753C461.386%2028.7084%20461.312%2028.6141%20461.237%2028.5712C461.231%2028.5678%20460.928%2028.4306%20461.087%2028.5301C460.984%2028.4649%20460.968%2028.4341%20460.852%2028.3895C460.78%2028.3621%20460.735%2028.3432%20460.672%2028.2969C460.557%2028.2129%20460.397%2028.1238%20460.239%2028.0929C460.087%2028.0569%20460.084%2028.0723%20460.228%2028.1392C460.186%2028.1032%20460.143%2028.0723%20460.096%2028.0432C460.016%2028.0003%20459.927%2027.9797%20459.842%2027.9489L460.033%2028.0586L460.014%2028.0363L460.125%2028.2249C460.077%2028.05%20460.049%2027.8837%20459.873%2027.7826C459.77%2027.7243%20459.624%2027.6711%20459.507%2027.666C459.455%2027.6557%20459.403%2027.6591%20459.35%2027.6763C459.295%2027.69%20459.286%2027.69%20459.328%2027.6728L459.547%2027.7311C459.448%2027.6763%20459.361%2027.6248%20459.248%2027.6025C459.169%2027.5871%20459.096%2027.5974%20459.018%2027.5888L459.326%2027.714L459.303%2027.69L459.415%2027.8786C459.34%2027.6883%20459.262%2027.5563%20459.108%2027.4345C459.013%2027.3574%20458.91%2027.3111%20458.784%2027.3094C458.734%2027.3094%20458.68%2027.3179%20458.631%2027.3317C458.607%2027.3402%20458.582%2027.3488%20458.558%2027.3608C458.474%2027.3934%20458.49%2027.3917%20458.605%2027.3557L458.913%2027.4808C458.978%2027.5408%20458.786%2027.3197%20458.835%2027.3711C458.786%2027.3214%20458.73%2027.2802%20458.664%2027.2545C458.527%2027.1996%20458.391%2027.2202%20458.246%2027.2408H458.478C458.412%2027.2305%20458.347%2027.2116%20458.283%2027.1911L458.474%2027.3008C458.541%2027.3591%20458.351%2027.1482%20458.394%2027.1945C458.345%2027.1431%20458.286%2027.1088%20458.224%2027.0779C458.11%2027.0248%20457.988%2026.9973%20457.87%2026.9579L458.062%2027.0676C458.089%2027.0933%20457.99%2026.9596%20457.955%2026.927C457.846%2026.8259%20457.734%2026.8122%20457.593%2026.7933C457.459%2026.7745%20457.396%2026.723%20457.267%2026.6544C457.18%2026.6081%20457.064%2026.5619%20456.964%2026.5396C456.851%2026.5499%20456.815%2026.543%20456.856%2026.519C456.97%2026.6973%20456.989%2026.7093%20456.916%2026.5584C456.808%2026.3544%20456.642%2026.3218%20456.447%2026.2824L456.639%2026.3921L456.616%2026.3681L456.727%2026.5567C456.642%2026.351%20456.572%2026.1727%20456.329%2026.1127C456.175%2026.0749%20456.036%2026.0749%20455.876%2026.0098L456.067%2026.1195C456.215%2026.2858%20456.013%2026.0115%20456.001%2025.9978C455.938%2025.9326%20455.872%2025.8829%20455.782%2025.8572C455.648%2025.8178%20455.526%2025.8538%20455.393%2025.8743H455.625C455.695%2025.8881%20455.58%2025.8298%20455.566%2025.8212L455.722%2025.9755C455.768%2026.0372%20455.764%2026.1487%20455.742%2025.9892C455.733%2025.9309%20455.728%2025.8983%20455.703%2025.8452C455.644%2025.7098%20455.543%2025.6326%20455.409%2025.5726C455.322%2025.5332%20455.223%2025.4954%20455.106%2025.4817C455.062%2025.4766%20455.005%2025.4783%20454.923%2025.4509L455.115%2025.5606C455.174%2025.6292%20455.015%2025.4063%20455.05%2025.444C455.003%2025.3926%20454.951%2025.3549%20454.89%2025.3188C454.777%2025.2503%20454.655%2025.2228%20454.535%2025.1765L454.726%2025.2863C454.669%2025.2314%20454.629%2025.18%20454.587%2025.1234C454.582%2025.1165%20454.496%2024.988%20454.542%2025.0548C454.509%2025.0068%20454.484%2024.9554%20454.442%2024.9125C454.378%2024.8457%20454.289%2024.7925%20454.204%2024.7514C454.158%2024.7291%20454.108%2024.7085%20454.059%2024.6948C454.122%2024.7119%20453.829%2024.6519%20453.916%2024.6811L454.176%2024.8782L454.205%2024.9845C454.202%2024.9399%20454.195%2024.8954%20454.186%2024.8508C454.172%2024.7994%20454.15%2024.7462%20454.122%2024.6999C454.047%2024.5782%20453.925%2024.537%20453.817%2024.477L453.974%2024.6313C453.908%2024.5405%20453.869%2024.4479%20453.775%2024.3759C453.73%2024.3416%20453.695%2024.3227%20453.643%2024.3022C453.65%2024.3056%20453.495%2024.2473%20453.566%2024.285L453.723%2024.4393L453.709%2024.4085L453.768%2024.6245C453.758%2024.3982%20453.723%2024.2473%20453.545%2024.0827C453.38%2023.9301%20453.227%2023.9318%20453.016%2023.9215L453.235%2023.9798L453.209%2023.9678L453.41%2024.2233C453.406%2024.2679%20453.403%2024.2627%20453.403%2024.2061C453.403%2024.153%20453.394%2024.1016%20453.373%2024.0536C453.359%2024.0021%20453.338%2023.949%20453.321%2023.8993C453.248%2023.6952%20453.091%2023.6181%20452.897%2023.5409L453.089%2023.6507C453.037%2023.6095%20452.976%2023.5666%20452.929%2023.5221L453.04%2023.7107C453.016%2023.6472%20452.998%2023.5786%20452.985%2023.5135V23.7415C453.014%2023.5598%20453.04%2023.3815%20452.917%2023.2255C452.816%2023.1003%20452.687%2023.0626%20452.54%2023.0163L452.732%2023.126C452.687%2023.09%20452.614%2023.0249%20452.584%2022.994L452.711%2023.2975C452.722%2023.4141%20452.755%2023.1192%20452.755%2023.1312C452.755%2023.0454%20452.737%2022.9546%20452.692%2022.8808C452.6%2022.7265%20452.439%2022.6785%20452.277%2022.6237L452.469%2022.7334L452.443%2022.7111L452.554%2022.8997L452.547%2022.8586V23.0866C452.573%2022.9169%20452.577%2022.7591%20452.525%2022.5945C452.495%2022.5002%20452.452%2022.4179%20452.378%2022.3494C452.338%2022.3151%20452.297%2022.2842%20452.251%2022.2568C452.323%2022.3048%20452.33%2022.2911%20452.274%2022.2139L452.333%2022.4299C452.342%2022.5157%20452.349%2022.2551%20452.349%2022.2945C452.349%2022.2088%20452.33%2022.111%20452.284%2022.0373C452.243%2021.9687%20452.173%2021.9002%20452.105%2021.859L452.067%2021.8419C451.934%2021.7801%20451.929%2021.7836%20452.047%2021.8522L452.175%2022.1556C452.183%2022.2876%20452.213%2021.9859%20452.213%2022.003C452.215%2021.9173%20452.196%2021.8282%20452.152%2021.7544C452.112%2021.6876%20452.035%2021.6087%20451.967%2021.571C451.903%2021.5315%20451.906%2021.5401%20451.98%2021.6001C451.955%2021.5727%20451.936%2021.5435%20451.919%2021.5127L451.978%2021.7287C451.967%2021.6344%20451.983%2021.5435%20451.955%2021.4492C451.927%2021.355%20451.872%2021.2915%20451.826%2021.2126L451.886%2021.4287C451.889%2021.4698%20451.877%2021.4458%20451.886%2021.4098C451.903%2021.3395%20451.903%2021.2692%20451.889%2021.1989C451.866%2021.0806%20451.809%2021.0052%20451.75%2020.9058L451.809%2021.1218C451.798%2021.1646%20451.8%2021.1578%20451.814%2021.1029C451.828%2021.0515%20451.833%2021.0001%20451.826%2020.9486C451.821%2020.8337%20451.781%2020.7309%20451.699%2020.6452C451.595%2020.5371%20451.462%2020.5166%20451.33%2020.4651L451.522%2020.5749L451.502%2020.5543L451.629%2020.8577C451.629%2020.8972%20451.635%2020.8903%20451.649%2020.832C451.661%2020.7806%20451.666%2020.7292%20451.664%2020.676C451.661%2020.5697%20451.619%2020.4806%20451.569%2020.3897C451.532%2020.3263%20451.497%2020.2611%20451.443%2020.208C451.45%2020.2148%20451.245%2020.0331%20451.318%2020.1239L451.445%2020.4274C451.426%2020.2337%20451.431%2020.0777%20451.379%2019.8856C451.351%2019.7845%20451.304%2019.6902%20451.229%2019.6147L451.14%2019.5479C451.093%2019.5119%20451.091%2019.5119%20451.135%2019.5479C451.177%2019.6422%20451.107%2019.4999%20451.1%2019.4896L451.159%2019.7056C451.164%2019.7982%20451.185%2019.4999%20451.184%2019.5667C451.184%2019.517%20451.178%2019.4587%20451.166%2019.4107C451.131%2019.2856%20451.036%2019.2084%20450.987%2019.1021C450.943%2019.0112%20450.915%2018.9152%20450.86%2018.8278C450.8%2018.7352%20450.722%2018.6615%20450.675%2018.5723C450.633%2018.4918%20450.633%2018.4369%20450.614%2018.3477C450.586%2018.226%20450.517%2018.118%20450.457%2018.0083C450.393%2017.8848%20450.313%2017.758%20450.203%2017.6671C450.147%2017.6208%20450.1%2017.5916%20450.027%2017.5711C449.998%2017.5625%20449.903%2017.5179%20449.975%2017.5676L450.175%2017.8231C450.137%2017.6979%20450.135%2017.5762%20450.025%2017.4699C449.992%2017.4373%20449.945%2017.4031%20449.903%2017.3791C449.956%2017.4082%20449.707%2017.2796%20449.776%2017.3276L449.977%2017.5831C449.991%2017.6174%20449.97%2017.6105%20449.968%2017.5694C449.964%2017.5162%20449.952%2017.4682%20449.937%2017.4185C449.907%2017.331%20449.86%2017.2556%20449.823%2017.1699C449.776%2017.0636%20449.741%2016.9761%20449.644%2016.8973C449.6%2016.8613%20449.566%2016.8424%20449.513%2016.8218C449.519%2016.8236%20449.372%2016.7618%20449.437%2016.7996C448.951%2016.5218%20448.514%2017.2625%20448.998%2017.5402L449.012%2017.5214Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M449.134%2016.5729C449.183%2016.5043%20449.204%2016.4769%20449.266%2016.4203L449.075%2016.53L449.103%2016.5232H448.871C449.008%2016.5523%20449.118%2016.6054%20449.266%2016.5712C449.332%2016.5557%20449.39%2016.53%20449.442%2016.4889C449.473%2016.47%20449.5%2016.446%20449.519%2016.4134C449.608%2016.3174%20449.613%2016.3003%20449.536%2016.3637C449.468%2016.4066%20449.468%2016.4117%20449.533%2016.3826L449.637%2016.3397C449.724%2016.29%20449.761%2016.2334%20449.822%2016.158C449.883%2016.0825%20449.794%2016.1905%20449.857%2016.1185C449.874%2016.0997%20449.989%2015.9779%20449.937%2016.0208L449.628%2016.146C449.493%2016.1082%20449.493%2016.1134%20449.63%2016.1648C449.679%2016.1871%20449.731%2016.1974%20449.787%2016.1957C449.9%2016.1991%20449.989%2016.1648%20450.085%2016.11C450.153%2016.0705%20450.229%2016.0225%20450.283%2015.9659C450.276%2015.9745%20450.458%2015.7585%20450.367%2015.8322L450.175%2015.9419C450.21%2015.9334%20450.243%2015.9265%20450.28%2015.9231C450.17%2015.9197%20450.153%2015.9299%20450.228%2015.9522C450.294%2015.9797%20450.391%2015.9677%20450.459%2015.9625C450.564%2015.9557%20450.66%2015.9471%20450.755%2015.8974C450.802%2015.8785%20450.844%2015.8494%20450.881%2015.8134C450.921%2015.7739%20450.926%2015.7722%20450.9%2015.8031L450.564%2015.8459C450.525%2015.8288%20450.531%2015.8339%20450.579%2015.8614C450.625%2015.8854%20450.674%2015.9042%20450.722%2015.9145C450.802%2015.9334%20450.907%2015.9454%20450.989%2015.9437C451.172%2015.9385%20451.288%2015.8322%20451.424%2015.7242L451.233%2015.8339C451.21%2015.8596%20451.233%2015.8648%20451.304%2015.8459L451.085%2015.7876L451.109%2015.8014L450.952%2015.647C451.055%2015.7945%20451.126%2015.9454%20451.32%2015.9985C451.539%2016.0585%20451.739%2016.0174%20451.936%2015.9162L451.717%2015.9745C451.781%2015.9659%20451.851%2015.9711%20451.917%2015.9797L451.698%2015.9214C451.743%2015.9505%20451.809%2016.0054%20451.86%2016.0431L451.703%2015.8888C451.823%2016.0585%20451.94%2016.1854%20452.163%2016.2008C452.215%2016.2043%20452.274%2016.2094%20452.326%2016.2077C452.379%2016.2163%20452.431%2016.2128%20452.483%2016.1957C452.539%2016.182%20452.544%2016.1837%20452.501%2016.1991L452.281%2016.1408C452.419%2016.2385%20452.509%2016.2711%20452.671%2016.3088L452.48%2016.1991L452.497%2016.2197L452.386%2016.0311C452.436%2016.2008%20452.464%2016.3637%20452.638%2016.4631C452.751%2016.5283%20452.889%2016.5352%20453.014%2016.5111C453.094%2016.4957%20453.081%2016.4957%20452.976%2016.5077C453.091%2016.5026%20453.128%2016.5077%20453.086%2016.5249L452.894%2016.4151L452.912%2016.4357L452.8%2016.2471C452.844%2016.4031%20452.879%2016.5163%20452.999%2016.6397C453.077%2016.7203%20453.152%2016.7889%20453.265%2016.8249C453.31%2016.8386%20453.502%2016.866%20453.434%2016.8472L453.243%2016.7375C453.187%2016.6775%20453.272%2016.7958%20453.276%2016.7992C453.317%2016.8558%20453.359%2016.9021%20453.424%2016.9381C453.465%2016.9621%20453.519%2016.9809%20453.566%2016.9929C453.502%2016.9758%20453.805%2017.0409%20453.697%2017.0066L453.506%2016.8969C453.589%2016.9981%20453.648%2017.1009%20453.809%2017.1438C453.939%2017.1781%20454.059%2017.1438%20454.188%2017.1249H453.957L453.99%2017.1335L453.798%2017.0238C453.868%2017.1026%20453.904%2017.2021%20453.988%2017.2827C454.049%2017.3444%20454.134%2017.3855%20454.218%2017.4061C454.241%2017.4113%20454.422%2017.4438%20454.354%2017.4198L454.162%2017.3101C454.188%2017.3324%20454.211%2017.3581%20454.232%2017.3855C454.169%2017.1918%20454.153%2017.1781%20454.185%2017.3444C454.204%2017.425%20454.235%2017.4936%20454.288%2017.5587C454.355%2017.641%20454.437%2017.6959%20454.545%2017.7216C454.528%2017.7164%20454.834%2017.7662%20454.704%2017.7216L454.512%2017.6119C454.671%2017.7507%20454.47%2017.4421%20454.601%2017.6976C454.631%2017.7559%20454.66%2017.8056%20454.711%2017.8553C454.807%2017.9496%20454.944%2018.0199%20455.052%2018.0988L454.895%2017.9445C454.988%2018.0782%20455.054%2018.2308%20455.254%2018.2874C455.273%2018.2925%20455.416%2018.3354%20455.448%2018.3062C455.505%2018.3028%20455.477%2018.2959%20455.362%2018.2874C455.392%2018.3045%20455.42%2018.3234%20455.448%2018.3457L455.291%2018.1913L455.306%2018.2205L455.247%2018.0045C455.266%2018.1965%20455.275%2018.3731%20455.442%2018.5C455.526%2018.5634%20455.625%2018.5977%20455.731%2018.6011C455.782%2018.5994%20455.832%2018.5925%20455.883%2018.584C455.967%2018.5702%20455.937%2018.5685%20455.796%2018.5754L455.604%2018.4657C455.561%2018.4571%20455.582%2018.4862%20455.665%2018.5514C455.618%2018.4657%20455.606%2018.4588%20455.629%2018.5291C455.648%2018.6251%20455.723%2018.7126%20455.791%2018.7777C455.872%2018.8566%20455.961%2018.9269%20456.071%2018.9629C456.118%2018.9852%20456.17%2018.9954%20456.224%2018.9937C456.282%2018.9937%20456.289%2018.9972%20456.243%2019.0006L455.984%2018.8034C455.942%2018.7246%20456.048%2018.9937%20456.019%2018.9389C456.052%2019.0006%20456.094%2019.0537%20456.151%2019.0949C456.271%2019.184%20456.402%2019.1978%20456.548%2019.2098L456.329%2019.1515C456.388%2019.1755%20456.444%2019.2149%20456.498%2019.2509L456.341%2019.0966L456.357%2019.1257L456.297%2018.9097C456.317%2019.1%20456.327%2019.2766%20456.494%2019.4035C456.585%2019.4721%20456.684%2019.4995%20456.796%2019.5098C456.874%2019.5149%20456.862%2019.5115%20456.757%2019.4995C456.79%2019.5132%20456.82%2019.5304%20456.85%2019.5527L456.693%2019.3983C456.672%2019.3641%20456.67%2019.3743%20456.688%2019.4275C456.703%2019.4755%20456.726%2019.5218%20456.752%2019.5664C456.797%2019.6384%20456.865%2019.707%20456.93%2019.7618C456.994%2019.8167%20457.069%2019.8595%20457.154%2019.8835C457.207%2019.8973%20457.261%2019.9024%20457.315%2019.8955C457.466%2019.8801%20457.47%2019.875%20457.323%2019.8818L457.064%2019.6847L457.083%2019.7207L457.024%2019.5046C457.048%2019.6881%20457.067%2019.8578%20457.228%2019.9796C457.336%2020.0601%20457.457%2020.079%20457.569%2020.151C458.043%2020.4493%20458.48%2019.707%20458.008%2019.4103C457.912%2019.3503%20457.801%2019.3143%20457.71%2019.2732L457.867%2019.4275C457.969%2019.6264%20457.842%2019.3058%20457.834%2019.2903C457.792%2019.2132%20457.738%2019.1446%20457.658%2019.1C457.585%2019.0589%20457.489%2019.0332%20457.405%2019.0314H457.362C457.21%2019.0486%20457.207%2019.0537%20457.353%2019.0486L457.545%2019.1583C457.482%2019.0846%20457.473%2019.0846%20457.518%2019.1549C457.511%2019.1017%20457.494%2019.052%20457.466%2019.004C457.417%2018.9149%20457.353%2018.8566%20457.268%2018.8C457.201%2018.7571%20457.125%2018.7143%20457.05%2018.6903C457.001%2018.668%20456.951%2018.6577%20456.895%2018.6594C456.836%2018.6594%20456.829%2018.656%20456.874%2018.6543L457.133%2018.8514L457.118%2018.8223L457.177%2019.0383C457.154%2018.8206%20457.135%2018.6474%20456.937%2018.512C456.883%2018.4742%20456.827%2018.4417%20456.768%2018.4125C456.7%2018.3731%20456.627%2018.3542%20456.548%2018.3542C456.491%2018.3542%20456.484%2018.3508%20456.531%2018.3457L456.79%2018.5428C456.832%2018.6217%20456.724%2018.3508%20456.756%2018.4074C456.722%2018.3457%20456.681%2018.2925%20456.625%2018.2514C456.571%2018.2119%20456.505%2018.1776%20456.439%2018.1588L456.324%2018.1433C456.264%2018.1433%20456.259%2018.1399%20456.304%2018.1365L456.496%2018.2462C456.451%2018.2085%20456.412%2018.1793%20456.459%2018.2548C456.433%2018.2136%20456.43%2018.1502%20456.405%2018.1056C456.36%2018.025%20456.301%2017.9427%20456.238%2017.8793C456.158%2017.797%20456.059%2017.7473%20455.946%2017.7319C455.885%2017.7233%20455.853%2017.7267%20455.794%2017.7336C455.648%2017.7524%20455.717%2017.713%20455.824%2017.7507L456.083%2017.9479L456.068%2017.9187L456.127%2018.1348C456.102%2017.8982%20456.076%2017.7387%20455.866%2017.5913C455.796%2017.5416%20455.724%2017.4936%20455.641%2017.4695C455.594%2017.4558%20455.54%2017.449%20455.489%2017.449C455.448%2017.449%20455.397%2017.4301%20455.47%2017.4575L455.73%2017.6547C455.658%2017.5518%20455.609%2017.4507%20455.491%2017.3615C455.409%2017.2998%20455.322%2017.2432%20455.239%2017.1849L455.395%2017.3392C455.369%2017.2998%20455.364%2017.2964%20455.381%2017.3307C455.369%2017.2792%20455.346%2017.2347%20455.313%2017.1969C455.265%2017.1232%20455.198%2017.0649%20455.129%2017.0083C455.059%2016.9518%20454.991%2016.9106%20454.906%2016.8883C454.925%2016.8935%20454.615%2016.8438%20454.749%2016.8883L455.009%2017.0855C455.045%2017.2278%20455.049%2017.2244%20455.024%2017.0752C455.017%2017.0255%20455.002%2016.9775%20454.974%2016.9329C454.939%2016.8695%20454.887%2016.8146%20454.834%2016.7615C454.761%2016.686%20454.693%2016.6277%20454.589%2016.5952C454.54%2016.5763%20454.488%2016.566%20454.434%2016.566C454.376%2016.5643%20454.369%2016.566%20454.415%2016.566L454.606%2016.6757C454.526%2016.5746%20454.467%2016.4289%20454.329%2016.3483C454.169%2016.2557%20454.002%2016.2951%20453.829%2016.3208H454.061L454.028%2016.314L454.22%2016.4237C454.15%2016.3397%20454.11%2016.2591%20453.986%2016.2025C453.932%2016.1785%20453.896%2016.17%20453.838%2016.1614C453.833%2016.1614%20453.683%2016.1305%20453.765%2016.1562L453.957%2016.266C454.012%2016.326%20453.925%2016.206%20453.924%2016.2025C453.882%2016.146%20453.84%2016.0997%20453.775%2016.0637C453.734%2016.0397%20453.68%2016.0208%20453.633%2016.0088C453.708%2016.0277%20453.385%2015.9659%20453.502%2015.9985L453.694%2016.1082C453.648%2016.0688%20453.6%2016.0259%20453.563%2015.9797L453.674%2016.1683C453.62%2015.9762%20453.58%2015.8134%20453.375%2015.7208C453.284%2015.6813%20453.187%2015.6728%20453.103%2015.6608C453.042%2015.6522%20453.007%2015.6505%20452.946%2015.6556C452.931%2015.6556%20452.802%2015.659%20452.863%2015.6659L453.171%2015.7911L453.154%2015.7688L453.265%2015.9574C453.227%2015.8288%20453.22%2015.7191%20453.119%2015.6128C453.072%2015.5647%20453.023%2015.5287%20452.96%2015.503C452.926%2015.4876%20452.633%2015.3984%20452.798%2015.4756C452.948%2015.5459%20452.769%2015.4224%20452.725%2015.4002C452.65%2015.359%20452.553%2015.3367%20452.466%2015.3367C452.297%2015.3367%20452.344%2015.3624%20452.168%2015.3436L452.476%2015.4687C452.528%2015.5099%20452.434%2015.4224%20452.426%2015.4122C452.384%2015.3624%20452.339%2015.3299%20452.288%2015.2904C452.191%2015.2133%20452.114%2015.155%20451.98%2015.1293C451.896%2015.1121%20451.807%2015.1121%20451.722%2015.1173C451.637%2015.1224%20451.579%2015.1498%20451.503%2015.1756C451.377%2015.2201%20451.633%2015.1721%20451.442%2015.1567L451.661%2015.215L451.637%2015.1996L451.793%2015.3539C451.661%2015.1601%20451.572%2015.0127%20451.311%2014.9887C451.05%2014.9647%20450.91%2015.0418%20450.719%2015.1996L450.91%2015.0898C450.943%2015.0778%20451.024%2015.1207%20450.943%2015.071C450.877%2015.0298%20450.761%2015.0041%20450.684%2015.0041C450.597%2015.0041%20450.501%2015.035%20450.428%2015.0778C450.407%2015.0898%20450.268%2015.1807%20450.322%2015.1567L450.541%2015.0984C450.519%2015.1001%20450.36%2015.1036%20450.405%2015.1104C450.456%2015.1173%20450.306%2015.0795%20450.318%2015.0813C450.208%2015.0624%20450.083%2015.0813%20449.975%2015.1104C449.848%2015.143%20449.735%2015.2236%20449.663%2015.3333C449.658%2015.3419%20449.628%2015.4104%20449.625%2015.4104C449.702%2015.3367%20449.717%2015.3179%20449.672%2015.3539C449.651%2015.3693%20449.63%2015.383%20449.608%2015.395L449.827%2015.3367C449.963%2015.3727%20449.963%2015.3659%20449.824%2015.3161C449.775%2015.2939%20449.723%2015.2853%20449.667%2015.2853C449.536%2015.2819%20449.421%2015.3264%20449.325%2015.4122C449.285%2015.443%20449.252%2015.479%20449.228%2015.5236C449.198%2015.5682%20449.195%2015.5716%20449.216%2015.5356C449.177%2015.5682%20449.146%2015.6059%20449.12%2015.6488C449.092%2015.6916%20449.09%2015.6968%20449.115%2015.6625L449.306%2015.5527C449.224%2015.5853%20449.132%2015.6008%20449.055%2015.647C448.965%2015.7019%20448.927%2015.7825%20448.876%2015.8459L449.068%2015.7362L449.04%2015.7413H449.271C449.106%2015.7036%20448.965%2015.6488%20448.796%2015.7225C448.601%2015.8065%20448.502%2015.9762%20448.387%2016.1374C448.251%2016.3277%20448.352%2016.614%20448.543%2016.7237C448.761%2016.8489%20449.003%2016.7597%20449.139%2016.5694L449.134%2016.5729Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M458.385%2020.8039C458.317%2020.773%20458.526%2020.9033%20458.493%2020.8828C458.554%2020.9188%20458.622%2020.9428%20458.692%2020.9513C458.761%2020.9599%20458.836%2020.9565%20458.906%2020.9376L459.01%2020.8948C459.059%2020.8673%20459.066%2020.8673%20459.031%2020.8913H458.8C458.944%2020.9273%20459.059%2021.0096%20459.216%2021.0131C459.291%2021.0148%20459.362%2020.9891%20459.418%2020.9874C459.472%2020.9925%20459.472%2020.9874%20459.416%2020.9719C459.467%2020.9942%20459.517%2021.0148%20459.57%2021.0319C459.686%2021.0817%20459.799%2021.1417%20459.939%2021.1794C460.043%2021.2068%20460.136%2021.224%20460.245%2021.2C460.298%2021.1948%20460.346%2021.1777%20460.392%2021.1502C460.442%2021.1211%20460.451%2021.1177%20460.418%2021.1382L460.082%2021.0954C460.052%2021.0679%20460.057%2021.0731%20460.097%2021.1091C460.134%2021.1451%20460.176%2021.1725%20460.221%2021.1948C460.339%2021.2565%20460.468%2021.2548%20460.599%2021.2668L460.379%2021.2085C460.507%2021.2754%20460.601%2021.356%20460.766%2021.3543C460.883%2021.3543%20460.963%2021.3234%20461.071%2021.3131L460.851%2021.2548C460.766%2021.2051%20461.015%2021.3903%20460.949%2021.344C461.001%2021.38%20460.993%2021.3731%20461.074%2021.4245C461.21%2021.5103%20461.35%2021.5017%20461.499%2021.5171L461.28%2021.4588C461.39%2021.5188%20461.485%2021.5977%20461.635%2021.6029C461.693%2021.6046%20461.748%2021.5943%20461.806%2021.5874C461.719%2021.5823%20461.715%2021.584%20461.795%2021.5926C461.881%2021.6063%20461.872%2021.6011%20461.769%2021.5823L461.613%2021.428C461.715%2021.5771%20461.822%2021.7092%20462.017%2021.7366C462.18%2021.7606%20462.304%2021.6903%20462.447%2021.6286L462.227%2021.6869H462.26C462.187%2021.6663%20462.114%2021.6474%20462.041%2021.6269L462.067%2021.6474L461.91%2021.4931C462.015%2021.656%20462.107%2021.7829%20462.314%2021.8189C462.381%2021.8309%20462.499%2021.8257%20462.541%2021.824C462.593%2021.8326%20462.645%2021.8292%20462.698%2021.812C462.753%2021.7983%20462.759%2021.8%20462.713%2021.8155L462.405%2021.6903C462.374%2021.6646%20462.377%2021.6526%20462.4%2021.6972C462.424%2021.7452%20462.461%2021.7915%20462.499%2021.8292C462.565%2021.8926%20462.647%2021.9492%20462.731%2021.9955C462.814%2022.0418%20462.931%2022.0538%20462.995%2022.0623C463.07%2022.0709%20463.135%2022.0812%20463.21%2022.0743C463.224%2022.0743%20463.356%2022.0709%20463.29%2022.0641L462.982%2021.9389C462.931%2021.8943%20463.025%2021.9972%20463.027%2022.0006C463.025%2021.9989%20463.123%2022.1103%20463.076%2022.0521C463.171%2022.1704%20463.217%2022.2338%20463.356%2022.3041C463.441%2022.3469%20463.52%2022.407%20463.609%2022.4412C463.75%2022.4961%20463.882%2022.4772%20464.027%2022.455H463.795C463.859%2022.4652%20463.922%2022.491%20463.983%2022.5132L463.791%2022.4035C463.73%2022.3367%20463.901%2022.5681%20463.859%2022.5235C463.908%2022.575%20463.96%2022.6161%20464.027%2022.6418C464.093%2022.6676%20464.164%2022.683%20464.236%2022.683L464.351%2022.6676C464.408%2022.6521%20464.417%2022.6521%20464.375%2022.6676L464.155%2022.6093C464.286%2022.7001%20464.391%2022.7344%20464.547%2022.7704L464.356%2022.6607C464.281%2022.5938%20464.478%2022.8064%20464.432%2022.7618C464.472%2022.8047%20464.523%2022.8373%20464.573%2022.8664C464.845%2023.0156%20464.582%2022.8579%20464.589%2022.8304C464.58%2022.8681%20464.683%2022.9624%20464.709%2022.9865C464.795%2023.067%20464.932%2023.1236%20465.049%2023.151C465.145%2023.175%20465.218%2023.1716%20465.314%2023.1545C465.352%2023.1476%20465.443%2023.1528%20465.354%2023.1408L465.045%2023.0156C465.019%2022.9847%20465.021%2022.9916%20465.051%2023.0379C465.079%2023.0807%20465.11%2023.1185%20465.148%2023.1528C465.235%2023.2333%20465.336%2023.2488%20465.437%2023.3002C465.267%2023.2145%20465.519%2023.3808%20465.551%2023.4014C465.62%2023.4459%20465.679%2023.4837%20465.763%2023.5042C465.801%2023.5145%20466.045%2023.5248%20465.88%2023.4957C465.972%2023.5111%20466.08%2023.5899%20466.164%2023.6311C466.32%2023.7065%20466.477%2023.7563%20466.641%2023.8111L466.449%2023.7014C466.394%2023.6551%20466.566%2023.8386%20466.535%2023.806C466.583%2023.8557%20466.643%2023.8951%20466.707%2023.9208C466.771%2023.9466%20466.845%2023.9603%20466.916%2023.9603C466.937%2023.9603%20467.123%2023.9363%20467.052%2023.9346L466.832%2023.8763C467.015%2023.9637%20467.195%2024.0186%20467.381%2024.0786C467.52%2024.1232%20467.632%2024.1729%20467.783%2024.1317C467.914%2024.0957%20467.989%2024.0134%20468.085%2023.9277L467.893%2024.0374C467.893%2024.0374%20468.025%2024.0666%20468.057%2024.0683C468.174%2024.0769%20468.269%2024.0477%20468.381%2024.022H468.149L468.175%2024.0289L467.984%2023.9191C468.168%2024.0666%20468.29%2024.1729%20468.548%2024.1489C468.834%2024.1214%20468.924%2023.9843%20469.079%2023.7768L468.922%2023.9311L468.947%2023.9174L468.611%2023.9603C468.536%2023.9414%20468.682%2024.0014%20468.679%2023.9997C468.668%2023.9946%20468.795%2024.0323%20468.767%2024.0237C468.917%2024.0751%20469.034%2024.1163%20469.194%2024.0683C469.201%2024.0666%20469.342%2023.998%20469.34%2023.9963C469.29%2024.0306%20469.243%2024.0306%20469.201%2023.9929C469.131%2023.9551%20469.128%2023.9568%20469.191%2023.9997C469.248%2024.0477%20469.25%2024.0443%20469.198%2023.986L469.266%2024.0734C469.307%2024.13%20469.274%2024.0906%20469.316%2024.1523C469.623%2024.6118%20470.377%2024.1814%20470.068%2023.7203C469.94%2023.5282%20469.818%2023.3619%20469.609%2023.2419C469.495%2023.1768%20469.36%2023.1596%20469.231%2023.1596C469.17%2023.1596%20469.107%2023.1648%20469.05%2023.1836C469.029%2023.1905%20468.874%2023.2693%20468.926%2023.2539H469.158C469.158%2023.2539%20468.971%2023.1853%20469.03%2023.2128C468.909%2023.1562%20468.816%2023.1047%20468.673%2023.1253C468.445%2023.1596%20468.362%2023.3208%20468.24%2023.4871L468.396%2023.3328L468.372%2023.3465L468.592%2023.2882C468.517%2023.2728%20468.496%2023.2796%20468.527%2023.3071L468.719%2023.4168C468.618%2023.3362%20468.545%2023.2402%20468.412%2023.2008C468.264%2023.1562%20468.144%2023.2008%20468.003%2023.2316H468.234C468.073%2023.2076%20467.923%2023.1613%20467.756%2023.1888C467.588%2023.2162%20467.498%2023.3036%20467.381%2023.4065L467.573%2023.2968L467.541%2023.3071H467.773C467.658%2023.2745%20467.463%2023.223%20467.369%2023.1836C467.261%2023.1373%20467.181%2023.079%20467.055%2023.0756C467.003%2023.0722%20466.949%2023.0773%20466.897%2023.0893C466.841%2023.103%20466.834%2023.1065%20466.878%2023.0979L467.186%2023.223C467.202%2023.2591%20467.196%2023.2522%20467.169%2023.2059C467.142%2023.1613%20467.109%2023.1236%20467.068%2023.0927C466.979%2023.0139%20466.883%2022.9882%20466.773%2022.9522C466.629%2022.9042%20466.496%2022.8356%20466.357%2022.7721C466.275%2022.7344%20466.195%2022.6916%20466.108%2022.6727C466.054%2022.6573%20466%2022.6538%20465.946%2022.6624C466.049%2022.7053%20466.064%2022.7053%20465.993%2022.6624C465.915%2022.5493%20465.709%2022.4944%20465.575%2022.4395L465.767%2022.5493C465.791%2022.5801%20465.789%2022.5733%20465.761%2022.527C465.733%2022.4841%20465.702%2022.4464%20465.664%2022.4121C465.578%2022.3332%20465.474%2022.2904%20465.355%2022.2869C465.291%2022.2852%20465.228%2022.2921%20465.166%2022.3075C465.087%2022.3298%20465.11%2022.3298%20465.234%2022.3075C465.2%2022.2989%20465.167%2022.2869%20465.136%2022.2732L465.328%2022.3829C465.373%2022.4275%20465.268%2022.2869%20465.254%2022.2732C465.206%2022.2235%20465.152%2022.1892%20465.089%2022.1566C464.969%2022.0932%20464.953%2022.0949%20465.04%2022.1618C465.101%2022.2235%20465.112%2022.2269%20465.072%2022.1721C465.038%2022.1086%20464.948%2022.0281%20464.885%2021.992C464.854%2021.9749%20464.629%2021.8892%20464.614%2021.9218L464.728%2021.9715C464.687%2021.9372%20464.643%2021.9046%20464.598%2021.8755C464.525%2021.836%20464.441%2021.8155%20464.357%2021.8137C464.312%2021.8069%20464.267%2021.8103%20464.222%2021.8257C464.164%2021.8412%20464.155%2021.8412%20464.197%2021.8257L464.506%2021.9509C464.537%2021.9749%20464.537%2021.9629%20464.506%2021.9183C464.476%2021.8772%20464.445%2021.8377%20464.41%2021.8017C464.34%2021.7366%20464.256%2021.7057%20464.169%2021.6732C464.013%2021.6149%20463.868%2021.6217%20463.704%2021.6474H463.936C464.016%2021.6594%20463.727%2021.5549%20463.816%2021.596C463.84%2021.6371%20463.837%2021.6337%20463.809%2021.584L463.741%2021.4966C463.727%2021.4794%20463.697%2021.4554%20463.725%2021.4897C463.633%2021.3748%20463.567%2021.2685%20463.41%2021.2274C463.363%2021.2154%20463.302%2021.2085%20463.253%2021.2085C463.231%2021.2085%20463.013%2021.2411%20463.135%2021.2325C463.199%2021.2325%20463.194%2021.2291%20463.123%2021.2222C463.046%2021.2068%20463.046%2021.212%20463.123%2021.2411C463.194%2021.2788%20463.198%2021.2771%20463.135%2021.2342C463.067%2021.1794%20463.074%2021.1914%20463.157%2021.272C463.149%2021.272%20463.013%2021.0782%20462.983%2021.0576C462.847%2020.9616%20462.722%2020.9668%20462.564%2020.9771C462.534%2020.9788%20462.499%2020.9771%20462.548%2020.9736C462.499%2020.9754%20462.41%2020.9788%20462.379%2020.9771L462.687%2021.1022C462.779%2021.1742%20462.595%2020.9754%20462.6%2020.9805C462.543%2020.9239%20462.459%2020.8708%20462.382%2020.8502C462.203%2020.8022%20462.053%2020.8811%20461.895%2020.9496L462.114%2020.8913H462.081C462.184%2020.9342%20462.287%2020.9771%20462.389%2021.0182C462.405%2021.0542%20462.4%2021.0491%20462.37%2021.0011L462.302%2020.9136C462.233%2020.8451%20462.146%2020.797%20462.051%2020.773C461.912%2020.737%20461.79%2020.7508%20461.639%2020.7508L461.858%2020.809C461.794%2020.773%20461.707%2020.7045%20461.618%2020.6805C461.529%2020.6565%20461.435%2020.665%20461.343%2020.6565L461.562%2020.7148C461.621%2020.7473%20461.37%2020.581%20461.445%2020.641C461.376%2020.5862%20461.322%2020.5296%20461.238%2020.497C461.062%2020.4267%20460.891%2020.4987%20460.738%2020.5004L460.958%2020.5587C460.898%2020.5279%20460.838%2020.4764%20460.766%2020.449C460.662%2020.4096%20460.552%2020.4079%20460.44%2020.3993L460.66%2020.4576C460.745%2020.5022%20460.501%2020.3427%20460.557%2020.377C460.496%2020.3393%20460.43%2020.3153%20460.359%2020.3084C460.287%2020.3016%20460.214%2020.305%20460.144%2020.3238C460.12%2020.3307%20459.968%2020.3873%20460.014%2020.3787H460.245C459.951%2020.2947%20459.719%2020.1147%20459.378%2020.1353C459.322%2020.1404%20459.265%2020.1473%20459.209%2020.1558L459.338%2020.1747C459.336%2020.1507%20459.118%2020.0924%20459.084%2020.0838C458.988%2020.0598%20458.901%2020.0495%20458.801%2020.0718C458.749%2020.077%20458.702%2020.0924%20458.657%2020.1215C458.608%2020.149%20458.601%2020.149%20458.636%2020.125L458.972%2020.1678C459%2020.197%20458.993%2020.1935%20458.953%2020.1558C458.916%2020.1181%20458.875%2020.0907%20458.828%2020.0718C458.613%2019.9758%20458.359%2020.0118%20458.232%2020.2261C458.122%2020.4113%20458.173%2020.7165%20458.389%2020.8125L458.385%2020.8039Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M470.318%2024.3847C470.34%2024.2201%20470.305%2024.1%20470.276%2023.9543L470.232%2024.2852C470.13%2024.3761%20470.135%2024.3761%20470.246%2024.2852C470.286%2024.2526%20470.319%2024.2149%20470.345%2024.1703C470.405%2024.076%20470.426%2023.9749%20470.412%2023.8669C470.389%2023.6886%20470.272%2023.5994%20470.161%2023.4743L470.272%2023.6629L470.264%2023.6354L470.22%2023.9663L470.232%2023.9457L470.076%2024.1001C470.231%2023.9903%20470.396%2023.9372%20470.453%2023.7314C470.523%2023.4828%20470.358%2023.3337%20470.213%2023.1657L470.325%2023.3542L470.316%2023.3268L470.272%2023.6577C470.352%2023.4811%20470.492%2023.3954%20470.535%2023.1554C470.579%2022.9153%20470.523%2022.713%20470.422%2022.4953L470.481%2022.7113C470.474%2022.6462%20470.487%2022.5793%20470.494%2022.5141L470.434%2022.7302C470.405%2022.7576%20470.41%2022.7525%20470.446%2022.7147C470.483%2022.6787%20470.513%2022.6376%20470.534%2022.5913C470.511%2022.6187%20470.626%2022.5039%20470.65%2022.4576C470.765%2022.2501%20470.683%2022.0701%20470.581%2021.8798L470.64%2022.0958L470.636%2022.0632L470.577%2022.2793L470.596%2022.2518L470.44%2022.4061C470.586%2022.317%20470.729%2022.2313%20470.777%2022.0547C470.826%2021.8781%20470.746%2021.7323%20470.671%2021.5798L470.73%2021.7958C470.73%2021.7958%20470.725%2021.8026%20470.72%2021.7975L470.563%2021.9518C470.685%2021.8661%20470.802%2021.7941%20470.864%2021.6518C470.901%2021.5677%20470.908%2021.4855%20470.892%2021.3963C470.892%2021.362%20470.885%2021.3311%20470.87%2021.302C470.817%2021.1631%20470.811%2021.1648%20470.849%2021.3071L470.79%2021.5232C470.828%2021.4426%20470.875%2021.3552%20470.906%2021.2831C471.004%2021.0585%20470.946%2021.2334%20470.918%2021.2626C470.959%2021.2197%20471.004%2021.1837%20471.037%2021.1306C471.18%2020.8974%20471.068%2020.7139%20470.95%2020.5099L471.009%2020.7259V20.6968C470.964%2020.7979%20470.922%2020.8991%20470.878%2021.0003C470.833%2021.0534%20470.884%2021.0088%20470.912%2020.9934C470.962%2020.966%20471.002%2020.9317%20471.04%2020.8905C471.126%2020.7997%20471.188%2020.6796%20471.235%2020.5665C471.283%2020.4533%20471.321%2020.347%20471.3%2020.2219C471.279%2020.0967%20471.218%2020.0247%20471.169%2019.9201L471.229%2020.1362V20.1087C471.22%2019.5584%20470.349%2019.5567%20470.358%2020.1087C470.359%2020.2699%20470.434%2020.3625%20470.497%2020.4962L470.438%2020.2802C470.438%2020.2562%20470.408%2020.2785%20470.413%2020.2819C470.37%2020.335%20470.37%2020.3402%20470.417%2020.2939C470.46%2020.2613%20470.466%2020.2545%20470.431%2020.2716C470.342%2020.2819%20470.232%2020.4122%20470.194%2020.479C470.062%2020.7019%20470.182%2020.8905%20470.291%2021.0825L470.232%2020.8665L470.236%2020.8957L470.295%2020.6796C470.323%2020.6402%20470.278%2020.6711%20470.264%2020.6831C470.229%2020.7122%20470.196%2020.7637%20470.171%2020.8031C470.128%2020.8751%20470.103%2020.9557%20470.072%2021.0174C470.023%2021.1151%20469.976%2021.2077%20469.976%2021.3209C469.976%2021.3706%20469.987%2021.4237%20470.001%2021.47C470.025%2021.5523%20470.039%2021.6843%20470.03%2021.4837L470.089%2021.2677L470.07%2021.2951L470.227%2021.1408C470.053%2021.2626%20469.941%2021.3569%20469.887%2021.5695C469.833%2021.7821%20469.884%2021.9295%20469.976%2022.1215L469.917%2021.9055L469.92%2021.9381L469.98%2021.7221L469.959%2021.7495L470.116%2021.5952C469.969%2021.6843%20469.826%2021.7718%20469.778%2021.9467C469.729%2022.1215%20469.809%2022.2724%20469.891%2022.4216L469.832%2022.2055L469.835%2022.2381L469.894%2022.0221C469.919%2021.9827%20469.879%2022.0221%20469.867%2022.0341C469.83%2022.0684%20469.806%2022.1164%20469.778%2022.1558C469.806%2022.1181%20469.778%2022.1558%20469.765%2022.1713C469.722%2022.2295%20469.684%2022.2758%20469.658%2022.3444C469.569%2022.5776%20469.605%2022.7919%20469.706%2023.0113L469.647%2022.7953C469.651%2022.8296%20469.668%2023.0028%20469.673%2023.0045C469.666%2023.0045%20469.708%2022.9102%20469.722%2022.9205C469.694%2022.9016%20469.544%2023.1691%20469.527%2023.1982C469.363%2023.4931%20469.527%2023.6783%20469.711%2023.8909L469.6%2023.7023L469.609%2023.7297L469.652%2023.3988L469.64%2023.4194L469.797%2023.2651C469.642%2023.3731%20469.476%2023.428%20469.419%2023.6337C469.349%2023.8823%20469.513%2024.0315%20469.661%2024.1978L469.55%2024.0092L469.558%2024.0366L469.602%2023.7057C469.691%2023.6269%20469.701%2023.6166%20469.631%2023.6714C469.605%2023.6903%20469.579%2023.7109%20469.556%2023.7331C469.509%2023.7812%20469.475%2023.8394%20469.452%2023.9012C469.389%2024.064%20469.445%2024.1926%20469.476%2024.3418V24.1138C469.464%2024.2029%20469.452%2024.2921%20469.44%2024.3829C469.408%2024.6127%20469.663%2024.8116%20469.875%2024.8116C470.136%2024.8116%20470.279%2024.6127%20470.311%2024.3829L470.318%2024.3847Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M453.418%2016.5703C453.556%2016.6441%20453.69%2016.7572%20453.864%2016.7932C453.972%2016.8155%20454.089%2016.8258%20454.199%2016.8035C454.251%2016.8001%20454.3%2016.7829%20454.343%2016.7555C454.392%2016.7298%20454.399%2016.7281%20454.366%2016.7521L454.03%2016.7092C453.997%2016.6938%20453.995%2016.6783%20454.032%2016.7144C454.066%2016.7486%20454.108%2016.7846%20454.15%2016.8086C454.23%2016.8549%20454.329%2016.8755%20454.42%2016.8927C454.636%2016.9321%20454.798%2016.8481%20454.998%2016.7984H454.767C454.944%2016.8378%20455.131%2016.8927%20455.326%2016.8412C455.472%2016.8018%20455.601%2016.7024%20455.724%2016.6372L455.505%2016.6955C455.547%2016.6921%20455.597%2016.6886%20455.639%2016.6903C455.697%2016.6938%20455.599%2016.6869%20455.683%2016.7006C455.813%2016.7229%20455.933%2016.7092%20456.062%2016.6766C456.191%2016.6441%20456.313%2016.6132%20456.418%2016.5395C456.472%2016.5018%20456.52%2016.4537%20456.555%2016.3972C456.569%2016.3732%20456.635%2016.2892%20456.571%2016.3457L456.263%2016.4709C456.439%2016.4589%20456.58%2016.4537%20456.749%2016.3595C456.796%2016.3337%20456.841%2016.308%20456.888%2016.2789C456.919%2016.2617%20456.949%2016.2429%20456.977%2016.2206C457.088%2016.1434%20457.095%2016.1331%20456.998%2016.188H456.766C457.146%2016.2549%20457.376%2016.1143%20457.658%2015.8983C457.677%2015.8828%20457.747%2015.828%20457.78%2015.792C457.877%2015.6822%20457.87%2015.6754%20457.761%2015.7748C457.813%2015.7542%20457.863%2015.7319%20457.914%2015.7097C457.987%2015.6651%20458.048%2015.6016%20458.088%2015.5279C458.116%2015.4833%20458.133%2015.4353%20458.14%2015.3839C458.166%2015.2365%20458.161%2015.2313%20458.126%2015.3685L457.867%2015.5656L457.895%2015.5588H457.663C457.886%2015.5982%20458.098%2015.6651%20458.283%2015.4816C458.356%2015.4096%20458.396%2015.317%20458.419%2015.221L458.435%2015.1079C458.388%2015.209%20458.382%2015.233%20458.417%2015.1833C458.442%2015.1696%20458.476%2015.089%20458.492%2015.0684L458.335%2015.2227C458.365%2015.2022%20458.396%2015.1833%20458.428%2015.1696C458.325%2015.1799%20458.314%2015.1816%20458.393%2015.1765C458.489%2015.1662%20458.567%2015.1507%20458.652%2015.101C458.748%2015.0462%20458.811%2014.9587%20458.851%2014.861C458.868%2014.8301%20458.879%2014.7976%20458.884%2014.7633C458.856%2014.8216%20458.853%2014.8318%20458.873%2014.7958C458.88%2014.7907%20459.011%2014.7238%20458.945%2014.753C459.048%2014.7067%20459.138%2014.7015%20459.224%2014.6158C459.281%2014.5592%20459.328%2014.4718%20459.349%2014.3946C459.361%2014.3432%20459.366%2014.2901%20459.365%2014.2369C459.361%2014.1752%20459.359%2014.1735%20459.359%2014.2266L459.159%2014.4821L459.19%2014.4684L458.971%2014.5267C459.147%2014.5232%20459.316%2014.5198%20459.45%2014.3895C459.516%2014.3261%20459.715%2014.1118%20459.685%2014.0175C459.696%2013.9763%20459.687%2013.9849%20459.661%2014.0449C459.591%2014.0723%20459.589%2014.0775%20459.655%2014.0603C459.736%2014.0397%20459.826%2013.9866%20459.884%2013.93C459.941%2013.8734%20459.988%2013.786%20460.009%2013.7106C460.02%2013.6591%20460.026%2013.6077%20460.026%2013.5563C460.025%2013.498%20460.023%2013.4963%20460.023%2013.5528L459.823%2013.8083L459.852%2013.7929L459.633%2013.8512C459.828%2013.8272%20459.999%2013.8169%20460.133%2013.654C460.176%2013.6008%20460.22%2013.5151%20460.242%2013.4671C460.267%2013.4225%20460.288%2013.3762%20460.305%2013.3299C460.323%2013.2802%20460.321%2013.2734%20460.3%2013.3094L460.143%2013.4637C460.061%2013.51%20460.34%2013.3848%20460.276%2013.4225C460.352%2013.3797%20460.424%2013.3231%20460.467%2013.2477C460.511%2013.1722%20460.532%2013.0865%20460.539%2013.0008C460.542%2012.963%20460.57%2012.8773%20460.535%2012.9596L460.335%2013.2151C460.394%2013.1705%20460.458%2013.1396%20460.514%2013.0916C460.596%2013.0213%20460.657%2012.9322%20460.723%2012.8482L460.566%2013.0025L460.46%2013.0333C460.505%2013.0299%20460.551%2013.0231%20460.596%2013.0145C460.648%2013.0008%20460.702%2012.9785%20460.749%2012.951C460.876%2012.8756%20460.913%2012.759%20460.969%2012.6459L460.812%2012.8002C460.768%2012.807%20460.772%2012.8002%20460.824%2012.7865C460.876%2012.7745%20460.922%2012.7522%20460.96%2012.7196C461.052%2012.6596%20461.103%2012.5876%20461.155%2012.4967C461.192%2012.4333%20461.23%2012.3647%20461.249%2012.2927C461.246%2012.3098%20461.298%2012.0115%20461.254%2012.1367L461.054%2012.3921C460.946%2012.4624%20461.218%2012.339%20461.2%2012.3475C461.274%2012.3064%20461.333%2012.2464%20461.39%2012.1864C461.531%2012.0424%20461.681%2011.9155%20461.683%2011.696C461.685%2011.6189%20461.678%2011.6292%20461.662%2011.7286C461.678%2011.6978%20461.695%2011.6669%20461.716%2011.6377C461.765%2011.5623%20461.775%2011.552%20461.747%2011.6052C461.791%2011.5726%20461.834%2011.5383%20461.878%2011.504C461.963%2011.42%20462.052%2011.3051%20462.089%2011.1937C462.11%2011.1457%20462.12%2011.096%20462.118%2011.0411C462.12%2010.9862%20462.122%2010.9811%20462.125%2011.0257L462.014%2011.2143C461.96%2011.2588%20462.111%2011.1646%20462.127%2011.1508C462.171%2011.1131%20462.211%2011.072%20462.249%2011.0291C462.312%2010.9554%20462.357%2010.8937%20462.383%2010.7994C462.395%2010.7548%20462.402%2010.7102%20462.404%2010.6656C462.407%2010.6073%20462.402%2010.5988%20462.39%2010.6382L462.278%2010.8268C462.219%2010.8817%20462.479%2010.6742%20462.385%2010.7411C462.437%2010.7034%20462.496%2010.6742%20462.543%2010.6262C462.618%2010.549%20462.636%2010.4856%20462.681%2010.3913C462.684%2010.4153%20462.693%2010.4016%20462.707%2010.3519C462.763%2010.2267%20462.766%2010.2164%20462.716%2010.3176L462.524%2010.4273C462.696%2010.3553%20462.841%2010.2919%20462.926%2010.117C462.982%2010.0038%20463%209.87354%20463.047%209.75696C463.134%209.54264%20462.951%209.28547%20462.742%209.22889C462.494%209.16203%20462.294%209.3129%20462.205%209.52893C462.165%209.63008%20462.144%209.73638%20462.108%209.83754L462.219%209.64894L462.188%209.67466L462.38%209.56493C462.231%209.62665%20462.087%209.68323%20462%209.82382C461.977%209.86154%20461.941%209.94555%20461.93%209.96612C461.911%209.99698%20461.897%2010.0296%20461.883%2010.0638C461.84%2010.1564%20461.86%2010.1359%20461.946%2010.0021C461.939%209.99013%20461.676%2010.2079%20461.664%2010.2216C461.606%2010.2816%20461.568%2010.3502%20461.547%2010.4307C461.535%2010.4753%20461.528%2010.5199%20461.526%2010.5645C461.523%2010.6228%20461.528%2010.6313%20461.54%2010.5919L461.651%2010.4033C461.618%2010.441%20461.584%2010.4873%20461.543%2010.5199C461.591%2010.4805%20461.439%2010.5731%20461.415%2010.5971C461.348%2010.6605%20461.307%2010.7291%20461.28%2010.8182C461.263%2010.8594%20461.256%2010.9039%20461.258%2010.952C461.256%2011.0068%20461.254%2011.012%20461.251%2010.9674L461.362%2010.7788C461.237%2010.9331%20461.08%2011.0274%20460.965%2011.2074C460.918%2011.2811%20460.866%2011.36%20460.84%2011.444C460.822%2011.4937%20460.812%2011.5452%20460.812%2011.5983C460.81%2011.6566%20460.812%2011.6652%20460.817%2011.624L460.929%2011.4354C460.911%2011.4526%20460.732%2011.6137%20460.739%2011.6189C460.739%2011.6189%20460.915%2011.552%20460.768%2011.5863C460.716%2011.5983%20460.664%2011.624%20460.617%2011.6532C460.492%2011.7303%20460.418%2011.8555%20460.397%2011.9978C460.397%2011.9995%20460.397%2012.1384%20460.396%2012.1401L460.417%2012.0407C460.404%2012.0749%20460.387%2012.1058%20460.366%2012.135L460.523%2011.9806C460.552%2011.9601%20460.549%2011.9806%20460.511%2011.9944C460.443%2012.0184%20460.385%2012.0492%20460.33%2012.0955C460.23%2012.1795%20460.206%2012.2653%20460.155%2012.3681L460.312%2012.2138L460.418%2012.183L460.303%2012.1984C460.248%2012.2104%20460.195%2012.2275%20460.145%2012.2567C460.03%2012.3235%20459.959%2012.4401%20459.878%2012.543L460.035%2012.3887C459.912%2012.483%20459.793%2012.5361%20459.722%2012.6836C459.687%2012.7539%20459.68%2012.795%20459.671%2012.879C459.668%2012.9168%20459.64%2013.0025%20459.675%2012.9202L459.875%2012.6647C459.927%2012.6339%20459.762%2012.6973%20459.744%2012.7059C459.657%2012.7522%20459.593%2012.8139%20459.542%2012.8979C459.52%2012.9373%20459.485%2013.0573%20459.487%2013.0505C459.509%2012.9939%20459.379%2013.2494%20459.419%2013.1825L459.575%2013.0282L459.546%2013.0436L459.765%2012.9853C459.595%2013.0076%20459.431%2013.0111%20459.3%2013.1379C459.17%2013.2648%20459.164%2013.4294%20459.159%2013.5991L459.218%2013.3831L459.204%2013.414L459.361%2013.2597C459.396%2013.2391%20459.387%2013.2391%20459.333%2013.2562C459.285%2013.2717%20459.237%2013.2939%20459.192%2013.3197C459.117%2013.366%20459.049%2013.4328%20458.994%2013.498C458.947%2013.5528%20458.875%2013.6488%20458.863%2013.7226C458.842%2013.7929%20458.856%2013.786%20458.905%2013.702C458.816%2013.8066%20458.813%2013.8169%20458.894%2013.7329L459.114%2013.6746C458.94%2013.678%20458.767%2013.6814%20458.635%2013.8117C458.502%2013.942%20458.499%2014.11%20458.496%2014.2815L458.555%2014.0655L458.541%2014.0963L458.698%2013.942C458.729%2013.918%20458.718%2013.9146%20458.666%2013.9317C458.617%2013.9489%20458.57%2013.9695%20458.525%2013.9935C458.464%2014.0277%20458.403%2014.0758%20458.349%2014.1186C458.266%2014.1855%20458.18%2014.2575%20458.121%2014.3484C458.095%2014.3895%20458.034%2014.5507%20458.057%2014.5129L458.316%2014.3158C458.351%2014.3021%20458.327%2014.3209%20458.292%2014.3226C458.208%2014.3261%20458.156%2014.3415%20458.084%2014.3758C457.99%2014.4187%20457.881%2014.4752%20457.808%2014.5472C457.747%2014.6072%20457.687%2014.6964%20457.647%2014.7701C457.619%2014.8198%20457.597%2014.8696%20457.583%2014.9227C457.579%2014.9484%20457.576%2014.9741%20457.572%2015.0016C457.557%2015.0924%20457.565%2015.0787%20457.599%2014.9604L457.858%2014.7633L457.83%2014.7701H458.062C457.895%2014.741%20457.75%2014.6844%20457.581%2014.7581C457.482%2014.801%20457.409%2014.8678%20457.355%2014.9621C457.327%2015.0067%20457.309%2015.0547%20457.302%2015.1062C457.276%2015.2536%20457.282%2015.2588%20457.316%2015.1199L457.473%2014.9656C457.386%2015.005%20457.311%2015.017%20457.231%2015.0924C457.193%2015.1319%20457.158%2015.1747%20457.127%2015.2193C457.188%2015.1765%20457.188%2015.1765%20457.127%2015.2193C457.073%2015.2605%20457.019%2015.3119%20456.954%2015.3496C456.992%2015.3273%20456.799%2015.3856%20456.867%2015.3736H457.099C456.877%2015.3359%20456.716%2015.3342%20456.531%2015.4713C456.439%2015.5399%20456.327%2015.6085%20456.214%2015.6668L456.433%2015.6085C456.287%2015.6222%20456.141%2015.5965%20455.996%2015.7011C455.939%2015.7422%20455.897%2015.7817%20455.859%2015.8434C455.843%2015.8691%20455.778%2015.948%20455.843%2015.8948L456.035%2015.7851C456.015%2015.7902%20455.787%2015.8743%20455.773%2015.8554C455.879%2015.864%20455.895%2015.8588%20455.82%2015.84L455.705%2015.8245C455.51%2015.8177%20455.357%2015.8537%20455.19%2015.948C455.185%2015.9497%20455.024%2016.0388%20455.125%2015.9943C455.185%2016.0406%20455.158%2016.0337%20455.049%2015.9754C455.012%2015.9651%20454.974%2015.96%20454.935%2015.9565C454.756%2015.9394%20454.605%2016.0234%20454.443%2016.0628H454.674C454.61%2016.0526%20454.542%2016.0423%20454.483%2016.0183L454.674%2016.128C454.561%2016.0268%20454.467%2015.9325%20454.305%2015.912C454.211%2015.9%20454.126%2015.9154%20454.039%2015.948C454.005%2015.96%20453.974%2015.9737%20453.944%2015.9891C454.026%2015.948%20454.018%2015.9325%20453.92%2015.9377L454.14%2015.996C454.04%2015.9463%20453.958%2015.8794%20453.856%2015.8245C453.364%2015.5588%20452.924%2016.2994%20453.417%2016.5652L453.418%2016.5703Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M461.239%207.7089C461.209%207.69861%20461.134%207.58889%20461.202%207.68661C461.246%207.75005%20461.296%207.79463%20461.359%207.84092C461.427%207.89064%20461.448%207.90778%20461.477%207.97465C461.516%208.0638%20461.568%208.1461%20461.61%208.23353C461.66%208.3364%20461.646%208.39813%20461.678%208.50957C461.723%208.66559%20461.831%208.72902%20461.951%208.81818C461.892%208.77531%20461.867%208.6793%20461.965%208.84218C461.937%208.79589%20462.014%208.95533%20462.005%208.93648C462.061%209.04449%20462.13%209.1645%20462.228%209.23823C462.284%209.28109%20462.345%209.31366%20462.414%209.33252L462.529%209.34795C462.587%209.34795%20462.595%209.35138%20462.552%209.35652L462.292%209.15936C462.371%209.26394%20462.426%209.37196%20462.54%209.44568C462.629%209.50397%20462.663%209.51254%20462.759%209.5897C462.676%209.52112%20462.757%209.60341%20462.791%209.63599C462.843%209.68742%20462.905%209.73028%20462.972%209.75943C463.045%209.79201%20463.116%209.79372%20463.193%209.80744C463.076%209.78686%20463.318%209.85373%20463.337%209.8623L463.146%209.75257C463.057%209.67713%20463.243%209.8983%20463.231%209.8863C463.29%209.94631%20463.367%209.99603%20463.449%2010.0183C463.633%2010.068%20463.787%209.98403%20463.947%209.90688L463.728%209.96517H463.762C463.689%209.94288%20463.616%209.92402%20463.543%209.90516C463.595%209.93602%20463.661%209.98403%20463.714%2010.0235L463.557%209.86916C463.651%209.99603%20463.748%2010.1263%20463.91%2010.1709C464.081%2010.2172%20464.234%2010.1486%20464.386%2010.08L464.166%2010.1383L464.21%2010.1349L463.991%2010.0766C464.083%2010.1212%20464.111%2010.1452%20464.142%2010.1709C464.25%2010.2566%20464.344%2010.2755%20464.466%2010.3166C464.579%2010.3544%20464.666%2010.4264%20464.797%2010.4229C464.938%2010.4212%20465.032%2010.3578%20465.151%2010.2961L464.931%2010.3544C464.917%2010.3544%20464.995%2010.3578%20465.004%2010.3595C465.152%2010.3886%20465.008%2010.3338%20465.097%2010.3955C465.095%2010.3955%20465.208%2010.4692%20465.178%2010.4469C465.138%2010.4178%20465.347%2010.5704%20465.29%2010.5361C465.509%2010.6664%20465.699%2010.5961%20465.91%2010.4932L465.69%2010.5515L465.724%2010.5481L465.504%2010.4898C465.433%2010.4435%20465.654%2010.6235%20465.602%2010.5892C465.663%2010.6287%20465.725%2010.6544%20465.798%2010.663C465.948%2010.6818%20466.075%2010.627%20466.208%2010.5652L465.988%2010.6235C466.047%2010.6167%20466.159%2010.6012%20466.196%2010.5995L465.976%2010.5412L466.004%2010.5601L465.847%2010.4058C465.943%2010.5447%20466.03%2010.6835%20466.208%2010.7315C466.29%2010.7538%20466.391%2010.7487%20466.472%2010.7264C466.462%2010.7298%20466.73%2010.6355%20466.617%2010.6527L466.281%2010.6098C466.215%2010.5738%20466.338%2010.6613%20466.338%2010.6613C466.384%2010.6955%20466.417%2010.7144%20466.471%2010.735C466.542%2010.7624%20466.615%2010.7744%20466.692%2010.7727L466.807%2010.7573C466.748%2010.7607%20466.746%2010.7641%20466.8%2010.7693C466.901%2010.7881%20466.993%2010.8173%20467.091%2010.8464C467.202%2010.879%20467.333%2010.867%20467.418%2010.8653L467.199%2010.807C467.169%2010.7813%20467.174%2010.7881%20467.214%2010.8258C467.251%2010.8618%20467.293%2010.891%20467.34%2010.9116C467.312%2010.8807%20467.319%2010.8824%20467.359%2010.9201C467.396%2010.9579%20467.436%2010.9853%20467.484%2011.0041C467.603%2011.0642%20467.725%2011.0779%20467.854%2011.0384C467.908%2011.0264%20467.955%2011.0024%20467.995%2010.9681C468.111%2010.8876%20468.113%2010.879%20467.998%2010.9424H467.767C467.948%2010.9716%20467.74%2010.8756%20467.833%2010.951C467.902%2011.0076%20467.972%2011.0573%20468.061%2011.0813C468.2%2011.119%20468.352%2011.0984%20468.495%2011.1019L468.275%2011.0436C468.202%2011.0093%20468.428%2011.1516%20468.383%2011.1242C468.451%2011.1636%20468.526%2011.1825%20468.603%2011.1996C468.784%2011.2407%20468.92%2011.1996%20469.076%2011.1705C469.308%2011.1293%20469.439%2010.8533%20469.381%2010.6424C469.315%2010.4024%20469.078%2010.3012%20468.845%2010.3424C468.792%2010.3526%20468.719%2010.3784%20468.679%2010.3852H468.911C468.716%2010.3492%20468.946%2010.4538%20468.841%2010.3852C468.751%2010.3269%20468.721%2010.2875%20468.611%2010.2566C468.479%2010.2206%20468.315%2010.2429%20468.178%2010.2361L468.397%2010.2944C468.425%2010.3098%20468.301%2010.2035%20468.256%2010.1795C468.174%2010.1366%20468.087%2010.1246%20467.996%2010.1109C467.906%2010.0972%20467.824%2010.0938%20467.732%2010.1195C467.678%2010.1315%20467.631%2010.1555%20467.591%2010.1898C467.474%2010.2703%20467.472%2010.2789%20467.587%2010.2155L467.923%2010.2583C467.986%2010.2875%20467.812%2010.1795%20467.817%2010.1829C467.709%2010.104%20467.888%2010.2378%20467.765%2010.1486C467.62%2010.044%20467.495%209.9926%20467.308%2010.0132C467.16%2010.0286%20467.39%2010.0509%20467.274%209.99603C467.216%209.9686%20467.133%209.95831%20467.07%209.94631C466.92%209.91716%20466.758%209.91202%20466.638%209.91202L466.857%209.97031C466.941%2010.0149%20466.694%209.84687%20466.756%209.88459C466.68%209.8383%20466.591%209.80572%20466.5%209.80572C466.417%209.80572%20466.321%209.82972%20466.248%209.86916C466.218%209.88459%20466.124%209.91202%20466.208%209.90002L466.544%209.94288L466.516%209.92402L466.673%2010.0783C466.551%209.90173%20466.438%209.744%20466.197%209.73714C466.021%209.732%20465.844%209.78515%20465.68%209.8623L465.899%209.80401L465.858%209.80915L466.077%209.86744C466.149%209.91373%20465.929%209.73714%20465.98%209.768C465.901%209.72%20465.819%209.68914%20465.725%209.68742C465.584%209.68571%20465.48%209.75086%20465.361%209.80744L465.581%209.74914L465.548%209.75257L465.767%209.81086C465.833%209.84687%20465.715%209.768%20465.71%209.76457C465.682%209.744%20465.656%209.73028%20465.628%209.71142C465.513%209.63084%20465.415%209.57427%20465.274%209.53998C465.011%209.47311%20464.832%209.49197%20464.595%209.61713L464.814%209.55883L464.781%209.56226L465.001%209.62056C464.914%209.58112%20464.814%209.50226%20464.715%209.4954C464.616%209.48854%20464.773%209.56055%20464.694%209.49197C464.649%209.45254%20464.598%209.42339%20464.548%209.39253C464.295%209.24165%20464.112%209.2588%20463.851%209.37538L464.071%209.31709L464.027%209.32052L464.247%209.37881L464.212%209.35481L464.368%209.50911C464.264%209.36681%20464.14%209.24165%20463.982%209.15764C463.762%209.04277%20463.581%209.13021%20463.379%209.22622L463.599%209.16793H463.564C463.667%209.21079%20463.769%209.25366%20463.872%209.2948C463.93%209.34281%20463.872%209.27766%20463.855%209.24851C463.809%209.17993%20463.745%209.11478%20463.674%209.07192C463.539%208.99477%20463.388%208.97591%20463.256%208.94676L463.447%209.05649C463.31%208.9399%20463.186%208.83361%20463.024%208.72388C463.078%208.75988%20463.074%208.7736%20463.045%208.71702C463.012%208.65701%20462.947%208.59701%20462.888%208.56272C462.777%208.49928%20462.653%208.49071%20462.529%208.48042L462.749%208.53871L462.71%208.52157L462.867%208.67587C462.789%208.56615%20462.761%208.46842%20462.683%208.35526C462.658%208.32097%20462.583%208.21468%20462.554%208.18553C462.519%208.14953%20462.381%208.05866%20462.406%208.08437L462.517%208.27297C462.498%208.16324%20462.474%208.03637%20462.42%207.91293C462.378%207.8152%20462.322%207.72433%20462.275%207.63003C462.151%207.37972%20462.031%207.24599%20461.798%207.09169L461.954%207.24599C461.813%207.05911%20461.695%206.95453%20461.47%206.87395C461.246%206.79336%20460.993%206.9631%20460.934%207.17398C460.868%207.41229%20461.016%207.62146%20461.239%207.70204V7.7089Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M468.649%209.46306C468.64%209.53336%20468.637%209.61222%20468.64%209.68423L468.656%209.79739C468.675%209.64137%20468.661%209.63451%20468.616%209.77681C468.585%209.87111%20468.576%209.95512%20468.599%2010.0546C468.604%2010.106%20468.619%2010.1523%20468.649%2010.1969C468.675%2010.2449%20468.677%2010.2517%20468.654%2010.2157V9.9877C468.66%209.94826%20468.651%209.95169%20468.626%2010.0014C468.604%2010.0477%20468.585%2010.094%20468.571%2010.142C468.55%2010.2243%20468.534%2010.3272%20468.538%2010.4163C468.545%2010.6101%20468.668%2010.7712%20468.75%2010.9272L468.691%2010.7112C468.701%2010.9169%20468.747%2011.0455%20468.842%2011.2204L468.783%2011.0044C468.795%2011.1313%20468.794%2011.2581%20468.827%2011.3833C468.86%2011.5084%20468.923%2011.5667%20468.983%2011.6645C469.048%2011.7673%20469.072%2011.8908%20469.137%2011.9954C469.184%2012.0691%20469.215%2012.1874%20469.285%2012.2765C469.327%2012.3297%20469.381%2012.3777%20469.44%2012.412C469.482%2012.4326%20469.523%2012.4497%20469.569%2012.4634C469.619%2012.4806%20469.602%2012.472%20469.516%2012.4394L469.553%2012.4754C469.497%2012.3914%20469.501%2012.4086%20469.56%2012.5269L469.584%2012.5731C469.563%2012.544%20469.558%2012.544%20469.567%2012.5731C469.64%2012.8166%20469.875%2012.9898%20470.056%2013.1372L469.945%2012.9486C469.947%2012.9092%20469.948%2012.9178%20469.948%2012.9761C469.947%2013.0309%20469.957%2013.0806%20469.98%2013.1286C470.022%2013.2538%20470.098%2013.343%20470.217%2013.4047C470.264%2013.4321%20470.314%2013.4493%20470.368%2013.4578C470.272%2013.3875%20470.279%2013.3927%20470.391%2013.4767C470.379%2013.4681%20470.574%2013.6104%20470.509%2013.5607L470.398%2013.3721C470.386%2013.3412%20470.419%2013.1904%20470.389%2013.2932C470.377%2013.3395%20470.372%2013.3961%20470.372%2013.4441C470.372%2013.5813%20470.443%2013.7253%20470.553%2013.8059C470.645%2013.8744%20470.753%2013.9087%20470.87%2013.907C470.913%2013.907%20471.126%2013.8899%20470.92%2013.883C470.781%2013.8779%20470.852%2013.883%20470.917%2013.9276L470.76%2013.7733C470.725%2013.715%20470.79%2013.883%20470.8%2013.9019C470.844%2013.9773%20470.903%2014.0442%20470.978%2014.0888C471.1%2014.1625%20471.201%2014.2242%20471.343%2014.2808C471.502%2014.3425%20471.253%2014.2242%20471.462%2014.3562C471.544%2014.4076%20471.627%2014.4385%20471.725%2014.4402C471.864%2014.4437%20471.969%2014.3836%20472.092%2014.3288L471.873%2014.3871L471.906%2014.3836L471.687%2014.3254C471.657%2014.2979%20471.662%2014.3031%20471.701%2014.3374C471.735%2014.3751%20471.777%2014.4025%20471.824%2014.4214C471.802%2014.3905%20471.81%2014.3939%20471.85%2014.4317C471.89%2014.4728%20471.936%2014.5037%20471.99%2014.5208C472.092%2014.5688%20472.199%2014.5842%20472.312%2014.5568C472.364%2014.5448%20472.507%2014.4625%20472.474%2014.4728H472.242C472.171%2014.4488%20472.319%2014.5242%20472.314%2014.5225C472.382%2014.5517%20472.446%2014.5705%20472.523%2014.5705C472.664%2014.5705%20472.773%2014.4882%20472.895%2014.4368L472.559%2014.4797C472.719%2014.5071%20472.847%2014.562%20473.012%2014.4968C473.078%2014.4711%20473.127%2014.4437%20473.181%2014.3922L473.207%2014.3614C473.301%2014.2516%20473.298%2014.2465%20473.2%2014.3459L472.981%2014.4042C472.894%2014.4008%20473.049%2014.4265%20473.052%2014.4282C473.127%2014.4385%20473.191%2014.4419%20473.266%2014.4214C473.315%2014.4076%20473.362%2014.3819%20473.406%2014.3562C473.353%2014.3888%20473.576%2014.2122%20473.501%2014.2602L473.282%2014.3185C473.355%2014.3185%20473.472%2014.3356%20473.564%2014.3099C473.656%2014.2842%20473.728%2014.2311%20473.81%2014.1933L473.59%2014.2516C473.777%2014.2516%20473.918%2014.2328%20474.102%2014.1831C474.306%2014.1282%20474.405%2014.039%20474.534%2013.871L474.378%2014.0253C474.416%2013.9996%20474.454%2013.9773%20474.492%2013.9482C474.492%2013.9482%20474.614%2013.8659%20474.55%2013.9002L474.33%2013.9585C474.283%2013.955%20474.573%2014.0185%20474.468%2013.9893C474.533%2014.0082%20474.599%2014.0287%20474.668%2014.027C474.759%2014.027%20474.841%2013.9962%20474.917%2013.9516C474.984%2013.9139%20475.034%2013.8624%20475.074%2013.7973C475.123%2013.739%20475.107%2013.7493%20475.027%2013.8264C475.515%2013.5555%20475.078%2012.8149%20474.588%2013.0858C474.466%2013.1526%20474.405%2013.2589%20474.322%2013.3652L474.479%2013.2109L474.449%2013.2281L474.668%2013.1698C474.719%2013.1749%20474.682%2013.1544%20474.656%2013.1458C474.653%2013.1458%20474.529%2013.1286%20474.501%2013.1235C474.367%2013.1029%20474.243%2013.0892%20474.111%2013.1595C474.066%2013.1835%20474.027%2013.2144%20473.987%2013.2452C473.972%2013.2589%20473.935%2013.2898%20473.973%2013.2607C473.872%2013.3395%20473.801%2013.415%20473.723%2013.5144L473.879%2013.3601L473.719%2013.3944L473.761%2013.4081C473.714%2013.3961%20473.665%2013.391%20473.618%2013.3927C473.468%2013.3927%20473.359%2013.4647%20473.228%2013.5247L473.447%2013.4664C473.348%2013.4698%20473.228%2013.4493%20473.113%2013.4973C473.061%2013.5178%20473.026%2013.5401%20472.982%2013.5744C472.989%2013.5676%20472.866%2013.6773%20472.93%2013.6361L473.15%2013.5778C473.268%2013.5813%20472.939%2013.5453%20473.019%2013.547C472.946%2013.5435%20472.878%2013.5555%20472.81%2013.5813C472.742%2013.607%20472.695%2013.6361%20472.641%2013.6876L472.615%2013.7184C472.521%2013.8299%20472.524%2013.8333%20472.624%2013.7321L472.96%2013.6893C472.862%2013.6756%20472.777%2013.6344%20472.674%2013.6344C472.571%2013.6344%20472.483%2013.6944%20472.404%2013.7253H472.636C472.709%2013.7459%20472.559%2013.6756%20472.564%2013.6773C472.496%2013.6464%20472.432%2013.6276%20472.355%2013.6276C472.303%2013.6276%20472.249%2013.6413%20472.199%2013.6567C472.267%2013.6361%20471.99%2013.751%20472.077%2013.727H472.308L472.27%2013.7116L472.462%2013.8213C472.395%2013.7699%20472.328%2013.7236%20472.26%2013.6773C472.314%2013.715%20472.164%2013.6053%20472.139%2013.5916C472.052%2013.5418%20471.969%2013.523%20471.868%2013.5264C471.789%2013.5264%20471.716%2013.547%20471.648%2013.5847C471.575%2013.6138%20471.599%2013.6121%20471.721%2013.5796L471.941%2013.6378C471.791%2013.547%20471.558%2013.4201%20471.413%2013.3447L471.57%2013.499C471.587%2013.5367%20471.589%2013.5281%20471.573%2013.475C471.558%2013.427%20471.537%2013.3807%20471.509%2013.3378C471.453%2013.2521%20471.377%2013.1972%20471.289%2013.1441C471.227%2013.1064%20471.166%2013.0686%20471.093%2013.0498C471.04%2013.0343%20470.986%2013.0309%20470.934%2013.0378C470.781%2013.0532%20470.779%2013.0583%20470.929%2013.0515L471.234%2013.3515C471.262%2013.4218%20471.229%2013.5384%20471.249%2013.3738C471.256%2013.3155%20471.26%2013.2812%20471.251%2013.2229C471.23%2013.0789%20471.155%2012.9743%20471.039%2012.8869C470.99%2012.8509%20470.938%2012.8149%20470.873%2012.7669C470.831%2012.736%20470.793%2012.7052%20470.748%2012.6812C470.812%2012.7154%20470.532%2012.5971%20470.615%2012.6417L470.816%2012.8972C470.814%2012.9383%20470.812%2012.928%20470.812%2012.8698C470.812%2012.8149%20470.804%2012.7652%20470.781%2012.7172C470.75%2012.6229%20470.701%2012.5577%20470.628%2012.4943C470.554%2012.4308%20470.513%2012.3811%20470.44%2012.3108C470.398%2012.2748%20470.356%2012.2405%20470.311%2012.2097C470.382%2012.3365%20470.41%2012.3657%20470.396%2012.2988C470.412%2012.1874%20470.25%2011.9628%20470.184%2011.8856C470.131%2011.8256%20470.076%2011.7673%20470.008%2011.7228C469.968%2011.6902%20469.921%2011.6679%20469.87%2011.6559C469.814%2011.6405%20469.806%2011.637%20469.844%2011.6439L470.044%2011.8994C469.994%2011.7811%20469.954%2011.6713%20469.886%2011.5599C469.832%2011.4707%20469.795%2011.337%20469.732%2011.229L469.701%2011.1861C469.624%2011.0798%20469.612%2011.0695%20469.663%2011.1535C469.651%2011.0884%20469.663%2011.1244%20469.656%2011.0558C469.64%2010.8878%20469.583%2010.7935%20469.509%2010.6495L469.569%2010.8655C469.556%2010.7164%20469.558%2010.5758%20469.473%2010.4438L469.405%2010.3563C469.443%2010.418%20469.447%2010.4146%20469.414%2010.3495C469.389%2010.2774%20469.384%2010.2809%20469.396%2010.3597C469.4%2010.4592%20469.407%2010.4403%20469.417%2010.3066C469.375%2010.502%20469.489%2010.2346%20469.499%2010.1557C469.509%2010.0854%20469.504%2010.0134%20469.483%209.94483L469.44%209.84197C469.412%209.79396%20469.41%209.7871%20469.436%209.82311V10.0511C469.475%209.94483%20469.523%209.86425%20469.518%209.73567C469.515%209.63451%20469.506%209.56765%20469.518%209.45792C469.548%209.22818%20469.297%209.0293%20469.083%209.0293C468.823%209.0293%20468.677%209.22646%20468.647%209.45792L468.649%209.46306Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M471.427%2014.365C471.422%2014.413%20471.42%2014.4593%20471.415%2014.5073L471.43%2014.3941C471.425%2014.4215%20471.416%2014.4456%20471.406%2014.4696C471.385%2014.5244%20471.371%2014.5879%20471.371%2014.6461C471.371%2014.6993%20471.378%2014.7576%20471.394%2014.809C471.401%2014.8347%20471.413%2014.8587%20471.418%2014.8845L471.402%2014.7713C471.408%2014.8313%20471.406%2014.8947%20471.425%2014.9548C471.434%2014.9822%20471.448%2015.0079%20471.453%2015.0353L471.437%2014.9222C471.437%2014.9222%20471.437%2014.9376%20471.437%2014.9445L471.453%2014.8313C471.453%2014.8313%20471.451%2014.8416%20471.448%2014.845L471.491%2014.7422C471.491%2014.7422%20471.486%2014.7507%20471.482%2014.7559L471.55%2014.6684C471.531%2014.6907%20471.505%2014.7062%20471.484%2014.725C471.448%2014.7559%20471.415%2014.7987%20471.392%2014.8382C471.357%2014.8965%20471.341%2014.953%20471.331%2015.0182C471.315%2015.1296%20471.338%2015.2479%20471.402%2015.3439C471.42%2015.3697%20471.442%2015.3937%20471.456%2015.4228L471.413%2015.3199C471.413%2015.3199%20471.416%2015.3302%20471.416%2015.3354L471.401%2015.2222V15.2291C471.397%2015.3371%20471.451%2015.4571%20471.528%2015.5325C471.604%2015.608%20471.728%2015.6628%20471.836%2015.6577C472.076%2015.6474%20472.265%2015.4691%20472.271%2015.2291C472.273%2015.1605%20472.256%2015.1022%20472.23%2015.0405C472.217%2015.0096%20472.207%2014.9822%20472.19%2014.9565C472.172%2014.9325%20472.151%2014.9102%20472.139%2014.8827L472.183%2014.9856C472.183%2014.9856%20472.179%2014.9753%20472.179%2014.9702L472.195%2015.0833V15.0765C472.19%2015.1142%20472.184%2015.1519%20472.179%2015.1896C472.179%2015.1845%20472.181%2015.1794%20472.184%2015.1759L472.141%2015.2788C472.141%2015.2788%20472.146%2015.2702%20472.15%2015.2651L472.082%2015.3525C472.099%2015.3337%20472.12%2015.3182%20472.141%2015.3028C472.2%2015.2548%20472.238%2015.1931%20472.268%2015.1262C472.313%2015.0216%20472.324%2014.9102%20472.291%2014.8005C472.282%2014.7696%20472.266%2014.7404%20472.259%2014.7079L472.275%2014.821C472.27%2014.761%20472.27%2014.7027%20472.254%2014.6427C472.247%2014.6153%20472.235%2014.5896%20472.228%2014.5621L472.244%2014.6753C472.244%2014.6753%20472.244%2014.6599%20472.244%2014.6513L472.228%2014.7644C472.237%2014.7164%20472.263%2014.6736%20472.271%2014.6256C472.287%2014.5398%20472.289%2014.4541%20472.299%2014.3684C472.312%2014.2672%20472.242%2014.1352%20472.172%2014.0649C472.097%2013.9912%20471.972%2013.9346%20471.864%2013.9398C471.756%2013.9449%20471.634%2013.9809%20471.556%2014.0649L471.488%2014.1524C471.448%2014.2192%20471.428%2014.2912%20471.428%2014.3684L471.427%2014.365Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M460.62%2012.2152C460.648%2012.1758%20460.613%2012.21%20460.595%2012.222C460.547%2012.2615%20460.508%2012.3369%20460.482%2012.3935C460.451%2012.4689%20460.446%2012.5358%20460.425%2012.5924C460.388%2012.6952%20460.343%2012.7775%20460.346%2012.8907C460.35%2013.0124%20460.412%2013.1119%20460.459%2013.2199L460.4%2013.0039C460.414%2012.9559%20460.414%2012.9644%20460.402%2013.0313C460.386%2013.1187%20460.395%2013.1084%20460.428%2012.9987L460.585%2012.8444C460.484%2012.9164%20460.372%2012.9627%20460.303%2013.0759C460.223%2013.2079%20460.214%2013.3536%20460.259%2013.4976C460.306%2013.6382%20460.318%2013.6348%20460.297%2013.4839C460.306%2013.3348%20460.291%2013.3296%20460.247%2013.4702C460.224%2013.5371%20460.212%2013.6022%20460.214%2013.6742C460.214%2013.7205%20460.223%2013.7651%20460.235%2013.8097C460.252%2013.88%20460.257%2013.8354%20460.252%2013.6794C460.209%2013.7034%20460.176%2013.9091%20460.174%2013.9451C460.174%2013.9948%20460.223%2014.1183%20460.205%2014.1406L460.228%2013.9914C460.151%2014.1423%20460.176%2014.132%20460.299%2013.9588C460.264%2013.9503%20460.181%2014.0446%20460.155%2014.072C460.099%2014.1303%20460.052%2014.2091%20460.031%2014.2863C460%2014.4012%20459.989%2014.5692%20460.022%2014.6858C460.062%2014.8264%20460.158%2014.8949%20460.243%2015.0012L460.132%2014.8126C460.104%2014.7183%20460.118%2014.8452%20460.125%2014.8178C460.116%2014.8435%20460.109%2014.8692%20460.106%2014.8949C460.094%2014.9567%20460.109%2014.9327%20460.156%2014.8246C460.141%2014.8144%20460.052%2014.9772%20460.045%2014.9944C460.008%2015.0767%20459.994%2015.1573%20460.007%2015.2481C460.015%2015.3133%20460.033%2015.3801%20460.068%2015.4384C460.085%2015.4641%20460.104%2015.4899%20460.123%2015.5139C460.188%2015.6047%20460.177%2015.567%20460.092%2015.4007C460.078%2015.4333%20460.115%2015.5962%20460.12%2015.6185C460.13%2015.6699%20460.144%2015.7213%20460.153%2015.7728V15.5447C460.167%2015.4864%20460.16%2015.5122%20460.135%2015.555C460.108%2015.6013%20460.088%2015.6527%20460.075%2015.7059C460.041%2015.8345%20460.082%2015.9613%20460.102%2016.0882C460.139%2016.318%20460.43%2016.4431%20460.639%2016.3883C460.886%2016.3214%20460.978%2016.0899%20460.944%2015.8602C460.935%2015.8088%20460.924%2015.7573%20460.916%2015.7059V15.9339C460.907%2015.9716%20460.893%2015.9836%20460.923%2015.9408C460.952%2015.8979%20460.977%2015.8413%20460.991%2015.7899C461.024%2015.6682%20460.994%2015.5619%20460.97%2015.4436C460.961%2015.4007%20460.963%2015.3098%20460.945%2015.2361C460.931%2015.183%20460.911%2015.1315%20460.881%2015.087C460.867%2015.0664%20460.851%2015.0475%20460.836%2015.0287C460.782%2014.9549%20460.789%2014.9721%20460.855%2015.0801V15.3081C460.787%2015.4179%20460.78%2015.435%20460.834%2015.3613C460.85%2015.3424%20460.865%2015.3236%20460.879%2015.303C460.909%2015.2567%20460.928%2015.2053%20460.944%2015.1538C460.973%2015.0527%20460.985%2014.9395%20460.992%2014.8332C460.999%2014.7269%20460.994%2014.6326%20460.951%2014.5383C460.902%2014.432%20460.825%2014.3737%20460.756%2014.288L460.867%2014.4766C460.891%2014.564%20460.886%2014.4235%20460.888%2014.4063L460.829%2014.6223C460.728%2014.7098%20460.709%2014.7286%20460.773%2014.6823C460.815%2014.6566%20460.851%2014.6258%20460.886%2014.5915C460.954%2014.5212%20460.975%2014.4526%20461.005%2014.3806C461.045%2014.2829%20461.078%2014.2211%20461.08%2014.1131C461.076%2014.0617%20461.069%2014.0103%20461.06%2013.9588C461.036%2013.868%20461.027%2013.9057%20461.032%2014.0686C461.097%2014.0308%20461.111%2013.82%20461.109%2013.7634L461.093%2013.6502C461.073%2013.5594%20461.064%2013.5954%20461.069%2013.7599C461.13%2013.7257%20461.147%2013.5148%20461.146%2013.4616C461.147%2013.4085%20461.139%2013.3588%20461.116%2013.3125C461.064%2013.1719%20461.057%2013.1753%20461.099%2013.3228L461.039%2013.5388L461.055%2013.5148L460.898%2013.6691C461.064%2013.5508%20461.201%2013.4736%20461.247%2013.261C461.266%2013.1719%20461.275%2013.1067%20461.271%2013.0107C461.268%2012.889%20461.205%2012.7895%20461.158%2012.6815L461.217%2012.8976V12.865C461.196%2012.937%20461.175%2013.009%20461.156%2013.081C461.198%2012.985%20461.269%2012.889%20461.282%2012.7844C461.295%2012.6661%20461.245%2012.805%20461.245%2012.805C461.247%2012.8084%20461.36%2012.6695%20461.37%2012.6541C461.501%2012.4621%20461.409%2012.1792%20461.214%2012.0677C460.999%2011.9443%20460.749%2012.0283%20460.618%2012.222L460.62%2012.2152Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M463.726%2011.6143C463.755%2011.4978%20463.755%2011.4806%20463.724%2011.5646C463.71%2011.5955%20463.698%2011.6246%20463.686%2011.6555C463.673%2011.7018%20463.67%2011.7549%20463.67%2011.8029C463.672%2011.9641%20463.771%2012.0584%20463.842%2012.1887C463.914%2012.319%20463.959%2012.4099%20464.09%2012.4819C464.367%2012.6362%20464.083%2012.463%20464.084%2012.4304C464.084%2012.4699%20464.194%2012.5642%20464.22%2012.5967L464.109%2012.4081C464.09%2012.3293%20464.105%2012.4973%20464.105%2012.4887C464.112%2012.5419%20464.128%2012.5865%20464.144%2012.6379C464.189%2012.7939%20464.229%2012.9071%20464.372%2013.0048C464.445%2013.0545%20464.518%2013.1042%20464.598%2013.1419C464.715%2013.1968%20464.659%2013.166%20464.807%2013.2534L464.65%2013.0991C464.68%2013.1402%20464.83%2013.4008%20464.734%2013.2037C464.762%2013.2637%20464.779%2013.3254%20464.816%2013.382C464.88%2013.4797%20464.964%2013.5431%20465.075%2013.5791C465.124%2013.5997%20465.176%2013.61%20465.23%2013.6083C465.288%2013.61%20465.295%2013.61%20465.253%2013.6083L464.994%2013.4111C464.987%2013.37%20464.994%2013.3768%20465.008%2013.43C465.028%2013.502%20465.065%2013.5654%20465.119%2013.6186C465.163%2013.6734%20465.201%2013.7317%20465.253%2013.778C465.429%2013.9392%20465.622%2013.9083%20465.838%2013.8672H465.607C465.669%2013.8775%20465.736%2013.8929%20465.797%2013.9118L465.605%2013.802C465.561%2013.7626%20465.669%2013.8929%20465.685%2013.9083C465.75%2013.9752%20465.828%2014.0129%20465.913%2014.0506C466.007%2014.0918%20466.084%2014.1244%20466.19%2014.1261C466.222%2014.1261%20466.411%2014.1072%20466.343%2014.1055L466.124%2014.0472L466.15%2014.0678L465.993%2013.9135C466.061%2014.0181%20466.115%2014.1158%20466.228%2014.1826C466.364%2014.2632%20466.493%2014.2409%20466.629%2014.2392L466.41%2014.1809C466.547%2014.2427%20466.666%2014.3027%20466.817%2014.3284C466.915%2014.3438%20467.009%2014.3455%20467.103%2014.3181C467.392%2014.2306%20467.084%2014.2924%20467.218%2014.3009C467.376%2014.3095%20467.528%2014.3558%20467.691%2014.3489C467.813%2014.3455%20467.97%2014.2667%20468.085%2014.2804L467.866%2014.2221C468.054%2014.3044%20468.242%2014.3747%20468.439%2014.2667C468.51%2014.2272%20468.575%2014.1638%20468.618%2014.0969C468.644%2014.0558%20468.665%2014.0095%20468.681%2013.9632C468.714%2013.8895%20468.702%2013.91%20468.644%2014.0232L468.336%2014.1484C468.292%2014.1484%20468.299%2014.1518%20468.355%2014.1638C468.407%2014.1758%20468.46%2014.1809%20468.512%2014.1792C468.637%2014.1741%20468.717%2014.1106%20468.829%2014.0763C468.644%2014.1329%20469.022%2014.0489%20469.045%2014.0386C469.12%2014.0043%20469.186%2013.9632%20469.256%2013.922C469.416%2013.8243%20469.579%2013.7283%20469.722%2013.6049C469.865%2013.4814%20469.97%2013.3545%20470.078%2013.2054L469.921%2013.3597L469.959%2013.3425L469.74%2013.4008C469.902%2013.3854%20470.065%2013.3665%20470.186%2013.2482C470.245%2013.19%20470.297%2013.1025%20470.32%2013.0254C470.353%2012.9105%20470.226%2013.1317%20470.355%2012.9739C470.503%2012.7939%20470.534%2012.5436%20470.355%2012.367C470.201%2012.2161%20469.888%2012.1853%20469.738%2012.367C469.679%2012.4407%20469.607%2012.511%20469.559%2012.5916C469.543%2012.619%20469.468%2012.7819%20469.501%2012.7288L469.658%2012.5745L469.62%2012.5916L469.839%2012.5333C469.627%2012.5539%20469.449%2012.5899%20469.323%2012.7716C469.261%2012.8625%20469.191%2012.9259%20469.087%2013.0116C468.791%2013.2534%20468.622%2013.2414%20468.291%2013.3803L468.51%2013.322C468.585%2013.322%20468.397%2013.2928%20468.376%2013.2911C468.259%2013.286%20468.163%2013.3151%20468.069%2013.382C468.008%2013.4248%20467.965%2013.4694%20467.925%2013.5363C467.911%2013.5586%20467.824%2013.7317%20467.864%2013.6632L468.021%2013.5088L467.998%2013.526L468.217%2013.4677L468.176%2013.4643L468.395%2013.5226C468.235%2013.454%20468.101%2013.4077%20467.925%2013.4334C467.819%2013.4506%20467.714%2013.4848%20467.61%2013.4917C467.482%2013.4986%20467.378%2013.4454%20467.253%2013.4368C467.094%2013.4266%20466.957%2013.4746%20466.815%2013.502H467.047C466.937%2013.4814%20466.892%2013.454%20466.795%2013.4197C466.674%2013.3785%20466.566%2013.3957%20466.46%2013.394L466.68%2013.4523L466.652%2013.4334L466.808%2013.5877C466.737%2013.4814%20466.676%2013.3751%20466.559%2013.3083C466.483%2013.2637%20466.387%2013.2465%20466.298%2013.2482C466.275%2013.2482%20466.091%2013.2654%20466.166%2013.2688L466.385%2013.3271C466.305%2013.274%20466.291%2013.2825%20466.342%2013.3511C466.316%2013.3065%20466.284%2013.2637%20466.249%2013.2242C466.173%2013.1437%20466.08%2013.1025%20465.976%2013.0717C465.804%2013.0219%20465.652%2013.0391%20465.478%2013.0699H465.709L465.676%2013.0631L465.868%2013.1728C465.823%2013.1282%20465.776%2013.0648%20465.734%2013.0134L465.845%2013.202C465.795%2013.0699%20465.75%2012.9465%20465.631%2012.8591C465.575%2012.8179%20465.511%2012.787%20465.443%2012.7682C465.419%2012.7613%20465.244%2012.727%20465.307%2012.751L465.567%2012.9482C465.608%2013.0065%20465.541%2012.8899%20465.535%2012.8796C465.511%2012.8248%20465.49%2012.7991%20465.457%2012.751C465.398%2012.6653%20465.333%2012.5625%20465.22%2012.4973C465.129%2012.4442%20465.055%2012.4184%20464.961%2012.3687C464.933%2012.3533%20464.913%2012.3327%20464.95%2012.355C464.903%2012.3276%20464.853%2012.2967%20464.807%2012.2641L465.008%2012.5196C464.988%2012.4716%20464.967%2012.4064%20464.961%2012.3567C464.969%2012.4064%20464.973%2012.3567%20464.971%2012.3327C464.952%2012.175%20464.894%2012.067%20464.802%2011.9521C464.732%2011.8664%20464.65%2011.7875%20464.534%2011.7412C464.438%2011.6983%20464.462%2011.7155%20464.609%2011.7909L464.577%2011.7172C464.563%2011.6795%20464.489%2011.5972%20464.482%2011.5852L464.541%2011.8012C464.541%2011.9161%20464.523%2011.9401%20464.572%2011.7806C464.588%2011.7275%20464.595%2011.6692%20464.597%2011.6126C464.614%2011.0606%20463.743%2011.0623%20463.726%2011.6126V11.6143Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M465.435%2013.3689C465.356%2013.5129%20465.361%2013.6415%20465.386%2013.7975C465.389%2013.8198%20465.388%2013.8112%20465.382%2013.7701C465.372%2013.7307%20465.375%2013.6912%20465.396%2013.6518C465.443%2013.4632%20465.379%2013.6518%20465.368%2013.6878C465.363%2013.7067%20465.353%2013.7358%20465.354%2013.7547L465.516%2013.5575L465.501%2013.5661C465.222%2013.6827%20465.086%2014.0136%20465.257%2014.2742C465.28%2014.3102%20465.309%2014.3445%20465.339%2014.377C465.342%2014.3822%20465.368%2014.4027%20465.368%2014.4079L465.327%2014.3513L465.281%2014.1936C465.274%2014.233%20465.293%2014.293%20465.302%2014.3359C465.314%2014.4062%20465.302%2014.4628%20465.334%2014.2639C465.365%2014.065%20465.37%2014.1147%20465.337%2014.1627C465.304%2014.2107%20465.283%2014.2639%20465.264%2014.317C465.208%2014.4816%20465.26%2014.6736%20465.384%2014.7954C465.424%2014.8348%20465.475%2014.8674%20465.523%2014.8948C465.534%2014.8999%20465.546%2014.9102%20465.556%2014.9119C465.576%2014.9239%20465.569%2014.9171%20465.534%2014.8931C465.499%2014.8691%20465.471%2014.8399%20465.449%2014.8056L465.389%2014.5896C465.389%2014.5759%20465.417%2014.485%20465.396%2014.5433C465.391%2014.5588%20465.386%2014.5742%20465.381%2014.5913C465.37%2014.6342%20465.361%2014.6856%20465.361%2014.7285C465.361%2014.7851%20465.368%2014.6959%20465.374%2014.6856C465.347%2014.7371%20465.341%2014.8245%20465.339%2014.8777C465.335%2014.9634%20465.356%2015.0405%20465.389%2015.1177C465.443%2015.2428%20465.417%2015.2308%20465.455%2014.9908C465.504%2014.6856%20465.537%2014.7594%20465.466%2014.8074C465.429%2014.8314%20465.405%2014.8605%20465.379%2014.8965C465.335%2014.9531%20465.299%2015.0131%20465.283%2015.0851C465.274%2015.1263%20465.271%2015.1674%20465.259%2015.2086C465.198%2015.4246%20465.334%2015.6852%20465.563%2015.7366C465.793%2015.7881%20466.034%2015.668%20466.1%2015.4366C466.109%2015.4091%20466.114%2015.3817%20466.119%2015.3526C466.145%2015.2068%20466.076%2015.4349%20466.044%2015.4452C466.098%2015.428%20466.163%2015.3337%20466.187%2015.2943C466.264%2015.1811%20466.269%2015.0405%20466.241%2014.9119C466.229%2014.8588%20466.199%2014.8108%20466.178%2014.7594C466.213%2014.8228%20466.222%2014.8914%20466.203%2014.9651C466.206%2014.9514%20466.21%2014.9394%20466.213%2014.9257C466.224%2014.8811%20466.217%2014.7748%20466.236%2014.7611C466.236%2014.7251%20466.231%2014.7439%20466.224%2014.8177C466.227%2014.8056%20466.231%2014.7936%20466.234%2014.7816C466.271%2014.6633%20466.274%2014.5382%20466.225%2014.4233C466.18%2014.317%20466.112%2014.2416%20466.013%2014.1816C465.997%2014.1713%20465.981%2014.1627%20465.964%2014.1541C465.955%2014.1507%20465.947%2014.1456%20465.94%2014.1404C465.987%2014.1696%20466.025%2014.2073%20466.055%2014.2536L466.114%2014.4696C466.112%2014.5228%20466.098%2014.5742%20466.074%2014.6205L466.084%2014.6033C466.105%2014.5708%20466.119%2014.5365%20466.135%2014.5005C466.187%2014.3787%20466.178%2014.2742%20466.152%2014.1473C466.149%2014.1336%20466.147%2014.1199%20466.143%2014.1061C466.157%2014.2004%20466.154%2014.1816%20466.136%2014.0496C466.124%2014.0033%20466.105%2013.9587%20466.081%2013.9175C466.056%2013.8764%20466.02%2013.837%20465.987%2013.801C465.809%2013.6072%20466.215%2014.1901%20465.875%2014.341C466.032%2014.2724%20466.154%2014.1473%20466.196%2013.981C466.199%2013.9638%20466.203%2013.945%20466.206%2013.9278L466.184%2013.9758C466.225%2013.9004%20466.243%2013.8301%20466.248%2013.7461C466.251%2013.6929%20466.239%2013.6415%20466.231%2013.5884C466.231%2013.5781%20466.227%2013.5678%20466.225%2013.5592C466.248%2013.6415%20466.236%2013.7221%20466.189%2013.801C466.297%2013.6038%20466.246%2013.326%20466.032%2013.2146C465.818%2013.1032%20465.551%2013.158%20465.436%2013.3689H465.435Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M450.157%2015.1213C450.157%2015.1213%20450.224%2015.0716%20450.237%2015.0613L450.045%2015.1711C450.24%2015.1042%20450.36%2015.0322%20450.472%2014.8556C450.512%2014.7922%20450.548%2014.7339%20450.569%2014.6601C450.583%2014.6087%20450.588%2014.5556%20450.581%2014.5041C450.564%2014.3532%20450.561%2014.3515%20450.569%2014.499L450.369%2014.7544C450.484%2014.6859%20450.594%2014.6567%20450.674%2014.5264C450.702%2014.4836%20450.717%2014.4373%20450.738%2014.391C450.789%2014.283%20450.642%2014.4921%20450.79%2014.355L450.599%2014.4647C450.454%2014.4647%20450.458%2014.4698%20450.608%2014.4836C450.662%2014.4921%20450.716%2014.4887%20450.768%2014.4733C450.851%2014.4527%20450.932%2014.415%20450.993%2014.3532C451.015%2014.331%20451.071%2014.2367%20451.083%2014.2212C451.109%2014.1869%20451.214%2014.0326%20451.172%2014.0824L450.98%2014.1921C450.831%2014.1921%20450.831%2014.1972%20450.984%2014.2109L451.026%2014.2144C451.134%2014.2127%20451.236%2014.1784%20451.322%2014.1132C451.391%2014.0601%20451.44%2013.9932%20451.473%2013.9143C451.491%2013.8852%20451.499%2013.8543%20451.503%2013.8218C451.529%2013.6743%20451.524%2013.6692%20451.489%2013.8098L451.229%2014.0069C451.16%2014.0326%20451.28%2013.9949%20451.301%2013.9915C451.374%2013.9795%20451.431%2013.9658%20451.501%2013.9263C451.545%2013.9006%20451.581%2013.8646%20451.616%2013.8286C451.573%2013.8749%20451.75%2013.6417%20451.682%2013.7189L451.491%2013.8286C451.452%2013.8423%20451.461%2013.8492%20451.52%2013.8458C451.573%2013.8423%20451.625%2013.8338%20451.677%2013.8218C451.747%2013.8012%20451.839%2013.7635%20451.903%2013.7275C451.989%2013.6795%20452.053%2013.6194%20452.102%2013.5337C452.132%2013.4891%20452.147%2013.4394%20452.152%2013.388C452.179%2013.2423%20452.173%2013.2354%20452.137%2013.3708L451.877%2013.568L451.91%2013.5594H451.679C451.834%2013.5817%20451.973%2013.6177%20452.126%2013.5543C452.222%2013.5131%20452.292%2013.4514%20452.348%2013.3623C452.375%2013.328%20452.395%2013.2886%20452.403%2013.244C452.421%2013.1908%20452.424%2013.184%20452.412%2013.2251L452.255%2013.3794C452.346%2013.328%20452.433%2013.304%20452.523%2013.2543C452.659%2013.1788%20452.715%2013.0537%20452.788%2012.9474L452.631%2013.1017C452.553%2013.1394%20452.713%2013.0845%20452.705%2013.0862C452.769%2013.0622%20452.832%2013.0279%20452.881%2012.9799C452.929%2012.9319%20452.966%2012.8685%20452.99%2012.8051C452.99%2012.8016%20453.023%2012.6559%20453.002%2012.7193C453.018%2012.6731%20453.095%2012.6079%20453.076%2012.5633C453.091%2012.5205%20453.079%2012.5325%20453.041%2012.601C452.973%2012.6851%20452.989%2012.6833%20453.088%2012.5925C453.128%2012.5582%20453.168%2012.5222%20453.196%2012.4759C453.248%2012.4176%20453.239%2012.4176%20453.17%2012.4725C453.095%2012.5153%20453.088%2012.5239%20453.152%2012.4999C453.302%2012.469%20453.386%2012.3456%20453.478%2012.241C453.478%2012.241%20453.525%2012.1827%20453.508%2012.2067C453.562%2012.1673%20453.562%2012.1638%20453.511%2012.1947C453.466%2012.2153%20453.461%2012.2204%20453.495%2012.2084C453.633%2012.2221%20453.786%2012.0318%20453.835%2011.9324C453.865%2011.8707%20453.884%2011.8038%20453.884%2011.7369C453.884%2011.7044%20453.899%2011.6015%20453.87%2011.6906L453.67%2011.9461C453.544%2011.977%20453.527%2011.9855%20453.621%2011.9701C453.654%2011.9667%20453.687%2011.9615%20453.718%2011.9547C453.795%2011.9341%20453.882%2011.8827%20453.939%2011.8278C454.042%2011.7301%20454.108%2011.5998%20454.18%2011.4815L454.023%2011.6358C453.98%2011.6409%20453.983%2011.6358%20454.035%2011.6204C454.108%2011.5998%20454.173%2011.5638%20454.227%2011.5106C454.295%2011.4506%20454.344%2011.3872%20454.371%2011.2963C454.417%2011.1472%20454.363%2011.022%20454.333%2010.8797V11.1077L454.34%2011.0803L454.229%2011.2689C454.26%2011.2312%20454.29%2011.1814%20454.326%2011.1489C454.291%2011.1797%20454.326%2011.166%20454.349%2011.1506C454.42%2011.1009%20454.49%2011.0477%20454.553%2010.9911C454.62%2010.9294%20454.655%2010.8523%20454.708%2010.7837C454.774%2010.6945%20454.856%2010.6242%20454.911%2010.5214C454.998%2010.3636%20455.023%2010.2402%20455.096%2010.0996C455.124%2010.0465%20455.152%2010.0276%20455.197%209.95387C455.251%209.86643%20455.27%209.77385%20455.305%209.67955L455.105%209.93501C455.045%209.97787%20455.126%209.93844%20455.16%209.92815C455.227%209.90758%20455.284%209.875%20455.336%209.83214C455.47%209.71898%20455.484%209.59211%20455.523%209.4481L455.411%209.63669C455.545%209.4721%20455.653%209.29894%20455.723%209.12406C455.733%209.09834%20455.817%208.96461%20455.76%209.02462C455.695%209.0932%20455.808%208.99204%20455.821%208.97833C455.923%208.86688%20455.928%208.74858%20455.955%208.62514L455.843%208.81374C455.901%208.74516%20455.976%208.68858%20456.021%208.60971C456.031%208.59085%20456.07%208.49827%20456.024%208.55656C456.068%208.49998%20456.139%208.46912%20456.185%208.4074C456.259%208.30453%20456.289%208.18795%20456.273%208.06279C456.268%208.01993%20456.261%207.99078%20456.247%207.95306C456.228%207.8982%20456.242%207.87762%20456.233%207.94792L456.106%208.25138L456.132%208.22909L455.941%208.33882C456.064%208.29424%20456.185%208.26681%20456.282%208.16737C456.397%208.04907%20456.43%207.87248%20456.458%207.71646C456.467%207.64617%20456.468%207.64102%20456.461%207.69932C456.407%207.73875%20456.399%207.74732%20456.435%207.72503C456.493%207.72503%20456.571%207.62045%20456.606%207.57416C456.726%207.41471%20456.707%207.24498%20456.669%207.05981V7.28784C456.609%207.38557%20456.618%207.37871%20456.698%207.26898C456.723%207.24155%20456.742%207.21069%20456.752%207.1764C456.782%207.10953%20456.791%207.01866%20456.805%206.9638L456.693%207.1524C456.717%207.12496%20456.745%207.10268%20456.773%207.07867C456.899%206.96037%20456.74%207.09925%20456.808%207.04438C456.904%206.96552%20456.975%206.91751%20457.033%206.80435C457.111%206.65348%20457.148%206.44774%20457.195%206.29001L457.083%206.4786C457.028%206.53175%20457.151%206.43917%20457.151%206.44088C457.196%206.40659%20457.224%206.38088%20457.259%206.3363C457.277%206.3123%20457.378%206.17171%20457.36%206.14428C457.376%206.16999%20457.181%206.33116%20457.355%206.19914C457.581%206.02769%20457.562%205.81338%20457.524%205.56478V5.79281C457.543%205.81338%20457.557%205.79281%20457.564%205.72594L457.407%205.88024C457.273%205.90596%20457.247%205.91453%20457.331%205.90253L457.446%205.8871C457.526%205.86824%20457.59%205.83395%20457.651%205.78423C457.735%205.71737%20457.783%205.64536%20457.811%205.54078C457.82%205.50649%20457.823%205.32304%20457.811%205.37961L457.7%205.56821L457.733%205.54249L457.541%205.65222C457.658%205.61278%20457.773%205.57335%20457.864%205.4842C457.912%205.43619%20457.958%205.36418%20457.975%205.29732C458.019%205.21331%20457.998%205.22531%20457.916%205.33161L458.005%205.26474C458.09%205.18588%20458.132%205.07272%20458.179%204.999C458.236%204.91156%20458.32%204.84298%20458.381%204.75725C458.456%204.65096%20458.478%204.52408%20458.539%204.41779C458.553%204.3955%20458.558%204.4075%20458.538%204.42979C458.592%204.36978%20458.651%204.34749%20458.7%204.28406C458.842%204.09718%20458.853%203.87944%20458.929%203.67198L458.818%203.86058C458.942%203.73028%20458.928%203.80057%20459.062%203.6737C459.128%203.61026%20459.17%203.54168%20459.196%203.45253C459.213%203.41138%20459.22%203.3668%20459.219%203.3188C459.22%203.26222%20459.222%203.25708%20459.224%203.30337L459.023%203.55883C458.968%203.59826%20459.093%203.52968%20459.1%203.52797C459.166%203.49882%20459.22%203.46796%20459.274%203.41481C459.375%203.31537%20459.389%203.17307%20459.428%203.06163L459.316%203.25022C459.422%203.15421%20459.499%203.10449%20459.555%202.95876C459.579%202.89532%20459.598%202.81474%20459.626%202.75473L459.469%202.90904L459.499%202.89189L459.28%202.95018C459.401%202.93475%20459.525%202.93818%20459.638%202.87817C459.649%202.87132%20459.962%202.609%20459.889%202.55585C459.889%202.55585%20459.739%202.72216%20459.903%202.57814C459.962%202.5267%20460.001%202.47698%20460.035%202.40669C460.065%202.34497%20460.081%202.27982%20460.084%202.20952C460.084%202.17523%20460.105%202.07922%20460.074%202.16838L459.962%202.35697C459.985%202.32954%20460.009%202.30382%20460.034%202.27982C459.837%202.33983%20459.823%202.35354%20459.992%202.32268C460.055%202.30896%20460.112%202.28839%20460.166%202.25582C460.337%202.15123%20460.366%201.96607%20460.474%201.82205L460.318%201.97635C460.276%201.98493%20460.281%201.9815%20460.333%201.96607C460.384%201.95407%20460.431%201.93178%20460.471%201.8992C460.561%201.84091%20460.633%201.7569%20460.697%201.67289C460.741%201.61631%20460.777%201.55459%20460.809%201.49115C460.831%201.44658%20460.852%201.40029%20460.87%201.35228C460.887%201.30256%20460.884%201.29399%20460.861%201.32999L460.704%201.4843C460.561%201.52201%20460.565%201.52887%20460.715%201.50144C460.767%201.4963%20460.816%201.48087%20460.859%201.45172C460.957%201.40029%20461.019%201.32828%20461.068%201.23398C461.138%201.10196%20461.178%200.978521%20461.267%200.853363C461.403%200.664769%20461.302%200.376735%20461.11%200.267008C460.892%200.14185%20460.65%200.231004%20460.514%200.421312C460.413%200.560186%20460.361%200.709346%20460.291%200.849934L460.448%200.69563C460.591%200.657911%20460.588%200.651054%20460.436%200.678485L460.394%200.685343C460.318%200.707632%20460.23%200.755637%20460.173%200.812215C460.109%200.875652%20460.074%200.956233%20460.042%201.03681C460.025%201.08653%20460.028%201.09511%20460.051%201.0591C460.035%201.08139%20460.021%201.10368%20460.013%201.12768C460.008%201.14311%20460.001%201.15683%20459.99%201.16883C460.06%201.15168%20460.074%201.14997%20460.032%201.16369C460.009%201.19626%20459.875%201.23227%20459.828%201.2717C459.689%201.38828%20459.63%201.52887%20459.563%201.67289L459.72%201.51858C459.863%201.48258%20459.86%201.47744%20459.708%201.50315C459.656%201.51001%20459.609%201.52544%20459.563%201.55459C459.489%201.59402%20459.429%201.65403%20459.375%201.71575C459.306%201.79462%20459.245%201.87006%20459.217%201.97464C459.222%201.95749%20459.168%202.25582%20459.213%202.13066L459.325%201.94206C459.276%201.9815%20459.203%202.02093%20459.158%202.08094C459.112%202.14094%20459.088%202.23524%20459.069%202.27982L459.226%202.12551L459.196%202.14266L459.415%202.08437C459.22%202.10837%20459.036%202.11523%20458.905%202.28325C458.802%202.41526%20458.778%202.58157%20458.712%202.73416L458.823%202.54556C458.752%202.609%20458.682%202.64329%20458.628%202.73416C458.579%202.81474%20458.567%202.92789%20458.543%202.9999L458.743%202.74444C458.808%202.69987%20458.572%202.8216%20458.616%202.79759C458.555%202.83017%20458.501%202.87646%20458.459%202.93132C458.417%202.98619%20458.386%203.04962%20458.367%203.11477C458.36%203.13878%20458.32%203.31194%20458.346%203.24508L458.457%203.05648C458.522%203.00333%20458.379%203.09077%20458.386%203.08563C458.344%203.11477%20458.311%203.14906%20458.275%203.18335C458.177%203.27422%20458.107%203.36852%20458.066%203.4971C458.05%203.54511%20458.032%203.60855%20458.02%203.65655C458.006%203.71313%20457.972%203.81257%20458.015%203.71142C457.9%203.98573%20458.174%203.59483%20457.956%203.79028C457.905%203.83657%20457.865%203.88972%20457.825%203.94459C457.754%204.04231%20457.728%204.15547%20457.674%204.25319C457.632%204.32863%20457.547%204.40407%20457.493%204.47436C457.458%204.52066%20457.425%204.56352%20457.397%204.61495L457.353%204.71782C457.444%204.6201%20457.452%204.60124%20457.381%204.66124C457.259%204.74697%20457.223%204.85841%20457.176%204.96814L457.332%204.81383C457.362%204.8104%20457.362%204.81212%20457.332%204.82069C457.289%204.83441%20457.245%204.85155%20457.203%204.87213C457.146%204.90641%20457.088%204.95613%20457.048%205.00757C457.003%205.06415%20456.979%205.12415%20456.961%205.19445C456.956%205.21674%20456.953%205.4019%20456.967%205.33504L457.167%205.07958C457.188%205.06415%20457.351%205.05215%20457.243%205.05729C457.193%205.059%20457.141%205.06758%20457.092%205.08129C456.958%205.11901%20456.862%205.21674%20456.791%205.32989C456.663%205.5322%20456.67%205.69165%20456.704%205.91796V5.68994L456.697%205.72251L456.808%205.53392C456.864%205.48077%20456.74%205.57678%20456.744%205.57335C456.688%205.6145%20456.639%205.6625%20456.603%205.72251C456.569%205.77566%20456.531%205.97626%20456.578%205.81681C456.637%205.7568%20456.637%205.7448%20456.58%205.78252L456.491%205.84938C456.362%205.96768%20456.357%206.07741%20456.319%206.23171C456.319%206.23514%20456.247%206.42545%20456.249%206.42888C456.233%206.40316%20456.421%206.28658%20456.303%206.34316C456.237%206.37573%20456.2%206.42888%20456.151%206.4786C456.064%206.56604%20455.988%206.64491%20455.953%206.76835C455.873%207.06153%20455.972%206.79407%20455.974%206.79407C455.949%206.78721%20455.864%206.94494%20455.852%206.97409C455.793%207.11296%20455.815%207.25012%20455.845%207.39242V7.1644L455.84%207.20554L455.951%207.01695C455.984%206.99295%20455.977%206.99466%20455.932%207.02381C455.888%207.05124%20455.85%207.0821%20455.815%207.11982C455.758%207.18154%20455.702%207.26384%20455.664%207.33756C455.592%207.47643%20455.599%207.61359%20455.551%207.75418L455.662%207.56559L455.636%207.58788L455.827%207.47815C455.646%207.54158%20455.477%207.59816%20455.397%207.78676C455.355%207.88277%20455.345%207.99078%20455.371%208.09365C455.376%208.11937%20455.385%208.14337%20455.397%208.16566C455.418%208.22052%20455.42%208.21538%20455.404%208.15194L455.531%207.84848C455.437%207.9462%20455.357%208.03879%20455.279%208.15366C455.234%208.22224%20455.169%208.27196%20455.134%208.35082C455.103%208.42283%20455.105%208.50513%20455.091%208.56685L455.202%208.37825C455.134%208.45369%20455.059%208.51027%20455.007%208.60114C454.955%208.69201%20454.932%208.77602%20454.896%208.8686C454.871%208.92861%20454.842%208.97833%20454.791%209.03662C454.695%209.14806%20454.681%209.26636%20454.648%209.38637L454.849%209.13091C454.906%209.08805%20454.828%209.12749%20454.793%209.13777C454.715%209.16178%20454.631%209.2115%20454.573%209.26807C454.509%209.33151%20454.465%209.42066%20454.443%209.50639C454.413%209.6264%20454.521%209.44467%20454.424%209.54239C454.258%209.7087%20454.244%209.95387%20454.135%2010.127C454.112%2010.1613%20454.081%2010.1888%20454.053%2010.2213C454.032%2010.2453%20453.938%2010.3945%20453.959%2010.3636C453.891%2010.4545%20453.845%2010.4236%20453.737%2010.5214C453.629%2010.6191%20453.525%2010.7442%20453.49%2010.8831C453.455%2011.022%20453.508%2011.1386%20453.534%2011.2723V11.0443L453.527%2011.0717L453.638%2010.8831L453.607%2010.9071L453.798%2010.7974C453.664%2010.8505%20453.549%2010.8951%20453.455%2011.01C453.426%2011.046%20453.382%2011.0974%20453.372%2011.1472C453.321%2011.2072%20453.34%2011.2123%20453.427%2011.1609C453.549%2011.1232%20453.537%2011.118%20453.394%2011.1454C453.262%2011.1746%20453.137%2011.2466%20453.065%2011.3666C453.025%2011.4352%20452.995%2011.5346%20452.995%2011.6135C452.995%2011.6461%20452.978%2011.7472%20453.009%2011.6598L453.21%2011.4043C453.293%2011.3512%20453.025%2011.4849%20453.086%2011.4523C453.027%2011.4849%20452.976%2011.5329%20452.926%2011.5758C452.828%2011.6581%20452.764%2011.7575%20452.687%2011.857L452.844%2011.7027C452.91%2011.6615%20452.781%2011.7267%20452.778%2011.7284C452.713%2011.7558%20452.654%2011.7901%20452.604%2011.8381C452.523%2011.9152%20452.501%2011.9564%20452.424%2012.0233C452.332%2012.1038%20452.294%2012.1896%20452.243%2012.2993C452.222%2012.3439%20452.259%2012.2599%20452.226%2012.3302C452.217%2012.349%20452.165%2012.5187%20452.193%2012.4656L452.349%2012.3113C452.393%2012.289%20452.353%2012.2993%20452.328%2012.3044C452.264%2012.3182%20452.194%2012.3593%20452.144%2012.3987C452.051%2012.4707%20452.003%2012.5822%20451.947%2012.661L452.104%2012.5067C452.018%2012.5496%20451.903%2012.5873%20451.811%2012.6439C451.738%2012.6902%20451.675%2012.7553%20451.632%2012.8291L451.588%2012.9319C451.574%2012.9851%20451.571%2012.9919%20451.578%2012.9508L451.837%2012.7536L451.806%2012.7605H452.038C451.863%2012.7348%20451.7%2012.6953%20451.536%2012.7879C451.463%2012.8308%20451.405%2012.8976%20451.362%2012.9697C451.332%2013.0142%20451.316%2013.064%20451.311%2013.1154C451.285%2013.2611%20451.29%2013.268%20451.325%2013.1342L451.482%2012.9799C451.505%2012.9662%20451.489%2012.9714%20451.437%2012.9971C451.358%2013.0297%20451.367%2013.0262%20451.465%2012.9868C451.395%2012.9799%20451.323%2012.9868%20451.256%2013.0057C451.168%2013.0297%20451.097%2013.0811%20451.038%2013.1462C451.024%2013.1617%20450.925%2013.3091%20450.972%2013.256L451.163%2013.1462C451.257%2013.112%20450.996%2013.1788%20451.034%2013.1685C450.952%2013.1908%20450.864%2013.2337%20450.804%2013.2937C450.745%2013.3537%20450.698%2013.4343%20450.674%2013.5097L450.665%2013.5509C450.639%2013.6983%20450.644%2013.7035%20450.679%2013.5646L450.939%2013.3674C451.088%2013.3674%20451.088%2013.3623%20450.935%2013.3486C450.883%2013.34%20450.829%2013.3434%20450.777%2013.3606C450.683%2013.3828%20450.608%2013.4274%20450.54%2013.4943C450.512%2013.5234%20450.428%2013.6692%20450.465%2013.6177C450.414%2013.6915%20450.36%2013.7669%20450.306%2013.8372L450.566%2013.64C450.71%2013.64%20450.707%2013.6349%20450.555%2013.6212C450.501%2013.6126%20450.449%2013.616%20450.395%2013.6314C450.308%2013.652%20450.238%2013.6949%20450.17%2013.7515C450.103%2013.808%20450.035%2013.8732%20449.988%2013.9452C449.958%2013.9863%20449.935%2014.0309%20449.921%2014.0806C449.904%2014.1321%20449.902%2014.1372%20449.916%2014.0961L450.073%2013.9418C449.92%2014.0275%20449.784%2014.0875%20449.723%2014.271C449.704%2014.3327%20449.695%2014.3944%20449.697%2014.4578C449.707%2014.727%20449.784%2014.3121%20449.672%2014.4853L449.829%2014.331C449.859%2014.3087%20449.834%2014.3344%20449.806%2014.3447C449.726%2014.3704%20449.662%2014.4115%20449.599%2014.4681C449.523%2014.5333%20449.462%2014.6087%20449.399%2014.6893C449.254%2014.8727%20449.371%2015.1693%20449.556%2015.2756C449.78%2015.4059%20450.007%2015.3065%20450.151%2015.1213H450.157Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M462.325%201.10777C462.462%201.10777%20462.638%201.1232%20462.8%201.10091C462.889%201.08719%20462.969%201.07348%20463.047%201.02547C463.03%201.03576%20463.27%200.862594%20463.155%200.920886L462.819%200.963749C462.941%200.982608%20463.051%201.0169%20463.178%201.01518C463.265%201.01518%20463.34%201.0049%20463.422%200.977465L463.526%200.934602C463.5%200.943175%20463.474%200.939746%20463.453%200.924315C463.417%200.905456%20463.411%200.905456%20463.443%200.920886C463.481%200.944889%20463.523%200.962034%20463.566%200.97575C463.636%200.996324%20463.708%201.00318%20463.779%200.992895C463.927%200.972321%20464.03%200.890026%20464.143%200.802587L463.951%200.912314C464.021%200.886597%20464.15%200.859165%20464.187%200.854021L463.967%200.795729C463.936%200.782013%20463.861%200.667142%20463.911%200.754581C463.934%200.794014%20463.971%200.836877%20464.004%200.869452C464.106%200.968892%20464.254%201.01518%20464.396%200.999753C464.455%200.992895%20464.491%200.982608%20464.545%200.96032C464.537%200.963749%20464.664%200.903742%20464.625%200.920886C464.584%200.938031%20464.719%200.890026%20464.706%200.895169C464.706%200.895169%20464.847%200.843735%20464.775%200.859165L464.439%200.816303C464.359%200.730578%20464.347%200.720291%20464.402%200.788871C464.418%200.809445%20464.434%200.830019%20464.451%200.848878C464.49%200.888311%20464.533%200.920886%20464.584%200.946604C464.662%200.987752%20464.742%201.0049%20464.829%201.00318C464.871%201.00318%20465.031%201.01518%20464.922%200.984322C465.009%201.00833%20465.099%201.07005%20465.198%201.08376C465.27%201.09405%20465.343%201.08891%20465.413%201.07005L465.517%201.02718C465.568%200.998038%20465.575%200.994609%20465.542%201.01861L465.205%200.97575C465.122%200.934602%20465.352%201.08033%20465.308%201.0529C465.369%201.09062%20465.435%201.11291%20465.505%201.12148C465.658%201.13863%20465.782%201.08548%20465.916%201.01861L465.697%201.07691C465.697%201.07691%20465.697%201.07691%20465.697%201.07348L465.54%200.919172C465.627%201.06662%20465.707%201.20206%20465.89%201.25178C466.073%201.3015%20466.226%201.21749%20466.379%201.13177L466.16%201.19006L466.193%201.18663L465.974%201.12834C465.933%201.10262%20465.963%201.12834%20465.98%201.1472C466.029%201.19863%20466.08%201.22092%20466.139%201.25007C466.189%201.27579%20466.245%201.29636%20466.297%201.31693C466.317%201.32379%20466.468%201.40609%20466.386%201.35122C466.505%201.42838%20466.587%201.50038%20466.738%201.50724C466.794%201.50896%20466.87%201.47467%20466.916%201.4901C466.989%201.5141%20466.733%201.45752%20466.938%201.53296L466.747%201.42323C466.703%201.38551%20466.811%201.5141%20466.827%201.52953C466.888%201.58954%20466.968%201.64269%20467.05%201.66669C467.09%201.67698%20467.201%201.68555%20467.208%201.68726C467.243%201.69755%20467.28%201.70269%20467.316%201.70612C467.424%201.72498%20467.395%201.70955%20467.231%201.66155C467.198%201.71298%20467.597%201.89472%20467.619%201.89986C467.686%201.91872%20467.759%201.91872%20467.827%201.90843C467.86%201.90843%20467.893%201.90157%20467.924%201.88786C468.064%201.83471%20468.064%201.82957%20467.924%201.87414L467.705%201.81585C467.754%201.86386%20467.778%201.869%20467.778%201.83128L467.666%201.64269C467.733%201.80556%20467.766%201.96672%20467.935%202.06274C468.036%202.12103%20468.182%202.17246%20468.299%202.17761C468.351%202.18446%20468.403%202.18104%20468.455%202.16561C468.511%202.15189%20468.518%202.15017%20468.475%202.16218L468.255%202.10388C468.332%202.15703%20468.401%202.25133%20468.504%202.30962C468.581%202.3542%20468.677%202.37306%20468.764%202.37134L468.879%202.35591C468.934%202.3422%20468.94%202.3422%20468.896%202.35591L468.677%202.29762C468.816%202.37992%20468.926%202.42964%20469.074%202.45364C469.042%202.45878%20469.067%202.46564%20469.143%202.47764C469.077%202.44335%20469.095%202.4605%20469.197%202.52736C469.26%202.56851%20469.323%202.59423%20469.396%202.61137C469.534%202.6388%20469.549%202.63538%20469.441%202.59766C469.365%202.55308%20469.351%202.55651%20469.399%202.60451C469.443%202.66452%20469.527%202.69367%20469.591%202.72624C469.683%202.77082%20469.777%202.81025%20469.884%202.8154C469.936%202.82225%20469.988%202.81883%20470.04%202.8034C470.096%202.78968%20470.101%202.78968%20470.058%202.8034L469.838%202.7451C469.906%202.78625%20469.981%202.8514%20470.075%202.87712C470.169%202.90284%20470.26%202.88912%20470.354%202.89769L470.134%202.8394C470.209%202.88055%20470.296%202.9457%20470.399%202.97313C470.49%202.99713%20470.586%203.03314%20470.472%202.97313C470.521%202.99885%20470.563%203.02971%20470.617%203.04857C470.765%203.10172%20470.842%203.05028%20470.988%203.05028C470.903%203.05028%20470.918%203.05885%20470.99%203.08114C471.07%203.10343%20471.178%203.10343%20471.261%203.11029L471.042%203.052L471.07%203.07086L470.913%202.91655C471.064%203.124%20471.219%203.26116%20471.476%203.29545C471.545%203.30574%20471.622%203.30746%20471.69%203.28688C471.827%203.24402%20471.472%203.19601%20471.631%203.27831C471.759%203.34517%20471.897%203.3246%20472.008%203.32289L471.789%203.26459L471.817%203.28345L471.66%203.12915C471.77%203.2886%20471.867%203.43604%20472.078%203.46519C472.184%203.4789%20472.289%203.46004%20472.383%203.40861C472.425%203.38289%20472.465%203.35375%20472.501%203.32117C472.564%203.27145%20472.541%203.28174%20472.432%203.35203L472.096%203.30917C471.996%203.2063%20471.995%203.20973%20472.087%203.32117C472.118%203.3606%20472.157%203.39318%20472.202%203.41718C472.282%203.46519%20472.359%203.48062%20472.451%203.49091C472.543%203.50119%20472.625%203.51319%20472.723%203.49091C472.775%203.48748%20472.822%203.47033%20472.867%203.44119C472.916%203.41375%20472.923%203.41204%20472.89%203.43604H472.658C472.743%203.4669%20472.832%203.51148%20472.949%203.50976C473.066%203.50805%20473.116%203.49262%20473.238%203.50119L473.019%203.4429L473.048%203.46004L472.892%203.30574C473.04%203.49948%20473.165%203.61949%20473.412%203.67607C473.466%203.68807%20473.526%203.6915%20473.581%203.68979C473.705%203.67436%20473.736%203.66921%20473.674%203.67778C473.637%203.67778%20473.64%203.68293%20473.687%203.68807C473.816%203.75837%20473.989%203.6795%20474.118%203.66064H473.886C474.144%203.72922%20474.346%203.70865%20474.588%203.66064H474.356C474.468%203.68464%20474.551%203.73265%20474.661%203.76008C474.752%203.78237%20474.844%203.77551%20474.933%203.74808C474.955%203.74122%20475.109%203.65721%20475.055%203.67436H474.823C475.025%203.71207%20475.238%203.72408%20475.407%203.70693L475.187%203.64864C475.107%203.5612%20475.083%203.54234%20475.117%203.59035C475.142%203.62806%20475.168%203.66235%20475.198%203.69493C475.238%203.73779%20475.283%203.7738%20475.335%203.80294C475.52%203.90067%20475.654%203.83723%20475.83%203.7858H475.598C475.737%203.81666%20475.854%203.86295%20476%203.82009C476.133%203.78237%20476.213%203.69322%20476.307%203.60235L476.115%203.71207L476.147%203.70007H475.915C475.852%203.68121%20476.02%203.76008%20476.049%203.76694C476.147%203.79437%20476.241%203.7858%20476.34%203.78408L476.121%203.72579C476.089%203.71207%20476.211%203.79951%20476.236%203.81323C476.331%203.86981%20476.441%203.89552%20476.553%203.88009C476.718%203.85781%20476.816%203.76179%20476.931%203.6555L476.739%203.76522L476.77%203.75322H476.539C476.645%203.78751%20476.687%203.82523%20476.809%203.83209C476.897%203.83723%20476.991%203.83209%20477.08%203.83209C477.258%203.82866%20477.387%203.76522%20477.549%203.73093H477.317C477.272%203.71893%20477.312%203.73436%20477.333%203.74636C477.392%203.78237%20477.465%203.80123%20477.533%203.80809C477.653%203.82009%20477.768%203.77723%20477.862%203.75322H477.631L477.659%203.76179L477.467%203.65207C477.535%203.71036%20477.585%203.78237%20477.666%203.82866C477.808%203.91096%20477.953%203.89381%20478.106%203.86124C478.202%203.84066%20478.299%203.81494%20478.392%203.78065C478.456%203.75665%20478.51%203.72408%20478.562%203.6795C478.587%203.65893%20478.67%203.60578%20478.592%203.64178L478.373%203.70007C478.484%203.70693%20478.664%203.71722%20478.805%203.68807C478.841%203.68121%20478.883%203.66921%20478.916%203.66578C478.935%203.67436%20478.927%203.66921%20478.892%203.65035L478.996%203.69322C479.149%203.73951%20479.322%203.71207%20479.48%203.71207C479.595%203.71207%20479.836%203.73093%20479.916%203.62464C479.949%203.58006%20479.855%203.60578%20479.891%203.61263C479.972%203.62806%20480.027%203.64692%20480.113%203.6555C480.191%203.66407%20480.273%203.6555%20480.351%203.67264L480.311%203.66407C480.426%203.7155%20480.449%203.72408%20480.379%203.68636C480.33%203.6555%20480.33%203.66064%20480.376%203.70007L480.464%203.76694C480.541%203.81323%20480.628%203.8458%20480.72%203.8458C480.858%203.8458%20480.966%203.78237%20481.086%203.73265L480.867%203.79094H480.9C480.797%203.74808%20480.694%203.70522%20480.592%203.66407C480.504%203.59377%20480.686%203.8098%20480.677%203.80294C480.74%203.86809%20480.816%203.9041%20480.896%203.93839C480.994%203.98125%20481.076%204.01725%20481.185%204.01382C481.239%204.01382%20481.292%204.00525%20481.34%203.98468C481.48%203.93153%20481.48%203.92639%20481.34%203.97096L481.032%203.8458C480.964%203.78923%20481.152%203.98811%20481.112%203.95039C481.173%204.0104%20481.252%204.06526%20481.335%204.08755C481.419%204.10984%20481.52%204.10984%20481.6%204.08926C481.635%204.08069%20481.734%204.07555%20481.645%204.06697L481.337%203.94182C481.274%203.83209%20481.262%203.82009%20481.3%203.90238C481.313%203.93153%20481.325%203.96068%20481.339%203.98982C481.377%204.05497%20481.452%204.1287%20481.518%204.16813C481.619%204.22642%20481.739%204.23499%20481.821%204.27443L481.664%204.12012L481.633%204.01211L481.649%204.12527C481.661%204.18184%20481.68%204.23499%20481.71%204.28643C481.781%204.40644%20481.886%204.46816%20482.015%204.51617C482.074%204.53846%20482.028%204.49388%20482.084%204.53674C482.103%204.55046%20482.15%204.60189%20482.157%204.60875C482.152%204.58818%20482.163%204.60189%20482.19%204.6499C482.239%204.71848%20482.237%204.70648%20482.183%204.6139V4.38587C482.138%204.60532%20482.107%204.75277%20482.234%204.95508C482.361%205.15739%20482.474%205.19168%20482.589%205.32541L482.478%205.13681L482.483%205.17796V4.94994C482.448%205.12996%20482.426%205.30826%20482.547%205.46428C482.647%205.59115%20482.777%205.62716%20482.922%205.68031L482.73%205.57058C482.72%205.56201%20482.79%205.71974%20482.788%205.71631C482.748%205.61687%20482.802%205.81747%20482.81%205.84147C482.856%205.9872%20482.943%206.10036%20483.023%206.20837L482.964%205.99235C483.002%205.86033%20482.995%205.86204%20482.943%205.99749C482.92%206.04721%20482.91%206.09864%20482.912%206.15351C482.908%206.28038%20482.95%206.39868%20483.04%206.48955C483.107%206.55813%20483.188%206.60099%20483.281%206.62499C483.331%206.63356%20483.384%206.64042%20483.436%206.64728C483.39%206.64042%20483.389%206.64214%20483.432%206.65414L483.241%206.54441L483.258%206.55984L483.147%206.37125C483.183%206.48612%20483.18%206.58213%20483.199%206.72958V6.50155C483.175%206.65757%20483.148%206.81873%20483.234%206.96275C483.276%207.03304%20483.343%207.09819%20483.411%207.14105C483.438%207.15648%20483.514%207.2182%20483.453%207.15134L483.342%206.96275C483.366%207.0759%20483.389%207.24221%20483.427%207.37594C483.457%207.47709%20483.497%207.56453%20483.577%207.63997C483.613%207.67769%20483.655%207.70512%20483.702%207.72398C483.836%207.7857%20483.842%207.78227%20483.716%207.71541L483.589%207.41194C483.586%207.34851%20483.563%207.52853%20483.561%207.5491C483.558%207.66226%20483.589%207.75998%20483.657%207.85085C483.7%207.90914%20483.748%207.95201%20483.815%207.98801C483.856%208.00516%20483.896%208.0223%20483.936%208.03773C484.012%208.06345%20483.991%208.0463%20483.875%207.98458L483.748%207.68112C483.786%207.5611%20483.789%207.54396%20483.754%207.62968C483.741%207.65883%20483.728%207.68969%20483.72%207.72055C483.699%207.7977%20483.699%207.904%20483.72%207.98115C483.742%208.06516%20483.796%208.14231%20483.859%208.20061C483.875%208.21604%20484.009%208.31548%20483.974%208.27776L483.862%208.08917C483.908%208.25033%20483.955%208.3412%20484.047%208.46807L483.988%208.25204C483.998%208.38063%20484.002%208.53322%20484.059%208.67723C484.092%208.76124%20484.131%208.83325%20484.199%208.89669C484.216%208.91212%20484.347%209.01156%20484.314%208.97556L484.186%208.67209C484.199%208.76467%20484.186%208.85726%20484.213%208.94984C484.24%209.04928%20484.301%209.10586%20484.35%209.18301L484.291%208.96698C484.307%209.09728%20484.289%209.22587%20484.359%209.3476C484.378%209.37846%20484.399%209.40761%20484.423%209.43504C484.477%209.51219%20484.476%209.4899%20484.416%209.36475C484.394%209.37503%20484.458%209.5602%20484.467%209.58077C484.512%209.69564%20484.559%209.81051%20484.604%209.9271C484.627%209.9871%20484.65%2010.0454%20484.686%2010.0985C484.698%2010.1174%20484.822%2010.2443%20484.78%2010.1877L484.721%209.97167C484.73%2010.102%20484.7%2010.2751%20484.74%2010.4192C484.763%2010.4963%20484.815%2010.5752%20484.873%2010.6335C484.864%2010.6249%20485.073%2010.8101%20484.998%2010.7192L484.887%2010.5306C484.901%2010.6352%20484.899%2010.726%20484.975%2010.8392C485.031%2010.9215%20485.078%2010.9661%20485.125%2011.0604L485.066%2010.8443C485.078%2010.8015%20485.078%2010.8083%20485.064%2010.8632C485.049%2010.9146%20485.045%2010.9661%20485.052%2011.0175C485.056%2011.0878%20485.069%2011.1667%20485.089%2011.2353C485.113%2011.3278%20485.146%2011.4016%20485.214%2011.4753C485.242%2011.5181%20485.28%2011.5507%20485.327%2011.5747C485.374%2011.6022%20485.379%2011.609%20485.341%2011.5936L485.214%2011.2901C485.209%2011.2181%20485.205%2011.3536%20485.204%2011.3656C485.195%2011.441%20485.207%2011.5027%20485.214%2011.5764C485.223%2011.6724%20485.228%2011.7702%20485.296%2011.873C485.324%2011.9159%20485.359%2011.9553%20485.399%2011.9879C485.371%2011.9193%20485.367%2011.9125%20485.39%2011.9673C485.4%2011.9913%20485.411%2012.0153%20485.42%2012.0393C485.475%2012.1714%20485.531%2012.2657%20485.606%2012.3788L485.547%2012.1628C485.58%2012.0445%20485.58%2012.0273%20485.547%2012.1114C485.533%2012.1405%20485.521%2012.1714%20485.508%2012.2022C485.489%2012.2674%20485.491%2012.3394%20485.501%2012.4062C485.522%2012.5417%20485.608%2012.6377%20485.669%2012.744C485.766%2012.9155%20485.872%2013.0629%20485.968%2013.2378L485.909%2013.0217C485.918%2013.1178%20485.9%2013.2052%20485.926%2013.3012C485.953%2013.3972%20486.01%2013.4589%20486.055%2013.5378L485.996%2013.3218C485.993%2013.2806%20486.003%2013.3046%20485.996%2013.3389C485.977%2013.4161%20485.979%2013.4761%20485.991%2013.5498C486.012%2013.663%20486.047%2013.7556%20486.069%2013.8584C486.092%2013.9613%20486.134%2014.047%20486.21%2014.119C486.261%2014.167%20486.32%2014.1962%20486.384%2014.2219C486.498%2014.2665%20486.473%2014.2888%20486.377%2014.191L486.25%2013.8876C486.29%2013.7538%20486.283%2013.7538%20486.231%2013.8893L486.216%2013.9287C486.189%2014.0333%20486.196%2014.1413%20486.238%2014.2408C486.273%2014.3213%20486.325%2014.3848%20486.395%2014.4379C486.419%2014.4602%20486.445%2014.4774%20486.475%2014.4911C486.609%2014.5528%20486.614%2014.5494%20486.487%2014.4808L486.376%2014.2922C486.379%2014.3042%20486.397%2014.4053%20486.407%2014.4448C486.543%2014.9797%20487.382%2014.7534%20487.247%2014.2167C487.224%2014.1276%20487.203%2013.9767%20487.102%2013.8739C487.069%2013.8413%20487.032%2013.807%20486.992%2013.7847C486.963%2013.7693%20486.935%2013.7573%20486.903%2013.7453C486.82%2013.7093%20486.834%2013.7178%20486.942%2013.7727L487.069%2014.0762C487.031%2014.2133%20487.038%2014.2133%20487.088%2014.0762C487.109%2014.0282%20487.119%2013.9767%20487.119%2013.9219C487.121%2013.8344%20487.104%2013.747%20487.058%2013.6715C487.018%2013.6047%20486.951%2013.5378%20486.883%2013.4984C486.837%2013.4795%20486.792%2013.4589%20486.745%2013.4418C486.668%2013.4161%20486.689%2013.4332%20486.804%2013.4932L486.916%2013.6818C486.924%2013.7333%20486.91%2013.5464%20486.897%2013.5224C486.876%2013.4281%20486.856%2013.4281%20486.843%2013.5224C486.851%2013.4881%20486.856%2013.4538%20486.86%2013.4195C486.879%2013.2361%20486.806%2013.1229%20486.719%2012.972L486.778%2013.1881C486.766%2013.0543%20486.783%2012.9343%20486.717%2012.8057C486.677%2012.7286%20486.632%2012.6549%20486.59%2012.5777C486.506%2012.4251%20486.391%2012.2759%20486.303%2012.1336L486.362%2012.3497C486.325%2012.4868%20486.332%2012.4868%20486.383%2012.3497C486.405%2012.3017%20486.416%2012.2502%20486.414%2012.1971C486.418%2012.0874%20486.386%2011.9948%20486.325%2011.9039C486.16%2011.6553%20486.329%2011.9862%20486.242%2011.777C486.202%2011.6844%20486.17%2011.5833%20486.113%2011.4993C486.087%2011.453%20486.052%2011.4153%20486.01%2011.3844C486.076%2011.5559%20486.092%2011.5627%20486.057%2011.4033V11.4924C486.069%2011.4393%20486.078%2011.3861%20486.083%2011.333C486.087%2011.201%20486.041%2011.0861%20485.953%2010.9884C485.923%2010.9472%20485.886%2010.9129%20485.839%2010.8889C485.792%2010.8615%20485.787%2010.8546%20485.825%2010.8701L485.937%2011.0587C485.928%2011.0329%20485.923%2011.0072%20485.919%2010.9815C485.912%2010.9249%20485.909%2010.9472%20485.909%2011.0467C485.899%2011.0347%20485.933%2010.8752%20485.932%2010.8461C485.926%2010.7123%20485.857%2010.5786%20485.784%2010.4689C485.62%2010.2254%20485.754%2010.4689%20485.745%2010.4723C485.78%2010.4586%20485.684%2010.2134%20485.679%2010.2031C485.636%2010.1311%20485.571%2010.0711%20485.501%2010.0248C485.474%2010.006%20485.411%209.94081%20485.465%2010.006L485.592%2010.3094C485.578%2010.1877%20485.594%2010.0968%20485.588%209.97682C485.583%209.87909%20485.557%209.80708%20485.505%209.72822C485.514%209.74193%20485.324%209.52419%20485.428%209.66821C485.386%209.60992%20485.374%209.51219%20485.348%209.44876C485.339%209.42818%20485.245%209.19844%20485.278%209.31674C485.231%209.15043%20485.205%209.06299%20485.11%208.92069L485.169%209.13672C485.158%209.04242%20485.172%208.95155%20485.146%208.85897C485.118%208.75953%20485.057%208.70295%20485.009%208.6258L485.068%208.84183C485.05%208.71152%20485.068%208.58294%20484.998%208.46292C484.974%208.42178%20484.937%208.37891%20484.902%208.34634C484.949%208.39263%20484.733%208.20747%20484.787%208.26747L484.899%208.45607L484.871%208.38406L484.847%208.42692C484.833%208.39092%20484.86%208.30519%20484.857%208.2589C484.854%208.18346%20484.834%208.10802%20484.798%208.04287C484.782%208.01373%20484.667%207.84228%20484.711%207.94172C484.742%208.01373%20484.711%207.90914%20484.707%207.89371C484.69%207.83028%20484.66%207.77541%20484.622%207.72226C484.589%207.67769%20484.559%207.64854%20484.516%207.61425C484.517%207.61425%20484.402%207.52338%20484.444%207.56968L484.571%207.87314C484.528%208.0103%20484.533%208.0103%20484.585%207.87314C484.604%207.82513%20484.615%207.7737%20484.615%207.72055C484.617%207.63483%20484.599%207.54739%20484.554%207.47195C484.514%207.40508%20484.446%207.33822%20484.378%207.29879C484.333%207.27821%20484.287%207.25935%20484.24%207.24049C484.164%207.21478%20484.185%207.23192%20484.301%207.29364L484.429%207.59711C484.432%207.6914%20484.456%207.38794%20484.456%207.45995C484.456%207.37251%20484.441%207.27821%20484.395%207.20277C484.354%207.13419%20484.284%207.06562%20484.216%207.02447L484.179%207.00732C484.045%206.9456%20484.04%206.94903%20484.166%207.01761L484.277%207.2062C484.237%207.06219%20484.218%206.92331%20484.19%206.79473C484.167%206.69186%20484.124%206.60442%20484.045%206.53069C484.061%206.54441%20483.829%206.35925%20483.915%206.45354L484.026%206.64214L484.021%206.6027V6.83073C484.058%206.59242%20484.068%206.41925%20483.99%206.17922C483.943%206.03006%20483.856%205.92548%20483.713%205.86033C483.671%205.84147%20483.634%205.83118%20483.591%205.82261L483.476%205.80718C483.521%205.81404%20483.523%205.81232%20483.479%205.80204L483.671%205.91176L483.653%205.89633L483.781%206.1998C483.742%206.33181%20483.749%206.3301%20483.8%206.19465C483.815%206.16379%20483.822%206.13122%20483.822%206.09693C483.835%206.00949%20483.828%205.92377%20483.791%205.84147C483.761%205.77461%20483.7%205.70945%20483.666%205.66831L483.633%205.59801C483.65%205.67517%20483.647%205.64945%20483.626%205.52257C483.591%205.38027%20483.511%205.21397%20483.432%205.08881C483.335%204.93622%20483.187%204.88821%20483.025%204.82821L483.216%204.93793L483.192%204.91565L483.303%205.10424L483.298%205.06309V5.29112C483.342%205.06824%20483.343%204.89336%20483.181%204.71505C483.143%204.67219%20483.1%204.62933%20483.058%204.59161C483.019%204.55732%20482.978%204.52646%20482.932%204.50074C482.974%204.50931%20482.99%204.52646%20482.976%204.55046V4.77849C483.002%204.64819%20483.051%204.54189%20483.018%204.4013C482.988%204.27786%20482.906%204.1887%20482.838%204.10469C482.756%204.00525%20482.671%203.91781%20482.565%203.84409C482.525%203.81666%20482.48%203.78751%20482.438%203.76522C482.419%203.75494%20482.239%203.69836%20482.312%203.73093L482.469%203.88524C482.504%204.02068%20482.509%204.01554%20482.483%203.86809C482.478%203.81837%20482.46%203.77037%20482.433%203.7275C482.391%203.6555%20482.332%203.59206%20482.26%203.5492C482.129%203.47205%20482.002%203.44461%20481.853%203.40004L482.044%203.50976C482.117%203.63321%20482.121%203.62806%20482.058%203.49605L482.042%203.46004C481.987%203.37089%20481.908%203.30231%20481.811%203.26116C481.725%203.22516%20481.642%203.2183%20481.551%203.22859C481.529%203.23202%20481.34%203.25259%20481.448%203.25945L481.757%203.38461C481.821%203.44119%20481.63%203.23373%20481.675%203.27831C481.614%203.2183%20481.534%203.16515%20481.452%203.14286C481.37%203.12058%20481.267%203.12058%20481.187%203.14115L481.147%203.15315C481.008%203.2063%20481.008%203.21144%20481.149%203.16858L481.368%203.22687C481.21%203.15315%20481.391%203.32974%20481.297%203.17715C481.243%203.08972%20481.158%203.02114%20481.064%202.9817C480.868%202.90112%20480.707%202.97999%20480.529%203.05714L480.748%202.99885H480.715C480.788%203.02114%20480.862%203.03999%20480.935%203.06057C480.966%203.08286%20480.963%203.076%20480.922%203.03999C480.891%203.00913%20480.856%202.98342%20480.816%202.96284C480.757%202.92855%20480.659%202.88912%20480.593%202.86855C480.457%202.82568%20480.313%202.83426%20480.172%202.81368C479.989%202.78625%20479.82%202.75025%20479.635%202.80854C479.588%202.81883%20479.547%202.83768%20479.512%202.86683C479.473%202.89083%20479.487%202.89083%20479.555%202.86683C479.465%202.87197%20479.372%202.87026%20479.28%202.87197C479.23%202.86512%20479.228%202.87369%20479.273%202.89769C479.224%202.87026%20479.17%202.8514%20479.115%202.84283C479.028%202.82397%20478.928%202.81711%20478.839%202.82225C478.707%202.82911%20478.585%202.87369%20478.479%202.86683C478.301%202.85483%20478.122%202.87883%20478%203.02285C477.948%203.07943%20477.965%203.07086%20478.05%203.00056L477.998%203.01771C477.927%203.02285%20477.859%203.05371%20477.789%203.06743H478.021L477.995%203.05885L478.186%203.16858C478.087%203.08286%20478.019%202.99027%20477.883%202.94913C477.725%202.90112%20477.598%202.95598%20477.469%202.98685H477.7C477.77%203.00571%20477.601%202.9337%20477.582%202.92855C477.491%202.90112%20477.403%202.89769%20477.31%202.91827C477.258%202.93027%20477.204%202.94398%20477.153%202.95941C477.098%202.96799%20477.047%202.98685%20476.997%203.01428C477.047%202.98856%20477.045%202.97999%20476.995%202.98685C476.957%202.98513%20476.917%202.98685%20476.878%202.98685C476.934%203.00742%20476.931%203.00571%20476.866%202.97827C476.774%202.94055%20476.69%202.91827%20476.589%202.93198C476.424%202.95598%20476.326%203.05028%20476.211%203.15829L476.403%203.04857L476.371%203.06057L476.708%203.10343C476.762%203.12743%20476.64%203.052%20476.638%203.05028C476.591%203.01771%20476.558%202.99713%20476.504%202.97827C476.42%202.94741%20476.344%202.95427%20476.258%202.94398C476.352%202.95598%20476.31%202.95599%20476.232%202.9217C475.967%202.80511%20475.772%202.9337%20475.588%203.112L475.779%203.00228L475.748%203.01428H475.98C475.889%202.99542%20475.805%202.9577%20475.71%202.9577C475.591%202.9577%20475.542%203.00228%20475.434%203.03314L475.771%203.076C475.873%203.12572%20475.873%203.17544%20475.795%203.07257C475.753%203.01771%20475.708%202.9697%20475.649%202.9337C475.499%202.84454%20475.394%202.87883%20475.236%202.88398C475.199%202.88398%20475.065%202.85997%20474.994%202.85312C474.922%202.84626%20474.851%202.8514%20474.78%202.87369C474.757%202.88055%20474.604%202.96456%20474.658%202.94741H474.889C474.818%202.92341%20474.741%202.88569%20474.661%202.86683C474.504%202.82911%20474.4%202.84626%20474.248%202.87883C474.086%202.91484%20474.261%202.88912%20474.224%202.87883C474.191%202.86855%20474.153%202.85483%20474.116%202.84626C473.977%202.81368%20473.856%202.86169%20473.724%202.88226H473.956C473.849%202.86169%20473.743%202.83254%20473.633%202.83768C473.492%202.85312%20473.478%202.85654%20473.592%202.84969C473.534%202.82568%20473.526%202.82397%20473.566%202.84283L473.722%202.99713C473.646%202.89598%20473.588%202.79139%20473.472%202.72453C473.343%202.65081%20473.174%202.64223%20473.029%202.65081L472.914%202.66624C473.059%202.6971%20473.085%202.6971%20472.993%202.66281C472.928%202.63023%20472.848%202.60794%20472.775%202.60794C472.653%202.60794%20472.625%202.6388%20472.515%202.67309C472.395%202.7091%20472.651%202.66624%20472.453%202.64566L472.672%202.70395C472.771%202.80682%20472.773%202.8034%20472.681%202.69195C472.649%202.65252%20472.611%202.61995%20472.566%202.59594C472.491%202.54965%20472.407%202.52222%20472.317%202.52222C472.235%202.52222%20472.141%202.54622%20472.069%202.58566C472.028%202.61137%20471.988%202.64052%20471.951%202.67309C471.888%202.72453%20471.911%202.71253%20472.022%202.64223L472.359%202.6851L472.331%202.66624L472.487%202.82054C472.42%202.7211%20472.366%202.62166%20472.259%202.55479C472.235%202.53936%20471.876%202.4022%20471.843%202.49307C471.852%202.4725%20472.087%202.53079%20471.869%202.4605C471.808%202.43992%20471.749%202.42792%20471.685%202.42792C471.676%202.42792%20471.503%202.44164%20471.505%202.45878L471.658%202.47936C471.543%202.43649%20471.519%202.42449%20471.582%202.44507L471.739%202.59937C471.601%202.41249%20471.507%202.30962%20471.265%202.26847C471.164%202.25133%20471.066%202.20675%20470.962%202.20332C470.909%202.20332%20470.857%202.21018%20470.805%202.22047C470.749%202.23418%20470.744%202.24104%20470.788%202.24276L471.007%202.30105C470.925%202.2599%20470.855%202.20675%20470.765%202.18104L470.713%202.17075C470.559%202.13989%20470.558%202.15189%20470.713%202.20675C470.714%202.16732%20470.495%202.07645%20470.474%202.07131C470.38%202.04559%20470.289%202.05931%20470.195%202.05073L470.415%202.10903C470.326%202.05588%20470.242%201.99073%20470.12%201.97015C470.061%201.95987%20470.023%201.96158%20469.964%201.96672C469.95%201.96672%20469.814%201.97015%20469.889%201.9753L470.108%202.03359C470.06%202.01302%20470.013%201.99416%20469.965%201.97358C469.997%201.98901%20470.002%201.98558%20469.979%201.96501C469.915%201.91529%20469.868%201.86728%20469.793%201.83471C469.76%201.81756%20469.725%201.80728%20469.689%201.80385C469.534%201.7747%20469.534%201.78327%20469.69%201.83299C469.697%201.79528%20469.464%201.69584%20469.455%201.69241C469.391%201.67012%20469.321%201.64954%20469.255%201.63583C469.116%201.61354%20469.102%201.61354%20469.21%201.63583L469.168%201.60325C469.107%201.54153%20468.988%201.52267%20468.903%201.51924C468.851%201.51067%20468.799%201.5141%20468.746%201.53124C468.691%201.54496%20468.685%201.54496%20468.729%201.53124L469.037%201.6564C468.92%201.56725%20468.828%201.45238%20468.701%201.3838C468.624%201.34265%20468.529%201.32208%20468.44%201.32208C468.384%201.32551%20468.33%201.33408%20468.276%201.34779C468.372%201.33579%20468.372%201.32036%20468.276%201.29979L468.468%201.40952L468.448%201.39066L468.56%201.57925C468.485%201.39751%20468.448%201.24492%20468.257%201.14206C468.154%201.08719%20468.034%201.03576%20467.916%201.03576C467.865%201.03576%20467.811%201.04262%20467.764%201.05633C467.74%201.06319%20467.715%201.07348%20467.693%201.08376C467.605%201.11805%20467.625%201.11462%20467.747%201.07519L467.966%201.13348C467.966%201.13348%20467.781%201.01347%20467.858%201.07176C467.79%201.02033%20467.74%200.96032%20467.659%200.92603C467.529%200.869452%20467.398%200.87631%20467.294%200.85745L467.485%200.967178C467.529%201.00318%20467.421%200.87631%20467.405%200.859165C467.33%200.783727%20467.243%200.746009%20467.146%200.710004C467.064%200.679143%20466.989%200.655141%20466.9%200.653426C466.855%200.648283%20466.81%200.653426%20466.764%200.667142C466.709%200.679144%20466.705%200.679144%20466.75%200.667142L466.97%200.725435C466.879%200.663713%20466.815%200.612278%20466.702%200.569416C466.653%200.550557%20466.599%200.538555%20466.553%200.512838C466.623%200.553986%20466.505%200.461403%20466.503%200.459689C466.278%200.283097%20466.055%200.355105%20465.832%200.481977L466.052%200.423685L466.019%200.428828L466.327%200.553986C466.412%200.619136%20466.231%200.411683%20466.237%200.418541C466.162%200.344818%20466.078%200.308814%20465.98%200.277953C465.892%200.250521%20465.805%200.231662%20465.711%200.236805C465.632%200.236805%20465.559%200.257379%20465.491%200.295098C465.441%200.324244%20465.432%200.327673%20465.461%200.30367L465.798%200.346533C465.885%200.391109%20465.644%200.236805%20465.695%200.269381C465.634%200.233376%20465.568%200.209373%20465.496%200.200801C465.425%200.192229%20465.35%200.195658%20465.282%200.214517L465.178%200.257379C465.127%200.286525%20465.12%200.28824%20465.153%200.267666L465.489%200.310528C465.251%200.202516%20465.052%200.144223%20464.815%200.164797L465.035%200.223089C465.129%200.320815%20465.131%200.315672%20465.038%200.205945C465.007%200.166511%20464.967%200.133936%20464.922%200.108219C464.808%200.0396391%20464.685%200.0207797%20464.556%200.049926C464.505%200.0584985%20464.456%200.0773578%20464.413%200.101361C464.364%200.127078%20464.357%200.132221%20464.394%200.116791C464.343%200.127078%20464.296%200.144223%20464.251%200.16994C464.202%200.195658%20464.197%200.200801%20464.235%200.183656L464.571%200.226518C464.674%200.274524%20464.672%200.324244%20464.594%200.223089C464.552%200.168226%20464.507%200.12022%20464.446%200.0842158C464.31%200.00363482%20464.18%200.0122073%20464.033%200.0362101C463.81%200.0722144%20463.647%200.130507%20463.467%200.271095L463.659%200.161368L463.62%200.175084H463.852C463.89%200.193943%20463.885%200.1888%20463.836%200.163082C463.791%200.137365%20463.744%200.12022%20463.692%200.111648C463.605%200.0927882%20463.507%200.0927882%20463.42%200.101361C463.399%200.101361%20463.114%200.181942%20463.173%200.178513C463.232%200.175084%20463.091%200.159653%20463.067%200.15451C462.948%200.130507%20462.838%200.140794%20462.73%200.197372C462.713%200.205945%20462.548%200.300241%20462.562%200.341389L462.621%200.286525C462.598%200.283097%20462.575%200.279668%20462.553%200.277953C462.508%200.260808%20462.403%200.269381%20462.339%200.269381C461.778%200.269381%20461.778%201.12834%20462.339%201.12663L462.325%201.10777Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M488.22%2019.3799C488.272%2019.5153%20488.234%2019.4039%20488.258%2019.5205C488.272%2019.5942%20488.268%2019.6679%20488.3%2019.7382C488.328%2019.7999%20488.368%2019.86%20488.415%2019.908L488.504%2019.9748C488.552%2020.0023%20488.558%2020.0091%20488.521%2019.992L488.394%2019.6885C488.401%2019.8325%20488.383%2019.9817%20488.427%2020.1257C488.45%2020.1977%20488.491%2020.268%20488.516%2020.34C488.54%2020.412%20488.535%2020.46%20488.556%2020.5457C488.592%2020.6915%20488.683%2020.8252%20488.777%2020.9418C488.77%2020.9332%20488.845%2021.0327%20488.871%2021.0567C488.911%2021.091%20488.955%2021.1218%20489%2021.1492C488.93%2021.0995%20488.923%2021.1132%20488.979%2021.1904L488.92%2020.9744V21.0018C488.939%2020.9298%20488.96%2020.8578%20488.979%2020.7858C488.897%2020.9709%20488.788%2021.1287%20488.882%2021.3396C488.976%2021.5504%20489.148%2021.583%20489.34%2021.6516L489.148%2021.5419L489.169%2021.5607L489.057%2021.3721C489.078%2021.4596%20489.071%2021.5779%20489.099%2021.691C489.134%2021.8333%20489.212%2021.9568%20489.296%2022.0665C489.322%2022.1008%20489.367%2022.1522%20489.394%2022.1951C489.32%2022.0699%20489.374%2022.2105%20489.383%2022.2431C489.411%2022.3271%20489.458%2022.4008%20489.524%2022.4608C489.54%2022.4745%20489.679%2022.574%20489.641%2022.5346L489.529%2022.346C489.61%2022.5946%20489.592%2022.8637%20489.829%2023.0575C489.855%2023.078%20489.881%2023.0986%20489.911%2023.1158C489.843%2023.0506%20489.827%2023.0403%20489.859%2023.0832C489.885%2023.1226%20489.88%2023.1106%20489.845%2023.0455C489.85%2023.0918%20489.857%2023.1398%20489.864%2023.1861C489.887%2023.2786%20489.925%2023.3489%20489.995%2023.4175C490.022%2023.4501%20490.057%2023.4775%20490.096%2023.4998C490.141%2023.529%20490.148%2023.5324%20490.113%2023.5101L489.986%2023.2066C490.029%2023.078%20490.036%2023.0523%20490.003%2023.1278C489.981%2023.1723%20489.961%2023.2169%20489.949%2023.2649C489.928%2023.3455%20489.93%2023.4398%20489.953%2023.5204C489.975%2023.601%20490.028%2023.673%20490.089%2023.733C490.123%2023.7707%20490.165%2023.7981%20490.212%2023.817C490.346%2023.8787%20490.352%2023.8753%20490.224%2023.8033L490.113%2023.6147C490.151%2023.7124%20490.231%2023.841%20490.245%2023.9387V23.7107C490.21%2023.9096%20490.19%2024.1067%20490.346%2024.2645C490.404%2024.3228%20490.484%2024.3691%20490.561%2024.3913C490.604%2024.4051%20490.799%2024.4411%20490.723%2024.4222L490.531%2024.3125L490.554%2024.3296L490.442%2024.141C490.468%2024.2439%20490.472%2024.3433%20490.548%2024.4479C490.581%2024.4942%20490.609%2024.5182%20490.653%2024.5542C490.658%2024.5577%20490.759%2024.6519%20490.71%2024.5988L490.599%2024.4102C490.642%2024.5234%20490.634%2024.6125%20490.667%2024.7274C490.691%2024.8114%20490.743%2024.8851%20490.808%2024.9451C490.822%2024.9588%20490.966%2025.0634%20490.918%2025.0171L490.806%2024.8285C490.831%2024.94%20490.825%2025.0291%20490.905%2025.1406C490.939%2025.1869%20490.966%2025.2109%20491.012%2025.2469C491.013%2025.2486%20491.121%2025.3446%20491.069%2025.2897L490.958%2025.1011C490.947%2025.0583%20490.942%2025.0651%20490.944%2025.12C490.947%2025.1714%20490.956%2025.2229%20490.968%2025.2726C490.998%2025.3669%20491.053%2025.432%20491.107%2025.5023C491.158%2025.5675%20491.207%2025.6275%20491.289%2025.6738C491.283%2025.6704%20491.531%2025.7921%20491.444%2025.7269L491.243%2025.4715L491.25%2025.504V25.276C491.21%2025.5058%20491.217%2025.6892%20491.323%2025.8847C491.444%2026.1075%20491.59%2026.2121%20491.829%2026.2893L491.637%2026.1796C491.583%2026.1367%20491.675%2026.2601%20491.689%2026.2824C491.71%2026.315%20491.761%2026.4316%20491.792%2026.447C491.809%2026.4899%20491.809%2026.4779%20491.788%2026.4093C491.788%2026.4659%20491.801%2026.5207%20491.82%2026.5739C491.849%2026.663%20491.9%2026.7351%20491.971%2026.7985C492.058%2026.8739%20492.085%2026.8928%20492.048%2026.8534C492.027%2026.8345%20492.02%2026.8105%20492.025%2026.7796C492.034%2026.7831%20492.031%2026.9442%20492.044%2026.9854C492.109%2027.1911%20492.28%2027.27%20492.469%2027.3437L492.278%2027.234C492.358%2027.2957%20492.386%2027.3968%20492.48%2027.4586C492.522%2027.486%20492.675%2027.5546%20492.644%2027.5323L492.443%2027.2768C492.412%2027.1774%20492.473%2027.4791%20492.456%2027.4106C492.473%2027.4791%20492.506%2027.5374%20492.546%2027.5957C492.576%2027.6386%20492.623%2027.6729%20492.649%2027.7175C492.564%2027.5769%20492.652%2027.7963%20492.668%2027.822C492.682%2027.846%20492.806%2027.9866%20492.779%2027.9506C492.731%2027.8838%20492.825%2028.0569%20492.84%2028.0809C492.886%2028.1512%20492.955%2028.2164%20493.03%2028.2575C493.051%2028.2695%20493.203%2028.3484%20493.15%2028.3107L492.994%2028.1564C493.065%2028.2987%20493.126%2028.4238%20493.3%2028.4993C493.332%2028.5147%20493.365%2028.5267%20493.398%2028.5335C493.311%2028.4804%20493.3%2028.4787%20493.368%2028.5267C493.403%2028.573%20493.46%2028.6176%20493.513%2028.6673L493.401%2028.4787C493.401%2028.4358%20493.405%2028.4427%20493.405%2028.501C493.403%2028.5541%20493.413%2028.6056%20493.436%2028.6518C493.492%2028.7581%20493.501%2028.7839%20493.462%2028.7324C493.469%2028.7839%20493.487%2028.8336%20493.514%2028.8799C493.558%2028.9587%20493.61%2029.0188%20493.689%2029.0685C493.73%2029.0976%20493.776%2029.1199%20493.826%2029.1336C493.894%2029.1593%20493.884%2029.1491%20493.791%2029.1045C493.842%2029.1062%20494.03%2029.2605%20494.082%2029.3119C494.162%2029.3874%20494.19%2029.4902%20494.296%2029.5554C494.338%2029.5811%20494.514%2029.6343%20494.457%2029.6068L494.3%2029.4525L494.316%2029.4817L494.256%2029.2656C494.267%2029.3942%20494.262%2029.5142%20494.33%2029.6308C494.37%2029.7011%20494.425%2029.7577%20494.493%2029.7988C494.523%2029.8194%20494.556%2029.8348%20494.591%2029.8468C494.678%2029.8863%20494.662%2029.8726%20494.54%2029.8057C494.528%2029.8263%20494.669%2029.9531%20494.687%2029.9651C494.741%2030.0063%20494.805%2030.0406%20494.871%2030.0577C495.11%2030.1177%20494.983%2030.0337%20494.944%2030.0612L495.049%2030.104C494.995%2030.0543%20494.984%2030.0457%20495.018%2030.0783C495.061%2030.1503%20495.138%2030.2412%20495.213%2030.2978C495.239%2030.3183%20495.376%2030.4109%20495.409%2030.3955C495.408%2030.3955%20495.176%2030.1983%20495.389%2030.4229C495.476%2030.5155%20495.62%2030.6029%20495.744%2030.6372C495.807%2030.6544%20495.869%2030.6578%20495.932%2030.6544L496.047%2030.6389C495.93%2030.6767%20495.881%2030.6681%20495.897%2030.6149L495.786%2030.4263C495.852%2030.6184%20495.941%2030.7812%20496.115%2030.8995C496.31%2031.0333%20496.573%2031.0213%20496.799%2030.9904H496.568L496.608%2030.9973L496.416%2030.8875L496.437%2030.9115L496.326%2030.723C496.371%2030.843%20496.404%2030.9578%20496.5%2031.0521C496.608%2031.1584%20496.754%2031.1619%20496.876%2031.2373C496.998%2031.3127%20497.106%2031.4036%20497.243%2031.4448C497.358%2031.479%20497.447%2031.4636%20497.562%2031.5013L497.371%2031.3916C497.315%2031.3436%20497.409%2031.4379%20497.416%2031.4465C497.452%2031.4893%20497.477%2031.5168%20497.524%2031.5493C497.585%2031.5922%20497.649%2031.6231%20497.722%2031.6402L497.837%2031.6556C497.782%2031.6453%20497.778%2031.6488%20497.827%2031.6694C498.012%2031.7722%20498.191%2031.8459%20498.395%2031.9094L498.203%2031.7997C498.184%2031.7619%20498.189%2031.7654%20498.217%2031.8099C498.241%2031.8545%20498.275%2031.8922%20498.316%2031.9214C498.396%2031.9934%20498.49%2032.0105%20498.581%2032.0585C498.616%2032.0774%20498.646%2032.1065%20498.682%2032.1254C498.774%2032.1751%20498.875%2032.1717%20498.95%2032.1837L498.759%2032.074C498.734%2032.0431%20498.738%2032.05%20498.767%2032.0963C498.79%2032.134%20498.818%2032.1683%20498.851%2032.1974C498.9%2032.2454%20498.945%2032.2797%20498.99%2032.3157C499.131%2032.4289%20499.285%2032.41%20499.419%2032.47C499.455%2032.4854%20499.487%2032.5197%20499.523%2032.5386C499.617%2032.5883%20499.696%2032.5866%20499.797%2032.6072C499.872%2032.6226%20500.001%2032.6672%20500.093%2032.698L499.901%2032.5883L499.92%2032.6089L499.809%2032.4203C499.865%2032.5695%20499.887%2032.7118%20500.028%2032.8146C500.117%2032.8798%20500.213%2032.9106%20500.326%2032.9072C500.382%2032.9089%20500.436%2032.8986%20500.485%2032.8746C500.622%2032.8266%20500.624%2032.8181%20500.492%2032.8506L500.183%2032.7255L500.129%2032.6329L500.173%2032.7358C500.199%2032.7838%20500.232%2032.8301%20500.271%2032.8695C500.385%2032.9809%20500.497%2032.9844%20500.645%2033.0152C500.784%2033.0444%20500.95%2033.089%20501.096%2033.1438L500.904%2033.0341C500.887%2032.9947%20500.894%2032.9964%20500.922%2033.0409C500.943%2033.0821%20500.971%2033.1147%20501.006%2033.1404C501.054%2033.1867%20501.103%2033.2175%20501.147%2033.257C501.267%2033.3667%20501.385%2033.4781%20501.575%2033.4901C501.58%2033.4901%20501.713%2033.4953%20501.68%2033.497C501.751%2033.5193%20501.747%2033.5159%20501.671%2033.485L501.76%2033.5519C501.904%2033.6462%20502.07%2033.6804%20502.214%2033.7062L502.023%2033.5964C501.955%2033.4679%20501.951%2033.4713%20502.014%2033.605L502.033%2033.6393C502.075%2033.7062%20502.145%2033.7747%20502.214%2033.8142C502.315%2033.8725%20502.376%2033.8605%20502.486%2033.8845C502.474%2033.881%20502.599%2033.9616%20502.514%2033.9033C502.632%2033.9856%20502.732%2034.0954%20502.878%2034.1365C502.944%2034.1554%20503.017%2034.1554%20503.085%2034.1451C503.12%2034.1451%20503.153%2034.1365%20503.184%2034.1228C503.322%2034.0714%20503.324%2034.0662%20503.188%2034.1056L502.88%2033.9805C502.82%2033.8725%20502.808%2033.8588%20502.846%2033.9411C502.859%2033.9702%20502.871%2033.9993%20502.887%2034.0285C502.92%2034.0851%20502.97%2034.1331%20503.022%2034.1708C503.083%2034.2154%20503.148%2034.2428%20503.223%2034.2582C503.548%2034.3285%20503.049%2034.1108%20503.313%2034.2891C503.399%2034.3457%20503.496%2034.4142%20503.595%2034.4417C503.677%2034.464%20503.778%2034.464%20503.86%2034.4434L503.902%2034.4297C504.04%2034.3765%20504.041%2034.3731%20503.904%2034.4142L503.684%2034.356C503.731%2034.4074%20503.756%2034.416%20503.754%2034.3817L503.642%2034.1931C503.71%2034.3525%20503.743%2034.5137%20503.911%2034.6097C504.005%2034.6646%20504.111%2034.6731%20504.217%2034.668C504.113%2034.6731%20504.409%2034.6714%20504.355%2034.6628L504.163%2034.5531L504.182%2034.5737L504.071%2034.3851C504.144%2034.5668%20504.181%2034.7469%20504.39%2034.8292C504.599%2034.9114%20504.766%2034.8137%20504.957%2034.7297L504.738%2034.788H504.766C504.693%2034.7691%20504.62%2034.7486%20504.546%2034.7297C504.585%2034.776%20504.611%2034.7829%20504.623%2034.752L504.512%2034.5634C504.59%2034.7554%20504.656%2034.9475%20504.884%2035.0092C504.991%2035.0383%20505.097%2035.028%20505.203%2035.0075C505.062%2035.0366%20505.119%2035.028%20505.17%2035.0555C505.222%2035.0846%20505.271%2035.1275%20505.325%2035.1532C505.262%2035.0743%20505.254%2035.0658%20505.295%2035.1258C505.321%2035.1703%20505.353%2035.2081%20505.395%2035.2389C505.492%2035.3264%20505.604%2035.3692%20505.736%2035.3658C505.792%2035.3675%20505.844%2035.3572%20505.894%2035.3349C506.032%2035.2852%20506.034%2035.2784%20505.9%2035.3126L505.68%2035.2543C505.727%2035.2766%20505.774%2035.2989%20505.821%2035.3212C505.87%2035.3692%20505.894%2035.3744%20505.896%2035.3366L505.785%2035.148C505.84%2035.2972%20505.865%2035.4378%20506.004%2035.5407C506.184%2035.6727%20506.373%2035.6727%20506.582%2035.695L506.274%2035.5698C506.386%2035.659%20506.476%2035.7858%20506.602%2035.8578C506.746%2035.9401%20506.898%2035.911%20507.025%2035.9539L506.833%2035.8441C506.811%2035.8116%20506.814%2035.8167%20506.844%2035.863C506.87%2035.9076%20506.903%2035.9453%20506.941%2035.9761C507.027%2036.055%20507.131%2036.0996%20507.249%2036.1013C507.406%2036.1047%20507.518%2036.0207%20507.652%2035.9607L507.432%2036.019H507.46C507.357%2035.9779%20507.255%2035.935%20507.152%2035.8939C507.122%2035.8664%20507.222%2036.0019%20507.256%2036.0344C507.337%2036.1064%20507.438%2036.151%20507.537%2036.1922C507.697%2036.259%20507.857%2036.3276%20508.023%2036.3876L507.831%2036.2779C507.765%2036.2248%20507.939%2036.3979%20507.915%2036.3739C507.978%2036.4356%20508.054%2036.4802%20508.138%2036.5094C508.247%2036.5488%20508.364%2036.5556%20508.453%2036.5676L508.261%2036.4579C508.234%2036.4356%20508.256%2036.4322%20508.277%2036.4648C508.317%2036.5231%20508.362%2036.5694%20508.42%2036.6088C508.528%2036.6825%20508.632%2036.6859%20508.732%2036.7031L508.54%2036.5934C508.47%2036.4665%20508.467%2036.4682%20508.53%2036.6019C508.551%2036.6465%20508.578%2036.6877%20508.615%2036.7237C508.674%2036.7854%20508.747%2036.8334%20508.831%2036.8557C508.909%2036.8763%20509.012%2036.8763%20509.09%2036.8557C509.137%2036.8368%20509.183%2036.818%20509.23%2036.7974C509.305%2036.7597%20509.279%2036.7614%20509.151%2036.7974L508.843%2036.6722L508.862%2036.6911L508.751%2036.5025C508.805%2036.6294%20508.822%2036.7511%20508.93%2036.8523C509.017%2036.9328%20509.12%2036.9723%20509.239%2036.9774C509.291%2036.986%20509.343%2036.9826%20509.395%2036.9671C509.451%2036.9534%20509.458%2036.9534%20509.414%2036.9671L509.106%2036.842C509.042%2036.7802%20509.232%2037.01%20509.181%2036.9568C509.23%2037.0083%20509.286%2037.0477%20509.35%2037.0734C509.414%2037.0991%20509.488%2037.1146%20509.559%2037.1146L509.674%2037.0991C509.73%2037.0854%20509.737%2037.0837%20509.695%2037.0991L509.475%2037.0408C509.655%2037.1249%20509.832%2037.1797%20510.022%2037.2363L509.831%2037.1266L509.85%2037.1471L509.738%2036.9586C509.803%2037.1351%20509.846%2037.2689%20510.001%2037.3803C510.191%2037.5175%20510.357%2037.5432%20510.602%2037.5055H510.371C510.325%2037.4986%20510.421%2037.5346%20510.442%2037.5449C510.503%2037.5758%20510.573%2037.6066%20510.637%2037.6272C510.702%2037.6478%20510.773%2037.6666%20510.846%2037.6666C510.869%2037.6666%20511.05%2037.6461%20510.985%2037.6426L510.677%2037.5175L510.696%2037.538L510.585%2037.3495C510.628%2037.4866%20510.641%2037.6101%20510.756%2037.7181C510.778%2037.7386%20511.074%2037.9221%20511.116%2037.8535C510.97%2037.7849%20510.961%2037.7935%20511.086%2037.8758C511.114%2037.8998%20511.146%2037.9187%20511.181%2037.929C511.215%2037.9461%20511.407%2038.0387%20511.275%2037.9512C511.37%2038.0147%20511.423%2038.0644%20511.536%2038.0987C511.609%2038.121%20511.705%2038.1398%20511.781%2038.1433C511.834%2038.1484%20511.888%2038.1433%20511.938%2038.1313C511.996%2038.1175%20512.004%2038.1141%20511.963%2038.121L511.654%2037.9958C511.595%2037.8844%20511.585%2037.8707%20511.623%2037.9547C511.633%2037.9838%20511.647%2038.013%20511.663%2038.0404C511.703%2038.1055%20511.776%2038.1776%20511.842%2038.217C511.919%2038.2616%20512.017%2038.2804%20512.104%2038.2787L512.219%2038.2633C512.276%2038.2496%20512.283%2038.2478%20512.241%2038.2616L511.933%2038.1364L511.956%2038.1604L511.844%2037.9718C511.926%2038.1621%20511.992%2038.3524%20512.219%2038.4142C512.316%2038.4399%20512.417%2038.433%20512.513%2038.4039C512.562%2038.3867%20512.609%2038.3661%20512.656%2038.3404C512.471%2038.3541%20512.441%2038.3764%20512.567%2038.409L512.375%2038.2993C512.309%2038.2376%20512.501%2038.4604%20512.452%2038.409C512.501%2038.4587%20512.556%2038.4999%20512.623%2038.5256C512.76%2038.5805%20512.896%2038.5599%20513.039%2038.5376H512.807C512.713%2038.4707%20512.72%2038.4776%20512.83%2038.5599L512.875%2038.5873C512.966%2038.637%20512.933%2038.6165%20513.004%2038.6679C513.107%2038.7433%20513.21%2038.8033%20513.304%2038.8839C513.419%2038.9816%20513.556%2038.9971%20513.689%2039.0537C513.769%2039.0879%20513.837%2039.1137%20513.929%2039.1154C513.974%2039.1222%20514.019%2039.1188%20514.065%2039.1034C514.12%2039.0897%20514.127%2039.0914%20514.084%2039.1085L513.776%2038.9834L513.798%2039.0074L513.687%2038.8188C513.788%2039.0811%20513.878%2039.2182%20514.168%2039.2903C514.253%2039.3108%20514.361%2039.3726%20514.478%2039.3743C514.526%2039.3743%20514.579%2039.3743%20514.627%2039.3623C514.666%2039.352%20514.749%2039.3485%20514.667%2039.3417L514.359%2039.2165C514.298%2039.1119%20514.286%2039.0999%20514.324%2039.1805C514.336%2039.2097%20514.35%2039.2405%20514.363%2039.2697C514.396%2039.3263%20514.446%2039.3743%20514.498%2039.4137C514.627%2039.508%20514.788%2039.5594%20514.937%2039.6143C515.157%2039.6966%20515.415%2039.5234%20515.474%2039.3143C515.542%2039.0725%20515.39%2038.8702%20515.169%2038.7862L515.094%2038.7588C515.037%2038.7228%20515.037%2038.7365%20515.091%2038.7999C515.134%2038.8771%20515.139%2038.8805%20515.106%2038.8085C515.096%2038.7845%20515.087%2038.7622%20515.077%2038.7382C515%2038.6045%20514.882%2038.5187%20514.727%2038.4913C514.688%2038.4844%20514.427%2038.4913%20514.437%2038.5239C514.431%2038.4982%20514.596%2038.5325%20514.45%2038.4759C514.413%2038.4622%20514.298%2038.445%20514.293%2038.4433L514.485%2038.553L514.462%2038.529L514.573%2038.7176C514.519%2038.5753%20514.481%2038.4416%20514.35%2038.3439C514.265%2038.2804%20514.174%2038.2513%20514.066%2038.2496C514.021%2038.2427%20513.976%2038.2461%20513.931%2038.2616C513.875%2038.2753%20513.868%2038.2736%20513.911%2038.2564L514.131%2038.3147C513.997%2038.253%20513.87%2038.2084%20513.73%2038.169L513.922%2038.2787C513.746%2038.1398%20513.577%2038.0027%20513.385%2037.8844C513.305%2037.8364%20513.23%2037.7764%20513.135%2037.7386C512.995%2037.6838%20512.863%2037.7026%20512.718%2037.7266H512.95L512.91%2037.7215L513.102%2037.8312C513.133%2037.8587%20513.03%2037.7266%20512.994%2037.6941C512.91%2037.6186%20512.8%2037.5741%20512.692%2037.5432C512.593%2037.514%20512.499%2037.502%20512.396%2037.5278C512.349%2037.5449%20512.302%2037.5621%20512.257%2037.5843C512.182%2037.6186%20512.208%2037.6169%20512.339%2037.5758L512.647%2037.7009L512.624%2037.6769L512.736%2037.8655C512.677%2037.7284%20512.638%2037.5946%20512.509%2037.5003C512.424%2037.4369%20512.334%2037.4077%20512.226%2037.406C512.18%2037.4009%20512.135%2037.406%20512.09%2037.4197C512.032%2037.4335%20512.025%2037.4352%20512.069%2037.4215L512.377%2037.5466C512.445%2037.6735%20512.448%2037.6701%20512.388%2037.538C512.375%2037.5089%20512.358%2037.4832%20512.335%2037.4592C512.281%2037.3906%20512.219%2037.3392%20512.137%2037.3049C512.036%2037.2637%20511.917%2037.2534%20511.811%2037.2809L511.762%2037.2946C511.87%2037.2963%20511.882%2037.2929%20511.799%2037.2826C511.872%2037.3237%20511.877%2037.322%20511.813%2037.2774C511.785%2037.2552%20511.755%2037.2346%20511.726%2037.214C511.656%2037.1746%20511.59%2037.1694%20511.52%2037.1437C511.679%2037.2054%20511.496%2037.0957%20511.45%2037.07C511.362%2037.022%20511.257%2037.0203%20511.186%2037.0048L511.377%2037.1146L511.358%2037.094L511.47%2037.2826C511.424%2037.1437%20511.414%2037.0237%20511.299%2036.914C511.214%2036.8334%20511.107%2036.794%20510.991%2036.7888C510.938%2036.782%20510.886%2036.7871%20510.834%2036.8008C510.776%2036.8145%20510.768%2036.818%20510.81%2036.8094L511.029%2036.8677C510.918%2036.8197%20510.813%2036.7494%20510.7%2036.7065C510.56%2036.6534%20510.428%2036.6705%20510.284%2036.6945H510.515C510.595%2036.7511%20510.602%2036.7562%20510.536%2036.7065C510.484%2036.6671%20510.477%2036.6619%20510.517%2036.6928L510.628%2036.8814C510.59%2036.7768%20510.58%2036.6808%20510.506%2036.5865C510.416%2036.4682%20510.297%2036.4271%20510.158%2036.3876C510.076%2036.3636%20510%2036.3362%20509.923%2036.3019C509.839%2036.2659%20509.756%2036.2402%20509.662%2036.2402L509.547%2036.2556C509.489%2036.2693%20509.482%2036.271%20509.526%2036.2556L509.834%2036.3808C509.899%2036.4425%20509.709%2036.2127%20509.759%2036.2659C509.711%2036.2145%20509.655%2036.175%20509.59%2036.1493C509.526%2036.1236%20509.453%2036.1082%20509.381%2036.1082L509.266%2036.1236C509.211%2036.1373%20509.204%2036.1373%20509.247%2036.1236L509.556%2036.2488L509.536%2036.2299L509.648%2036.4185C509.58%2036.259%20509.547%2036.0979%20509.381%2036.0019C509.273%2035.9401%20509.137%2035.9281%20509.017%2035.9573C508.97%2035.9761%20508.925%2035.995%20508.878%2036.0156C508.803%2036.0533%20508.829%2036.0516%20508.956%2036.0156L509.265%2036.1407C509.338%2036.2076%20509.362%2036.2796%20509.265%2036.115C509.239%2036.0687%20509.202%2036.0259%20509.164%2035.9881C509.056%2035.8853%20508.92%2035.8801%20508.808%2035.8613L509%2035.971C509.064%2036.0207%20508.899%2035.8613%20508.916%2035.8767C508.855%2035.8184%20508.773%2035.7653%20508.693%2035.7413C508.575%2035.707%20508.5%2035.7241%20508.378%2035.683L508.57%2035.7927C508.589%2035.8304%20508.584%2035.8287%20508.554%2035.7824C508.53%2035.7378%20508.497%2035.7001%20508.455%2035.671C508.376%2035.6007%20508.284%2035.5767%20508.19%2035.5338C508.119%2035.5012%20508.054%2035.4635%20507.979%2035.4361C507.964%2035.4309%20507.814%2035.3949%20507.882%2035.4207C507.906%2035.4584%20507.904%2035.4532%20507.877%2035.4035C507.85%2035.3606%20507.817%2035.3212%20507.779%2035.2886C507.694%2035.2098%20507.589%2035.1669%20507.471%2035.1635C507.309%2035.1601%20507.206%2035.2423%20507.068%2035.3041L507.288%2035.2458H507.26C507.363%2035.2869%20507.465%2035.3298%20507.568%2035.3709C507.614%2035.4121%20507.504%2035.2801%20507.49%2035.2646C507.418%2035.1909%20507.338%2035.1532%20507.243%2035.1189C507.103%2035.0692%20506.974%2035.076%20506.833%2035.0589L507.142%2035.1841C507.044%2035.1035%20506.964%2035.0006%20506.858%2034.9286C506.767%2034.8669%20506.68%2034.836%20506.567%2034.8343C506.476%2034.8343%20506.48%2034.824%20506.394%2034.7897L506.586%2034.8994L506.567%2034.8789L506.678%2035.0675C506.595%2034.8463%20506.542%2034.7006%20506.307%2034.596C506.18%2034.5394%20506.055%2034.4571%20505.91%2034.4554C505.861%2034.4554%20505.807%2034.4571%20505.76%2034.4708C505.729%2034.4828%20505.698%2034.4948%20505.666%2034.5085C505.583%2034.5394%20505.598%2034.5394%20505.713%2034.5085L506.022%2034.6337C506.072%2034.6749%20505.982%2034.5857%20505.973%2034.5771C505.928%2034.524%20505.879%2034.4811%20505.82%2034.4417C505.75%2034.3937%20505.672%2034.3457%20505.598%2034.3028C505.515%2034.2548%20505.421%2034.2154%20505.325%2034.1914C505.267%2034.1759%20505.205%2034.1605%20505.144%2034.1622L505.029%2034.1777C504.973%2034.1914%20504.966%2034.1897%20505.01%2034.1725L505.318%2034.2977L505.295%2034.2737L505.407%2034.4623C505.313%2034.2291%20505.236%2034.0988%20504.996%2033.9942C504.755%2033.8896%20504.599%2033.9753%20504.376%2034.0731L504.595%2034.0148H504.567C504.67%2034.0559%20504.773%2034.0988%20504.876%2034.1399L504.856%2034.1194L504.968%2034.308C504.903%2034.1451%20504.87%2033.9839%20504.701%2033.8862C504.611%2033.8348%20504.505%2033.8382%20504.43%2033.833C504.386%2033.8296%20504.184%2033.821%20504.257%2033.833L504.449%2033.9428L504.43%2033.9239L504.541%2034.1125C504.463%2033.929%20504.424%2033.7885%20504.238%2033.677C504.135%2033.6153%20504.02%2033.5639%20503.898%2033.5621C503.848%2033.5621%20503.794%2033.569%20503.745%2033.5827C503.721%2033.5896%20503.696%2033.5999%20503.672%2033.6119C503.587%2033.6444%20503.604%2033.6427%20503.721%2033.605L503.94%2033.6633C503.853%2033.6136%20503.797%2033.569%20503.719%2033.521C503.62%2033.4593%20503.496%2033.4438%20503.409%2033.425L503.601%2033.5347C503.67%2033.6599%20503.674%2033.6547%20503.611%2033.5227L503.594%2033.4867C503.538%2033.3976%20503.458%2033.329%20503.362%2033.2895C503.277%2033.2535%20503.193%2033.2467%20503.103%2033.2587C503.068%2033.2587%20503.035%2033.2673%20503.003%2033.281C502.866%2033.3324%20502.864%2033.3376%20503%2033.2981L503.219%2033.3564C503.139%2033.305%20503.059%2033.221%20502.963%2033.1661C502.834%2033.0924%20502.672%2033.0615%20502.556%2033.0341L502.747%2033.1438C502.806%2033.2553%20502.817%2033.2707%20502.779%2033.1867C502.768%2033.1575%20502.754%2033.1284%20502.739%2033.101C502.704%2033.0444%20502.655%2032.9981%20502.603%2032.9586C502.54%2032.9141%20502.477%2032.8884%20502.401%2032.8729C502.186%2032.8283%20502.385%2032.9278%20502.251%2032.8438C502.159%2032.7855%20502.087%2032.7289%20501.97%2032.686C501.84%2032.6398%20501.716%2032.6483%20501.584%2032.6329L501.892%2032.7581C501.789%2032.6758%20501.706%2032.578%20501.601%2032.5095L501.655%2032.5729C501.634%2032.5472%20501.615%2032.5197%20501.594%2032.494C501.535%2032.4254%20501.472%2032.3774%20501.389%2032.338C501.171%2032.2351%20500.925%2032.1991%20500.716%2032.1648L500.908%2032.2746C500.976%2032.4014%20500.979%2032.398%20500.918%2032.2643L500.901%2032.2283C500.845%2032.1391%20500.765%2032.0705%20500.669%2032.0311C500.584%2031.9951%20500.499%2031.9882%20500.41%2032.002C500.375%2032.002%20500.34%2032.0105%20500.309%2032.026C500.173%2032.0757%20500.169%2032.0825%20500.302%2032.05L500.61%2032.1751L500.591%2032.1546L500.702%2032.3431C500.614%2032.1048%20500.554%2031.9454%20500.284%2031.8545C500.203%2031.8271%20500.116%2031.7962%20500.032%2031.7774C499.995%2031.7688%20499.959%2031.7619%20499.92%2031.7585C499.84%2031.7448%20499.844%2031.7482%20499.927%2031.7705C499.88%2031.7414%20499.839%2031.7139%20499.786%2031.6916C499.724%2031.6642%20499.652%2031.6351%20499.586%2031.6162L499.534%2031.6059C499.4%2031.5785%20499.381%2031.5819%20499.476%2031.6128C499.549%2031.6471%20499.555%2031.6436%20499.49%2031.6025C499.426%2031.5511%20499.431%2031.5579%20499.508%2031.6231C499.475%2031.5751%20499.445%2031.5253%20499.401%2031.4825C499.344%2031.4259%20499.273%2031.3813%20499.194%2031.359C499.158%2031.3487%20498.954%2031.2973%20499.057%2031.3487C499.144%2031.3916%20499.018%2031.3145%20499.001%2031.3059C498.922%2031.2647%20498.834%2031.239%20498.752%2031.2082L498.943%2031.3179C498.997%2031.3607%20498.905%2031.2767%20498.895%2031.2647C498.858%2031.2219%20498.832%2031.1944%20498.785%2031.1619C498.675%2031.0864%20498.565%2031.0813%20498.449%2031.0298C498.377%2030.9973%20498.315%2030.9493%20498.243%2030.915C498.137%2030.8618%20497.992%2030.8258%20497.914%2030.8035L498.106%2030.9133C498.177%2030.9733%20497.992%2030.7795%20498.025%2030.8155C497.977%2030.7658%20497.917%2030.7298%20497.855%2030.7007C497.733%2030.6441%20497.607%2030.6458%20497.48%2030.6132C497.567%2030.6355%20497.468%2030.6012%20497.43%2030.5755C497.393%2030.5515%20497.36%2030.5241%20497.324%2030.5018C497.2%2030.4263%20497.066%2030.3886%20496.93%2030.3406L497.122%2030.4504L497.101%2030.4263L497.212%2030.6149C497.16%2030.4761%20497.12%2030.3475%20496.994%2030.2515C496.836%2030.1315%20496.663%2030.1555%20496.477%2030.1812H496.709C496.65%2030.1709%20496.54%2030.1623%20496.5%2030.1537L496.691%2030.2635C496.644%2030.2223%20496.596%2030.176%20496.555%2030.128L496.667%2030.3166C496.587%2030.092%20496.498%2029.9531%20496.272%2029.8503C496.204%2029.8194%20495.928%2029.7234%20495.864%2029.8057C495.925%2029.7303%20496.219%2029.9943%20495.953%2029.7303C495.916%2029.6925%20495.873%2029.6634%20495.827%2029.6394C495.801%2029.6291%20495.777%2029.6188%20495.751%2029.6068C495.664%2029.5657%20495.679%2029.5828%20495.796%2029.6548C495.812%2029.6308%20495.622%2029.4594%20495.599%2029.4388C495.512%2029.3634%20495.427%2029.3342%20495.338%2029.3016C495.291%2029.2845%20495.246%2029.2571%20495.197%2029.2434C495.152%2029.2365%20495.105%2029.2313%20495.059%2029.2262C495.026%2029.2245%20495.03%2029.2211%20495.07%2029.2176L495.261%2029.3274C495.159%2029.2073%20495.066%2029.1353%20494.936%2029.0599L495.092%2029.2142L495.077%2029.1851L495.136%2029.4011C495.126%2029.2674%20495.127%2029.1405%20495.054%2029.0205C495.009%2028.945%20494.939%2028.8902%20494.863%2028.849C494.845%2028.8387%20494.667%2028.7804%20494.739%2028.8147L494.896%2028.969C494.763%2028.7976%20494.648%2028.669%20494.469%2028.5404C494.429%2028.5113%20494.373%2028.4667%20494.326%2028.4324C494.279%2028.3981%20494.249%2028.3792%20494.195%2028.357C494.189%2028.3535%20494.065%2028.2884%20494.129%2028.3295L494.286%2028.4838C494.324%2028.5558%20494.274%2028.4118%20494.272%2028.4101C494.218%2028.2747%20494.255%2028.4873%20494.272%2028.429C494.31%2028.3004%20494.176%2028.1169%20494.101%2028.0363C494.044%2027.9729%20493.95%2027.8923%20493.903%2027.8529C493.865%2027.822%20493.824%2027.7877%20493.781%2027.7637C493.84%2027.7963%20493.575%2027.666%20493.654%2027.7157L493.811%2027.87C493.762%2027.7775%20493.732%2027.6866%20493.633%2027.6043C493.589%2027.5666%20493.556%2027.5494%20493.504%2027.5254C493.49%2027.5186%20493.384%2027.4551%20493.436%2027.4929L493.593%2027.6472C493.581%2027.6249%20493.548%2027.5443%20493.523%2027.5049C493.532%2027.5186%20493.38%2027.2854%20493.431%2027.3866C493.363%2027.2511%20493.293%2027.1465%20493.196%2027.0317L493.307%2027.2203C493.34%2027.3197%20493.279%2027.0197%20493.295%2027.0865C493.278%2027.0197%20493.248%2026.9562%20493.204%2026.9014C493.161%2026.8465%20493.109%2026.8019%20493.048%2026.7676C493.027%2026.7556%20492.874%2026.6853%20492.919%2026.7162L493.076%2026.8705C492.95%2026.6682%20492.84%2026.5705%20492.614%2026.483L492.806%2026.5927L492.774%2026.567L492.886%2026.7556C492.907%2026.8482%20492.875%2026.5499%20492.889%2026.6116C492.875%2026.5482%20492.847%2026.4916%20492.813%2026.4367C492.739%2026.3201%20492.645%2026.243%20492.55%2026.1538L492.661%2026.3424C492.6%2026.1436%20492.522%2025.9807%20492.408%2025.7904C492.287%2025.5812%20492.175%2025.4989%20491.942%2025.4235L492.133%2025.5332C492.133%2025.5332%20492.081%2025.4492%20492.09%2025.4732C492.093%2025.4835%20492.048%2025.3086%20492.065%2025.3943V25.6223C492.095%2025.4543%20492.133%2025.2932%20492.041%2025.1354C491.949%2024.9777%20491.79%2024.9331%20491.626%2024.8868L491.818%2024.9966C491.839%2025.036%20491.83%2025.0309%20491.795%2024.9777C491.734%2024.8937%20491.743%2024.9246%20491.82%2025.0686C491.848%2025.036%20491.809%2024.9057%20491.799%2024.868C491.775%2024.784%20491.722%2024.7085%20491.66%2024.6502C491.644%2024.6365%20491.51%2024.5234%20491.559%2024.5748L491.67%2024.7634C491.646%2024.6519%20491.653%2024.5611%20491.571%2024.4514C491.538%2024.4068%20491.508%2024.3793%20491.463%2024.3468C491.468%2024.3502%20491.343%2024.2542%20491.397%2024.309L491.508%2024.4976C491.489%2024.4033%20491.478%2024.285%20491.44%2024.1805C491.409%2024.0965%20491.367%2024.0244%20491.301%2023.9627C491.285%2023.9473%20491.154%2023.8341%20491.2%2023.8856L491.311%2024.0742C491.28%2023.9473%20491.266%2023.8136%20491.149%2023.7056C491.085%2023.6455%20491.006%2023.6061%20490.919%2023.5855C490.898%2023.5804%20490.707%2023.5427%20490.794%2023.565L490.986%2023.6747L490.963%2023.6575L491.074%2023.8461L491.067%2023.805V24.033C491.107%2023.7998%20491.073%2023.6661%20490.979%2023.4587C490.933%2023.3592%20490.911%2023.2649%20490.829%2023.1843C490.794%2023.1501%20490.752%2023.1209%20490.71%2023.0986C490.688%2023.0883%20490.663%2023.078%20490.641%2023.0695C490.557%2023.0318%20490.569%2023.0438%20490.681%2023.1055L490.808%2023.4089C490.764%2023.5375%20490.757%2023.5632%20490.79%2023.4878L490.834%2023.3849C490.858%2023.3061%20490.862%2023.2324%20490.85%2023.1518C490.832%2023.0472%20490.792%2022.9666%20490.716%2022.8912C490.686%2022.8586%20490.653%2022.8312%20490.615%2022.8089C490.568%2022.7797%20490.562%2022.7763%20490.597%2022.7986L490.709%2022.9872C490.691%2022.874%20490.676%2022.7506%20490.597%2022.6306C490.561%2022.574%20490.526%2022.5157%20490.477%2022.4694C490.46%2022.4523%20490.336%2022.3408%20490.378%2022.3888L490.489%2022.5774C490.437%2022.4454%20490.435%2022.334%20490.393%2022.1951C490.364%2022.0956%20490.334%2022.0099%20490.259%2021.9311C490.226%2021.895%20490.087%2021.8008%20490.113%2021.8282L490.224%2022.0168C490.179%2021.8642%20490.141%2021.7562%20490.047%2021.6327C490.035%2021.6156%20489.925%2021.4219%20489.967%2021.5384C489.935%2021.4493%20489.953%2021.4716%20489.935%2021.355C489.918%2021.2384%20489.897%2021.0721%20489.785%2020.9572C489.674%2020.8424%20489.554%2020.8321%20489.418%2020.7823L489.61%2020.8921L489.589%2020.8732L489.716%2021.1767V21.1492C489.695%2021.2213%20489.676%2021.2933%20489.657%2021.3653C489.693%2021.2813%20489.751%2021.2075%20489.775%2021.1184C489.817%2020.9675%20489.768%2020.8235%20489.697%2020.6915C489.65%2020.6023%20489.568%2020.4549%20489.46%2020.424C489.418%2020.3966%20489.43%2020.4103%20489.5%2020.4652L489.432%2020.3777C489.449%2020.4034%20489.397%2020.3143%20489.395%2020.3126C489.376%2020.28%20489.376%2020.2834%20489.395%2020.3211C489.423%2020.388%20489.421%2020.3606%20489.395%2020.2389C489.387%2020.1943%20489.374%2020.1583%20489.357%2020.1154C489.31%2019.9885%20489.266%2019.9165%20489.254%2019.7965C489.266%2019.9251%20489.266%2019.7914%20489.266%2019.7194C489.266%2019.6354%20489.249%2019.5479%20489.206%2019.4759C489.181%2019.4365%20489.145%2019.3902%20489.111%2019.3576C489.138%2019.385%20488.96%2019.217%20489.007%2019.2736L489.134%2019.5771C489.12%2019.4245%20489.117%2019.3045%20489.061%2019.1553C488.977%2018.9393%20488.767%2018.7901%20488.525%2018.8553C488.314%2018.9118%20488.138%2019.1656%20488.22%2019.3833V19.3799Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M444.152%2018.8731C444.204%2018.8731%20444.256%2018.8662%20444.308%2018.8559C444.403%2018.8302%20444.366%2018.8199%20444.199%2018.8216C444.199%2018.8216%20444.345%2018.8953%20444.364%2018.9056C444.547%2019.0085%20444.74%2018.9622%20444.929%2018.9794L444.709%2018.9211C444.855%2018.9862%20444.991%2019.0702%20445.136%2019.1405C445.395%2019.264%20445.597%2019.2674%20445.857%2019.1439L445.637%2019.2022L445.679%2019.1971L445.46%2019.1388C445.427%2019.1148%20445.43%2019.1217%20445.47%2019.1577C445.507%2019.192%20445.549%2019.2211%20445.594%2019.2451C445.711%2019.3068%20445.841%2019.3068%20445.97%2019.3223L445.751%2019.264C445.881%2019.3377%20445.967%2019.4148%20446.134%2019.4148C446.252%2019.4148%20446.327%2019.3874%20446.439%2019.3771L446.219%2019.3188C446.134%2019.2674%20446.383%2019.4491%20446.317%2019.408C446.357%2019.4337%20446.404%2019.4646%20446.444%2019.4868C446.587%2019.5657%20446.716%2019.5623%20446.871%2019.5743L446.651%2019.516C446.773%2019.576%20446.865%2019.6514%20447.012%2019.6549C447.132%2019.6566%20447.212%2019.6377%20447.336%2019.648L447.116%2019.5897C447.041%2019.5417%20447.264%2019.72%20447.212%2019.6874C447.29%2019.7354%20447.372%2019.7663%20447.466%2019.768C447.611%2019.7697%20447.715%2019.7029%20447.834%2019.6394L447.614%2019.6977L447.647%2019.6943L447.428%2019.636C447.325%2019.5349%20447.32%2019.54%20447.416%2019.6514C447.445%2019.6926%20447.482%2019.7252%20447.529%2019.7492C447.606%2019.7972%20447.686%2019.8229%20447.776%2019.8246C447.83%2019.8246%20447.905%2019.8075%20447.943%2019.8006C447.987%2019.7937%20448.186%2019.7663%20448.112%2019.7697L447.893%2019.7114L447.921%2019.7286L447.764%2019.5743C447.902%2019.7509%20448.037%2019.8812%20448.243%2019.9429C448.468%2020.0098%20448.682%2019.9549%20448.896%2019.8623L448.677%2019.9206L448.718%2019.9172L448.499%2019.8589C448.438%2019.8246%20448.663%2020.0012%20448.61%2019.9549C448.734%2020.0612%20448.823%2020.1041%20448.983%2020.1418C449.076%2020.1641%20449.183%2020.2189%20449.305%2020.2189C449.37%2020.2189%20449.427%2020.1898%20449.487%2020.1846C449.387%2020.1949%20449.608%2020.1966%20449.614%2020.1966L449.394%2020.1384L449.429%2020.1606L449.272%2020.0063C449.37%2020.1315%20449.466%2020.2601%20449.628%2020.3029C449.79%2020.3458%20449.948%2020.2807%20450.096%2020.2121L449.877%2020.2704C449.76%2020.2361%20449.767%2020.2429%20449.899%2020.2927C449.932%2020.3098%20449.969%2020.3184%20450.006%2020.3184C450.08%2020.3304%20450.169%2020.3115%20450.229%2020.3098C450.788%2020.2978%20450.789%2019.4406%20450.229%2019.4526C450.19%2019.4526%20450.154%2019.4543%20450.117%2019.4611C450.016%2019.4697%20450.04%2019.4766%20450.187%2019.4834C450.183%2019.4543%20450.002%2019.4166%20449.976%2019.4148C449.826%2019.396%20449.699%2019.4508%20449.565%2019.5143L449.784%2019.456L449.743%2019.4611L449.962%2019.5194L449.927%2019.4971L450.084%2019.6514C449.925%2019.4491%20449.804%2019.3514%20449.535%2019.3308C449.499%2019.3274%20449.248%2019.3154%20449.255%2019.3583C449.441%2019.4011%20449.457%2019.3943%20449.304%2019.3411C449.276%2019.3291%20449.246%2019.3205%20449.217%2019.3171C449.161%2019.3%20449.164%2019.312%20449.227%2019.3497C449.194%2019.3085%20449.154%2019.2742%20449.107%2019.2485C449.065%2019.2228%20449.06%2019.2211%20449.093%2019.24C449.058%2019.2005%20449.02%2019.1662%20448.973%2019.1388C448.764%2019.0085%20448.574%2019.0719%20448.367%2019.1611L448.586%2019.1028C448.546%2019.1062%20448.386%2019.0994%20448.375%2019.1199L448.506%2019.1234C448.391%2019.0839%20448.365%2019.0702%20448.429%2019.0857L448.586%2019.24C448.469%2019.0891%20448.374%2018.9502%20448.168%2018.9193C448.078%2018.9056%20447.999%2018.9279%20447.91%2018.9434C448.037%2018.9228%20447.687%2018.9725%20447.774%2018.9674L447.994%2019.0256C448.097%2019.1268%20448.102%2019.1217%20448.006%2019.0102L447.982%2018.9794C447.905%2018.9073%20447.809%2018.8576%20447.703%2018.8439C447.536%2018.8233%20447.417%2018.8902%20447.278%2018.9656L447.498%2018.9073L447.464%2018.9108L447.684%2018.9691C447.761%2019.0188%20447.534%2018.8371%20447.588%2018.8713C447.525%2018.8319%20447.463%2018.8113%20447.391%2018.7976C447.255%2018.7736%20447.132%2018.7908%20447.01%2018.7976L447.229%2018.8559C447.146%2018.8148%20447.078%2018.7582%20446.985%2018.7325C446.893%2018.7068%20446.803%2018.7188%20446.71%2018.7119L446.93%2018.7702C446.789%2018.6982%20446.776%2018.6245%20446.606%2018.5559C446.435%2018.4873%20446.256%2018.5559%20446.106%2018.5559L446.325%2018.6142C446.259%2018.5765%20446.21%2018.5302%20446.136%2018.501C446.033%2018.4616%20445.921%2018.4582%20445.812%2018.4462L446.031%2018.5044C446.12%2018.5542%20445.867%2018.3776%20445.932%2018.4187C445.871%2018.381%20445.806%2018.357%20445.735%2018.3484C445.583%2018.3296%20445.458%2018.3844%20445.324%2018.4479L445.543%2018.3896C445.484%2018.3964%20445.282%2018.249%20445.219%2018.2181C445.012%2018.1187%20444.808%2018.1204%20444.608%2018.1204L444.828%2018.1787C444.706%2018.1204%20444.603%2018.0552%20444.486%2018.0158C444.418%2017.9935%20444.352%2017.9815%20444.281%2017.985C444.26%2017.985%20444.068%2018.021%20444.152%2018.0175C443.594%2018.0415%20443.591%2018.8988%20444.152%2018.8748V18.8731Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M444.219%2018.6034C444.306%2018.4988%20444.347%2018.3942%20444.388%2018.2691L444.277%2018.4577L444.298%2018.4319L444.106%2018.5417C444.014%2018.5622%20444.188%2018.5451%20444.181%2018.5468C444.252%2018.5382%20444.319%2018.5211%20444.383%2018.4868C444.416%2018.4697%20444.589%2018.3736%20444.484%2018.4062C444.395%2018.4337%20444.552%2018.3942%20444.556%2018.3925C444.657%2018.3565%20444.752%2018.3239%20444.846%2018.2553C444.902%2018.2142%20444.949%2018.1645%20444.987%2018.1062C445.04%2018.0273%20444.918%2018.113%20445.005%2018.0959C445.041%2018.089%20445.533%2017.7941%20445.527%2017.789C445.522%2017.7821%20445.353%2017.8336%20445.543%2017.8164C445.616%2017.8096%20445.679%2017.7959%20445.745%2017.7581C445.789%2017.7341%20445.827%2017.6964%20445.862%2017.6621C445.811%2017.7136%20445.998%2017.4804%20445.931%2017.5473L445.74%2017.657C445.827%2017.6261%20445.912%2017.6004%20445.998%2017.5661C446.057%2017.5421%20446.114%2017.5164%20446.174%2017.4924C446.217%2017.477%20446.221%2017.4735%20446.188%2017.4821C446.128%2017.4941%20446.16%2017.4907%20446.282%2017.4718C446.536%2017.4118%20446.618%2017.2335%20446.701%2017.0123L446.59%2017.2009C446.602%2017.2198%20446.59%2017.2284%20446.555%2017.2232C446.612%2017.2198%20446.668%2017.2112%20446.722%2017.1958C446.811%2017.1684%20446.895%2017.1015%20446.954%2017.0638L446.734%2017.1221C446.658%2017.1272%20446.555%2017.0706%20446.705%2017.1324C446.759%2017.1546%20446.79%2017.1649%20446.849%2017.1735C446.996%2017.1924%20447.133%2017.1426%20447.26%2017.0723C447.381%2017.0072%20447.468%2016.9163%20447.511%2016.7826C447.518%2016.7603%20447.522%2016.738%20447.527%2016.7157C447.543%2016.5957%20447.548%2016.5631%20447.541%2016.6197C447.536%2016.6489%20447.539%2016.6437%20447.55%2016.6077L447.438%2016.7963L447.454%2016.7792L447.145%2016.9043C447.102%2016.8872%20447.109%2016.8872%20447.165%2016.9009C447.217%2016.918%20447.269%2016.9215%20447.321%2016.9112C447.41%2016.906%20447.508%2016.8992%20447.597%2016.8718C447.715%2016.8358%20447.816%2016.7569%20447.88%2016.6523C447.905%2016.6077%20447.926%2016.5631%20447.943%2016.5151C447.828%2016.6454%20447.802%2016.6849%20447.867%2016.6352C447.908%2016.6094%20447.893%2016.6112%20447.821%2016.6403C447.879%2016.6352%20447.934%2016.6266%20447.988%2016.6146C447.908%2016.6249%20448.177%2016.6009%20448.145%2016.6043C448.285%2016.5889%20448.398%2016.5683%20448.506%2016.4706C448.542%2016.438%20448.642%2016.3025%20448.612%2016.33L448.304%2016.4551C448.258%2016.4397%20448.265%2016.438%20448.321%2016.4517C448.373%2016.4688%20448.426%2016.4723%20448.478%2016.462C448.6%2016.4551%20448.687%2016.4106%20448.784%2016.3471C448.875%2016.2871%20448.957%2016.2357%20449.016%2016.1414C449.08%2016.0402%20448.847%2016.2494%20449.067%2016.0917C449.256%2015.9545%20449.35%2015.7196%20449.223%2015.5053C449.114%2015.3219%20448.817%2015.2138%20448.628%2015.351C448.541%2015.4127%20448.46%2015.471%20448.384%2015.5465C448.347%2015.5825%20448.321%2015.6305%20448.29%2015.6716C448.387%2015.5465%20448.312%2015.6322%20448.257%2015.6648L448.476%2015.6065C448.561%2015.5962%20448.326%2015.5945%20448.344%2015.5945C448.272%2015.5945%20448.201%2015.6082%20448.136%2015.6356C448.072%2015.663%20448.016%2015.7025%20447.966%2015.7522C447.952%2015.7676%20447.847%2015.9031%20447.889%2015.8653L448.081%2015.7556C447.915%2015.7813%20447.729%2015.7591%20447.544%2015.8345C447.45%2015.8722%20447.346%2015.9374%20447.273%2016.0059C447.24%2016.0385%20447.205%2016.0745%20447.18%2016.1139C447.165%2016.1414%20447.151%2016.1705%20447.14%2016.1997C447.102%2016.2837%20447.112%2016.2683%20447.172%2016.1551L447.363%2016.0454C447.396%2016.0385%20447.255%2016.0574%20447.255%2016.0591C447.26%2016.0677%20447.412%2016.0797%20447.3%2016.0591C447.154%2016.0317%20447.001%2016.0488%20446.881%2016.1414C446.795%2016.2065%20446.733%2016.2923%20446.703%2016.3968C446.693%2016.4328%20446.689%2016.4688%20446.684%2016.5066C446.658%2016.6797%20446.705%2016.4551%20446.67%2016.5563L446.781%2016.3677C446.79%2016.3283%20446.768%2016.3334%20446.714%2016.3814L446.933%2016.3231C447.057%2016.3626%20447.09%2016.3694%20447.034%2016.3437C446.994%2016.3231%20446.954%2016.306%20446.91%2016.2905C446.853%2016.2734%20446.794%2016.2631%20446.733%2016.2665C446.646%2016.27%20446.567%2016.2957%20446.491%2016.3385C446.452%2016.3626%20446.416%2016.39%20446.381%2016.4191C446.517%2016.3728%20446.536%2016.3591%20446.438%2016.378C446.292%2016.3883%20446.1%2016.4723%20445.994%2016.5717C445.888%2016.6712%20445.864%2016.786%20445.818%2016.9078L445.93%2016.7192L445.907%2016.7432L446.099%2016.6334C445.959%2016.6694%20445.771%2016.7466%20445.604%2016.8015C445.496%2016.8375%20445.399%2016.8615%20445.311%2016.942C445.275%2016.9763%20445.244%2017.0158%20445.216%2017.0586C445.186%2017.1049%20445.184%2017.1135%20445.214%2017.0861L445.406%2016.9763C445.5%2016.9592%20445.32%2016.9661%20445.329%2016.9643C445.257%2016.9712%20445.19%2016.9883%20445.127%2017.0226C445.052%2017.0638%20444.986%2017.1221%20444.913%2017.1684C444.812%2017.2318%20444.698%2017.2798%20444.594%2017.3381C444.529%2017.3741%20444.242%2017.5147%20444.263%2017.6158C444.239%2017.6553%20444.252%2017.6467%20444.308%2017.5901C444.397%2017.5284%20444.381%2017.5267%20444.261%2017.5884C444.301%2017.5747%20444.2%2017.6038%20444.192%2017.6056C444.131%2017.6244%20444.073%2017.6518%20444.021%2017.6861L443.932%2017.753C444.08%2017.7136%20444.118%2017.693%20444.047%2017.693C443.936%2017.6484%20443.732%2017.7719%20443.666%2017.8387C443.571%2017.933%20443.547%2018.041%20443.507%2018.161L443.619%2017.9725L443.598%2017.9982C443.448%2018.1765%20443.42%2018.4302%20443.598%2018.6051C443.751%2018.756%20444.063%2018.7851%20444.214%2018.6051L444.219%2018.6034Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M446.718%2018.9662C446.748%2018.8736%20446.781%2018.781%20446.809%2018.6885C446.835%2018.601%20446.84%2018.5222%20446.828%2018.4347C446.819%2018.3764%20446.8%2018.3233%20446.791%2018.2667L446.807%2018.3799V18.3593C446.804%2018.397%20446.798%2018.4347%20446.793%2018.4724C446.737%2018.6473%20446.657%2018.6593%20446.741%2018.589C446.758%2018.5736%20446.778%2018.5599%20446.793%2018.5427C446.913%2018.421%20446.967%2018.2461%20446.922%2018.0798C446.886%2017.9427%20446.791%2017.8552%20446.68%2017.7746C446.663%2017.7609%20446.643%2017.7489%20446.624%2017.7369C446.589%2017.7112%20446.607%2017.7249%20446.675%2017.7746C446.621%2017.7198%20446.65%2017.7712%20446.762%2017.9255L446.778%2018.0387V18.0301C446.772%2018.0678%20446.767%2018.1055%20446.762%2018.1433C446.751%2018.1878%20446.732%2018.2255%20446.701%2018.2581C446.673%2018.2924%20446.666%2018.301%20446.68%2018.2856C446.69%2018.277%20446.699%2018.2667%20446.71%2018.2581C446.729%2018.2393%20446.75%2018.2221%20446.767%2018.2015C446.898%2018.0558%20446.959%2017.8689%20446.879%2017.6821C446.816%2017.5346%20446.696%2017.4437%20446.542%2017.3957C446.518%2017.3872%20446.492%2017.382%20446.466%2017.3752C446.457%2017.3734%20446.447%2017.3666%20446.436%2017.3666C446.515%2017.3837%20446.569%2017.43%20446.6%2017.5072C446.67%2017.6289%20446.697%2017.6581%20446.68%2017.5946L446.696%2017.7078C446.687%2017.6426%20446.689%2017.5723%20446.67%2017.5089C446.657%2017.466%20446.636%2017.4043%20446.607%2017.37C446.574%2017.3323%20446.638%2017.4249%20446.631%2017.43C446.636%2017.4266%20446.617%2017.3529%20446.614%2017.3426C446.591%2017.2569%20446.546%2017.1677%20446.478%2017.106C446.389%2017.0237%20446.283%2016.9654%20446.171%2016.9191C446.015%2016.854%20445.877%2016.8917%20445.717%2016.9157L445.832%2016.9002C445.736%2016.9037%20445.647%2016.9208%20445.562%2016.9671C445.513%2016.9928%20445.445%2017.0408%20445.412%2017.0888C445.396%2017.1043%20445.403%2017.0991%20445.435%2017.0734C445.463%2017.0494%20445.494%2017.0323%20445.53%2017.0237C445.487%2017.0426%20445.442%2017.058%20445.4%2017.082C445.362%2017.1043%20445.32%2017.1334%20445.288%2017.1677C445.22%2017.2414%20445.494%2017.0854%20445.393%2017.1008L445.508%2017.0854C445.45%2017.0906%20445.388%2017.0923%20445.334%2017.1094C445.243%2017.1368%20445.186%2017.1831%20445.111%2017.238C445.126%2017.226%20445.229%2017.1386%20445.248%2017.1557C445.247%2017.154%20445.219%2017.1643%20445.213%2017.166C445.161%2017.1831%20445.104%2017.2037%20445.057%2017.2329C444.893%2017.334%20444.804%2017.5123%20444.83%2017.6992C444.839%2017.7661%20444.867%2017.8209%20444.881%2017.8861L444.865%2017.7729V17.7866C444.87%2017.7489%20444.876%2017.7112%20444.881%2017.6735C444.924%2017.5415%20445.008%2017.4575%20445.128%2017.4215C445.118%2017.4249%20445.107%2017.4283%20445.097%2017.4317C445.081%2017.4369%20445.065%2017.442%20445.052%2017.4489C444.93%2017.4952%20444.827%2017.5552%20444.757%2017.6718C444.687%2017.7884%20444.681%2017.9204%20444.717%2018.0472C444.731%2018.0952%20444.752%2018.1364%20444.778%2018.1775C444.83%2018.2598%20444.759%2018.0884%20444.769%2018.145L444.754%2018.0318V18.0438C444.741%2018.1347%20444.792%2018.2358%20444.846%2018.3027C444.903%2018.3747%20444.98%2018.433%20445.072%2018.457C445.144%2018.4759%20445.217%2018.4793%20445.29%2018.4862L445.175%2018.4707C445.092%2018.4399%20445.029%2018.3884%20444.985%2018.3164C444.991%2018.3233%20444.996%2018.3301%20444.999%2018.3387C445.017%2018.3661%20445.036%2018.3919%20445.057%2018.4176C445.126%2018.5067%20445.212%2018.577%20445.327%2018.6062C445.452%2018.6387%20445.59%2018.6182%20445.701%2018.553C445.717%2018.5444%20445.729%2018.5342%20445.745%2018.5239C445.79%2018.4913%20445.834%2018.4896%20445.71%2018.5273L445.595%2018.5427H445.607C445.569%2018.5376%20445.53%2018.5324%20445.492%2018.5273C445.53%2018.5342%20445.564%2018.5496%20445.602%2018.5599C445.666%2018.577%20445.738%2018.5787%20445.804%2018.5873L445.689%2018.5719C445.766%2018.5839%20445.844%2018.5907%20445.922%2018.5993L445.807%2018.5839C445.673%2018.5359%20445.755%2018.5684%20445.792%2018.589C445.835%2018.613%20445.882%2018.6336%20445.931%2018.6456C446.077%2018.6833%20446.225%2018.6525%20446.344%2018.5616C446.407%2018.5136%20446.459%2018.4553%20446.492%2018.3833C446.499%2018.3679%20446.506%2018.3524%20446.513%2018.3387C446.574%2018.2101%20446.563%2018.373%20446.306%2018.4673C446.414%2018.4279%20446.506%2018.3713%20446.565%2018.2701C446.619%2018.1775%20446.643%2018.0421%20446.609%2017.9392C446.541%2017.7335%20446.302%2017.5569%20446.072%2017.6392C445.943%2017.6872%20445.837%2017.7609%20445.769%2017.8827C445.759%2017.9015%20445.752%2017.9221%20445.741%2017.9409C445.677%2018.0781%20445.699%2017.8878%20445.945%2017.8175L446.06%2017.8021H446.043C446.081%2017.8055%20446.119%2017.8106%20446.157%2017.8158C446.265%2017.8484%20446.232%2017.8484%20446.191%2017.8226C446.163%2017.8055%20446.135%2017.7935%20446.103%2017.7815C446.022%2017.7472%20445.94%2017.7421%20445.851%2017.7335L445.966%2017.7489C445.886%2017.7386%20445.806%2017.7283%20445.726%2017.7181L445.84%2017.7335C445.713%2017.6992%20445.595%2017.6615%20445.463%2017.7026C445.412%2017.7181%20445.36%2017.7403%20445.316%2017.7712C445.304%2017.7798%20445.292%2017.7884%20445.28%2017.7969C445.245%2017.8226%20445.219%2017.8055%20445.335%2017.7764L445.45%2017.7609H445.438C445.476%2017.7661%20445.515%2017.7712%20445.553%2017.7764L445.712%2017.8638L445.76%2017.9238C445.76%2017.9238%20445.743%2017.8981%20445.741%2017.8947C445.71%2017.8501%20445.677%2017.8021%20445.637%2017.7661C445.574%2017.7078%20445.497%2017.6649%20445.414%2017.6443C445.348%2017.6272%20445.278%2017.6272%20445.21%2017.6186L445.325%2017.634L445.299%2017.6272L445.619%2018.0404C445.628%2017.9564%20445.59%2017.8484%20445.55%2017.7781C445.543%2017.7661%20445.536%2017.7541%20445.527%2017.7421C445.489%2017.6889%20445.557%2017.8501%20445.546%2017.7884V18.0164C445.501%2018.1484%20445.417%2018.2324%20445.295%2018.2667C445.306%2018.2633%20445.316%2018.2598%20445.327%2018.2564C445.342%2018.2513%20445.358%2018.2461%20445.372%2018.241C445.496%2018.1947%20445.598%2018.1347%20445.668%2018.0181C445.738%2017.9015%20445.752%2017.7661%20445.713%2017.6426C445.701%2017.6032%20445.682%2017.5689%20445.675%2017.5278L445.691%2017.6409V17.6272C445.685%2017.6649%20445.68%2017.7026%20445.675%2017.7403L445.679%2017.7283L445.567%2017.9169C445.536%2017.9461%20445.501%2017.9667%20445.463%2017.9804C445.419%2017.9958%20445.412%2017.9992%20445.442%2017.9907C445.459%2017.9872%20445.476%2017.9804%20445.492%2017.9752C445.536%2017.9598%20445.584%2017.9427%20445.625%2017.9187L445.713%2017.8518C445.766%2017.8055%20445.72%2017.8329%20445.579%2017.9307L445.464%2017.9461C445.529%2017.9392%20445.595%2017.9341%20445.658%2017.9187C445.746%2017.8964%20445.797%2017.8552%20445.867%2017.8004C445.881%2017.7884%20445.936%2017.7472%20445.872%2017.7952C445.854%2017.8124%20445.835%2017.8244%20445.811%2017.8295C445.743%2017.8552%20445.767%2017.8449%20445.882%2017.7986C445.91%2017.7832%20445.931%2017.7678%20445.957%2017.7472C445.983%2017.7266%20446.006%2017.7095%20446.029%2017.6872C446.093%2017.6238%20446.084%2017.6718%20445.907%2017.7421L445.792%2017.7575C445.881%2017.7489%20445.966%2017.7335%20446.053%2017.7181L445.938%2017.7335C445.952%2017.7318%20445.966%2017.7318%20445.98%2017.7335L445.865%2017.7181C445.76%2017.6906%20445.792%2017.6838%20445.83%2017.7026C445.847%2017.7129%20445.865%2017.7232%20445.882%2017.7335C445.938%2017.7695%20445.969%2017.8209%20445.842%2017.6563C445.731%2017.5106%20445.759%2017.5226%20445.771%2017.586C445.776%2017.6118%20445.78%2017.6392%20445.787%2017.6649C445.793%2017.6889%20445.834%2017.7901%20445.839%2017.7901L445.847%2017.8021C445.823%2017.7283%20445.816%2017.7129%20445.825%2017.7558L445.809%2017.6426C445.818%2017.7163%20445.821%2017.7901%20445.844%2017.8604C445.884%2017.9804%20445.961%2018.0781%20446.074%2018.1398C446.13%2018.1707%20446.189%2018.1895%20446.25%2018.205C446.265%2018.2084%20446.281%2018.2135%20446.295%2018.217C446.245%2018.2084%20446.128%2018.1313%20446.097%2018.061L446.037%2017.8449V17.8535C446.043%2017.8158%20446.048%2017.7781%20446.053%2017.7403C446.056%2017.7232%20446.119%2017.586%20446.144%2017.5929C446.144%2017.5929%20446.119%2017.6186%20446.116%2017.6203C446.1%2017.6358%20446.083%2017.6495%20446.067%2017.6649C445.969%2017.7609%20445.891%2017.8912%20445.896%2018.0301C445.901%2018.169%20445.957%2018.2924%20446.06%2018.3867C446.098%2018.4227%20446.145%2018.4519%20446.189%2018.4827C446.203%2018.493%20446.253%2018.529%20446.185%2018.4776C446.152%2018.4519%20446.144%2018.445%20446.159%2018.4587C446.21%2018.505%20446.18%2018.4536%20446.072%2018.3027L446.056%2018.1895V18.1998C446.063%2018.1621%20446.069%2018.1244%20446.074%2018.0867C446.086%2018.0455%20446.105%2018.0095%20446.133%2017.9769C446.163%2017.9427%20446.166%2017.9358%20446.144%2017.9564C446.133%2017.9632%20446.124%2017.9718%20446.116%2017.9787C446.069%2018.0181%20446.023%2018.0661%20445.996%2018.1193C445.942%2018.217%20445.921%2018.3216%20445.935%2018.4313C445.943%2018.4913%20445.957%2018.541%20445.971%2018.5993L445.955%2018.4862C445.959%2018.4999%20445.959%2018.5153%20445.955%2018.529L445.971%2018.4159C445.942%2018.5239%20445.903%2018.6285%20445.868%2018.7348C445.8%2018.9491%20445.948%2019.2114%20446.173%2019.2628C446.41%2019.316%20446.636%2019.1925%20446.71%2018.9628L446.718%2018.9662Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M457.771%2019.575C457.821%2019.587%20457.877%2019.6007%20457.924%2019.6213C457.865%2019.5956%20458.021%2019.6813%20458.056%2019.6899C458.138%2019.7121%20458.225%2019.7156%20458.309%2019.7139C458.34%2019.7156%20458.37%2019.7139%20458.401%2019.7087C458.546%2019.6967%20458.556%2019.6899%20458.429%2019.6899L458.237%2019.5801C458.326%2019.6521%20458.412%2019.7259%20458.525%2019.7584C458.619%2019.7859%20458.718%2019.7722%20458.805%2019.7807C458.913%2019.7927%20459.019%2019.8202%20459.129%2019.8167C459.202%2019.8133%20459.27%2019.7979%20459.336%2019.767C459.328%2019.7722%20459.476%2019.6933%20459.406%2019.7156H459.174C459.366%2019.7533%20459.563%2019.7944%20459.756%2019.8133C460.014%2019.8373%20460.152%2019.7584%20460.348%2019.6076L460.157%2019.7173L460.188%2019.707H459.956C459.864%2019.6744%20460.125%2019.7927%20460.071%2019.7773C460.141%2019.7979%20460.206%2019.8047%20460.279%2019.8013C460.415%2019.7944%20460.519%2019.7516%20460.658%2019.7156L460.322%2019.6727C460.237%2019.5767%20460.218%2019.5613%20460.267%2019.6247C460.294%2019.6659%20460.326%2019.7036%20460.361%2019.7379C460.437%2019.8099%20460.533%2019.8527%20460.636%2019.8664C460.845%2019.8939%20460.975%2019.7773%20461.129%2019.6607L460.937%2019.7704L460.968%2019.7601H460.737C460.834%2019.7927%20460.937%2019.839%20461.047%2019.8596C461.139%2019.8767%20461.226%2019.8767%20461.317%2019.8476C461.336%2019.8407%20461.498%2019.7619%20461.435%2019.7807H461.204C461.315%2019.7996%20461.416%2019.8339%20461.533%2019.8219C461.59%2019.815%20461.629%2019.8047%20461.683%2019.7824C461.677%2019.7842%20461.825%2019.7224%20461.749%2019.743L461.413%2019.7001C461.338%2019.6161%20461.327%2019.6076%20461.381%2019.6744C461.4%2019.7019%20461.421%2019.7276%20461.446%2019.7499C461.494%2019.7962%20461.554%2019.8287%20461.616%2019.8527C461.756%2019.9042%20461.946%2019.8973%20462.095%2019.8922C462.231%2019.8887%20462.391%2019.9247%20462.522%2019.8905C462.653%2019.8562%20462.74%2019.7687%20462.841%2019.6864L462.649%2019.7962L462.681%2019.7859H462.449L462.487%2019.8013L462.296%2019.6916C462.492%2019.863%20462.651%2019.9196%20462.912%2019.8699C462.947%2019.863%20462.984%2019.8579%20463.017%2019.8476C463.039%2019.8407%20463.191%2019.767%20463.116%2019.8013C463.025%2019.8424%20463.208%2019.7859%20463.194%2019.7876C463.17%2019.791%20463.29%2019.791%20463.26%2019.779L463.069%2019.6693C463.196%2019.7807%20463.318%2019.8922%20463.501%2019.8922C463.684%2019.8922%20463.802%2019.7807%20463.935%2019.6761L463.743%2019.7859C463.72%2019.815%20463.745%2019.8202%20463.814%2019.8013L463.595%2019.743C463.51%2019.647%20463.492%2019.6316%20463.541%2019.695C463.569%2019.7361%20463.6%2019.7739%20463.635%2019.8082C463.722%2019.8887%20463.847%2019.9436%20463.969%2019.9436C464.091%2019.9436%20464.215%2019.8887%20464.304%2019.8064C464.339%2019.7704%20464.37%2019.7327%20464.398%2019.6916C464.448%2019.6264%20464.431%2019.6418%20464.347%2019.7344L464.011%2019.7773L464.043%2019.7893L463.851%2019.6796C464.053%2019.8527%20464.274%2019.9607%20464.555%2019.9059C464.593%2019.899%20464.629%2019.8922%20464.666%2019.8784C464.685%2019.8699%20464.535%2019.8167%20464.649%2019.8733C464.781%2019.9402%20464.919%2019.959%20465.063%2019.9162C465.072%2019.9127%20465.211%2019.863%20465.206%2019.8442C465.223%2019.9007%20464.981%2019.7773%20465.119%2019.8596C465.23%2019.9265%20465.368%2019.9333%20465.495%2019.9402C465.633%2019.947%20465.769%2019.9539%20465.897%2019.8956C465.899%2019.8956%20466.032%2019.8167%20465.964%2019.851C466%2019.8339%20466.105%2019.7962%20466.12%2019.791H465.889L465.92%2019.803L465.728%2019.6933C465.979%2019.9265%20466.26%2020.0173%20466.591%2019.8853C466.62%2019.8733%20466.822%2019.803%20466.711%2019.8236C466.733%2019.8202%20466.807%2019.8116%20466.829%2019.8184C466.927%2019.8442%20466.991%2019.8887%20467.101%2019.8887C467.193%2019.8887%20467.303%2019.8424%20467.373%2019.827H467.141C467.244%2019.8424%20467.402%2019.8407%20467.493%2019.8733L467.301%2019.7636C467.604%2020.007%20467.853%2020.0122%20468.151%2019.7584L467.96%2019.8682L468%2019.8527H467.768C467.768%2019.8527%20467.885%2019.8905%20467.925%2019.899C468.038%2019.923%20468.125%2019.8939%20468.235%2019.8853C468.369%2019.8733%20468.493%2019.8493%20468.625%2019.8202H468.393L468.425%2019.8322L468.233%2019.7224C468.362%2019.8339%20468.482%2019.9453%20468.667%2019.9453C468.81%2019.9453%20468.954%2019.8836%20469.095%2019.863H468.864C469.059%2019.9213%20469.25%2019.9899%20469.459%2019.9265C469.75%2019.8373%20469.376%2019.9093%20469.604%2019.887C469.616%2019.887%20469.931%2019.8202%20469.902%2019.7876C469.868%2019.8082%20469.834%2019.8099%20469.801%2019.7927C469.851%2019.8167%20469.903%2019.8373%20469.957%2019.8527C469.997%2019.8699%20470.064%2019.9025%20470.114%2019.9145C470.313%2019.9607%20470.482%2019.8784%20470.659%2019.8219H470.428C470.476%2019.8304%20470.99%2019.9162%20470.973%2019.803C470.978%2019.8322%20470.783%2019.7653%20470.964%2019.8493C471.027%2019.8784%20471.093%2019.8939%20471.159%2019.9042C471.344%2019.935%20471.469%2019.9093%20471.638%2019.8424L471.743%2019.7996C471.802%2019.7653%20471.793%2019.7636%20471.718%2019.7944C471.765%2019.7979%20471.821%2019.8013%20471.87%2019.8219L471.678%2019.7121C471.962%2019.9916%20472.234%2020.007%20472.537%2019.7396L472.345%2019.8493L472.383%2019.8339H472.152C472.284%2019.8699%20472.394%2019.911%20472.542%2019.9042C472.612%2019.9007%20472.683%2019.8973%20472.749%2019.8767C472.986%2019.803%20472.709%2019.8476%20472.894%2019.863C472.99%2019.8716%20473.134%2019.863%20473.197%2019.8733C473.378%2019.9007%20473.474%2019.8682%20473.638%2019.8133H473.406L473.437%2019.8236L473.246%2019.7139C473.343%2019.7927%20473.422%2019.8767%20473.549%2019.911C473.692%2019.9505%20473.815%2019.9059%20473.953%2019.8802H473.721C473.812%2019.8922%20473.902%2019.9247%20473.995%2019.9247C474.087%2019.9247%20474.176%2019.8905%20474.266%2019.8733H474.035C474.209%2019.899%20474.406%2019.947%20474.58%2019.9007C474.658%2019.8802%20474.745%2019.8322%20474.803%2019.7773C474.824%2019.7567%20474.912%2019.695%20474.839%2019.7276L474.62%2019.7859C474.684%2019.7876%20474.797%2019.7722%20474.858%2019.7927L474.667%2019.683C474.869%2019.8356%20474.998%2019.8819%20475.25%2019.8682C475.355%2019.863%20475.461%2019.8767%20475.566%2019.8716C475.67%2019.8664%20475.743%2019.8322%20475.839%2019.8116H475.607C475.569%2019.7962%20475.574%2019.7996%20475.621%2019.8253C475.667%2019.8493%20475.715%2019.8682%20475.764%2019.8784C475.862%2019.9007%20475.952%2019.8853%20476.048%2019.8682C476.191%2019.8424%20476.332%2019.803%20476.466%2019.767H476.234C476.159%2019.743%20476.302%2019.8167%20476.301%2019.815C476.367%2019.8459%20476.431%2019.8647%20476.508%2019.8647C476.56%2019.8647%20476.614%2019.851%20476.663%2019.8373C476.598%2019.8562%20476.874%2019.7396%20476.78%2019.7704H476.548C476.614%2019.7824%20476.682%2019.7979%20476.745%2019.8202L476.553%2019.7104C476.729%2019.8476%20476.888%2019.9539%20477.123%2019.887C477.168%2019.8733%20477.211%2019.8562%20477.253%2019.8356C477.191%2019.851%20477.205%2019.8544%20477.295%2019.8476C477.396%2019.8459%20477.474%2019.8082%20477.569%2019.7876H477.337C477.271%2019.7687%20477.436%2019.8424%20477.455%2019.8476C477.553%2019.8784%20477.647%2019.8802%20477.746%2019.8527C477.924%2019.8047%20477.868%2019.7824%20478.041%2019.7499H477.809C477.832%2019.7533%20478.002%2019.7962%20477.941%2019.7739C478.002%2019.7962%20478.058%2019.839%20478.124%2019.8544C478.342%2019.9059%20478.506%2019.7962%20478.666%2019.6641L478.474%2019.7739L478.514%2019.7584H478.283L478.309%2019.7687L478.117%2019.659C478.234%2019.7704%20478.323%2019.8819%20478.5%2019.9025C478.709%2019.9282%20478.842%2019.815%20478.991%2019.6916L478.8%2019.8013C478.8%2019.8013%20478.652%2019.7379%20478.772%2019.7944C478.838%2019.8253%20478.901%2019.8476%20478.974%2019.8562C479.115%2019.8733%20479.232%2019.8184%20479.357%2019.7704L479.462%2019.7276C479.448%2019.7499%20479.43%2019.7584%20479.408%2019.7533C479.347%2019.7207%20479.514%2019.8047%20479.547%2019.8116C479.641%2019.8339%20479.726%2019.8253%20479.817%2019.7979C479.84%2019.791%20479.995%2019.7053%20479.934%2019.7259H479.702L479.742%2019.7396L479.551%2019.6298C479.666%2019.7173%20479.77%2019.8047%20479.92%2019.8219C479.995%2019.8304%20480.061%2019.8219%20480.132%2019.8013C480.153%2019.7944%20480.312%2019.7104%20480.249%2019.731H480.017C480.192%2019.779%20480.324%2019.8424%20480.507%2019.8219C480.54%2019.8184%20480.792%2019.7224%20480.684%2019.755C480.791%2019.7241%20480.923%2019.7276%20481.036%2019.7121H480.805L480.836%2019.7259L480.644%2019.6161C480.738%2019.7087%20480.813%2019.7944%20480.947%2019.8322C481.094%2019.875%20481.212%2019.8253%20481.351%2019.7944H481.12C481.238%2019.8099%20481.35%2019.8373%20481.472%2019.8356C481.594%2019.8339%20481.705%2019.8047%20481.823%2019.7859H481.592C481.764%2019.8167%20481.902%2019.8373%20482.08%2019.8116C482.214%2019.7927%20482.323%2019.7481%20482.451%2019.7104H482.219C482.268%2019.719%20482.33%2019.731%20482.377%2019.7481C482.332%2019.731%20482.374%2019.7619%20482.391%2019.7704C482.527%2019.8304%20482.647%2019.8527%20482.781%2019.8613C482.916%2019.8699%20483.072%2019.8647%20483.198%2019.7944C483.248%2019.767%20483.287%2019.7327%20483.325%2019.6916L483.393%2019.6041C483.442%2019.5373%20483.424%2019.5493%20483.341%2019.6384L483.004%2019.6813L483.03%2019.6916L482.839%2019.5818C482.816%2019.5441%20482.82%2019.5476%20482.851%2019.5921C482.879%2019.6333%20482.91%2019.671%20482.945%2019.7053C483.024%2019.7773%20483.118%2019.8202%20483.222%2019.8339C483.435%2019.8596%20483.569%2019.7447%20483.713%2019.611L483.522%2019.7207C483.522%2019.7207%20483.513%2019.719%20483.511%2019.7121L483.32%2019.6024C483.464%2019.7344%20483.6%2019.8544%20483.813%2019.8253C483.917%2019.8116%20484.013%2019.767%20484.089%2019.6967C484.124%2019.6624%20484.156%2019.623%20484.183%2019.5818C484.232%2019.5184%20484.215%2019.5321%20484.131%2019.6264L483.795%2019.6693L483.821%2019.6796L483.63%2019.5698C483.76%2019.695%20483.868%2019.8219%20484.07%2019.8219C484.192%2019.8219%20484.316%2019.767%20484.405%2019.6864C484.436%2019.6573%20484.56%2019.5167%20484.509%2019.5681L484.318%2019.6779L484.344%2019.6676H484.112C484.192%2019.683%20484.271%2019.707%20484.349%2019.7241C484.37%2019.7293%20484.464%2019.7601%20484.403%2019.7379C484.459%2019.7584%20484.506%2019.7962%20484.567%2019.8133C484.696%2019.8493%20484.833%2019.8339%20484.948%2019.7653C484.99%2019.7413%20485.028%2019.7053%20485.063%2019.671C485.091%2019.6367%20485.119%2019.6024%20485.145%2019.5664C485.181%2019.5201%20485.159%2019.5407%20485.079%2019.6298L484.859%2019.6881C484.995%2019.6984%20485.073%2019.7259%20485.215%2019.7241C485.356%2019.7224%20485.488%2019.6813%20485.605%2019.6521H485.373C485.519%2019.6813%20485.652%2019.7584%20485.805%2019.7619C485.883%2019.7636%20486.005%2019.7516%20486.078%2019.7344C486.127%2019.7207%20486.176%2019.7019%20486.221%2019.6796C486.27%2019.6539%20486.274%2019.647%20486.235%2019.659H486.004L486.044%2019.6744L485.852%2019.5647C486.023%2019.707%20486.186%2019.7773%20486.383%2019.7893C486.559%2019.7996%20486.698%2019.719%20486.864%2019.6847H486.632C486.798%2019.7327%20486.942%2019.7842%20487.122%2019.7653C487.261%2019.7499%20487.364%2019.6864%20487.493%2019.647H487.261C487.446%2019.6727%20487.564%2019.7567%20487.81%2019.7687C488.085%2019.7824%20488.236%2019.731%20488.438%2019.5493L488.247%2019.659L488.278%2019.647H488.047C488.2%2019.695%20488.31%2019.7276%20488.477%2019.7104C488.621%2019.6967%20488.762%2019.671%20488.905%2019.6487H488.674L488.714%2019.6624L488.522%2019.5527C488.7%2019.6967%20488.869%2019.7722%20489.104%2019.7773C489.302%2019.7807%20489.513%2019.7293%20489.689%2019.6847H489.457C489.598%2019.7121%20489.713%2019.7619%20489.861%2019.719C489.99%2019.683%20490.07%2019.5973%20490.163%2019.5098L489.971%2019.6196L490.002%2019.6076L489.666%2019.5647C489.583%2019.4738%20489.567%2019.4618%20489.616%2019.527C489.645%2019.5681%20489.677%2019.6058%20489.71%2019.6436C489.787%2019.7156%20489.882%2019.7584%20489.987%2019.7722C490.198%2019.7996%20490.335%2019.683%20490.476%2019.5493L490.285%2019.659C490.323%2019.6436%20490.466%2019.6161%20490.473%2019.5921L490.346%2019.6196C490.469%2019.623%20490.499%2019.6298%20490.436%2019.6401L490.245%2019.5304C490.372%2019.6298%20490.499%2019.731%20490.67%2019.731C490.746%2019.731%20490.861%2019.7036%20490.929%2019.6607C490.988%2019.6264%20490.98%2019.623%20490.905%2019.6521C490.931%2019.6453%20490.959%2019.6453%20490.985%2019.6521C491.032%2019.659%20491.037%2019.659%20490.999%2019.6556C491.025%2019.6796%20491.054%2019.695%20491.089%2019.7053C491.175%2019.7447%20491.26%2019.7601%20491.354%2019.7481C491.443%2019.7344%20491.52%2019.7036%20491.591%2019.6504C491.612%2019.635%20491.753%2019.539%20491.671%2019.5733L491.335%2019.6161L491.366%2019.6298L491.175%2019.5201C491.302%2019.6453%20491.412%2019.755%20491.607%2019.7584C491.681%2019.7584%20491.807%2019.7447%20491.877%2019.7276C491.925%2019.7139%20491.974%2019.695%20492.019%2019.6727C492.068%2019.647%20492.072%2019.6401%20492.032%2019.6521C492.565%2019.4893%20492.338%2018.6612%20491.8%2018.8258C491.753%2018.8395%20491.65%2018.8532%20491.638%2018.8926C491.608%2018.908%20491.614%2018.9115%20491.652%2018.8995C491.709%2018.8892%20491.695%2018.8892%20491.607%2018.8995L491.826%2018.9578C491.92%2018.9972%20491.695%2018.8429%20491.701%2018.8446C491.629%2018.8035%20491.53%2018.7726%20491.45%2018.7726C491.262%2018.7726%20491.142%2018.8875%20491.018%2019.0092L491.209%2018.8995L491.178%2018.9132H491.41C491.45%2018.9218%20491.446%2018.9132%20491.398%2018.8875C491.351%2018.8652%20491.304%2018.8463%20491.255%2018.8309C491.171%2018.8086%20491.067%2018.7966%20490.983%2018.7915C490.899%2018.7863%20490.79%2018.7897%20490.711%2018.8086C490.663%2018.824%20490.616%2018.8412%20490.569%2018.8635C490.52%2018.8892%20490.516%2018.896%20490.556%2018.8875H490.788L490.75%2018.8738L490.941%2018.9835C490.558%2018.6835%20490.128%2018.7006%20489.771%2019.0349L489.962%2018.9252L489.931%2018.9372L490.267%2018.9801C490.351%2019.0709%20490.368%2019.0829%20490.318%2019.0178C490.288%2018.9766%20490.257%2018.9389%20490.224%2018.9012C490.147%2018.8292%20490.051%2018.7863%20489.947%2018.7726C489.736%2018.7452%20489.6%2018.8635%20489.457%2018.9955L489.649%2018.8858L489.618%2018.8978H489.849C489.672%2018.8618%20489.539%2018.8292%20489.356%2018.8926C489.292%2018.9201%20489.287%2018.9218%20489.341%2018.8995C489.301%2018.9029%20489.262%2018.9046%20489.222%2018.9098C489.151%2018.9166%20489.086%2018.9252%20489.025%2018.9029L489.217%2019.0126C489.092%2018.9098%20488.963%2018.8086%20488.79%2018.8086C488.674%2018.8086%20488.555%2018.8498%20488.438%2018.86C488.388%2018.8583%20488.386%2018.8652%20488.437%2018.8823L488.332%2018.8395C488.238%2018.8103%20488.146%2018.7983%20488.048%2018.8223C487.912%2018.8566%20487.829%2018.9458%20487.731%2019.0332L487.923%2018.9235C487.923%2018.9235%20487.662%2018.8755%20487.834%2018.9303C487.754%2018.9046%20487.684%2018.8618%20487.599%2018.8446C487.402%2018.8052%20487.265%2018.8189%20487.08%2018.8909C487.035%2018.9012%20486.991%2018.9183%20486.949%2018.9406C486.968%2018.9115%20486.993%2018.9029%20487.022%2018.92C486.895%2018.8618%20486.775%2018.8309%20486.634%2018.8618C486.564%2018.8772%20486.493%2018.896%20486.425%2018.9166C486.279%2018.9681%20486.287%2018.9749%20486.448%2018.9389C486.324%2018.9372%20486.294%2018.9303%20486.355%2018.9183L486.547%2019.0281C486.361%2018.872%20486.099%2018.728%20485.861%2018.8926C485.796%2018.9355%20485.842%2018.9012%20485.885%2018.9029L485.92%2018.9286C485.878%2018.9063%20485.835%2018.8892%20485.789%2018.8789C485.697%2018.8498%20485.586%2018.8155%20485.49%2018.8155C485.436%2018.8155%20485.373%2018.8275%20485.323%2018.8429C485.286%2018.8532%20485.171%2018.872%20485.255%2018.8686C485.169%2018.872%20485.086%2018.8549%20484.978%2018.8446C484.851%2018.8326%20484.727%2018.8378%20484.614%2018.9046C484.554%2018.9406%20484.509%2018.9886%20484.466%2019.0418C484.375%2019.1532%20484.401%2019.0726%20484.485%2019.0383L484.821%2018.9955C484.898%2019.0178%20484.753%2018.9509%20484.755%2018.9526C484.713%2018.9338%20484.678%2018.9269%20484.636%2018.9149C484.551%2018.8909%20484.46%2018.8686%20484.373%2018.8498C484.239%2018.8206%20484.105%2018.8292%20483.985%2018.8978C483.943%2018.9218%20483.905%2018.9561%20483.872%2018.9903C483.924%2018.9372%20483.71%2019.1669%20483.793%2019.0829L483.985%2018.9732L483.959%2018.9835H484.19L484.164%2018.9732L484.356%2019.0829C484.225%2018.9578%20484.117%2018.8309%20483.915%2018.8309C483.793%2018.8309%20483.67%2018.8858%20483.581%2018.9681C483.546%2019.0023%20483.515%2019.0418%20483.487%2019.0829C483.438%2019.1464%20483.455%2019.1326%20483.539%2019.0383L483.875%2018.9955L483.844%2018.9835L484.035%2019.0932C483.873%2018.9458%20483.75%2018.8618%20483.522%2018.8669C483.293%2018.872%20483.168%2018.9543%20483.01%2019.1001L483.201%2018.9903L483.17%2019.0023H483.401L483.375%2018.9921L483.567%2019.1018C483.59%2019.1395%20483.586%2019.1361%20483.555%2019.0915C483.527%2019.0504%20483.496%2019.0126%20483.461%2018.9783C483.372%2018.896%20483.248%2018.8429%20483.126%2018.8429C483.004%2018.8429%20482.881%2018.8978%20482.792%2018.9801C482.759%2019.0178%20482.727%2019.0572%20482.698%2019.0966C482.649%2019.1635%20482.666%2019.1515%20482.75%2019.0624L482.97%2019.0041C482.917%2019.0041%20482.863%2019.0109%20482.813%2019.0092C482.842%2019.0041%20482.827%2019.0006%20482.766%2018.9989C482.693%2018.9886%20482.689%2018.9886%20482.752%2018.9989C482.801%2019.0126%20482.809%2019.0109%20482.776%2018.9921C482.755%2018.9766%20482.731%2018.9646%20482.705%2018.9578C482.663%2018.9389%20482.63%2018.9321%20482.586%2018.92C482.356%2018.8532%20482.207%2018.9115%20481.989%2018.9629C481.926%2018.9783%20481.923%2018.9783%20481.853%2018.9663C481.722%2018.9458%20481.616%2018.9783%20481.491%2018.9869C481.449%2018.9886%20481.402%2018.9783%20481.355%2018.9715C481.205%2018.9458%20481.106%2018.9852%20480.967%2019.0161H481.198L481.167%2019.0023L481.358%2019.1121C481.263%2019.0178%20481.181%2018.9252%20481.04%2018.8892C480.899%2018.8532%20480.61%2018.8926%20480.468%2018.9321C480.423%2018.9475%20480.381%2018.9646%20480.338%2018.9835C480.482%2018.9783%20480.507%2018.9715%20480.406%2018.9629C480.327%2018.9526%20480.329%2018.9526%20480.409%2018.9646C480.367%2018.9423%20480.324%2018.9252%20480.279%2018.9149C480.183%2018.8892%20480.097%2018.8875%20480.002%2018.9149C479.969%2018.9235%20479.812%2019.0092%20479.864%2018.9921H480.096L480.056%2018.9783L480.247%2019.0881C480.132%2019.0006%20480.028%2018.9132%20479.878%2018.896C479.803%2018.8875%20479.737%2018.896%20479.666%2018.9166C479.643%2018.9235%20479.488%2019.0092%20479.549%2018.9886H479.78C479.619%2018.9372%20479.472%2018.8789%20479.291%2018.8995C479.153%2018.9149%20479.044%2018.9869%20478.92%2019.0263H479.152C479.19%2019.0401%20479.185%2019.0332%20479.136%2019.0075C479.091%2018.9835%20479.042%2018.9663%20478.993%2018.9526C478.903%2018.9303%20478.812%2018.9406%20478.72%2018.9526C478.535%2018.9732%20478.425%2019.0572%20478.286%2019.1721L478.478%2019.0624L478.446%2019.0726H478.678L478.652%2019.0624L478.843%2019.1721C478.739%2019.0726%20478.673%2018.9749%20478.518%2018.9355C478.302%2018.8806%20478.133%2018.9955%20477.976%2019.1258L478.168%2019.0161L478.128%2019.0315H478.359C478.398%2019.0435%20478.394%2019.0366%20478.344%2019.0109C478.298%2018.9869%20478.25%2018.9698%20478.201%2018.9561C478.121%2018.9338%20478.007%2018.9115%20477.927%2018.9115C477.842%2018.9115%20477.736%2018.9389%20477.654%2018.9646C477.603%2018.9766%20477.556%2018.9955%20477.511%2019.0195C477.462%2019.0452%20477.459%2019.0504%20477.497%2019.0349H477.729C477.767%2019.0486%20477.762%2019.0435%20477.715%2019.0178C477.67%2018.9938%20477.621%2018.9749%20477.572%2018.9629C477.473%2018.9389%20477.387%2018.9629%20477.288%2018.9749C477.145%2018.9938%20477.008%2019.0263%20476.868%2019.0709H477.1L477.06%2019.0572L477.252%2019.1669C477.121%2019.0658%20476.999%2018.9869%20476.835%2018.9543C476.739%2018.9355%20476.649%2018.9218%20476.551%2018.9458C476.503%2018.9612%20476.454%2018.9783%20476.409%2019.0023C476.36%2019.0281%20476.355%2019.0349%20476.395%2019.0263H476.626C476.666%2019.0332%20476.661%2019.0263%20476.612%2019.0006C476.565%2018.9783%20476.518%2018.9595%20476.47%2018.9441C476.375%2018.9218%20476.278%2018.9286%20476.186%2018.9578C475.891%2019.0504%20476.271%2018.9766%20476.039%2019.0023C475.944%2019.0126%20475.86%2019.0383%20475.766%2019.0555H475.998C476.036%2019.0709%20476.031%2019.0675%20475.984%2019.0418C475.938%2019.0178%20475.89%2018.9989%20475.841%2018.9886C475.741%2018.9646%20475.656%2018.9886%20475.557%2019.0006C475.438%2019.0143%20475.559%2019.0212%20475.411%2019.0126C475.358%2019.0092%20475.207%2019.0435%20475.172%2019.0315L475.364%2019.1412C475.153%2018.9801%20475.005%2018.9458%20474.74%2018.9372C474.615%2018.9338%20474.5%2018.9372%20474.386%2018.9989C474.343%2019.0229%20474.303%2019.0538%20474.266%2019.0881C474.244%2019.1104%20474.184%2019.1481%20474.245%2019.1224L474.465%2019.0641C474.36%2019.0624%20474.254%2019.0366%20474.15%2019.0366C474.054%2019.0366%20473.968%2019.0709%20473.878%2019.0881H474.11C474.019%2019.0761%20473.928%2019.0435%20473.836%2019.0435C473.744%2019.0435%20473.655%2019.0778%20473.564%2019.0949H473.796L473.765%2019.0846L473.956%2019.1944C473.793%2019.0624%20473.636%2018.9338%20473.406%2018.9921C473.381%2018.9989%20473.249%2019.0401%20473.249%2019.0521C473.249%2019.0298%20473.493%2019.0521%20473.26%2019.0229C473.148%2019.0092%20473.045%2019.0041%20472.932%2019.0075C472.819%2019.0109%20472.706%2018.9972%20472.594%2019.0263C472.57%2019.0332%20472.431%2019.0692%20472.483%2019.0641C472.514%2019.0606%20472.586%2019.0812%20472.486%2019.0486C472.222%2018.9612%20472.044%2019.0281%20471.842%2019.2081L472.033%2019.0984L471.995%2019.1138H472.227L472.195%2019.1001L472.387%2019.2098C472.213%2019.0383%20472.044%2018.9595%20471.797%2018.9423C471.673%2018.9338%20471.546%2018.9423%20471.433%2018.9903C471.431%2018.9903%20471.297%2019.0675%20471.368%2019.0332C471.333%2019.0504%20471.224%2019.0864%20471.211%2019.0898H471.443C471.417%2019.0864%20471.257%2019.0401%20471.312%2019.0624C471.251%2019.0383%20471.197%2018.9938%20471.129%2018.9766C470.94%2018.9303%20470.758%2018.9903%20470.584%2019.0383H470.816C470.67%2019.0109%20470.555%2018.9646%20470.401%2019.0075C470.297%2019.0366%20470.226%2019.0761%20470.114%2019.0915H470.346C470.165%2019.0366%20470.041%2018.9475%20469.839%2018.9509C469.759%2018.9509%20469.682%2018.9578%20469.605%2018.9801C469.551%2018.9938%20469.504%2019.0178%20469.463%2019.0521C469.551%2019.0401%20469.548%2019.0418%20469.449%2019.0538C469.391%2019.0572%20469.336%2019.0675%20469.282%2019.0812C469.168%2019.1395%20469.146%2019.1446%20469.215%2019.0932C469.329%2019.1189%20469.13%2019.0486%20469.097%2019.0401C468.914%2018.9972%20468.731%2019.0744%20468.554%2019.1069H468.785L468.754%2019.0949L468.945%2019.2047C468.78%2019.0624%20468.632%2018.9441%20468.397%2018.9972C468.243%2019.0315%20468.085%2019.0538%20467.928%2019.0761H468.16C468.041%2019.0486%20467.916%2018.9903%20467.771%2019.0298C467.65%2019.0624%20467.556%2019.1412%20467.461%2019.2218L467.653%2019.1121L467.615%2019.1275H467.846L467.808%2019.1138L468%2019.2235C467.914%2019.1549%20467.838%2019.0864%20467.73%2019.0504C467.648%2019.0246%20467.569%2019.0332%20467.489%2019.0229C467.418%2019.0143%20467.336%2018.9886%20467.261%2018.9886C467.169%2018.9886%20467.059%2019.0349%20466.989%2019.0504H467.221C467.061%2019.0109%20466.899%2018.9595%20466.714%2018.9698C466.517%2018.9801%20466.385%2019.0692%20466.207%2019.1206H466.439C466.376%2019.1104%20466.31%2019.0949%20466.251%2019.0726L466.443%2019.1824C466.319%2019.0658%20466.194%2018.9526%20466.011%2018.9526C465.906%2018.9526%20465.831%2018.9886%20465.737%2019.0281C465.695%2019.0452%20465.509%2019.1086%20465.586%2019.1001C465.643%2019.0846%20465.627%2019.0812%20465.539%2019.0881C465.439%2019.0778%20465.434%2019.0795%20465.525%2019.0932C465.443%2019.0589%20465.377%2019.0126%20465.284%2018.9989C465.182%2018.9852%20465.054%2018.9989%20464.953%2019.0212C464.905%2019.0366%20464.856%2019.0538%20464.811%2019.0778C464.762%2019.1035%20464.757%2019.1121%20464.797%2019.1035H465.028C465.128%2019.1344%20464.84%2019.0195%20464.912%2019.0401C464.831%2019.0161%20464.762%2019.0161%20464.678%2019.0212C464.6%2019.0263%20464.506%2019.0281%20464.433%2019.0538C464.386%2019.0709%20464.386%2019.0538%20464.372%2019.0486L464.563%2019.1584C464.417%2019.0332%20464.283%2018.9166%20464.074%2018.9441C463.969%2018.9578%20463.874%2019.0006%20463.797%2019.0726C463.762%2019.1069%20463.731%2019.1464%20463.703%2019.1875C463.652%2019.2527%20463.67%2019.2372%20463.753%2019.1446L464.09%2019.1018L464.063%2019.0915L464.255%2019.2012C464.286%2019.2338%20464.264%2019.2218%20464.246%2019.1927C464.22%2019.1532%20464.187%2019.1121%20464.152%2019.0795C464.049%2018.9818%20463.919%2018.9526%20463.78%2018.9406C463.541%2018.92%20463.407%2019.0075%20463.229%2019.1481L463.421%2019.0383L463.389%2019.0486H463.621L463.59%2019.0366L463.781%2019.1464C463.588%2018.9801%20463.433%2018.908%20463.168%2018.9286C462.982%2018.9441%20462.813%2019.0246%20462.609%2019.0538H462.841L462.802%2019.0383L462.994%2019.1481C462.853%2019.0263%20462.71%2018.9235%20462.513%2018.9475C462.353%2018.9681%20462.256%2019.0624%20462.137%2019.1584L462.329%2019.0486L462.297%2019.0589H462.529C462.285%2019.0178%20462.038%2019.0143%20461.79%2019.0263L462.01%2019.0846C462.085%2019.1687%20462.095%2019.1772%20462.041%2019.1104C462.022%2019.0829%20462.001%2019.0572%20461.977%2019.0349C461.919%2018.9801%20461.831%2018.9321%20461.754%2018.9115C461.665%2018.8875%20461.569%2018.896%20461.482%2018.9218C461.463%2018.9269%20461.296%2019.0006%20461.364%2018.9818H461.595C461.484%2018.9629%20461.383%2018.9269%20461.266%2018.9406C461.209%2018.9475%20461.17%2018.9578%20461.116%2018.9818C461.125%2018.9783%20460.974%2019.0504%20461.05%2019.0281H461.282C461.137%2019.0023%20461.008%2018.9132%20460.857%2018.9132C460.676%2018.9132%20460.556%2019.0246%20460.422%2019.1275L460.613%2019.0178L460.582%2019.0281L460.918%2019.0709C461.003%2019.1669%20461.022%2019.1824%20460.972%2019.1189L460.904%2019.0315C460.864%2018.9886%20460.817%2018.9543%20460.765%2018.9269C460.658%2018.8703%20460.545%2018.8583%20460.428%2018.884C460.373%2018.896%20460.321%2018.9149%20460.272%2018.9406C460.352%2018.9252%20460.354%2018.9218%20460.275%2018.9355C460.092%2018.9183%20460.519%2019.0229%20460.28%2018.9115C460.195%2018.872%20460.112%2018.8566%20460.016%2018.8686C459.855%2018.8875%20459.758%2018.9835%20459.638%2019.0761L459.829%2018.9663C459.829%2018.9663%20459.634%2018.9201%20459.601%2018.9166C459.478%2018.9063%20459.356%2018.8618%20459.232%2018.8772C459.162%2018.8858%20459.089%2018.9029%20459.03%2018.9406C458.948%2018.9921%20459.039%2018.9475%20459.044%2018.9509C459.014%2018.9355%20458.969%2018.9286%20458.934%2018.92C458.891%2018.9115%20458.755%2018.9269%20458.737%2018.92L458.929%2019.0298C458.737%2018.8755%20458.577%2018.8086%20458.344%2018.8515C458.354%2018.8498%20458.206%2018.8429%20458.304%2018.8618C458.394%2018.8806%20458.253%2018.8275%20458.246%2018.824C458.17%2018.7897%20458.084%2018.764%20458.002%2018.7435C457.459%2018.608%20457.227%2019.4344%20457.771%2019.5698V19.575Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M457.384%2016.0301C457.434%2016.0421%20457.49%2016.0558%20457.537%2016.0764C457.478%2016.0507%20457.635%2016.1364%20457.67%2016.145C457.751%2016.1673%20457.839%2016.1707%20457.922%2016.169C457.953%2016.1707%20457.983%2016.169%20458.014%2016.1638C458.159%2016.1518%20458.169%2016.145%20458.042%2016.145L457.851%2016.0352C457.94%2016.1073%20458.025%2016.181%20458.138%2016.2136C458.232%2016.241%20458.331%2016.2273%20458.419%2016.2358C458.526%2016.2478%20458.633%2016.2753%20458.742%2016.2701C458.816%2016.2667%20458.884%2016.2513%20458.95%2016.2204C458.941%2016.2256%20459.089%2016.1467%20459.019%2016.169H458.788C458.979%2016.2067%20459.176%2016.2478%20459.369%2016.265C459.627%2016.289%20459.765%2016.2101%20459.962%2016.0593L459.77%2016.169L459.801%2016.1587H459.57C459.477%2016.1261%20459.739%2016.2444%20459.685%2016.229C459.754%2016.2496%20459.819%2016.2564%20459.892%2016.253C460.028%2016.2461%20460.132%2016.2033%20460.272%2016.1673L459.936%2016.1244C459.85%2016.0284%20459.831%2016.013%20459.88%2016.0764C459.908%2016.1175%20459.939%2016.1553%20459.974%2016.1896C460.05%2016.2616%20460.146%2016.3044%20460.249%2016.3181C460.458%2016.3456%20460.589%2016.229%20460.742%2016.1124L460.55%2016.2221L460.582%2016.2118H460.35C460.449%2016.2444%20460.55%2016.2907%20460.66%2016.3113C460.754%2016.3284%20460.839%2016.3284%20460.932%2016.2993C460.951%2016.2924%20461.113%2016.2136%20461.052%2016.2324H460.82C460.932%2016.2513%20461.033%2016.2856%20461.149%2016.2736C461.207%2016.2667%20461.245%2016.2564%20461.299%2016.2341C461.294%2016.2358%20461.442%2016.1741%20461.367%2016.1947L461.031%2016.1518C460.965%2016.121%20461.045%2016.1827%20461.066%2016.2033C461.115%2016.2496%20461.174%2016.2821%20461.237%2016.3061C461.376%2016.3576%20461.566%2016.3507%20461.716%2016.3456C461.851%2016.3421%20462.012%2016.3781%20462.142%2016.3439C462.273%2016.3096%20462.36%2016.2221%20462.461%2016.1398L462.269%2016.2496L462.301%2016.2393H462.069L462.107%2016.2547L461.916%2016.145C462.113%2016.3164%20462.271%2016.373%20462.532%2016.3233C462.567%2016.3164%20462.602%2016.3113%20462.637%2016.301C462.66%2016.2941%20462.811%2016.2204%20462.736%2016.2547C462.646%2016.2959%20462.828%2016.2393%20462.815%2016.241C462.788%2016.2444%20462.91%2016.2444%20462.881%2016.2324L462.689%2016.1227C462.816%2016.2341%20462.938%2016.3456%20463.121%2016.3456C463.304%2016.3456%20463.422%2016.2341%20463.555%2016.1295L463.363%2016.2393C463.341%2016.2684%20463.363%2016.2736%20463.435%2016.2547L463.215%2016.1964C463.13%2016.1004%20463.112%2016.085%20463.161%2016.1484C463.189%2016.1896%20463.22%2016.2273%20463.255%2016.2616C463.342%2016.3421%20463.468%2016.397%20463.59%2016.397C463.712%2016.397%20463.835%2016.3421%20463.924%2016.2598C463.959%2016.2238%20463.99%2016.1861%20464.018%2016.145C464.069%2016.0798%20464.051%2016.0953%20463.968%2016.1878L463.631%2016.2307L463.663%2016.2427L463.471%2016.133C463.673%2016.3061%20463.894%2016.4142%20464.175%2016.3593C464.213%2016.3524%20464.25%2016.3473%20464.286%2016.3319C464.304%2016.325%20464.156%2016.2701%20464.269%2016.3267C464.401%2016.3936%20464.539%2016.4124%20464.683%2016.3696C464.692%2016.3661%20464.831%2016.3164%20464.826%2016.2976C464.844%2016.3541%20464.602%2016.2307%20464.739%2016.313C464.851%2016.3799%20464.988%2016.3867%20465.115%2016.3936C465.253%2016.4004%20465.389%2016.4073%20465.518%2016.3507C465.519%2016.3507%20465.652%2016.2718%20465.584%2016.3061C465.62%2016.289%20465.725%2016.2513%20465.741%2016.2461H465.509L465.54%2016.2581L465.349%2016.1484C465.598%2016.3816%20465.88%2016.4724%20466.209%2016.3404C466.239%2016.3284%20466.441%2016.2581%20466.328%2016.2787C466.35%2016.2753%20466.423%2016.2667%20466.446%2016.2736C466.544%2016.2993%20466.608%2016.3439%20466.718%2016.3439C466.81%2016.3439%20466.92%2016.2976%20466.989%2016.2821H466.758C466.861%2016.2976%20467.017%2016.2959%20467.11%2016.3284L466.918%2016.2187C467.221%2016.4622%20467.47%2016.4673%20467.768%2016.2136L467.576%2016.3233L467.616%2016.3079H467.385C467.385%2016.3079%20467.501%2016.3456%20467.542%2016.3541C467.655%2016.3781%20467.742%2016.349%20467.852%2016.3404C467.986%2016.3284%20468.109%2016.3044%20468.243%2016.2753H468.012L468.043%2016.2873L467.852%2016.1776C467.98%2016.289%20468.101%2016.4004%20468.285%2016.4004C468.43%2016.4004%20468.573%2016.3404%20468.714%2016.3181H468.482C468.677%2016.3764%20468.869%2016.4467%20469.078%2016.3816C469.369%2016.2924%20468.994%2016.3644%20469.222%2016.3421C469.234%2016.3421%20469.55%2016.2753%20469.52%2016.2427C469.487%2016.2633%20469.452%2016.265%20469.419%2016.2478C469.47%2016.2718%20469.522%2016.2924%20469.576%2016.3079C469.614%2016.3233%20469.684%2016.3576%20469.733%2016.3696C469.931%2016.4159%20470.1%2016.3336%20470.278%2016.277H470.046C470.095%2016.2856%20470.609%2016.3713%20470.589%2016.2581C470.595%2016.2873%20470.398%2016.2204%20470.581%2016.3044C470.643%2016.3336%20470.71%2016.349%20470.776%2016.361C470.96%2016.3919%20471.086%2016.3661%20471.255%2016.2993L471.359%2016.2564C471.419%2016.2221%20471.41%2016.2204%20471.335%2016.2513C471.382%2016.2547%20471.438%2016.2581%20471.486%2016.2787L471.295%2016.169C471.577%2016.4484%20471.85%2016.4639%20472.154%2016.1964L471.962%2016.3061L472%2016.2907H471.769C471.903%2016.3267%20472.011%2016.3679%20472.159%2016.361C472.228%2016.3576%20472.3%2016.3541%20472.366%2016.3336C472.603%2016.2616%20472.326%2016.3044%20472.512%2016.3199C472.613%2016.3284%20472.713%2016.3164%20472.815%2016.3301C472.995%2016.3559%20473.096%2016.3233%20473.256%2016.2719H473.024L473.056%2016.2821L472.864%2016.1724C472.96%2016.2513%20473.04%2016.3353%20473.167%2016.3696C473.31%2016.409%20473.434%2016.3644%20473.571%2016.3387H473.34C473.43%2016.3507%20473.521%2016.3833%20473.613%2016.3833C473.705%2016.3833%20473.794%2016.349%20473.885%2016.3319H473.653C473.827%2016.3576%20474.024%2016.4056%20474.198%2016.3593C474.277%2016.3387%20474.364%2016.2907%20474.421%2016.2358C474.442%2016.2153%20474.531%2016.1553%20474.458%2016.1861L474.238%2016.2444C474.303%2016.2461%20474.416%2016.2307%20474.475%2016.2513L474.284%2016.1415C474.484%2016.2959%20474.613%2016.3404%20474.867%2016.3267C474.972%2016.3216%20475.078%2016.3353%20475.181%2016.3301C475.283%2016.325%20475.358%2016.2907%20475.454%2016.2701H475.222C475.184%2016.2547%20475.188%2016.2598%20475.236%2016.2839C475.282%2016.3079%20475.33%2016.3267%20475.379%2016.337C475.477%2016.3593%20475.566%2016.3439%20475.663%2016.3267C475.806%2016.301%20475.949%2016.2616%20476.081%2016.2256H475.849C475.775%2016.2016%20475.917%2016.2753%20475.916%2016.2736C475.982%2016.3044%20476.046%2016.3233%20476.123%2016.3233C476.175%2016.3233%20476.229%2016.3096%20476.278%2016.2959C476.213%2016.3147%20476.489%2016.1981%20476.395%2016.229H476.163C476.229%2016.241%20476.297%2016.2564%20476.36%2016.2787L476.168%2016.169C476.344%2016.3061%20476.503%2016.4124%20476.736%2016.3473C476.781%2016.3336%20476.825%2016.3164%20476.867%2016.2959C476.804%2016.3113%20476.818%2016.3164%20476.908%2016.3079C477.009%2016.3079%20477.088%2016.2684%20477.182%2016.2478H476.95C476.884%2016.229%20477.049%2016.3027%20477.069%2016.3079C477.166%2016.3387%20477.26%2016.3404%20477.359%2016.313C477.537%2016.265%20477.481%2016.2427%20477.654%2016.2101H477.422C477.445%2016.2136%20477.615%2016.2564%20477.555%2016.2341C477.615%2016.2564%20477.671%2016.2993%20477.737%2016.3147C477.955%2016.3661%20478.119%2016.2564%20478.279%2016.1244L478.087%2016.2341L478.128%2016.2187H477.896L477.922%2016.229L477.73%2016.1193C477.847%2016.2307%20477.936%2016.3421%20478.114%2016.3627C478.324%2016.3884%20478.455%2016.2753%20478.605%2016.1518L478.413%2016.2616C478.413%2016.2616%20478.265%2016.1981%20478.385%2016.2547C478.452%2016.2856%20478.514%2016.3079%20478.587%2016.3164C478.728%2016.3336%20478.845%2016.2804%20478.971%2016.2307L479.075%2016.1878C479.061%2016.2101%20479.044%2016.2187%20479.021%2016.2136C478.96%2016.181%20479.127%2016.265%20479.16%2016.2719C479.254%2016.2941%20479.34%2016.2856%20479.43%2016.2581C479.453%2016.2513%20479.608%2016.1656%20479.547%2016.1861H479.315L479.355%2016.1998L479.164%2016.0901C479.279%2016.1776%20479.383%2016.265%20479.533%2016.2821C479.608%2016.2907%20479.674%2016.2821%20479.746%2016.2616C479.766%2016.2547%20479.925%2016.1707%20479.862%2016.1913H479.631C479.791%2016.2358%20479.946%2016.3044%20480.12%2016.2821C480.153%2016.2787%20480.406%2016.1844%20480.298%2016.2153C480.404%2016.1844%20480.538%2016.1878%20480.65%2016.1724H480.418L480.449%2016.1861L480.258%2016.0764C480.352%2016.169%20480.427%2016.2547%20480.561%2016.2924C480.707%2016.3353%20480.825%2016.2856%20480.965%2016.2547H480.733C480.984%2016.289%20481.186%2016.289%20481.437%2016.2461H481.205C481.378%2016.277%20481.515%2016.2976%20481.695%2016.2719C481.829%2016.253%20481.938%2016.2084%20482.066%2016.1707H481.834C481.883%2016.1793%20481.947%2016.1913%20481.992%2016.2084C481.947%2016.1913%20481.989%2016.2221%20482.006%2016.2307C482.142%2016.2907%20482.262%2016.3147%20482.396%2016.3216C482.531%2016.3284%20482.687%2016.325%20482.813%2016.2547C482.863%2016.2273%20482.902%2016.193%20482.94%2016.1518L483.008%2016.0644C483.057%2015.9975%20483.039%2016.0095%20482.956%2016.0987L482.619%2016.1415L482.646%2016.1518L482.454%2016.0421C482.431%2016.0044%20482.435%2016.0078%20482.466%2016.0524C482.494%2016.0935%20482.525%2016.1313%20482.56%2016.1656C482.639%2016.2376%20482.733%2016.2804%20482.837%2016.2941C483.05%2016.3199%20483.184%2016.205%20483.328%2016.0713L483.137%2016.181C483.137%2016.181%20483.128%2016.1793%20483.124%2016.1724L482.933%2016.0627C483.077%2016.1947%20483.213%2016.3147%20483.426%2016.2856C483.53%2016.2718%20483.624%2016.2273%20483.703%2016.157C483.738%2016.1227%20483.769%2016.0833%20483.797%2016.0421C483.846%2015.9787%20483.828%2015.9924%20483.745%2016.0867L483.408%2016.1295L483.434%2016.1398L483.243%2016.0301C483.374%2016.1553%20483.482%2016.2821%20483.684%2016.2821C483.805%2016.2821%20483.929%2016.2273%20484.018%2016.1467C484.049%2016.1175%20484.173%2015.977%20484.121%2016.0284L483.929%2016.1381L483.955%2016.1278H483.724C483.804%2016.1433%20483.882%2016.1673%20483.96%2016.1844C483.981%2016.1896%20484.075%2016.2221%20484.014%2016.1981C484.07%2016.2187%20484.117%2016.2564%20484.178%2016.2736C484.307%2016.3096%20484.445%2016.2941%20484.56%2016.2256C484.601%2016.2016%20484.64%2016.1656%20484.673%2016.1313C484.701%2016.097%20484.729%2016.0627%20484.755%2016.0267C484.791%2015.9804%20484.769%2016.001%20484.689%2016.0901L484.469%2016.1484C484.605%2016.1587%20484.682%2016.1861%20484.823%2016.1861C484.964%2016.1861%20485.096%2016.1433%20485.213%2016.1141H484.981C485.127%2016.1433%20485.26%2016.2204%20485.413%2016.2238C485.491%2016.2256%20485.613%2016.2136%20485.687%2016.1964C485.735%2016.1827%20485.784%2016.1638%20485.829%2016.1415C485.878%2016.1158%20485.883%2016.109%20485.843%2016.121H485.612L485.652%2016.1364L485.46%2016.0267C485.631%2016.169%20485.794%2016.2393%20485.993%2016.2513C486.169%2016.2616%20486.31%2016.181%20486.476%2016.1467H486.244C486.409%2016.1947%20486.554%2016.2461%20486.733%2016.2273C486.873%2016.2118%20486.975%2016.1484%20487.104%2016.109H486.873C487.057%2016.1347%20487.177%2016.2187%20487.423%2016.2307C487.7%2016.2427%20487.85%2016.193%20488.052%2016.0112L487.86%2016.121L487.892%2016.109H487.66C487.813%2016.157%20487.923%2016.1878%20488.09%2016.1724C488.236%2016.1587%20488.376%2016.133%20488.52%2016.109H488.289L488.329%2016.1227L488.137%2016.013C488.316%2016.157%20488.484%2016.2324%20488.721%2016.2358C488.921%2016.2393%20489.13%2016.1878%20489.306%2016.1433H489.074C489.215%2016.1707%20489.33%2016.2187%20489.478%2016.1776C489.607%2016.1415%20489.687%2016.0541%20489.779%2015.9684L489.588%2016.0781L489.619%2016.0661L489.283%2016.0232C489.2%2015.9324%20489.184%2015.9204%20489.233%2015.9855C489.262%2016.0267%20489.294%2016.0644%20489.327%2016.1021C489.403%2016.1741%20489.499%2016.217%20489.604%2016.2307C489.814%2016.2581%20489.952%2016.1415%20490.093%2016.0078L489.901%2016.1175C489.938%2016.1021%20490.084%2016.0747%20490.09%2016.049L489.962%2016.0764C490.086%2016.0798%20490.116%2016.0867%20490.055%2016.097L489.863%2015.9872C489.99%2016.085%20490.117%2016.1878%20490.288%2016.1878C490.363%2016.1878%20490.481%2016.1604%20490.548%2016.1175C490.607%2016.0833%20490.598%2016.0798%20490.523%2016.1073C490.549%2016.1004%20490.577%2016.1004%20490.603%2016.1073C490.65%2016.1141%20490.656%2016.1141%20490.617%2016.1107C490.643%2016.1347%20490.675%2016.1501%20490.71%2016.1604C490.795%2016.1981%20490.88%2016.2153%20490.974%2016.2016C491.063%2016.1878%20491.14%2016.157%20491.211%2016.1038C491.232%2016.0884%20491.373%2015.9924%20491.291%2016.0267L490.955%2016.0695L490.986%2016.0815L490.795%2015.9718C490.908%2016.0833%20491.004%2016.1776%20491.171%2016.2016C491.272%2016.2153%20491.403%2016.2016%20491.5%2016.1776C491.542%2016.1673%20491.676%2016.0918%20491.683%2016.097C491.652%2016.121%20491.62%2016.1244%20491.587%2016.109C491.542%2016.0918%20491.544%2016.0987%20491.594%2016.1278C491.661%2016.1707%20491.772%2016.1981%20491.852%2016.1981C492.035%2016.1981%20492.157%2016.0867%20492.284%2015.9735L492.092%2016.0833L492.124%2016.0713H491.892L491.924%2016.0815L491.732%2015.9718C491.863%2016.0798%20491.983%2016.193%20492.166%2016.193C492.319%2016.193%20492.456%2016.1158%20492.592%2016.0713H492.361C492.268%2016.0404%20492.54%2016.1587%20492.477%2016.1398C492.566%2016.1673%20492.655%2016.1758%20492.747%2016.1518C492.88%2016.1193%20492.965%2016.0318%20493.064%2015.9495L492.873%2016.0593L492.904%2016.049H492.672C492.821%2016.0798%20492.941%2016.1055%20493.097%2016.097C493.655%2016.0678%20493.658%2015.2106%20493.097%2015.2397C492.955%2015.2466%20492.821%2015.1849%20492.672%2015.2226C492.54%2015.2552%20492.456%2015.3443%20492.355%2015.4249L492.547%2015.3152L492.516%2015.3255H492.747C492.841%2015.3563%20492.571%2015.238%20492.631%2015.2569C492.54%2015.2294%20492.455%2015.2226%20492.361%2015.2449C492.251%2015.2706%20492.162%2015.3272%20492.049%2015.3512H492.281L492.249%2015.3409L492.441%2015.4506C492.31%2015.3409%20492.19%2015.2294%20492.007%2015.2294C491.824%2015.2294%20491.702%2015.3426%20491.575%2015.454L491.767%2015.3443L491.735%2015.3563H491.967C492.033%2015.3769%20491.87%2015.2946%20491.85%2015.2894C491.763%2015.262%20491.669%2015.2569%20491.579%2015.2603C491.488%2015.2637%20491.413%2015.274%20491.333%2015.3083C491.3%2015.3186%20491.269%2015.334%20491.243%2015.3563C491.279%2015.3289%20491.302%2015.3272%20491.312%2015.3546L491.504%2015.4643C491.38%2015.3426%20491.256%2015.2277%20491.07%2015.2277C490.884%2015.2277%20490.762%2015.3426%20490.638%2015.4643L490.83%2015.3546L490.798%2015.3683H491.03C491.07%2015.3769%20491.065%2015.3683%20491.016%2015.3426C490.969%2015.3203%20490.922%2015.3014%20490.873%2015.286C490.79%2015.2637%20490.685%2015.2534%20490.6%2015.2483C490.514%2015.2432%20490.407%2015.2483%20490.328%2015.2654C490.279%2015.2809%20490.231%2015.298%20490.185%2015.322C490.137%2015.3477%20490.133%2015.3546%20490.173%2015.346H490.405L490.366%2015.3323L490.558%2015.442C490.173%2015.1437%20489.743%2015.1591%20489.388%2015.4952L489.579%2015.3855L489.548%2015.3975L489.884%2015.4403C489.968%2015.5312%20489.983%2015.5432%20489.935%2015.478C489.907%2015.4369%20489.874%2015.3992%20489.84%2015.3615C489.764%2015.2894%20489.668%2015.2466%20489.564%2015.2329C489.353%2015.2054%20489.215%2015.3237%20489.074%2015.4558L489.266%2015.346L489.234%2015.358H489.466C489.288%2015.3237%20489.156%2015.2894%20488.973%2015.3529C488.909%2015.3803%20488.903%2015.382%20488.957%2015.3597C488.917%2015.3632%20488.879%2015.3666%20488.839%2015.37C488.768%2015.3769%20488.703%2015.3855%20488.64%2015.3632L488.832%2015.4729C488.707%2015.3717%20488.578%2015.2689%20488.405%2015.2689C488.289%2015.2689%20488.168%2015.31%20488.052%2015.3203C488.001%2015.3186%20487.999%2015.3255%20488.048%2015.3443L487.944%2015.3014C487.85%2015.2723%20487.757%2015.2603%20487.66%2015.2843C487.524%2015.3186%20487.44%2015.4077%20487.343%2015.4952L487.534%2015.3855C487.534%2015.3855%20487.273%2015.3392%20487.444%2015.3923C487.364%2015.3666%20487.294%2015.3237%20487.209%2015.3066C487.01%2015.2672%20486.874%2015.2809%20486.688%2015.3529C486.643%2015.3632%20486.599%2015.3803%20486.557%2015.4026C486.577%2015.3735%20486.599%2015.3666%20486.629%2015.382C486.5%2015.3237%20486.383%2015.2929%20486.24%2015.3237C486.171%2015.3392%20486.099%2015.3563%20486.031%2015.3786C485.885%2015.43%20485.894%2015.4369%20486.052%2015.4009C485.929%2015.3992%20485.899%2015.3923%20485.96%2015.3803L486.152%2015.49C485.965%2015.334%20485.706%2015.19%20485.465%2015.3529C485.401%2015.3957%20485.446%2015.3615%20485.488%2015.3632L485.523%2015.3889C485.481%2015.3666%20485.437%2015.3495%20485.392%2015.3392C485.3%2015.31%20485.188%2015.2757%20485.093%2015.2757C485.039%2015.2757%20484.976%2015.2877%20484.925%2015.3032L484.821%2015.346L484.857%2015.3289C484.772%2015.3323%20484.689%2015.3152%20484.582%2015.3049C484.455%2015.2929%20484.331%2015.298%20484.218%2015.3649C484.159%2015.4009%20484.114%2015.4489%20484.07%2015.502C483.98%2015.6135%20484.006%2015.5329%20484.089%2015.4986L484.426%2015.4558C484.502%2015.478%20484.358%2015.4112%20484.359%2015.4129C484.318%2015.394%20484.284%2015.3872%20484.241%2015.3752C484.156%2015.3512%20484.065%2015.3289%20483.978%2015.31C483.844%2015.2809%20483.71%2015.2894%20483.59%2015.358C483.548%2015.382%20483.509%2015.4163%20483.476%2015.4506C483.529%2015.3975%20483.314%2015.6272%20483.398%2015.5432L483.59%2015.4335L483.563%2015.4438H483.795L483.769%2015.4335L483.96%2015.5432C483.83%2015.418%20483.722%2015.2912%20483.52%2015.2912C483.398%2015.2912%20483.274%2015.346%20483.185%2015.4283C483.151%2015.4626%20483.119%2015.502%20483.091%2015.5432C483.043%2015.6066%20483.06%2015.5929%20483.144%2015.4986L483.48%2015.4558L483.448%2015.4438L483.64%2015.5535C483.48%2015.406%20483.354%2015.322%20483.126%2015.3255C482.898%2015.3289%20482.773%2015.4129%20482.614%2015.5586L482.806%2015.4489L482.774%2015.4609H483.006L482.98%2015.4506L483.172%2015.5603C483.194%2015.5981%20483.191%2015.5946%20483.159%2015.55C483.131%2015.5089%20483.1%2015.4712%20483.065%2015.4369C482.976%2015.3546%20482.853%2015.3014%20482.731%2015.3014C482.609%2015.3014%20482.485%2015.3563%20482.396%2015.4386C482.363%2015.4763%20482.332%2015.5158%20482.302%2015.5552C482.254%2015.6221%20482.271%2015.6101%20482.355%2015.5209L482.574%2015.4626C482.522%2015.4626%20482.468%2015.4695%20482.417%2015.4678C482.447%2015.4626%20482.431%2015.4592%20482.37%2015.4575C482.297%2015.4472%20482.294%2015.4472%20482.356%2015.4575C482.405%2015.4712%20482.414%2015.4695%20482.381%2015.4506C482.36%2015.4352%20482.335%2015.4232%20482.309%2015.4163C482.268%2015.3975%20482.233%2015.3906%20482.191%2015.3786C481.961%2015.3117%20481.811%2015.3717%20481.594%2015.4215C481.531%2015.4352%20481.527%2015.4369%20481.458%2015.4249C481.327%2015.4043%20481.221%2015.4386%20481.095%2015.4455C481.054%2015.4472%20481.007%2015.4369%20480.96%2015.43C480.81%2015.4043%20480.71%2015.4438%20480.571%2015.4746H480.803L480.771%2015.4609L480.963%2015.5706C480.815%2015.4249%20480.69%2015.3272%20480.47%2015.3392C480.385%2015.3443%20480.298%2015.3563%20480.214%2015.3649C480.09%2015.3769%20480.049%2015.4129%20479.942%2015.4489H480.174C480.061%2015.4335%20479.969%2015.3923%20479.859%2015.3649C479.766%2015.3426%20479.678%2015.3495%20479.589%2015.3786C479.568%2015.3855%20479.409%2015.4695%20479.472%2015.4489H479.704L479.664%2015.4352L479.855%2015.5449C479.74%2015.4575%20479.636%2015.37%20479.486%2015.3529C479.411%2015.3443%20479.345%2015.3529%20479.274%2015.3735C479.251%2015.3803%20479.096%2015.466%20479.157%2015.4455H479.389C479.227%2015.394%20479.08%2015.3357%20478.899%2015.3546C478.762%2015.37%20478.652%2015.442%20478.528%2015.4815H478.76C478.798%2015.4952%20478.795%2015.4883%20478.746%2015.4626C478.701%2015.4386%20478.652%2015.4215%20478.603%2015.4077C478.512%2015.3855%20478.422%2015.3957%20478.33%2015.4077C478.145%2015.4283%20478.035%2015.5123%20477.896%2015.6272L478.087%2015.5175L478.056%2015.5278H478.288L478.262%2015.5175L478.453%2015.6272C478.349%2015.5278%20478.283%2015.43%20478.129%2015.3906C477.913%2015.3357%20477.744%2015.4506%20477.588%2015.5809L477.779%2015.4712L477.739%2015.4866H477.971C478.011%2015.4986%20478.006%2015.4918%20477.957%2015.466C477.912%2015.442%20477.863%2015.4249%20477.814%2015.4112C477.734%2015.3889%20477.621%2015.3666%20477.541%2015.3666C477.455%2015.3666%20477.349%2015.394%20477.267%2015.4197C477.217%2015.4318%20477.17%2015.4506%20477.124%2015.4746C477.076%2015.5003%20477.072%2015.5055%20477.11%2015.49H477.342C477.38%2015.5038%20477.377%2015.4986%20477.328%2015.4729C477.283%2015.4489%20477.234%2015.43%20477.185%2015.418C477.086%2015.394%20477.001%2015.418%20476.901%2015.43C476.759%2015.4489%20476.621%2015.4815%20476.482%2015.526H476.713L476.673%2015.5123L476.865%2015.6221C476.734%2015.5209%20476.612%2015.442%20476.449%2015.4095C476.353%2015.3906%20476.262%2015.3769%20476.165%2015.4009C476.116%2015.4163%20476.067%2015.4335%20476.022%2015.4575C475.973%2015.4832%20475.968%2015.49%20476.008%2015.4815H476.24C476.28%2015.4883%20476.274%2015.4815%20476.226%2015.454C476.179%2015.4317%20476.132%2015.4129%20476.083%2015.3975C475.989%2015.3752%20475.891%2015.382%20475.799%2015.4112C475.506%2015.5038%20475.884%2015.43%20475.653%2015.4558C475.557%2015.466%20475.473%2015.4918%20475.379%2015.5089H475.611C475.649%2015.5243%20475.646%2015.5192%20475.597%2015.4952C475.552%2015.4712%20475.503%2015.4523%20475.454%2015.442C475.355%2015.418%20475.269%2015.442%20475.17%2015.454C475.052%2015.4678%20475.172%2015.4746%20475.024%2015.466C474.972%2015.4626%20474.82%2015.4969%20474.785%2015.4849L474.977%2015.5946C474.766%2015.4335%20474.618%2015.3992%20474.355%2015.3906C474.23%2015.3872%20474.115%2015.3906%20474.001%2015.4523C473.958%2015.4763%20473.918%2015.5072%20473.881%2015.5415C473.859%2015.5638%20473.799%2015.6015%20473.86%2015.5741L474.08%2015.5158C473.975%2015.514%20473.869%2015.4883%20473.766%2015.4883C473.671%2015.4883%20473.585%2015.5226%20473.495%2015.5398H473.726C473.636%2015.5278%20473.545%2015.4952%20473.453%2015.4952C473.361%2015.4952%20473.272%2015.5295%20473.181%2015.5466H473.413L473.381%2015.5363L473.573%2015.6461C473.477%2015.5672%20473.397%2015.4832%20473.27%2015.4489C473.108%2015.4043%20473.007%2015.4626%20472.866%2015.5089H473.098C472.808%2015.4712%20472.474%2015.3975%20472.187%2015.4815L472.082%2015.5243C472.105%2015.4935%20472.129%2015.4918%20472.155%2015.5175C472.066%2015.4798%20471.983%2015.4455%20471.884%2015.4455C471.713%2015.4455%20471.579%2015.5483%20471.459%2015.6546L471.65%2015.5449L471.612%2015.5603H471.844L471.812%2015.5466L472.004%2015.6563C471.83%2015.4849%20471.661%2015.406%20471.413%2015.3889C471.29%2015.3803%20471.163%2015.3872%20471.049%2015.4369C471.048%2015.4369%20470.913%2015.514%20470.985%2015.4798C470.95%2015.4969%20470.84%2015.5329%20470.828%2015.5363H471.06C471.034%2015.5329%20470.873%2015.4866%20470.929%2015.5089C470.868%2015.4849%20470.814%2015.4403%20470.746%2015.4232C470.556%2015.3769%20470.375%2015.4369%20470.201%2015.4849H470.433C470.286%2015.4558%20470.171%2015.4112%20470.018%2015.454C469.914%2015.4832%20469.842%2015.5226%20469.731%2015.538H469.962C469.783%2015.4832%20469.659%2015.394%20469.456%2015.3957C469.376%2015.3957%20469.299%2015.4026%20469.222%2015.4249C469.168%2015.4386%20469.121%2015.4626%20469.079%2015.4969C469.168%2015.4849%20469.165%2015.4866%20469.065%2015.4969C469.008%2015.5003%20468.952%2015.5106%20468.898%2015.5243C468.785%2015.5826%20468.762%2015.5878%20468.832%2015.5363C468.945%2015.5621%20468.745%2015.4918%20468.714%2015.4832C468.531%2015.4403%20468.346%2015.5175%20468.169%2015.55H468.4L468.369%2015.538L468.56%2015.6478C468.395%2015.5055%20468.247%2015.3889%20468.012%2015.4403C467.859%2015.4746%20467.7%2015.4969%20467.542%2015.5192H467.773C467.655%2015.4918%20467.529%2015.4335%20467.385%2015.4729C467.263%2015.5055%20467.169%2015.5843%20467.075%2015.6649L467.266%2015.5552L467.228%2015.5706H467.46L467.421%2015.5569L467.613%2015.6666C467.528%2015.5981%20467.451%2015.5295%20467.343%2015.4935C467.261%2015.4678%20467.183%2015.4763%20467.103%2015.466C467.031%2015.4575%20466.949%2015.4318%20466.874%2015.4318C466.782%2015.4318%20466.672%2015.478%20466.603%2015.4935H466.834C466.674%2015.454%20466.512%2015.4026%20466.328%2015.4129C466.131%2015.4232%20465.998%2015.5123%20465.821%2015.5638H466.052C465.99%2015.5518%20465.923%2015.538%20465.864%2015.5158L466.056%2015.6255C465.932%2015.5089%20465.807%2015.3957%20465.624%2015.3957C465.519%2015.3957%20465.445%2015.4317%20465.352%2015.4712C465.31%2015.4883%20465.124%2015.5518%20465.201%2015.5432C465.258%2015.5278%20465.242%2015.5243%20465.154%2015.5312C465.054%2015.5209%20465.049%2015.5226%20465.14%2015.5363C465.058%2015.502%20464.992%2015.4558%20464.899%2015.442C464.797%2015.4283%20464.669%2015.442%20464.57%2015.4643C464.521%2015.4798%20464.473%2015.4969%20464.427%2015.5209C464.379%2015.5466%20464.373%2015.5552%20464.413%2015.5466H464.645C464.744%2015.5775%20464.457%2015.4626%20464.528%2015.4832C464.448%2015.4592%20464.379%2015.4592%20464.295%2015.4643C464.217%2015.4695%20464.123%2015.4712%20464.049%2015.4969C464.002%2015.514%20464.002%2015.4969%20463.99%2015.4918L464.182%2015.6015C464.035%2015.4763%20463.901%2015.3597%20463.692%2015.3872C463.588%2015.4009%20463.492%2015.4438%20463.415%2015.5158C463.381%2015.55%20463.349%2015.5895%20463.321%2015.6306C463.271%2015.6958%20463.288%2015.6804%20463.372%2015.5878L463.708%2015.5449L463.682%2015.5346L463.874%2015.6443C463.905%2015.6769%20463.882%2015.6649%20463.865%2015.6358C463.839%2015.5963%20463.806%2015.5552%20463.771%2015.5226C463.668%2015.4249%20463.537%2015.3957%20463.398%2015.3837C463.159%2015.3632%20463.025%2015.4506%20462.848%2015.5912L463.039%2015.4815L463.008%2015.4918H463.24L463.208%2015.4798L463.4%2015.5895C463.206%2015.4232%20463.051%2015.3512%20462.787%2015.3717C462.6%2015.3872%20462.433%2015.4678%20462.228%2015.4969H462.459L462.421%2015.4815L462.613%2015.5912C462.473%2015.4695%20462.329%2015.3666%20462.132%2015.3906C461.972%2015.4112%20461.874%2015.5055%20461.756%2015.6015L461.947%2015.4918L461.916%2015.502H462.147C461.904%2015.4609%20461.656%2015.4575%20461.409%2015.4695L461.628%2015.5278C461.695%2015.5569%20461.615%2015.4969%20461.594%2015.4763C461.536%2015.4215%20461.447%2015.3735%20461.371%2015.3529C461.282%2015.3289%20461.186%2015.3375%20461.099%2015.3632C461.08%2015.3683%20460.913%2015.442%20460.981%2015.4232H461.212C461.101%2015.4043%20461%2015.3683%20460.883%2015.382C460.826%2015.3889%20460.787%2015.3992%20460.733%2015.4232C460.742%2015.4197%20460.59%2015.4918%20460.665%2015.4695H460.897C460.752%2015.4438%20460.622%2015.3546%20460.47%2015.3546C460.289%2015.3546%20460.169%2015.466%20460.035%2015.5689L460.226%2015.4592L460.195%2015.4695L460.531%2015.5123C460.617%2015.6083%20460.636%2015.6238%20460.585%2015.5603L460.517%2015.4729C460.477%2015.43%20460.43%2015.3957%20460.378%2015.3683C460.272%2015.3117%20460.158%2015.2997%20460.042%2015.3255C459.986%2015.3375%20459.934%2015.3563%20459.885%2015.382C459.967%2015.3666%20459.967%2015.3649%20459.889%2015.3769C459.706%2015.358%20460.132%2015.4643%20459.894%2015.3529C459.808%2015.3135%20459.725%2015.298%20459.629%2015.31C459.469%2015.3289%20459.371%2015.4249%20459.251%2015.5175L459.443%2015.4077C459.443%2015.4077%20459.248%2015.3615%20459.214%2015.358C459.091%2015.3477%20458.969%2015.3032%20458.845%2015.3186C458.776%2015.3272%20458.702%2015.3443%20458.643%2015.382C458.561%2015.4335%20458.652%2015.3889%20458.657%2015.3923C458.628%2015.3769%20458.582%2015.37%20458.547%2015.3615C458.504%2015.3529%20458.368%2015.3683%20458.351%2015.3615L458.542%2015.4712C458.349%2015.3169%20458.19%2015.25%20457.957%2015.2929C457.969%2015.2912%20457.819%2015.2843%20457.917%2015.3032C458.007%2015.322%20457.868%2015.2689%20457.859%2015.2654C457.783%2015.2312%20457.697%2015.2054%20457.616%2015.1849C457.072%2015.0494%20456.841%2015.8758%20457.384%2016.0112V16.0301Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M492.772%2019.1334C492.793%2019.1523%20492.935%2019.2929%20492.845%2019.1986L492.733%2019.01L492.739%2019.0374L492.782%2018.7065L492.768%2018.7339L492.925%2018.5796C492.697%2018.7322%20492.669%2018.8334%20492.526%2019.0357L492.683%2018.8814L492.662%2018.8934L492.998%2018.8505L492.969%2018.8437L493.16%2018.9534C493.099%2018.9054%20493.052%2018.8522%20492.988%2018.806C492.958%2018.7802%20492.951%2018.7802%20492.969%2018.806C492.927%2018.7717%20492.92%2018.7648%20492.949%2018.7871C492.881%2018.7031%20492.847%2018.6311%20492.749%2018.5745C492.706%2018.5556%20492.662%2018.5368%20492.617%2018.5196C492.524%2018.4871%20492.568%2018.5196%20492.746%2018.6156C492.711%2018.5745%20492.704%2018.5591%20492.726%2018.5728C492.707%2018.4905%20492.702%2018.5059%20492.711%2018.6174C492.726%2018.5659%20492.735%2018.5145%20492.739%2018.4613C492.742%2018.4305%20492.74%2018.3996%20492.735%2018.3688C492.73%2018.2848%20492.726%2018.199%20492.7%2018.1184C492.709%2018.1442%20492.587%2017.8613%20492.627%2017.9967V18.2247C492.604%2018.259%20492.606%2018.2539%20492.632%2018.2059C492.658%2018.1613%20492.676%2018.1133%20492.686%2018.0636C492.704%2017.9864%20492.718%2017.9007%20492.719%2017.8184C492.721%2017.7207%20492.706%2017.635%20492.657%2017.5492C492.632%2017.5081%20492.604%2017.4704%20492.571%2017.4344C492.592%2017.4567%20492.61%2017.4841%20492.618%2017.5132V17.7413C492.599%2017.815%20492.641%2017.6813%20492.643%2017.6761C492.648%2017.6658%20492.709%2017.5509%20492.672%2017.6144C492.74%2017.4961%20492.768%2017.4086%20492.779%2017.2715C492.782%2017.2321%20492.793%2017.1772%20492.787%2017.1395C492.796%2017.088%20492.786%2017.1018%20492.753%2017.1858C492.7%2017.2612%20492.699%2017.2783%20492.746%2017.2338C492.855%2017.184%20492.911%2016.9766%20492.918%2016.8789C492.92%2016.8497%20492.92%2016.8257%20492.92%2016.7966C492.923%2016.932%20492.923%2016.5771%20492.932%2016.6766C492.92%2016.5394%20492.899%2016.8154%20492.862%2016.8086C492.881%2016.812%20492.948%2016.7246%20492.951%2016.7211C493.04%2016.6131%20493.073%2016.4931%20493.059%2016.3542C493.054%2016.3097%20493.045%2016.2771%20493.033%2016.2359L492.989%2016.1331C493.007%2016.1811%20493.012%2016.1828%20493%2016.1416V16.3697C492.975%2016.4228%20492.979%2016.4228%20493.01%2016.3697C493.028%2016.344%20493.047%2016.3182%20493.066%2016.2925L492.909%2016.4468C492.761%2016.4725%20492.73%2016.488%20492.813%2016.4914C492.838%2016.4948%20492.861%2016.4948%20492.885%2016.4948C492.953%2016.4931%20493.082%2016.4743%20493.132%2016.428C493.057%2016.4965%20492.786%2016.3628%20492.958%2016.4502C493.063%2016.5034%20493.164%2016.512%20493.279%2016.524L493.059%2016.4657C493.089%2016.4794%20493.141%2016.524%20493.176%2016.5274C493.09%2016.4022%20493.064%2016.3731%20493.094%2016.4417C493.111%2016.4845%20493.129%2016.5274%20493.148%2016.5685C493.171%2016.6286%20493.195%2016.7194%20493.211%2016.7709L493.218%2016.8257C493.221%2016.776%20493.218%2016.7777%20493.205%2016.8309C493.179%2016.9063%20493.183%2017.0246%20493.202%2017.0983C493.235%2017.2252%20493.322%2017.3075%20493.406%2017.4018L493.294%2017.2132C493.306%2017.2389%20493.313%2017.2663%20493.313%2017.2938C493.327%2017.3692%20493.327%2017.3624%20493.313%2017.2732C493.333%2017.3041%20493.287%2017.4549%20493.282%2017.4858C493.266%2017.5732%20493.265%2017.6521%20493.292%2017.7395C493.305%2017.7893%20493.327%2017.8338%20493.359%2017.8733C493.446%2017.9916%20493.449%2017.9881%20493.371%2017.8647V17.6367C493.388%2017.563%20493.35%2017.6933%20493.346%2017.7018C493.319%2017.7687%20493.303%2017.8321%20493.298%2017.9058C493.298%2017.9264%20493.298%2018.0104%20493.298%2018.0053C493.299%2017.9796%20493.263%2018.0962%20493.291%2018.0327C493.32%2017.9624%20493.242%2018.0927%20493.238%2018.0996C493.202%2018.1613%20493.181%2018.2247%20493.169%2018.2933C493.169%2018.2933%20493.144%2018.4288%20493.162%2018.4322C493.144%2018.4288%20493.207%2018.3688%20493.202%2018.3739L493.393%2018.2642C493.237%2018.3293%20493.076%2018.3602%20492.982%2018.5196C492.934%2018.6002%20492.915%2018.6945%20492.918%2018.7871C492.921%2018.8368%20492.93%2018.8865%20492.941%2018.9345C492.958%2019.0168%20492.962%2018.9791%20492.948%2018.8248C492.859%2019.0391%20493.043%2019.2963%20493.252%2019.3529C493.501%2019.4197%20493.698%2019.2689%20493.789%2019.0528C493.82%2018.9791%20493.815%2018.9071%20493.805%2018.8317C493.801%2018.8008%20493.798%2018.7717%20493.791%2018.7408C493.773%2018.6602%20493.77%2018.6962%20493.78%2018.8488L493.669%2019.0374L493.69%2019.0203L493.498%2019.13C493.669%2019.0648%20493.824%2019.0237%20493.919%2018.8505C493.96%2018.7751%20494%2018.6894%20494.02%2018.6071C494.043%2018.5179%20494.026%2018.4356%20494.036%2018.3482L493.977%2018.5642C493.939%2018.6362%20494.012%2018.5162%20494.034%2018.4785C494.055%2018.4442%20494.069%2018.4133%20494.085%2018.3739C494.127%2018.271%20494.162%2018.1699%20494.17%2018.0584C494.174%2018.0241%20494.2%2017.9041%20494.158%2017.9967C494.099%2018.1287%20494.216%2017.8664%20494.207%2017.899C494.242%2017.7824%20494.235%2017.6624%20494.186%2017.551C494.163%2017.5012%20494.144%2017.4669%20494.108%2017.4241C494.055%2017.3469%20494.055%2017.3692%20494.109%2017.4909C494.141%2017.6384%20494.158%2017.6367%20494.162%2017.4858C494.174%2017.4086%20494.193%2017.3212%20494.182%2017.2201C494.175%2017.1395%20494.162%2017.0555%20494.137%2016.98C494.101%2016.8669%20494.022%2016.7914%20493.947%2016.7057L494.059%2016.8943C494.05%2017.0263%20494.055%2017.052%20494.074%2016.9732C494.083%2016.9217%20494.09%2016.872%20494.094%2016.8206C494.094%2016.7314%20494.076%2016.6303%20494.057%2016.5428C494.029%2016.4194%20493.975%2016.2891%20493.93%2016.1828C493.85%2015.9959%20493.768%2015.8656%20493.587%2015.761C493.528%2015.7284%20493.468%2015.6924%20493.402%2015.6753C493.259%2015.6496%20493.249%2015.653%20493.371%2015.6856C493.352%2015.6719%20493.333%2015.6599%20493.312%2015.6513C493.216%2015.6016%20493.115%2015.5844%20493.009%2015.5913C492.998%2015.5913%20492.746%2015.6221%20492.747%2015.6616C492.874%2015.6427%20492.901%2015.6324%20492.824%2015.629C492.8%2015.6256%20492.775%2015.6239%20492.751%2015.6239C492.655%2015.6239%20492.561%2015.6513%20492.479%2015.701C492.352%2015.7799%20492.214%2015.9702%20492.173%2016.1142C492.145%2016.2068%20492.148%2016.3028%20492.173%2016.3937C492.19%2016.4382%20492.209%2016.4845%20492.228%2016.5274C492.211%2016.4794%20492.207%2016.4777%20492.218%2016.5188V16.2908C492.301%2016.1759%20492.312%2016.1434%20492.253%2016.1965C492.214%2016.2274%20492.183%2016.2634%20492.159%2016.3062C492.112%2016.3782%20492.091%2016.4485%20492.078%2016.5308C492.073%2016.5634%20492.07%2016.596%20492.068%2016.6286C492.075%2016.5823%20492.075%2016.584%20492.068%2016.6354C492.056%2016.7177%20492.065%2016.7931%20492.054%2016.8737L492.113%2016.6577C492.173%2016.5617%20492.054%2016.704%20492.045%2016.716C491.997%2016.7777%20491.967%2016.8394%20491.948%2016.9166C491.929%2016.9937%20491.925%2017.0829%20491.92%2017.1635L491.915%2017.2166C491.913%2017.3006%20491.917%2017.2869%20491.929%2017.1806C491.936%2017.1943%20491.857%2017.3246%20491.843%2017.3572C491.885%2017.2526%20491.77%2017.5544%20491.795%2017.4738C491.749%2017.6178%20491.772%2017.7687%20491.85%2017.8973C492.058%2018.2367%20491.838%2017.6332%20491.85%2017.839C491.836%2017.9247%20491.842%2017.9144%20491.868%2017.8133C491.852%2017.8424%20491.838%2017.8733%20491.826%2017.9058C491.779%2018.0259%20491.742%2018.2865%20491.869%2018.3893C491.899%2018.4356%20491.903%2018.4288%20491.882%2018.3688C491.868%2018.3002%20491.866%2018.3002%20491.873%2018.3688C491.887%2018.4922%20491.897%2018.3293%20491.869%2018.4322C491.826%2018.5899%20491.875%2018.7562%20491.934%2018.9037C491.993%2019.0511%20492.066%2019.1883%20492.202%2019.2689C492.242%2019.2929%20492.354%2019.3066%20492.364%2019.3357L492.207%2019.2209C492.228%2019.2689%20492.258%2019.31%20492.296%2019.3477C492.329%2019.3837%20492.359%2019.4112%20492.397%2019.442C492.368%2019.418%20492.596%2019.5895%20492.497%2019.5106C492.636%2019.6221%20492.754%2019.7112%20492.948%2019.6855C493.082%2019.6683%20493.287%2019.5603%20493.319%2019.4129C493.338%2019.3254%20493.259%2019.4729%20493.331%2019.3889C493.512%2019.178%20493.36%2019.3426%20493.345%2019.3409C493.392%2019.3494%20493.517%2019.1883%20493.528%2019.1694C493.571%2019.0991%20493.601%2019.01%20493.601%2018.926C493.601%2018.8471%20493.576%2018.7511%20493.536%2018.6808C493.533%2018.6739%20493.299%2018.4373%20493.395%2018.5282C492.993%2018.1442%20492.376%2018.7494%20492.779%2019.1351L492.772%2019.1334Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M460.605%2019.5081C460.655%2019.6333%20460.706%2019.7567%20460.795%2019.8613C460.805%2019.875%20460.817%2019.8887%20460.831%2019.9024C460.922%2020.0019%20460.901%2019.9042%20460.77%2019.611C460.758%2019.6504%20460.755%2019.6967%20460.749%2019.7379C460.723%2019.9299%20460.803%2020.1116%20460.972%2020.2179C461.021%2020.2471%20461.073%2020.2693%20461.127%2020.2865C461.141%2020.2916%20461.155%2020.2951%20461.169%2020.3002C461.12%2020.2848%20461.077%2020.2608%20461.039%2020.2282L460.927%2020.0396C460.946%2019.8527%20460.945%2019.7979%20460.922%2019.8733C460.953%2019.803%20460.958%2019.7876%20460.941%2019.8287C460.92%2019.8802%20460.897%2019.9247%20460.882%2019.9762C460.837%2020.139%20460.882%2020.3191%20461.004%2020.4374C461.108%2020.5368%20461.237%2020.5677%20461.376%2020.5797C461.397%2020.5814%20461.418%2020.5848%20461.439%2020.5848C461.267%2020.5797%20461.154%2020.4717%20461.098%2020.2591C461.103%2020.3071%20461.11%2020.3534%20461.117%2020.4014C461.126%2020.4477%20461.141%2020.4905%20461.167%2020.5299C461.143%2020.3705%20461.129%2020.3242%20461.129%2020.3894C461.124%2020.4151%20461.124%2020.4477%20461.124%2020.4751C461.124%2020.6328%20461.202%2020.7511%20461.303%2020.866C461.382%2020.9569%20461.467%2021.0254%20461.584%2021.0632C461.639%2021.0803%20461.7%2021.082%20461.758%2021.0854C461.871%2021.0923%20461.683%2021.0614%20461.739%2021.0854L461.547%2020.9757C461.481%2020.9226%20461.446%2020.77%20461.477%2020.8831C461.491%2020.9329%20461.512%2020.9877%20461.537%2021.0306C461.596%2021.1334%20461.688%2021.2037%20461.796%2021.2483C461.828%2021.262%20461.979%2021.3358%20461.833%2021.2449C461.706%2021.1677%20461.782%2021.2192%20461.812%2021.2483C461.934%2021.3615%20461.746%2021.2072%20461.767%2021.0529C461.763%2021.0734%20461.765%2021.0974%20461.763%2021.118C461.753%2021.3203%20461.85%2021.5003%20462.031%2021.5981C462.003%2021.5826%20462.157%2021.6581%20462.183%2021.6564C462.122%2021.6255%20462.104%2021.6186%20462.132%2021.6358C462.141%2021.6427%20462.152%2021.6478%20462.16%2021.6529C462.207%2021.6769%20462.26%2021.6975%20462.31%2021.7095C462.355%2021.7198%20462.394%2021.7489%20462.298%2021.6941C462.495%2021.8072%20462.784%2021.7455%20462.893%2021.5398C463.003%2021.334%20462.947%2021.0734%20462.737%2020.9534C462.683%2020.9226%20462.625%2020.9003%20462.566%2020.8866L462.542%2020.8814C462.496%2020.8694%20462.509%2020.8763%20462.58%2020.9003C462.557%2020.8763%20462.425%2020.8317%20462.435%2020.8351C462.324%2020.7974%20462.486%2020.8728%20462.43%2020.8334L462.587%2020.9877L462.63%2021.1592C462.63%2021.1489%20462.63%2021.1386%20462.63%2021.1283C462.632%2021.1146%20462.634%2021.0992%20462.634%2021.0837C462.636%2021.0237%20462.629%2020.962%20462.613%2020.9037C462.573%2020.7545%20462.439%2020.6431%20462.319%2020.5522C462.26%2020.5077%20462.178%2020.4545%20462.101%2020.4511L462.322%2020.6791C462.319%2020.6671%20462.315%2020.6551%20462.313%2020.6431C462.31%2020.6277%20462.305%2020.6122%20462.301%2020.5968C462.232%2020.3756%20462.049%2020.2539%20461.821%2020.2333C461.742%2020.2265%20461.655%2020.1939%20461.859%2020.2796C462.023%2020.3499%20462%2020.3516%20461.951%2020.2951C461.937%2020.2796%20461.918%2020.2453%20461.899%2020.2368L461.997%2020.4528V20.4271C462.002%2020.4065%20462.002%2020.3876%20462%2020.3671C461.998%2020.3208%20461.99%2020.2676%20461.976%2020.2248L461.932%2020.1219L461.972%2020.2608C461.956%2020.2522%20461.956%2020.127%20461.951%2020.1048C461.939%2020.0602%20461.918%2020.0053%20461.894%2019.9659C461.84%2019.8784%20461.76%2019.815%20461.664%2019.7756C461.589%2019.7447%20461.528%2019.7361%20461.443%2019.7293C461.429%2019.7293%20461.415%2019.7276%20461.401%2019.7259C461.366%2019.7224%20461.373%2019.7259%20461.418%2019.7293C461.493%2019.7344%20461.558%2019.7653%20461.613%2019.8236L461.725%2020.0122C461.706%2020.2008%20461.707%2020.2556%20461.73%2020.1785L461.702%2020.2436C461.727%2020.2025%20461.747%2020.1493%20461.761%2020.103C461.791%2020.0122%20461.796%2019.9059%20461.767%2019.8133C461.728%2019.6916%20461.639%2019.5853%20461.525%2019.527C461.483%2019.5047%20461.436%2019.4893%20461.39%2019.4738C461.296%2019.4412%20461.465%2019.5201%20461.411%2019.4807L461.568%2019.635L461.599%2019.8904C461.601%2019.8784%20461.605%2019.8664%20461.606%2019.8544C461.615%2019.8287%20461.617%2019.7859%20461.62%2019.7636C461.636%2019.6521%20461.62%2019.5355%20461.558%2019.4395C461.551%2019.4292%20461.457%2019.2801%20461.427%2019.2818C461.448%2019.2818%20461.477%2019.3624%20461.453%2019.2972C461.446%2019.2801%20461.401%2019.1789%20461.444%2019.2869C461.401%2019.1789%20461.35%2019.0915%20461.244%2019.0315C461.15%2018.9783%20461.012%2018.9543%20460.908%2018.9886C460.704%2019.0538%20460.513%2019.2938%20460.603%2019.5167L460.605%2019.5081Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M465.99%2019.9217L466.007%2019.9422L465.896%2019.7536C465.955%2019.9217%20466.007%2020.052%20466.118%2020.1754C466.266%2020.3383%20466.43%2020.3366%20466.636%2020.3486L466.416%2020.2903L466.441%2020.3023L466.284%2020.148L466.294%2020.172L466.235%2019.9559C466.235%2020.0022%20466.235%2020.0005%20466.24%2019.9525C466.228%2020.0022%20466.223%2020.0502%20466.225%2020.1C466.226%2020.1823%20466.253%2020.2714%20466.294%2020.3417C466.383%2020.4909%20466.533%2020.5354%20466.686%2020.5937L466.495%2020.484C466.442%2020.3931%20466.434%2020.3863%20466.47%2020.4634C466.502%2020.544%20466.502%2020.5303%20466.472%2020.4223C466.496%2020.472%20466.481%2020.5423%20466.498%2020.5954C466.523%2020.6743%20466.557%2020.7412%20466.617%2020.8029L466.641%2020.8338C466.698%2020.8852%20466.693%2020.8629%20466.625%2020.7669V20.5389C466.603%2020.6966%20466.575%2020.8492%20466.66%2020.9949C466.726%2021.1098%20466.833%2021.1664%20466.935%2021.2384L466.779%2021.0841C466.803%2021.1201%20466.826%2021.1544%20466.852%2021.1887C466.855%2021.1921%20466.932%2021.307%20466.899%2021.247L466.84%2021.0309C466.859%2021.1767%20466.88%2021.3155%20466.909%2021.4595V21.2315C466.932%2021.2024%20466.935%2021.2024%20466.92%2021.2315C466.9%2021.2727%20466.883%2021.3138%20466.866%2021.355C466.846%2021.4235%20466.845%2021.4921%20466.85%2021.5607C466.85%2021.5521%20466.881%2021.7184%20466.866%2021.6601C466.866%2021.6379%20466.862%2021.6533%20466.859%2021.7064C466.928%2021.5916%20466.935%2021.5727%20466.881%2021.6481C466.779%2021.7682%20466.733%2021.9259%20466.77%2022.0802C466.794%2022.1831%20466.85%2022.2414%20466.899%2022.3288L466.84%2022.1128L466.843%2022.1402L466.902%2021.9242C467.005%2021.8333%20467.022%2021.8093%20466.958%2021.8539L466.869%2021.9207C466.81%2021.9739%20466.77%2022.0305%20466.738%2022.1025C466.714%2022.1591%20466.698%2022.2174%20466.681%2022.2756C466.672%2022.2996%20466.665%2022.3254%20466.662%2022.3511C466.639%2022.4951%20466.641%2022.5037%20466.667%2022.3751L466.824%2022.2208C466.672%2022.3339%20466.543%2022.4179%20466.509%2022.6185C466.495%2022.6957%20466.498%2022.7677%20466.523%2022.8431C466.516%2022.8191%20466.615%2023.1089%20466.58%2022.9769V22.7488L466.589%2022.7128C466.547%2022.7677%20466.543%2022.7711%20466.58%2022.7231C466.615%2022.6888%20466.617%2022.6803%20466.585%2022.6991C466.564%2022.706%20466.547%2022.718%20466.531%2022.7334C466.343%2022.8723%20466.247%2023.1037%20466.374%2023.3198C466.482%2023.5015%20466.78%2023.6129%20466.97%2023.4741C467.042%2023.4209%20467.123%2023.3952%20467.19%2023.3335C467.256%2023.2718%20467.325%2023.1826%20467.371%2023.1037C467.432%2022.9992%20467.447%2022.8654%20467.419%2022.7506C467.407%2022.6991%20467.385%2022.6494%20467.36%2022.6014C467.31%2022.5071%20467.386%2022.5585%20467.372%2022.6768L467.245%2022.9803C467.197%2023.0094%20467.193%2023.0094%20467.237%2022.9837C467.275%2022.9546%20467.315%2022.9254%20467.353%2022.8963C467.411%2022.8397%20467.461%2022.7574%20467.484%2022.682C467.494%2022.646%20467.517%2022.5277%20467.515%2022.5294C467.526%2022.4968%20467.536%2022.4642%20467.545%2022.4317C467.413%2022.5654%20467.379%2022.61%20467.446%2022.5654C467.604%2022.5088%20467.714%2022.2945%20467.716%2022.1419C467.716%2022.0596%20467.693%2021.9722%20467.653%2021.8985C467.642%2021.8762%20467.628%2021.8573%20467.613%2021.8385C467.581%2021.7939%20467.581%2021.799%20467.611%2021.8539V22.0819L467.557%2022.1848L467.625%2022.0973C467.651%2022.0562%20467.676%2022.0133%20467.689%2021.967C467.716%2021.8813%20467.731%2021.7819%20467.736%2021.6927C467.738%2021.6481%20467.736%2021.6019%20467.726%2021.5573C467.723%2021.4767%20467.714%2021.4818%20467.7%2021.5727C467.677%2021.6516%20467.674%2021.6687%20467.691%2021.6241C467.763%2021.5144%20467.775%2021.3567%20467.75%2021.2332C467.736%2021.1647%20467.726%2021.1389%20467.717%2021.0841C467.7%2020.9761%20467.691%2020.8766%20467.632%2020.7789C467.606%2020.7343%20467.564%2020.7%20467.533%2020.6589C467.581%2020.7206%20467.486%2020.5954%20467.496%2020.6074C467.433%2020.532%20467.355%2020.4874%20467.275%2020.4326L467.432%2020.5869L467.413%2020.5612L467.472%2020.7772C467.46%2020.8149%20467.456%2020.8183%20467.463%2020.7875C467.47%2020.7429%20467.475%2020.6966%20467.482%2020.652C467.482%2020.5834%20467.465%2020.5097%20467.439%2020.448C467.393%2020.34%20467.303%2020.2817%20467.233%2020.196L467.345%2020.3846C467.345%2020.4343%20467.345%2020.4326%20467.339%2020.3794C467.339%2020.3263%20467.331%2020.2766%20467.31%2020.2285C467.285%2020.1565%20467.254%2020.0725%20467.216%2020.0057C467.169%2019.9251%20467.106%2019.8565%20467.024%2019.8085C466.979%2019.7879%20466.934%2019.7691%20466.887%2019.7519C466.834%2019.7382%20466.838%2019.7382%20466.893%2019.7519L467.094%2020.0074C467.085%2020.1754%20467.089%2020.1805%20467.106%2020.0228C467.111%2019.9988%20467.113%2019.9748%20467.111%2019.9508C467.111%2019.8342%20467.057%2019.7056%20466.974%2019.6233C466.834%2019.4862%20466.669%2019.4965%20466.491%2019.4896L466.711%2019.5479L466.78%2019.6062L466.712%2019.5187C466.725%2019.5119%20466.782%2019.7022%20466.754%2019.565C466.733%2019.4656%20466.676%2019.385%20466.611%2019.3079C466.462%2019.1296%20466.15%2019.1553%20465.995%2019.3079C465.815%2019.4845%20465.845%2019.7348%20465.995%2019.9148L465.99%2019.9217Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M467.047%2022.4184L467.057%2022.4407L467.014%2022.3378C467.054%2022.4338%20467.085%2022.5298%20467.149%2022.6121C467.198%2022.6756%20467.226%2022.6927%20467.297%2022.7459C467.306%2022.7527%20467.317%2022.7613%20467.327%2022.7682C467.282%2022.7424%20467.245%2022.7082%20467.221%2022.6619L467.177%2022.559L467.181%2022.5693L467.165%2022.4561C467.165%2022.4647%20467.167%2022.4733%20467.165%2022.4818L467.181%2022.3687C467.175%2022.3995%20467.163%2022.4304%20467.156%2022.4613C467.128%2022.5779%20467.134%2022.6807%20467.181%2022.7922C467.231%2022.9105%20467.324%2022.9945%20467.442%2023.0442C467.491%2023.0648%20467.54%2023.0785%20467.588%2023.0973L467.484%2023.0545C467.548%2023.0888%20467.51%2023.0528%20467.371%2022.943C467.378%2022.955%20467.383%2022.9688%20467.388%2022.9825L467.344%2022.8796C467.372%2022.9465%20467.402%2023.0116%20467.433%2023.0751L467.39%2022.9722C467.393%2022.9842%20467.397%2022.9979%20467.398%2023.0116L467.383%2022.8985C467.398%2023.0236%20467.412%2023.1179%20467.475%2023.2294L467.432%2023.1265C467.479%2023.2414%20467.506%2023.3597%20467.6%2023.4488C467.688%2023.5311%20467.792%2023.562%20467.902%2023.5997L467.797%2023.5568C467.862%2023.5877%20467.827%2023.5517%20467.693%2023.4471C467.719%2023.4831%20467.749%2023.5191%20467.776%2023.5534C467.787%2023.5654%20467.799%2023.5791%20467.809%2023.5911C467.841%2023.6271%20467.83%2023.6168%20467.782%2023.5568L467.738%2023.454C467.75%2023.4848%20467.752%2023.5191%20467.761%2023.5517C467.776%2023.6151%20467.813%2023.6683%20467.839%2023.7266L467.796%2023.6237C467.82%2023.6957%20467.841%2023.7711%20467.883%2023.8346C468.006%2024.0215%20468.275%2024.1175%20468.478%2023.9889C468.668%2023.8689%20468.767%2023.6031%20468.635%2023.4025C468.628%2023.3922%20468.621%2023.3819%20468.616%2023.3699L468.659%2023.4728C468.632%2023.3957%20468.607%2023.3185%20468.564%2023.2465L468.607%2023.3494C468.593%2023.3134%20468.59%2023.2739%20468.579%2023.2362C468.55%2023.1316%20468.482%2023.0459%20468.407%2022.967C468.384%2022.9396%20468.384%2022.9413%20468.409%2022.9722C468.45%2023.0253%20468.433%2023.0048%20468.36%2022.9087C468.327%2022.8762%20468.29%2022.847%20468.25%2022.823C468.186%2022.7853%20468.118%2022.7716%20468.05%2022.7476L468.154%2022.7904C468.09%2022.7579%20468.126%2022.7956%20468.264%2022.9002L468.308%2023.003C468.275%2022.9225%20468.248%2022.8402%20468.208%2022.7613L468.252%2022.8642C468.247%2022.8522%20468.245%2022.8385%20468.243%2022.8265L468.259%2022.9396C468.252%2022.8762%20468.248%2022.8076%20468.229%2022.7459C468.21%2022.6842%20468.173%2022.6293%20468.149%2022.5693L468.193%2022.6722C468.135%2022.535%20468.081%2022.4047%20467.942%2022.3258C467.872%2022.2864%20467.799%2022.2692%20467.726%2022.2401L467.83%2022.283C467.792%2022.2624%20467.811%2022.2761%20467.886%2022.3258L467.998%2022.5144L467.994%2022.5041L468.01%2022.6173C468.008%2022.6087%20468.008%2022.6001%20468.01%2022.5916L467.994%2022.7047C468.017%2022.5779%20468.057%2022.4698%20468.018%2022.3378C467.994%2022.2487%20467.938%2022.1664%20467.869%2022.1064C467.832%2022.0738%20467.789%2022.0481%20467.752%2022.0172L467.813%2022.0618C467.86%2022.1321%20467.872%2022.1441%20467.85%2022.0995L467.893%2022.2024C467.862%2022.1304%20467.836%2022.0566%20467.801%2021.9846C467.757%2021.8921%20467.637%2021.8132%20467.541%2021.7875C467.437%2021.76%20467.297%2021.772%20467.205%2021.8303C466.993%2021.9658%20466.946%2022.199%20467.048%2022.4167L467.047%2022.4184Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M467.145%2015.2587C467.174%2015.2999%20467.206%2015.3427%20467.23%2015.3873L467.187%2015.2844C467.187%2015.2844%20467.19%2015.293%20467.19%2015.2964L467.174%2015.1833C467.174%2015.1833%20467.174%2015.1936%20467.174%2015.1987L467.19%2015.0856C467.185%2015.1181%20467.173%2015.1507%20467.164%2015.1816C467.129%2015.3119%20467.136%2015.4525%20467.204%2015.5708C467.244%2015.6393%20467.303%2015.6976%20467.373%2015.7388C467.411%2015.7611%20467.462%2015.7834%20467.505%2015.7919C467.575%2015.8074%20467.645%2015.8091%20467.716%2015.8177L467.601%2015.8022C467.612%2015.8022%20467.624%2015.8056%20467.634%2015.8091L467.53%2015.7662C467.53%2015.7662%20467.538%2015.7696%20467.542%2015.7731L467.453%2015.7062C467.453%2015.7062%20467.46%2015.7114%20467.462%2015.7148L467.394%2015.6273L467.397%2015.6325L467.354%2015.5296C467.354%2015.5296%20467.357%2015.5382%20467.357%2015.5416L467.342%2015.4285C467.342%2015.4285%20467.342%2015.4439%20467.342%2015.4525L467.357%2015.3393C467.352%2015.365%20467.343%2015.389%20467.336%2015.413C467.319%2015.4696%20467.312%2015.5279%20467.31%2015.5862C467.305%2015.7165%20467.373%2015.8365%20467.462%2015.9291C467.488%2015.9548%20467.516%2015.9788%20467.54%2016.0062L467.472%2015.9188C467.532%2015.996%20467.568%2016.0422%20467.652%2016.0937C467.728%2016.14%20467.814%2016.152%20467.901%2016.1588C467.939%2016.1623%20467.977%2016.1588%20468.016%2016.1623L467.901%2016.1468C467.911%2016.1468%20467.922%2016.1503%20467.93%2016.1537L467.826%2016.1108L467.831%2016.1143L467.742%2016.0474C467.742%2016.0474%20467.749%2016.0525%20467.751%2016.056L467.683%2015.9685L467.688%2015.9771L467.645%2015.8742C467.648%2015.8845%20467.652%2015.8931%20467.653%2015.9051L467.638%2015.7919C467.641%2015.8159%20467.641%2015.8417%20467.643%2015.8674C467.65%2015.9685%20467.664%2016.0388%20467.716%2016.128C467.768%2016.2171%20467.871%2016.296%20467.976%2016.3251C468.08%2016.3543%20468.219%2016.3406%20468.312%2016.2823C468.404%2016.224%20468.486%2016.1348%20468.512%2016.0268C468.538%2015.9188%20468.528%2015.7988%20468.469%2015.6959L468.463%2015.6873L468.507%2015.7902C468.503%2015.7799%20468.5%2015.7714%20468.498%2015.7594L468.514%2015.8725C468.507%2015.8039%20468.512%2015.7371%20468.491%2015.6685C468.456%2015.5468%20468.378%2015.437%20468.265%2015.3736C468.179%2015.3256%20468.089%2015.3102%20467.991%2015.3067C467.96%2015.3067%20467.93%2015.3067%20467.899%2015.305L468.014%2015.3204C468.004%2015.3204%20467.993%2015.317%20467.984%2015.3136L468.089%2015.3565L468.084%2015.353L468.172%2015.4199C468.172%2015.4199%20468.165%2015.4147%20468.164%2015.4113L468.232%2015.4988C468.197%2015.4542%20468.164%2015.4062%20468.122%2015.3667C468.103%2015.3496%20468.085%2015.3325%20468.068%2015.3136L468.136%2015.401C468.136%2015.401%20468.127%2015.3907%20468.125%2015.3856L468.169%2015.4885C468.169%2015.4885%20468.165%2015.4799%20468.165%2015.4765L468.181%2015.5896C468.181%2015.5896%20468.181%2015.5742%20468.181%2015.5656L468.165%2015.6788C468.172%2015.6462%20468.185%2015.6171%20468.192%2015.5862C468.223%2015.4593%20468.221%2015.3136%20468.148%2015.1987C468.075%2015.0838%20467.974%2015.0084%20467.845%2014.9793C467.777%2014.9638%20467.707%2014.9621%20467.639%2014.9553L467.754%2014.9707C467.744%2014.9707%20467.732%2014.9673%20467.721%2014.9638L467.826%2015.0067C467.826%2015.0067%20467.817%2015.0033%20467.814%2014.9998L467.902%2015.0667C467.902%2015.0667%20467.896%2015.0616%20467.894%2015.0581L467.962%2015.1456L467.958%2015.1404L468.002%2015.2433C468.002%2015.2433%20467.998%2015.2347%20467.998%2015.2313L468.014%2015.3445C468.014%2015.3445%20468.014%2015.3342%20468.014%2015.329L467.998%2015.4422C468.002%2015.4165%20468.01%2015.3925%20468.017%2015.3685C468.035%2015.3136%20468.045%2015.2502%20468.047%2015.197C468.047%2015.0513%20467.977%2014.9415%20467.899%2014.8284C467.835%2014.7358%20467.753%2014.6621%20467.639%2014.6312C467.535%2014.6038%20467.396%2014.6158%20467.303%2014.6741C467.211%2014.7324%20467.129%2014.8215%20467.103%2014.9295C467.077%2015.0376%20467.08%2015.1661%20467.147%2015.2604L467.145%2015.2587Z%22%20fill%3D%22black%22%2F%3E%0A%3Cpath%20d%3D%22M467.443%2022.3063L467.46%2022.3132L467.268%2022.2035C467.324%2022.248%20467.213%2022.116%20467.26%2022.188C467.286%2022.2292%20467.316%2022.2703%20467.35%2022.3029C467.443%2022.3938%20467.565%2022.4555%20467.699%2022.4572C467.798%2022.4572%20467.889%2022.4246%20467.97%2022.3749C468.009%2022.3509%20468.061%2022.3098%20468.096%2022.272C468.15%2022.2137%20468.019%2022.3115%20468.08%2022.2823L467.861%2022.3406L467.8%2022.3286L467.915%2022.344C468%2022.3543%20467.883%2022.3389%20467.936%2022.344C467.988%2022.3492%20468.038%2022.3578%20468.091%2022.3646C468.155%2022.3732%20468.037%2022.3492%20468.085%2022.368L467.894%2022.2583C467.81%2022.1846%20467.848%2022.1915%20467.873%2022.236C467.883%2022.2566%20467.894%2022.2772%20467.906%2022.296C467.977%2022.4023%20468.077%2022.4915%20468.204%2022.5241C468.331%2022.5566%20468.479%2022.5326%20468.59%2022.4589C468.63%2022.4315%20468.671%2022.4006%20468.707%2022.368C468.784%2022.2995%20468.641%2022.4006%20468.7%2022.3732L468.481%2022.4315L468.397%2022.4212L468.206%2022.3115C468.261%2022.3578%20468.148%2022.224%20468.197%2022.296C468.221%2022.332%20468.251%2022.3698%20468.279%2022.4023C468.355%2022.4881%20468.462%2022.5412%20468.577%2022.5566C468.691%2022.5721%20468.799%2022.5464%20468.9%2022.4898C468.944%2022.4658%20468.979%2022.4298%20469.019%2022.4006C469.085%2022.3526%20468.941%2022.4435%20469.01%2022.4143L468.791%2022.4726C468.732%2022.4778%20468.716%2022.4623%20468.787%2022.4812C468.812%2022.4881%20468.836%2022.4915%20468.859%2022.5001L468.667%2022.3903C468.716%2022.4315%20468.615%2022.3012%20468.646%2022.368C468.655%2022.3886%20468.667%2022.4075%20468.679%2022.4263C468.761%2022.5532%20468.881%2022.6424%20469.036%2022.6629C469.174%2022.6818%20469.298%2022.6406%20469.404%2022.5601C469.435%2022.5361%20469.463%2022.5138%20469.491%2022.4863C469.561%2022.4161%20469.421%2022.5206%20469.477%2022.4949L469.258%2022.5532C469.183%2022.5412%20469.174%2022.5395%20469.233%2022.5515L469.271%2022.5601C469.343%2022.5738%20469.413%2022.5841%20469.484%2022.5858C469.503%2022.5858%20469.524%2022.5858%20469.543%2022.5858C469.5%2022.5789%20469.493%2022.5806%20469.524%2022.5892C469.555%2022.6081%20469.599%2022.6081%20469.632%2022.6218L469.44%2022.5121C469.484%2022.5481%20469.39%2022.4212%20469.419%2022.4898C469.428%2022.5086%20469.442%2022.5309%20469.453%2022.5481C469.531%2022.6629%20469.618%2022.7247%20469.75%2022.7761C469.963%2022.8601%20470.238%2022.6852%20470.287%2022.4761C470.344%2022.2292%20470.21%2022.0371%20469.982%2021.948L469.968%2021.9429L470.16%2022.0526C470.114%2022.0131%20470.203%2022.1332%20470.186%2022.0852C470.181%2022.0714%20470.17%2022.0577%20470.163%2022.044C470.134%2021.9943%20470.095%2021.9446%20470.053%2021.9034C469.926%2021.78%20469.693%2021.732%20469.52%2021.7268C469.512%2021.7268%20469.428%2021.7268%20469.48%2021.7285C469.536%2021.732%20469.423%2021.7148%20469.423%2021.7148C469.303%2021.6925%20469.204%2021.6822%20469.087%2021.7303C469.012%2021.7611%20468.961%2021.7937%20468.899%2021.852C468.887%2021.8623%20468.874%2021.8743%20468.864%2021.8863C468.812%2021.9446%20468.941%2021.8451%20468.887%2021.8691L469.106%2021.8108L469.193%2021.8211L469.385%2021.9309C469.346%2021.8983%20469.449%2022.0286%20469.393%2021.9326C469.367%2021.8863%20469.341%2021.8486%20469.303%2021.8074C469.223%2021.7234%20469.125%2021.6822%20469.015%2021.6514C468.857%2021.6085%20468.719%2021.588%20468.566%2021.6702C468.521%2021.6943%20468.481%2021.7251%20468.439%2021.7577C468.347%2021.8297%20468.481%2021.7371%20468.428%2021.7577L468.648%2021.6994L468.73%2021.7097L468.921%2021.8194C468.866%2021.7748%20468.977%2021.9068%20468.93%2021.8348C468.904%2021.7937%20468.874%2021.7525%20468.839%2021.72C468.747%2021.6291%20468.625%2021.5674%20468.491%2021.5657C468.394%2021.5657%20468.301%2021.5965%20468.219%2021.6462C468.181%2021.6702%20468.131%2021.7114%20468.094%2021.7457C468.038%2021.8006%20468.174%2021.7028%20468.11%2021.732L468.329%2021.6737L468.415%2021.6857L468.606%2021.7954C468.653%2021.8623%20468.664%2021.876%20468.637%2021.8366C468.63%2021.8228%20468.622%2021.8091%20468.615%2021.7954C468.587%2021.7457%20468.552%2021.696%20468.512%2021.6548C468.451%2021.5931%20468.376%2021.5519%20468.294%2021.5279C468.242%2021.5211%20468.192%2021.5142%20468.139%2021.5074C468.087%2021.5005%20468.087%2021.5005%20468.139%2021.5074C468.087%2021.5005%20468.037%2021.4937%20467.984%2021.4868C467.932%2021.4799%20467.932%2021.4817%20467.984%2021.4868C467.854%2021.4731%20467.756%2021.4662%20467.633%2021.5314C467.58%2021.5588%20467.533%2021.5965%20467.491%2021.636C467.479%2021.648%20467.467%2021.66%20467.453%2021.672C467.512%2021.6342%20467.523%2021.6257%20467.488%2021.6428L467.707%2021.5845L467.791%2021.5948L467.983%2021.7045C467.932%2021.6634%20468.042%2021.7491%20467.998%2021.7303C467.991%2021.7268%20467.843%2021.5451%20467.909%2021.6137C467.842%2021.5417%20467.761%2021.5022%20467.671%2021.4662C467.458%2021.3839%20467.183%2021.5571%20467.134%2021.7663C467.077%2022.0131%20467.211%2022.2052%20467.439%2022.2943L467.443%2022.3063Z%22%20fill%3D%22black%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_1445_3054%22%3E%0A%3Crect%20width%3D%22443.48%22%20height%3D%2227.6%22%20fill%3D%22white%22%20transform%3D%22matrix(-1%200%200%201%20443.48%200)%22%2F%3E%0A%3C%2FclipPath%3E%0A%3CclipPath%20id%3D%22clip1_1445_3054%22%3E%0A%3Crect%20width%3D%2272%22%20height%3D%2253%22%20fill%3D%22white%22%20transform%3D%22translate(443.48)%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 600px;
        height: 53px;
        margin-inline: auto;
        display: block;
        margin-top: 10px;

        @media screen and (max-width: 600px) {
          width: 320px;
          height: 33px;
        }
      }
    }

    .sub-title {
      text-align: center;
      font-size: 18px;
      letter-spacing: 0.02em;
      margin-top: 10px;
      font-family: "Noto Serif", serif;
    }
  }

  .title-block--bg {
    .headline-title {
      font-size: 18px;
      background-color: #4c342a;
      padding: 8px 10px;
      text-align: center;
      color: #fff;

      @media screen and (max-width: 600px) {
        font-size: 18px;
      }
    }

    .sub-title {
      text-align: center;
      font-size: 18px;
      letter-spacing: 0.02em;
      margin-top: 10px;
      font-family: "Noto Serif", serif;
    }
  }
}

/* 強調訴求パネル */
.page-contents,
body {
  .highlight-panel {
      margin-top: 120px;
      margin-bottom: 120px;

    @media screen and (max-width: 600px) {
      margin-top: 60px;
      margin-bottom: 0;
    }

    .title {
      text-align: center;
      font-size: 1.75rem;
      margin-bottom: 40px;
      position: relative;

      @media screen and (max-width: 600px) {
        font-size: 1.5rem;
      }

      &::after {
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2216%22%20viewBox%3D%220%200%2060%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_818_1409)%22%3E%0A%3Cpath%20d%3D%22M36.6206%2015.9994C37.9056%2015.9994%2039.0006%2015.5683%2039.9106%2014.7061C40.8206%2013.8439%2041.2756%2012.7857%2041.2756%2011.5365C41.2756%2010.4685%2040.9456%209.51322%2040.2806%208.6755C39.6156%207.83777%2038.7506%207.30379%2037.6756%207.07354C37.3206%205.8145%2036.6156%204.79062%2035.5606%204.00679C34.5006%203.22296%2033.3006%202.83594%2031.9606%202.83594C30.3106%202.83594%2028.9106%203.39442%2027.7556%204.51138C26.6056%205.62834%2026.0306%206.99025%2026.0306%208.59221C25.0556%208.69999%2024.2506%209.1115%2023.6056%209.81695C22.9656%2010.5224%2022.6406%2011.3503%2022.6406%2012.2958C22.6406%2013.3246%2023.0106%2014.1966%2023.7506%2014.9168C24.4906%2015.6369%2025.3906%2015.9945%2026.4506%2015.9945H36.6106L36.6206%2015.9994Z%22%20fill%3D%22%23DAB63B%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M52.8557%200C52.8557%200%2060.0007%203.49786%2060.0007%208.99939C60.0007%2010.8561%2059.2457%2012.6344%2057.9107%2013.9473C56.5707%2015.2603%2054.7557%2015.9951%2052.8607%2015.9951C50.9657%2015.9951%2049.1507%2015.2554%2047.8107%2013.9473C46.4707%2012.6344%2045.7207%2010.8561%2045.7207%208.99939C45.7157%203.49786%2052.8557%200%2052.8557%200Z%22%20fill%3D%22%2350A9B5%22%2F%3E%0A%3Cpath%20d%3D%22M9.72452%201.33347L12.1995%206.8399C12.4645%206.64884%2012.7745%206.51657%2013.0995%206.45778C13.4245%206.39899%2013.7595%206.40879%2014.0795%206.49207C14.3995%206.57536%2014.6995%206.72722%2014.9495%206.93298C15.2045%207.14364%2015.4045%207.40328%2015.5445%207.69722L17.9645%2012.7627C18.6645%2014.2275%2017.6295%2015.9961%2015.9345%2015.9961H2.24952C0.559519%2015.9961%20-0.475481%2014.2373%200.214519%2012.7725L5.63452%201.29428C6.45452%20-0.444852%208.93452%20-0.420357%209.72452%201.33347Z%22%20fill%3D%22%236AA968%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_818_1409%22%3E%0A%3Crect%20width%3D%2260%22%20height%3D%2216%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
        background-size: 100%;
        background-repeat: no-repeat;
        width: 60px;
        height: 16px;
        display: block;
        margin: 10px auto 0;
      }
    }

    .highlight-panel_content {
      display: flex;
      gap: 30px 40px;
      align-items: center;

      @media screen and (max-width: 600px) {
        flex-direction: column;
      }

      .image {
        width: 40%;

        @media screen and (max-width: 600px) {
          width: 100%;
          max-width: 350px;
          margin-inline: auto;
        }
      }

      .texts {
        flex: 1;
        font-size: 18px;
        line-height: 1.8;
      }
    }
  }
}
