.normal {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.din {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

:root {
  --scr-y: 0;
  --scr-x: 0;
  --win-h: 0;
  --win-w: 0;
  --scr-yc: calc(var(--scr-y) + var(--win-h) / 2);
  --scr-xc: calc(var(--scr-x) + var(--win-w) / 2);
}
@media (width <= 730px) {
  :root {
    --minw: 360px;
    --minwn: 360;
    --maxw: 100vw;
    --maxwn: 360;
    --pdg: 10px;
    --pdgn: 10;
    --fs: 14px;
  }
}
@media (width > 730px) {
  :root {
    --minw: 730px;
    --minwn: 730;
    --maxw: 1100px;
    --maxwn: 1100;
    --pdg: 35px;
    --pdgn: 35;
    --fs: 15px;
  }
}

html, body {
  font-size: var(--fs);
  min-width: var(--minw);
}
@media (width <= 730px) {
  html, body {
    max-width: 100%;
  }
}

@media (width > 730px) {
  .inr0 {
    --maxw: 2000px;
    --maxwn: 2000;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr1 {
    --maxw: 1100px;
    --maxwn: 1100;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr2 {
    --maxw: 960px;
    --maxwn: 960;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr3 {
    --maxw: 760px;
    --maxwn: 760;
    --pdg: 30px;
    --pdgn: 30;
  }
  .inr4 {
    --maxw: 720px;
    --maxwn: 720;
    --pdg: 30px;
    --pdgn: 30;
  }
}
[class^=inr], [class*=" inr"] {
  padding-inline: var(--pdg);
  margin: 0 auto;
}
@media (width > 730px) {
  [class^=inr], [class*=" inr"] {
    max-width: var(--maxw);
    container-type: inline-size;
  }
}

@media (width <= 730px) {
  .m-noinr {
    margin-inline: calc(var(--pdg) * -1) !important;
    max-width: none !important;
  }
}

.watchscroll {
  --pos-t: 0;
  --pos-l: 0;
  --size-h: 0;
  --size-w: 0;
  --pos-yc: calc(var(--pos-t) + var(--size-h) / 2);
  --pos-xc: calc(var(--pos-l) + var(--size-w) / 2);
  --scrpos-y: calc(var(--pos-t) - var(--scr-y));
  --scrpos-yc: calc(var(--pos-yc) - var(--scr-yc));
  --scrpos-x: calc(var(--pos-l) - var(--scr-x));
  --scrpos-xc: calc(var(--pos-xc) - var(--scr-xc));
}

.row, .rows > *, .rowss > * > * {
  display: flex !important;
  justify-content: space-around;
  align-items: flex-start;
  align-content: center;
}

.row > *, .rows > * > *, .rowss > * > * > * {
  flex: 1 1 auto;
}

.col, .cols > * {
  display: flex !important;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
}

.row.fixedrow {
  align-items: flex-start;
}

.row.fixedrow > * {
  flex: 1 0 0%;
}

.row.fixedrow > * + * {
  margin-left: 15px;
}

@media (width > 730px) {
  .only-m {
    display: none;
  }
  .pc-row, .pc-rows > * {
    display: flex !important;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .pc-row > *, .pc-rows > * > * {
    flex: 1 0 0%;
  }
  .pc-col, .pc-cols > * {
    display: flex !important;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
  }
}
@media (width <= 730px) {
  .only-pc {
    display: none;
  }
  .m-row, .m-rows > * {
    display: flex !important;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
  }
  .m-row > *, .m-rows > * > * {
    flex: 1 1 auto;
  }
  .m-col, .m-cols > * {
    display: flex !important;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
  }
}
.fit {
  flex: 0 0 auto !important;
}

.btns {
  display: block;
  text-align: center;
  position: relative;
}
.btns > * {
  all: unset;
  display: inline-block;
  position: relative;
  line-height: 1;
  background-color: var(--btnbgcolor, #2f54c0);
  color: var(--textcolor, white);
  border-color: var(--bdrcolor, var(--btnbgcolor, #2f54c0));
  border-width: 1px;
  border-style: solid;
  margin: 0 10px;
  text-align: center;
  transition: all 0.4s;
  z-index: 2;
}
@media (width <= 730px) {
  .btns > * {
    min-width: 80%;
    padding: 15px;
    box-sizing: border-box;
  }
}
@media (width > 730px) {
  .btns > * {
    padding: 15px 6em;
  }
}
.btns > * svg {
  position: absolute;
  transition: all 0.4s;
  top: calc(50% - 0.75em);
  right: 15px;
  height: 1.5em;
  stroke: var(--textcolor, white);
  stroke-miterlimit: 2px;
  fill: none;
}
.btns > *:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--textcolor, white);
  color: var(--btnbgcolor, #2f54c0);
}
.btns > *:hover svg {
  stroke: var(--btnbgcolor, #2f54c0);
}

.morebtn {
  display: block;
  position: relative;
}
@media (width <= 730px) {
  .morebtn {
    text-align: right;
  }
}
@media (width > 730px) {
  .morebtn {
    text-align: center;
  }
}
.morebtn > * {
  all: unset;
  display: inline-block;
  position: relative;
  line-height: 1;
  padding: 5px 15px;
  background-color: var(--btnbgcolor, #2f54c0);
  color: var(--textcolor, white);
  border-color: var(--bdrcolor, var(--btnbgcolor, #2f54c0));
  border-width: 1px;
  border-style: solid;
  transition: all 0.4s;
  z-index: 2;
  border-radius: 6px;
  text-align: center;
}
.morebtn > *:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: var(--textcolor, white);
  color: var(--btnbgcolor, #2f54c0);
}

html#idx main section.kv {
  --textcolor: white;
  --keycolor: rgba(47, 84, 192, 0.8);
  color: var(--textcolor);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width <= 730px) {
  html#idx main section.kv {
    height: clamp(340px * 100 / 100, (100vw - 20px) * 100 / 100, 710px * 100 / 100);
    margin-bottom: 130px;
  }
}
@media (width > 730px) {
  html#idx main section.kv {
    height: 700px;
    margin-bottom: 200px;
  }
}
html#idx main section.kv ul.fader {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  inset: 0;
}
html#idx main section.kv ul.fader .slick-list, html#idx main section.kv ul.fader .slick-track, html#idx main section.kv ul.fader .slick-slide, html#idx main section.kv ul.fader img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html#idx main section.kv ul.fader .slick-slide::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  inset: 0;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 100%);
}
html#idx main section.kv .intro {
  z-index: 2;
  text-align: center;
}
@media (width > 730px) {
  html#idx main section.kv .intro {
    padding: 50px;
  }
}
html#idx main section.kv .intro h2 {
  font-weight: 700;
}
@media (width <= 730px) {
  html#idx main section.kv .intro h2 {
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
}
@media (width > 730px) {
  html#idx main section.kv .intro h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5em;
  }
}
html#idx main section.kv .intro p {
  font-size: 1rem;
  line-height: 2;
}
html#idx main section.kv .intro p + html#idx main section.kv .intro p {
  margin-top: 1em;
}
html#idx main section.kv figure {
  width: 294px;
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
}
html#idx main section.kv ul.points {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  justify-content: center;
  line-height: 1.3;
}
@media (width <= 730px) {
  html#idx main section.kv ul.points {
    font-size: 90%;
    bottom: -7em;
  }
}
@media (width > 730px) {
  html#idx main section.kv ul.points {
    font-size: 1.1rem;
    gap: 0 25px;
    bottom: -50px;
    justify-content: center;
  }
}
html#idx main section.kv ul.points li {
  flex: 0 0 auto;
  background: var(--keycolor);
  border-radius: 999px;
  width: 8em;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
@media (width <= 730px) {
  html#idx main section.kv ul.points li {
    padding: 5px;
  }
}
@media (width > 730px) {
  html#idx main section.kv ul.points li {
    padding: 20px;
  }
}
html#idx main section.kv ul.points li strong {
  font-size: 200%;
}
html#idx main section.kv ul.points li:nth-child(1) {
  transition-delay: 0.6s;
}
html#idx main section.kv ul.points li:nth-child(2) {
  transition-delay: 1s;
}
html#idx main section.kv ul.points li:nth-child(3) {
  transition-delay: 1.4s;
}
html#idx main section.kv.scrolling figure {
  opacity: 1;
  transform: translateY(0);
}
html#idx main section.kv.scrolling ul.points li {
  opacity: 1;
  transform: translateY(0);
}
html#idx main section[id^=s] {
  position: relative;
  background-color: var(--bgcolor, white);
  color: var(--textcolor, black);
}
html#idx main section[id^=s] h2 {
  text-align: center;
  margin-bottom: 30px;
}
html#idx main section[id^=s] h2 img {
  max-height: 52px;
}
@media (width <= 730px) {
  html#idx main section#s01-banner {
    padding-bottom: 60px;
  }
}
@media (width > 730px) {
  html#idx main section#s01-banner {
    padding-bottom: 150px;
  }
}
html#idx main section#s02-blog {
  --bgcolor: rgba(0, 153, 217, 0.1);
  background: url(/wp-content/themes/custom/img/1691.svg) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/300px var(--bgcolor);
  padding: 30px 0 80px;
}
html#idx main section#s02-blog::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
  top: -50px;
  left: 10%;
  width: 20%;
  aspect-ratio: 232/99;
  background: url(/wp-content/themes/custom/img/1291.png) no-repeat center/contain;
  transform: translateY(calc(1px * var(--scrpos-yc) * 0.2));
}
html#idx main section#s02-blog::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
  bottom: -115px;
  left: 20%;
  width: 60%;
  aspect-ratio: 1114/236;
  background: url(/wp-content/themes/custom/img/1293.png) no-repeat center/contain;
  transform: translateY(calc(1px * var(--scrpos-yc) * 0.2));
}
html#idx main section#s02-blog .inr {
  position: relative;
  z-index: 3;
}
html#idx main section#s02-blog ul {
  background: white;
  position: relative;
}
@media (width <= 730px) {
  html#idx main section#s02-blog ul {
    padding: 0 10px;
  }
}
@media (width > 730px) {
  html#idx main section#s02-blog ul {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}
@media (width <= 730px) {
  html#idx main section#s02-blog ul li {
    padding: 30px 0;
  }
}
@media (width > 730px) {
  html#idx main section#s02-blog ul li {
    max-width: 275px;
  }
}
@media (width <= 730px) {
  html#idx main section#s02-blog ul li + li {
    border-top: 2px solid #264a90;
  }
}
html#idx main section#s02-blog ul li figure {
  padding-bottom: 10px;
}
html#idx main section#s02-blog ul li figure img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
html#idx main section#s02-blog ul li time {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
}
html#idx main section#s02-blog ul li h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
html#idx main section#s02-blog ul li h3 + p {
  line-height: 1.4;
  padding-bottom: 20px;
}
html#idx main section#s02-blog ul li .morebtn {
  --bgcolor: #264a90;
}
@media (width > 730px) {
  html#idx main section#s02-blog ul:has(li:nth-child(5)) li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }
}
html#idx main section#s02-blog .btns {
  margin-top: 3em;
}
html#idx main section#s03-firsttime {
  padding-top: 70px;
  padding-bottom: 20vw;
  background: url(/wp-content/themes/custom/img/1391.png) no-repeat bottom center/130%;
  z-index: 2;
}
html#idx main section#s03-firsttime p {
  line-height: 2;
}
@media (width > 730px) {
  html#idx main section#s03-firsttime p {
    text-align: center;
  }
}
html#idx main section#s04-reasons {
  --bgcolor: rgba(0, 153, 217, 0.1);
  background: url(/wp-content/themes/custom/img/1491.png) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/300px var(--bgcolor);
  margin-top: -40px;
  z-index: 1;
}
@media (width <= 730px) {
  html#idx main section#s04-reasons {
    padding: 70px 0;
  }
}
@media (width > 730px) {
  html#idx main section#s04-reasons {
    padding: 70px 0 0;
  }
}
html#idx main section#s04-reasons h2 img {
  max-height: 95px;
}
html#idx main section#s04-reasons h2 + p {
  line-height: 2;
  text-align: center;
  margin-bottom: 4em;
}
@media (width > 730px) {
  html#idx main section#s04-reasons ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
  }
}
html#idx main section#s04-reasons ul li {
  background: var(--img) no-repeat center/cover;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  opacity: 0;
  transform: translateY(-50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
@media (width <= 730px) {
  html#idx main section#s04-reasons ul li {
    margin-bottom: 5px;
  }
}
html#idx main section#s04-reasons ul li:nth-child(1) {
  transition-delay: 0.6s;
}
html#idx main section#s04-reasons ul li:nth-child(2) {
  transition-delay: 1s;
}
html#idx main section#s04-reasons ul li:nth-child(3) {
  transition-delay: 1.4s;
}
html#idx main section#s04-reasons ul li:nth-child(4) {
  transition-delay: 1.8s;
}
html#idx main section#s04-reasons ul li:nth-child(5) {
  transition-delay: 2.2s;
}
html#idx main section#s04-reasons ul li:nth-child(6) {
  transition-delay: 2.6s;
}
html#idx main section#s04-reasons ul li h3 {
  font-size: 150%;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  color: #2f54c0;
}
html#idx main section#s04-reasons ul li h3 span {
  display: inline-block;
  vertical-align: baseline;
  margin-right: -1em;
  color: white;
  background: #2f54c0;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  width: 2em;
  aspect-ratio: 1/1;
  padding: 0.5em;
}
html#idx main section#s04-reasons ul li h4, html#idx main section#s04-reasons ul li p {
  background: rgba(0, 0, 0, 0.57);
  color: white;
}
html#idx main section#s04-reasons ul li h4 {
  margin-top: 6em;
  font-weight: 700;
  font-size: 150%;
  padding: 15px 15px 0;
  line-height: 1.2;
}
html#idx main section#s04-reasons ul li p {
  line-height: 1.4;
  padding: 15px;
}
html#idx main section#s04-reasons.scrolling ul li {
  opacity: 1;
  transform: translateY(0);
}
@media (width <= 730px) {
  html#idx main section#s05-solution {
    padding: 30px 0 60px;
  }
}
@media (width > 730px) {
  html#idx main section#s05-solution {
    padding: 80px 0 100px;
  }
}
html#idx main section#s05-solution h2 img {
  max-height: 95px;
}
html#idx main section#s05-solution h2 + p {
  line-height: 2;
  margin-bottom: 4em;
}
@media (width > 730px) {
  html#idx main section#s05-solution h2 + p {
    text-align: center;
  }
}
html#idx main section#s05-solution ul li h3 {
  color: white;
  font-size: 150%;
  font-weight: 700;
  padding: 15px;
}
html#idx main section#s05-solution ul li h4 {
  font-weight: 700;
  padding: 15px;
}
html#idx main section#s05-solution ul li p {
  line-height: 2;
  padding: 0 15px 15px 15px;
}
html#idx main section#s05-solution ul li:nth-child(1) h3 {
  background-color: #c0699f;
}
html#idx main section#s05-solution ul li:nth-child(2) h3 {
  background-color: #9ebd5d;
}
@media (width <= 730px) {
  html#idx main section#s05-solution ul li:nth-child(2) {
    margin-top: 30px;
  }
  html#idx main section#s05-solution ul li figure img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  html#idx main section#s05-solution ul li h4 {
    font-size: 130%;
  }
}
@media (width > 730px) {
  html#idx main section#s05-solution ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr 60px auto auto 1fr;
    gap: 0px 0px;
    grid-template-areas: "img01 h301" "img01 h401" "img01 p01" ". ." "h302 img02" "h402 img02" "p02 img02";
  }
  html#idx main section#s05-solution ul li {
    display: contents;
  }
  html#idx main section#s05-solution ul li h3 {
    text-align: center;
  }
  html#idx main section#s05-solution ul li h4 {
    font-size: 180%;
  }
  html#idx main section#s05-solution ul li:nth-child(1) h3 {
    grid-area: h301;
  }
  html#idx main section#s05-solution ul li:nth-child(1) figure {
    grid-area: img01;
  }
  html#idx main section#s05-solution ul li:nth-child(1) h4 {
    grid-area: h401;
  }
  html#idx main section#s05-solution ul li:nth-child(1) p {
    grid-area: p01;
  }
  html#idx main section#s05-solution ul li:nth-child(2) h3 {
    grid-area: h302;
  }
  html#idx main section#s05-solution ul li:nth-child(2) figure {
    grid-area: img02;
  }
  html#idx main section#s05-solution ul li:nth-child(2) h4 {
    grid-area: h402;
  }
  html#idx main section#s05-solution ul li:nth-child(2) p {
    grid-area: p02;
  }
}
html#idx main section#s06-difference {
  --bgcolor: rgba(0, 0, 0, 0.1);
  background: url(/wp-content/themes/custom/img/1691.svg) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/300px var(--bgcolor);
  padding: 60px 0 80px;
}
html#idx main section#s06-difference ul {
  padding-top: 80px;
}
@media (width > 730px) {
  html#idx main section#s06-difference ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
html#idx main section#s06-difference ul li {
  background: white;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  opacity: 0;
  transform: translateY(-50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
@media (width <= 730px) {
  html#idx main section#s06-difference ul li {
    margin-bottom: 60px;
  }
}
html#idx main section#s06-difference ul li:nth-child(1) {
  transition-delay: 0.6s;
}
html#idx main section#s06-difference ul li:nth-child(2) {
  transition-delay: 1s;
}
html#idx main section#s06-difference ul li:nth-child(3) {
  transition-delay: 1.4s;
}
html#idx main section#s06-difference ul li p.num {
  position: absolute;
  top: -40px;
  left: 5px;
}
html#idx main section#s06-difference ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 730px) {
  html#idx main section#s06-difference ul li figure img {
    aspect-ratio: 4/3;
  }
}
@media (width > 730px) {
  html#idx main section#s06-difference ul li figure img {
    aspect-ratio: 1/1;
  }
}
@media (width > 730px) {
  html#idx main section#s06-difference ul li > div {
    display: contents;
  }
}
html#idx main section#s06-difference ul li > div h3 {
  font-weight: 700;
  font-size: 150%;
  line-height: 1.2;
  padding: 15px;
}
html#idx main section#s06-difference ul li > div p {
  line-height: 1.8;
  padding: 0 15px 15px 15px;
}
html#idx main section#s06-difference.scrolling ul li {
  opacity: 1;
  transform: translateY(0);
}
html#idx main section#s07-advantageous {
  --bgcolor: #2f54c0;
  background: url(/wp-content/themes/custom/img/0091.png) repeat center/27px var(--bgcolor);
  padding-top: 30px;
  padding-bottom: 70px;
}
html#idx main section#s07-advantageous h2 {
  background-color: #264a90;
  color: white;
  padding: 10px 0;
  border-bottom: 3px solid #d3b684;
}
html#idx main section#s07-advantageous h2 span {
  display: block;
}
html#idx main section#s07-advantageous .inr > div {
  background: white;
  border-radius: 10px;
  padding: 15px 20px 40px;
  opacity: 0;
  transform: translateY(50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-delay: 0.6s;
}
html#idx main section#s07-advantageous .inr > div h3 {
  background: #c6992f;
  color: white;
  font-size: 150%;
  font-weight: 700;
  margin-bottom: 1em;
  padding: 10px;
}
html#idx main section#s07-advantageous .inr > div .pc-row {
  gap: 30px;
}
html#idx main section#s07-advantageous .inr > div h4 {
  font-size: 130%;
  color: #c6992f;
  margin-bottom: 0.5em;
  font-weight: 700;
}
html#idx main section#s07-advantageous .inr > div div > p {
  line-height: 1.3;
}
html#idx main section#s07-advantageous .inr > div ul {
  font-size: 120%;
  color: #c6992f;
  margin-top: 1em;
  font-weight: 700;
}
html#idx main section#s07-advantageous .inr > div ul li {
  align-items: baseline;
  margin-bottom: 10px;
}
html#idx main section#s07-advantageous .inr > div ul li h6 {
  flex: 0 0 auto;
  text-align: center;
  width: 4em;
  background: #c6992f;
  color: white;
  margin-right: 10px;
  padding: 5px;
}
html#idx main section#s07-advantageous .inr > div table {
  font-size: 120%;
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-left: 2px solid white;
}
@media (width <= 730px) {
  html#idx main section#s07-advantageous .inr > div table {
    margin-inline: auto;
  }
}
html#idx main section#s07-advantageous .inr > div table tr > * {
  border: 1px solid #999;
  padding: 5px 15px;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
}
html#idx main section#s07-advantageous .inr > div table thead tr > * {
  background: rgba(211, 182, 132, 0.5);
}
html#idx main section#s07-advantageous .inr > div table tbody tr > *:nth-child(2) {
  font-size: 130%;
}
html#idx main section#s07-advantageous .btns {
  --btnbgcolor: white;
  --textcolor: #264a90;
  margin-top: 4em;
}
html#idx main section#s07-advantageous.scrolling .inr > div {
  opacity: 1;
  transform: translateY(0);
}
html#idx main section#s08-voice {
  --bgcolor: rgba(0, 153, 217, 0.1);
  background: url(/wp-content/themes/custom/img/1491.png) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/300px var(--bgcolor);
  padding: 60px 0 80px;
}
html#idx main section#s08-voice ul {
  padding-top: 30px;
}
@media (width > 730px) {
  html#idx main section#s08-voice ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
html#idx main section#s08-voice ul li {
  background: white;
  padding: 30px 15px 20px;
  position: relative;
  opacity: 0;
  transform: translateY(-50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}
@media (width <= 730px) {
  html#idx main section#s08-voice ul li {
    margin-bottom: 60px;
  }
}
html#idx main section#s08-voice ul li::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: -15px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: url(/wp-content/themes/custom/img/0002.svg) no-repeat center/contain;
}
html#idx main section#s08-voice ul li:nth-child(1) {
  transition-delay: 0.6s;
}
html#idx main section#s08-voice ul li:nth-child(2) {
  transition-delay: 1s;
}
html#idx main section#s08-voice ul li:nth-child(3) {
  transition-delay: 1.4s;
}
html#idx main section#s08-voice ul li h3 {
  font-weight: 700;
  font-size: 150%;
  line-height: 1.2;
  margin-bottom: 15px;
}
html#idx main section#s08-voice ul li figure {
  margin-bottom: 15px;
}
html#idx main section#s08-voice ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
html#idx main section#s08-voice ul li p {
  line-height: 1.8;
}
html#idx main section#s08-voice ul:has(li:nth-child(5)) li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}
html#idx main section#s08-voice.scrolling ul li {
  opacity: 1;
  transform: translateY(0);
}
html#idx main section#s09-cases {
  background: url(/wp-content/themes/custom/img/1891.png) no-repeat top center/130%;
  padding-top: 100px;
  padding-bottom: 80px;
}
html#idx main section#s09-cases ul {
  padding-top: 30px;
}
@media (width > 730px) {
  html#idx main section#s09-cases ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
html#idx main section#s09-cases ul li {
  max-width: 366.6666666667px;
  padding: 15px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
  text-align: center;
  aspect-ratio: 3/2;
}
@media (width <= 730px) {
  html#idx main section#s09-cases ul li {
    margin-bottom: 20px;
  }
}
html#idx main section#s09-cases ul li:nth-child(1) {
  transition-delay: 0.6s;
}
html#idx main section#s09-cases ul li:nth-child(2) {
  transition-delay: 1s;
}
html#idx main section#s09-cases ul li:nth-child(3) {
  transition-delay: 1.4s;
}
html#idx main section#s09-cases ul li figure {
  position: absolute;
  inset: 0;
  z-index: -1;
}
html#idx main section#s09-cases ul li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html#idx main section#s09-cases ul li > div {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  height: 100%;
}
html#idx main section#s09-cases ul li > div p {
  line-height: 1.8;
}
html#idx main section#s09-cases ul li > div h3 {
  border-top: 1px solid white;
  font-weight: 700;
  font-size: 130%;
}
html#idx main section#s09-cases.scrolling ul li {
  opacity: 1;
  transform: translateY(0);
}
html#idx main section#s09-cases .btns {
  margin-top: 4em;
}
html#idx main section#s10-toda {
  --textcolor: white;
}
@media (width <= 730px) {
  html#idx main section#s10-toda {
    background: url(/wp-content/themes/custom/img/1391.png) no-repeat bottom -3vw center/130%, linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) calc(100% - 100vw), rgba(0, 0, 0, 0) calc(100% - 80vw)), url(/wp-content/themes/custom/img/2002.jpg) no-repeat bottom left -10vw/auto 100vw;
    padding-top: 30px;
    padding-bottom: 100vw;
  }
}
@media (width > 730px) {
  html#idx main section#s10-toda {
    background: url(/wp-content/themes/custom/img/1391.png) no-repeat bottom -3vw center/130%, linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 65%), url(/wp-content/themes/custom/img/2002.jpg) no-repeat top left min(50vw, (100vw - 1600px) * 0.8571428571 + 800px)/auto 100%;
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
@media (width > 730px) {
  html#idx main section#s10-toda .inr > div {
    width: 50%;
  }
}
html#idx main section#s10-toda .inr > div h2 {
  font-size: 150%;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}
html#idx main section#s10-toda .inr > div p {
  line-height: 1.7;
  margin-bottom: 1em;
}
html#idx main section#s10-toda .inr > div p.credit {
  text-align: right;
}
html#idx main section#s11-faq {
  --bgcolor: rgba(0, 153, 217, 0.1);
  background: url(/wp-content/themes/custom/img/1491.png) repeat top calc(-100px + 1px * var(--scrpos-y) * -0.2) center/300px var(--bgcolor);
  padding: 60px 0 80px;
}
html#idx main section#s11-faq ul {
  background: white;
  border-radius: 10px;
}
@media (width <= 730px) {
  html#idx main section#s11-faq ul {
    padding: 30px 10px;
  }
}
@media (width > 730px) {
  html#idx main section#s11-faq ul {
    padding: 60px;
  }
}
html#idx main section#s11-faq ul li {
  line-height: 1.3;
}
html#idx main section#s11-faq ul li + li {
  margin-top: 3em;
}
html#idx main section#s11-faq ul li h3, html#idx main section#s11-faq ul li p {
  justify-content: flex-start;
}
html#idx main section#s11-faq ul li h3 span, html#idx main section#s11-faq ul li p span {
  display: inline-block;
  width: 1em;
  padding: 4px;
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  text-align: center;
  flex: 0 0 auto;
  margin-right: 15px;
  line-height: 1;
  vertical-align: middle;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
html#idx main section#s11-faq ul li h3 {
  font-size: 160%;
  font-weight: 700;
  align-items: baseline;
}
html#idx main section#s11-faq ul li h3 span {
  background: #5ca0ff;
}
html#idx main section#s11-faq ul li p {
  margin-top: 20px;
}
html#idx main section#s11-faq ul li p span {
  background: #929292;
}
html#idx main section#s11-faq .btns {
  margin-top: 2em;
}
html#idx main section#s12-instagram {
  background: url(/wp-content/themes/custom/img/0092.png) repeat center/0.4px #e9e9e9;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
html#idx main section#s12-instagram::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  inset: 30px 0 -30px 0;
  background: url(/wp-content/themes/custom/img/2292.png) no-repeat center/contain;
}
html#idx main section#s12-instagram .inr {
  z-index: 2;
}
html#idx main section#s12-instagram h2 img {
  max-height: 95px;
}
html#idx main section#s13-access {
  padding-top: 80px;
  padding-bottom: 30px;
}
html#idx main section#s13-access .pc-row {
  gap: 40px;
}
html#idx main section#s13-access h2 {
  margin-bottom: 2em;
}
html#idx main section#s13-access h3 {
  max-width: 400px;
  margin-bottom: 2em;
}
html#idx main section#s13-access address {
  margin-left: 1em;
  line-height: 1.7;
}
html#idx main section#s13-access .calendar {
  background: #ebebeb;
  margin-top: 2em;
  text-align: center;
  margin-bottom: 2em;
}
html#idx main section#s13-access > iframe {
  width: 100%;
  height: 600px;
  margin-bottom: 2em;
}

html#menu section.pgtitle {
  background: url(/wp-content/themes/custom/img/02/02.png) no-repeat top center/130%, url(/wp-content/themes/custom/img/02/03.jpg) no-repeat left top/60% white;
}
@media (width <= 730px) {
  html#menu section.pgtitle ul.anchors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 20px 10px;
  }
}
@media (width > 730px) {
  html#menu section.pgtitle ul.anchors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 15px;
  }
}
@media (width <= 730px) {
  html#menu section.pgtitle ul.anchors li {
    font-size: 75%;
  }
}
@media (width > 730px) {
  html#menu section.pgtitle ul.anchors li {
    font-size: 90%;
  }
}
html#menu section.pgtitle ul.anchors li a {
  text-align: center;
  display: block;
  background-color: var(--keycolor);
  color: white;
  position: relative;
}
@media (width <= 730px) {
  html#menu section.pgtitle ul.anchors li a {
    padding: 10px 10px 10px 30px;
  }
}
@media (width > 730px) {
  html#menu section.pgtitle ul.anchors li a {
    padding: 10px 10px 10px 60px;
  }
}
html#menu section.pgtitle ul.anchors li a[href^="#s01"] {
  --keycolor: #c99c2f;
}
html#menu section.pgtitle ul.anchors li a[href^="#s02"] {
  --keycolor: #93b253;
}
html#menu section.pgtitle ul.anchors li a[href^="#s03"] {
  --keycolor: #5b887d;
}
html#menu section.pgtitle ul.anchors li a[href^="#s04"] {
  --keycolor: #5b88b8;
}
html#menu section.pgtitle ul.anchors li a[href^="#s05"] {
  --keycolor: #b88198;
}
html#menu section.pgtitle ul.anchors li a::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  right: 5px;
  top: calc(50% - 10px);
  width: 10px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.25 19.09"><g fill="white"><polygon class="cls-1" points=".71 19.09 0 18.38 8.84 9.55 0 .71 .71 0 10.25 9.55 .71 19.09"/></g></svg>') no-repeat center/contain;
}
html#menu section.pgtitle ul.anchors li a img {
  position: absolute;
  left: 10px;
  top: -20px;
  height: 110%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 730px) {
  html#menu section.pgtitle ul.anchors li a img {
    width: min(20%, 75px);
  }
}
@media (width > 730px) {
  html#menu section.pgtitle ul.anchors li a img {
    width: min(25%, 100px);
  }
}
html#menu main > section:not(.pgtitle) {
  border-top: 4px solid var(--keycolor);
}
@media (width <= 730px) {
  html#menu main > section:not(.pgtitle) {
    padding-bottom: 60px;
  }
}
@media (width > 730px) {
  html#menu main > section:not(.pgtitle) {
    padding-bottom: 150px;
  }
}
html#menu main > section:not(.pgtitle) h3 {
  width: min(10em, 100%);
  margin: 0 auto 60px;
  font-size: 130%;
  text-align: center;
  display: block;
  padding: 10px 80px;
  background-color: var(--keycolor);
  color: white;
  position: relative;
  border-radius: 0 0 10px 10px;
}
html#menu main > section:not(.pgtitle) h3 img {
  position: absolute;
  left: 10px;
  top: -30px;
  width: 80px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width > 730px) {
  html#menu main > section:not(.pgtitle) .plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
  }
}
html#menu main > section:not(.pgtitle) .plans section {
  background: white;
  opacity: 0;
  transform: translateY(50px);
  transition-property: opacity, transform;
  transition-duration: 1s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  row-gap: 0;
}
@media (width <= 730px) {
  html#menu main > section:not(.pgtitle) .plans section {
    margin-bottom: 20px;
  }
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(1) {
  transition-delay: 0.8s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(2) {
  transition-delay: 1.2s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(3) {
  transition-delay: 1.6s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(4) {
  transition-delay: 2s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(5) {
  transition-delay: 2.4s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(6) {
  transition-delay: 2.8s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(7) {
  transition-delay: 3.2s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(8) {
  transition-delay: 3.6s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(9) {
  transition-delay: 4s;
}
html#menu main > section:not(.pgtitle) .plans section:nth-child(10) {
  transition-delay: 4.4s;
}
html#menu main > section:not(.pgtitle) .plans section h4 {
  font-size: 130%;
  background: var(--keycolor);
  color: white;
  padding: 10px;
  font-weight: 700;
  margin-bottom: 10px;
}
html#menu main > section:not(.pgtitle) .plans section h4 + div {
  display: contents;
}
html#menu main > section:not(.pgtitle) .plans section h5 {
  color: var(--keycolor);
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 110%;
  padding: 0 10px;
}
html#menu main > section:not(.pgtitle) .plans section p {
  line-height: 1.6;
  padding: 0 10px;
}
html#menu main > section:not(.pgtitle) .plans section p strong {
  color: var(--keycolor);
}
html#menu main > section:not(.pgtitle) .plans section p.eyecatch {
  width: 120px;
  float: right;
  margin: 0 0 10px 20px;
}
html#menu main > section:not(.pgtitle) .plans section h6 {
  padding: 5px 10px;
  margin: 10px 10px 0 10px;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--keycolor);
  color: white;
  border-radius: 6px;
}
html#menu main > section:not(.pgtitle) .plans section ul {
  padding: 0 10px;
  font-size: 120%;
  color: var(--keycolor);
  margin-top: 1em;
  font-weight: 700;
}
html#menu main > section:not(.pgtitle) .plans section ul li {
  align-items: baseline;
  margin-bottom: 10px;
}
html#menu main > section:not(.pgtitle) .plans section ul li h6 {
  flex: 0 0 auto;
  text-align: center;
  width: 4em;
  background: var(--keycolor);
  color: white;
  margin-right: 10px;
  padding: 5px;
}
html#menu main > section:not(.pgtitle) .plans section table {
  margin-top: 1em;
  width: 100%;
  font-size: 120%;
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-left: 2px solid white;
}
@media (width <= 730px) {
  html#menu main > section:not(.pgtitle) .plans section table {
    margin-inline: auto;
  }
}
html#menu main > section:not(.pgtitle) .plans section table tr > * {
  border: 1px solid #999;
  padding: 5px 15px;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
}
html#menu main > section:not(.pgtitle) .plans section table tbody tr > *:nth-child(2) {
  font-size: 130%;
}
html#menu main > section:not(.pgtitle) .plans + p {
  text-align: center;
  line-height: 1.5;
}
@media (width > 730px) {
  html#menu main > section:not(.pgtitle) .plans + p {
    padding-top: 60px;
  }
}
html#menu main > section:not(.pgtitle).scrolling .plans section {
  opacity: 1;
  transform: translateY(0);
}
html#menu main section#s01-coating {
  --keycolor: #c99c2f;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0) 150px), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 252"><g fill="rgba(201, 156, 47, 0.2)"><g class="cls-1"><g><path class="cls-3" d="M75.89,15.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78S106.09,15.81,75.89,15.81ZM58.65,119.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM41.38,70.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM48.03,87.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM55.31,78.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM66.77,46.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM70.76,49.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM73.31,54.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM74.45,47.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM77.1,44.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM81.7,44.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM85.45,48.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM76.96,57.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM78.31,57.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M95.82,81.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM91.18,88.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM96.22,77.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM92.39,66.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM55.72,81.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM60.45,88.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM59.32,65.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM59.45,98.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM92.35,98.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM75.89,37.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM37.02,48.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM42.4,36.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM53.27,28.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM66.26,26.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM78.93,31.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM91.57,35.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM105.21,33.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM108.12,49.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM36.09,87.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM43.64,96.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM40.59,96.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM53.18,104.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM63.63,105.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM77.47,107.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM90.31,115.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM86.64,110.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM96.81,106.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM107.22,101.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM118.93,91.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM112.16,95.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M121.22,85.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM117.05,80.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g><g><path class="cls-3" d="M224.89,122.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78-24.57-54.77-54.78-54.77ZM207.65,226.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM190.38,177.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM197.03,194.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM204.31,185.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM215.77,153.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM219.76,156.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM222.31,161.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM223.45,154.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM226.1,151.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM230.7,151.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM234.45,155.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM225.96,164.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM227.31,164.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M244.82,188.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM240.18,195.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM245.22,184.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM241.39,173.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM204.72,188.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM209.45,195.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM208.32,172.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM208.45,205.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM241.35,205.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM224.89,144.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM186.02,155.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM191.4,143.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM202.27,135.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM215.26,133.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM227.93,138.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM240.57,142.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM254.21,140.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM257.12,156.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM185.09,194.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM192.64,203.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM189.59,203.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM202.18,211.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM212.63,212.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM226.47,214.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM239.31,222.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM235.64,217.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM245.81,213.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM256.22,208.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM267.93,198.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM261.16,202.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M270.22,192.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM266.05,187.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g></g></g></svg>') repeat center/300px rgba(201, 156, 47, 0.1);
}
html#menu main section#s01-coating table thead tr > * {
  background: rgba(201, 156, 47, 0.3);
}
html#menu main section#s02-maintenance {
  --keycolor: #93b253;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0) 150px), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 252"><g fill="rgba(147, 178, 83, 0.2)"><g class="cls-1"><g><path class="cls-3" d="M75.89,15.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78S106.09,15.81,75.89,15.81ZM58.65,119.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM41.38,70.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM48.03,87.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM55.31,78.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM66.77,46.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM70.76,49.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM73.31,54.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM74.45,47.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM77.1,44.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM81.7,44.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM85.45,48.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM76.96,57.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM78.31,57.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M95.82,81.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM91.18,88.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM96.22,77.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM92.39,66.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM55.72,81.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM60.45,88.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM59.32,65.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM59.45,98.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM92.35,98.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM75.89,37.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM37.02,48.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM42.4,36.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM53.27,28.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM66.26,26.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM78.93,31.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM91.57,35.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM105.21,33.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM108.12,49.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM36.09,87.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM43.64,96.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM40.59,96.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM53.18,104.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM63.63,105.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM77.47,107.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM90.31,115.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM86.64,110.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM96.81,106.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM107.22,101.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM118.93,91.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM112.16,95.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M121.22,85.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM117.05,80.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g><g><path class="cls-3" d="M224.89,122.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78-24.57-54.77-54.78-54.77ZM207.65,226.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM190.38,177.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM197.03,194.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM204.31,185.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM215.77,153.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM219.76,156.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM222.31,161.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM223.45,154.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM226.1,151.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM230.7,151.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM234.45,155.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM225.96,164.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM227.31,164.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M244.82,188.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM240.18,195.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM245.22,184.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM241.39,173.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM204.72,188.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM209.45,195.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM208.32,172.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM208.45,205.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM241.35,205.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM224.89,144.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM186.02,155.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM191.4,143.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM202.27,135.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM215.26,133.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM227.93,138.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM240.57,142.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM254.21,140.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM257.12,156.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM185.09,194.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM192.64,203.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM189.59,203.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM202.18,211.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM212.63,212.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM226.47,214.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM239.31,222.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM235.64,217.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM245.81,213.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM256.22,208.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM267.93,198.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM261.16,202.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M270.22,192.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM266.05,187.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g></g></g></svg>') repeat center/300px rgba(147, 178, 83, 0.1);
}
html#menu main section#s02-maintenance table thead tr > * {
  background: rgba(147, 178, 83, 0.3);
}
html#menu main section#s03-carwash {
  --keycolor: #5b887d;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0) 150px), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 252"><g fill="rgba(91, 136, 125, 0.2)"><g class="cls-1"><g><path class="cls-3" d="M75.89,15.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78S106.09,15.81,75.89,15.81ZM58.65,119.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM41.38,70.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM48.03,87.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM55.31,78.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM66.77,46.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM70.76,49.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM73.31,54.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM74.45,47.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM77.1,44.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM81.7,44.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM85.45,48.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM76.96,57.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM78.31,57.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M95.82,81.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM91.18,88.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM96.22,77.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM92.39,66.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM55.72,81.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM60.45,88.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM59.32,65.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM59.45,98.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM92.35,98.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM75.89,37.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM37.02,48.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM42.4,36.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM53.27,28.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM66.26,26.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM78.93,31.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM91.57,35.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM105.21,33.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM108.12,49.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM36.09,87.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM43.64,96.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM40.59,96.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM53.18,104.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM63.63,105.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM77.47,107.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM90.31,115.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM86.64,110.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM96.81,106.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM107.22,101.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM118.93,91.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM112.16,95.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M121.22,85.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM117.05,80.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g><g><path class="cls-3" d="M224.89,122.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78-24.57-54.77-54.78-54.77ZM207.65,226.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM190.38,177.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM197.03,194.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM204.31,185.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM215.77,153.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM219.76,156.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM222.31,161.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM223.45,154.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM226.1,151.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM230.7,151.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM234.45,155.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM225.96,164.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM227.31,164.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M244.82,188.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM240.18,195.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM245.22,184.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM241.39,173.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM204.72,188.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM209.45,195.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM208.32,172.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM208.45,205.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM241.35,205.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM224.89,144.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM186.02,155.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM191.4,143.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM202.27,135.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM215.26,133.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM227.93,138.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM240.57,142.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM254.21,140.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM257.12,156.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM185.09,194.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM192.64,203.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM189.59,203.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM202.18,211.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM212.63,212.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM226.47,214.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM239.31,222.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM235.64,217.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM245.81,213.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM256.22,208.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM267.93,198.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM261.16,202.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M270.22,192.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM266.05,187.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g></g></g></svg>') repeat center/300px rgba(91, 136, 125, 0.1);
}
html#menu main section#s03-carwash table thead tr > * {
  background: rgba(91, 136, 125, 0.3);
}
html#menu main section#s04-cleaning {
  --keycolor: #5b88b8;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0) 150px), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 252"><g fill="rgba(91, 136, 184, 0.2)"><g class="cls-1"><g><path class="cls-3" d="M75.89,15.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78S106.09,15.81,75.89,15.81ZM58.65,119.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM41.38,70.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM48.03,87.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM55.31,78.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM66.77,46.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM70.76,49.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM73.31,54.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM74.45,47.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM77.1,44.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM81.7,44.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM85.45,48.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM76.96,57.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM78.31,57.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M95.82,81.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM91.18,88.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM96.22,77.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM92.39,66.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM55.72,81.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM60.45,88.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM59.32,65.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM59.45,98.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM92.35,98.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM75.89,37.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM37.02,48.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM42.4,36.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM53.27,28.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM66.26,26.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM78.93,31.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM91.57,35.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM105.21,33.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM108.12,49.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM36.09,87.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM43.64,96.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM40.59,96.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM53.18,104.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM63.63,105.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM77.47,107.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM90.31,115.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM86.64,110.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM96.81,106.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM107.22,101.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM118.93,91.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM112.16,95.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M121.22,85.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM117.05,80.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g><g><path class="cls-3" d="M224.89,122.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78-24.57-54.77-54.78-54.77ZM207.65,226.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM190.38,177.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM197.03,194.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM204.31,185.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM215.77,153.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM219.76,156.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM222.31,161.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM223.45,154.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM226.1,151.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM230.7,151.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM234.45,155.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM225.96,164.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM227.31,164.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M244.82,188.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM240.18,195.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM245.22,184.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM241.39,173.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM204.72,188.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM209.45,195.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM208.32,172.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM208.45,205.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM241.35,205.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM224.89,144.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM186.02,155.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM191.4,143.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM202.27,135.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM215.26,133.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM227.93,138.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM240.57,142.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM254.21,140.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM257.12,156.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM185.09,194.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM192.64,203.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM189.59,203.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM202.18,211.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM212.63,212.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM226.47,214.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM239.31,222.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM235.64,217.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM245.81,213.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM256.22,208.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM267.93,198.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM261.16,202.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M270.22,192.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM266.05,187.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g></g></g></svg>') repeat center/300px rgba(91, 136, 184, 0.1);
}
html#menu main section#s04-cleaning table thead tr > * {
  background: rgba(91, 136, 184, 0.3);
}
html#menu main section#s05-option {
  --keycolor: #b88198;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0) 150px), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 252"><g fill="rgba(184, 129, 152, 0.2)"><g class="cls-1"><g><path class="cls-3" d="M75.89,15.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78S106.09,15.81,75.89,15.81ZM58.65,119.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM41.38,70.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM48.03,87.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM55.31,78.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM66.77,46.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM70.76,49.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM73.31,54.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM74.45,47.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM77.1,44.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM81.7,44.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM85.45,48.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM76.96,57.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM78.31,57.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M95.82,81.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM91.18,88.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM96.22,77.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM92.39,66.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM55.72,81.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM60.45,88.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM59.32,65.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM59.45,98.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM92.35,98.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM75.89,37.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM37.02,48.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM42.4,36.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM53.27,28.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM66.26,26.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM78.93,31.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM91.57,35.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM105.21,33.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM108.12,49.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM36.09,87.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM43.64,96.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM40.59,96.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM53.18,104.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM63.63,105.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM77.47,107.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM90.31,115.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM86.64,110.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM96.81,106.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM107.22,101.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM118.93,91.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM112.16,95.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M121.22,85.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM117.05,80.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g><g><path class="cls-3" d="M224.89,122.81c-30.21,0-54.78,24.57-54.78,54.77s24.57,54.78,54.78,54.78,54.78-24.57,54.78-54.78-24.57-54.77-54.78-54.77ZM207.65,226.61c-26.94-9.65-40.96-39.31-31.31-66.25,9.65-26.94,39.31-40.96,66.25-31.3,26.94,9.65,40.95,39.31,31.31,66.25-9.65,26.94-39.31,40.96-66.26,31.3ZM190.38,177.11c0,19.05,15.45,34.5,34.5,34.5s34.51-15.45,34.51-34.5-15.45-34.51-34.51-34.51-34.5,15.45-34.5,34.51ZM197.03,194.45c.96-.9,1.77-1.64,2.46-2.21,0,2.13-.42,5.03,1.1,5.29h7.66c.66-.19.94-.74,1.1-1.44,1.73,1.9,2.59,3.07,2.63,4.18-.02,1.29-1.18,2.66-3.55,5.21-4.64-2.7-8.55-6.5-11.39-11.04ZM204.31,185.44c-1.35-.48-1.7-2.19-1.61-3.53,1-.17,4.65,0,6.31.46-.31.33-.63.68-.99,1.06.4-.37.76-.71,1.11-1.03.12.04.23.07.32.11.88.37,1.86,1.84,1.31,2.62-.31.45-2.9.62-4.77.53.56-.64,1.22-1.36,2.03-2.22-.96.89-1.74,1.62-2.43,2.2-.55-.04-1.02-.11-1.28-.2ZM215.77,153.92c.19,1.41,1.18,2.71,1.91,3.65.27.35.59.77.72,1.01-.02.07-.04.14-.04.22,0,.13.03.25.09.36v.78s-.02.07-.03.1c-2.07-2.25-3.08-3.52-3.1-4.73.02-.44.17-.9.46-1.4ZM219.76,156.8c.06.12.11.21.14.27.21.45.38.86.48,1.19-.16-.02-.35-.05-.54-.08-.26-.8-.68-1.41-1.11-2.05-.24-.35-.48-.71-.73-1.14-.37-.65-.45-1.28-.22-1.87.24-.62.77-1.01.99-1.08.1-.03.2-.05.3-.07-.32.63-.4,1.21-.4,1.64,0,1.18.7,2.48,1.08,3.18ZM222.31,161.01c.97-.05,1.97-.11,2.57-.11s1.6.06,2.58.11c1.36.08,2.19.12,2.72.12.07,0,.11,0,.16,0-.44.41-.84.78-1.22,1.12-.49-.05-.97-.1-1.42-.17h-5.85c-.39.07-.79.12-1.21.17-.37-.34-.77-.7-1.21-1.11.5.01,1.35-.03,2.88-.11ZM223.45,154.41c.07,1.38.23,3.16.32,4.06-.39-.01-.91-.04-1.37-.09-.11-.52-.36-1.28-.69-2.27-.1-.28-.18-.54-.26-.78-.04-.14-.09-.29-.15-.48-.68-2.04-.14-2.7.05-2.86.02-.02.05-.03.07-.05.62-.83,1.69-.66,2.27-.49-.13.58-.3,1.64-.23,2.96ZM226.1,151.45c.58-.17,1.65-.33,2.27.5.6.79.39,1.91.11,2.91-.09.3-.23.73-.39,1.19-.34.99-.6,1.79-.71,2.34-.45.05-.98.08-1.37.09.09-.9.25-2.68.32-4.06.07-1.32-.11-2.38-.23-2.96ZM230.7,151.98c.1.02.2.04.3.07.23.07.75.46,1,1.09.23.58.15,1.21-.22,1.86-.24.43-.49.79-.73,1.14-.44.64-.85,1.25-1.12,2.04-.19.03-.38.06-.54.08.09-.27.23-.66.48-1.19.03-.07.08-.16.14-.27.38-.7,1.09-2,1.09-3.19,0-.43-.08-1.01-.4-1.64ZM234.45,155.32c-.02,1.21-1.01,2.48-3.08,4.71,0-.03-.01-.06-.03-.08v-.78c.06-.11.09-.24.09-.36,0-.08-.02-.16-.04-.23.13-.25.45-.67.72-1.02.73-.94,1.7-2.22,1.9-3.61.27.49.42.94.44,1.37ZM225.96,164.63c-.38.17-.73.26-1.07.27-.35,0-.71-.1-1.1-.28.72,0,1.44,0,2.17,0ZM227.31,164.67c2.27.09,4.53.3,6.73.62,1.38.2,2.82.23,3.53.61.97.51,1.63,2.19,2.22,3.33.6,1.16,1.12,2.37,1.48,3.43-.13.12-.27.25-.39.37-3.2-.25-6.58-.42-10.03-.51-.11-.1-.21-.2-.33-.3.1.11.19.2.28.3-1.96-.05-3.94-.09-5.93-.09.2,4.78.53,7.34,1.85,8.76.9.87,2.28,1.32,4.42,1.59-.2.22-.4.44-.63.68.25-.24.48-.45.71-.66,1.72.21,3.92.3,6.77.39-3.4.12-5.89.23-7.73.54.08-.09.16-.17.25-.26-.1.1-.19.18-.29.27-1.6.27-2.7.7-3.46,1.42-.5.52-.86,1.21-1.12,2.1-.25.08-.49.14-.73.15-.33,0-.66-.09-1.01-.24-.27-.86-.62-1.52-1.11-2.03-.72-.67-1.73-1.08-3.16-1.35-.12-.11-.22-.21-.35-.32.1.11.19.2.29.31-1.86-.35-4.43-.46-8-.58,2.96-.1,5.22-.19,6.97-.42.24.22.48.45.74.69-.23-.25-.44-.48-.65-.7,2-.27,3.32-.71,4.19-1.54,1.34-1.42,1.67-3.98,1.87-8.78-1.91,0-3.8.03-5.69.08.09-.1.18-.19.28-.3-.11.11-.21.2-.32.3-3.46.09-6.85.25-10.06.5-.17-.16-.36-.34-.55-.51.35-1.01.81-2.22,1.42-3.37.55-1.05,1.32-2.75,2.21-3.23,1.06-.56,3.17-.59,4.84-.81,1.82-.23,3.72-.37,5.64-.43M244.82,188.47c-.06.99-2.55.61-3.53.61-1.52,0-2.98.2-3.73-.31-.09-1.56,2.33-1.01,4.33-1.01,1.17,0,2.98-.23,2.93.71ZM240.18,195.42c-.02.25,0,.47.02.67-1.85,1.67-2.99,2.5-4.07,2.53-1.31-.03-2.7-1.21-5.3-3.64,3.21.08,6.36.22,9.35.44ZM245.22,184.48c-.57.21-1.38.18-2.21.14-.39-.36-.81-.74-1.27-1.18.4.42.75.8,1.08,1.17-.32-.01-.63-.03-.93-.03-1.16,0-2.36.2-3.12-.31-.26-1.23.26-2.01,1.16-2.5.54.48,1.13,1.03,1.81,1.67-.62-.66-1.15-1.24-1.62-1.77,1.79-.86,4.87-.74,6.72-.72.07,1.47-.3,3.06-1.62,3.53ZM241.39,173.05c-.14-.01-.28-.02-.42-.03.1-.1.2-.22.3-.32.04.12.08.24.12.35ZM204.72,188.67c.01-1.41,2.27-.91,4.23-.91,1.15,0,2.86-.19,3.02.5.29,1.25-2.55.81-3.43.81-1.55,0-3.2.26-3.83-.4ZM209.45,195.42c3.03-.22,6.23-.36,9.49-.44-2.6,2.42-3.98,3.61-5.29,3.64-1.13-.03-2.31-.91-4.28-2.7.03-.16.06-.33.08-.5ZM208.32,172.52c.15.17.31.33.45.48-.21.02-.43.03-.64.04.06-.16.12-.35.18-.53ZM208.45,205.51c2.54-2.36,3.91-3.51,5.2-3.54,1.36.03,2.79,1.3,5.61,3.94-2.65-2.84-3.92-4.27-3.94-5.64.05-1.31,1.23-2.7,3.66-5.3,1.9-.05,3.81-.08,5.73-.08-.06-1.58-.13-2.94-.23-4.11.13-.03.27-.05.4-.05.05,0,.1.02.16.02-.1,1.18-.17,2.54-.23,4.14,2,0,3.99.03,5.97.08,2.42,2.6,3.61,3.99,3.66,5.3-.02,1.36-1.29,2.8-3.95,5.64,2.83-2.65,4.27-3.91,5.63-3.94,1.28.03,2.65,1.19,5.18,3.54-4.83,2.8-10.44,4.41-16.43,4.41s-11.6-1.61-16.43-4.42ZM241.35,205.5c-2.38-2.55-3.53-3.93-3.55-5.22.04-1.07.84-2.19,2.44-3.98.14.62.51,1.01,1.05,1.23h7.66c1.58-.42,1.09-3.24,1.09-5.47.74.59,1.62,1.39,2.7,2.4-2.84,4.54-6.75,8.34-11.39,11.04ZM224.89,144.29c18.13,0,32.82,14.7,32.82,32.82,0,6.36-1.82,12.3-4.95,17.33-1.18-1.27-2.08-2.26-2.69-3.08.12-1.99.37-3.75.46-5.19.62-.75,1.43-1.63,2.45-2.73-.95.89-1.73,1.6-2.42,2.19v-3.71c-.28-1.62-.37-3.2-1.01-4.44-.46-.91-1.27-1.39-1.61-2.12,1.23-.4,2.85-1.23,2.52-2.62-.38-1.56-3.52-1.25-5.34-1.62-.5.24-.77,1.25-1.21,1.21-.22-.52-.43-1.04-.64-1.55,1.85-1.68,3-2.51,4.09-2.53,1.36.03,2.79,1.3,5.61,3.95-2.65-2.84-3.92-4.27-3.94-5.64.05-1.36,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-1.37-.03-2.8-1.3-5.62-3.94,2.63,2.8,3.89,4.24,3.94,5.6-.02,1.08-.83,2.22-2.48,4.06-.35-.86-.71-1.71-1.11-2.5-.63-1.24-1.31-2.77-2.32-3.73-1.89-1.81-6.64-1.76-10.48-2.13.32-.35.67-.73,1.05-1.14.52-.01.68-.08.81-.21.24-.23.29-.52.23-.78,2.25-2.08,3.52-3.08,4.74-3.11,1.36.04,2.79,1.3,5.61,3.94-2.66-2.84-3.92-4.28-3.94-5.64.04-1.35,1.31-2.79,3.94-5.6-2.82,2.63-4.25,3.9-5.61,3.94-.66-.02-1.34-.33-2.18-.94-.04-.16-.07-.32-.14-.49-.54-1.31-1.6-1.87-2.74-1.99-.19-.18-.37-.34-.57-.53.17.19.33.35.49.52-.51-.04-1.04-.01-1.54.1-1.21-.98-2.58-.82-3.43-.57.05-.09.09-.19.12-.28.18-.12.28-.33.24-.56,0,0,0-.01,0-.02,0-.03.01-.06.01-.1,0-.15-.09-.31-.21-.42.04-.04.08-.08.11-.13.05-.08.07-.18.07-.27.05-.01.11-.03.16-.06.16-.09.25-.26.25-.44v-1.52c0-.18-.09-.34-.24-.44-.06-.04-.13-.06-.2-.07.02-.11,0-.23-.05-.33-.09-.17-.26-.28-.46-.28h-1.89c-.19,0-.37.11-.46.28-.05.1-.07.22-.05.33-.07.01-.13.04-.19.07-.15.09-.24.26-.24.44v1.52c0,.18.1.35.25.44.05.03.1.05.15.06,0,.09.02.19.07.27.03.05.07.09.11.13-.12.11-.21.27-.21.42,0,.03,0,.06,0,.09,0,0,0,.02,0,.02-.03.19.07.41.23.54.03.1.07.2.13.3-.85-.25-2.22-.41-3.43.57-.51-.11-1.04-.14-1.56-.1.16-.17.32-.34.49-.53-.2.19-.39.36-.58.53-1.12.13-2.17.69-2.71,1.99-.06.16-.09.31-.13.46-.85.62-1.53.94-2.2.96-1.36-.03-2.8-1.3-5.63-3.94,2.63,2.8,3.9,4.25,3.95,5.6-.02,1.37-1.29,2.8-3.95,5.64,2.83-2.65,4.26-3.91,5.63-3.94,1.21.03,2.49,1.05,4.74,3.13-.05.25,0,.53.23.76.13.13.27.2.79.21.38.41.73.78,1.05,1.13-3.89.42-8.55.19-10.6,2.03-1.1.98-1.66,2.53-2.32,3.83-.38.76-.76,1.54-1.13,2.33-1.55-1.74-2.31-2.83-2.33-3.88.05-1.36,1.32-2.79,3.94-5.6-2.81,2.63-4.26,3.9-5.61,3.94-1.36-.03-2.8-1.3-5.62-3.94,2.62,2.8,3.89,4.24,3.94,5.6-.02,1.37-1.29,2.81-3.95,5.64,2.83-2.65,4.26-3.92,5.63-3.95,1.05.03,2.16.8,3.91,2.38-.24.53-.48,1.05-.7,1.61-.34.36-.73-.93-1.21-1.11-1.87.37-5.04.05-5.34,1.72-.24,1.32,1.28,2.12,2.52,2.52-.27.72-1.05,1.09-1.52,1.92-.7,1.25-.82,2.93-1.11,4.64v3.51c-.63-.55-1.34-1.2-2.18-1.99.89.95,1.61,1.73,2.19,2.42.07,1.52.39,3.59.49,5.8-.6.76-1.41,1.66-2.45,2.77-3.13-5.03-4.95-10.96-4.95-17.32,0-18.12,14.7-32.82,32.82-32.82ZM186.02,155.27c.5.36,1,.49,1.49.4.49-.08.96-.28,1.42-.61.46-.33.89-.72,1.31-1.18.41-.46.79-.89,1.14-1.29.35-.4.67-.72.96-.96.28-.23.52-.27.7-.14.34.25.49.6.44,1.06-.05.46-.33,1.04-.82,1.74-.27.37-.56.71-.9,1.01-.33.31-.65.55-.96.75-.31.2-.6.34-.85.42-.25.08-.43.09-.53,0-.16-.11-.27-.19-.31-.26l-.18.08,2.05,3.03.17-.14c-.02-.08-.03-.16-.05-.24-.01-.07,0-.13.04-.19.06-.08.19-.19.39-.31.2-.12.45-.3.74-.54.31-.24.64-.55,1.01-.94.37-.38.76-.87,1.18-1.47.54-.77.91-1.46,1.12-2.08.21-.62.29-1.18.24-1.68-.05-.5-.2-.93-.44-1.29-.24-.37-.54-.67-.89-.92-.45-.32-.88-.5-1.3-.54-.42-.04-.82,0-1.19.15-.38.15-.73.36-1.08.64-.34.28-.67.59-.98.92-.31.33-.6.67-.87.99-.28.34-.53.62-.77.86-.23.25-.45.42-.66.52-.21.11-.41.1-.58-.02-.17-.12-.26-.37-.24-.72.01-.36.24-.84.67-1.45.23-.32.5-.65.8-.96.3-.31.59-.58.87-.81.28-.23.53-.4.76-.51.23-.11.39-.14.48-.07l.17.12.21-.1-1.49-2.52-.17.12c.03.09.05.18.06.27,0,.1-.02.19-.09.28-.07.1-.21.23-.43.39-.22.17-.49.38-.79.64-.32.26-.65.58-1.01.94-.36.37-.71.8-1.05,1.27-.37.52-.64,1.04-.81,1.55-.17.52-.24,1-.23,1.46.03.46.14.89.34,1.28.21.4.51.73.91,1.01ZM191.4,143.16l.15.18c.19-.12.31-.17.39-.16.08,0,.15.05.2.12l5.69,6.93c.06.07.08.14.08.22,0,.08-.08.19-.24.36l.15.18,6.68-5.48c.07-.06.14-.09.19-.09s.15.06.27.18l.16-.14-2.09-2.54-.16.13c.14.2.21.35.22.43,0,.08-.02.15-.09.21l-4.29,3.52-1.14-1.38,2.49-2.04c.13-.11.25-.15.36-.13.11.01.22.06.32.15l.16-.13-1.9-2.31-.16.13c.07.12.09.23.09.34,0,.11-.07.22-.21.33l-2.49,2.04-1.01-1.23,4.3-3.52c.07-.07.14-.08.23-.06.08.03.2.12.36.27l.16-.13-2.12-2.59-.16.13c.12.19.18.31.19.4,0,.09-.03.16-.1.21l-6.68,5.48ZM202.27,135.45c.07.04.12.1.16.18l3.44,8.28c.03.08.04.16.01.23-.03.07-.14.16-.33.27l.08.22,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.04-.12-.09-.16-.18l-2.31-5.58c1.07.59,1.98,1.08,2.74,1.48.75.41,1.38.74,1.89,1.01.51.27.92.48,1.23.63.31.16.54.28.7.37.16.08.27.15.32.19.06.04.09.08.11.11.02.06.02.12-.02.18-.03.05-.12.11-.27.17l.09.21,3.04-1.26-.09-.22c-.21.06-.35.07-.42.04-.07-.03-.12-.09-.16-.17l-3.43-8.28c-.04-.08-.04-.16-.01-.23.02-.07.14-.16.33-.27l-.09-.21-2.93,1.22.08.21c.23-.08.38-.02.47.18l1.97,4.75c-.28-.15-.63-.32-1.02-.53-.39-.2-.81-.42-1.24-.65-.43-.23-.86-.46-1.29-.69-.43-.23-.81-.44-1.16-.64-.34-.19-.62-.35-.84-.48-.21-.13-.33-.21-.34-.23-.02-.06-.01-.12.03-.19.04-.07.15-.14.33-.23l-.09-.21-3.85,1.6.09.21c.22-.06.35-.08.42-.04ZM215.26,133.32c0-.22.01-.37.05-.44.04-.08.1-.12.19-.13l2.96-.34.83,7.14c.01.09,0,.17-.05.23-.04.06-.17.13-.39.17l.03.23,3.54-.42-.03-.23c-.22,0-.36-.03-.42-.08-.06-.06-.09-.12-.1-.21l-.83-7.15,2.96-.34c.09-.01.17.02.22.08.05.07.1.2.15.42l.21-.02-.4-3.4-.21.02c0,.22-.02.37-.06.44-.03.08-.1.12-.2.13l-8.49.98c-.09,0-.16-.02-.22-.08-.05-.07-.1-.21-.15-.42l-.21.02.39,3.4.21-.02ZM227.93,138.83c.37.41.83.73,1.38.96.55.23,1.15.4,1.8.51.65.11,1.27.15,1.87.11.6-.04,1.14-.19,1.63-.46.48-.27.9-.67,1.23-1.2.34-.53.58-1.21.72-2.05l.85-5.08c.01-.09.05-.16.11-.2.06-.05.2-.07.42-.06l.04-.22-3.52-.59-.04.22c.21.07.34.13.38.19.04.07.05.14.04.23l-.85,5.08c-.12.74-.4,1.23-.83,1.48-.43.26-.98.32-1.67.21-.68-.11-1.19-.37-1.51-.74-.32-.38-.42-.94-.3-1.67l.85-5.08c.01-.09.05-.16.11-.21.06-.05.2-.07.42-.05l.04-.23-3.51-.59-.04.23c.21.06.34.12.38.19.04.06.05.14.04.23l-.85,5.08c-.14.83-.14,1.56.02,2.17.14.61.41,1.12.78,1.53ZM240.57,142.87c.51.49,1.08.89,1.7,1.21.58.3,1.12.52,1.62.67.5.15.96.26,1.36.32.4.06.73.1.99.12.26.02.43.04.5.07.06.03.1.06.12.1.03.04.03.09.03.16l.24-.03-.21-3.5-.23.03c0,.06,0,.11,0,.15,0,.05,0,.1-.04.15-.07.12-.24.19-.52.19s-.58-.02-.92-.08c-.34-.06-.66-.13-.97-.23-.32-.09-.54-.18-.67-.25-.31-.15-.61-.36-.91-.61-.3-.25-.54-.54-.73-.87-.19-.32-.3-.69-.32-1.08-.03-.4.07-.81.29-1.24.22-.44.5-.75.84-.97.34-.21.69-.33,1.06-.38.38-.03.75,0,1.13.09.38.09.73.21,1.03.37.33.17.63.35.9.55.27.21.5.41.7.6.19.19.34.37.43.53.09.16.12.29.07.38-.03.05-.06.1-.08.14-.03.04-.05.07-.08.1l.09.2,2.83-2.12-.15-.14c-.11.06-.21.07-.3.02-.09-.04-.19-.13-.32-.28-.13-.15-.32-.34-.58-.59-.26-.25-.6-.52-1-.82-.41-.3-.93-.61-1.54-.93-.62-.31-1.28-.53-1.99-.65-.7-.12-1.4-.1-2.08.03-.68.14-1.31.42-1.91.84-.6.43-1.09,1.02-1.48,1.78-.39.77-.58,1.51-.58,2.24,0,.73.15,1.41.44,2.04.29.63.69,1.19,1.2,1.67ZM254.21,140.22l-6.2,6.48c-.07.06-.13.09-.21.1-.07,0-.21-.06-.38-.19l-.16.17,2.57,2.46.16-.16c-.14-.17-.21-.29-.2-.37,0-.08.03-.15.1-.21l1.59-1.67,2.4-.05c-.02.09-.05.26-.11.51-.05.26-.11.55-.19.88-.08.33-.16.68-.24,1.05-.08.37-.16.71-.23,1.02-.08.32-.15.58-.21.79-.06.21-.1.33-.12.35-.09.09-.17.13-.22.1-.06-.02-.12-.07-.2-.15l-.16.17,2.86,2.74.16-.17c-.08-.08-.15-.16-.18-.23-.04-.07-.04-.2,0-.37l1.51-6.68h4.52c.1,0,.2,0,.28.01.08,0,.16.03.23.06.07.03.15.08.25.15l.16-.17-3.18-3.04-.16.17c.05.07.1.14.13.19.03.05,0,.12-.08.2-.04.04-.22.07-.54.08-.33.02-.73.03-1.2.04-.48.01-1,.03-1.56.04-.56.01-1.1.04-1.61.06l-.09-.08,2.39-2.5c.06-.06.13-.1.21-.11.07,0,.2.06.38.2l.16-.17-2.57-2.47-.16.17c.14.17.21.29.21.37,0,.08-.03.15-.1.21ZM257.12,156.99c-.08.04-.16.06-.23.04-.08-.01-.18-.11-.31-.28l-.2.11,1.8,3.08.2-.11c-.09-.2-.12-.34-.1-.42.02-.07.07-.13.15-.18l3.24-1.88,6.18.25c.11,0,.21.02.3.04.09.02.16.07.21.15l.2-.11-1.66-2.84-.2.11c.05.07.07.15.1.23.02.09-.02.16-.1.21-.02.02-.12.02-.31.02-.19,0-.4,0-.66,0-.25,0-.54-.02-.84-.04-.31-.01-.6-.02-.87-.03-.27,0-.51-.02-.72-.03-.2-.01-.35-.02-.42-.02.14-.24.31-.55.49-.91.19-.37.38-.71.56-1.06.19-.34.36-.64.5-.9.14-.26.24-.4.29-.43.09-.05.17-.04.23.02.07.07.13.15.18.23l.2-.11-1.92-3.29-.2.11c.04.07.05.15.01.24-.04.09-.13.28-.29.59l-2.89,5.51-2.93,1.7ZM185.09,194.12c.58.03,1.15.04,1.71.06.56.02,1.07.04,1.51.05.45.01.81.02,1.1.02.29.01.45.01.5.01.11,0,.2,0,.27.03.07.02.13.08.17.16l.22-.06-.77-2.85-.23.06c0,.1,0,.19-.03.27-.01.08-.08.14-.19.17-.03.01-.2.02-.48.01-.28,0-.63,0-1.04-.02-.4,0-.85-.02-1.33-.03-.48,0-.94-.02-1.39-.03-.45-.01-.85-.02-1.21-.02-.36,0-.62,0-.78,0v-.03c.18-.1.44-.25.78-.43.34-.19.71-.4,1.1-.61.39-.21.79-.44,1.21-.67.42-.24.79-.45,1.13-.64.34-.19.62-.34.85-.46.22-.12.34-.19.35-.19.1-.03.17-.02.22.03.05.05.09.1.14.18l.22-.06-1.09-4.04-.23.07c0,.07-.01.16-.02.25-.01.09-.06.16-.16.18-.04,0-.18.02-.43.03-.25,0-.56,0-.94,0h-1.26c-.46,0-.91-.01-1.37-.02-.46,0-.88-.01-1.28-.01s-.72,0-.98,0v-.04c.22-.13.51-.31.86-.51.35-.21.72-.43,1.1-.67.39-.24.78-.47,1.16-.72.38-.24.74-.46,1.07-.65.32-.2.59-.35.8-.48.21-.13.33-.19.37-.2.1-.03.17-.02.23.04.05.06.1.14.15.23l.23-.06-.84-3.11-.22.06c.02.08-.03.16-.16.22-.03.02-.18.11-.43.27-.25.15-.58.34-.96.58-.39.25-.83.51-1.31.81-.48.3-.97.61-1.47.91-.5.31-.98.62-1.46.91-.48.3-.91.56-1.28.8-.38.23-.68.42-.91.57-.23.14-.36.21-.39.22-.13.04-.22.03-.27-.03-.05-.06-.1-.13-.15-.22l-.22.06.99,3.66.23-.06c-.07-.25-.01-.4.17-.44.08-.03.39-.04.92-.04.52,0,1.14.01,1.86.03.72.01,1.46.02,2.24.03.78.01,1.46,0,2.05-.01v.03c-.57.33-1.19.69-1.86,1.06-.66.38-1.28.73-1.86,1.07-.58.33-1.09.62-1.53.86-.44.23-.74.38-.89.42-.14.04-.25-.06-.35-.27l-.23.06.96,3.52.22-.05c0-.08,0-.16,0-.25,0-.08.06-.13.18-.16.02,0,.18,0,.45,0,.28,0,.64.02,1.08.03.44.02.94.03,1.5.04.56.01,1.12.03,1.7.05ZM192.64,203.41c.38-.55.73-1.04,1.04-1.47.31-.44.56-.79.75-1.06.19-.28.3-.42.32-.43.08-.07.15-.08.21-.04.05.03.11.08.18.15l.19-.14-2.64-3.75-.19.14c.03.07.06.15.09.22.02.08,0,.14-.05.17-.01,0-.15.05-.41.13-.27.08-.61.19-1.03.31-.42.13-.9.27-1.44.42-.53.15-1.08.32-1.64.48-.56.16-1.11.32-1.66.47-.54.16-1.04.29-1.48.42-.44.13-.81.23-1.1.33-.29.09-.47.14-.53.16-.16.04-.28.06-.37.04-.08-.02-.17-.07-.26-.16l-.19.14,1.79,2.54.19-.14c-.07-.11-.11-.19-.1-.23,0-.06.03-.1.09-.14.02-.02.06-.03.11-.05.06-.02.16-.05.28-.09.13-.04.31-.1.53-.17.22-.07.51-.16.86-.26l2.4,3.4c-.05.05-.13.15-.24.31-.11.16-.23.33-.35.5-.12.17-.24.33-.34.48-.1.14-.16.21-.17.22-.12.09-.25.04-.38-.14l-.19.14,1.99,2.83.19-.14c-.06-.09-.07-.18-.05-.28.03-.09.11-.25.25-.46.3-.43.63-.92,1.01-1.47.38-.55.77-1.1,1.16-1.69.4-.58.78-1.14,1.17-1.69ZM189.59,203.55l-1.87-2.68,4.69-1.39-2.82,4.07ZM202.18,211.01l.09.23,2.64-1.37-.1-.19c-.1.03-.19.04-.28.04-.09,0-.18-.03-.28-.11-.09-.07-.21-.22-.37-.46-.16-.23-.36-.51-.61-.85-.24-.33-.55-.68-.89-1.08-.35-.39-.76-.76-1.23-1.13-.5-.4-1.01-.71-1.52-.91-.51-.2-1-.3-1.47-.31-.47,0-.9.08-1.32.27-.41.19-.77.48-1.08.86-.39.49-.56.98-.51,1.48.06.5.24,1,.54,1.48.3.48.68.94,1.12,1.39.44.45.85.86,1.24,1.24.38.38.68.73.9,1.02.22.29.25.54.11.73-.27.33-.63.46-1.1.39-.46-.08-1.04-.39-1.72-.93-.36-.29-.68-.61-.96-.97-.29-.35-.52-.69-.7-1.01-.18-.33-.31-.62-.38-.88-.06-.26-.06-.44.02-.54.12-.16.22-.26.28-.31l-.08-.19-3.18,1.9.13.17c.09-.01.17-.02.24-.03.07-.01.14,0,.2.05.08.07.18.2.29.41.11.21.28.47.51.79.22.32.52.68.88,1.08.37.39.84.82,1.42,1.28.74.59,1.42,1.02,2.04,1.26.62.25,1.19.36,1.69.33.51-.02.95-.14,1.33-.37.38-.22.72-.51.98-.85.35-.44.56-.86.62-1.29.07-.42.04-.82-.08-1.22-.12-.39-.32-.76-.58-1.13-.26-.36-.56-.71-.87-1.05-.32-.33-.63-.65-.96-.94-.32-.3-.59-.57-.83-.82-.23-.26-.4-.49-.5-.71-.09-.21-.07-.41.06-.58.14-.17.39-.24.75-.21.36.04.84.29,1.43.77.32.26.63.55.93.86.3.33.56.63.77.93.22.29.37.56.47.8.1.24.11.4.04.5l-.13.17ZM212.63,212.91c.2.11.32.2.34.27.03.07.02.15,0,.23l-1.14,2.89-4.25-1.68,1.14-2.89c.03-.09.09-.14.16-.17.07-.04.21-.03.43.03l.08-.22-3.36-1.33-.08.22c.19.1.31.2.34.27.03.08.02.15-.01.24l-3.35,8.46c-.03.09-.09.14-.16.17-.07.04-.21.03-.43-.03l-.08.22,3.37,1.33.08-.22c-.19-.11-.31-.2-.33-.27-.03-.07-.02-.15,0-.24l1.33-3.36,4.25,1.68-1.33,3.36c-.04.08-.09.14-.16.17-.07.03-.21.03-.43-.03l-.09.22,3.37,1.33.08-.22c-.19-.1-.31-.19-.34-.27-.02-.08-.02-.15,0-.24l3.35-8.46c.03-.08.08-.14.15-.18.08-.03.22-.03.44.04l.08-.22-3.36-1.33-.09.21ZM226.47,214.79c-.05.07-.12.1-.22.09l-8.74-.67-.02.23c.22.04.36.09.41.16.05.06.07.14.06.22l-.7,9.07c0,.09-.04.16-.1.22-.05.05-.19.08-.42.09l-.02.23,8.74.68c.09,0,.16.03.21.07.04.04.07.15.08.32l.21.02.25-3.33-.21-.02c-.04.25-.09.4-.14.47-.05.07-.12.1-.22.09l-5.62-.44.14-1.81,3.26.25c.17,0,.3.06.37.15.07.09.11.2.13.33l.21.02.24-3.03-.21-.02c-.04.13-.09.23-.17.31-.08.07-.21.11-.38.1l-3.26-.26.12-1.61,5.62.43c.09.01.16.05.2.13.04.08.07.22.07.44l.22.02.26-3.39-.21-.02c-.04.22-.08.36-.14.43ZM239.31,222.36l-2.69-2.74c.67-.37,1.18-.85,1.54-1.44.36-.6.45-1.33.27-2.21-.23-1.08-.68-1.82-1.36-2.22-.68-.39-1.66-.46-2.93-.19l-6.29,1.31.05.23c.22-.02.36-.01.43.04.06.05.1.11.12.21l1.86,8.9c.02.09,0,.17-.03.23-.04.07-.16.14-.37.21l.04.23,3.54-.74-.05-.22c-.23.02-.36,0-.43-.04-.06-.04-.11-.11-.13-.2l-.67-3.21,1.68-.35c.05.06.14.16.3.32.15.15.33.33.54.52.2.2.41.41.63.62.22.21.42.42.6.59.18.2.34.35.46.49.12.14.19.21.19.24.05.22-.05.35-.31.42l.05.23,3.58-.75-.05-.23c-.2.04-.39-.04-.57-.24ZM235.64,217.33c-.15.24-.47.42-.97.53l-2.89.6-.44-2.11,2.89-.6c.5-.1.88-.07,1.11.1.23.17.38.4.44.68.06.28.01.55-.13.8ZM245.81,213.42v-.02s-1.72.85-1.72.85l-1.44-1.55h-.02s.36,2.1.36,2.1l-1.7.86v.02s1.94.42,1.94.42l.37,2.1h.02l.84-1.83,1.96.43h.01s-1.45-1.57-1.45-1.57l.83-1.8ZM256.22,208.22c.05.02.1.04.14.06.05.01.08.04.13.09.1.11.08.29-.02.56-.11.26-.25.53-.43.82-.18.3-.38.57-.59.83-.21.26-.37.44-.49.53-.26.23-.57.43-.93.62-.35.18-.72.3-1.1.35-.38.05-.77.01-1.15-.12-.38-.12-.73-.38-1.05-.75-.32-.38-.51-.77-.58-1.16-.07-.39-.05-.77.06-1.15.11-.36.28-.71.52-1.03.24-.32.48-.6.75-.82.29-.24.57-.45.87-.63.3-.17.58-.32.83-.43.25-.1.48-.17.66-.19.19-.02.32,0,.39.09.04.04.07.09.1.13.02.04.04.08.06.11h.22s-.89-3.48-.89-3.48l-.18.08c.01.13-.02.22-.1.29-.07.06-.2.13-.39.19-.19.07-.45.18-.78.32-.33.15-.72.36-1.17.63-.44.27-.93.63-1.46,1.09-.53.45-.99.99-1.37,1.61-.39.62-.64,1.27-.77,1.96-.14.69-.12,1.4.05,2.11.17.72.54,1.42,1.11,2.07.56.67,1.19,1.13,1.88,1.41.68.28,1.37.41,2.08.38.7-.03,1.38-.19,2.04-.48.66-.3,1.26-.67,1.79-1.14.5-.42.91-.84,1.26-1.27.33-.41.61-.8.83-1.14.22-.35.38-.64.5-.89.12-.24.21-.39.26-.44.05-.03.09-.06.13-.08.05-.01.1,0,.16.04l.07-.25-3.37-1.15-.05.23ZM267.93,198.01c-.1.02-.28,0-.52-.05-.52-.11-1.1-.23-1.75-.38-.65-.15-1.31-.29-2-.44-.69-.14-1.36-.28-2.01-.43-.66-.15-1.24-.28-1.76-.4-.52-.13-.94-.23-1.26-.29-.33-.08-.5-.13-.52-.14-.09-.05-.13-.12-.12-.18.01-.06.03-.14.07-.22l-.19-.13-2.47,3.86.2.13c.05-.07.11-.11.17-.17.06-.04.12-.06.18-.02,0,0,.1.12.27.33.17.22.39.5.67.84.28.34.59.73.93,1.17.35.43.7.88,1.07,1.34.37.45.72.91,1.07,1.35.34.44.66.85.95,1.21.29.36.53.66.72.9.19.23.31.38.35.43.1.14.16.25.17.32.02.08,0,.19-.05.31l.2.12,1.67-2.62-.2-.13c-.07.11-.13.17-.18.19-.05.02-.1.01-.16-.02-.02-.02-.05-.05-.09-.09-.04-.05-.11-.12-.2-.22-.08-.1-.2-.25-.35-.43-.15-.18-.34-.41-.57-.7l2.24-3.51c.06.02.19.06.37.1.19.04.39.09.6.15.21.04.4.09.56.13.17.04.26.06.27.07.12.07.13.21.02.41l.19.12,1.86-2.92-.2-.13c-.05.09-.13.14-.23.15ZM261.16,202.23l-3.07-3.81,4.83,1.06-1.76,2.75Z"/><path class="cls-3" d="M270.22,192.05c.09.03.17.03.24,0,.07-.03.16-.15.25-.36l.22.07-1.16,3.47-.23-.08c.05-.22.05-.37.01-.44-.04-.07-.1-.12-.19-.14l-8.7-2.93c-.09-.03-.17-.03-.24,0-.08.03-.16.15-.26.36l-.22-.07,2.07-6.16c.42-1.24.98-2.06,1.67-2.45.69-.39,1.57-.41,2.63-.05.85.29,1.46.74,1.79,1.36.33.62.49,1.31.47,2.07l3.77-.94c.27-.06.44-.18.5-.37l.22.07-1.17,3.49-.23-.07c.07-.25,0-.41-.21-.48-.02-.01-.12,0-.31.04-.18.04-.39.09-.65.16-.25.06-.53.13-.83.21-.3.08-.59.16-.86.23-.28.08-.52.14-.73.2-.21.05-.35.09-.43.1l-.55,1.65,3.14,1.06ZM266.05,187.5c.17-.49.18-.87.03-1.12-.14-.25-.35-.43-.63-.52-.27-.09-.55-.08-.81.04-.27.12-.49.43-.65.92l-.95,2.82,2.05.69.95-2.83Z"/></g></g></g></svg>') repeat center/300px rgba(184, 129, 152, 0.1);
}
html#menu main section#s05-option table thead tr > * {
  background: rgba(184, 129, 152, 0.3);
}
html#menu aside {
  position: fixed;
  z-index: 3;
}
@media (width <= 730px) {
  html#menu aside {
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 1s;
    transform: translateY(clamp(340px * 80 / 100, (100vw - 20px) * 80 / 100, 710px * 80 / 100));
  }
}
@media (width > 730px) {
  html#menu aside {
    left: 0;
    top: 200px;
  }
}
@media (width <= 730px) {
  html#menu aside ul.anchors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 0;
    z-index: 1;
  }
}
html#menu aside ul.anchors li {
  font-size: 75%;
  margin-bottom: 20px;
}
@media (width <= 730px) {
  html#menu aside ul.anchors li {
    display: contents;
  }
}
html#menu aside ul.anchors li a {
  text-align: center;
  display: block;
  background-color: var(--keycolor);
  color: white;
  position: relative;
}
@media (width <= 730px) {
  html#menu aside ul.anchors li a {
    padding: 30px 1px min(clamp(340px * 21 / 100, (100vw - 20px) * 21 / 100, 710px * 21 / 100), 74.4px) 1px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }
}
@media (width > 730px) {
  html#menu aside ul.anchors li a {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 10px 30px 10px 60px;
  }
}
html#menu aside ul.anchors li a[href^="#s01"] {
  --keycolor: #c99c2f;
}
html#menu aside ul.anchors li a[href^="#s02"] {
  --keycolor: #93b253;
}
html#menu aside ul.anchors li a[href^="#s03"] {
  --keycolor: #5b887d;
}
html#menu aside ul.anchors li a[href^="#s04"] {
  --keycolor: #5b88b8;
}
html#menu aside ul.anchors li a[href^="#s05"] {
  --keycolor: #b88198;
}
@media (width > 730px) {
  html#menu aside ul.anchors li a::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    right: 5px;
    top: calc(50% - 10px);
    width: 10px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.25 19.09"><g fill="white"><polygon class="cls-1" points=".71 19.09 0 18.38 8.84 9.55 0 .71 .71 0 10.25 9.55 .71 19.09"/></g></svg>') no-repeat center/contain;
  }
}
html#menu aside ul.anchors li a img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 730px) {
  html#menu aside ul.anchors li a img {
    top: -20px;
    left: calc(50% - 20px);
    width: 40px;
    aspect-ratio: 1/1;
  }
}
@media (width > 730px) {
  html#menu aside ul.anchors li a img {
    left: 10px;
    top: -20px;
    width: min(25%, 100px);
    height: 110%;
  }
}
@media (width > 730px) {
  html#menu aside ul.anchors li {
    transition: transform 0.6s;
    transform: translateX(-110%);
  }
  html#menu aside ul.anchors li:nth-child(1) {
    transition-delay: 0.1s;
  }
  html#menu aside ul.anchors li:nth-child(2) {
    transition-delay: 0.2s;
  }
  html#menu aside ul.anchors li:nth-child(3) {
    transition-delay: 0.3s;
  }
  html#menu aside ul.anchors li:nth-child(4) {
    transition-delay: 0.4s;
  }
  html#menu aside ul.anchors li:nth-child(5) {
    transition-delay: 0.5s;
  }
}
@media (width <= 730px) {
  html#menu footer .rights {
    padding-bottom: min(clamp(340px * 45 / 100, (100vw - 20px) * 45 / 100, 710px * 45 / 100), 162px);
  }
}
@media (width <= 730px) {
  html#menu body.hdr-scrolling aside {
    transform: translateY(0);
  }
}
@media (width > 730px) {
  html#menu body.hdr-scrolling aside ul.anchors li {
    transform: translateX(-90%);
  }
}
@media (width > 730px) {
  html#menu body.hdr-scrolling aside ul.anchors:hover li {
    transform: translateX(0);
  }
}
@media (width <= 730px) {
  html#menu body.hdr-scrolling footer .pgtop {
    transform: translateY(calc(clamp(340px * 22 / 100, (100vw - 20px) * 22 / 100, 710px * 22 / 100) * -1));
  }
}

html.cases main section.pgtitle, html.blog main section.pgtitle {
  background: url(/wp-content/themes/custom/img/02/02.png) no-repeat top center/130%, url(/wp-content/themes/custom/img/03/01.jpg) no-repeat left top/85% white;
}
html.cases main .posts-ctn, html.blog main .posts-ctn {
  padding-bottom: 80px;
}
@media (width > 730px) {
  html.cases main .posts-ctn aside, html.blog main .posts-ctn aside {
    flex: 0 0 250px;
    margin-left: 60px;
  }
}
html.cases main .posts-ctn aside section, html.blog main .posts-ctn aside section {
  margin-bottom: 40px;
}
html.cases main .posts-ctn aside section > h3, html.blog main .posts-ctn aside section > h3 {
  background: #d3b684;
  font-size: 120%;
  border-left: 3px solid #4d4d4d;
  padding: 10px 15px;
  font-weight: 700;
  margin-bottom: 1.5em;
}
html.cases main .posts-ctn aside section > ul, html.blog main .posts-ctn aside section > ul {
  margin-left: 25px;
}
html.cases main .posts-ctn aside section > ul > li, html.blog main .posts-ctn aside section > ul > li {
  margin-bottom: 1em;
}
html.cases main .posts-ctn aside section > ul > li ul, html.blog main .posts-ctn aside section > ul > li ul {
  margin-top: 0.5em;
  margin-left: 15px;
}
html.cases main .posts-ctn aside section > ul > li ul > li, html.blog main .posts-ctn aside section > ul > li ul > li {
  margin-top: 0.5em;
}
html.cases main .posts-ctn aside section > ul + p, html.blog main .posts-ctn aside section > ul + p {
  border-top: 1px solid black;
  margin-left: 25px;
  padding-top: 1em;
}
html.cases main section.pagenation, html.blog main section.pagenation {
  padding-top: 50px;
  padding-bottom: 50px;
  background-size: auto auto;
  background-color: rgb(237, 246, 252);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, rgb(255, 255, 255) 6px, rgb(255, 255, 255) 8px);
  text-align: center;
}
html.cases main section.pagenation p, html.blog main section.pagenation p {
  margin-bottom: 2em;
}
html.cases main section.pagenation .nav-links > *, html.blog main section.pagenation .nav-links > * {
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  margin: 2px;
}
html.cases main section.pagenation .nav-links > *.current, html.cases main section.pagenation .nav-links > *:hover, html.blog main section.pagenation .nav-links > *.current, html.blog main section.pagenation .nav-links > *:hover {
  background: #2f54c0;
  color: white;
}
html.cases main section.pagenation .nav-links > *:is(a), html.blog main section.pagenation .nav-links > *:is(a) {
  background: white;
  color: #2f54c0;
}
html.cases main section.pagenation .nav-links > *:hover, html.blog main section.pagenation .nav-links > *:hover {
  text-decoration: none;
}

html.cases .posts-ctn h3 {
  margin-bottom: 2em;
}
html.cases .posts-ctn h3 span {
  width: -moz-max-content;
  width: max-content;
  color: white;
  background: #d3b684;
  padding: 5px 15px;
  border-radius: 6px;
}
html.cases .posts-ctn h3 span svg {
  vertical-align: middle;
  position: relative;
  top: -3px;
  height: 1.5em;
  fill: white;
  margin-right: 5px;
}
html.cases .posts-ctn .list > ul > li + li {
  margin-top: 80px;
}
html.cases .posts-ctn .list > ul > li h4, html.cases .posts-ctn article h4 {
  background: #2f54c0;
  border-left: 5px solid #d3b684;
  padding: 10px 15px;
  margin-bottom: 25px;
  font-size: 150%;
  color: white;
}
html.cases .posts-ctn .list > ul > li > div, html.cases .posts-ctn article > div {
  padding: 0 25px;
}
html.cases .posts-ctn .list > ul > li > div figure, html.cases .posts-ctn article > div figure {
  max-width: 600px;
}
html.cases .posts-ctn .list > ul > li > div figure img, html.cases .posts-ctn article > div figure img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
html.cases .posts-ctn .list > ul > li > div ul, html.cases .posts-ctn article > div ul {
  font-size: 120%;
  margin-top: 1em;
  font-weight: 700;
}
html.cases .posts-ctn .list > ul > li > div ul li, html.cases .posts-ctn article > div ul li {
  align-items: baseline;
  margin-bottom: 20px;
}
html.cases .posts-ctn .list > ul > li > div ul li h5, html.cases .posts-ctn article > div ul li h5 {
  flex: 0 0 auto;
  text-align: center;
  width: 4em;
  background: #2f54c0;
  color: white;
  margin-right: 10px;
  padding: 5px 15px;
  border-radius: 6px;
}
html.cases .posts-ctn .list > ul > li > div p, html.cases .posts-ctn article > div p {
  line-height: 1.6;
}
html.cases .posts-ctn .list > ul > li > div .btns, html.cases .posts-ctn article > div .btns {
  margin-top: 3em;
}
html.cases .posts-ctn .list > ul > li > div .btns > *, html.cases .posts-ctn article > div .btns > * {
  border-radius: 3px;
}

html#cases-arc main section.pagenation .nav-links > * {
  padding: 1em 0;
  width: 2.3em;
}

html#cases-single main section.pagenation .nav-links > * {
  padding: 1em 2em;
}

html.blog .posts-ctn h3 {
  margin-bottom: 2em;
}
html.blog .posts-ctn h3 span {
  width: -moz-max-content;
  width: max-content;
  color: white;
  background: #d3b684;
  padding: 5px 15px;
  border-radius: 6px;
}
html.blog .posts-ctn h3 span svg {
  vertical-align: middle;
  position: relative;
  top: -3px;
  height: 1.5em;
  fill: white;
  margin-right: 5px;
}
html.blog .posts-ctn .list > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}
html.blog .posts-ctn .list > ul li {
  max-width: 275px;
}
html.blog .posts-ctn .list > ul:has(li:nth-child(5)) li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}
html.blog .posts-ctn .list > ul > li p.date, html.blog .posts-ctn article p.date {
  color: #2f54c0;
  font-weight: 700;
}
html.blog .posts-ctn .list > ul > li h4, html.blog .posts-ctn article h4 {
  margin-bottom: 25px;
  font-size: 130%;
  font-weight: 700;
}
html.blog .posts-ctn .list > ul > li > div h1, html.blog .posts-ctn .list > ul > li > div h2, html.blog .posts-ctn .list > ul > li > div h3, html.blog .posts-ctn .list > ul > li > div h4, html.blog .posts-ctn .list > ul > li > div h5, html.blog .posts-ctn .list > ul > li > div h6, html.blog .posts-ctn article > div h1, html.blog .posts-ctn article > div h2, html.blog .posts-ctn article > div h3, html.blog .posts-ctn article > div h4, html.blog .posts-ctn article > div h5, html.blog .posts-ctn article > div h6 {
  font-weight: 700;
  font-size: 130%;
}
html.blog .posts-ctn .list > ul > li > div * + *, html.blog .posts-ctn article > div * + * {
  margin-top: 1em;
}
html.blog .posts-ctn .list > ul > li > div figure, html.blog .posts-ctn article > div figure {
  max-width: 600px;
}
html.blog .posts-ctn .list > ul > li > div p, html.blog .posts-ctn article > div p {
  line-height: 1.6;
}

html#blog-arc main .list > ul > li a {
  display: block;
}
html#blog-arc main .list > ul > li a:hover {
  text-decoration: none;
}
html#blog-arc main .list > ul > li figure {
  margin-bottom: 10px;
}
html#blog-arc main .list > ul > li figure img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
html#blog-arc main section.pagenation .nav-links > * {
  padding: 1em 0;
  width: 2.3em;
}

html#blog-single main section.pagenation .nav-links > * {
  padding: 1em 2em;
}

html#faq section.pgtitle {
  background: url(/wp-content/themes/custom/img/02/02.png) no-repeat top center/130%, url(/wp-content/themes/custom/img/04/06.jpg) no-repeat left top/60% white;
}
@media (width <= 730px) {
  html#faq section.pgtitle ul.anchors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 20px 10px;
  }
}
@media (width > 730px) {
  html#faq section.pgtitle ul.anchors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 15px;
  }
}
@media (width <= 730px) {
  html#faq section.pgtitle ul.anchors li {
    font-size: 75%;
  }
}
@media (width > 730px) {
  html#faq section.pgtitle ul.anchors li {
    font-size: 90%;
  }
}
html#faq section.pgtitle ul.anchors li a {
  text-align: center;
  display: block;
  background-color: var(--keycolor);
  color: white;
  position: relative;
}
@media (width <= 730px) {
  html#faq section.pgtitle ul.anchors li a {
    padding: 10px 10px 10px 30px;
  }
}
@media (width > 730px) {
  html#faq section.pgtitle ul.anchors li a {
    padding: 10px 10px 10px 60px;
  }
}
html#faq section.pgtitle ul.anchors li a[href^="#s01"] {
  --keycolor: #d35e29;
}
html#faq section.pgtitle ul.anchors li a[href^="#s02"] {
  --keycolor: #c99c2f;
}
html#faq section.pgtitle ul.anchors li a[href^="#s03"] {
  --keycolor: #5b887d;
}
html#faq section.pgtitle ul.anchors li a[href^="#s04"] {
  --keycolor: #5b88b8;
}
html#faq section.pgtitle ul.anchors li a[href^="#s05"] {
  --keycolor: #b88198;
}
html#faq section.pgtitle ul.anchors li a::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  right: 5px;
  top: calc(50% - 10px);
  width: 10px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.25 19.09"><g fill="white"><polygon class="cls-1" points=".71 19.09 0 18.38 8.84 9.55 0 .71 .71 0 10.25 9.55 .71 19.09"/></g></svg>') no-repeat center/contain;
}
html#faq section.pgtitle ul.anchors li a img {
  position: absolute;
  left: 10px;
  top: -20px;
  height: 110%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 730px) {
  html#faq section.pgtitle ul.anchors li a img {
    width: min(20%, 75px);
  }
}
@media (width > 730px) {
  html#faq section.pgtitle ul.anchors li a img {
    width: min(25%, 100px);
  }
}
html#faq main .faq-ctn {
  background: url(/wp-content/themes/custom/img/1491.png) repeat center/300px rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  padding-bottom: 60px;
  margin-bottom: -90px;
}
@media (width <= 730px) {
  html#faq main section:not(.pgtitle) {
    padding-bottom: 60px;
  }
}
@media (width > 730px) {
  html#faq main section:not(.pgtitle) {
    padding-bottom: 150px;
  }
}
html#faq main section:not(.pgtitle) h3 {
  font-size: 130%;
  color: var(--keycolor);
  border-bottom: 3px dotted var(--keycolor);
  padding-bottom: 10px;
  margin-bottom: 2em;
}
html#faq main section:not(.pgtitle) h3 .inr {
  display: block;
}
html#faq main section:not(.pgtitle) h3 img {
  position: relative;
  width: 60px;
  max-width: 10%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  margin-right: 5px;
}
html#faq main section:not(.pgtitle) h3 small {
  font-size: 65%;
  display: inline-block;
  margin-left: 10px;
}
html#faq main section:not(.pgtitle) ul {
  background: white;
  border-radius: 10px;
}
@media (width <= 730px) {
  html#faq main section:not(.pgtitle) ul {
    padding: 30px 10px;
  }
}
@media (width > 730px) {
  html#faq main section:not(.pgtitle) ul {
    padding: 60px;
  }
}
html#faq main section:not(.pgtitle) ul li {
  line-height: 1.3;
}
html#faq main section:not(.pgtitle) ul li + li {
  margin-top: 3em;
}
html#faq main section:not(.pgtitle) ul li h4, html#faq main section:not(.pgtitle) ul li p {
  justify-content: flex-start;
}
html#faq main section:not(.pgtitle) ul li h4 span, html#faq main section:not(.pgtitle) ul li p span {
  display: inline-block;
  width: 1em;
  padding: 4px;
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  text-align: center;
  flex: 0 0 auto;
  margin-right: 15px;
  line-height: 1;
  vertical-align: middle;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
html#faq main section:not(.pgtitle) ul li h4 {
  font-size: 130%;
  font-weight: 700;
  align-items: baseline;
}
html#faq main section:not(.pgtitle) ul li h4 span {
  background: var(--keycolor);
}
html#faq main section:not(.pgtitle) ul li p {
  margin-top: 20px;
}
html#faq main section:not(.pgtitle) ul li p span {
  background: #929292;
}
html#faq main section#s01-coating {
  --keycolor: #d35e29;
}
html#faq main section#s01-coating table thead tr > * {
  background: rgba(211, 94, 41, 0.3);
}
html#faq main section#s02-before {
  --keycolor: #c99c2f;
}
html#faq main section#s02-before table thead tr > * {
  background: rgba(201, 156, 47, 0.3);
}
html#faq main section#s03-carwash {
  --keycolor: #5b887d;
}
html#faq main section#s03-carwash table thead tr > * {
  background: rgba(91, 136, 125, 0.3);
}
html#faq main section#s04-cleaning {
  --keycolor: #5b88b8;
}
html#faq main section#s04-cleaning table thead tr > * {
  background: rgba(91, 136, 184, 0.3);
}
html#faq main section#s05-option {
  --keycolor: #b88198;
}
html#faq main section#s05-option table thead tr > * {
  background: rgba(184, 129, 152, 0.3);
}
html#faq aside {
  position: fixed;
  z-index: 3;
}
@media (width <= 730px) {
  html#faq aside {
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 1s;
    transform: translateY(clamp(340px * 80 / 100, (100vw - 20px) * 80 / 100, 710px * 80 / 100));
  }
}
@media (width > 730px) {
  html#faq aside {
    left: 0;
    top: 200px;
  }
}
@media (width <= 730px) {
  html#faq aside ul.anchors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 0;
    z-index: 1;
  }
}
html#faq aside ul.anchors li {
  font-size: 75%;
  margin-bottom: 20px;
}
@media (width <= 730px) {
  html#faq aside ul.anchors li {
    display: contents;
  }
}
html#faq aside ul.anchors li a {
  text-align: center;
  display: block;
  background-color: var(--keycolor);
  color: white;
  position: relative;
}
@media (width <= 730px) {
  html#faq aside ul.anchors li a {
    padding: 30px 1px min(clamp(340px * 21 / 100, (100vw - 20px) * 21 / 100, 710px * 21 / 100), 74.4px) 1px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }
}
@media (width > 730px) {
  html#faq aside ul.anchors li a {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 10px 30px 10px 60px;
  }
}
html#faq aside ul.anchors li a[href^="#s01"] {
  --keycolor: #d35e29;
}
html#faq aside ul.anchors li a[href^="#s02"] {
  --keycolor: #c99c2f;
}
html#faq aside ul.anchors li a[href^="#s03"] {
  --keycolor: #5b887d;
}
html#faq aside ul.anchors li a[href^="#s04"] {
  --keycolor: #5b88b8;
}
html#faq aside ul.anchors li a[href^="#s05"] {
  --keycolor: #b88198;
}
@media (width > 730px) {
  html#faq aside ul.anchors li a::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    right: 5px;
    top: calc(50% - 10px);
    width: 10px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.25 19.09"><g fill="white"><polygon class="cls-1" points=".71 19.09 0 18.38 8.84 9.55 0 .71 .71 0 10.25 9.55 .71 19.09"/></g></svg>') no-repeat center/contain;
  }
}
html#faq aside ul.anchors li a img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 730px) {
  html#faq aside ul.anchors li a img {
    top: -20px;
    left: calc(50% - 20px);
    width: 40px;
    aspect-ratio: 1/1;
  }
}
@media (width > 730px) {
  html#faq aside ul.anchors li a img {
    left: 10px;
    top: -20px;
    width: min(25%, 100px);
    height: 110%;
  }
}
@media (width > 730px) {
  html#faq aside ul.anchors li {
    transition: transform 0.6s;
    transform: translateX(-110%);
  }
  html#faq aside ul.anchors li:nth-child(1) {
    transition-delay: 0.1s;
  }
  html#faq aside ul.anchors li:nth-child(2) {
    transition-delay: 0.2s;
  }
  html#faq aside ul.anchors li:nth-child(3) {
    transition-delay: 0.3s;
  }
  html#faq aside ul.anchors li:nth-child(4) {
    transition-delay: 0.4s;
  }
  html#faq aside ul.anchors li:nth-child(5) {
    transition-delay: 0.5s;
  }
}
@media (width <= 730px) {
  html#faq footer .rights {
    padding-bottom: min(clamp(340px * 45 / 100, (100vw - 20px) * 45 / 100, 710px * 45 / 100), 162px);
  }
}
@media (width <= 730px) {
  html#faq body.hdr-scrolling aside {
    transform: translateY(0);
  }
}
@media (width > 730px) {
  html#faq body.hdr-scrolling aside ul.anchors li {
    transform: translateX(-90%);
  }
}
@media (width > 730px) {
  html#faq body.hdr-scrolling aside ul.anchors:hover li {
    transform: translateX(0);
  }
}
@media (width <= 730px) {
  html#faq body.hdr-scrolling footer .pgtop {
    transform: translateY(calc(clamp(340px * 22 / 100, (100vw - 20px) * 22 / 100, 710px * 22 / 100) * -1));
  }
}/*# sourceMappingURL=site_t.css.map */