/*
Theme Name: SB Makelaardij theme
Theme URI: https://sbmakelaardij.nl/
Author: Goes & Roos
Author URI: https://www.goesenroos.nl
Description: Goes & Roos starter theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain:  sbmakelaardij-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/




/* Colors */

:root {
	--oranje : #ed6f37;
	--groen : #283633;
}


/* general */
body {
    font-family: 'Poppins';
	font-size: 18px; line-height: 150%;
    font-weight: 500;
    color: var(--groen);
}

h1,
h2,
h3,
h4,
h5,
h6  {
    /*line-height: 1.1;*/
        font-family: "neulis-sans", sans-serif;
        font-weight: 700;
        font-style: normal;
}

.single .modal.modal-full-screen {
    z-index: 88888;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 700;
}

.wp-block-column p,
.wp-block-heading {
    margin-bottom: 30px;
}

h1 {
	font-size: 46px; line-height: 120%;
}

h2 {
	font-size: 48px; line-height: 100%;
}

h3 {
	font-size: 35px; line-height: 130%;
}

h4 {
	font-size: 32px; line-height: 120%;
}

h5 {
	font-size: 20px; line-height: 140%;
}

h6.wp-block-heading,
h6 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
}



@media(max-width: 767px) {
    h1 {
    font-size: 36px; line-height: 120%;
    }

    h2 {
        font-size: 28px; line-height: 120%;
    }

    h3 {
        font-size: 25px; line-height: 130%;
    }

    h4 {
        font-size: 22px; line-height: 120%;
    }

    h5 {
        font-size: 20px; line-height: 140%;
    }

    h6 {
    }
}


small {
	font-size: 16px; line-height: 150%;
}

/* Default */
.wp-block-group {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.container,
.wp-block-group .wp-block-group__inner-container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wp-block-group .wp-block-columns {
    margin-bottom: 0;
}

p,
.wp-block-group .wp-block-column p {
    font-size: 18px;
    margin-bottom: 35px;
}

.box-shadow {
    box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
    -webkit-box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
    -moz-box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
}


.wp-block-columns {
    gap: 2rem;
}

.wp-block-columns.gap-5 {
    gap: 5rem !important;
}

.wp-block-columns.mt-5 {
    margin-top: 2rem !important;
}

.wp-block-image {
    margin-bottom: 0;
    position: relative;
}

.wp-block-image img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    border-radius: 0.75rem;
}

.wp-block-image-top img {
    object-position: top;
}

.wp-block-image-bottom img {
    object-position: bottom;
}

/* buttons */

.wp-block-button__link {
    color: #fff;
    background-color: var(--oranje);
    border-radius: 50px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(1em + 2px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
}

.wp-block-button__link:hover {
    background-color: #fff;
    color: var(--oranje);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.wp-block-button.is-style-outline--1 .wp-block-button__link,
.wp-block-button.is-style-outline--2 .wp-block-button__link {
    background: transparent none;
    border-color: var(--oranje);
    border-width: 2px;
    border-style: solid;
    color: var(--oranje);
    padding-top: 1em;
    padding-right: 1.5em;
    padding-bottom: 1em;
    padding-left: 1.5em;
    font-weight: 700;
}

.wp-block-button.is-style-outline--1 .wp-block-button__link:hover,
.wp-block-button.is-style-outline--2 .wp-block-button__link:hover {
    background-color: var(--oranje);
    color: #fff;
}



/* navbar */
.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: rgba(255,255,255,0.0);
    position: fixed;
    width: 100%;
    z-index: 10 ;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}



.navbar.navbar-scroll {
    background-color: var(--groen);
    top: 0;
    position: fixed;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.navbar-brand {
    padding: 1rem;
}
.navbar-brand svg {
    max-width: 200px;
}

.single-woningen .navbar-brand svg path {
    fill: var(--groen);
}
.navbar-scroll .navbar-brand svg path {
    fill: var(--oranje);
}

.navbar-scroll .navbar-brand svg {
    width: 200px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: calc(1em + 2px) calc(1.5em + 2px);
    font-size: 16px;
}

.single-woningen .navbar-nav .nav-link,
.navbar-scroll .navbar-nav .nav-link {
    color: #fff;
}

@media (min-width: 1200px) {
    .navbar-nav {
        flex-direction: row;
        padding-right: 113px;
    }
}
.navbar-nav .nav-link.btn-nav {
  
    border: 1px solid #fff;
    color: #fff;
    box-shadow: none;
    text-decoration: none;
    padding: calc(0.75em + 6px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
    transition: all ease-in-out 0.5s;
    border-radius: 50px;
}

.navbar-nav .nav-link:hover {
    color: var(--oranje);
}

.navbar-nav .nav-link.btn-nav-2 {
    
    border: 0px solid #fff;
    color: #fff;
    box-shadow: none;
    text-decoration: none;
    padding: calc(0.75em + 6px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
    transition: all ease-in-out 0.5s;
    border-radius: 50px;

}
.navbar-scroll .navbar-nav .nav-link.btn-nav-2:hover,
.single-woningen .navbar-nav .nav-link.btn-nav-2,
.navbar-scroll .navbar-nav .nav-link.btn-nav-2,
.navbar-nav .nav-link.btn-nav:hover {
    color: var(--oranje);
}
.single-woningen .navbar-nav .nav-link.btn-nav,
.navbar-scroll .navbar-nav .nav-link.btn-nav {
    background-color: var(--oranje);
    border: 1px solid var(--oranje);
    color: #fff;
}

.navbar-scroll .navbar-nav .nav-link.btn-nav:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.navbar-nav .dropdown-menu .nav-item {
    margin-left: 0px;

}
.navbar-nav .dropdown-menu .dropdown-item {
     font-weight: 500;
     color: var(--groen);
}

.navbar-toggler {
    background-color: var(--oranje);
    border-radius: 5px;
}


@media(max-width: 767px) {
    .navbar-brand {
        padding:1rem 0rem;
    }

    .navbar-scroll .navbar-brand svg,
    .navbar-brand svg {
        width: 140px;
    }

    .funda {
        display: none;
    }

    .top-nav svg.svg-brand {
        max-height: 13px;
    }

    .stars svg {
        width: 11px;
    }
}
/* Slider */

.page-template-gnr-plugin-public-properties-page-php .page-slider {
    height: 200px;
}

.single-post .page-slider {
    background-color: var(--groen);
}

.home .page-slider .carousel iframe {
    width: 110vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-slider {
    height: 600px;
    background-color: var(--donker);
}

.page-id-402 .page-slider,  
.home .page-slider {
    height: calc(100vh - 96px);
    min-height: 660px;
    padding-top: 0;
    padding-bottom: 0;
}

.page-id-402 .page-slider .carousel video,
.page-slider .carousel video {
    width: 110vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-slider img.img-cover-top,
.page-slider video.img-cover-top {
    object-position: top;
}

.page-slider img.img-cover-center,
.page-slider video.img-cover-center {
    object-position: center;
}

.page-slider img.img-cover-bottom,
.page-slider video.img-cover-bottom {
    object-position: bottom;
}

.page-slider .carousel-item:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    content: '';
}

.page-slider .page-slider-info {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: table;
    z-index: 3;
}

.page-slider:not(.page-slider-no-image) .page-slider-info {
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
}

.page-slider .page-slider-info .page-slider-text {
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text h1 {
    line-height: 1.1;
    font-size: 3rem;
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text h1,
.page-slider .page-slider-info .page-slider-text p {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.page-slider .page-slider-text p:last-of-type a {
    text-shadow: none;
    text-decoration: none;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 50px;
}

.slider-logo {
    margin-bottom: 5rem;
}

.page-slider .page-slider-text p:last-of-type a:first-of-type {
    text-shadow: none;
    text-decoration: none;
    background-color: #fff;
    color: var(--groen);
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 50px;
}



.page-slider .page-slider-text p:last-of-type a:hover {
    text-shadow: none;
    background-color: var(--oranje);
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text h1 span {
    font-weight: 300;
}

.page-slider .page-slider-info .page-slider-text h2 {
    line-height: 1.1;
    position: relative;
    font-size: 1.5rem;
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text p:last-of-type {
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem !important;
}

/*.page-slider .page-slider-info .page-slider-text p:last-of-type a:last-of-type {
    margin-top: 0!important;
    margin-right: 0!important;
}*/

body:not(.home) .page-slider .page-slider-info .page-slider-text p:last-of-type a {
    background-color: var(--geel);
    color: #fff;
}

body:not(.home) .page-slider .page-slider-info .page-slider-text p:last-of-type a:hover,
body:not(.home) .page-slider .page-slider-info .page-slider-text p:last-of-type a:focus {
    background-color: #fff;
    color: var(--donker);
}

@media (max-width: 767.98px) {
    .page-slider.page-slider-no-image {
        height: auto;
    }

    .page-slider .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-slider .page-slider-info .page-slider-text h1 {
        font-size: 2rem;
    }
    .page-slider .page-slider-info .page-slider-text h1 span {
        font-size: 1.5rem;
    }

    .page-slider .page-slider-text p:last-of-type a {
        padding-left: .75rem;
        padding-right: .75rem;
        font-size: .8rem;
        letter-spacing: 1px;
    }
    .page-slider .page-slider-text p:last-of-type a, .wp-block-columns .wp-block-column p:last-of-type a, .wp-block-group .wp-block-group__inner-container > p:last-of-type a, .post-item .post-more a, .properties .object .object-banner-info .object-banner-button a {
        margin-top: 0rem;
    }
}


/* fixed side start */

.fixed-side-wrapper {
  position: fixed;
  bottom: 1%;
  right: 1%;
  z-index: 999;
}


.fixed-side-wrapper a {
  color: #fff;
  text-decoration: none;
}

.fixed-side-wrapper .button-side{
  display: inline-block;
  height: 50px;
  width: auto;
  margin: 0 5px;
  padding: 10px 15px 10px 15px;
  overflow: hidden;
  background: #00e676;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
  color: #fff;
}

.fixed-side-wrapper .button-side .icon-side i{
  font-size: 20px;
  line-height: 50px;
  transition: all 0.3s ease-out;
}
.fixed-side-wrapper .button-side .icon-side {
    width: 32px;
}

.fixed-side-wrapper .button-side .icon-side svg.svg-social {
    max-width: 26px;
}


.fixed-side-wrapper .button-side .icon-side,
.fixed-side-wrapper .button-side span {
    display: inline-block;
}

.fixed-side-wrapper .button-side span  {
    font-size: 14px;
}

.fixed-side-wrapper svg.svg-social .svg-whatsapp {
    fill: #fff;
}


/* fixed side end */

/* specials */

.wp-block-group.wp-block-group-objects {
    padding-top: 5rem;
    padding-bottom: 5rem ;
    overflow-x: hidden;
}
.wp-block-group.wp-block-group-objects .wp-block-columns {
    gap: 10rem;
}


.wp-block-group.wp-block-group-objects h6 {
    color: var(--oranje);
}


.wp-block-group.wp-block-group-objects .wp-block-columns .wp-block-column:nth-child(1) p {
    margin-bottom: 0;
}

/* Properties / specials */
.properties-filter-extra,
.properties-filter-v-1,
.properties-filter-selections,
.properties {
    position: relative;
}

.properties-filter-extra .properties-filter-show,
.properties-filter-extra .facetwp-sort .facetwp-sort-select,
.properties-filter-extra .facetwp-per-page .facetwp-per-page-select {
    background-color: #fff;
    border-radius: .25rem;
    font-size: .9rem;
}


.object .object-info:hover,
.object-image:hover {
    cursor: pointer;
}

.properties-filter-v-2 .facetwp-type-fselect .fs-dropdown .fs-search input {
    padding-left: 18px;
}



.object-image:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="66px" height="81px"><path fill-rule="evenodd" fill="rgb(255, 255, 255)" d="M32.971,-0.000 C33.065,0.020 33.116,0.061 33.174,0.116 C33.184,0.135 33.194,0.154 33.204,0.173 C33.223,0.173 33.242,0.173 33.262,0.173 C33.300,0.222 33.339,0.270 33.378,0.318 C33.397,0.318 33.417,0.318 33.436,0.318 C33.465,0.356 33.494,0.395 33.523,0.434 C33.543,0.434 33.562,0.434 33.581,0.434 C33.620,0.482 33.659,0.530 33.698,0.578 C33.717,0.578 33.737,0.578 33.756,0.578 C33.766,0.597 33.775,0.617 33.785,0.636 C33.814,0.655 33.843,0.674 33.872,0.694 C33.872,0.703 33.872,0.713 33.872,0.723 C33.892,0.723 33.911,0.723 33.930,0.723 C33.969,0.771 34.008,0.819 34.047,0.867 C34.066,0.867 34.085,0.867 34.105,0.867 C34.115,0.886 34.124,0.906 34.134,0.925 C34.144,0.925 34.153,0.925 34.163,0.925 C34.173,0.944 34.182,0.963 34.192,0.983 C34.211,0.983 34.231,0.983 34.250,0.983 C34.289,1.031 34.328,1.079 34.367,1.127 C34.386,1.127 34.405,1.127 34.425,1.127 C34.463,1.175 34.502,1.224 34.541,1.272 C34.560,1.272 34.580,1.272 34.599,1.272 C34.628,1.310 34.657,1.349 34.686,1.387 C34.706,1.387 34.725,1.387 34.744,1.387 C34.783,1.435 34.822,1.484 34.861,1.532 C34.880,1.532 34.900,1.532 34.919,1.532 C34.958,1.580 34.996,1.628 35.035,1.676 C35.055,1.676 35.074,1.676 35.093,1.676 C35.122,1.715 35.152,1.753 35.181,1.792 C35.200,1.792 35.219,1.792 35.239,1.792 C35.278,1.840 35.316,1.888 35.355,1.936 C35.374,1.936 35.394,1.936 35.413,1.936 C35.452,1.985 35.491,2.033 35.530,2.081 C35.549,2.081 35.568,2.081 35.588,2.081 C35.617,2.119 35.646,2.158 35.675,2.197 C35.694,2.197 35.714,2.197 35.733,2.197 C35.772,2.245 35.811,2.293 35.849,2.341 C35.869,2.341 35.888,2.341 35.907,2.341 C35.946,2.389 35.985,2.437 36.024,2.486 C36.043,2.486 36.063,2.486 36.082,2.486 C36.111,2.524 36.140,2.563 36.169,2.601 C36.189,2.601 36.208,2.601 36.227,2.601 C36.266,2.649 36.305,2.697 36.344,2.746 C36.363,2.746 36.382,2.746 36.402,2.746 C36.441,2.794 36.479,2.842 36.518,2.890 C37.105,3.312 37.617,3.799 38.204,4.220 C38.214,4.239 38.224,4.258 38.233,4.277 C38.263,4.297 38.292,4.316 38.321,4.335 C38.321,4.345 38.321,4.355 38.321,4.364 C38.340,4.364 38.359,4.364 38.379,4.364 C38.418,4.412 38.456,4.461 38.495,4.509 C38.515,4.509 38.534,4.509 38.553,4.509 C38.582,4.547 38.611,4.586 38.641,4.624 C38.660,4.624 38.679,4.624 38.699,4.624 C38.737,4.672 38.776,4.721 38.815,4.769 C38.834,4.769 38.854,4.769 38.873,4.769 C38.912,4.817 38.951,4.865 38.989,4.913 C39.009,4.913 39.028,4.913 39.048,4.913 C39.077,4.952 39.106,4.990 39.135,5.029 C39.154,5.029 39.174,5.029 39.193,5.029 C39.203,5.048 39.212,5.067 39.222,5.087 C39.251,5.106 39.280,5.125 39.309,5.145 C39.309,5.154 39.309,5.164 39.309,5.173 C39.329,5.173 39.348,5.173 39.367,5.173 C39.406,5.222 39.445,5.270 39.484,5.318 C39.503,5.318 39.522,5.318 39.542,5.318 C39.581,5.366 39.619,5.414 39.658,5.462 C39.678,5.462 39.697,5.462 39.716,5.462 C39.745,5.501 39.774,5.540 39.804,5.578 C39.823,5.578 39.842,5.578 39.862,5.578 C39.900,5.626 39.939,5.674 39.978,5.723 C39.997,5.723 40.017,5.723 40.036,5.723 C40.075,5.771 40.114,5.819 40.152,5.867 C40.172,5.867 40.191,5.867 40.211,5.867 C40.240,5.906 40.269,5.944 40.298,5.983 C40.317,5.983 40.337,5.983 40.356,5.983 C40.395,6.031 40.433,6.079 40.472,6.127 C40.492,6.127 40.511,6.127 40.530,6.127 C40.569,6.175 40.608,6.224 40.647,6.272 C40.666,6.272 40.685,6.272 40.705,6.272 C40.734,6.310 40.763,6.349 40.792,6.387 C40.811,6.387 40.831,6.387 40.850,6.387 C40.889,6.435 40.928,6.484 40.967,6.532 C40.986,6.532 41.005,6.532 41.025,6.532 C41.063,6.580 41.102,6.628 41.141,6.676 C41.160,6.676 41.180,6.676 41.199,6.676 C41.228,6.715 41.257,6.753 41.286,6.792 C41.306,6.792 41.325,6.792 41.344,6.792 C41.354,6.811 41.364,6.830 41.374,6.850 C41.403,6.869 41.432,6.888 41.461,6.908 C41.461,6.917 41.461,6.927 41.461,6.936 C41.480,6.936 41.500,6.936 41.519,6.936 C41.558,6.985 41.596,7.033 41.635,7.081 C41.655,7.081 41.674,7.081 41.693,7.081 C41.722,7.119 41.752,7.158 41.781,7.197 C41.800,7.197 41.819,7.197 41.839,7.197 C41.878,7.245 41.916,7.293 41.955,7.341 C41.974,7.341 41.994,7.341 42.013,7.341 C42.052,7.389 42.091,7.437 42.130,7.486 C42.149,7.486 42.168,7.486 42.188,7.486 C42.217,7.524 42.246,7.563 42.275,7.601 C42.294,7.601 42.314,7.601 42.333,7.601 C42.372,7.649 42.411,7.697 42.449,7.746 C42.469,7.746 42.488,7.746 42.507,7.746 C42.546,7.794 42.585,7.842 42.624,7.890 C43.211,8.312 43.723,8.799 44.310,9.220 C44.320,9.239 44.330,9.258 44.339,9.277 C44.368,9.297 44.397,9.316 44.426,9.335 C44.426,9.345 44.426,9.355 44.426,9.364 C44.446,9.364 44.465,9.364 44.485,9.364 C44.523,9.412 44.562,9.461 44.601,9.509 C44.620,9.509 44.640,9.509 44.659,9.509 C44.688,9.547 44.717,9.586 44.746,9.624 C44.766,9.624 44.785,9.624 44.804,9.624 C44.843,9.672 44.882,9.721 44.921,9.769 C44.940,9.769 44.959,9.769 44.979,9.769 C45.018,9.817 45.056,9.865 45.095,9.913 C45.115,9.913 45.134,9.913 45.153,9.913 C45.182,9.952 45.211,9.990 45.241,10.029 C45.260,10.029 45.279,10.029 45.299,10.029 C45.308,10.048 45.318,10.067 45.328,10.087 C45.357,10.106 45.386,10.125 45.415,10.145 C45.415,10.154 45.415,10.164 45.415,10.173 C45.434,10.173 45.454,10.173 45.473,10.173 C45.512,10.222 45.551,10.270 45.589,10.318 C45.609,10.318 45.628,10.318 45.648,10.318 C45.686,10.366 45.725,10.414 45.764,10.462 C45.783,10.462 45.803,10.462 45.822,10.462 C45.851,10.501 45.880,10.540 45.909,10.578 C45.929,10.578 45.948,10.578 45.967,10.578 C46.006,10.626 46.045,10.674 46.084,10.723 C46.103,10.723 46.122,10.723 46.142,10.723 C46.181,10.771 46.219,10.819 46.258,10.867 C46.278,10.867 46.297,10.867 46.316,10.867 C46.345,10.906 46.374,10.944 46.404,10.983 C46.423,10.983 46.442,10.983 46.462,10.983 C46.471,11.002 46.481,11.021 46.491,11.040 C46.520,11.060 46.549,11.079 46.578,11.098 C46.578,11.108 46.578,11.118 46.578,11.127 C46.597,11.127 46.617,11.127 46.636,11.127 C46.675,11.175 46.714,11.224 46.752,11.272 C46.772,11.272 46.791,11.272 46.811,11.272 C46.820,11.291 46.830,11.310 46.840,11.329 C46.849,11.329 46.859,11.329 46.869,11.329 C46.878,11.349 46.888,11.368 46.898,11.387 C46.917,11.387 46.937,11.387 46.956,11.387 C46.995,11.435 47.033,11.484 47.072,11.532 C47.092,11.532 47.111,11.532 47.130,11.532 C47.169,11.580 47.208,11.628 47.247,11.676 C47.266,11.676 47.285,11.676 47.305,11.676 C47.334,11.715 47.363,11.753 47.392,11.792 C47.411,11.792 47.431,11.792 47.450,11.792 C47.489,11.840 47.528,11.888 47.567,11.936 C47.586,11.936 47.605,11.936 47.625,11.936 C47.663,11.985 47.702,12.033 47.741,12.081 C47.760,12.081 47.780,12.081 47.799,12.081 C47.828,12.119 47.857,12.158 47.886,12.197 C47.906,12.197 47.925,12.197 47.944,12.197 C47.954,12.216 47.964,12.235 47.974,12.254 C48.003,12.274 48.032,12.293 48.061,12.312 C48.061,12.322 48.061,12.331 48.061,12.341 C48.080,12.341 48.100,12.341 48.119,12.341 C48.158,12.389 48.196,12.437 48.235,12.486 C48.822,12.907 49.334,13.394 49.922,13.815 C49.960,13.863 49.999,13.911 50.038,13.960 C50.057,13.960 50.077,13.960 50.096,13.960 C50.135,14.008 50.174,14.056 50.212,14.104 C50.232,14.104 50.251,14.104 50.270,14.104 C50.300,14.143 50.329,14.181 50.358,14.220 C50.377,14.220 50.396,14.220 50.416,14.220 C50.455,14.268 50.493,14.316 50.532,14.364 C50.552,14.364 50.571,14.364 50.590,14.364 C50.629,14.412 50.668,14.461 50.707,14.509 C50.726,14.509 50.745,14.509 50.765,14.509 C50.794,14.547 50.823,14.586 50.852,14.624 C50.871,14.624 50.891,14.624 50.910,14.624 C50.949,14.672 50.988,14.721 51.026,14.769 C51.046,14.769 51.065,14.769 51.085,14.769 C51.094,14.788 51.104,14.807 51.114,14.827 C51.143,14.846 51.172,14.865 51.201,14.884 C51.201,14.894 51.201,14.904 51.201,14.913 C51.220,14.913 51.240,14.913 51.259,14.913 C51.298,14.961 51.337,15.010 51.375,15.058 C51.395,15.058 51.414,15.058 51.433,15.058 C51.443,15.077 51.453,15.096 51.463,15.116 C51.472,15.116 51.482,15.116 51.492,15.116 C51.501,15.135 51.511,15.154 51.521,15.173 C51.540,15.173 51.559,15.173 51.579,15.173 C51.618,15.222 51.656,15.270 51.695,15.318 C51.715,15.318 51.734,15.318 51.753,15.318 C51.792,15.366 51.831,15.414 51.870,15.462 C51.889,15.462 51.908,15.462 51.928,15.462 C51.957,15.501 51.986,15.540 52.015,15.578 C52.034,15.578 52.054,15.578 52.073,15.578 C52.112,15.626 52.151,15.674 52.189,15.723 C52.209,15.723 52.228,15.723 52.248,15.723 C52.286,15.771 52.325,15.819 52.364,15.867 C52.383,15.867 52.403,15.867 52.422,15.867 C52.451,15.906 52.480,15.944 52.509,15.983 C52.529,15.983 52.548,15.983 52.567,15.983 C52.606,16.031 52.645,16.079 52.684,16.127 C52.703,16.127 52.722,16.127 52.742,16.127 C52.781,16.175 52.819,16.224 52.858,16.272 C52.878,16.272 52.897,16.272 52.916,16.272 C52.945,16.310 52.974,16.349 53.004,16.387 C53.023,16.387 53.042,16.387 53.062,16.387 C53.100,16.435 53.139,16.484 53.178,16.532 C53.197,16.532 53.217,16.532 53.236,16.532 C53.275,16.580 53.314,16.628 53.352,16.676 C53.372,16.676 53.391,16.676 53.411,16.676 C53.440,16.715 53.469,16.753 53.498,16.792 C53.517,16.792 53.537,16.792 53.556,16.792 C53.595,16.840 53.633,16.888 53.672,16.936 C53.692,16.936 53.711,16.936 53.730,16.936 C53.769,16.985 53.808,17.033 53.847,17.081 C54.434,17.502 54.946,17.989 55.533,18.410 C55.572,18.459 55.611,18.507 55.649,18.555 C55.669,18.555 55.688,18.555 55.707,18.555 C55.746,18.603 55.785,18.651 55.824,18.699 C55.843,18.699 55.863,18.699 55.882,18.699 C55.911,18.738 55.940,18.776 55.969,18.815 C55.989,18.815 56.008,18.815 56.027,18.815 C56.066,18.863 56.105,18.911 56.144,18.960 C56.163,18.960 56.182,18.960 56.202,18.960 C56.241,19.008 56.279,19.056 56.318,19.104 C56.337,19.104 56.357,19.104 56.376,19.104 C56.405,19.143 56.434,19.181 56.463,19.220 C56.483,19.220 56.502,19.220 56.522,19.220 C56.560,19.268 56.599,19.316 56.638,19.364 C56.657,19.364 56.677,19.364 56.696,19.364 C56.735,19.412 56.774,19.461 56.812,19.509 C56.832,19.509 56.851,19.509 56.870,19.509 C56.900,19.547 56.929,19.586 56.958,19.624 C56.977,19.624 56.996,19.624 57.016,19.624 C57.055,19.672 57.093,19.721 57.132,19.769 C57.152,19.769 57.171,19.769 57.190,19.769 C57.229,19.817 57.268,19.865 57.307,19.913 C57.326,19.913 57.345,19.913 57.365,19.913 C57.404,19.961 57.442,20.010 57.481,20.058 C58.068,20.479 58.580,20.966 59.167,21.387 C59.206,21.435 59.245,21.484 59.284,21.532 C59.303,21.532 59.322,21.532 59.342,21.532 C59.381,21.580 59.419,21.628 59.458,21.676 C59.478,21.676 59.497,21.676 59.516,21.676 C59.545,21.715 59.574,21.753 59.604,21.792 C59.623,21.792 59.642,21.792 59.662,21.792 C59.700,21.840 59.739,21.888 59.778,21.936 C59.797,21.936 59.817,21.936 59.836,21.936 C59.875,21.985 59.914,22.033 59.952,22.081 C59.972,22.081 59.991,22.081 60.011,22.081 C60.040,22.119 60.069,22.158 60.098,22.197 C60.117,22.197 60.137,22.197 60.156,22.197 C60.195,22.245 60.233,22.293 60.272,22.341 C60.292,22.341 60.311,22.341 60.330,22.341 C60.369,22.389 60.408,22.437 60.447,22.486 C60.466,22.486 60.485,22.486 60.505,22.486 C60.534,22.524 60.563,22.563 60.592,22.601 C60.611,22.601 60.631,22.601 60.650,22.601 C60.689,22.649 60.728,22.698 60.767,22.746 C60.786,22.746 60.805,22.746 60.825,22.746 C60.863,22.794 60.902,22.842 60.941,22.890 C60.960,22.890 60.980,22.890 60.999,22.890 C61.028,22.929 61.057,22.967 61.086,23.006 C61.106,23.006 61.125,23.006 61.144,23.006 C61.183,23.054 61.222,23.102 61.261,23.150 C61.280,23.150 61.300,23.150 61.319,23.150 C61.358,23.198 61.396,23.247 61.435,23.295 C61.455,23.295 61.474,23.295 61.493,23.295 C61.522,23.333 61.552,23.372 61.581,23.410 C61.600,23.410 61.619,23.410 61.639,23.410 C61.678,23.459 61.716,23.507 61.755,23.555 C61.774,23.555 61.794,23.555 61.813,23.555 C61.852,23.603 61.891,23.651 61.930,23.699 C61.949,23.699 61.968,23.699 61.988,23.699 C61.997,23.719 62.007,23.738 62.017,23.757 C62.026,23.757 62.036,23.757 62.046,23.757 C62.056,23.776 62.065,23.796 62.075,23.815 C62.094,23.815 62.114,23.815 62.133,23.815 C62.172,23.863 62.211,23.911 62.249,23.960 C62.269,23.960 62.288,23.960 62.307,23.960 C62.346,24.008 62.385,24.056 62.424,24.104 C62.443,24.104 62.463,24.104 62.482,24.104 C62.492,24.123 62.501,24.143 62.511,24.162 C62.521,24.162 62.530,24.162 62.540,24.162 C62.550,24.181 62.559,24.200 62.569,24.220 C62.589,24.220 62.608,24.220 62.627,24.220 C62.666,24.268 62.705,24.316 62.744,24.364 C62.763,24.364 62.782,24.364 62.802,24.364 C62.841,24.412 62.879,24.461 62.918,24.509 C62.937,24.509 62.957,24.509 62.976,24.509 C63.015,24.557 63.054,24.605 63.093,24.653 C63.112,24.653 63.131,24.653 63.151,24.653 C63.180,24.692 63.209,24.730 63.238,24.769 C63.257,24.769 63.277,24.769 63.296,24.769 C63.306,24.788 63.315,24.807 63.325,24.827 C63.354,24.846 63.383,24.865 63.412,24.884 C63.412,24.894 63.412,24.904 63.412,24.913 C63.432,24.913 63.451,24.913 63.470,24.913 C63.509,24.961 63.548,25.010 63.587,25.058 C63.606,25.058 63.626,25.058 63.645,25.058 C63.674,25.096 63.703,25.135 63.732,25.173 C63.752,25.173 63.771,25.173 63.790,25.173 C63.829,25.222 63.868,25.270 63.907,25.318 C63.926,25.318 63.945,25.318 63.965,25.318 C64.004,25.366 64.042,25.414 64.081,25.462 C64.100,25.462 64.120,25.462 64.139,25.462 C64.168,25.501 64.197,25.540 64.226,25.578 C64.246,25.578 64.265,25.578 64.285,25.578 C64.294,25.597 64.304,25.617 64.314,25.636 C64.343,25.655 64.372,25.674 64.401,25.694 C64.401,25.703 64.401,25.713 64.401,25.723 C64.420,25.723 64.440,25.723 64.459,25.723 C64.498,25.771 64.537,25.819 64.575,25.867 C64.595,25.867 64.614,25.867 64.633,25.867 C64.643,25.886 64.653,25.906 64.663,25.925 C64.672,25.925 64.682,25.925 64.692,25.925 C64.701,25.944 64.711,25.963 64.721,25.983 C64.740,25.983 64.759,25.983 64.779,25.983 C64.818,26.031 64.856,26.079 64.895,26.127 C64.915,26.127 64.934,26.127 64.953,26.127 C64.992,26.175 65.031,26.224 65.070,26.272 C65.089,26.272 65.108,26.272 65.128,26.272 C65.157,26.310 65.186,26.349 65.215,26.387 C65.234,26.387 65.254,26.387 65.273,26.387 C65.312,26.435 65.351,26.484 65.389,26.532 C65.409,26.532 65.428,26.532 65.448,26.532 C65.486,26.580 65.525,26.628 65.564,26.676 C65.583,26.676 65.603,26.676 65.622,26.676 C65.651,26.715 65.680,26.753 65.709,26.792 C65.729,26.792 65.748,26.792 65.767,26.792 C65.777,26.811 65.787,26.830 65.796,26.850 C65.864,26.898 65.932,26.946 65.1000,26.994 C65.969,27.062 65.931,27.117 65.884,27.168 C65.864,27.177 65.845,27.187 65.826,27.197 C65.826,27.216 65.826,27.235 65.826,27.254 C65.787,27.283 65.748,27.312 65.709,27.341 C65.709,27.360 65.709,27.380 65.709,27.399 C65.661,27.437 65.612,27.476 65.564,27.514 C65.564,27.534 65.564,27.553 65.564,27.572 C65.515,27.611 65.467,27.649 65.419,27.688 C65.419,27.707 65.419,27.726 65.419,27.746 C65.399,27.755 65.380,27.765 65.360,27.775 C65.360,27.784 65.360,27.794 65.360,27.803 C65.341,27.813 65.322,27.823 65.302,27.832 C65.302,27.852 65.302,27.871 65.302,27.890 C65.254,27.929 65.205,27.967 65.157,28.006 C65.157,28.025 65.157,28.044 65.157,28.064 C65.108,28.102 65.060,28.141 65.011,28.179 C65.011,28.198 65.011,28.218 65.011,28.237 C64.973,28.266 64.934,28.295 64.895,28.324 C64.895,28.343 64.895,28.362 64.895,28.382 C64.847,28.420 64.798,28.459 64.750,28.497 C64.750,28.516 64.750,28.536 64.750,28.555 C64.701,28.593 64.653,28.632 64.604,28.671 C64.604,28.690 64.604,28.709 64.604,28.728 C64.566,28.757 64.527,28.786 64.488,28.815 C64.488,28.834 64.488,28.854 64.488,28.873 C64.440,28.911 64.391,28.950 64.343,28.988 C64.343,29.008 64.343,29.027 64.343,29.046 C64.294,29.085 64.246,29.123 64.197,29.162 C64.197,29.181 64.197,29.200 64.197,29.220 C64.168,29.239 64.139,29.258 64.110,29.277 C64.068,29.324 64.024,29.399 63.994,29.451 C63.974,29.451 63.955,29.451 63.936,29.451 C63.916,29.422 63.897,29.393 63.878,29.364 C63.858,29.364 63.839,29.364 63.819,29.364 C63.790,29.326 63.761,29.287 63.732,29.249 C63.713,29.249 63.693,29.249 63.674,29.249 C63.664,29.229 63.655,29.210 63.645,29.191 C63.616,29.171 63.587,29.152 63.558,29.133 C63.558,29.123 63.558,29.114 63.558,29.104 C63.538,29.104 63.519,29.104 63.500,29.104 C63.461,29.056 63.422,29.008 63.383,28.960 C63.364,28.960 63.344,28.960 63.325,28.960 C63.286,28.911 63.248,28.863 63.209,28.815 C63.189,28.815 63.170,28.815 63.151,28.815 C63.141,28.796 63.131,28.776 63.122,28.757 C63.112,28.757 63.102,28.757 63.093,28.757 C63.083,28.738 63.073,28.719 63.063,28.699 C63.044,28.699 63.025,28.699 63.005,28.699 C62.967,28.651 62.928,28.603 62.889,28.555 C62.870,28.555 62.850,28.555 62.831,28.555 C62.792,28.507 62.753,28.459 62.715,28.410 C62.695,28.410 62.676,28.410 62.656,28.410 C62.627,28.372 62.598,28.333 62.569,28.295 C62.550,28.295 62.530,28.295 62.511,28.295 C62.472,28.247 62.433,28.198 62.395,28.150 C62.375,28.150 62.356,28.150 62.337,28.150 C62.298,28.102 62.259,28.054 62.220,28.006 C62.201,28.006 62.181,28.006 62.162,28.006 C62.152,27.987 62.143,27.967 62.133,27.948 C62.123,27.948 62.114,27.948 62.104,27.948 C62.094,27.929 62.085,27.909 62.075,27.890 C62.056,27.890 62.036,27.890 62.017,27.890 C61.978,27.842 61.939,27.794 61.900,27.746 C61.881,27.746 61.862,27.746 61.842,27.746 C61.804,27.698 61.765,27.649 61.726,27.601 C61.707,27.601 61.687,27.601 61.668,27.601 C61.639,27.563 61.610,27.524 61.581,27.486 C61.561,27.486 61.542,27.486 61.522,27.486 C61.484,27.437 61.445,27.389 61.406,27.341 C61.387,27.341 61.367,27.341 61.348,27.341 C61.309,27.293 61.270,27.245 61.232,27.197 C61.212,27.197 61.193,27.197 61.174,27.197 C61.144,27.158 61.115,27.119 61.086,27.081 C61.067,27.081 61.048,27.081 61.028,27.081 C61.019,27.062 61.009,27.042 60.999,27.023 C60.970,27.004 60.941,26.985 60.912,26.965 C60.912,26.956 60.912,26.946 60.912,26.936 C60.893,26.936 60.873,26.936 60.854,26.936 C60.815,26.888 60.776,26.840 60.737,26.792 C60.718,26.792 60.699,26.792 60.679,26.792 C60.650,26.753 60.621,26.715 60.592,26.676 C60.573,26.676 60.553,26.676 60.534,26.676 C60.495,26.628 60.456,26.580 60.418,26.532 C60.398,26.532 60.379,26.532 60.359,26.532 C60.321,26.484 60.282,26.435 60.243,26.387 C60.224,26.387 60.204,26.387 60.185,26.387 C60.156,26.349 60.127,26.310 60.098,26.272 C60.078,26.272 60.059,26.272 60.040,26.272 C60.001,26.224 59.962,26.175 59.923,26.127 C59.904,26.127 59.885,26.127 59.865,26.127 C59.826,26.079 59.788,26.031 59.749,25.983 C59.162,25.561 58.650,25.074 58.063,24.653 C58.053,24.634 58.043,24.615 58.033,24.595 C58.004,24.576 57.975,24.557 57.946,24.538 C57.946,24.528 57.946,24.518 57.946,24.509 C57.927,24.509 57.907,24.509 57.888,24.509 C57.849,24.461 57.811,24.412 57.772,24.364 C57.752,24.364 57.733,24.364 57.714,24.364 C57.704,24.345 57.694,24.326 57.685,24.306 C57.675,24.306 57.665,24.306 57.656,24.306 C57.646,24.287 57.636,24.268 57.626,24.249 C57.607,24.249 57.588,24.249 57.568,24.249 C57.530,24.200 57.491,24.152 57.452,24.104 C57.433,24.104 57.413,24.104 57.394,24.104 C57.355,24.056 57.316,24.008 57.278,23.960 C57.258,23.960 57.239,23.960 57.219,23.960 C57.181,23.911 57.142,23.863 57.103,23.815 C57.084,23.815 57.064,23.815 57.045,23.815 C57.016,23.776 56.987,23.738 56.958,23.699 C56.938,23.699 56.919,23.699 56.900,23.699 C56.861,23.651 56.822,23.603 56.783,23.555 C56.764,23.555 56.744,23.555 56.725,23.555 C56.686,23.507 56.648,23.459 56.609,23.410 C56.589,23.410 56.570,23.410 56.551,23.410 C56.522,23.372 56.493,23.333 56.463,23.295 C56.444,23.295 56.425,23.295 56.405,23.295 C56.367,23.247 56.328,23.198 56.289,23.150 C55.580,22.641 54.963,22.041 54.254,21.532 C54.215,21.484 54.176,21.435 54.137,21.387 C54.118,21.387 54.099,21.387 54.079,21.387 C54.050,21.349 54.021,21.310 53.992,21.272 C53.973,21.272 53.953,21.272 53.934,21.272 C53.895,21.224 53.856,21.175 53.818,21.127 C53.798,21.127 53.779,21.127 53.759,21.127 C53.721,21.079 53.682,21.031 53.643,20.983 C53.624,20.983 53.604,20.983 53.585,20.983 C53.556,20.944 53.527,20.906 53.498,20.867 C53.478,20.867 53.459,20.867 53.440,20.867 C53.401,20.819 53.362,20.771 53.323,20.723 C53.304,20.723 53.285,20.723 53.265,20.723 C53.226,20.674 53.188,20.626 53.149,20.578 C53.130,20.578 53.110,20.578 53.091,20.578 C53.062,20.540 53.033,20.501 53.004,20.462 C52.984,20.462 52.965,20.462 52.945,20.462 C52.907,20.414 52.868,20.366 52.829,20.318 C52.810,20.318 52.790,20.318 52.771,20.318 C52.732,20.270 52.693,20.222 52.655,20.173 C52.635,20.173 52.616,20.173 52.596,20.173 C52.567,20.135 52.538,20.096 52.509,20.058 C52.490,20.058 52.470,20.058 52.451,20.058 C52.412,20.010 52.374,19.961 52.335,19.913 C52.315,19.913 52.296,19.913 52.277,19.913 C52.238,19.865 52.199,19.817 52.160,19.769 C52.141,19.769 52.122,19.769 52.102,19.769 C52.073,19.730 52.044,19.692 52.015,19.653 C51.996,19.653 51.976,19.653 51.957,19.653 C51.918,19.605 51.879,19.557 51.841,19.509 C51.821,19.509 51.802,19.509 51.782,19.509 C51.744,19.461 51.705,19.412 51.666,19.364 C51.647,19.364 51.627,19.364 51.608,19.364 C51.598,19.345 51.589,19.326 51.579,19.306 C51.569,19.306 51.559,19.306 51.550,19.306 C51.540,19.287 51.530,19.268 51.521,19.249 C51.501,19.249 51.482,19.249 51.463,19.249 C51.424,19.200 51.385,19.152 51.346,19.104 C51.327,19.104 51.307,19.104 51.288,19.104 C51.278,19.085 51.269,19.066 51.259,19.046 C51.230,19.027 51.201,19.008 51.172,18.988 C51.172,18.979 51.172,18.969 51.172,18.960 C51.152,18.960 51.133,18.960 51.114,18.960 C51.075,18.911 51.036,18.863 50.997,18.815 C50.978,18.815 50.959,18.815 50.939,18.815 C50.910,18.776 50.881,18.738 50.852,18.699 C50.833,18.699 50.813,18.699 50.794,18.699 C50.755,18.651 50.716,18.603 50.678,18.555 C50.658,18.555 50.639,18.555 50.619,18.555 C50.581,18.507 50.542,18.459 50.503,18.410 C50.484,18.410 50.464,18.410 50.445,18.410 C50.416,18.372 50.387,18.333 50.358,18.295 C50.338,18.295 50.319,18.295 50.300,18.295 C50.290,18.276 50.280,18.256 50.270,18.237 C50.241,18.218 50.212,18.198 50.183,18.179 C50.183,18.170 50.183,18.160 50.183,18.150 C50.164,18.150 50.144,18.150 50.125,18.150 C50.086,18.102 50.048,18.054 50.009,18.006 C49.989,18.006 49.970,18.006 49.951,18.006 C49.922,17.967 49.893,17.929 49.863,17.890 C49.844,17.890 49.825,17.890 49.805,17.890 C49.767,17.842 49.728,17.794 49.689,17.746 C49.670,17.746 49.650,17.746 49.631,17.746 C49.592,17.697 49.553,17.649 49.515,17.601 C49.495,17.601 49.476,17.601 49.456,17.601 C49.427,17.563 49.398,17.524 49.369,17.486 C49.350,17.486 49.330,17.486 49.311,17.486 C49.301,17.466 49.292,17.447 49.282,17.428 C49.253,17.408 49.224,17.389 49.195,17.370 C49.195,17.360 49.195,17.351 49.195,17.341 C49.175,17.341 49.156,17.341 49.137,17.341 C49.098,17.293 49.059,17.245 49.020,17.197 C49.001,17.197 48.981,17.197 48.962,17.197 C48.952,17.177 48.943,17.158 48.933,17.139 C48.923,17.139 48.914,17.139 48.904,17.139 C48.894,17.119 48.885,17.100 48.875,17.081 C48.856,17.081 48.836,17.081 48.817,17.081 C48.778,17.033 48.739,16.985 48.700,16.936 C48.681,16.936 48.662,16.936 48.642,16.936 C48.604,16.888 48.565,16.840 48.526,16.792 C48.507,16.792 48.487,16.792 48.468,16.792 C48.439,16.753 48.410,16.715 48.381,16.676 C48.361,16.676 48.342,16.676 48.322,16.676 C48.284,16.628 48.245,16.580 48.206,16.532 C48.187,16.532 48.167,16.532 48.148,16.532 C48.109,16.484 48.070,16.435 48.032,16.387 C48.012,16.387 47.993,16.387 47.974,16.387 C47.944,16.349 47.915,16.310 47.886,16.272 C47.867,16.272 47.848,16.272 47.828,16.272 C47.819,16.252 47.809,16.233 47.799,16.214 C47.770,16.195 47.741,16.175 47.712,16.156 C47.712,16.146 47.712,16.137 47.712,16.127 C47.693,16.127 47.673,16.127 47.654,16.127 C47.615,16.079 47.576,16.031 47.537,15.983 C46.950,15.561 46.439,15.074 45.851,14.653 C45.841,14.634 45.832,14.615 45.822,14.595 C45.793,14.576 45.764,14.557 45.735,14.538 C45.735,14.528 45.735,14.518 45.735,14.509 C45.715,14.509 45.696,14.509 45.677,14.509 C45.638,14.461 45.599,14.412 45.560,14.364 C45.541,14.364 45.522,14.364 45.502,14.364 C45.473,14.326 45.444,14.287 45.415,14.249 C45.396,14.249 45.376,14.249 45.357,14.249 C45.318,14.200 45.279,14.152 45.241,14.104 C45.221,14.104 45.202,14.104 45.182,14.104 C45.144,14.056 45.105,14.008 45.066,13.960 C45.047,13.960 45.027,13.960 45.008,13.960 C44.969,13.911 44.930,13.863 44.892,13.815 C44.872,13.815 44.853,13.815 44.833,13.815 C44.824,13.796 44.814,13.776 44.804,13.757 C44.795,13.757 44.785,13.757 44.775,13.757 C44.766,13.738 44.756,13.719 44.746,13.699 C44.727,13.699 44.707,13.699 44.688,13.699 C44.649,13.651 44.611,13.603 44.572,13.555 C44.552,13.555 44.533,13.555 44.514,13.555 C44.475,13.507 44.436,13.459 44.397,13.410 C44.378,13.410 44.359,13.410 44.339,13.410 C44.310,13.372 44.281,13.333 44.252,13.295 C44.233,13.295 44.213,13.295 44.194,13.295 C44.155,13.247 44.116,13.198 44.078,13.150 C44.058,13.150 44.039,13.150 44.019,13.150 C43.981,13.102 43.942,13.054 43.903,13.006 C43.884,13.006 43.864,13.006 43.845,13.006 C43.816,12.967 43.787,12.929 43.758,12.890 C43.738,12.890 43.719,12.890 43.700,12.890 C43.661,12.842 43.622,12.794 43.583,12.746 C43.564,12.746 43.544,12.746 43.525,12.746 C43.486,12.697 43.448,12.649 43.409,12.601 C43.389,12.601 43.370,12.601 43.351,12.601 C43.322,12.563 43.293,12.524 43.263,12.486 C43.244,12.486 43.225,12.486 43.205,12.486 C43.167,12.437 43.128,12.389 43.089,12.341 C43.070,12.341 43.050,12.341 43.031,12.341 C42.992,12.293 42.953,12.245 42.915,12.197 C42.895,12.197 42.876,12.197 42.856,12.197 C42.827,12.158 42.798,12.119 42.769,12.081 C42.750,12.081 42.730,12.081 42.711,12.081 C42.672,12.033 42.633,11.985 42.595,11.936 C42.575,11.936 42.556,11.936 42.537,11.936 C42.498,11.888 42.459,11.840 42.420,11.792 C41.833,11.371 41.321,10.883 40.734,10.462 C40.695,10.414 40.656,10.366 40.618,10.318 C40.598,10.318 40.579,10.318 40.559,10.318 C40.521,10.270 40.482,10.222 40.443,10.173 C40.424,10.173 40.404,10.173 40.385,10.173 C40.356,10.135 40.327,10.096 40.298,10.058 C40.278,10.058 40.259,10.058 40.240,10.058 C40.201,10.010 40.162,9.961 40.123,9.913 C40.104,9.913 40.085,9.913 40.065,9.913 C40.026,9.865 39.988,9.817 39.949,9.769 C39.930,9.769 39.910,9.769 39.891,9.769 C39.862,9.730 39.833,9.692 39.804,9.653 C39.784,9.653 39.765,9.653 39.745,9.653 C39.736,9.634 39.726,9.615 39.716,9.595 C39.687,9.576 39.658,9.557 39.629,9.538 C39.629,9.528 39.629,9.518 39.629,9.509 C39.610,9.509 39.590,9.509 39.571,9.509 C39.532,9.461 39.493,9.412 39.455,9.364 C39.435,9.364 39.416,9.364 39.396,9.364 C39.358,9.316 39.319,9.268 39.280,9.220 C39.261,9.220 39.241,9.220 39.222,9.220 C39.193,9.181 39.164,9.143 39.135,9.104 C39.115,9.104 39.096,9.104 39.077,9.104 C39.038,9.056 38.999,9.008 38.960,8.960 C38.941,8.960 38.922,8.960 38.902,8.960 C38.863,8.911 38.825,8.863 38.786,8.815 C38.767,8.815 38.747,8.815 38.728,8.815 C38.699,8.776 38.670,8.738 38.641,8.699 C38.621,8.699 38.602,8.699 38.582,8.699 C38.544,8.651 38.505,8.603 38.466,8.555 C38.447,8.555 38.427,8.555 38.408,8.555 C38.369,8.507 38.330,8.459 38.292,8.410 C38.272,8.410 38.253,8.410 38.233,8.410 C38.204,8.372 38.175,8.333 38.146,8.295 C38.127,8.295 38.107,8.295 38.088,8.295 C38.049,8.247 38.011,8.198 37.972,8.150 C37.952,8.150 37.933,8.150 37.914,8.150 C37.875,8.102 37.836,8.054 37.797,8.006 C37.210,7.584 36.699,7.097 36.111,6.676 C36.101,6.657 36.092,6.638 36.082,6.618 C36.053,6.599 36.024,6.580 35.995,6.561 C35.995,6.551 35.995,6.541 35.995,6.532 C35.975,6.532 35.956,6.532 35.937,6.532 C35.898,6.484 35.859,6.435 35.820,6.387 C35.801,6.387 35.781,6.387 35.762,6.387 C35.733,6.349 35.704,6.310 35.675,6.272 C35.656,6.272 35.636,6.272 35.617,6.272 C35.578,6.224 35.539,6.175 35.500,6.127 C35.481,6.127 35.462,6.127 35.442,6.127 C35.404,6.079 35.365,6.031 35.326,5.983 C35.307,5.983 35.287,5.983 35.268,5.983 C35.239,5.944 35.210,5.906 35.181,5.867 C35.161,5.867 35.142,5.867 35.122,5.867 C35.113,5.848 35.103,5.829 35.093,5.809 C35.064,5.790 35.035,5.771 35.006,5.751 C35.006,5.742 35.006,5.732 35.006,5.723 C34.987,5.723 34.967,5.723 34.948,5.723 C34.909,5.674 34.870,5.626 34.832,5.578 C34.812,5.578 34.793,5.578 34.774,5.578 C34.764,5.559 34.754,5.539 34.744,5.520 C34.735,5.520 34.725,5.520 34.715,5.520 C34.706,5.501 34.696,5.482 34.686,5.462 C34.667,5.462 34.648,5.462 34.628,5.462 C34.589,5.414 34.551,5.366 34.512,5.318 C34.493,5.318 34.473,5.318 34.454,5.318 C34.415,5.270 34.376,5.222 34.337,5.173 C34.318,5.173 34.299,5.173 34.279,5.173 C34.250,5.135 34.221,5.096 34.192,5.058 C34.173,5.058 34.153,5.058 34.134,5.058 C34.095,5.010 34.056,4.961 34.018,4.913 C33.998,4.913 33.979,4.913 33.959,4.913 C33.921,4.865 33.882,4.817 33.843,4.769 C33.824,4.769 33.804,4.769 33.785,4.769 C33.756,4.730 33.727,4.692 33.698,4.653 C33.678,4.653 33.659,4.653 33.640,4.653 C33.601,4.605 33.562,4.557 33.523,4.509 C33.504,4.509 33.485,4.509 33.465,4.509 C33.426,4.461 33.388,4.412 33.349,4.364 C33.330,4.364 33.310,4.364 33.291,4.364 C33.252,4.316 33.213,4.268 33.174,4.220 C33.155,4.220 33.136,4.220 33.116,4.220 C33.116,4.210 33.116,4.200 33.116,4.191 C33.066,4.149 33.046,4.125 32.971,4.104 C32.942,4.143 32.913,4.181 32.884,4.220 C32.864,4.220 32.845,4.220 32.826,4.220 C32.787,4.268 32.748,4.316 32.709,4.364 C32.690,4.364 32.670,4.364 32.651,4.364 C32.612,4.412 32.574,4.461 32.535,4.509 C32.515,4.509 32.496,4.509 32.477,4.509 C32.467,4.528 32.457,4.547 32.448,4.566 C32.438,4.566 32.428,4.566 32.419,4.566 C32.409,4.586 32.399,4.605 32.389,4.624 C32.370,4.624 32.351,4.624 32.331,4.624 C32.322,4.644 32.312,4.663 32.302,4.682 C32.273,4.701 32.244,4.721 32.215,4.740 C32.215,4.750 32.215,4.759 32.215,4.769 C32.196,4.769 32.176,4.769 32.157,4.769 C32.118,4.817 32.079,4.865 32.041,4.913 C32.021,4.913 32.002,4.913 31.982,4.913 C31.944,4.961 31.905,5.010 31.866,5.058 C31.847,5.058 31.827,5.058 31.808,5.058 C31.798,5.077 31.789,5.096 31.779,5.116 C31.769,5.116 31.759,5.116 31.750,5.116 C31.740,5.135 31.730,5.154 31.721,5.173 C31.701,5.173 31.682,5.173 31.663,5.173 C31.624,5.222 31.585,5.270 31.546,5.318 C31.527,5.318 31.507,5.318 31.488,5.318 C31.449,5.366 31.411,5.414 31.372,5.462 C31.352,5.462 31.333,5.462 31.314,5.462 C31.285,5.501 31.256,5.540 31.226,5.578 C31.207,5.578 31.188,5.578 31.168,5.578 C31.130,5.626 31.091,5.674 31.052,5.723 C31.033,5.723 31.013,5.723 30.994,5.723 C30.955,5.771 30.916,5.819 30.878,5.867 C30.858,5.867 30.839,5.867 30.819,5.867 C30.790,5.906 30.761,5.944 30.732,5.983 C30.713,5.983 30.693,5.983 30.674,5.983 C30.635,6.031 30.596,6.079 30.558,6.127 C30.538,6.127 30.519,6.127 30.500,6.127 C30.461,6.175 30.422,6.224 30.383,6.272 C30.364,6.272 30.344,6.272 30.325,6.272 C30.296,6.310 30.267,6.349 30.238,6.387 C30.219,6.387 30.199,6.387 30.180,6.387 C30.141,6.435 30.102,6.484 30.063,6.532 C30.044,6.532 30.025,6.532 30.005,6.532 C29.967,6.580 29.928,6.628 29.889,6.676 C29.870,6.676 29.850,6.676 29.831,6.676 C29.802,6.715 29.773,6.753 29.744,6.792 C29.724,6.792 29.705,6.792 29.685,6.792 C29.647,6.840 29.608,6.888 29.569,6.936 C29.550,6.936 29.530,6.936 29.511,6.936 C29.472,6.985 29.433,7.033 29.395,7.081 C29.375,7.081 29.356,7.081 29.337,7.081 C29.307,7.119 29.278,7.158 29.249,7.197 C29.230,7.197 29.211,7.197 29.191,7.197 C29.152,7.245 29.114,7.293 29.075,7.341 C29.056,7.341 29.036,7.341 29.017,7.341 C28.978,7.389 28.939,7.437 28.900,7.486 C28.313,7.907 27.802,8.394 27.214,8.815 C27.204,8.834 27.195,8.854 27.185,8.873 C27.156,8.892 27.127,8.911 27.098,8.931 C27.098,8.940 27.098,8.950 27.098,8.960 C27.078,8.960 27.059,8.960 27.040,8.960 C27.001,9.008 26.962,9.056 26.923,9.104 C26.904,9.104 26.885,9.104 26.865,9.104 C26.856,9.123 26.846,9.143 26.836,9.162 C26.826,9.162 26.817,9.162 26.807,9.162 C26.797,9.181 26.788,9.200 26.778,9.220 C26.759,9.220 26.739,9.220 26.720,9.220 C26.681,9.268 26.642,9.316 26.604,9.364 C26.584,9.364 26.565,9.364 26.545,9.364 C26.507,9.412 26.468,9.461 26.429,9.509 C26.410,9.509 26.390,9.509 26.371,9.509 C26.332,9.557 26.293,9.605 26.255,9.653 C26.235,9.653 26.216,9.653 26.196,9.653 C26.167,9.692 26.138,9.730 26.109,9.769 C26.090,9.769 26.070,9.769 26.051,9.769 C26.012,9.817 25.974,9.865 25.935,9.913 C25.915,9.913 25.896,9.913 25.877,9.913 C25.838,9.961 25.799,10.010 25.760,10.058 C25.741,10.058 25.722,10.058 25.702,10.058 C25.673,10.096 25.644,10.135 25.615,10.173 C25.596,10.173 25.576,10.173 25.557,10.173 C25.518,10.222 25.479,10.270 25.441,10.318 C24.732,10.827 24.115,11.428 23.405,11.936 C23.367,11.985 23.328,12.033 23.289,12.081 C23.270,12.081 23.250,12.081 23.231,12.081 C23.202,12.119 23.173,12.158 23.144,12.197 C23.124,12.197 23.105,12.197 23.085,12.197 C23.047,12.245 23.008,12.293 22.969,12.341 C22.950,12.341 22.930,12.341 22.911,12.341 C22.872,12.389 22.833,12.437 22.795,12.486 C22.775,12.486 22.756,12.486 22.737,12.486 C22.707,12.524 22.678,12.563 22.649,12.601 C22.630,12.601 22.611,12.601 22.591,12.601 C22.552,12.649 22.514,12.697 22.475,12.746 C22.456,12.746 22.436,12.746 22.417,12.746 C22.378,12.794 22.339,12.842 22.300,12.890 C22.281,12.890 22.262,12.890 22.242,12.890 C22.213,12.929 22.184,12.967 22.155,13.006 C22.136,13.006 22.116,13.006 22.097,13.006 C22.058,13.054 22.019,13.102 21.981,13.150 C21.961,13.150 21.942,13.150 21.922,13.150 C21.884,13.198 21.845,13.247 21.806,13.295 C21.787,13.295 21.767,13.295 21.748,13.295 C21.719,13.333 21.690,13.372 21.661,13.410 C21.641,13.410 21.622,13.410 21.603,13.410 C21.564,13.459 21.525,13.507 21.486,13.555 C21.467,13.555 21.448,13.555 21.428,13.555 C21.389,13.603 21.351,13.651 21.312,13.699 C21.293,13.699 21.273,13.699 21.254,13.699 C21.225,13.738 21.196,13.776 21.167,13.815 C21.147,13.815 21.128,13.815 21.108,13.815 C21.070,13.863 21.031,13.911 20.992,13.960 C20.973,13.960 20.953,13.960 20.934,13.960 C20.895,14.008 20.856,14.056 20.818,14.104 C20.798,14.104 20.779,14.104 20.759,14.104 C20.750,14.123 20.740,14.143 20.730,14.162 C20.721,14.162 20.711,14.162 20.701,14.162 C20.692,14.181 20.682,14.200 20.672,14.220 C20.653,14.220 20.633,14.220 20.614,14.220 C20.575,14.268 20.537,14.316 20.498,14.364 C20.478,14.364 20.459,14.364 20.440,14.364 C20.430,14.383 20.420,14.403 20.411,14.422 C20.382,14.441 20.352,14.461 20.323,14.480 C20.323,14.489 20.323,14.499 20.323,14.509 C20.304,14.509 20.285,14.509 20.265,14.509 C20.226,14.557 20.188,14.605 20.149,14.653 C20.130,14.653 20.110,14.653 20.091,14.653 C20.062,14.692 20.033,14.730 20.004,14.769 C19.984,14.769 19.965,14.769 19.945,14.769 C19.907,14.817 19.868,14.865 19.829,14.913 C19.810,14.913 19.790,14.913 19.771,14.913 C19.732,14.961 19.693,15.010 19.655,15.058 C19.635,15.058 19.616,15.058 19.596,15.058 C19.567,15.096 19.538,15.135 19.509,15.173 C19.490,15.173 19.470,15.173 19.451,15.173 C19.441,15.193 19.432,15.212 19.422,15.231 C19.393,15.250 19.364,15.270 19.335,15.289 C19.335,15.299 19.335,15.308 19.335,15.318 C19.315,15.318 19.296,15.318 19.277,15.318 C19.238,15.366 19.199,15.414 19.160,15.462 C19.141,15.462 19.122,15.462 19.102,15.462 C19.073,15.501 19.044,15.540 19.015,15.578 C18.996,15.578 18.976,15.578 18.957,15.578 C18.918,15.626 18.879,15.674 18.841,15.723 C18.821,15.723 18.802,15.723 18.782,15.723 C18.744,15.771 18.705,15.819 18.666,15.867 C18.647,15.867 18.627,15.867 18.608,15.867 C18.579,15.906 18.550,15.944 18.521,15.983 C18.501,15.983 18.482,15.983 18.463,15.983 C18.453,16.002 18.443,16.021 18.433,16.040 C18.404,16.060 18.375,16.079 18.346,16.098 C18.346,16.108 18.346,16.118 18.346,16.127 C18.327,16.127 18.307,16.127 18.288,16.127 C18.249,16.175 18.211,16.224 18.172,16.272 C18.152,16.272 18.133,16.272 18.114,16.272 C18.104,16.291 18.094,16.310 18.085,16.329 C18.075,16.329 18.065,16.329 18.056,16.329 C18.046,16.349 18.036,16.368 18.026,16.387 C18.007,16.387 17.988,16.387 17.968,16.387 C17.930,16.435 17.891,16.484 17.852,16.532 C17.833,16.532 17.813,16.532 17.794,16.532 C17.755,16.580 17.716,16.628 17.678,16.676 C17.658,16.676 17.639,16.676 17.619,16.676 C17.590,16.715 17.561,16.753 17.532,16.792 C17.513,16.792 17.493,16.792 17.474,16.792 C17.435,16.840 17.396,16.888 17.358,16.936 C17.338,16.936 17.319,16.936 17.300,16.936 C17.261,16.985 17.222,17.033 17.183,17.081 C17.164,17.081 17.144,17.081 17.125,17.081 C17.096,17.119 17.067,17.158 17.038,17.197 C17.019,17.197 16.999,17.197 16.980,17.197 C16.970,17.216 16.960,17.235 16.951,17.254 C16.922,17.274 16.893,17.293 16.863,17.312 C16.863,17.322 16.863,17.331 16.863,17.341 C16.844,17.341 16.825,17.341 16.805,17.341 C16.767,17.389 16.728,17.437 16.689,17.486 C16.102,17.907 15.590,18.394 15.003,18.815 C14.964,18.863 14.925,18.911 14.886,18.960 C14.867,18.960 14.848,18.960 14.828,18.960 C14.789,19.008 14.751,19.056 14.712,19.104 C14.693,19.104 14.673,19.104 14.654,19.104 C14.615,19.152 14.576,19.200 14.537,19.249 C13.950,19.670 13.439,20.157 12.851,20.578 C12.812,20.626 12.774,20.674 12.735,20.723 C12.715,20.723 12.696,20.723 12.677,20.723 C12.638,20.771 12.599,20.819 12.560,20.867 C12.541,20.867 12.522,20.867 12.502,20.867 C12.473,20.906 12.444,20.944 12.415,20.983 C12.396,20.983 12.376,20.983 12.357,20.983 C12.318,21.031 12.279,21.079 12.241,21.127 C12.221,21.127 12.202,21.127 12.182,21.127 C12.144,21.175 12.105,21.224 12.066,21.272 C12.047,21.272 12.027,21.272 12.008,21.272 C11.979,21.310 11.950,21.349 11.921,21.387 C11.901,21.387 11.882,21.387 11.863,21.387 C11.824,21.435 11.785,21.484 11.746,21.532 C11.727,21.532 11.707,21.532 11.688,21.532 C11.649,21.580 11.611,21.628 11.572,21.676 C10.985,22.098 10.473,22.585 9.885,23.006 C9.847,23.054 9.808,23.102 9.769,23.150 C9.750,23.150 9.730,23.150 9.711,23.150 C9.672,23.198 9.633,23.247 9.595,23.295 C9.575,23.295 9.556,23.295 9.537,23.295 C9.507,23.333 9.478,23.372 9.449,23.410 C9.430,23.410 9.411,23.410 9.391,23.410 C9.352,23.459 9.314,23.507 9.275,23.555 C9.256,23.555 9.236,23.555 9.217,23.555 C9.178,23.603 9.139,23.651 9.100,23.699 C9.081,23.699 9.062,23.699 9.042,23.699 C9.013,23.738 8.984,23.776 8.955,23.815 C8.936,23.815 8.916,23.815 8.897,23.815 C8.887,23.834 8.878,23.854 8.868,23.873 C8.839,23.892 8.810,23.911 8.781,23.931 C8.781,23.940 8.781,23.950 8.781,23.960 C8.761,23.960 8.742,23.960 8.722,23.960 C8.684,24.008 8.645,24.056 8.606,24.104 C8.587,24.104 8.567,24.104 8.548,24.104 C8.509,24.152 8.470,24.200 8.432,24.249 C8.412,24.249 8.393,24.249 8.374,24.249 C8.344,24.287 8.315,24.326 8.286,24.364 C8.267,24.364 8.248,24.364 8.228,24.364 C8.189,24.412 8.151,24.461 8.112,24.509 C8.093,24.509 8.073,24.509 8.054,24.509 C8.015,24.557 7.976,24.605 7.937,24.653 C7.918,24.653 7.899,24.653 7.879,24.653 C7.850,24.692 7.821,24.730 7.792,24.769 C7.773,24.769 7.753,24.769 7.734,24.769 C7.695,24.817 7.656,24.865 7.618,24.913 C7.598,24.913 7.579,24.913 7.559,24.913 C7.521,24.961 7.482,25.010 7.443,25.058 C7.424,25.058 7.404,25.058 7.385,25.058 C7.356,25.096 7.327,25.135 7.298,25.173 C7.278,25.173 7.259,25.173 7.240,25.173 C7.201,25.222 7.162,25.270 7.123,25.318 C7.104,25.318 7.085,25.318 7.065,25.318 C7.026,25.366 6.988,25.414 6.949,25.462 C6.362,25.884 5.850,26.371 5.263,26.792 C5.253,26.811 5.243,26.830 5.233,26.850 C5.204,26.869 5.175,26.888 5.146,26.908 C5.146,26.917 5.146,26.927 5.146,26.936 C5.127,26.936 5.107,26.936 5.088,26.936 C5.049,26.985 5.011,27.033 4.972,27.081 C4.952,27.081 4.933,27.081 4.914,27.081 C4.885,27.119 4.856,27.158 4.826,27.197 C4.807,27.197 4.788,27.197 4.768,27.197 C4.730,27.245 4.691,27.293 4.652,27.341 C4.633,27.341 4.613,27.341 4.594,27.341 C4.555,27.389 4.516,27.437 4.478,27.486 C4.458,27.486 4.439,27.486 4.419,27.486 C4.390,27.524 4.361,27.563 4.332,27.601 C4.313,27.601 4.293,27.601 4.274,27.601 C4.264,27.620 4.255,27.640 4.245,27.659 C4.216,27.678 4.187,27.697 4.158,27.717 C4.158,27.726 4.158,27.736 4.158,27.746 C4.138,27.746 4.119,27.746 4.100,27.746 C4.061,27.794 4.022,27.842 3.983,27.890 C3.964,27.890 3.944,27.890 3.925,27.890 C3.915,27.909 3.906,27.929 3.896,27.948 C3.886,27.948 3.877,27.948 3.867,27.948 C3.857,27.967 3.848,27.987 3.838,28.006 C3.819,28.006 3.799,28.006 3.780,28.006 C3.741,28.054 3.702,28.102 3.663,28.150 C3.644,28.150 3.625,28.150 3.605,28.150 C3.567,28.198 3.528,28.247 3.489,28.295 C3.470,28.295 3.450,28.295 3.431,28.295 C3.421,28.314 3.411,28.333 3.402,28.353 C3.392,28.353 3.382,28.353 3.373,28.353 C3.363,28.372 3.353,28.391 3.344,28.410 C3.324,28.410 3.305,28.410 3.285,28.410 C3.247,28.459 3.208,28.507 3.169,28.555 C3.150,28.555 3.130,28.555 3.111,28.555 C3.072,28.603 3.033,28.651 2.995,28.699 C2.975,28.699 2.956,28.699 2.937,28.699 C2.898,28.748 2.859,28.796 2.820,28.844 C2.801,28.844 2.781,28.844 2.762,28.844 C2.733,28.882 2.704,28.921 2.675,28.960 C2.656,28.960 2.636,28.960 2.617,28.960 C2.578,29.008 2.539,29.056 2.500,29.104 C2.481,29.104 2.462,29.104 2.442,29.104 C2.413,29.143 2.384,29.181 2.355,29.220 C2.326,29.229 2.297,29.239 2.268,29.249 C2.258,29.268 2.248,29.287 2.239,29.306 C2.229,29.306 2.219,29.306 2.210,29.306 C2.200,29.326 2.190,29.345 2.181,29.364 C2.161,29.364 2.142,29.364 2.122,29.364 C2.122,29.374 2.122,29.383 2.122,29.393 C2.079,29.427 2.071,29.433 2.006,29.451 C1.982,29.409 1.923,29.314 1.890,29.277 C1.861,29.258 1.832,29.239 1.803,29.220 C1.803,29.200 1.803,29.181 1.803,29.162 C1.754,29.123 1.706,29.085 1.657,29.046 C1.657,29.027 1.657,29.008 1.657,28.988 C1.609,28.950 1.560,28.911 1.512,28.873 C1.512,28.854 1.512,28.834 1.512,28.815 C1.473,28.786 1.434,28.757 1.396,28.728 C1.396,28.709 1.396,28.690 1.396,28.671 C1.347,28.632 1.299,28.593 1.250,28.555 C1.250,28.536 1.250,28.516 1.250,28.497 C1.202,28.459 1.153,28.420 1.105,28.382 C1.105,28.362 1.105,28.343 1.105,28.324 C1.066,28.295 1.027,28.266 0.989,28.237 C0.989,28.218 0.989,28.198 0.989,28.179 C0.940,28.141 0.892,28.102 0.843,28.064 C0.843,28.044 0.843,28.025 0.843,28.006 C0.795,27.967 0.746,27.929 0.698,27.890 C0.698,27.871 0.698,27.852 0.698,27.832 C0.659,27.803 0.620,27.775 0.581,27.746 C0.581,27.726 0.581,27.707 0.581,27.688 C0.533,27.649 0.485,27.611 0.436,27.572 C0.436,27.553 0.436,27.534 0.436,27.514 C0.388,27.476 0.339,27.437 0.291,27.399 C0.291,27.380 0.291,27.360 0.291,27.341 C0.252,27.312 0.213,27.283 0.174,27.254 C0.174,27.235 0.174,27.216 0.174,27.197 C0.155,27.187 0.136,27.177 0.116,27.168 C0.074,27.123 0.048,27.062 0.000,27.023 C0.019,26.994 0.039,26.965 0.058,26.936 C0.078,26.936 0.097,26.936 0.116,26.936 C0.155,26.888 0.194,26.840 0.233,26.792 C0.252,26.792 0.271,26.792 0.291,26.792 C0.320,26.753 0.349,26.715 0.378,26.676 C0.397,26.676 0.417,26.676 0.436,26.676 C0.475,26.628 0.514,26.580 0.552,26.532 C0.572,26.532 0.591,26.532 0.611,26.532 C0.649,26.484 0.688,26.435 0.727,26.387 C0.746,26.387 0.766,26.387 0.785,26.387 C0.814,26.349 0.843,26.310 0.872,26.272 C0.892,26.272 0.911,26.272 0.930,26.272 C0.969,26.224 1.008,26.175 1.047,26.127 C1.066,26.127 1.085,26.127 1.105,26.127 C1.144,26.079 1.182,26.031 1.221,25.983 C1.241,25.983 1.260,25.983 1.279,25.983 C1.289,25.963 1.299,25.944 1.308,25.925 C1.318,25.925 1.328,25.925 1.337,25.925 C1.347,25.906 1.357,25.886 1.367,25.867 C1.386,25.867 1.405,25.867 1.425,25.867 C1.463,25.819 1.502,25.771 1.541,25.723 C1.560,25.723 1.580,25.723 1.599,25.723 C1.638,25.674 1.677,25.626 1.715,25.578 C1.735,25.578 1.754,25.578 1.774,25.578 C1.803,25.540 1.832,25.501 1.861,25.462 C1.880,25.462 1.900,25.462 1.919,25.462 C1.958,25.414 1.996,25.366 2.035,25.318 C2.055,25.318 2.074,25.318 2.093,25.318 C2.132,25.270 2.171,25.222 2.210,25.173 C2.229,25.173 2.248,25.173 2.268,25.173 C2.297,25.135 2.326,25.096 2.355,25.058 C2.374,25.058 2.394,25.058 2.413,25.058 C2.452,25.010 2.491,24.961 2.530,24.913 C2.549,24.913 2.568,24.913 2.588,24.913 C2.626,24.865 2.665,24.817 2.704,24.769 C2.723,24.769 2.743,24.769 2.762,24.769 C2.801,24.721 2.840,24.672 2.878,24.624 C2.898,24.624 2.917,24.624 2.937,24.624 C2.966,24.586 2.995,24.547 3.024,24.509 C3.043,24.509 3.063,24.509 3.082,24.509 C3.121,24.461 3.159,24.412 3.198,24.364 C3.218,24.364 3.237,24.364 3.256,24.364 C3.295,24.316 3.334,24.268 3.373,24.220 C3.392,24.220 3.411,24.220 3.431,24.220 C3.460,24.181 3.489,24.143 3.518,24.104 C3.537,24.104 3.557,24.104 3.576,24.104 C3.615,24.056 3.654,24.008 3.693,23.960 C3.712,23.960 3.731,23.960 3.751,23.960 C3.789,23.911 3.828,23.863 3.867,23.815 C3.886,23.815 3.906,23.815 3.925,23.815 C3.954,23.776 3.983,23.738 4.012,23.699 C4.032,23.699 4.051,23.699 4.070,23.699 C4.109,23.651 4.148,23.603 4.187,23.555 C4.206,23.555 4.226,23.555 4.245,23.555 C4.284,23.507 4.322,23.459 4.361,23.410 C4.948,22.989 5.460,22.502 6.048,22.081 C6.057,22.062 6.067,22.042 6.077,22.023 C6.106,22.004 6.135,21.985 6.164,21.965 C6.164,21.956 6.164,21.946 6.164,21.936 C6.183,21.936 6.203,21.936 6.222,21.936 C6.261,21.888 6.300,21.840 6.338,21.792 C6.358,21.792 6.377,21.792 6.396,21.792 C6.426,21.753 6.455,21.715 6.484,21.676 C6.503,21.676 6.522,21.676 6.542,21.676 C6.581,21.628 6.619,21.580 6.658,21.532 C6.678,21.532 6.697,21.532 6.716,21.532 C6.755,21.484 6.794,21.435 6.833,21.387 C6.852,21.387 6.871,21.387 6.891,21.387 C6.920,21.349 6.949,21.310 6.978,21.272 C6.997,21.272 7.017,21.272 7.036,21.272 C7.046,21.252 7.056,21.233 7.065,21.214 C7.094,21.195 7.123,21.175 7.152,21.156 C7.152,21.146 7.152,21.137 7.152,21.127 C7.172,21.127 7.191,21.127 7.211,21.127 C7.249,21.079 7.288,21.031 7.327,20.983 C7.346,20.983 7.366,20.983 7.385,20.983 C7.414,20.944 7.443,20.906 7.472,20.867 C7.492,20.867 7.511,20.867 7.530,20.867 C7.569,20.819 7.608,20.771 7.647,20.723 C7.666,20.723 7.685,20.723 7.705,20.723 C7.744,20.674 7.782,20.626 7.821,20.578 C7.841,20.578 7.860,20.578 7.879,20.578 C7.908,20.540 7.937,20.501 7.967,20.462 C7.986,20.462 8.005,20.462 8.025,20.462 C8.063,20.414 8.102,20.366 8.141,20.318 C8.160,20.318 8.180,20.318 8.199,20.318 C8.238,20.270 8.277,20.222 8.315,20.173 C8.335,20.173 8.354,20.173 8.374,20.173 C8.412,20.125 8.451,20.077 8.490,20.029 C8.509,20.029 8.529,20.029 8.548,20.029 C8.577,19.990 8.606,19.952 8.635,19.913 C8.655,19.913 8.674,19.913 8.693,19.913 C8.732,19.865 8.771,19.817 8.810,19.769 C8.829,19.769 8.848,19.769 8.868,19.769 C8.907,19.721 8.945,19.672 8.984,19.624 C9.004,19.624 9.023,19.624 9.042,19.624 C9.071,19.586 9.100,19.547 9.130,19.509 C9.149,19.509 9.168,19.509 9.188,19.509 C9.226,19.461 9.265,19.412 9.304,19.364 C9.323,19.364 9.343,19.364 9.362,19.364 C9.401,19.316 9.440,19.268 9.478,19.220 C9.498,19.220 9.517,19.220 9.537,19.220 C9.546,19.200 9.556,19.181 9.566,19.162 C9.575,19.162 9.585,19.162 9.595,19.162 C9.604,19.143 9.614,19.123 9.624,19.104 C9.643,19.104 9.663,19.104 9.682,19.104 C9.721,19.056 9.759,19.008 9.798,18.960 C9.818,18.960 9.837,18.960 9.856,18.960 C9.895,18.911 9.934,18.863 9.973,18.815 C9.992,18.815 10.011,18.815 10.031,18.815 C10.041,18.796 10.050,18.776 10.060,18.757 C10.070,18.757 10.079,18.757 10.089,18.757 C10.099,18.738 10.108,18.719 10.118,18.699 C10.137,18.699 10.157,18.699 10.176,18.699 C10.215,18.651 10.254,18.603 10.293,18.555 C10.312,18.555 10.331,18.555 10.351,18.555 C10.389,18.507 10.428,18.459 10.467,18.410 C10.486,18.410 10.506,18.410 10.525,18.410 C10.554,18.372 10.583,18.333 10.612,18.295 C10.632,18.295 10.651,18.295 10.670,18.295 C10.709,18.247 10.748,18.198 10.787,18.150 C10.806,18.150 10.826,18.150 10.845,18.150 C10.884,18.102 10.922,18.054 10.961,18.006 C10.981,18.006 11.000,18.006 11.019,18.006 C11.048,17.967 11.078,17.929 11.107,17.890 C11.126,17.890 11.145,17.890 11.165,17.890 C11.204,17.842 11.242,17.794 11.281,17.746 C11.300,17.746 11.320,17.746 11.339,17.746 C11.378,17.697 11.417,17.649 11.456,17.601 C11.475,17.601 11.494,17.601 11.514,17.601 C11.543,17.563 11.572,17.524 11.601,17.486 C11.620,17.486 11.640,17.486 11.659,17.486 C11.698,17.437 11.737,17.389 11.775,17.341 C11.795,17.341 11.814,17.341 11.833,17.341 C11.872,17.293 11.911,17.245 11.950,17.197 C11.969,17.197 11.989,17.197 12.008,17.197 C12.037,17.158 12.066,17.119 12.095,17.081 C12.115,17.081 12.134,17.081 12.153,17.081 C12.192,17.033 12.231,16.985 12.270,16.936 C12.289,16.936 12.308,16.936 12.328,16.936 C12.367,16.888 12.405,16.840 12.444,16.792 C12.463,16.792 12.483,16.792 12.502,16.792 C12.531,16.753 12.560,16.715 12.589,16.676 C12.609,16.676 12.628,16.676 12.648,16.676 C12.686,16.628 12.725,16.580 12.764,16.532 C12.783,16.532 12.803,16.532 12.822,16.532 C12.861,16.484 12.900,16.435 12.938,16.387 C12.958,16.387 12.977,16.387 12.996,16.387 C13.026,16.349 13.055,16.310 13.084,16.272 C13.103,16.272 13.122,16.272 13.142,16.272 C13.181,16.224 13.219,16.175 13.258,16.127 C13.278,16.127 13.297,16.127 13.316,16.127 C13.355,16.079 13.394,16.031 13.433,15.983 C13.452,15.983 13.471,15.983 13.491,15.983 C13.500,15.963 13.510,15.944 13.520,15.925 C13.530,15.925 13.539,15.925 13.549,15.925 C13.559,15.906 13.568,15.886 13.578,15.867 C13.597,15.867 13.617,15.867 13.636,15.867 C13.675,15.819 13.714,15.771 13.752,15.723 C13.772,15.723 13.791,15.723 13.811,15.723 C13.820,15.703 13.830,15.684 13.840,15.665 C13.869,15.645 13.898,15.626 13.927,15.607 C13.927,15.597 13.927,15.588 13.927,15.578 C13.946,15.578 13.966,15.578 13.985,15.578 C14.024,15.530 14.063,15.482 14.101,15.434 C14.121,15.434 14.140,15.434 14.159,15.434 C14.189,15.395 14.218,15.356 14.247,15.318 C14.266,15.318 14.285,15.318 14.305,15.318 C14.344,15.270 14.382,15.222 14.421,15.173 C14.441,15.173 14.460,15.173 14.479,15.173 C14.518,15.125 14.557,15.077 14.596,15.029 C14.615,15.029 14.634,15.029 14.654,15.029 C14.683,14.990 14.712,14.952 14.741,14.913 C14.760,14.913 14.780,14.913 14.799,14.913 C14.809,14.894 14.819,14.875 14.828,14.855 C14.857,14.836 14.886,14.817 14.915,14.798 C14.915,14.788 14.915,14.778 14.915,14.769 C14.935,14.769 14.954,14.769 14.974,14.769 C15.012,14.721 15.051,14.672 15.090,14.624 C15.109,14.624 15.129,14.624 15.148,14.624 C15.177,14.586 15.206,14.547 15.235,14.509 C15.255,14.509 15.274,14.509 15.293,14.509 C15.332,14.461 15.371,14.412 15.410,14.364 C15.429,14.364 15.448,14.364 15.468,14.364 C15.507,14.316 15.545,14.268 15.584,14.220 C15.604,14.220 15.623,14.220 15.642,14.220 C15.671,14.181 15.700,14.143 15.730,14.104 C15.749,14.104 15.768,14.104 15.788,14.104 C15.797,14.085 15.807,14.066 15.817,14.046 C15.846,14.027 15.875,14.008 15.904,13.988 C15.904,13.979 15.904,13.969 15.904,13.960 C15.923,13.960 15.943,13.960 15.962,13.960 C16.001,13.911 16.040,13.863 16.078,13.815 C16.098,13.815 16.117,13.815 16.137,13.815 C16.146,13.796 16.156,13.776 16.166,13.757 C16.175,13.757 16.185,13.757 16.195,13.757 C16.204,13.738 16.214,13.719 16.224,13.699 C16.243,13.699 16.263,13.699 16.282,13.699 C16.321,13.651 16.359,13.603 16.398,13.555 C16.418,13.555 16.437,13.555 16.456,13.555 C16.495,13.507 16.534,13.459 16.573,13.410 C16.592,13.410 16.611,13.410 16.631,13.410 C16.660,13.372 16.689,13.333 16.718,13.295 C16.737,13.295 16.757,13.295 16.776,13.295 C16.815,13.247 16.854,13.198 16.893,13.150 C16.912,13.150 16.931,13.150 16.951,13.150 C16.989,13.102 17.028,13.054 17.067,13.006 C17.086,13.006 17.106,13.006 17.125,13.006 C17.154,12.967 17.183,12.929 17.212,12.890 C17.232,12.890 17.251,12.890 17.270,12.890 C17.280,12.871 17.290,12.852 17.300,12.832 C17.329,12.813 17.358,12.794 17.387,12.775 C17.387,12.765 17.387,12.755 17.387,12.746 C17.406,12.746 17.426,12.746 17.445,12.746 C17.484,12.697 17.522,12.649 17.561,12.601 C18.148,12.180 18.660,11.693 19.248,11.272 C19.257,11.252 19.267,11.233 19.277,11.214 C19.306,11.195 19.335,11.175 19.364,11.156 C19.364,11.146 19.364,11.137 19.364,11.127 C19.383,11.127 19.403,11.127 19.422,11.127 C19.461,11.079 19.500,11.031 19.538,10.983 C19.558,10.983 19.577,10.983 19.596,10.983 C19.626,10.944 19.655,10.906 19.684,10.867 C19.703,10.867 19.722,10.867 19.742,10.867 C19.781,10.819 19.819,10.771 19.858,10.723 C19.878,10.723 19.897,10.723 19.916,10.723 C19.955,10.674 19.994,10.626 20.033,10.578 C20.052,10.578 20.071,10.578 20.091,10.578 C20.130,10.530 20.168,10.482 20.207,10.434 C20.226,10.434 20.246,10.434 20.265,10.434 C20.275,10.414 20.285,10.395 20.294,10.376 C20.304,10.376 20.314,10.376 20.323,10.376 C20.333,10.356 20.343,10.337 20.352,10.318 C20.372,10.318 20.391,10.318 20.411,10.318 C20.449,10.270 20.488,10.222 20.527,10.173 C20.546,10.173 20.566,10.173 20.585,10.173 C20.624,10.125 20.663,10.077 20.701,10.029 C20.721,10.029 20.740,10.029 20.759,10.029 C20.789,9.990 20.818,9.952 20.847,9.913 C20.866,9.913 20.885,9.913 20.905,9.913 C20.944,9.865 20.982,9.817 21.021,9.769 C21.041,9.769 21.060,9.769 21.079,9.769 C21.118,9.721 21.157,9.672 21.196,9.624 C21.215,9.624 21.234,9.624 21.254,9.624 C21.283,9.586 21.312,9.547 21.341,9.509 C21.360,9.509 21.380,9.509 21.399,9.509 C21.409,9.489 21.419,9.470 21.428,9.451 C21.457,9.432 21.486,9.412 21.515,9.393 C21.515,9.383 21.515,9.374 21.515,9.364 C21.535,9.364 21.554,9.364 21.574,9.364 C21.612,9.316 21.651,9.268 21.690,9.220 C21.709,9.220 21.729,9.220 21.748,9.220 C21.777,9.181 21.806,9.143 21.835,9.104 C21.855,9.104 21.874,9.104 21.893,9.104 C21.932,9.056 21.971,9.008 22.010,8.960 C22.029,8.960 22.048,8.960 22.068,8.960 C22.107,8.911 22.145,8.863 22.184,8.815 C22.204,8.815 22.223,8.815 22.242,8.815 C22.252,8.796 22.262,8.776 22.271,8.757 C22.281,8.757 22.291,8.757 22.300,8.757 C22.310,8.738 22.320,8.719 22.330,8.699 C22.349,8.699 22.368,8.699 22.388,8.699 C22.426,8.651 22.465,8.603 22.504,8.555 C22.523,8.555 22.543,8.555 22.562,8.555 C22.601,8.507 22.640,8.459 22.678,8.410 C22.698,8.410 22.717,8.410 22.737,8.410 C22.746,8.391 22.756,8.372 22.766,8.353 C22.775,8.353 22.785,8.353 22.795,8.353 C22.804,8.333 22.814,8.314 22.824,8.295 C22.843,8.295 22.863,8.295 22.882,8.295 C22.921,8.247 22.959,8.198 22.998,8.150 C23.018,8.150 23.037,8.150 23.056,8.150 C23.095,8.102 23.134,8.054 23.173,8.006 C23.192,8.006 23.211,8.006 23.231,8.006 C23.260,7.967 23.289,7.929 23.318,7.890 C23.337,7.890 23.357,7.890 23.376,7.890 C23.415,7.842 23.454,7.794 23.493,7.746 C23.512,7.746 23.531,7.746 23.551,7.746 C23.589,7.697 23.628,7.649 23.667,7.601 C23.686,7.601 23.706,7.601 23.725,7.601 C23.754,7.563 23.783,7.524 23.812,7.486 C23.832,7.486 23.851,7.486 23.870,7.486 C23.909,7.437 23.948,7.389 23.987,7.341 C24.006,7.341 24.026,7.341 24.045,7.341 C24.084,7.293 24.122,7.245 24.161,7.197 C24.181,7.197 24.200,7.197 24.219,7.197 C24.248,7.158 24.278,7.119 24.307,7.081 C24.326,7.081 24.345,7.081 24.365,7.081 C24.404,7.033 24.442,6.985 24.481,6.936 C24.500,6.936 24.520,6.936 24.539,6.936 C24.578,6.888 24.617,6.840 24.656,6.792 C24.675,6.792 24.694,6.792 24.714,6.792 C24.743,6.753 24.772,6.715 24.801,6.676 C24.820,6.676 24.840,6.676 24.859,6.676 C24.898,6.628 24.937,6.580 24.975,6.532 C24.995,6.532 25.014,6.532 25.033,6.532 C25.072,6.484 25.111,6.435 25.150,6.387 C25.169,6.387 25.189,6.387 25.208,6.387 C25.237,6.349 25.266,6.310 25.295,6.272 C25.315,6.272 25.334,6.272 25.353,6.272 C25.392,6.224 25.431,6.175 25.470,6.127 C25.489,6.127 25.508,6.127 25.528,6.127 C25.567,6.079 25.605,6.031 25.644,5.983 C26.292,5.517 26.856,4.973 27.505,4.509 C27.515,4.489 27.524,4.470 27.534,4.451 C27.563,4.432 27.592,4.412 27.621,4.393 C27.621,4.383 27.621,4.374 27.621,4.364 C27.641,4.364 27.660,4.364 27.679,4.364 C27.718,4.316 27.757,4.268 27.796,4.220 C27.815,4.220 27.834,4.220 27.854,4.220 C27.883,4.181 27.912,4.143 27.941,4.104 C27.960,4.104 27.980,4.104 27.999,4.104 C28.038,4.056 28.077,4.008 28.115,3.960 C28.135,3.960 28.154,3.960 28.174,3.960 C28.212,3.911 28.251,3.863 28.290,3.815 C28.309,3.815 28.329,3.815 28.348,3.815 C28.377,3.776 28.406,3.738 28.435,3.699 C28.455,3.699 28.474,3.699 28.493,3.699 C28.532,3.651 28.571,3.603 28.610,3.555 C28.629,3.555 28.648,3.555 28.668,3.555 C28.707,3.507 28.745,3.459 28.784,3.410 C28.804,3.410 28.823,3.410 28.842,3.410 C28.871,3.372 28.900,3.333 28.930,3.295 C28.949,3.295 28.968,3.295 28.988,3.295 C29.026,3.247 29.065,3.198 29.104,3.150 C29.123,3.150 29.143,3.150 29.162,3.150 C29.201,3.102 29.240,3.054 29.278,3.006 C29.298,3.006 29.317,3.006 29.337,3.006 C29.366,2.967 29.395,2.929 29.424,2.890 C29.443,2.890 29.463,2.890 29.482,2.890 C29.492,2.871 29.501,2.852 29.511,2.832 C29.540,2.813 29.569,2.794 29.598,2.775 C29.598,2.765 29.598,2.755 29.598,2.746 C29.618,2.746 29.637,2.746 29.656,2.746 C29.695,2.697 29.734,2.649 29.773,2.601 C30.360,2.180 30.871,1.693 31.459,1.272 C31.498,1.224 31.537,1.175 31.575,1.127 C31.595,1.127 31.614,1.127 31.633,1.127 C31.672,1.079 31.711,1.031 31.750,0.983 C31.769,0.983 31.789,0.983 31.808,0.983 C31.847,0.934 31.885,0.886 31.924,0.838 C31.944,0.838 31.963,0.838 31.982,0.838 C32.011,0.800 32.041,0.761 32.070,0.723 C32.089,0.723 32.108,0.723 32.128,0.723 C32.167,0.674 32.205,0.626 32.244,0.578 C32.263,0.578 32.283,0.578 32.302,0.578 C32.341,0.530 32.380,0.482 32.419,0.434 C32.438,0.434 32.457,0.434 32.477,0.434 C32.506,0.395 32.535,0.356 32.564,0.318 C32.583,0.318 32.603,0.318 32.622,0.318 C32.661,0.270 32.700,0.222 32.738,0.173 C32.758,0.173 32.777,0.173 32.796,0.173 C32.806,0.154 32.816,0.135 32.826,0.116 C32.870,0.074 32.932,0.048 32.971,-0.000 ZM37.710,28.584 C40.511,28.584 43.312,28.584 46.113,28.584 C46.500,28.584 46.888,28.584 47.276,28.584 C47.483,28.584 47.755,28.568 47.915,28.613 C48.255,28.613 48.594,28.613 48.933,28.613 C48.933,28.622 48.933,28.632 48.933,28.642 C49.069,28.642 49.204,28.642 49.340,28.642 C49.563,28.705 49.880,28.694 50.096,28.757 C50.164,28.757 50.232,28.757 50.300,28.757 C50.300,28.767 50.300,28.776 50.300,28.786 C50.358,28.786 50.416,28.786 50.474,28.786 C50.474,28.796 50.474,28.805 50.474,28.815 C50.522,28.815 50.571,28.815 50.619,28.815 C50.619,28.825 50.619,28.834 50.619,28.844 C50.678,28.844 50.736,28.844 50.794,28.844 C50.794,28.854 50.794,28.863 50.794,28.873 C50.842,28.873 50.891,28.873 50.939,28.873 C50.939,28.882 50.939,28.892 50.939,28.902 C50.978,28.902 51.017,28.902 51.056,28.902 C51.056,28.911 51.056,28.921 51.056,28.931 C51.104,28.931 51.152,28.931 51.201,28.931 C51.201,28.940 51.201,28.950 51.201,28.960 C51.278,28.969 51.356,28.979 51.433,28.988 C51.433,28.998 51.433,29.008 51.433,29.017 C51.511,29.027 51.589,29.037 51.666,29.046 C51.666,29.056 51.666,29.066 51.666,29.075 C51.695,29.075 51.724,29.075 51.753,29.075 C51.753,29.085 51.753,29.094 51.753,29.104 C51.821,29.114 51.889,29.123 51.957,29.133 C51.957,29.143 51.957,29.152 51.957,29.162 C51.996,29.162 52.034,29.162 52.073,29.162 C52.073,29.171 52.073,29.181 52.073,29.191 C52.102,29.191 52.131,29.191 52.160,29.191 C52.160,29.200 52.160,29.210 52.160,29.220 C52.189,29.220 52.219,29.220 52.248,29.220 C52.248,29.229 52.248,29.239 52.248,29.249 C52.277,29.249 52.306,29.249 52.335,29.249 C52.335,29.258 52.335,29.268 52.335,29.277 C52.364,29.277 52.393,29.277 52.422,29.277 C52.422,29.287 52.422,29.297 52.422,29.306 C52.451,29.306 52.480,29.306 52.509,29.306 C52.509,29.316 52.509,29.326 52.509,29.335 C52.538,29.335 52.567,29.335 52.596,29.335 C52.596,29.345 52.596,29.355 52.596,29.364 C52.655,29.374 52.713,29.383 52.771,29.393 C52.771,29.403 52.771,29.412 52.771,29.422 C52.790,29.422 52.810,29.422 52.829,29.422 C52.829,29.432 52.829,29.441 52.829,29.451 C52.858,29.451 52.887,29.451 52.916,29.451 C52.916,29.460 52.916,29.470 52.916,29.480 C52.936,29.480 52.955,29.480 52.974,29.480 C52.974,29.489 52.974,29.499 52.974,29.509 C53.004,29.509 53.033,29.509 53.062,29.509 C53.062,29.518 53.062,29.528 53.062,29.538 C53.081,29.538 53.100,29.538 53.120,29.538 C53.120,29.547 53.120,29.557 53.120,29.566 C53.149,29.566 53.178,29.566 53.207,29.566 C53.207,29.576 53.207,29.586 53.207,29.595 C53.226,29.595 53.246,29.595 53.265,29.595 C53.265,29.605 53.265,29.615 53.265,29.624 C53.294,29.624 53.323,29.624 53.352,29.624 C53.352,29.634 53.352,29.644 53.352,29.653 C53.391,29.663 53.430,29.672 53.469,29.682 C53.469,29.692 53.469,29.701 53.469,29.711 C53.498,29.711 53.527,29.711 53.556,29.711 C53.556,29.721 53.556,29.730 53.556,29.740 C53.575,29.740 53.595,29.740 53.614,29.740 C53.614,29.750 53.614,29.759 53.614,29.769 C53.653,29.778 53.692,29.788 53.730,29.798 C53.730,29.807 53.730,29.817 53.730,29.827 C53.769,29.836 53.808,29.846 53.847,29.855 C53.847,29.865 53.847,29.875 53.847,29.884 C53.866,29.884 53.885,29.884 53.905,29.884 C53.905,29.894 53.905,29.904 53.905,29.913 C53.924,29.913 53.944,29.913 53.963,29.913 C53.963,29.923 53.963,29.933 53.963,29.942 C53.982,29.942 54.002,29.942 54.021,29.942 C54.021,29.952 54.021,29.961 54.021,29.971 C54.041,29.971 54.060,29.971 54.079,29.971 C54.079,29.981 54.079,29.990 54.079,30.000 C54.099,30.000 54.118,30.000 54.137,30.000 C54.137,30.010 54.137,30.019 54.137,30.029 C54.157,30.029 54.176,30.029 54.196,30.029 C54.196,30.039 54.196,30.048 54.196,30.058 C54.215,30.058 54.234,30.058 54.254,30.058 C54.254,30.067 54.254,30.077 54.254,30.087 C54.273,30.087 54.293,30.087 54.312,30.087 C54.312,30.096 54.312,30.106 54.312,30.116 C54.331,30.116 54.351,30.116 54.370,30.116 C54.370,30.125 54.370,30.135 54.370,30.145 C54.389,30.145 54.409,30.145 54.428,30.145 C54.438,30.164 54.448,30.183 54.457,30.202 C54.515,30.222 54.574,30.241 54.632,30.260 C54.641,30.279 54.651,30.299 54.661,30.318 C54.700,30.328 54.738,30.337 54.777,30.347 C54.787,30.366 54.796,30.385 54.806,30.405 C54.826,30.405 54.845,30.405 54.864,30.405 C54.864,30.414 54.864,30.424 54.864,30.434 C54.884,30.434 54.903,30.434 54.922,30.434 C54.922,30.443 54.922,30.453 54.922,30.462 C54.952,30.472 54.981,30.482 55.010,30.491 C55.019,30.511 55.029,30.530 55.039,30.549 C55.078,30.559 55.116,30.568 55.155,30.578 C55.155,30.588 55.155,30.597 55.155,30.607 C55.184,30.617 55.213,30.626 55.242,30.636 C55.252,30.655 55.262,30.674 55.271,30.694 C55.291,30.694 55.310,30.694 55.330,30.694 C55.339,30.713 55.349,30.732 55.359,30.751 C55.378,30.751 55.397,30.751 55.417,30.751 C55.436,30.780 55.456,30.809 55.475,30.838 C55.494,30.838 55.514,30.838 55.533,30.838 C55.543,30.857 55.552,30.877 55.562,30.896 C55.581,30.896 55.601,30.896 55.620,30.896 C55.640,30.925 55.659,30.954 55.678,30.983 C55.698,30.983 55.717,30.983 55.737,30.983 C55.746,31.002 55.756,31.021 55.766,31.040 C55.785,31.040 55.804,31.040 55.824,31.040 C55.853,31.079 55.882,31.118 55.911,31.156 C55.930,31.156 55.950,31.156 55.969,31.156 C55.989,31.185 56.008,31.214 56.027,31.243 C56.047,31.243 56.066,31.243 56.085,31.243 C56.115,31.281 56.144,31.320 56.173,31.358 C56.192,31.358 56.211,31.358 56.231,31.358 C56.270,31.407 56.308,31.455 56.347,31.503 C56.367,31.503 56.386,31.503 56.405,31.503 C56.454,31.561 56.502,31.619 56.551,31.676 C56.570,31.676 56.589,31.676 56.609,31.676 C56.715,31.792 56.822,31.908 56.929,32.023 C56.948,32.023 56.967,32.023 56.987,32.023 C57.026,32.071 57.064,32.119 57.103,32.168 C57.190,32.245 57.278,32.322 57.365,32.399 C57.365,32.418 57.365,32.437 57.365,32.457 C57.471,32.553 57.578,32.649 57.685,32.746 C57.685,32.765 57.685,32.784 57.685,32.803 C57.752,32.861 57.820,32.919 57.888,32.977 C57.888,32.996 57.888,33.015 57.888,33.035 C57.937,33.073 57.985,33.112 58.033,33.150 C58.033,33.170 58.033,33.189 58.033,33.208 C58.072,33.237 58.111,33.266 58.150,33.295 C58.150,33.314 58.150,33.333 58.150,33.353 C58.189,33.382 58.227,33.410 58.266,33.439 C58.266,33.459 58.266,33.478 58.266,33.497 C58.295,33.516 58.324,33.536 58.353,33.555 C58.353,33.574 58.353,33.593 58.353,33.613 C58.382,33.632 58.411,33.651 58.441,33.671 C58.441,33.690 58.441,33.709 58.441,33.728 C58.470,33.748 58.499,33.767 58.528,33.786 C58.528,33.805 58.528,33.825 58.528,33.844 C58.547,33.854 58.567,33.863 58.586,33.873 C58.586,33.892 58.586,33.911 58.586,33.931 C58.615,33.950 58.644,33.969 58.673,33.988 C58.673,34.008 58.673,34.027 58.673,34.046 C58.693,34.056 58.712,34.066 58.731,34.075 C58.731,34.094 58.731,34.114 58.731,34.133 C58.751,34.143 58.770,34.152 58.789,34.162 C58.789,34.181 58.789,34.200 58.789,34.220 C58.809,34.229 58.828,34.239 58.848,34.249 C58.848,34.268 58.848,34.287 58.848,34.306 C58.867,34.316 58.886,34.326 58.906,34.335 C58.906,34.355 58.906,34.374 58.906,34.393 C58.925,34.403 58.944,34.412 58.964,34.422 C58.964,34.441 58.964,34.461 58.964,34.480 C58.983,34.489 59.003,34.499 59.022,34.509 C59.032,34.547 59.041,34.586 59.051,34.624 C59.070,34.634 59.090,34.644 59.109,34.653 C59.119,34.692 59.129,34.730 59.138,34.769 C59.158,34.778 59.177,34.788 59.196,34.798 C59.206,34.836 59.216,34.875 59.226,34.913 C59.245,34.923 59.264,34.933 59.284,34.942 C59.293,34.981 59.303,35.019 59.313,35.058 C59.332,35.067 59.352,35.077 59.371,35.087 C59.371,35.106 59.371,35.125 59.371,35.145 C59.381,35.145 59.390,35.145 59.400,35.145 C59.400,35.164 59.400,35.183 59.400,35.202 C59.410,35.202 59.419,35.202 59.429,35.202 C59.429,35.222 59.429,35.241 59.429,35.260 C59.439,35.260 59.448,35.260 59.458,35.260 C59.458,35.279 59.458,35.299 59.458,35.318 C59.468,35.318 59.478,35.318 59.487,35.318 C59.487,35.337 59.487,35.356 59.487,35.376 C59.507,35.385 59.526,35.395 59.545,35.405 C59.545,35.424 59.545,35.443 59.545,35.462 C59.555,35.462 59.565,35.462 59.574,35.462 C59.574,35.482 59.574,35.501 59.574,35.520 C59.584,35.520 59.594,35.520 59.604,35.520 C59.604,35.539 59.604,35.559 59.604,35.578 C59.613,35.578 59.623,35.578 59.633,35.578 C59.633,35.597 59.633,35.617 59.633,35.636 C59.642,35.636 59.652,35.636 59.662,35.636 C59.662,35.655 59.662,35.674 59.662,35.694 C59.671,35.694 59.681,35.694 59.691,35.694 C59.691,35.713 59.691,35.732 59.691,35.751 C59.700,35.751 59.710,35.751 59.720,35.751 C59.720,35.771 59.720,35.790 59.720,35.809 C59.730,35.809 59.739,35.809 59.749,35.809 C59.749,35.829 59.749,35.848 59.749,35.867 C59.759,35.867 59.768,35.867 59.778,35.867 C59.778,35.886 59.778,35.906 59.778,35.925 C59.788,35.925 59.797,35.925 59.807,35.925 C59.826,35.983 59.846,36.040 59.865,36.098 C59.875,36.098 59.885,36.098 59.894,36.098 C59.894,36.127 59.894,36.156 59.894,36.185 C59.904,36.185 59.914,36.185 59.923,36.185 C59.923,36.204 59.923,36.224 59.923,36.243 C59.933,36.243 59.943,36.243 59.952,36.243 C59.972,36.301 59.991,36.358 60.011,36.416 C60.020,36.416 60.030,36.416 60.040,36.416 C60.049,36.464 60.059,36.513 60.069,36.561 C60.078,36.561 60.088,36.561 60.098,36.561 C60.098,36.580 60.098,36.599 60.098,36.618 C60.107,36.618 60.117,36.618 60.127,36.618 C60.127,36.647 60.127,36.676 60.127,36.705 C60.137,36.705 60.146,36.705 60.156,36.705 C60.156,36.724 60.156,36.744 60.156,36.763 C60.166,36.763 60.175,36.763 60.185,36.763 C60.185,36.792 60.185,36.821 60.185,36.850 C60.195,36.850 60.204,36.850 60.214,36.850 C60.214,36.869 60.214,36.888 60.214,36.908 C60.224,36.908 60.233,36.908 60.243,36.908 C60.243,36.936 60.243,36.965 60.243,36.994 C60.253,36.994 60.263,36.994 60.272,36.994 C60.272,37.013 60.272,37.033 60.272,37.052 C60.282,37.052 60.292,37.052 60.301,37.052 C60.311,37.110 60.321,37.168 60.330,37.225 C60.340,37.225 60.350,37.225 60.359,37.225 C60.359,37.245 60.359,37.264 60.359,37.283 C60.369,37.283 60.379,37.283 60.389,37.283 C60.408,37.370 60.427,37.457 60.447,37.543 C60.456,37.543 60.466,37.543 60.476,37.543 C60.476,37.572 60.476,37.601 60.476,37.630 C60.485,37.630 60.495,37.630 60.505,37.630 C60.505,37.659 60.505,37.688 60.505,37.717 C60.515,37.717 60.524,37.717 60.534,37.717 C60.534,37.746 60.534,37.775 60.534,37.803 C60.544,37.803 60.553,37.803 60.563,37.803 C60.563,37.832 60.563,37.861 60.563,37.890 C60.573,37.890 60.582,37.890 60.592,37.890 C60.592,37.919 60.592,37.948 60.592,37.977 C60.602,37.977 60.611,37.977 60.621,37.977 C60.621,38.006 60.621,38.035 60.621,38.064 C60.631,38.064 60.641,38.064 60.650,38.064 C60.660,38.121 60.670,38.179 60.679,38.237 C60.689,38.237 60.699,38.237 60.708,38.237 C60.767,38.487 60.825,38.738 60.883,38.988 C60.963,39.223 61.010,39.526 61.086,39.769 C61.096,39.875 61.106,39.981 61.115,40.087 C61.125,40.087 61.135,40.087 61.144,40.087 C61.144,40.135 61.144,40.183 61.144,40.231 C61.154,40.231 61.164,40.231 61.174,40.231 C61.174,40.289 61.174,40.347 61.174,40.405 C61.183,40.405 61.193,40.405 61.203,40.405 C61.203,40.472 61.203,40.540 61.203,40.607 C61.212,40.607 61.222,40.607 61.232,40.607 C61.232,40.674 61.232,40.742 61.232,40.809 C61.241,40.809 61.251,40.809 61.261,40.809 C61.261,40.886 61.261,40.963 61.261,41.040 C61.270,41.040 61.280,41.040 61.290,41.040 C61.290,41.118 61.290,41.195 61.290,41.272 C61.300,41.272 61.309,41.272 61.319,41.272 C61.319,41.368 61.319,41.464 61.319,41.561 C61.329,41.561 61.338,41.561 61.348,41.561 C61.358,41.715 61.367,41.869 61.377,42.023 C61.377,42.129 61.377,42.235 61.377,42.341 C61.445,42.583 61.406,42.974 61.406,43.266 C61.406,43.728 61.406,44.191 61.406,44.653 C61.396,44.653 61.387,44.653 61.377,44.653 C61.377,44.817 61.377,44.981 61.377,45.145 C61.367,45.145 61.358,45.145 61.348,45.145 C61.348,45.260 61.348,45.376 61.348,45.491 C61.338,45.491 61.329,45.491 61.319,45.491 C61.319,45.578 61.319,45.665 61.319,45.751 C61.309,45.751 61.300,45.751 61.290,45.751 C61.290,45.829 61.290,45.906 61.290,45.983 C61.280,45.983 61.270,45.983 61.261,45.983 C61.261,46.050 61.261,46.118 61.261,46.185 C61.251,46.185 61.241,46.185 61.232,46.185 C61.232,46.252 61.232,46.320 61.232,46.387 C61.162,46.619 61.128,46.914 61.057,47.139 C61.057,47.187 61.057,47.235 61.057,47.283 C60.937,47.651 60.847,48.065 60.708,48.410 C60.708,48.439 60.708,48.468 60.708,48.497 C60.699,48.497 60.689,48.497 60.679,48.497 C60.679,48.526 60.679,48.555 60.679,48.584 C60.670,48.584 60.660,48.584 60.650,48.584 C60.650,48.613 60.650,48.642 60.650,48.671 C60.641,48.671 60.631,48.671 60.621,48.671 C60.621,48.699 60.621,48.728 60.621,48.757 C60.611,48.757 60.602,48.757 60.592,48.757 C60.592,48.776 60.592,48.796 60.592,48.815 C60.582,48.815 60.573,48.815 60.563,48.815 C60.553,48.873 60.544,48.931 60.534,48.988 C60.524,48.988 60.515,48.988 60.505,48.988 C60.505,49.008 60.505,49.027 60.505,49.046 C60.495,49.046 60.485,49.046 60.476,49.046 C60.476,49.075 60.476,49.104 60.476,49.133 C60.466,49.133 60.456,49.133 60.447,49.133 C60.437,49.181 60.427,49.229 60.418,49.277 C60.408,49.277 60.398,49.277 60.389,49.277 C60.389,49.297 60.389,49.316 60.389,49.335 C60.379,49.335 60.369,49.335 60.359,49.335 C60.359,49.364 60.359,49.393 60.359,49.422 C60.350,49.422 60.340,49.422 60.330,49.422 C60.321,49.460 60.311,49.499 60.301,49.538 C60.292,49.538 60.282,49.538 60.272,49.538 C60.272,49.566 60.272,49.595 60.272,49.624 C60.263,49.624 60.253,49.624 60.243,49.624 C60.243,49.644 60.243,49.663 60.243,49.682 C60.233,49.682 60.224,49.682 60.214,49.682 C60.204,49.721 60.195,49.759 60.185,49.798 C60.175,49.798 60.166,49.798 60.156,49.798 C60.146,49.836 60.137,49.875 60.127,49.913 C60.117,49.913 60.107,49.913 60.098,49.913 C60.098,49.933 60.098,49.952 60.098,49.971 C60.088,49.971 60.078,49.971 60.069,49.971 C60.069,49.990 60.069,50.010 60.069,50.029 C60.059,50.029 60.049,50.029 60.040,50.029 C60.040,50.048 60.040,50.067 60.040,50.087 C60.030,50.087 60.020,50.087 60.011,50.087 C60.011,50.106 60.011,50.125 60.011,50.145 C60.001,50.145 59.991,50.145 59.981,50.145 C59.981,50.164 59.981,50.183 59.981,50.202 C59.972,50.202 59.962,50.202 59.952,50.202 C59.952,50.222 59.952,50.241 59.952,50.260 C59.943,50.260 59.933,50.260 59.923,50.260 C59.923,50.279 59.923,50.299 59.923,50.318 C59.914,50.318 59.904,50.318 59.894,50.318 C59.894,50.337 59.894,50.356 59.894,50.376 C59.885,50.376 59.875,50.376 59.865,50.376 C59.865,50.395 59.865,50.414 59.865,50.434 C59.856,50.434 59.846,50.434 59.836,50.434 C59.836,50.453 59.836,50.472 59.836,50.491 C59.817,50.501 59.797,50.511 59.778,50.520 C59.759,50.578 59.739,50.636 59.720,50.694 C59.700,50.703 59.681,50.713 59.662,50.723 C59.652,50.761 59.642,50.800 59.633,50.838 C59.613,50.848 59.594,50.857 59.574,50.867 C59.574,50.886 59.574,50.906 59.574,50.925 C59.565,50.925 59.555,50.925 59.545,50.925 C59.545,50.944 59.545,50.963 59.545,50.983 C59.536,50.983 59.526,50.983 59.516,50.983 C59.507,51.012 59.497,51.040 59.487,51.069 C59.468,51.079 59.448,51.089 59.429,51.098 C59.419,51.137 59.410,51.175 59.400,51.214 C59.381,51.224 59.361,51.233 59.342,51.243 C59.342,51.262 59.342,51.281 59.342,51.301 C59.332,51.301 59.322,51.301 59.313,51.301 C59.303,51.329 59.293,51.358 59.284,51.387 C59.264,51.397 59.245,51.407 59.226,51.416 C59.226,51.435 59.226,51.455 59.226,51.474 C59.196,51.493 59.167,51.513 59.138,51.532 C59.138,51.551 59.138,51.570 59.138,51.590 C59.119,51.599 59.100,51.609 59.080,51.618 C59.080,51.638 59.080,51.657 59.080,51.676 C59.051,51.696 59.022,51.715 58.993,51.734 C58.993,51.753 58.993,51.773 58.993,51.792 C58.964,51.811 58.935,51.830 58.906,51.850 C58.906,51.869 58.906,51.888 58.906,51.908 C58.867,51.936 58.828,51.965 58.789,51.994 C58.789,52.013 58.789,52.033 58.789,52.052 C58.751,52.081 58.712,52.110 58.673,52.139 C58.673,52.158 58.673,52.177 58.673,52.197 C58.625,52.235 58.576,52.274 58.528,52.312 C58.528,52.331 58.528,52.351 58.528,52.370 C58.450,52.437 58.373,52.505 58.295,52.572 C58.295,52.592 58.295,52.611 58.295,52.630 C58.121,52.794 57.946,52.958 57.772,53.121 C57.723,53.179 57.675,53.237 57.626,53.295 C57.607,53.295 57.588,53.295 57.568,53.295 C57.510,53.362 57.452,53.430 57.394,53.497 C57.374,53.497 57.355,53.497 57.336,53.497 C57.326,53.516 57.316,53.536 57.307,53.555 C57.297,53.555 57.287,53.555 57.278,53.555 C57.258,53.584 57.239,53.613 57.219,53.642 C57.200,53.642 57.181,53.642 57.161,53.642 C57.132,53.680 57.103,53.719 57.074,53.757 C57.055,53.757 57.035,53.757 57.016,53.757 C57.006,53.776 56.996,53.796 56.987,53.815 C56.977,53.815 56.967,53.815 56.958,53.815 C56.948,53.834 56.938,53.854 56.929,53.873 C56.909,53.873 56.890,53.873 56.870,53.873 C56.851,53.902 56.832,53.931 56.812,53.960 C56.793,53.960 56.774,53.960 56.754,53.960 C56.735,53.988 56.715,54.017 56.696,54.046 C56.677,54.046 56.657,54.046 56.638,54.046 C56.628,54.066 56.619,54.085 56.609,54.104 C56.589,54.104 56.570,54.104 56.551,54.104 C56.541,54.123 56.531,54.143 56.522,54.162 C56.502,54.162 56.483,54.162 56.463,54.162 C56.454,54.181 56.444,54.200 56.434,54.220 C56.415,54.220 56.396,54.220 56.376,54.220 C56.376,54.229 56.376,54.239 56.376,54.249 C56.347,54.258 56.318,54.268 56.289,54.277 C56.279,54.297 56.270,54.316 56.260,54.335 C56.241,54.335 56.221,54.335 56.202,54.335 C56.192,54.355 56.182,54.374 56.173,54.393 C56.144,54.403 56.115,54.412 56.085,54.422 C56.085,54.432 56.085,54.441 56.085,54.451 C56.047,54.460 56.008,54.470 55.969,54.480 C55.959,54.499 55.950,54.518 55.940,54.538 C55.901,54.547 55.863,54.557 55.824,54.566 C55.814,54.586 55.804,54.605 55.795,54.624 C55.697,54.686 55.599,54.669 55.533,54.769 C55.523,54.769 55.514,54.769 55.504,54.769 C55.504,54.778 55.504,54.788 55.504,54.798 C55.514,54.798 55.523,54.798 55.533,54.798 C55.583,54.858 55.641,54.867 55.707,54.913 C55.727,54.942 55.746,54.971 55.766,55.000 C55.785,55.000 55.804,55.000 55.824,55.000 C55.843,55.029 55.863,55.058 55.882,55.087 C55.901,55.087 55.921,55.087 55.940,55.087 C55.969,55.125 55.998,55.164 56.027,55.202 C56.047,55.202 56.066,55.202 56.085,55.202 C56.115,55.241 56.144,55.279 56.173,55.318 C56.192,55.318 56.211,55.318 56.231,55.318 C56.270,55.366 56.308,55.414 56.347,55.462 C56.367,55.462 56.386,55.462 56.405,55.462 C56.444,55.511 56.483,55.559 56.522,55.607 C56.541,55.607 56.560,55.607 56.580,55.607 C56.638,55.674 56.696,55.742 56.754,55.809 C56.774,55.809 56.793,55.809 56.812,55.809 C56.890,55.896 56.967,55.983 57.045,56.069 C57.064,56.069 57.084,56.069 57.103,56.069 C57.219,56.195 57.336,56.320 57.452,56.445 C57.736,56.727 58.027,56.983 58.266,57.312 C58.334,57.370 58.402,57.428 58.470,57.486 C58.470,57.505 58.470,57.524 58.470,57.543 C58.518,57.582 58.567,57.620 58.615,57.659 C58.615,57.678 58.615,57.697 58.615,57.717 C58.663,57.755 58.712,57.794 58.760,57.832 C58.760,57.852 58.760,57.871 58.760,57.890 C58.789,57.909 58.819,57.929 58.848,57.948 C58.848,57.967 58.848,57.987 58.848,58.006 C58.886,58.035 58.925,58.064 58.964,58.092 C58.964,58.112 58.964,58.131 58.964,58.150 C58.993,58.170 59.022,58.189 59.051,58.208 C59.051,58.227 59.051,58.247 59.051,58.266 C59.080,58.285 59.109,58.304 59.138,58.324 C59.138,58.343 59.138,58.362 59.138,58.382 C59.167,58.401 59.196,58.420 59.226,58.439 C59.226,58.459 59.226,58.478 59.226,58.497 C59.245,58.507 59.264,58.516 59.284,58.526 C59.284,58.545 59.284,58.565 59.284,58.584 C59.313,58.603 59.342,58.622 59.371,58.642 C59.371,58.661 59.371,58.680 59.371,58.699 C59.390,58.709 59.410,58.719 59.429,58.728 C59.439,58.757 59.448,58.786 59.458,58.815 C59.468,58.815 59.478,58.815 59.487,58.815 C59.487,58.834 59.487,58.854 59.487,58.873 C59.507,58.882 59.526,58.892 59.545,58.902 C59.545,58.921 59.545,58.940 59.545,58.960 C59.565,58.969 59.584,58.979 59.604,58.988 C59.604,59.008 59.604,59.027 59.604,59.046 C59.623,59.056 59.642,59.066 59.662,59.075 C59.662,59.094 59.662,59.114 59.662,59.133 C59.681,59.143 59.700,59.152 59.720,59.162 C59.720,59.181 59.720,59.200 59.720,59.220 C59.739,59.229 59.759,59.239 59.778,59.249 C59.778,59.268 59.778,59.287 59.778,59.306 C59.797,59.316 59.817,59.326 59.836,59.335 C59.836,59.355 59.836,59.374 59.836,59.393 C59.846,59.393 59.856,59.393 59.865,59.393 C59.865,59.412 59.865,59.432 59.865,59.451 C59.885,59.460 59.904,59.470 59.923,59.480 C59.933,59.518 59.943,59.557 59.952,59.595 C59.972,59.605 59.991,59.615 60.011,59.624 C60.020,59.663 60.030,59.701 60.040,59.740 C60.059,59.750 60.078,59.759 60.098,59.769 C60.117,59.827 60.137,59.884 60.156,59.942 C60.175,59.952 60.195,59.961 60.214,59.971 C60.214,59.990 60.214,60.010 60.214,60.029 C60.224,60.029 60.233,60.029 60.243,60.029 C60.243,60.048 60.243,60.067 60.243,60.087 C60.253,60.087 60.263,60.087 60.272,60.087 C60.272,60.106 60.272,60.125 60.272,60.145 C60.282,60.145 60.292,60.145 60.301,60.145 C60.301,60.164 60.301,60.183 60.301,60.202 C60.311,60.202 60.321,60.202 60.330,60.202 C60.330,60.222 60.330,60.241 60.330,60.260 C60.350,60.270 60.369,60.279 60.389,60.289 C60.408,60.347 60.427,60.405 60.447,60.462 C60.456,60.462 60.466,60.462 60.476,60.462 C60.476,60.482 60.476,60.501 60.476,60.520 C60.485,60.520 60.495,60.520 60.505,60.520 C60.505,60.539 60.505,60.559 60.505,60.578 C60.515,60.578 60.524,60.578 60.534,60.578 C60.553,60.636 60.573,60.694 60.592,60.751 C60.602,60.751 60.611,60.751 60.621,60.751 C60.621,60.780 60.621,60.809 60.621,60.838 C60.631,60.838 60.641,60.838 60.650,60.838 C60.650,60.857 60.650,60.877 60.650,60.896 C60.660,60.896 60.670,60.896 60.679,60.896 C60.679,60.915 60.679,60.934 60.679,60.954 C60.689,60.954 60.699,60.954 60.708,60.954 C60.728,61.012 60.747,61.069 60.767,61.127 C60.776,61.127 60.786,61.127 60.796,61.127 C60.796,61.156 60.796,61.185 60.796,61.214 C60.805,61.214 60.815,61.214 60.825,61.214 C60.834,61.252 60.844,61.291 60.854,61.329 C60.863,61.329 60.873,61.329 60.883,61.329 C60.883,61.358 60.883,61.387 60.883,61.416 C60.893,61.416 60.902,61.416 60.912,61.416 C60.912,61.435 60.912,61.455 60.912,61.474 C60.922,61.474 60.931,61.474 60.941,61.474 C60.941,61.503 60.941,61.532 60.941,61.561 C60.951,61.561 60.960,61.561 60.970,61.561 C60.980,61.599 60.989,61.638 60.999,61.676 C61.009,61.676 61.019,61.676 61.028,61.676 C61.038,61.734 61.048,61.792 61.057,61.850 C61.067,61.850 61.077,61.850 61.086,61.850 C61.086,61.869 61.086,61.888 61.086,61.908 C61.096,61.908 61.106,61.908 61.115,61.908 C61.135,61.994 61.154,62.081 61.174,62.168 C61.183,62.168 61.193,62.168 61.203,62.168 C61.203,62.187 61.203,62.206 61.203,62.225 C61.212,62.225 61.222,62.225 61.232,62.225 C61.241,62.283 61.251,62.341 61.261,62.399 C61.270,62.399 61.280,62.399 61.290,62.399 C61.290,62.428 61.290,62.457 61.290,62.486 C61.300,62.486 61.309,62.486 61.319,62.486 C61.319,62.514 61.319,62.543 61.319,62.572 C61.329,62.572 61.338,62.572 61.348,62.572 C61.367,62.669 61.387,62.765 61.406,62.861 C61.416,62.861 61.426,62.861 61.435,62.861 C61.435,62.900 61.435,62.938 61.435,62.977 C61.445,62.977 61.455,62.977 61.464,62.977 C61.464,63.006 61.464,63.035 61.464,63.064 C61.474,63.064 61.484,63.064 61.493,63.064 C61.493,63.102 61.493,63.141 61.493,63.179 C61.503,63.179 61.513,63.179 61.522,63.179 C61.522,63.218 61.522,63.256 61.522,63.295 C61.532,63.295 61.542,63.295 61.552,63.295 C61.552,63.333 61.552,63.372 61.552,63.410 C61.561,63.410 61.571,63.410 61.581,63.410 C61.581,63.449 61.581,63.487 61.581,63.526 C61.590,63.526 61.600,63.526 61.610,63.526 C61.619,63.603 61.629,63.680 61.639,63.757 C61.648,63.757 61.658,63.757 61.668,63.757 C61.678,63.854 61.687,63.950 61.697,64.046 C61.775,64.295 61.796,64.624 61.871,64.884 C61.871,64.961 61.871,65.039 61.871,65.116 C61.881,65.116 61.891,65.116 61.900,65.116 C61.900,65.202 61.900,65.289 61.900,65.376 C61.910,65.376 61.920,65.376 61.930,65.376 C61.939,65.645 61.949,65.915 61.959,66.185 C62.017,66.396 62.018,67.188 61.959,67.399 C61.959,67.563 61.959,67.726 61.959,67.890 C61.949,67.890 61.939,67.890 61.930,67.890 C61.930,68.006 61.930,68.121 61.930,68.237 C61.819,68.619 61.867,69.135 61.755,69.509 C61.755,69.566 61.755,69.624 61.755,69.682 C61.745,69.682 61.736,69.682 61.726,69.682 C61.716,69.788 61.707,69.894 61.697,70.000 C61.687,70.000 61.678,70.000 61.668,70.000 C61.668,70.048 61.668,70.096 61.668,70.145 C61.658,70.145 61.648,70.145 61.639,70.145 C61.629,70.231 61.619,70.318 61.610,70.405 C61.600,70.405 61.590,70.405 61.581,70.405 C61.581,70.443 61.581,70.482 61.581,70.520 C61.571,70.520 61.561,70.520 61.552,70.520 C61.552,70.559 61.552,70.597 61.552,70.636 C61.542,70.636 61.532,70.636 61.522,70.636 C61.513,70.713 61.503,70.790 61.493,70.867 C61.484,70.867 61.474,70.867 61.464,70.867 C61.455,70.934 61.445,71.002 61.435,71.069 C61.426,71.069 61.416,71.069 61.406,71.069 C61.396,71.137 61.387,71.204 61.377,71.272 C61.367,71.272 61.358,71.272 61.348,71.272 C61.348,71.301 61.348,71.329 61.348,71.358 C61.338,71.358 61.329,71.358 61.319,71.358 C61.319,71.387 61.319,71.416 61.319,71.445 C61.309,71.445 61.300,71.445 61.290,71.445 C61.290,71.474 61.290,71.503 61.290,71.532 C61.280,71.532 61.270,71.532 61.261,71.532 C61.261,71.561 61.261,71.590 61.261,71.618 C61.251,71.618 61.241,71.618 61.232,71.618 C61.212,71.705 61.193,71.792 61.174,71.879 C61.164,71.879 61.154,71.879 61.144,71.879 C61.144,71.898 61.144,71.917 61.144,71.936 C61.135,71.936 61.125,71.936 61.115,71.936 C61.106,71.994 61.096,72.052 61.086,72.110 C61.077,72.110 61.067,72.110 61.057,72.110 C61.057,72.129 61.057,72.148 61.057,72.168 C61.048,72.168 61.038,72.168 61.028,72.168 C61.028,72.197 61.028,72.225 61.028,72.254 C61.019,72.254 61.009,72.254 60.999,72.254 C60.999,72.274 60.999,72.293 60.999,72.312 C60.989,72.312 60.980,72.312 60.970,72.312 C60.970,72.341 60.970,72.370 60.970,72.399 C60.960,72.399 60.951,72.399 60.941,72.399 C60.941,72.418 60.941,72.437 60.941,72.457 C60.931,72.457 60.922,72.457 60.912,72.457 C60.912,72.486 60.912,72.514 60.912,72.543 C60.902,72.543 60.893,72.543 60.883,72.543 C60.873,72.582 60.863,72.620 60.854,72.659 C60.844,72.659 60.834,72.659 60.825,72.659 C60.825,72.688 60.825,72.717 60.825,72.746 C60.815,72.746 60.805,72.746 60.796,72.746 C60.776,72.803 60.757,72.861 60.737,72.919 C60.728,72.919 60.718,72.919 60.708,72.919 C60.708,72.938 60.708,72.958 60.708,72.977 C60.699,72.977 60.689,72.977 60.679,72.977 C60.679,72.996 60.679,73.015 60.679,73.035 C60.670,73.035 60.660,73.035 60.650,73.035 C60.650,73.054 60.650,73.073 60.650,73.092 C60.641,73.092 60.631,73.092 60.621,73.092 C60.621,73.112 60.621,73.131 60.621,73.150 C60.611,73.150 60.602,73.150 60.592,73.150 C60.524,73.304 60.456,73.459 60.389,73.613 C60.369,73.622 60.350,73.632 60.330,73.642 C60.311,73.699 60.292,73.757 60.272,73.815 C60.253,73.825 60.233,73.834 60.214,73.844 C60.195,73.902 60.175,73.960 60.156,74.017 C60.137,74.027 60.117,74.037 60.098,74.046 C60.098,74.066 60.098,74.085 60.098,74.104 C60.078,74.114 60.059,74.123 60.040,74.133 C60.030,74.171 60.020,74.210 60.011,74.249 C59.991,74.258 59.972,74.268 59.952,74.277 C59.952,74.297 59.952,74.316 59.952,74.335 C59.933,74.345 59.914,74.355 59.894,74.364 C59.894,74.383 59.894,74.403 59.894,74.422 C59.875,74.432 59.856,74.441 59.836,74.451 C59.836,74.470 59.836,74.489 59.836,74.509 C59.826,74.509 59.817,74.509 59.807,74.509 C59.797,74.538 59.788,74.566 59.778,74.595 C59.759,74.605 59.739,74.615 59.720,74.624 C59.720,74.644 59.720,74.663 59.720,74.682 C59.700,74.692 59.681,74.701 59.662,74.711 C59.662,74.730 59.662,74.750 59.662,74.769 C59.633,74.788 59.604,74.807 59.574,74.827 C59.574,74.846 59.574,74.865 59.574,74.884 C59.545,74.904 59.516,74.923 59.487,74.942 C59.487,74.961 59.487,74.981 59.487,75.000 C59.458,75.019 59.429,75.039 59.400,75.058 C59.400,75.077 59.400,75.096 59.400,75.116 C59.371,75.135 59.342,75.154 59.313,75.173 C59.313,75.193 59.313,75.212 59.313,75.231 C59.274,75.260 59.235,75.289 59.196,75.318 C59.196,75.337 59.196,75.356 59.196,75.376 C59.148,75.414 59.100,75.453 59.051,75.491 C59.051,75.511 59.051,75.530 59.051,75.549 C58.993,75.597 58.935,75.645 58.877,75.694 C58.877,75.713 58.877,75.732 58.877,75.751 C58.789,75.829 58.702,75.906 58.615,75.983 C58.615,76.002 58.615,76.021 58.615,76.040 C58.518,76.127 58.421,76.214 58.324,76.301 C58.237,76.397 58.150,76.493 58.063,76.590 C58.043,76.590 58.024,76.590 58.004,76.590 C57.917,76.686 57.830,76.782 57.743,76.879 C57.723,76.879 57.704,76.879 57.685,76.879 C57.675,76.898 57.665,76.917 57.656,76.936 C57.646,76.936 57.636,76.936 57.626,76.936 C57.597,76.975 57.568,77.013 57.539,77.052 C57.520,77.052 57.500,77.052 57.481,77.052 C57.452,77.091 57.423,77.129 57.394,77.168 C57.374,77.168 57.355,77.168 57.336,77.168 C57.307,77.206 57.278,77.245 57.248,77.283 C57.229,77.283 57.210,77.283 57.190,77.283 C57.161,77.322 57.132,77.360 57.103,77.399 C57.084,77.399 57.064,77.399 57.045,77.399 C57.026,77.428 57.006,77.457 56.987,77.486 C56.967,77.486 56.948,77.486 56.929,77.486 C56.909,77.514 56.890,77.543 56.870,77.572 C56.851,77.572 56.832,77.572 56.812,77.572 C56.803,77.592 56.793,77.611 56.783,77.630 C56.764,77.630 56.744,77.630 56.725,77.630 C56.706,77.659 56.686,77.688 56.667,77.717 C56.648,77.717 56.628,77.717 56.609,77.717 C56.599,77.736 56.589,77.755 56.580,77.775 C56.560,77.775 56.541,77.775 56.522,77.775 C56.512,77.794 56.502,77.813 56.493,77.832 C56.473,77.832 56.454,77.832 56.434,77.832 C56.425,77.852 56.415,77.871 56.405,77.890 C56.386,77.890 56.367,77.890 56.347,77.890 C56.337,77.909 56.328,77.929 56.318,77.948 C56.299,77.948 56.279,77.948 56.260,77.948 C56.250,77.967 56.241,77.987 56.231,78.006 C56.192,78.015 56.153,78.025 56.115,78.035 C56.115,78.044 56.115,78.054 56.115,78.064 C56.085,78.073 56.056,78.083 56.027,78.092 C56.018,78.112 56.008,78.131 55.998,78.150 C55.959,78.160 55.921,78.170 55.882,78.179 C55.872,78.198 55.863,78.218 55.853,78.237 C55.795,78.256 55.737,78.276 55.678,78.295 C55.669,78.314 55.659,78.333 55.649,78.353 C55.630,78.353 55.611,78.353 55.591,78.353 C55.591,78.362 55.591,78.372 55.591,78.382 C55.572,78.382 55.552,78.382 55.533,78.382 C55.533,78.391 55.533,78.401 55.533,78.410 C55.514,78.410 55.494,78.410 55.475,78.410 C55.475,78.420 55.475,78.430 55.475,78.439 C55.456,78.439 55.436,78.439 55.417,78.439 C55.407,78.459 55.397,78.478 55.388,78.497 C55.368,78.497 55.349,78.497 55.330,78.497 C55.330,78.507 55.330,78.516 55.330,78.526 C55.310,78.526 55.291,78.526 55.271,78.526 C55.271,78.536 55.271,78.545 55.271,78.555 C55.252,78.555 55.233,78.555 55.213,78.555 C55.213,78.565 55.213,78.574 55.213,78.584 C55.194,78.584 55.174,78.584 55.155,78.584 C55.155,78.593 55.155,78.603 55.155,78.613 C55.136,78.613 55.116,78.613 55.097,78.613 C55.097,78.622 55.097,78.632 55.097,78.642 C55.078,78.642 55.058,78.642 55.039,78.642 C55.039,78.651 55.039,78.661 55.039,78.671 C55.019,78.671 54.1000,78.671 54.981,78.671 C54.981,78.680 54.981,78.690 54.981,78.699 C54.922,78.719 54.864,78.738 54.806,78.757 C54.806,78.767 54.806,78.776 54.806,78.786 C54.777,78.786 54.748,78.786 54.719,78.786 C54.719,78.796 54.719,78.805 54.719,78.815 C54.700,78.815 54.680,78.815 54.661,78.815 C54.661,78.825 54.661,78.834 54.661,78.844 C54.603,78.863 54.544,78.882 54.486,78.902 C54.486,78.911 54.486,78.921 54.486,78.931 C54.457,78.931 54.428,78.931 54.399,78.931 C54.399,78.940 54.399,78.950 54.399,78.960 C54.360,78.969 54.322,78.979 54.283,78.988 C54.283,78.998 54.283,79.008 54.283,79.017 C54.254,79.017 54.225,79.017 54.196,79.017 C54.196,79.027 54.196,79.037 54.196,79.046 C54.176,79.046 54.157,79.046 54.137,79.046 C54.137,79.056 54.137,79.066 54.137,79.075 C54.089,79.085 54.041,79.094 53.992,79.104 C53.992,79.114 53.992,79.123 53.992,79.133 C53.934,79.143 53.876,79.152 53.818,79.162 C53.818,79.171 53.818,79.181 53.818,79.191 C53.798,79.191 53.779,79.191 53.759,79.191 C53.759,79.200 53.759,79.210 53.759,79.220 C53.672,79.239 53.585,79.258 53.498,79.277 C53.498,79.287 53.498,79.297 53.498,79.306 C53.469,79.306 53.440,79.306 53.411,79.306 C53.411,79.316 53.411,79.326 53.411,79.335 C53.382,79.335 53.352,79.335 53.323,79.335 C53.323,79.345 53.323,79.355 53.323,79.364 C53.294,79.364 53.265,79.364 53.236,79.364 C53.236,79.374 53.236,79.383 53.236,79.393 C53.207,79.393 53.178,79.393 53.149,79.393 C53.149,79.403 53.149,79.412 53.149,79.422 C53.120,79.422 53.091,79.422 53.062,79.422 C53.062,79.432 53.062,79.441 53.062,79.451 C52.994,79.461 52.926,79.470 52.858,79.480 C52.858,79.489 52.858,79.499 52.858,79.509 C52.752,79.528 52.645,79.547 52.538,79.566 C52.538,79.576 52.538,79.586 52.538,79.595 C52.451,79.605 52.364,79.615 52.277,79.624 C52.277,79.634 52.277,79.644 52.277,79.653 C52.238,79.653 52.199,79.653 52.160,79.653 C52.160,79.663 52.160,79.672 52.160,79.682 C52.122,79.682 52.083,79.682 52.044,79.682 C52.044,79.692 52.044,79.701 52.044,79.711 C51.996,79.711 51.947,79.711 51.899,79.711 C51.899,79.721 51.899,79.730 51.899,79.740 C51.850,79.740 51.802,79.740 51.753,79.740 C51.753,79.750 51.753,79.759 51.753,79.769 C51.695,79.769 51.637,79.769 51.579,79.769 C51.347,79.837 51.033,79.845 50.794,79.913 C50.697,79.913 50.600,79.913 50.503,79.913 C50.503,79.923 50.503,79.933 50.503,79.942 C50.106,79.952 49.708,79.961 49.311,79.971 C48.594,79.971 47.877,79.971 47.159,79.971 C44.010,79.971 40.860,79.971 37.710,79.971 C37.710,78.815 37.710,77.659 37.710,76.503 C40.152,76.503 42.595,76.503 45.037,76.503 C45.198,76.547 45.469,76.532 45.677,76.532 C46.055,76.532 46.433,76.532 46.811,76.532 C47.324,76.532 47.838,76.532 48.352,76.532 C48.610,76.532 48.956,76.562 49.166,76.503 C49.476,76.503 49.786,76.503 50.096,76.503 C50.096,76.493 50.096,76.484 50.096,76.474 C50.203,76.474 50.309,76.474 50.416,76.474 C50.416,76.464 50.416,76.455 50.416,76.445 C50.493,76.445 50.571,76.445 50.648,76.445 C50.648,76.435 50.648,76.426 50.648,76.416 C50.765,76.407 50.881,76.397 50.997,76.387 C50.997,76.378 50.997,76.368 50.997,76.358 C51.056,76.358 51.114,76.358 51.172,76.358 C51.324,76.312 51.521,76.263 51.666,76.214 C51.705,76.214 51.744,76.214 51.782,76.214 C51.782,76.204 51.782,76.195 51.782,76.185 C51.821,76.185 51.860,76.185 51.899,76.185 C51.899,76.175 51.899,76.166 51.899,76.156 C51.928,76.156 51.957,76.156 51.986,76.156 C51.986,76.146 51.986,76.137 51.986,76.127 C52.025,76.127 52.063,76.127 52.102,76.127 C52.102,76.118 52.102,76.108 52.102,76.098 C52.131,76.098 52.160,76.098 52.189,76.098 C52.189,76.089 52.189,76.079 52.189,76.069 C52.218,76.069 52.248,76.069 52.277,76.069 C52.277,76.060 52.277,76.050 52.277,76.040 C52.306,76.040 52.335,76.040 52.364,76.040 C52.364,76.031 52.364,76.021 52.364,76.012 C52.422,76.002 52.480,75.992 52.538,75.983 C52.538,75.973 52.538,75.963 52.538,75.954 C52.558,75.954 52.577,75.954 52.596,75.954 C52.596,75.944 52.596,75.934 52.596,75.925 C52.655,75.915 52.713,75.906 52.771,75.896 C52.771,75.886 52.771,75.877 52.771,75.867 C52.790,75.867 52.810,75.867 52.829,75.867 C52.829,75.857 52.829,75.848 52.829,75.838 C52.858,75.838 52.887,75.838 52.916,75.838 C52.916,75.829 52.916,75.819 52.916,75.809 C52.955,75.800 52.994,75.790 53.033,75.780 C53.033,75.771 53.033,75.761 53.033,75.751 C53.062,75.751 53.091,75.751 53.120,75.751 C53.120,75.742 53.120,75.732 53.120,75.723 C53.139,75.723 53.159,75.723 53.178,75.723 C53.178,75.713 53.178,75.703 53.178,75.694 C53.217,75.684 53.256,75.674 53.294,75.665 C53.294,75.655 53.294,75.645 53.294,75.636 C53.314,75.636 53.333,75.636 53.352,75.636 C53.352,75.626 53.352,75.617 53.352,75.607 C53.372,75.607 53.391,75.607 53.411,75.607 C53.411,75.597 53.411,75.588 53.411,75.578 C53.430,75.578 53.449,75.578 53.469,75.578 C53.469,75.568 53.469,75.559 53.469,75.549 C53.488,75.549 53.507,75.549 53.527,75.549 C53.527,75.540 53.527,75.530 53.527,75.520 C53.546,75.520 53.566,75.520 53.585,75.520 C53.585,75.511 53.585,75.501 53.585,75.491 C53.604,75.491 53.624,75.491 53.643,75.491 C53.643,75.482 53.643,75.472 53.643,75.462 C53.663,75.462 53.682,75.462 53.701,75.462 C53.701,75.453 53.701,75.443 53.701,75.434 C53.721,75.434 53.740,75.434 53.759,75.434 C53.759,75.424 53.759,75.414 53.759,75.405 C53.779,75.405 53.798,75.405 53.818,75.405 C53.818,75.395 53.818,75.385 53.818,75.376 C53.837,75.376 53.856,75.376 53.876,75.376 C53.876,75.366 53.876,75.356 53.876,75.347 C53.895,75.347 53.915,75.347 53.934,75.347 C53.944,75.328 53.953,75.308 53.963,75.289 C54.002,75.279 54.041,75.270 54.079,75.260 C54.089,75.241 54.099,75.222 54.108,75.202 C54.147,75.193 54.186,75.183 54.225,75.173 C54.234,75.154 54.244,75.135 54.254,75.116 C54.293,75.106 54.331,75.096 54.370,75.087 C54.370,75.077 54.370,75.067 54.370,75.058 C54.399,75.048 54.428,75.039 54.457,75.029 C54.467,75.010 54.477,74.990 54.486,74.971 C54.506,74.971 54.525,74.971 54.544,74.971 C54.554,74.952 54.564,74.933 54.574,74.913 C54.593,74.913 54.612,74.913 54.632,74.913 C54.651,74.884 54.670,74.855 54.690,74.827 C54.709,74.827 54.729,74.827 54.748,74.827 C54.758,74.807 54.767,74.788 54.777,74.769 C54.796,74.769 54.816,74.769 54.835,74.769 C54.845,74.750 54.855,74.730 54.864,74.711 C54.893,74.701 54.922,74.692 54.952,74.682 C54.971,74.653 54.990,74.624 55.010,74.595 C55.029,74.595 55.048,74.595 55.068,74.595 C55.097,74.557 55.126,74.518 55.155,74.480 C55.174,74.480 55.194,74.480 55.213,74.480 C55.262,74.422 55.310,74.364 55.359,74.306 C55.378,74.306 55.397,74.306 55.417,74.306 C55.485,74.229 55.552,74.152 55.620,74.075 C55.640,74.075 55.659,74.075 55.678,74.075 C55.717,74.027 55.756,73.979 55.795,73.931 C55.882,73.854 55.969,73.776 56.056,73.699 C56.056,73.680 56.056,73.661 56.056,73.642 C56.144,73.565 56.231,73.487 56.318,73.410 C56.318,73.391 56.318,73.372 56.318,73.353 C56.367,73.314 56.415,73.276 56.463,73.237 C56.463,73.218 56.463,73.198 56.463,73.179 C56.502,73.150 56.541,73.121 56.580,73.092 C56.580,73.073 56.580,73.054 56.580,73.035 C56.609,73.015 56.638,72.996 56.667,72.977 C56.667,72.958 56.667,72.938 56.667,72.919 C56.696,72.900 56.725,72.881 56.754,72.861 C56.754,72.842 56.754,72.823 56.754,72.803 C56.774,72.794 56.793,72.784 56.812,72.775 C56.812,72.755 56.812,72.736 56.812,72.717 C56.841,72.697 56.870,72.678 56.900,72.659 C56.900,72.640 56.900,72.620 56.900,72.601 C56.919,72.592 56.938,72.582 56.958,72.572 C56.958,72.553 56.958,72.534 56.958,72.514 C56.977,72.505 56.996,72.495 57.016,72.486 C57.026,72.447 57.035,72.408 57.045,72.370 C57.055,72.370 57.064,72.370 57.074,72.370 C57.084,72.341 57.093,72.312 57.103,72.283 C57.122,72.274 57.142,72.264 57.161,72.254 C57.161,72.235 57.161,72.216 57.161,72.197 C57.171,72.197 57.181,72.197 57.190,72.197 C57.190,72.177 57.190,72.158 57.190,72.139 C57.210,72.129 57.229,72.119 57.248,72.110 C57.248,72.091 57.248,72.071 57.248,72.052 C57.258,72.052 57.268,72.052 57.278,72.052 C57.278,72.033 57.278,72.013 57.278,71.994 C57.287,71.994 57.297,71.994 57.307,71.994 C57.307,71.975 57.307,71.956 57.307,71.936 C57.316,71.936 57.326,71.936 57.336,71.936 C57.336,71.917 57.336,71.898 57.336,71.879 C57.355,71.869 57.374,71.859 57.394,71.850 C57.413,71.792 57.433,71.734 57.452,71.676 C57.462,71.676 57.471,71.676 57.481,71.676 C57.481,71.657 57.481,71.638 57.481,71.618 C57.491,71.618 57.500,71.618 57.510,71.618 C57.530,71.561 57.549,71.503 57.568,71.445 C57.578,71.445 57.588,71.445 57.597,71.445 C57.597,71.416 57.597,71.387 57.597,71.358 C57.607,71.358 57.617,71.358 57.626,71.358 C57.626,71.339 57.626,71.320 57.626,71.301 C57.636,71.301 57.646,71.301 57.656,71.301 C57.665,71.262 57.675,71.224 57.685,71.185 C57.694,71.185 57.704,71.185 57.714,71.185 C57.714,71.156 57.714,71.127 57.714,71.098 C57.723,71.098 57.733,71.098 57.743,71.098 C57.743,71.079 57.743,71.060 57.743,71.040 C57.752,71.040 57.762,71.040 57.772,71.040 C57.772,71.012 57.772,70.983 57.772,70.954 C57.781,70.954 57.791,70.954 57.801,70.954 C57.801,70.934 57.801,70.915 57.801,70.896 C57.811,70.896 57.820,70.896 57.830,70.896 C57.927,70.607 58.024,70.318 58.121,70.029 C58.121,69.990 58.121,69.952 58.121,69.913 C58.130,69.913 58.140,69.913 58.150,69.913 C58.150,69.875 58.150,69.836 58.150,69.798 C58.159,69.798 58.169,69.798 58.179,69.798 C58.179,69.759 58.179,69.721 58.179,69.682 C58.189,69.682 58.198,69.682 58.208,69.682 C58.208,69.644 58.208,69.605 58.208,69.566 C58.218,69.566 58.227,69.566 58.237,69.566 C58.237,69.518 58.237,69.470 58.237,69.422 C58.247,69.422 58.256,69.422 58.266,69.422 C58.266,69.374 58.266,69.326 58.266,69.277 C58.276,69.277 58.285,69.277 58.295,69.277 C58.295,69.220 58.295,69.162 58.295,69.104 C58.305,69.104 58.315,69.104 58.324,69.104 C58.324,69.046 58.324,68.988 58.324,68.931 C58.334,68.931 58.344,68.931 58.353,68.931 C58.353,68.863 58.353,68.796 58.353,68.728 C58.363,68.728 58.373,68.728 58.382,68.728 C58.382,68.642 58.382,68.555 58.382,68.468 C58.392,68.468 58.402,68.468 58.411,68.468 C58.411,68.353 58.411,68.237 58.411,68.121 C58.421,68.121 58.431,68.121 58.441,68.121 C58.441,68.035 58.441,67.948 58.441,67.861 C58.450,67.861 58.460,67.861 58.470,67.861 C58.479,67.553 58.489,67.245 58.499,66.936 C58.499,66.356 58.516,65.689 58.382,65.231 C58.373,65.116 58.363,64.1000 58.353,64.884 C58.256,64.480 58.159,64.075 58.063,63.671 C57.798,62.943 57.517,62.226 57.132,61.618 C57.113,61.561 57.093,61.503 57.074,61.445 C57.055,61.435 57.035,61.426 57.016,61.416 C57.016,61.397 57.016,61.378 57.016,61.358 C57.006,61.358 56.996,61.358 56.987,61.358 C56.987,61.339 56.987,61.320 56.987,61.301 C56.967,61.291 56.948,61.281 56.929,61.272 C56.919,61.233 56.909,61.195 56.900,61.156 C56.890,61.156 56.880,61.156 56.870,61.156 C56.861,61.127 56.851,61.098 56.841,61.069 C56.822,61.060 56.803,61.050 56.783,61.040 C56.783,61.021 56.783,61.002 56.783,60.983 C56.764,60.973 56.744,60.963 56.725,60.954 C56.725,60.934 56.725,60.915 56.725,60.896 C56.706,60.886 56.686,60.877 56.667,60.867 C56.667,60.848 56.667,60.829 56.667,60.809 C56.657,60.809 56.648,60.809 56.638,60.809 C56.628,60.780 56.619,60.751 56.609,60.723 C56.589,60.713 56.570,60.703 56.551,60.694 C56.551,60.674 56.551,60.655 56.551,60.636 C56.531,60.626 56.512,60.617 56.493,60.607 C56.483,60.578 56.473,60.549 56.463,60.520 C56.434,60.501 56.405,60.482 56.376,60.462 C56.376,60.443 56.376,60.424 56.376,60.405 C56.347,60.385 56.318,60.366 56.289,60.347 C56.289,60.328 56.289,60.308 56.289,60.289 C56.260,60.270 56.231,60.250 56.202,60.231 C56.202,60.212 56.202,60.193 56.202,60.173 C56.182,60.164 56.163,60.154 56.144,60.145 C56.144,60.135 56.144,60.125 56.144,60.116 C56.124,60.106 56.105,60.096 56.085,60.087 C56.085,60.067 56.085,60.048 56.085,60.029 C56.047,60.000 56.008,59.971 55.969,59.942 C55.969,59.923 55.969,59.904 55.969,59.884 C55.940,59.865 55.911,59.846 55.882,59.827 C55.863,59.798 55.843,59.769 55.824,59.740 C55.814,59.740 55.804,59.740 55.795,59.740 C55.795,59.721 55.795,59.701 55.795,59.682 C55.717,59.615 55.640,59.547 55.562,59.480 C55.562,59.461 55.562,59.441 55.562,59.422 C55.456,59.326 55.349,59.229 55.242,59.133 C54.986,58.878 54.756,58.625 54.457,58.410 C54.409,58.353 54.360,58.295 54.312,58.237 C54.293,58.237 54.273,58.237 54.254,58.237 C54.215,58.189 54.176,58.141 54.137,58.092 C54.118,58.092 54.099,58.092 54.079,58.092 C54.050,58.054 54.021,58.015 53.992,57.977 C53.973,57.977 53.953,57.977 53.934,57.977 C53.905,57.938 53.876,57.900 53.847,57.861 C53.827,57.861 53.808,57.861 53.789,57.861 C53.769,57.832 53.750,57.803 53.730,57.775 C53.711,57.775 53.692,57.775 53.672,57.775 C53.653,57.746 53.633,57.717 53.614,57.688 C53.595,57.688 53.575,57.688 53.556,57.688 C53.546,57.669 53.537,57.649 53.527,57.630 C53.507,57.630 53.488,57.630 53.469,57.630 C53.449,57.601 53.430,57.572 53.411,57.543 C53.391,57.543 53.372,57.543 53.352,57.543 C53.343,57.524 53.333,57.505 53.323,57.486 C53.304,57.486 53.285,57.486 53.265,57.486 C53.246,57.457 53.226,57.428 53.207,57.399 C53.188,57.399 53.168,57.399 53.149,57.399 C53.139,57.380 53.130,57.360 53.120,57.341 C53.100,57.341 53.081,57.341 53.062,57.341 C53.052,57.322 53.042,57.303 53.033,57.283 C53.013,57.283 52.994,57.283 52.974,57.283 C52.965,57.264 52.955,57.245 52.945,57.225 C52.926,57.225 52.907,57.225 52.887,57.225 C52.878,57.206 52.868,57.187 52.858,57.168 C52.819,57.158 52.781,57.148 52.742,57.139 C52.742,57.129 52.742,57.119 52.742,57.110 C52.713,57.100 52.684,57.091 52.655,57.081 C52.645,57.062 52.635,57.042 52.626,57.023 C52.606,57.023 52.587,57.023 52.567,57.023 C52.567,57.013 52.567,57.004 52.567,56.994 C52.548,56.994 52.529,56.994 52.509,56.994 C52.500,56.975 52.490,56.956 52.480,56.936 C52.422,56.917 52.364,56.898 52.306,56.879 C52.296,56.859 52.286,56.840 52.277,56.821 C52.219,56.802 52.160,56.782 52.102,56.763 C52.102,56.753 52.102,56.744 52.102,56.734 C52.083,56.734 52.063,56.734 52.044,56.734 C52.044,56.724 52.044,56.715 52.044,56.705 C51.986,56.686 51.928,56.667 51.870,56.647 C51.870,56.638 51.870,56.628 51.870,56.618 C51.841,56.618 51.811,56.618 51.782,56.618 C51.782,56.609 51.782,56.599 51.782,56.590 C51.744,56.580 51.705,56.570 51.666,56.561 C51.666,56.551 51.666,56.541 51.666,56.532 C51.637,56.532 51.608,56.532 51.579,56.532 C51.579,56.522 51.579,56.513 51.579,56.503 C51.559,56.503 51.540,56.503 51.521,56.503 C51.521,56.493 51.521,56.484 51.521,56.474 C51.492,56.474 51.463,56.474 51.433,56.474 C51.433,56.464 51.433,56.455 51.433,56.445 C51.414,56.445 51.395,56.445 51.375,56.445 C51.375,56.435 51.375,56.426 51.375,56.416 C51.317,56.407 51.259,56.397 51.201,56.387 C51.201,56.378 51.201,56.368 51.201,56.358 C51.172,56.358 51.143,56.358 51.114,56.358 C51.114,56.349 51.114,56.339 51.114,56.329 C51.085,56.329 51.056,56.329 51.026,56.329 C51.026,56.320 51.026,56.310 51.026,56.301 C50.997,56.301 50.968,56.301 50.939,56.301 C50.939,56.291 50.939,56.281 50.939,56.272 C50.900,56.272 50.862,56.272 50.823,56.272 C50.823,56.262 50.823,56.252 50.823,56.243 C50.784,56.243 50.745,56.243 50.707,56.243 C50.707,56.233 50.707,56.224 50.707,56.214 C50.668,56.214 50.629,56.214 50.590,56.214 C50.590,56.204 50.590,56.195 50.590,56.185 C50.552,56.185 50.513,56.185 50.474,56.185 C50.474,56.175 50.474,56.166 50.474,56.156 C50.426,56.156 50.377,56.156 50.329,56.156 C50.329,56.146 50.329,56.137 50.329,56.127 C50.280,56.127 50.232,56.127 50.183,56.127 C50.183,56.118 50.183,56.108 50.183,56.098 C50.115,56.098 50.048,56.098 49.980,56.098 C49.566,55.979 48.992,56.012 48.468,56.012 C47.460,56.012 46.452,56.012 45.444,56.012 C44.039,56.012 42.633,56.012 41.228,56.012 C40.884,56.012 40.415,56.065 40.123,55.983 C39.978,55.983 39.833,55.983 39.687,55.983 C39.687,55.973 39.687,55.963 39.687,55.954 C39.581,55.954 39.474,55.954 39.367,55.954 C39.367,55.944 39.367,55.934 39.367,55.925 C39.280,55.925 39.193,55.925 39.106,55.925 C39.106,55.915 39.106,55.906 39.106,55.896 C39.038,55.896 38.970,55.896 38.902,55.896 C38.902,55.886 38.902,55.877 38.902,55.867 C38.728,55.848 38.553,55.829 38.379,55.809 C38.379,55.800 38.379,55.790 38.379,55.780 C38.204,55.751 38.030,55.723 37.856,55.694 C37.856,55.684 37.856,55.674 37.856,55.665 C37.749,55.645 37.642,55.626 37.536,55.607 C37.536,55.597 37.536,55.588 37.536,55.578 C37.507,55.578 37.478,55.578 37.448,55.578 C37.448,55.568 37.448,55.559 37.448,55.549 C37.419,55.549 37.390,55.549 37.361,55.549 C37.361,55.540 37.361,55.530 37.361,55.520 C37.332,55.520 37.303,55.520 37.274,55.520 C37.274,55.511 37.274,55.501 37.274,55.491 C37.245,55.491 37.216,55.491 37.187,55.491 C37.187,55.482 37.187,55.472 37.187,55.462 C37.100,55.443 37.012,55.424 36.925,55.405 C36.925,55.395 36.925,55.385 36.925,55.376 C36.906,55.376 36.886,55.376 36.867,55.376 C36.867,55.366 36.867,55.356 36.867,55.347 C36.838,55.347 36.809,55.347 36.780,55.347 C36.780,55.337 36.780,55.328 36.780,55.318 C36.760,55.318 36.741,55.318 36.722,55.318 C36.722,55.308 36.722,55.299 36.722,55.289 C36.693,55.289 36.663,55.289 36.634,55.289 C36.634,55.279 36.634,55.270 36.634,55.260 C36.596,55.250 36.557,55.241 36.518,55.231 C36.518,55.222 36.518,55.212 36.518,55.202 C36.499,55.202 36.479,55.202 36.460,55.202 C36.460,55.193 36.460,55.183 36.460,55.173 C36.431,55.173 36.402,55.173 36.373,55.173 C36.373,55.164 36.373,55.154 36.373,55.145 C36.315,55.125 36.256,55.106 36.198,55.087 C36.198,55.077 36.198,55.067 36.198,55.058 C36.159,55.048 36.121,55.039 36.082,55.029 C36.072,55.010 36.063,54.990 36.053,54.971 C35.995,54.952 35.937,54.933 35.878,54.913 C35.869,54.894 35.859,54.875 35.849,54.855 C35.811,54.846 35.772,54.836 35.733,54.827 C35.733,54.817 35.733,54.807 35.733,54.798 C35.704,54.788 35.675,54.778 35.646,54.769 C35.636,54.750 35.626,54.730 35.617,54.711 C35.597,54.711 35.578,54.711 35.559,54.711 C35.549,54.692 35.539,54.672 35.530,54.653 C35.510,54.653 35.491,54.653 35.471,54.653 C35.452,54.624 35.433,54.595 35.413,54.566 C35.394,54.566 35.374,54.566 35.355,54.566 C35.336,54.538 35.316,54.509 35.297,54.480 C35.278,54.480 35.258,54.480 35.239,54.480 C35.210,54.441 35.181,54.403 35.152,54.364 C35.132,54.364 35.113,54.364 35.093,54.364 C34.987,54.249 34.880,54.133 34.774,54.017 C34.677,53.931 34.580,53.844 34.483,53.757 C34.483,53.738 34.483,53.719 34.483,53.699 C34.444,53.671 34.405,53.642 34.367,53.613 C34.357,53.584 34.347,53.555 34.337,53.526 C34.318,53.516 34.299,53.507 34.279,53.497 C34.279,53.478 34.279,53.459 34.279,53.439 C34.260,53.430 34.241,53.420 34.221,53.410 C34.221,53.391 34.221,53.372 34.221,53.353 C34.202,53.343 34.182,53.333 34.163,53.324 C34.153,53.295 34.144,53.266 34.134,53.237 C34.124,53.237 34.115,53.237 34.105,53.237 C34.095,53.198 34.085,53.160 34.076,53.121 C34.056,53.112 34.037,53.102 34.018,53.092 C34.018,53.073 34.018,53.054 34.018,53.035 C34.008,53.035 33.998,53.035 33.989,53.035 C33.989,53.015 33.989,52.996 33.989,52.977 C33.979,52.977 33.969,52.977 33.959,52.977 C33.959,52.958 33.959,52.938 33.959,52.919 C33.950,52.919 33.940,52.919 33.930,52.919 C33.930,52.900 33.930,52.881 33.930,52.861 C33.921,52.861 33.911,52.861 33.901,52.861 C33.901,52.842 33.901,52.823 33.901,52.803 C33.892,52.803 33.882,52.803 33.872,52.803 C33.872,52.784 33.872,52.765 33.872,52.746 C33.863,52.746 33.853,52.746 33.843,52.746 C33.824,52.688 33.804,52.630 33.785,52.572 C33.775,52.572 33.766,52.572 33.756,52.572 C33.756,52.543 33.756,52.514 33.756,52.486 C33.746,52.486 33.737,52.486 33.727,52.486 C33.727,52.466 33.727,52.447 33.727,52.428 C33.717,52.428 33.707,52.428 33.698,52.428 C33.688,52.370 33.678,52.312 33.669,52.254 C33.659,52.254 33.649,52.254 33.640,52.254 C33.640,52.235 33.640,52.216 33.640,52.197 C33.630,52.197 33.620,52.197 33.611,52.197 C33.601,52.129 33.591,52.062 33.581,51.994 C33.572,51.994 33.562,51.994 33.552,51.994 C33.552,51.965 33.552,51.936 33.552,51.908 C33.543,51.908 33.533,51.908 33.523,51.908 C33.523,51.869 33.523,51.830 33.523,51.792 C33.514,51.792 33.504,51.792 33.494,51.792 C33.494,51.744 33.494,51.696 33.494,51.647 C33.485,51.647 33.475,51.647 33.465,51.647 C33.446,51.387 33.426,51.127 33.407,50.867 C33.407,50.761 33.407,50.655 33.407,50.549 C33.338,50.305 33.404,49.958 33.407,49.711 C33.407,49.094 33.407,48.478 33.407,47.861 C33.407,45.453 33.407,43.044 33.407,40.636 C33.407,40.193 33.407,39.749 33.407,39.306 C33.407,39.083 33.428,38.788 33.378,38.613 C33.378,38.439 33.378,38.266 33.378,38.092 C33.368,38.092 33.359,38.092 33.349,38.092 C33.349,37.987 33.349,37.881 33.349,37.775 C33.339,37.775 33.330,37.775 33.320,37.775 C33.320,37.698 33.320,37.620 33.320,37.543 C33.310,37.543 33.300,37.543 33.291,37.543 C33.291,37.476 33.291,37.408 33.291,37.341 C33.251,37.205 33.216,37.010 33.174,36.879 C33.174,36.830 33.174,36.782 33.174,36.734 C33.068,36.407 32.961,36.079 32.855,35.751 C32.845,35.751 32.835,35.751 32.826,35.751 C32.816,35.713 32.806,35.674 32.796,35.636 C32.787,35.636 32.777,35.636 32.767,35.636 C32.767,35.607 32.767,35.578 32.767,35.549 C32.758,35.549 32.748,35.549 32.738,35.549 C32.719,35.491 32.700,35.434 32.680,35.376 C32.670,35.376 32.661,35.376 32.651,35.376 C32.651,35.356 32.651,35.337 32.651,35.318 C32.641,35.318 32.632,35.318 32.622,35.318 C32.612,35.279 32.603,35.241 32.593,35.202 C32.574,35.193 32.554,35.183 32.535,35.173 C32.515,35.116 32.496,35.058 32.477,35.000 C32.467,35.000 32.457,35.000 32.448,35.000 C32.438,34.971 32.428,34.942 32.419,34.913 C32.399,34.904 32.380,34.894 32.360,34.884 C32.360,34.865 32.360,34.846 32.360,34.827 C32.351,34.827 32.341,34.827 32.331,34.827 C32.322,34.798 32.312,34.769 32.302,34.740 C32.283,34.730 32.263,34.721 32.244,34.711 C32.244,34.692 32.244,34.672 32.244,34.653 C32.215,34.634 32.186,34.615 32.157,34.595 C32.157,34.576 32.157,34.557 32.157,34.538 C32.137,34.528 32.118,34.518 32.099,34.509 C32.089,34.480 32.079,34.451 32.070,34.422 C32.031,34.393 31.992,34.364 31.953,34.335 C31.953,34.316 31.953,34.297 31.953,34.277 C31.837,34.171 31.721,34.065 31.604,33.960 C31.507,33.854 31.411,33.748 31.314,33.642 C31.294,33.642 31.275,33.642 31.256,33.642 C31.217,33.593 31.178,33.545 31.139,33.497 C31.120,33.497 31.100,33.497 31.081,33.497 C31.052,33.459 31.023,33.420 30.994,33.382 C30.974,33.382 30.955,33.382 30.936,33.382 C30.916,33.353 30.897,33.324 30.878,33.295 C30.858,33.295 30.839,33.295 30.819,33.295 C30.810,33.276 30.800,33.256 30.790,33.237 C30.761,33.227 30.732,33.218 30.703,33.208 C30.703,33.198 30.703,33.189 30.703,33.179 C30.664,33.170 30.626,33.160 30.587,33.150 C30.577,33.131 30.567,33.112 30.558,33.092 C30.538,33.092 30.519,33.092 30.500,33.092 C30.500,33.083 30.500,33.073 30.500,33.064 C30.480,33.064 30.461,33.064 30.441,33.064 C30.441,33.054 30.441,33.044 30.441,33.035 C30.422,33.035 30.403,33.035 30.383,33.035 C30.383,33.025 30.383,33.015 30.383,33.006 C30.364,33.006 30.344,33.006 30.325,33.006 C30.325,32.996 30.325,32.987 30.325,32.977 C30.306,32.977 30.286,32.977 30.267,32.977 C30.267,32.967 30.267,32.958 30.267,32.948 C30.248,32.948 30.228,32.948 30.209,32.948 C30.209,32.938 30.209,32.929 30.209,32.919 C30.151,32.900 30.093,32.881 30.034,32.861 C30.034,32.852 30.034,32.842 30.034,32.832 C30.005,32.832 29.976,32.832 29.947,32.832 C29.947,32.823 29.947,32.813 29.947,32.803 C29.928,32.803 29.908,32.803 29.889,32.803 C29.889,32.794 29.889,32.784 29.889,32.775 C29.860,32.775 29.831,32.775 29.802,32.775 C29.802,32.765 29.802,32.755 29.802,32.746 C29.782,32.746 29.763,32.746 29.744,32.746 C29.744,32.736 29.744,32.726 29.744,32.717 C29.685,32.707 29.627,32.697 29.569,32.688 C29.569,32.678 29.569,32.669 29.569,32.659 C29.540,32.659 29.511,32.659 29.482,32.659 C29.482,32.649 29.482,32.640 29.482,32.630 C29.453,32.630 29.424,32.630 29.395,32.630 C29.395,32.620 29.395,32.611 29.395,32.601 C29.366,32.601 29.337,32.601 29.307,32.601 C29.307,32.592 29.307,32.582 29.307,32.572 C29.278,32.572 29.249,32.572 29.220,32.572 C29.220,32.563 29.220,32.553 29.220,32.543 C29.182,32.543 29.143,32.543 29.104,32.543 C29.104,32.534 29.104,32.524 29.104,32.514 C29.075,32.514 29.046,32.514 29.017,32.514 C29.017,32.505 29.017,32.495 29.017,32.486 C28.978,32.486 28.939,32.486 28.900,32.486 C28.900,32.476 28.900,32.466 28.900,32.457 C28.862,32.457 28.823,32.457 28.784,32.457 C28.784,32.447 28.784,32.437 28.784,32.428 C28.745,32.428 28.707,32.428 28.668,32.428 C28.668,32.418 28.668,32.408 28.668,32.399 C28.629,32.399 28.590,32.399 28.552,32.399 C28.552,32.389 28.552,32.380 28.552,32.370 C28.503,32.370 28.455,32.370 28.406,32.370 C28.406,32.360 28.406,32.351 28.406,32.341 C28.309,32.331 28.212,32.322 28.115,32.312 C28.115,32.303 28.115,32.293 28.115,32.283 C28.057,32.283 27.999,32.283 27.941,32.283 C27.941,32.274 27.941,32.264 27.941,32.254 C27.883,32.254 27.825,32.254 27.767,32.254 C27.767,32.245 27.767,32.235 27.767,32.225 C27.699,32.225 27.631,32.225 27.563,32.225 C27.563,32.216 27.563,32.206 27.563,32.197 C27.495,32.197 27.427,32.197 27.359,32.197 C27.359,32.187 27.359,32.177 27.359,32.168 C27.272,32.168 27.185,32.168 27.098,32.168 C27.098,32.158 27.098,32.148 27.098,32.139 C27.001,32.139 26.904,32.139 26.807,32.139 C26.807,32.129 26.807,32.119 26.807,32.110 C26.419,32.100 26.032,32.091 25.644,32.081 C25.644,32.071 25.644,32.062 25.644,32.052 C25.503,32.013 25.309,32.072 25.208,32.081 C24.878,32.081 24.549,32.081 24.219,32.081 C23.144,32.081 22.068,32.081 20.992,32.081 C19.461,32.081 17.929,32.081 16.398,32.081 C15.821,32.081 14.997,31.960 14.479,32.110 C14.373,32.119 14.266,32.129 14.159,32.139 C12.646,32.618 11.889,33.625 11.368,35.087 C11.359,35.164 11.349,35.241 11.339,35.318 C11.330,35.318 11.320,35.318 11.310,35.318 C11.310,35.356 11.310,35.395 11.310,35.434 C11.300,35.434 11.291,35.434 11.281,35.434 C11.281,35.472 11.281,35.511 11.281,35.549 C11.271,35.549 11.262,35.549 11.252,35.549 C11.252,35.588 11.252,35.626 11.252,35.665 C11.242,35.665 11.233,35.665 11.223,35.665 C11.223,35.713 11.223,35.761 11.223,35.809 C11.213,35.809 11.204,35.809 11.194,35.809 C11.184,35.906 11.174,36.002 11.165,36.098 C11.155,36.098 11.145,36.098 11.136,36.098 C11.136,36.166 11.136,36.233 11.136,36.301 C11.126,36.301 11.116,36.301 11.107,36.301 C11.107,36.368 11.107,36.435 11.107,36.503 C11.097,36.503 11.087,36.503 11.078,36.503 C11.078,36.580 11.078,36.657 11.078,36.734 C11.068,36.734 11.058,36.734 11.048,36.734 C11.048,37.013 11.048,37.293 11.048,37.572 C11.048,38.151 10.1000,38.820 11.136,39.277 C11.145,39.393 11.155,39.509 11.165,39.624 C11.174,39.624 11.184,39.624 11.194,39.624 C11.194,39.672 11.194,39.721 11.194,39.769 C11.204,39.769 11.213,39.769 11.223,39.769 C11.223,39.817 11.223,39.865 11.223,39.913 C11.233,39.913 11.242,39.913 11.252,39.913 C11.252,39.961 11.252,40.010 11.252,40.058 C11.262,40.058 11.271,40.058 11.281,40.058 C11.281,40.096 11.281,40.135 11.281,40.173 C11.291,40.173 11.300,40.173 11.310,40.173 C11.310,40.212 11.310,40.250 11.310,40.289 C11.320,40.289 11.330,40.289 11.339,40.289 C11.339,40.328 11.339,40.366 11.339,40.405 C11.349,40.405 11.359,40.405 11.368,40.405 C11.368,40.443 11.368,40.482 11.368,40.520 C11.452,40.764 11.538,41.041 11.630,41.272 C11.630,41.301 11.630,41.329 11.630,41.358 C11.640,41.358 11.649,41.358 11.659,41.358 C11.659,41.387 11.659,41.416 11.659,41.445 C11.669,41.445 11.678,41.445 11.688,41.445 C11.688,41.474 11.688,41.503 11.688,41.532 C11.698,41.532 11.707,41.532 11.717,41.532 C11.717,41.561 11.717,41.590 11.717,41.618 C11.995,42.251 12.264,42.910 12.619,43.468 C12.619,43.487 12.619,43.507 12.619,43.526 C12.628,43.526 12.638,43.526 12.648,43.526 C12.648,43.545 12.648,43.565 12.648,43.584 C12.657,43.584 12.667,43.584 12.677,43.584 C12.677,43.603 12.677,43.622 12.677,43.642 C12.686,43.642 12.696,43.642 12.706,43.642 C12.706,43.661 12.706,43.680 12.706,43.699 C12.725,43.709 12.744,43.719 12.764,43.728 C12.783,43.786 12.803,43.844 12.822,43.902 C12.841,43.911 12.861,43.921 12.880,43.931 C12.890,43.969 12.900,44.008 12.909,44.046 C12.929,44.056 12.948,44.066 12.967,44.075 C12.967,44.094 12.967,44.114 12.967,44.133 C12.977,44.133 12.987,44.133 12.996,44.133 C12.996,44.152 12.996,44.171 12.996,44.191 C13.016,44.200 13.035,44.210 13.055,44.220 C13.055,44.239 13.055,44.258 13.055,44.277 C13.074,44.287 13.093,44.297 13.113,44.306 C13.113,44.326 13.113,44.345 13.113,44.364 C13.132,44.374 13.152,44.383 13.171,44.393 C13.181,44.432 13.190,44.470 13.200,44.509 C13.219,44.518 13.239,44.528 13.258,44.538 C13.258,44.557 13.258,44.576 13.258,44.595 C13.268,44.595 13.278,44.595 13.287,44.595 C13.297,44.624 13.307,44.653 13.316,44.682 C13.336,44.692 13.355,44.701 13.374,44.711 C13.374,44.730 13.374,44.750 13.374,44.769 C13.384,44.769 13.394,44.769 13.404,44.769 C13.413,44.798 13.423,44.827 13.433,44.855 C13.452,44.865 13.471,44.875 13.491,44.884 C13.491,44.904 13.491,44.923 13.491,44.942 C13.520,44.961 13.549,44.981 13.578,44.1000 C13.578,45.019 13.578,45.039 13.578,45.058 C13.588,45.058 13.597,45.058 13.607,45.058 C13.617,45.087 13.626,45.116 13.636,45.145 C13.656,45.154 13.675,45.164 13.694,45.173 C13.694,45.193 13.694,45.212 13.694,45.231 C13.723,45.250 13.752,45.270 13.781,45.289 C13.781,45.308 13.781,45.328 13.781,45.347 C13.811,45.366 13.840,45.385 13.869,45.405 C13.869,45.424 13.869,45.443 13.869,45.462 C13.898,45.482 13.927,45.501 13.956,45.520 C13.956,45.539 13.956,45.559 13.956,45.578 C13.985,45.597 14.014,45.617 14.043,45.636 C14.043,45.655 14.043,45.674 14.043,45.694 C14.072,45.713 14.101,45.732 14.130,45.751 C14.130,45.771 14.130,45.790 14.130,45.809 C14.169,45.838 14.208,45.867 14.247,45.896 C14.247,45.915 14.247,45.934 14.247,45.954 C14.285,45.983 14.324,46.012 14.363,46.040 C14.363,46.060 14.363,46.079 14.363,46.098 C14.402,46.127 14.441,46.156 14.479,46.185 C14.479,46.204 14.479,46.224 14.479,46.243 C14.528,46.281 14.576,46.320 14.625,46.358 C14.625,46.378 14.625,46.397 14.625,46.416 C14.673,46.455 14.722,46.493 14.770,46.532 C14.770,46.551 14.770,46.570 14.770,46.590 C14.838,46.647 14.906,46.705 14.974,46.763 C14.974,46.782 14.974,46.802 14.974,46.821 C15.051,46.888 15.129,46.956 15.206,47.023 C15.206,47.042 15.206,47.062 15.206,47.081 C15.332,47.197 15.458,47.312 15.584,47.428 C15.584,47.447 15.584,47.466 15.584,47.486 C15.681,47.572 15.778,47.659 15.875,47.746 C16.049,47.929 16.224,48.112 16.398,48.295 C16.418,48.295 16.437,48.295 16.456,48.295 C16.573,48.420 16.689,48.545 16.805,48.671 C16.825,48.671 16.844,48.671 16.863,48.671 C16.941,48.757 17.019,48.844 17.096,48.931 C17.115,48.931 17.135,48.931 17.154,48.931 C17.212,48.998 17.270,49.066 17.329,49.133 C17.348,49.133 17.367,49.133 17.387,49.133 C17.426,49.181 17.464,49.229 17.503,49.277 C17.522,49.277 17.542,49.277 17.561,49.277 C17.610,49.335 17.658,49.393 17.707,49.451 C17.726,49.451 17.745,49.451 17.765,49.451 C17.794,49.489 17.823,49.528 17.852,49.566 C17.871,49.566 17.891,49.566 17.910,49.566 C17.939,49.605 17.968,49.644 17.997,49.682 C18.017,49.682 18.036,49.682 18.056,49.682 C18.085,49.721 18.114,49.759 18.143,49.798 C18.162,49.798 18.181,49.798 18.201,49.798 C18.230,49.836 18.259,49.875 18.288,49.913 C18.307,49.913 18.327,49.913 18.346,49.913 C18.366,49.942 18.385,49.971 18.404,49.1000 C18.424,49.1000 18.443,49.1000 18.463,49.1000 C18.492,50.039 18.521,50.077 18.550,50.116 C18.569,50.116 18.589,50.116 18.608,50.116 C18.627,50.145 18.647,50.173 18.666,50.202 C18.685,50.202 18.705,50.202 18.724,50.202 C18.744,50.231 18.763,50.260 18.782,50.289 C18.802,50.289 18.821,50.289 18.841,50.289 C18.850,50.308 18.860,50.328 18.870,50.347 C18.889,50.347 18.908,50.347 18.928,50.347 C18.937,50.366 18.947,50.385 18.957,50.405 C18.986,50.414 19.015,50.424 19.044,50.434 C19.063,50.462 19.083,50.491 19.102,50.520 C19.122,50.520 19.141,50.520 19.160,50.520 C19.160,50.530 19.160,50.540 19.160,50.549 C19.189,50.559 19.219,50.568 19.248,50.578 C19.257,50.597 19.267,50.617 19.277,50.636 C19.296,50.636 19.315,50.636 19.335,50.636 C19.354,50.665 19.374,50.694 19.393,50.723 C19.412,50.723 19.432,50.723 19.451,50.723 C19.461,50.742 19.470,50.761 19.480,50.780 C19.509,50.790 19.538,50.800 19.567,50.809 C19.567,50.819 19.567,50.829 19.567,50.838 C19.587,50.838 19.606,50.838 19.626,50.838 C19.635,50.857 19.645,50.877 19.655,50.896 C19.674,50.896 19.693,50.896 19.713,50.896 C19.722,50.915 19.732,50.934 19.742,50.954 C19.761,50.954 19.781,50.954 19.800,50.954 C19.810,50.973 19.819,50.992 19.829,51.012 C19.848,51.012 19.868,51.012 19.887,51.012 C19.897,51.031 19.907,51.050 19.916,51.069 C19.936,51.069 19.955,51.069 19.974,51.069 C19.984,51.089 19.994,51.108 20.004,51.127 C20.023,51.127 20.042,51.127 20.062,51.127 C20.071,51.146 20.081,51.166 20.091,51.185 C20.110,51.185 20.130,51.185 20.149,51.185 C20.159,51.204 20.168,51.224 20.178,51.243 C20.197,51.243 20.217,51.243 20.236,51.243 C20.246,51.262 20.256,51.281 20.265,51.301 C20.285,51.301 20.304,51.301 20.323,51.301 C20.323,51.310 20.323,51.320 20.323,51.329 C20.343,51.329 20.362,51.329 20.381,51.329 C20.391,51.349 20.401,51.368 20.411,51.387 C20.449,51.397 20.488,51.407 20.527,51.416 C20.537,51.435 20.546,51.455 20.556,51.474 C20.585,51.484 20.614,51.493 20.643,51.503 C20.643,51.513 20.643,51.522 20.643,51.532 C20.682,51.541 20.721,51.551 20.759,51.561 C20.759,51.570 20.759,51.580 20.759,51.590 C20.779,51.590 20.798,51.590 20.818,51.590 C20.827,51.609 20.837,51.628 20.847,51.647 C20.885,51.657 20.924,51.667 20.963,51.676 C20.973,51.696 20.982,51.715 20.992,51.734 C21.011,51.734 21.031,51.734 21.050,51.734 C21.050,51.744 21.050,51.753 21.050,51.763 C21.070,51.763 21.089,51.763 21.108,51.763 C21.108,51.773 21.108,51.782 21.108,51.792 C21.128,51.792 21.147,51.792 21.167,51.792 C21.167,51.802 21.167,51.811 21.167,51.821 C21.186,51.821 21.205,51.821 21.225,51.821 C21.990,52.299 22.886,52.661 23.696,53.092 C23.754,53.112 23.812,53.131 23.870,53.150 C23.870,53.160 23.870,53.170 23.870,53.179 C23.909,53.189 23.948,53.198 23.987,53.208 C23.987,53.218 23.987,53.227 23.987,53.237 C24.026,53.247 24.064,53.256 24.103,53.266 C24.103,53.276 24.103,53.285 24.103,53.295 C24.122,53.295 24.142,53.295 24.161,53.295 C24.161,53.304 24.161,53.314 24.161,53.324 C24.181,53.324 24.200,53.324 24.219,53.324 C24.219,53.333 24.219,53.343 24.219,53.353 C24.239,53.353 24.258,53.353 24.278,53.353 C24.278,53.362 24.278,53.372 24.278,53.382 C24.297,53.382 24.316,53.382 24.336,53.382 C24.336,53.391 24.336,53.401 24.336,53.410 C24.355,53.410 24.374,53.410 24.394,53.410 C24.394,53.420 24.394,53.430 24.394,53.439 C24.452,53.459 24.510,53.478 24.568,53.497 C24.578,53.516 24.588,53.536 24.597,53.555 C24.617,53.555 24.636,53.555 24.656,53.555 C24.656,53.565 24.656,53.574 24.656,53.584 C24.675,53.584 24.694,53.584 24.714,53.584 C24.714,53.593 24.714,53.603 24.714,53.613 C24.733,53.613 24.752,53.613 24.772,53.613 C24.772,53.622 24.772,53.632 24.772,53.642 C24.791,53.642 24.811,53.642 24.830,53.642 C24.830,53.651 24.830,53.661 24.830,53.671 C24.849,53.671 24.869,53.671 24.888,53.671 C24.898,53.690 24.907,53.709 24.917,53.728 C24.975,53.748 25.033,53.767 25.092,53.786 C25.101,53.805 25.111,53.825 25.121,53.844 C25.159,53.854 25.198,53.863 25.237,53.873 C25.247,53.892 25.256,53.911 25.266,53.931 C25.305,53.940 25.344,53.950 25.382,53.960 C25.382,53.969 25.382,53.979 25.382,53.988 C25.411,53.998 25.441,54.008 25.470,54.017 C25.479,54.037 25.489,54.056 25.499,54.075 C25.537,54.085 25.576,54.094 25.615,54.104 C25.625,54.123 25.634,54.143 25.644,54.162 C25.663,54.162 25.683,54.162 25.702,54.162 C25.702,54.171 25.702,54.181 25.702,54.191 C25.731,54.200 25.760,54.210 25.789,54.220 C25.799,54.239 25.809,54.258 25.819,54.277 C25.838,54.277 25.857,54.277 25.877,54.277 C25.886,54.297 25.896,54.316 25.906,54.335 C25.935,54.345 25.964,54.355 25.993,54.364 C25.993,54.374 25.993,54.383 25.993,54.393 C26.032,54.403 26.070,54.412 26.109,54.422 C26.109,54.432 26.109,54.441 26.109,54.451 C26.138,54.460 26.167,54.470 26.196,54.480 C26.206,54.499 26.216,54.518 26.226,54.538 C26.264,54.547 26.303,54.557 26.342,54.566 C26.342,54.576 26.342,54.586 26.342,54.595 C26.371,54.605 26.400,54.615 26.429,54.624 C26.439,54.644 26.448,54.663 26.458,54.682 C26.478,54.682 26.497,54.682 26.516,54.682 C26.516,54.692 26.516,54.701 26.516,54.711 C26.536,54.711 26.555,54.711 26.574,54.711 C26.584,54.730 26.594,54.750 26.604,54.769 C26.623,54.769 26.642,54.769 26.662,54.769 C26.671,54.788 26.681,54.807 26.691,54.827 C26.730,54.836 26.768,54.846 26.807,54.855 C26.817,54.875 26.826,54.894 26.836,54.913 C26.856,54.913 26.875,54.913 26.894,54.913 C26.904,54.933 26.914,54.952 26.923,54.971 C26.943,54.971 26.962,54.971 26.981,54.971 C26.991,54.990 27.001,55.010 27.011,55.029 C27.030,55.029 27.049,55.029 27.069,55.029 C27.069,55.039 27.069,55.048 27.069,55.058 C27.098,55.067 27.127,55.077 27.156,55.087 C27.166,55.106 27.175,55.125 27.185,55.145 C27.204,55.145 27.224,55.145 27.243,55.145 C27.263,55.173 27.282,55.202 27.301,55.231 C27.321,55.231 27.340,55.231 27.359,55.231 C27.359,55.241 27.359,55.250 27.359,55.260 C27.389,55.270 27.418,55.279 27.447,55.289 C27.456,55.308 27.466,55.328 27.476,55.347 C27.495,55.347 27.515,55.347 27.534,55.347 C27.553,55.376 27.573,55.405 27.592,55.434 C27.611,55.434 27.631,55.434 27.650,55.434 C27.660,55.453 27.670,55.472 27.679,55.491 C27.699,55.491 27.718,55.491 27.737,55.491 C27.747,55.511 27.757,55.530 27.767,55.549 C27.796,55.559 27.825,55.568 27.854,55.578 C27.873,55.607 27.893,55.636 27.912,55.665 C27.931,55.665 27.951,55.665 27.970,55.665 C27.980,55.684 27.989,55.703 27.999,55.723 C28.019,55.723 28.038,55.723 28.057,55.723 C28.077,55.751 28.096,55.780 28.115,55.809 C28.135,55.809 28.154,55.809 28.174,55.809 C28.193,55.838 28.212,55.867 28.232,55.896 C28.251,55.896 28.270,55.896 28.290,55.896 C28.319,55.934 28.348,55.973 28.377,56.012 C28.396,56.012 28.416,56.012 28.435,56.012 C28.445,56.031 28.455,56.050 28.464,56.069 C28.493,56.079 28.522,56.089 28.552,56.098 C28.581,56.137 28.610,56.175 28.639,56.214 C28.658,56.214 28.678,56.214 28.697,56.214 C28.716,56.243 28.736,56.272 28.755,56.301 C28.774,56.301 28.794,56.301 28.813,56.301 C28.842,56.339 28.871,56.378 28.900,56.416 C28.920,56.416 28.939,56.416 28.959,56.416 C28.988,56.455 29.017,56.493 29.046,56.532 C29.065,56.532 29.085,56.532 29.104,56.532 C29.143,56.580 29.182,56.628 29.220,56.676 C29.240,56.676 29.259,56.676 29.278,56.676 C29.317,56.724 29.356,56.773 29.395,56.821 C29.414,56.821 29.433,56.821 29.453,56.821 C29.492,56.869 29.530,56.917 29.569,56.965 C29.589,56.965 29.608,56.965 29.627,56.965 C29.676,57.023 29.724,57.081 29.773,57.139 C29.792,57.139 29.811,57.139 29.831,57.139 C29.899,57.216 29.967,57.293 30.034,57.370 C30.054,57.370 30.073,57.370 30.093,57.370 C30.180,57.466 30.267,57.563 30.354,57.659 C30.374,57.659 30.393,57.659 30.412,57.659 C30.432,57.688 30.451,57.717 30.470,57.746 C30.548,57.813 30.626,57.881 30.703,57.948 C30.781,58.035 30.858,58.121 30.936,58.208 C30.955,58.208 30.974,58.208 30.994,58.208 C31.033,58.256 31.071,58.304 31.110,58.353 C31.197,58.430 31.285,58.507 31.372,58.584 C31.372,58.603 31.372,58.622 31.372,58.642 C31.546,58.805 31.721,58.969 31.895,59.133 C31.895,59.152 31.895,59.171 31.895,59.191 C31.992,59.277 32.089,59.364 32.186,59.451 C32.186,59.470 32.186,59.489 32.186,59.509 C32.196,59.509 32.205,59.509 32.215,59.509 C32.234,59.538 32.254,59.566 32.273,59.595 C32.312,59.624 32.351,59.653 32.389,59.682 C32.389,59.701 32.389,59.721 32.389,59.740 C32.448,59.788 32.506,59.836 32.564,59.884 C32.564,59.904 32.564,59.923 32.564,59.942 C32.583,59.952 32.603,59.961 32.622,59.971 C32.622,59.981 32.622,59.990 32.622,60.000 C32.651,60.019 32.680,60.039 32.709,60.058 C32.709,60.077 32.709,60.096 32.709,60.116 C32.729,60.125 32.748,60.135 32.767,60.145 C32.767,60.154 32.767,60.164 32.767,60.173 C32.787,60.183 32.806,60.193 32.826,60.202 C32.826,60.222 32.826,60.241 32.826,60.260 C32.874,60.299 32.922,60.337 32.971,60.376 C32.971,60.395 32.971,60.414 32.971,60.434 C32.990,60.443 33.010,60.453 33.029,60.462 C33.039,60.491 33.048,60.520 33.058,60.549 C33.097,60.578 33.136,60.607 33.174,60.636 C33.174,60.655 33.174,60.674 33.174,60.694 C33.204,60.713 33.233,60.732 33.262,60.751 C33.262,60.771 33.262,60.790 33.262,60.809 C33.291,60.829 33.320,60.848 33.349,60.867 C33.349,60.886 33.349,60.906 33.349,60.925 C33.378,60.944 33.407,60.963 33.436,60.983 C33.446,61.012 33.456,61.040 33.465,61.069 C33.485,61.079 33.504,61.089 33.523,61.098 C33.523,61.118 33.523,61.137 33.523,61.156 C33.543,61.166 33.562,61.175 33.581,61.185 C33.581,61.204 33.581,61.224 33.581,61.243 C33.611,61.262 33.640,61.281 33.669,61.301 C33.669,61.320 33.669,61.339 33.669,61.358 C33.688,61.368 33.707,61.378 33.727,61.387 C33.727,61.407 33.727,61.426 33.727,61.445 C33.756,61.464 33.785,61.484 33.814,61.503 C33.814,61.522 33.814,61.541 33.814,61.561 C33.833,61.570 33.853,61.580 33.872,61.590 C33.882,61.618 33.892,61.647 33.901,61.676 C33.911,61.676 33.921,61.676 33.930,61.676 C33.930,61.696 33.930,61.715 33.930,61.734 C33.950,61.744 33.969,61.753 33.989,61.763 C33.989,61.782 33.989,61.802 33.989,61.821 C34.008,61.830 34.027,61.840 34.047,61.850 C34.047,61.869 34.047,61.888 34.047,61.908 C34.066,61.917 34.085,61.927 34.105,61.936 C34.105,61.956 34.105,61.975 34.105,61.994 C34.124,62.004 34.144,62.013 34.163,62.023 C34.163,62.042 34.163,62.062 34.163,62.081 C34.182,62.091 34.202,62.100 34.221,62.110 C34.231,62.148 34.241,62.187 34.250,62.225 C34.260,62.225 34.270,62.225 34.279,62.225 C34.289,62.254 34.299,62.283 34.308,62.312 C34.328,62.322 34.347,62.331 34.367,62.341 C34.376,62.380 34.386,62.418 34.396,62.457 C34.405,62.457 34.415,62.457 34.425,62.457 C34.434,62.486 34.444,62.514 34.454,62.543 C34.473,62.553 34.493,62.563 34.512,62.572 C34.512,62.592 34.512,62.611 34.512,62.630 C34.522,62.630 34.531,62.630 34.541,62.630 C34.541,62.649 34.541,62.669 34.541,62.688 C34.560,62.697 34.580,62.707 34.599,62.717 C34.619,62.775 34.638,62.832 34.657,62.890 C34.677,62.900 34.696,62.909 34.715,62.919 C34.725,62.958 34.735,62.996 34.744,63.035 C34.754,63.035 34.764,63.035 34.774,63.035 C34.774,63.054 34.774,63.073 34.774,63.092 C34.793,63.102 34.812,63.112 34.832,63.121 C34.832,63.141 34.832,63.160 34.832,63.179 C34.841,63.179 34.851,63.179 34.861,63.179 C34.861,63.198 34.861,63.218 34.861,63.237 C34.870,63.237 34.880,63.237 34.890,63.237 C34.890,63.256 34.890,63.276 34.890,63.295 C34.900,63.295 34.909,63.295 34.919,63.295 C34.919,63.314 34.919,63.333 34.919,63.353 C34.929,63.353 34.938,63.353 34.948,63.353 C34.948,63.372 34.948,63.391 34.948,63.410 C35.342,64.034 35.627,64.785 35.937,65.491 C35.937,65.520 35.937,65.549 35.937,65.578 C35.946,65.578 35.956,65.578 35.966,65.578 C35.966,65.607 35.966,65.636 35.966,65.665 C35.975,65.665 35.985,65.665 35.995,65.665 C35.995,65.694 35.995,65.723 35.995,65.751 C36.004,65.751 36.014,65.751 36.024,65.751 C36.024,65.780 36.024,65.809 36.024,65.838 C36.149,66.153 36.256,66.522 36.373,66.850 C36.411,67.042 36.450,67.235 36.489,67.428 C36.499,67.428 36.508,67.428 36.518,67.428 C36.605,67.929 36.693,68.430 36.780,68.931 C36.780,69.017 36.780,69.104 36.780,69.191 C36.789,69.191 36.799,69.191 36.809,69.191 C36.809,69.287 36.809,69.383 36.809,69.480 C36.819,69.480 36.828,69.480 36.838,69.480 C36.848,69.971 36.857,70.462 36.867,70.954 C36.857,71.320 36.848,71.686 36.838,72.052 C36.828,72.052 36.819,72.052 36.809,72.052 C36.809,72.158 36.809,72.264 36.809,72.370 C36.799,72.370 36.789,72.370 36.780,72.370 C36.780,72.447 36.780,72.524 36.780,72.601 C36.770,72.601 36.760,72.601 36.751,72.601 C36.751,72.678 36.751,72.755 36.751,72.832 C36.741,72.832 36.731,72.832 36.722,72.832 C36.722,72.900 36.722,72.967 36.722,73.035 C36.681,73.171 36.647,73.365 36.605,73.497 C36.605,73.545 36.605,73.593 36.605,73.642 C36.596,73.642 36.586,73.642 36.576,73.642 C36.576,73.690 36.576,73.738 36.576,73.786 C36.567,73.786 36.557,73.786 36.547,73.786 C36.547,73.825 36.547,73.863 36.547,73.902 C36.537,73.902 36.528,73.902 36.518,73.902 C36.518,73.940 36.518,73.979 36.518,74.017 C36.508,74.017 36.499,74.017 36.489,74.017 C36.489,74.056 36.489,74.094 36.489,74.133 C36.479,74.133 36.470,74.133 36.460,74.133 C36.460,74.171 36.460,74.210 36.460,74.249 C36.450,74.249 36.441,74.249 36.431,74.249 C36.431,74.287 36.431,74.326 36.431,74.364 C36.421,74.364 36.411,74.364 36.402,74.364 C36.402,74.393 36.402,74.422 36.402,74.451 C36.392,74.451 36.382,74.451 36.373,74.451 C36.373,74.480 36.373,74.509 36.373,74.538 C36.363,74.538 36.353,74.538 36.344,74.538 C36.315,74.663 36.285,74.788 36.256,74.913 C36.247,74.913 36.237,74.913 36.227,74.913 C36.227,74.933 36.227,74.952 36.227,74.971 C36.218,74.971 36.208,74.971 36.198,74.971 C36.189,75.029 36.179,75.087 36.169,75.145 C36.159,75.145 36.150,75.145 36.140,75.145 C36.140,75.164 36.140,75.183 36.140,75.202 C36.130,75.202 36.121,75.202 36.111,75.202 C36.111,75.231 36.111,75.260 36.111,75.289 C36.101,75.289 36.092,75.289 36.082,75.289 C36.082,75.308 36.082,75.328 36.082,75.347 C36.072,75.347 36.063,75.347 36.053,75.347 C36.053,75.376 36.053,75.405 36.053,75.434 C36.043,75.434 36.033,75.434 36.024,75.434 C36.024,75.453 36.024,75.472 36.024,75.491 C36.014,75.491 36.004,75.491 35.995,75.491 C35.995,75.520 35.995,75.549 35.995,75.578 C35.985,75.578 35.975,75.578 35.966,75.578 C35.946,75.636 35.927,75.694 35.907,75.751 C35.898,75.751 35.888,75.751 35.878,75.751 C35.878,75.771 35.878,75.790 35.878,75.809 C35.869,75.809 35.859,75.809 35.849,75.809 C35.849,75.829 35.849,75.848 35.849,75.867 C35.840,75.867 35.830,75.867 35.820,75.867 C35.820,75.886 35.820,75.906 35.820,75.925 C35.811,75.925 35.801,75.925 35.791,75.925 C35.791,75.944 35.791,75.963 35.791,75.983 C35.781,75.983 35.772,75.983 35.762,75.983 C35.762,76.002 35.762,76.021 35.762,76.040 C35.752,76.040 35.743,76.040 35.733,76.040 C35.733,76.060 35.733,76.079 35.733,76.098 C35.723,76.098 35.714,76.098 35.704,76.098 C35.704,76.118 35.704,76.137 35.704,76.156 C35.694,76.156 35.685,76.156 35.675,76.156 C35.675,76.175 35.675,76.195 35.675,76.214 C35.665,76.214 35.656,76.214 35.646,76.214 C35.646,76.233 35.646,76.252 35.646,76.272 C35.636,76.272 35.626,76.272 35.617,76.272 C35.617,76.291 35.617,76.310 35.617,76.329 C35.597,76.339 35.578,76.349 35.559,76.358 C35.549,76.397 35.539,76.435 35.530,76.474 C35.510,76.484 35.491,76.493 35.471,76.503 C35.471,76.522 35.471,76.541 35.471,76.561 C35.462,76.561 35.452,76.561 35.442,76.561 C35.442,76.580 35.442,76.599 35.442,76.618 C35.433,76.618 35.423,76.618 35.413,76.618 C35.404,76.647 35.394,76.676 35.384,76.705 C35.365,76.715 35.345,76.724 35.326,76.734 C35.326,76.753 35.326,76.773 35.326,76.792 C35.307,76.802 35.287,76.811 35.268,76.821 C35.268,76.840 35.268,76.859 35.268,76.879 C35.258,76.879 35.248,76.879 35.239,76.879 C35.229,76.908 35.219,76.936 35.210,76.965 C35.190,76.975 35.171,76.985 35.152,76.994 C35.152,77.013 35.152,77.033 35.152,77.052 C35.122,77.071 35.093,77.091 35.064,77.110 C35.064,77.129 35.064,77.148 35.064,77.168 C35.035,77.187 35.006,77.206 34.977,77.225 C34.977,77.245 34.977,77.264 34.977,77.283 C34.938,77.312 34.900,77.341 34.861,77.370 C34.861,77.389 34.861,77.408 34.861,77.428 C34.803,77.476 34.744,77.524 34.686,77.572 C34.686,77.592 34.686,77.611 34.686,77.630 C34.589,77.717 34.493,77.803 34.396,77.890 C34.299,77.996 34.202,78.102 34.105,78.208 C34.085,78.208 34.066,78.208 34.047,78.208 C33.998,78.266 33.950,78.324 33.901,78.382 C33.882,78.382 33.863,78.382 33.843,78.382 C33.814,78.420 33.785,78.459 33.756,78.497 C33.737,78.497 33.717,78.497 33.698,78.497 C33.678,78.526 33.659,78.555 33.640,78.584 C33.620,78.584 33.601,78.584 33.581,78.584 C33.562,78.613 33.543,78.642 33.523,78.671 C33.504,78.671 33.485,78.671 33.465,78.671 C33.456,78.690 33.446,78.709 33.436,78.728 C33.417,78.728 33.397,78.728 33.378,78.728 C33.368,78.748 33.359,78.767 33.349,78.786 C33.330,78.786 33.310,78.786 33.291,78.786 C33.281,78.805 33.271,78.825 33.262,78.844 C33.242,78.844 33.223,78.844 33.204,78.844 C33.194,78.863 33.184,78.882 33.174,78.902 C33.155,78.902 33.136,78.902 33.116,78.902 C33.107,78.921 33.097,78.940 33.087,78.960 C33.029,78.979 32.971,78.998 32.913,79.017 C32.903,79.037 32.893,79.056 32.884,79.075 C32.864,79.075 32.845,79.075 32.826,79.075 C32.826,79.085 32.826,79.094 32.826,79.104 C32.806,79.104 32.787,79.104 32.767,79.104 C32.767,79.114 32.767,79.123 32.767,79.133 C32.748,79.133 32.729,79.133 32.709,79.133 C32.709,79.143 32.709,79.152 32.709,79.162 C32.690,79.162 32.670,79.162 32.651,79.162 C32.651,79.171 32.651,79.181 32.651,79.191 C32.632,79.191 32.612,79.191 32.593,79.191 C32.593,79.200 32.593,79.210 32.593,79.220 C32.574,79.220 32.554,79.220 32.535,79.220 C32.535,79.229 32.535,79.239 32.535,79.249 C32.515,79.249 32.496,79.249 32.477,79.249 C32.477,79.258 32.477,79.268 32.477,79.277 C32.419,79.297 32.360,79.316 32.302,79.335 C32.302,79.345 32.302,79.355 32.302,79.364 C32.273,79.364 32.244,79.364 32.215,79.364 C32.215,79.374 32.215,79.383 32.215,79.393 C32.196,79.393 32.176,79.393 32.157,79.393 C32.157,79.403 32.157,79.412 32.157,79.422 C32.108,79.432 32.060,79.441 32.011,79.451 C32.011,79.461 32.011,79.470 32.011,79.480 C31.982,79.480 31.953,79.480 31.924,79.480 C31.924,79.489 31.924,79.499 31.924,79.509 C31.905,79.509 31.885,79.509 31.866,79.509 C31.866,79.518 31.866,79.528 31.866,79.538 C31.837,79.538 31.808,79.538 31.779,79.538 C31.779,79.547 31.779,79.557 31.779,79.566 C31.750,79.566 31.721,79.566 31.692,79.566 C31.692,79.576 31.692,79.586 31.692,79.595 C31.663,79.595 31.633,79.595 31.604,79.595 C31.604,79.605 31.604,79.615 31.604,79.624 C31.575,79.624 31.546,79.624 31.517,79.624 C31.517,79.634 31.517,79.644 31.517,79.653 C31.478,79.653 31.440,79.653 31.401,79.653 C31.401,79.663 31.401,79.672 31.401,79.682 C31.372,79.682 31.343,79.682 31.314,79.682 C31.314,79.692 31.314,79.701 31.314,79.711 C31.275,79.711 31.236,79.711 31.197,79.711 C31.197,79.721 31.197,79.730 31.197,79.740 C31.159,79.740 31.120,79.740 31.081,79.740 C30.228,80.026 29.022,79.971 27.883,79.971 C26.032,79.961 24.180,79.952 22.330,79.942 C21.651,79.942 20.973,79.942 20.294,79.942 C20.038,79.942 19.544,79.983 19.393,79.942 C19.286,79.942 19.180,79.942 19.073,79.942 C18.746,79.942 18.301,79.991 18.026,79.913 C17.862,79.913 17.697,79.913 17.532,79.913 C17.532,79.904 17.532,79.894 17.532,79.884 C17.416,79.884 17.300,79.884 17.183,79.884 C17.183,79.875 17.183,79.865 17.183,79.855 C17.086,79.855 16.989,79.855 16.893,79.855 C16.893,79.846 16.893,79.836 16.893,79.827 C16.815,79.827 16.737,79.827 16.660,79.827 C16.660,79.817 16.660,79.807 16.660,79.798 C16.602,79.798 16.544,79.798 16.485,79.798 C16.485,79.788 16.485,79.778 16.485,79.769 C16.369,79.759 16.253,79.750 16.137,79.740 C15.797,79.653 15.458,79.566 15.119,79.480 C15.119,79.470 15.119,79.461 15.119,79.451 C15.080,79.451 15.041,79.451 15.003,79.451 C15.003,79.441 15.003,79.432 15.003,79.422 C14.944,79.412 14.886,79.403 14.828,79.393 C14.828,79.383 14.828,79.374 14.828,79.364 C14.809,79.364 14.789,79.364 14.770,79.364 C14.770,79.355 14.770,79.345 14.770,79.335 C14.683,79.316 14.596,79.297 14.508,79.277 C14.508,79.268 14.508,79.258 14.508,79.249 C14.489,79.249 14.470,79.249 14.450,79.249 C14.450,79.239 14.450,79.229 14.450,79.220 C14.421,79.220 14.392,79.220 14.363,79.220 C14.363,79.210 14.363,79.200 14.363,79.191 C14.344,79.191 14.324,79.191 14.305,79.191 C14.305,79.181 14.305,79.171 14.305,79.162 C14.276,79.162 14.247,79.162 14.218,79.162 C14.218,79.152 14.218,79.143 14.218,79.133 C14.179,79.123 14.140,79.114 14.101,79.104 C14.101,79.094 14.101,79.085 14.101,79.075 C14.072,79.075 14.043,79.075 14.014,79.075 C14.014,79.066 14.014,79.056 14.014,79.046 C13.956,79.027 13.898,79.008 13.840,78.988 C13.840,78.979 13.840,78.969 13.840,78.960 C13.820,78.960 13.801,78.960 13.781,78.960 C13.781,78.950 13.781,78.940 13.781,78.931 C13.762,78.931 13.743,78.931 13.723,78.931 C13.723,78.921 13.723,78.911 13.723,78.902 C13.704,78.902 13.685,78.902 13.665,78.902 C13.665,78.892 13.665,78.882 13.665,78.873 C13.646,78.873 13.626,78.873 13.607,78.873 C13.607,78.863 13.607,78.854 13.607,78.844 C13.588,78.844 13.568,78.844 13.549,78.844 C13.549,78.834 13.549,78.825 13.549,78.815 C13.530,78.815 13.510,78.815 13.491,78.815 C13.491,78.805 13.491,78.796 13.491,78.786 C13.471,78.786 13.452,78.786 13.433,78.786 C13.433,78.776 13.433,78.767 13.433,78.757 C13.413,78.757 13.394,78.757 13.374,78.757 C13.374,78.748 13.374,78.738 13.374,78.728 C13.355,78.728 13.336,78.728 13.316,78.728 C13.307,78.709 13.297,78.690 13.287,78.671 C13.229,78.651 13.171,78.632 13.113,78.613 C13.103,78.593 13.093,78.574 13.084,78.555 C13.064,78.555 13.045,78.555 13.026,78.555 C13.026,78.545 13.026,78.536 13.026,78.526 C13.006,78.526 12.987,78.526 12.967,78.526 C12.967,78.516 12.967,78.507 12.967,78.497 C12.938,78.487 12.909,78.478 12.880,78.468 C12.870,78.449 12.861,78.430 12.851,78.410 C12.812,78.401 12.774,78.391 12.735,78.382 C12.725,78.362 12.715,78.343 12.706,78.324 C12.686,78.324 12.667,78.324 12.648,78.324 C12.638,78.304 12.628,78.285 12.619,78.266 C12.599,78.266 12.580,78.266 12.560,78.266 C12.541,78.237 12.522,78.208 12.502,78.179 C12.483,78.179 12.463,78.179 12.444,78.179 C12.444,78.170 12.444,78.160 12.444,78.150 C12.415,78.141 12.386,78.131 12.357,78.121 C12.347,78.102 12.337,78.083 12.328,78.064 C12.308,78.064 12.289,78.064 12.270,78.064 C12.250,78.035 12.231,78.006 12.211,77.977 C12.192,77.977 12.173,77.977 12.153,77.977 C12.134,77.948 12.115,77.919 12.095,77.890 C12.076,77.890 12.056,77.890 12.037,77.890 C12.008,77.852 11.979,77.813 11.950,77.775 C11.930,77.775 11.911,77.775 11.892,77.775 C11.853,77.726 11.814,77.678 11.775,77.630 C11.756,77.630 11.737,77.630 11.717,77.630 C11.669,77.572 11.620,77.514 11.572,77.457 C11.552,77.457 11.533,77.457 11.514,77.457 C11.417,77.351 11.320,77.245 11.223,77.139 C11.204,77.139 11.184,77.139 11.165,77.139 C11.145,77.110 11.126,77.081 11.107,77.052 C11.029,76.985 10.952,76.917 10.874,76.850 C10.874,76.830 10.874,76.811 10.874,76.792 C10.758,76.686 10.641,76.580 10.525,76.474 C10.525,76.455 10.525,76.435 10.525,76.416 C10.467,76.368 10.409,76.320 10.351,76.272 C10.351,76.252 10.351,76.233 10.351,76.214 C10.312,76.185 10.273,76.156 10.234,76.127 C10.234,76.108 10.234,76.089 10.234,76.069 C10.196,76.040 10.157,76.012 10.118,75.983 C10.118,75.963 10.118,75.944 10.118,75.925 C10.079,75.896 10.041,75.867 10.002,75.838 C10.002,75.819 10.002,75.800 10.002,75.780 C9.973,75.761 9.944,75.742 9.915,75.723 C9.905,75.694 9.895,75.665 9.885,75.636 C9.866,75.626 9.847,75.617 9.827,75.607 C9.827,75.588 9.827,75.568 9.827,75.549 C9.808,75.540 9.789,75.530 9.769,75.520 C9.769,75.501 9.769,75.482 9.769,75.462 C9.740,75.443 9.711,75.424 9.682,75.405 C9.682,75.385 9.682,75.366 9.682,75.347 C9.663,75.337 9.643,75.328 9.624,75.318 C9.614,75.289 9.604,75.260 9.595,75.231 C9.585,75.231 9.575,75.231 9.566,75.231 C9.566,75.212 9.566,75.193 9.566,75.173 C9.546,75.164 9.527,75.154 9.507,75.145 C9.507,75.125 9.507,75.106 9.507,75.087 C9.488,75.077 9.469,75.067 9.449,75.058 C9.449,75.039 9.449,75.019 9.449,75.000 C9.430,74.990 9.411,74.981 9.391,74.971 C9.381,74.933 9.372,74.894 9.362,74.855 C9.352,74.855 9.343,74.855 9.333,74.855 C9.323,74.827 9.314,74.798 9.304,74.769 C9.285,74.759 9.265,74.750 9.246,74.740 C9.246,74.721 9.246,74.701 9.246,74.682 C9.236,74.682 9.226,74.682 9.217,74.682 C9.217,74.663 9.217,74.644 9.217,74.624 C9.197,74.615 9.178,74.605 9.159,74.595 C9.139,74.538 9.120,74.480 9.100,74.422 C9.081,74.412 9.062,74.403 9.042,74.393 C9.023,74.335 9.004,74.277 8.984,74.220 C8.965,74.210 8.945,74.200 8.926,74.191 C8.926,74.171 8.926,74.152 8.926,74.133 C8.916,74.133 8.907,74.133 8.897,74.133 C8.897,74.114 8.897,74.094 8.897,74.075 C8.887,74.075 8.878,74.075 8.868,74.075 C8.868,74.056 8.868,74.037 8.868,74.017 C8.858,74.017 8.848,74.017 8.839,74.017 C8.839,73.998 8.839,73.979 8.839,73.960 C8.829,73.960 8.819,73.960 8.810,73.960 C8.810,73.940 8.810,73.921 8.810,73.902 C8.800,73.902 8.790,73.902 8.781,73.902 C8.781,73.882 8.781,73.863 8.781,73.844 C8.771,73.844 8.761,73.844 8.752,73.844 C8.752,73.825 8.752,73.805 8.752,73.786 C8.742,73.786 8.732,73.786 8.722,73.786 C8.722,73.767 8.722,73.748 8.722,73.728 C8.713,73.728 8.703,73.728 8.693,73.728 C8.693,73.709 8.693,73.690 8.693,73.671 C8.684,73.671 8.674,73.671 8.664,73.671 C8.664,73.651 8.664,73.632 8.664,73.613 C8.655,73.613 8.645,73.613 8.635,73.613 C8.616,73.555 8.596,73.497 8.577,73.439 C8.567,73.439 8.558,73.439 8.548,73.439 C8.538,73.391 8.529,73.343 8.519,73.295 C8.509,73.295 8.500,73.295 8.490,73.295 C8.480,73.256 8.470,73.218 8.461,73.179 C8.451,73.179 8.441,73.179 8.432,73.179 C8.432,73.150 8.432,73.121 8.432,73.092 C8.422,73.092 8.412,73.092 8.403,73.092 C8.393,73.054 8.383,73.015 8.374,72.977 C8.364,72.977 8.354,72.977 8.344,72.977 C8.344,72.948 8.344,72.919 8.344,72.890 C8.335,72.890 8.325,72.890 8.315,72.890 C8.315,72.871 8.315,72.852 8.315,72.832 C8.306,72.832 8.296,72.832 8.286,72.832 C8.286,72.803 8.286,72.775 8.286,72.746 C8.277,72.746 8.267,72.746 8.257,72.746 C8.257,72.726 8.257,72.707 8.257,72.688 C8.248,72.688 8.238,72.688 8.228,72.688 C8.219,72.630 8.209,72.572 8.199,72.514 C8.189,72.514 8.180,72.514 8.170,72.514 C8.170,72.495 8.170,72.476 8.170,72.457 C8.160,72.457 8.151,72.457 8.141,72.457 C8.015,72.042 7.889,71.628 7.763,71.214 C7.753,71.127 7.744,71.040 7.734,70.954 C7.724,70.954 7.715,70.954 7.705,70.954 C7.705,70.915 7.705,70.877 7.705,70.838 C7.695,70.838 7.685,70.838 7.676,70.838 C7.676,70.780 7.676,70.723 7.676,70.665 C7.666,70.665 7.656,70.665 7.647,70.665 C7.647,70.617 7.647,70.568 7.647,70.520 C7.637,70.520 7.627,70.520 7.618,70.520 C7.608,70.251 7.598,69.981 7.589,69.711 C7.539,69.535 7.559,69.241 7.559,69.017 C7.559,68.574 7.559,68.131 7.559,67.688 C7.559,65.703 7.559,63.718 7.559,61.734 C7.714,61.678 7.996,61.705 8.199,61.705 C8.635,61.705 9.071,61.705 9.507,61.705 C9.574,61.647 9.797,61.676 9.915,61.676 C10.292,61.676 10.671,61.676 11.048,61.676 C11.048,62.929 11.048,64.181 11.048,65.434 C11.004,65.593 11.019,65.863 11.019,66.069 C11.019,66.464 11.019,66.859 11.019,67.254 C11.019,67.537 10.982,67.918 11.048,68.150 C11.048,68.468 11.048,68.786 11.048,69.104 C11.058,69.104 11.068,69.104 11.078,69.104 C11.078,69.210 11.078,69.316 11.078,69.422 C11.087,69.422 11.097,69.422 11.107,69.422 C11.107,69.499 11.107,69.576 11.107,69.653 C11.116,69.653 11.126,69.653 11.136,69.653 C11.136,69.721 11.136,69.788 11.136,69.855 C11.176,69.992 11.211,70.186 11.252,70.318 C11.252,70.366 11.252,70.414 11.252,70.462 C11.349,70.800 11.446,71.137 11.543,71.474 C11.552,71.474 11.562,71.474 11.572,71.474 C11.572,71.493 11.572,71.513 11.572,71.532 C11.581,71.532 11.591,71.532 11.601,71.532 C11.611,71.590 11.620,71.647 11.630,71.705 C11.640,71.705 11.649,71.705 11.659,71.705 C11.659,71.724 11.659,71.744 11.659,71.763 C11.669,71.763 11.678,71.763 11.688,71.763 C11.688,71.792 11.688,71.821 11.688,71.850 C11.698,71.850 11.707,71.850 11.717,71.850 C11.727,71.888 11.737,71.927 11.746,71.965 C11.756,71.965 11.766,71.965 11.775,71.965 C11.775,71.994 11.775,72.023 11.775,72.052 C11.785,72.052 11.795,72.052 11.804,72.052 C11.824,72.110 11.843,72.168 11.863,72.225 C11.872,72.225 11.882,72.225 11.892,72.225 C11.892,72.245 11.892,72.264 11.892,72.283 C11.901,72.283 11.911,72.283 11.921,72.283 C11.921,72.303 11.921,72.322 11.921,72.341 C11.930,72.341 11.940,72.341 11.950,72.341 C11.950,72.370 11.950,72.399 11.950,72.428 C11.959,72.428 11.969,72.428 11.979,72.428 C11.979,72.447 11.979,72.466 11.979,72.486 C11.998,72.495 12.018,72.505 12.037,72.514 C12.047,72.553 12.056,72.592 12.066,72.630 C12.076,72.630 12.085,72.630 12.095,72.630 C12.095,72.649 12.095,72.669 12.095,72.688 C12.105,72.688 12.115,72.688 12.124,72.688 C12.124,72.707 12.124,72.726 12.124,72.746 C12.134,72.746 12.144,72.746 12.153,72.746 C12.153,72.765 12.153,72.784 12.153,72.803 C12.163,72.803 12.173,72.803 12.182,72.803 C12.182,72.823 12.182,72.842 12.182,72.861 C12.202,72.871 12.221,72.881 12.241,72.890 C12.250,72.929 12.260,72.967 12.270,73.006 C12.289,73.015 12.308,73.025 12.328,73.035 C12.337,73.073 12.347,73.112 12.357,73.150 C12.367,73.150 12.376,73.150 12.386,73.150 C12.396,73.179 12.405,73.208 12.415,73.237 C12.434,73.247 12.454,73.256 12.473,73.266 C12.473,73.285 12.473,73.304 12.473,73.324 C12.483,73.324 12.493,73.324 12.502,73.324 C12.512,73.353 12.522,73.382 12.531,73.410 C12.551,73.420 12.570,73.430 12.589,73.439 C12.589,73.459 12.589,73.478 12.589,73.497 C12.618,73.516 12.648,73.536 12.677,73.555 C12.677,73.574 12.677,73.593 12.677,73.613 C12.696,73.622 12.715,73.632 12.735,73.642 C12.735,73.661 12.735,73.680 12.735,73.699 C12.774,73.728 12.812,73.757 12.851,73.786 C12.851,73.805 12.851,73.825 12.851,73.844 C12.880,73.863 12.909,73.882 12.938,73.902 C12.938,73.921 12.938,73.940 12.938,73.960 C12.987,73.998 13.035,74.037 13.084,74.075 C13.084,74.094 13.084,74.114 13.084,74.133 C13.152,74.191 13.219,74.249 13.287,74.306 C13.287,74.326 13.287,74.345 13.287,74.364 C13.336,74.403 13.384,74.441 13.433,74.480 C13.520,74.576 13.607,74.672 13.694,74.769 C13.714,74.769 13.733,74.769 13.752,74.769 C13.811,74.836 13.869,74.904 13.927,74.971 C13.946,74.971 13.966,74.971 13.985,74.971 C14.014,75.010 14.043,75.048 14.072,75.087 C14.092,75.087 14.111,75.087 14.130,75.087 C14.159,75.125 14.189,75.164 14.218,75.202 C14.237,75.202 14.256,75.202 14.276,75.202 C14.295,75.231 14.315,75.260 14.334,75.289 C14.353,75.289 14.373,75.289 14.392,75.289 C14.402,75.308 14.411,75.328 14.421,75.347 C14.441,75.347 14.460,75.347 14.479,75.347 C14.489,75.366 14.499,75.385 14.508,75.405 C14.528,75.405 14.547,75.405 14.567,75.405 C14.576,75.424 14.586,75.443 14.596,75.462 C14.615,75.462 14.634,75.462 14.654,75.462 C14.663,75.482 14.673,75.501 14.683,75.520 C14.722,75.530 14.760,75.540 14.799,75.549 C14.809,75.568 14.819,75.588 14.828,75.607 C14.886,75.626 14.944,75.645 15.003,75.665 C15.012,75.684 15.022,75.703 15.032,75.723 C15.070,75.732 15.109,75.742 15.148,75.751 C15.148,75.761 15.148,75.771 15.148,75.780 C15.167,75.780 15.187,75.780 15.206,75.780 C15.206,75.790 15.206,75.800 15.206,75.809 C15.264,75.829 15.322,75.848 15.381,75.867 C15.381,75.877 15.381,75.886 15.381,75.896 C15.410,75.896 15.439,75.896 15.468,75.896 C15.468,75.906 15.468,75.915 15.468,75.925 C15.507,75.934 15.545,75.944 15.584,75.954 C15.584,75.963 15.584,75.973 15.584,75.983 C15.613,75.983 15.642,75.983 15.671,75.983 C15.671,75.992 15.671,76.002 15.671,76.012 C15.691,76.012 15.710,76.012 15.730,76.012 C15.730,76.021 15.730,76.031 15.730,76.040 C15.759,76.040 15.788,76.040 15.817,76.040 C15.817,76.050 15.817,76.060 15.817,76.069 C15.836,76.069 15.856,76.069 15.875,76.069 C15.875,76.079 15.875,76.089 15.875,76.098 C15.904,76.098 15.933,76.098 15.962,76.098 C15.962,76.108 15.962,76.118 15.962,76.127 C15.991,76.127 16.020,76.127 16.049,76.127 C16.049,76.137 16.049,76.146 16.049,76.156 C16.078,76.156 16.107,76.156 16.137,76.156 C16.137,76.166 16.137,76.175 16.137,76.185 C16.204,76.195 16.272,76.204 16.340,76.214 C16.340,76.224 16.340,76.233 16.340,76.243 C16.379,76.243 16.418,76.243 16.456,76.243 C16.456,76.252 16.456,76.262 16.456,76.272 C16.505,76.272 16.553,76.272 16.602,76.272 C16.602,76.281 16.602,76.291 16.602,76.301 C16.641,76.301 16.679,76.301 16.718,76.301 C16.718,76.310 16.718,76.320 16.718,76.329 C16.767,76.329 16.815,76.329 16.863,76.329 C16.863,76.339 16.863,76.349 16.863,76.358 C16.931,76.358 16.999,76.358 17.067,76.358 C17.067,76.368 17.067,76.378 17.067,76.387 C17.135,76.387 17.203,76.387 17.270,76.387 C17.270,76.397 17.270,76.407 17.270,76.416 C17.367,76.416 17.464,76.416 17.561,76.416 C17.561,76.426 17.561,76.435 17.561,76.445 C17.687,76.445 17.813,76.445 17.939,76.445 C17.939,76.455 17.939,76.464 17.939,76.474 C18.181,76.474 18.424,76.474 18.666,76.474 C18.851,76.526 19.160,76.503 19.393,76.503 C19.887,76.503 20.382,76.503 20.876,76.503 C20.876,76.493 20.876,76.484 20.876,76.474 C21.486,76.484 22.097,76.493 22.707,76.503 C24.122,76.503 25.538,76.503 26.952,76.503 C27.350,76.503 27.747,76.503 28.144,76.503 C28.300,76.493 28.455,76.484 28.610,76.474 C28.771,76.518 29.041,76.503 29.249,76.503 C29.850,76.503 30.294,76.421 30.703,76.243 C30.732,76.243 30.761,76.243 30.790,76.243 C30.790,76.233 30.790,76.224 30.790,76.214 C30.810,76.214 30.829,76.214 30.848,76.214 C30.848,76.204 30.848,76.195 30.848,76.185 C30.936,76.156 31.023,76.127 31.110,76.098 C31.120,76.079 31.130,76.060 31.139,76.040 C31.178,76.031 31.217,76.021 31.256,76.012 C31.256,76.002 31.256,75.992 31.256,75.983 C31.285,75.973 31.314,75.963 31.343,75.954 C31.352,75.934 31.362,75.915 31.372,75.896 C31.391,75.896 31.411,75.896 31.430,75.896 C31.440,75.877 31.449,75.857 31.459,75.838 C31.478,75.838 31.498,75.838 31.517,75.838 C31.537,75.809 31.556,75.780 31.575,75.751 C31.595,75.751 31.614,75.751 31.633,75.751 C31.721,75.655 31.808,75.559 31.895,75.462 C31.982,75.385 32.070,75.308 32.157,75.231 C32.157,75.212 32.157,75.193 32.157,75.173 C32.196,75.145 32.234,75.116 32.273,75.087 C32.273,75.067 32.273,75.048 32.273,75.029 C32.293,75.019 32.312,75.010 32.331,75.000 C32.331,74.981 32.331,74.961 32.331,74.942 C32.351,74.933 32.370,74.923 32.389,74.913 C32.389,74.894 32.389,74.875 32.389,74.855 C32.409,74.846 32.428,74.836 32.448,74.827 C32.448,74.807 32.448,74.788 32.448,74.769 C32.467,74.759 32.486,74.750 32.506,74.740 C32.515,74.701 32.525,74.663 32.535,74.624 C32.554,74.615 32.574,74.605 32.593,74.595 C32.612,74.538 32.632,74.480 32.651,74.422 C32.661,74.422 32.670,74.422 32.680,74.422 C32.680,74.403 32.680,74.383 32.680,74.364 C32.690,74.364 32.700,74.364 32.709,74.364 C32.729,74.306 32.748,74.249 32.767,74.191 C32.777,74.191 32.787,74.191 32.796,74.191 C32.796,74.162 32.796,74.133 32.796,74.104 C32.806,74.104 32.816,74.104 32.826,74.104 C32.826,74.085 32.826,74.066 32.826,74.046 C32.835,74.046 32.845,74.046 32.855,74.046 C32.855,74.017 32.855,73.988 32.855,73.960 C32.864,73.960 32.874,73.960 32.884,73.960 C32.884,73.940 32.884,73.921 32.884,73.902 C32.893,73.902 32.903,73.902 32.913,73.902 C32.922,73.844 32.932,73.786 32.942,73.728 C32.952,73.728 32.961,73.728 32.971,73.728 C32.971,73.709 32.971,73.690 32.971,73.671 C32.981,73.671 32.990,73.671 33.000,73.671 C33.000,73.632 33.000,73.593 33.000,73.555 C33.010,73.555 33.019,73.555 33.029,73.555 C33.029,73.526 33.029,73.497 33.029,73.468 C33.039,73.468 33.048,73.468 33.058,73.468 C33.058,73.439 33.058,73.410 33.058,73.382 C33.068,73.382 33.078,73.382 33.087,73.382 C33.087,73.343 33.087,73.304 33.087,73.266 C33.097,73.266 33.107,73.266 33.116,73.266 C33.116,73.227 33.116,73.189 33.116,73.150 C33.126,73.150 33.136,73.150 33.145,73.150 C33.145,73.112 33.145,73.073 33.145,73.035 C33.155,73.035 33.165,73.035 33.174,73.035 C33.174,72.987 33.174,72.938 33.174,72.890 C33.184,72.890 33.194,72.890 33.204,72.890 C33.204,72.842 33.204,72.794 33.204,72.746 C33.213,72.746 33.223,72.746 33.233,72.746 C33.233,72.698 33.233,72.649 33.233,72.601 C33.242,72.601 33.252,72.601 33.262,72.601 C33.262,72.543 33.262,72.486 33.262,72.428 C33.271,72.428 33.281,72.428 33.291,72.428 C33.291,72.351 33.291,72.274 33.291,72.197 C33.300,72.197 33.310,72.197 33.320,72.197 C33.320,72.119 33.320,72.042 33.320,71.965 C33.330,71.965 33.339,71.965 33.349,71.965 C33.349,71.850 33.349,71.734 33.349,71.618 C33.414,71.385 33.378,71.006 33.378,70.723 C33.378,70.024 33.369,69.329 33.204,68.786 C33.204,68.728 33.204,68.671 33.204,68.613 C33.194,68.613 33.184,68.613 33.174,68.613 C33.174,68.565 33.174,68.516 33.174,68.468 C33.165,68.468 33.155,68.468 33.145,68.468 C33.145,68.430 33.145,68.391 33.145,68.353 C33.136,68.353 33.126,68.353 33.116,68.353 C33.116,68.304 33.116,68.256 33.116,68.208 C33.107,68.208 33.097,68.208 33.087,68.208 C33.087,68.170 33.087,68.131 33.087,68.092 C33.078,68.092 33.068,68.092 33.058,68.092 C33.058,68.054 33.058,68.015 33.058,67.977 C33.048,67.977 33.039,67.977 33.029,67.977 C33.029,67.938 33.029,67.900 33.029,67.861 C33.019,67.861 33.010,67.861 33.000,67.861 C33.000,67.823 33.000,67.784 33.000,67.746 C32.990,67.746 32.981,67.746 32.971,67.746 C32.961,67.678 32.952,67.611 32.942,67.543 C32.932,67.543 32.922,67.543 32.913,67.543 C32.913,67.514 32.913,67.486 32.913,67.457 C32.903,67.457 32.893,67.457 32.884,67.457 C32.884,67.428 32.884,67.399 32.884,67.370 C32.874,67.370 32.864,67.370 32.855,67.370 C32.855,67.341 32.855,67.312 32.855,67.283 C32.845,67.283 32.835,67.283 32.826,67.283 C32.826,67.254 32.826,67.225 32.826,67.197 C32.816,67.197 32.806,67.197 32.796,67.197 C32.796,67.168 32.796,67.139 32.796,67.110 C32.787,67.110 32.777,67.110 32.767,67.110 C32.767,67.081 32.767,67.052 32.767,67.023 C32.758,67.023 32.748,67.023 32.738,67.023 C32.719,66.936 32.700,66.850 32.680,66.763 C32.670,66.763 32.661,66.763 32.651,66.763 C32.651,66.744 32.651,66.724 32.651,66.705 C32.641,66.705 32.632,66.705 32.622,66.705 C32.612,66.647 32.603,66.590 32.593,66.532 C32.583,66.532 32.574,66.532 32.564,66.532 C32.564,66.513 32.564,66.493 32.564,66.474 C32.554,66.474 32.544,66.474 32.535,66.474 C32.535,66.445 32.535,66.416 32.535,66.387 C32.525,66.387 32.515,66.387 32.506,66.387 C32.496,66.349 32.486,66.310 32.477,66.272 C32.467,66.272 32.457,66.272 32.448,66.272 C32.448,66.243 32.448,66.214 32.448,66.185 C32.438,66.185 32.428,66.185 32.419,66.185 C32.409,66.146 32.399,66.108 32.389,66.069 C32.380,66.069 32.370,66.069 32.360,66.069 C32.360,66.040 32.360,66.012 32.360,65.983 C32.351,65.983 32.341,65.983 32.331,65.983 C32.331,65.963 32.331,65.944 32.331,65.925 C32.322,65.925 32.312,65.925 32.302,65.925 C32.302,65.906 32.302,65.886 32.302,65.867 C32.293,65.867 32.283,65.867 32.273,65.867 C32.254,65.809 32.234,65.751 32.215,65.694 C32.205,65.694 32.196,65.694 32.186,65.694 C32.186,65.665 32.186,65.636 32.186,65.607 C32.176,65.607 32.167,65.607 32.157,65.607 C32.137,65.549 32.118,65.491 32.099,65.434 C32.089,65.434 32.079,65.434 32.070,65.434 C32.070,65.414 32.070,65.395 32.070,65.376 C32.060,65.376 32.050,65.376 32.041,65.376 C32.021,65.318 32.002,65.260 31.982,65.202 C31.963,65.193 31.944,65.183 31.924,65.173 C31.924,65.154 31.924,65.135 31.924,65.116 C31.915,65.116 31.905,65.116 31.895,65.116 C31.895,65.096 31.895,65.077 31.895,65.058 C31.885,65.058 31.876,65.058 31.866,65.058 C31.866,65.039 31.866,65.019 31.866,65.000 C31.856,65.000 31.847,65.000 31.837,65.000 C31.837,64.981 31.837,64.961 31.837,64.942 C31.827,64.942 31.818,64.942 31.808,64.942 C31.808,64.923 31.808,64.904 31.808,64.884 C31.789,64.875 31.769,64.865 31.750,64.855 C31.750,64.836 31.750,64.817 31.750,64.798 C31.740,64.798 31.730,64.798 31.721,64.798 C31.721,64.778 31.721,64.759 31.721,64.740 C31.711,64.740 31.701,64.740 31.692,64.740 C31.692,64.721 31.692,64.701 31.692,64.682 C31.682,64.682 31.672,64.682 31.663,64.682 C31.663,64.663 31.663,64.644 31.663,64.624 C31.643,64.615 31.624,64.605 31.604,64.595 C31.604,64.576 31.604,64.557 31.604,64.538 C31.595,64.538 31.585,64.538 31.575,64.538 C31.575,64.518 31.575,64.499 31.575,64.480 C31.556,64.470 31.537,64.461 31.517,64.451 C31.507,64.412 31.498,64.374 31.488,64.335 C31.469,64.326 31.449,64.316 31.430,64.306 C31.430,64.287 31.430,64.268 31.430,64.249 C31.420,64.249 31.411,64.249 31.401,64.249 C31.401,64.229 31.401,64.210 31.401,64.191 C31.381,64.181 31.362,64.171 31.343,64.162 C31.343,64.143 31.343,64.123 31.343,64.104 C31.323,64.094 31.304,64.085 31.285,64.075 C31.285,64.056 31.285,64.037 31.285,64.017 C31.265,64.008 31.246,63.998 31.226,63.988 C31.217,63.950 31.207,63.911 31.197,63.873 C31.188,63.873 31.178,63.873 31.168,63.873 C31.159,63.844 31.149,63.815 31.139,63.786 C31.120,63.776 31.100,63.767 31.081,63.757 C31.081,63.738 31.081,63.719 31.081,63.699 C31.071,63.699 31.062,63.699 31.052,63.699 C31.042,63.671 31.033,63.642 31.023,63.613 C31.004,63.603 30.984,63.593 30.965,63.584 C30.965,63.565 30.965,63.545 30.965,63.526 C30.936,63.507 30.907,63.487 30.878,63.468 C30.878,63.449 30.878,63.430 30.878,63.410 C30.858,63.401 30.839,63.391 30.819,63.382 C30.819,63.362 30.819,63.343 30.819,63.324 C30.790,63.304 30.761,63.285 30.732,63.266 C30.732,63.247 30.732,63.227 30.732,63.208 C30.713,63.198 30.693,63.189 30.674,63.179 C30.674,63.160 30.674,63.141 30.674,63.121 C30.645,63.102 30.616,63.083 30.587,63.064 C30.587,63.044 30.587,63.025 30.587,63.006 C30.558,62.987 30.529,62.967 30.500,62.948 C30.500,62.929 30.500,62.909 30.500,62.890 C30.470,62.871 30.441,62.852 30.412,62.832 C30.412,62.813 30.412,62.794 30.412,62.775 C30.383,62.755 30.354,62.736 30.325,62.717 C30.325,62.697 30.325,62.678 30.325,62.659 C30.306,62.649 30.286,62.640 30.267,62.630 C30.267,62.620 30.267,62.611 30.267,62.601 C30.248,62.592 30.228,62.582 30.209,62.572 C30.209,62.553 30.209,62.534 30.209,62.514 C30.170,62.486 30.131,62.457 30.093,62.428 C30.093,62.408 30.093,62.389 30.093,62.370 C30.073,62.360 30.054,62.351 30.034,62.341 C30.015,62.312 29.996,62.283 29.976,62.254 C29.967,62.254 29.957,62.254 29.947,62.254 C29.947,62.235 29.947,62.216 29.947,62.197 C29.899,62.158 29.850,62.119 29.802,62.081 C29.802,62.062 29.802,62.042 29.802,62.023 C29.744,61.975 29.685,61.927 29.627,61.879 C29.627,61.859 29.627,61.840 29.627,61.821 C29.540,61.744 29.453,61.667 29.366,61.590 C29.356,61.561 29.346,61.532 29.337,61.503 C29.211,61.387 29.085,61.272 28.959,61.156 C28.959,61.137 28.959,61.118 28.959,61.098 C28.900,61.050 28.842,61.002 28.784,60.954 C28.619,60.780 28.455,60.607 28.290,60.434 C28.270,60.434 28.251,60.434 28.232,60.434 C28.106,60.299 27.980,60.164 27.854,60.029 C27.834,60.029 27.815,60.029 27.796,60.029 C27.728,59.952 27.660,59.875 27.592,59.798 C27.573,59.798 27.553,59.798 27.534,59.798 C27.476,59.730 27.418,59.663 27.359,59.595 C27.340,59.595 27.321,59.595 27.301,59.595 C27.292,59.576 27.282,59.557 27.272,59.538 C27.243,59.518 27.214,59.499 27.185,59.480 C27.185,59.470 27.185,59.460 27.185,59.451 C27.166,59.451 27.146,59.451 27.127,59.451 C27.088,59.403 27.049,59.355 27.011,59.306 C26.991,59.306 26.972,59.306 26.952,59.306 C26.914,59.258 26.875,59.210 26.836,59.162 C26.817,59.162 26.797,59.162 26.778,59.162 C26.749,59.123 26.720,59.085 26.691,59.046 C26.671,59.046 26.652,59.046 26.633,59.046 C26.604,59.008 26.574,58.969 26.545,58.931 C26.526,58.931 26.507,58.931 26.487,58.931 C26.468,58.902 26.448,58.873 26.429,58.844 C26.410,58.844 26.390,58.844 26.371,58.844 C26.342,58.805 26.313,58.767 26.284,58.728 C26.264,58.728 26.245,58.728 26.226,58.728 C26.206,58.699 26.187,58.671 26.167,58.642 C26.148,58.642 26.129,58.642 26.109,58.642 C26.090,58.613 26.070,58.584 26.051,58.555 C26.032,58.555 26.012,58.555 25.993,58.555 C25.974,58.526 25.954,58.497 25.935,58.468 C25.915,58.468 25.896,58.468 25.877,58.468 C25.857,58.439 25.838,58.410 25.819,58.382 C25.799,58.382 25.780,58.382 25.760,58.382 C25.751,58.362 25.741,58.343 25.731,58.324 C25.712,58.324 25.693,58.324 25.673,58.324 C25.654,58.295 25.634,58.266 25.615,58.237 C25.596,58.237 25.576,58.237 25.557,58.237 C25.547,58.218 25.537,58.198 25.528,58.179 C25.508,58.179 25.489,58.179 25.470,58.179 C25.450,58.150 25.431,58.121 25.411,58.092 C25.392,58.092 25.373,58.092 25.353,58.092 C25.344,58.073 25.334,58.054 25.324,58.035 C25.295,58.025 25.266,58.015 25.237,58.006 C25.237,57.996 25.237,57.987 25.237,57.977 C25.218,57.977 25.198,57.977 25.179,57.977 C25.169,57.958 25.159,57.938 25.150,57.919 C25.130,57.919 25.111,57.919 25.092,57.919 C25.082,57.900 25.072,57.881 25.063,57.861 C25.043,57.861 25.024,57.861 25.004,57.861 C24.995,57.842 24.985,57.823 24.975,57.803 C24.956,57.803 24.937,57.803 24.917,57.803 C24.907,57.784 24.898,57.765 24.888,57.746 C24.869,57.746 24.849,57.746 24.830,57.746 C24.820,57.726 24.811,57.707 24.801,57.688 C24.781,57.688 24.762,57.688 24.743,57.688 C24.733,57.669 24.723,57.649 24.714,57.630 C24.694,57.630 24.675,57.630 24.656,57.630 C24.646,57.611 24.636,57.592 24.626,57.572 C24.607,57.572 24.588,57.572 24.568,57.572 C24.559,57.553 24.549,57.534 24.539,57.514 C24.520,57.514 24.500,57.514 24.481,57.514 C24.471,57.495 24.462,57.476 24.452,57.457 C24.413,57.447 24.374,57.437 24.336,57.428 C24.326,57.408 24.316,57.389 24.307,57.370 C24.287,57.370 24.268,57.370 24.248,57.370 C24.239,57.351 24.229,57.331 24.219,57.312 C24.200,57.312 24.181,57.312 24.161,57.312 C24.152,57.293 24.142,57.274 24.132,57.254 C24.093,57.245 24.055,57.235 24.016,57.225 C24.006,57.206 23.996,57.187 23.987,57.168 C23.948,57.158 23.909,57.148 23.870,57.139 C23.861,57.119 23.851,57.100 23.841,57.081 C23.803,57.071 23.764,57.062 23.725,57.052 C23.715,57.033 23.706,57.013 23.696,56.994 C23.638,56.975 23.580,56.956 23.522,56.936 C23.512,56.917 23.502,56.898 23.493,56.879 C23.434,56.859 23.376,56.840 23.318,56.821 C23.308,56.802 23.299,56.782 23.289,56.763 C23.231,56.744 23.173,56.724 23.115,56.705 C23.105,56.686 23.095,56.667 23.085,56.647 C23.066,56.647 23.047,56.647 23.027,56.647 C23.027,56.638 23.027,56.628 23.027,56.618 C23.008,56.618 22.989,56.618 22.969,56.618 C22.969,56.609 22.969,56.599 22.969,56.590 C22.950,56.590 22.930,56.590 22.911,56.590 C22.911,56.580 22.911,56.570 22.911,56.561 C22.892,56.561 22.872,56.561 22.853,56.561 C22.853,56.551 22.853,56.541 22.853,56.532 C22.833,56.532 22.814,56.532 22.795,56.532 C22.785,56.513 22.775,56.493 22.766,56.474 C22.611,56.407 22.455,56.339 22.300,56.272 C22.300,56.262 22.300,56.252 22.300,56.243 C22.242,56.224 22.184,56.204 22.126,56.185 C22.126,56.175 22.126,56.166 22.126,56.156 C22.087,56.146 22.048,56.137 22.010,56.127 C22.010,56.118 22.010,56.108 22.010,56.098 C21.971,56.089 21.932,56.079 21.893,56.069 C21.893,56.060 21.893,56.050 21.893,56.040 C21.874,56.040 21.855,56.040 21.835,56.040 C21.835,56.031 21.835,56.021 21.835,56.012 C21.816,56.012 21.796,56.012 21.777,56.012 C21.777,56.002 21.777,55.992 21.777,55.983 C21.758,55.983 21.738,55.983 21.719,55.983 C21.719,55.973 21.719,55.963 21.719,55.954 C21.700,55.954 21.680,55.954 21.661,55.954 C21.661,55.944 21.661,55.934 21.661,55.925 C21.641,55.925 21.622,55.925 21.603,55.925 C21.603,55.915 21.603,55.906 21.603,55.896 C21.544,55.877 21.486,55.857 21.428,55.838 C21.428,55.829 21.428,55.819 21.428,55.809 C21.370,55.790 21.312,55.771 21.254,55.751 C21.254,55.742 21.254,55.732 21.254,55.723 C21.225,55.723 21.196,55.723 21.167,55.723 C21.167,55.713 21.167,55.703 21.167,55.694 C21.147,55.694 21.128,55.694 21.108,55.694 C21.108,55.684 21.108,55.674 21.108,55.665 C21.070,55.655 21.031,55.645 20.992,55.636 C20.992,55.626 20.992,55.617 20.992,55.607 C20.973,55.607 20.953,55.607 20.934,55.607 C20.934,55.597 20.934,55.588 20.934,55.578 C20.915,55.578 20.895,55.578 20.876,55.578 C20.876,55.568 20.876,55.559 20.876,55.549 C20.856,55.549 20.837,55.549 20.818,55.549 C20.818,55.540 20.818,55.530 20.818,55.520 C20.798,55.520 20.779,55.520 20.759,55.520 C20.759,55.511 20.759,55.501 20.759,55.491 C20.740,55.491 20.721,55.491 20.701,55.491 C20.701,55.482 20.701,55.472 20.701,55.462 C20.643,55.443 20.585,55.424 20.527,55.405 C20.527,55.395 20.527,55.385 20.527,55.376 C20.488,55.366 20.449,55.356 20.411,55.347 C20.411,55.337 20.411,55.328 20.411,55.318 C20.372,55.308 20.333,55.299 20.294,55.289 C20.294,55.279 20.294,55.270 20.294,55.260 C20.256,55.250 20.217,55.241 20.178,55.231 C20.178,55.222 20.178,55.212 20.178,55.202 C20.159,55.202 20.139,55.202 20.120,55.202 C20.120,55.193 20.120,55.183 20.120,55.173 C20.100,55.173 20.081,55.173 20.062,55.173 C20.062,55.164 20.062,55.154 20.062,55.145 C20.042,55.145 20.023,55.145 20.004,55.145 C20.004,55.135 20.004,55.125 20.004,55.116 C19.984,55.116 19.965,55.116 19.945,55.116 C19.945,55.106 19.945,55.096 19.945,55.087 C19.887,55.067 19.829,55.048 19.771,55.029 C19.761,55.010 19.752,54.990 19.742,54.971 C19.722,54.971 19.703,54.971 19.684,54.971 C19.684,54.961 19.684,54.952 19.684,54.942 C19.664,54.942 19.645,54.942 19.626,54.942 C19.616,54.923 19.606,54.904 19.596,54.884 C19.538,54.865 19.480,54.846 19.422,54.827 C19.412,54.807 19.403,54.788 19.393,54.769 C19.354,54.759 19.315,54.750 19.277,54.740 C19.267,54.721 19.257,54.701 19.248,54.682 C19.209,54.672 19.170,54.663 19.131,54.653 C19.122,54.634 19.112,54.615 19.102,54.595 C19.063,54.586 19.025,54.576 18.986,54.566 C18.976,54.547 18.967,54.528 18.957,54.509 C18.918,54.499 18.879,54.489 18.841,54.480 C18.831,54.461 18.821,54.441 18.811,54.422 C18.792,54.422 18.773,54.422 18.753,54.422 C18.753,54.412 18.753,54.403 18.753,54.393 C18.734,54.393 18.715,54.393 18.695,54.393 C18.695,54.383 18.695,54.374 18.695,54.364 C18.676,54.364 18.656,54.364 18.637,54.364 C18.637,54.355 18.637,54.345 18.637,54.335 C18.618,54.335 18.598,54.335 18.579,54.335 C18.569,54.316 18.559,54.297 18.550,54.277 C18.530,54.277 18.511,54.277 18.492,54.277 C18.492,54.268 18.492,54.258 18.492,54.249 C18.472,54.249 18.453,54.249 18.433,54.249 C18.433,54.239 18.433,54.229 18.433,54.220 C18.414,54.220 18.395,54.220 18.375,54.220 C18.366,54.200 18.356,54.181 18.346,54.162 C18.327,54.162 18.307,54.162 18.288,54.162 C18.278,54.143 18.269,54.123 18.259,54.104 C18.240,54.104 18.220,54.104 18.201,54.104 C18.191,54.085 18.181,54.066 18.172,54.046 C18.152,54.046 18.133,54.046 18.114,54.046 C18.104,54.027 18.094,54.008 18.085,53.988 C18.065,53.988 18.046,53.988 18.026,53.988 C18.017,53.969 18.007,53.950 17.997,53.931 C17.978,53.931 17.959,53.931 17.939,53.931 C17.930,53.911 17.920,53.892 17.910,53.873 C17.891,53.873 17.871,53.873 17.852,53.873 C17.852,53.863 17.852,53.854 17.852,53.844 C17.823,53.834 17.794,53.825 17.765,53.815 C17.755,53.796 17.745,53.776 17.736,53.757 C17.716,53.757 17.697,53.757 17.678,53.757 C17.658,53.728 17.639,53.699 17.619,53.671 C17.600,53.671 17.581,53.671 17.561,53.671 C17.561,53.661 17.561,53.651 17.561,53.642 C17.532,53.632 17.503,53.622 17.474,53.613 C17.464,53.593 17.455,53.574 17.445,53.555 C17.426,53.555 17.406,53.555 17.387,53.555 C17.367,53.526 17.348,53.497 17.329,53.468 C17.309,53.468 17.290,53.468 17.270,53.468 C17.261,53.449 17.251,53.430 17.241,53.410 C17.222,53.410 17.203,53.410 17.183,53.410 C17.174,53.391 17.164,53.372 17.154,53.353 C17.135,53.353 17.115,53.353 17.096,53.353 C17.077,53.324 17.057,53.295 17.038,53.266 C17.019,53.266 16.999,53.266 16.980,53.266 C16.970,53.247 16.960,53.227 16.951,53.208 C16.931,53.208 16.912,53.208 16.893,53.208 C16.883,53.189 16.873,53.170 16.863,53.150 C16.834,53.141 16.805,53.131 16.776,53.121 C16.757,53.092 16.737,53.064 16.718,53.035 C16.699,53.035 16.679,53.035 16.660,53.035 C16.641,53.006 16.621,52.977 16.602,52.948 C16.582,52.948 16.563,52.948 16.544,52.948 C16.524,52.919 16.505,52.890 16.485,52.861 C16.466,52.861 16.447,52.861 16.427,52.861 C16.408,52.832 16.389,52.803 16.369,52.775 C16.350,52.775 16.330,52.775 16.311,52.775 C16.292,52.746 16.272,52.717 16.253,52.688 C16.233,52.688 16.214,52.688 16.195,52.688 C16.166,52.649 16.137,52.611 16.107,52.572 C16.078,52.563 16.049,52.553 16.020,52.543 C16.011,52.524 16.001,52.505 15.991,52.486 C15.972,52.486 15.952,52.486 15.933,52.486 C15.923,52.466 15.914,52.447 15.904,52.428 C15.894,52.428 15.885,52.428 15.875,52.428 C15.865,52.408 15.856,52.389 15.846,52.370 C15.826,52.370 15.807,52.370 15.788,52.370 C15.759,52.331 15.730,52.293 15.700,52.254 C15.681,52.254 15.662,52.254 15.642,52.254 C15.604,52.206 15.565,52.158 15.526,52.110 C15.507,52.110 15.487,52.110 15.468,52.110 C15.429,52.062 15.390,52.013 15.352,51.965 C15.332,51.965 15.313,51.965 15.293,51.965 C15.255,51.917 15.216,51.869 15.177,51.821 C15.158,51.821 15.138,51.821 15.119,51.821 C15.070,51.763 15.022,51.705 14.974,51.647 C14.954,51.647 14.935,51.647 14.915,51.647 C14.857,51.580 14.799,51.513 14.741,51.445 C14.722,51.445 14.702,51.445 14.683,51.445 C14.605,51.358 14.528,51.272 14.450,51.185 C14.431,51.185 14.411,51.185 14.392,51.185 C14.392,51.175 14.392,51.166 14.392,51.156 C14.353,51.127 14.315,51.098 14.276,51.069 C14.198,50.983 14.121,50.896 14.043,50.809 C14.024,50.809 14.004,50.809 13.985,50.809 C13.878,50.694 13.772,50.578 13.665,50.462 C13.444,50.242 13.212,50.054 13.026,49.798 C12.929,49.711 12.832,49.624 12.735,49.538 C12.667,49.451 12.599,49.364 12.531,49.277 C12.483,49.239 12.434,49.200 12.386,49.162 C12.386,49.143 12.386,49.123 12.386,49.104 C12.318,49.046 12.250,48.988 12.182,48.931 C12.182,48.911 12.182,48.892 12.182,48.873 C12.124,48.825 12.066,48.776 12.008,48.728 C12.008,48.709 12.008,48.690 12.008,48.671 C11.959,48.632 11.911,48.593 11.863,48.555 C11.863,48.536 11.863,48.516 11.863,48.497 C11.814,48.459 11.766,48.420 11.717,48.382 C11.717,48.362 11.717,48.343 11.717,48.324 C11.698,48.314 11.678,48.304 11.659,48.295 C11.659,48.285 11.659,48.276 11.659,48.266 C11.640,48.256 11.620,48.247 11.601,48.237 C11.601,48.218 11.601,48.198 11.601,48.179 C11.562,48.150 11.523,48.121 11.485,48.092 C11.485,48.073 11.485,48.054 11.485,48.035 C11.446,48.006 11.407,47.977 11.368,47.948 C11.368,47.929 11.368,47.909 11.368,47.890 C11.339,47.871 11.310,47.852 11.281,47.832 C11.281,47.813 11.281,47.794 11.281,47.775 C11.252,47.755 11.223,47.736 11.194,47.717 C11.194,47.697 11.194,47.678 11.194,47.659 C11.165,47.640 11.136,47.620 11.107,47.601 C11.107,47.582 11.107,47.563 11.107,47.543 C11.078,47.524 11.048,47.505 11.019,47.486 C11.010,47.457 10.1000,47.428 10.990,47.399 C10.971,47.389 10.952,47.380 10.932,47.370 C10.932,47.351 10.932,47.331 10.932,47.312 C10.913,47.303 10.893,47.293 10.874,47.283 C10.874,47.264 10.874,47.245 10.874,47.225 C10.845,47.206 10.816,47.187 10.787,47.168 C10.787,47.148 10.787,47.129 10.787,47.110 C10.767,47.100 10.748,47.091 10.729,47.081 C10.729,47.062 10.729,47.042 10.729,47.023 C10.700,47.004 10.670,46.985 10.641,46.965 C10.641,46.946 10.641,46.927 10.641,46.908 C10.622,46.898 10.603,46.888 10.583,46.879 C10.574,46.850 10.564,46.821 10.554,46.792 C10.544,46.792 10.535,46.792 10.525,46.792 C10.525,46.773 10.525,46.753 10.525,46.734 C10.506,46.724 10.486,46.715 10.467,46.705 C10.467,46.686 10.467,46.667 10.467,46.647 C10.448,46.638 10.428,46.628 10.409,46.618 C10.409,46.599 10.409,46.580 10.409,46.561 C10.389,46.551 10.370,46.541 10.351,46.532 C10.351,46.513 10.351,46.493 10.351,46.474 C10.331,46.464 10.312,46.455 10.293,46.445 C10.293,46.426 10.293,46.407 10.293,46.387 C10.273,46.378 10.254,46.368 10.234,46.358 C10.234,46.339 10.234,46.320 10.234,46.301 C10.215,46.291 10.196,46.281 10.176,46.272 C10.167,46.233 10.157,46.195 10.147,46.156 C10.128,46.146 10.108,46.137 10.089,46.127 C10.089,46.108 10.089,46.089 10.089,46.069 C10.070,46.060 10.050,46.050 10.031,46.040 C10.021,46.002 10.011,45.963 10.002,45.925 C9.982,45.915 9.963,45.906 9.944,45.896 C9.934,45.857 9.924,45.819 9.915,45.780 C9.895,45.771 9.876,45.761 9.856,45.751 C9.847,45.713 9.837,45.674 9.827,45.636 C9.808,45.626 9.789,45.617 9.769,45.607 C9.750,45.549 9.730,45.491 9.711,45.434 C9.692,45.424 9.672,45.414 9.653,45.405 C9.633,45.347 9.614,45.289 9.595,45.231 C9.575,45.222 9.556,45.212 9.537,45.202 C9.537,45.183 9.537,45.164 9.537,45.145 C9.527,45.145 9.517,45.145 9.507,45.145 C9.507,45.125 9.507,45.106 9.507,45.087 C9.498,45.087 9.488,45.087 9.478,45.087 C9.478,45.067 9.478,45.048 9.478,45.029 C9.469,45.029 9.459,45.029 9.449,45.029 C9.449,45.010 9.449,44.990 9.449,44.971 C9.440,44.971 9.430,44.971 9.420,44.971 C9.411,44.933 9.401,44.894 9.391,44.855 C9.372,44.846 9.352,44.836 9.333,44.827 C9.333,44.807 9.333,44.788 9.333,44.769 C9.323,44.769 9.314,44.769 9.304,44.769 C9.304,44.750 9.304,44.730 9.304,44.711 C9.294,44.711 9.285,44.711 9.275,44.711 C9.275,44.692 9.275,44.672 9.275,44.653 C9.265,44.653 9.256,44.653 9.246,44.653 C9.246,44.634 9.246,44.615 9.246,44.595 C9.236,44.595 9.226,44.595 9.217,44.595 C9.217,44.576 9.217,44.557 9.217,44.538 C9.207,44.538 9.197,44.538 9.188,44.538 C9.188,44.518 9.188,44.499 9.188,44.480 C9.178,44.480 9.168,44.480 9.159,44.480 C9.159,44.461 9.159,44.441 9.159,44.422 C9.149,44.422 9.139,44.422 9.130,44.422 C9.130,44.403 9.130,44.383 9.130,44.364 C9.120,44.364 9.110,44.364 9.100,44.364 C9.081,44.306 9.062,44.249 9.042,44.191 C9.033,44.191 9.023,44.191 9.013,44.191 C9.013,44.162 9.013,44.133 9.013,44.104 C9.004,44.104 8.994,44.104 8.984,44.104 C8.984,44.085 8.984,44.066 8.984,44.046 C8.974,44.046 8.965,44.046 8.955,44.046 C8.936,43.988 8.916,43.931 8.897,43.873 C8.887,43.873 8.878,43.873 8.868,43.873 C8.868,43.844 8.868,43.815 8.868,43.786 C8.858,43.786 8.848,43.786 8.839,43.786 C8.839,43.767 8.839,43.748 8.839,43.728 C8.829,43.728 8.819,43.728 8.810,43.728 C8.810,43.709 8.810,43.690 8.810,43.671 C8.800,43.671 8.790,43.671 8.781,43.671 C8.781,43.651 8.781,43.632 8.781,43.613 C8.771,43.613 8.761,43.613 8.752,43.613 C8.752,43.584 8.752,43.555 8.752,43.526 C8.742,43.526 8.732,43.526 8.722,43.526 C8.722,43.507 8.722,43.487 8.722,43.468 C8.713,43.468 8.703,43.468 8.693,43.468 C8.693,43.439 8.693,43.410 8.693,43.382 C8.684,43.382 8.674,43.382 8.664,43.382 C8.655,43.343 8.645,43.304 8.635,43.266 C8.626,43.266 8.616,43.266 8.606,43.266 C8.606,43.237 8.606,43.208 8.606,43.179 C8.596,43.179 8.587,43.179 8.577,43.179 C8.577,43.160 8.577,43.141 8.577,43.121 C8.567,43.121 8.558,43.121 8.548,43.121 C8.538,43.064 8.529,43.006 8.519,42.948 C8.509,42.948 8.500,42.948 8.490,42.948 C8.490,42.929 8.490,42.909 8.490,42.890 C8.480,42.890 8.470,42.890 8.461,42.890 C8.315,42.447 8.170,42.004 8.025,41.561 C7.918,41.089 7.811,40.617 7.705,40.145 C7.705,40.087 7.705,40.029 7.705,39.971 C7.695,39.971 7.685,39.971 7.676,39.971 C7.676,39.904 7.676,39.836 7.676,39.769 C7.666,39.769 7.656,39.769 7.647,39.769 C7.647,39.701 7.647,39.634 7.647,39.566 C7.637,39.566 7.627,39.566 7.618,39.566 C7.618,39.480 7.618,39.393 7.618,39.306 C7.608,39.306 7.598,39.306 7.589,39.306 C7.589,39.210 7.589,39.114 7.589,39.017 C7.579,39.017 7.569,39.017 7.559,39.017 C7.559,38.892 7.559,38.767 7.559,38.642 C7.494,38.408 7.530,38.029 7.530,37.746 C7.540,37.370 7.550,36.994 7.559,36.618 C7.569,36.618 7.579,36.618 7.589,36.618 C7.589,36.522 7.589,36.426 7.589,36.329 C7.598,36.329 7.608,36.329 7.618,36.329 C7.618,36.252 7.618,36.175 7.618,36.098 C7.627,36.098 7.637,36.098 7.647,36.098 C7.647,36.031 7.647,35.963 7.647,35.896 C7.656,35.896 7.666,35.896 7.676,35.896 C7.676,35.829 7.676,35.761 7.676,35.694 C7.685,35.694 7.695,35.694 7.705,35.694 C7.705,35.636 7.705,35.578 7.705,35.520 C7.715,35.520 7.724,35.520 7.734,35.520 C7.744,35.424 7.753,35.328 7.763,35.231 C7.773,35.231 7.782,35.231 7.792,35.231 C7.792,35.183 7.792,35.135 7.792,35.087 C7.802,35.087 7.811,35.087 7.821,35.087 C7.821,35.039 7.821,34.990 7.821,34.942 C7.831,34.942 7.841,34.942 7.850,34.942 C7.850,34.904 7.850,34.865 7.850,34.827 C7.860,34.827 7.870,34.827 7.879,34.827 C7.879,34.788 7.879,34.750 7.879,34.711 C7.889,34.711 7.899,34.711 7.908,34.711 C7.908,34.663 7.908,34.615 7.908,34.566 C7.918,34.566 7.928,34.566 7.937,34.566 C7.937,34.538 7.937,34.509 7.937,34.480 C7.947,34.480 7.957,34.480 7.967,34.480 C7.976,34.403 7.986,34.326 7.996,34.249 C8.005,34.249 8.015,34.249 8.025,34.249 C8.025,34.210 8.025,34.171 8.025,34.133 C8.034,34.133 8.044,34.133 8.054,34.133 C8.063,34.066 8.073,33.998 8.083,33.931 C8.093,33.931 8.102,33.931 8.112,33.931 C8.112,33.902 8.112,33.873 8.112,33.844 C8.122,33.844 8.131,33.844 8.141,33.844 C8.141,33.815 8.141,33.786 8.141,33.757 C8.151,33.757 8.160,33.757 8.170,33.757 C8.180,33.699 8.189,33.642 8.199,33.584 C8.209,33.584 8.219,33.584 8.228,33.584 C8.228,33.565 8.228,33.545 8.228,33.526 C8.238,33.526 8.248,33.526 8.257,33.526 C8.267,33.468 8.277,33.410 8.286,33.353 C8.296,33.353 8.306,33.353 8.315,33.353 C8.325,33.304 8.335,33.256 8.344,33.208 C8.354,33.208 8.364,33.208 8.374,33.208 C8.374,33.189 8.374,33.170 8.374,33.150 C8.383,33.150 8.393,33.150 8.403,33.150 C8.403,33.121 8.403,33.092 8.403,33.064 C8.412,33.064 8.422,33.064 8.432,33.064 C8.451,33.006 8.470,32.948 8.490,32.890 C8.500,32.890 8.509,32.890 8.519,32.890 C8.519,32.871 8.519,32.852 8.519,32.832 C8.529,32.832 8.538,32.832 8.548,32.832 C8.548,32.803 8.548,32.775 8.548,32.746 C8.558,32.746 8.567,32.746 8.577,32.746 C8.587,32.707 8.596,32.669 8.606,32.630 C8.616,32.630 8.626,32.630 8.635,32.630 C8.645,32.592 8.655,32.553 8.664,32.514 C8.684,32.505 8.703,32.495 8.722,32.486 C8.722,32.466 8.722,32.447 8.722,32.428 C8.732,32.428 8.742,32.428 8.752,32.428 C8.752,32.408 8.752,32.389 8.752,32.370 C8.761,32.370 8.771,32.370 8.781,32.370 C8.781,32.351 8.781,32.331 8.781,32.312 C8.790,32.312 8.800,32.312 8.810,32.312 C8.810,32.293 8.810,32.274 8.810,32.254 C8.829,32.245 8.848,32.235 8.868,32.225 C8.878,32.187 8.887,32.148 8.897,32.110 C8.916,32.100 8.936,32.091 8.955,32.081 C8.965,32.042 8.974,32.004 8.984,31.965 C8.994,31.965 9.004,31.965 9.013,31.965 C9.023,31.936 9.033,31.908 9.042,31.879 C9.062,31.869 9.081,31.859 9.100,31.850 C9.100,31.830 9.100,31.811 9.100,31.792 C9.110,31.792 9.120,31.792 9.130,31.792 C9.139,31.763 9.149,31.734 9.159,31.705 C9.178,31.696 9.197,31.686 9.217,31.676 C9.217,31.657 9.217,31.638 9.217,31.618 C9.246,31.599 9.275,31.580 9.304,31.561 C9.304,31.541 9.304,31.522 9.304,31.503 C9.333,31.484 9.362,31.464 9.391,31.445 C9.391,31.426 9.391,31.407 9.391,31.387 C9.420,31.368 9.449,31.349 9.478,31.329 C9.478,31.310 9.478,31.291 9.478,31.272 C9.527,31.233 9.575,31.195 9.624,31.156 C9.624,31.137 9.624,31.118 9.624,31.098 C9.692,31.040 9.759,30.983 9.827,30.925 C9.827,30.906 9.827,30.886 9.827,30.867 C9.885,30.819 9.944,30.771 10.002,30.723 C10.099,30.617 10.196,30.511 10.293,30.405 C10.312,30.405 10.331,30.405 10.351,30.405 C10.409,30.337 10.467,30.270 10.525,30.202 C10.554,30.193 10.583,30.183 10.612,30.173 C10.632,30.145 10.651,30.116 10.670,30.087 C10.690,30.087 10.709,30.087 10.729,30.087 C10.748,30.058 10.767,30.029 10.787,30.000 C10.806,30.000 10.826,30.000 10.845,30.000 C10.864,29.971 10.884,29.942 10.903,29.913 C10.922,29.913 10.942,29.913 10.961,29.913 C10.981,29.884 11.000,29.855 11.019,29.827 C11.039,29.827 11.058,29.827 11.078,29.827 C11.087,29.807 11.097,29.788 11.107,29.769 C11.126,29.769 11.145,29.769 11.165,29.769 C11.174,29.750 11.184,29.730 11.194,29.711 C11.223,29.701 11.252,29.692 11.281,29.682 C11.281,29.672 11.281,29.663 11.281,29.653 C11.320,29.644 11.359,29.634 11.397,29.624 C11.407,29.605 11.417,29.586 11.426,29.566 C11.465,29.557 11.504,29.547 11.543,29.538 C11.552,29.518 11.562,29.499 11.572,29.480 C11.591,29.480 11.611,29.480 11.630,29.480 C11.630,29.470 11.630,29.460 11.630,29.451 C11.649,29.451 11.669,29.451 11.688,29.451 C11.688,29.441 11.688,29.432 11.688,29.422 C11.707,29.422 11.727,29.422 11.746,29.422 C11.746,29.412 11.746,29.403 11.746,29.393 C11.766,29.393 11.785,29.393 11.804,29.393 C11.804,29.383 11.804,29.374 11.804,29.364 C11.824,29.364 11.843,29.364 11.863,29.364 C11.863,29.355 11.863,29.345 11.863,29.335 C11.882,29.335 11.901,29.335 11.921,29.335 C11.921,29.326 11.921,29.316 11.921,29.306 C11.940,29.306 11.959,29.306 11.979,29.306 C11.979,29.297 11.979,29.287 11.979,29.277 C11.998,29.277 12.018,29.277 12.037,29.277 C12.037,29.268 12.037,29.258 12.037,29.249 C12.056,29.249 12.076,29.249 12.095,29.249 C12.095,29.239 12.095,29.229 12.095,29.220 C12.153,29.200 12.211,29.181 12.270,29.162 C12.270,29.152 12.270,29.143 12.270,29.133 C12.299,29.133 12.328,29.133 12.357,29.133 C12.357,29.123 12.357,29.114 12.357,29.104 C12.376,29.104 12.396,29.104 12.415,29.104 C12.415,29.094 12.415,29.085 12.415,29.075 C12.754,28.969 13.093,28.863 13.433,28.757 C13.481,28.757 13.530,28.757 13.578,28.757 C13.717,28.715 13.929,28.682 14.072,28.642 C14.159,28.642 14.247,28.642 14.334,28.642 C14.334,28.632 14.334,28.622 14.334,28.613 C14.877,28.613 15.419,28.613 15.962,28.613 C17.309,28.613 18.657,28.613 20.004,28.613 C21.641,28.613 23.279,28.613 24.917,28.613 C25.402,28.613 25.886,28.613 26.371,28.613 C26.371,28.622 26.371,28.632 26.371,28.642 C26.526,28.642 26.681,28.642 26.836,28.642 C26.836,28.651 26.836,28.661 26.836,28.671 C26.962,28.671 27.088,28.671 27.214,28.671 C27.214,28.680 27.214,28.690 27.214,28.699 C27.311,28.699 27.408,28.699 27.505,28.699 C27.505,28.709 27.505,28.719 27.505,28.728 C27.582,28.728 27.660,28.728 27.737,28.728 C27.737,28.738 27.737,28.748 27.737,28.757 C27.883,28.767 28.028,28.776 28.174,28.786 C28.590,28.863 29.007,28.940 29.424,29.017 C29.424,29.027 29.424,29.037 29.424,29.046 C29.501,29.056 29.579,29.066 29.656,29.075 C29.656,29.085 29.656,29.094 29.656,29.104 C29.734,29.114 29.811,29.123 29.889,29.133 C29.889,29.143 29.889,29.152 29.889,29.162 C29.957,29.171 30.025,29.181 30.093,29.191 C30.093,29.200 30.093,29.210 30.093,29.220 C30.122,29.220 30.151,29.220 30.180,29.220 C30.180,29.229 30.180,29.239 30.180,29.249 C30.218,29.249 30.257,29.249 30.296,29.249 C30.296,29.258 30.296,29.268 30.296,29.277 C30.325,29.277 30.354,29.277 30.383,29.277 C30.383,29.287 30.383,29.297 30.383,29.306 C30.412,29.306 30.441,29.306 30.470,29.306 C30.470,29.316 30.470,29.326 30.470,29.335 C30.500,29.335 30.529,29.335 30.558,29.335 C30.558,29.345 30.558,29.355 30.558,29.364 C30.587,29.364 30.616,29.364 30.645,29.364 C30.645,29.374 30.645,29.383 30.645,29.393 C30.703,29.403 30.761,29.412 30.819,29.422 C30.819,29.432 30.819,29.441 30.819,29.451 C30.839,29.451 30.858,29.451 30.878,29.451 C30.878,29.460 30.878,29.470 30.878,29.480 C30.936,29.489 30.994,29.499 31.052,29.509 C31.052,29.518 31.052,29.528 31.052,29.538 C31.071,29.538 31.091,29.538 31.110,29.538 C31.110,29.547 31.110,29.557 31.110,29.566 C31.139,29.566 31.168,29.566 31.197,29.566 C31.197,29.576 31.197,29.586 31.197,29.595 C31.217,29.595 31.236,29.595 31.256,29.595 C31.256,29.605 31.256,29.615 31.256,29.624 C31.285,29.624 31.314,29.624 31.343,29.624 C31.343,29.634 31.343,29.644 31.343,29.653 C31.381,29.663 31.420,29.672 31.459,29.682 C31.459,29.692 31.459,29.701 31.459,29.711 C31.488,29.711 31.517,29.711 31.546,29.711 C31.546,29.721 31.546,29.730 31.546,29.740 C31.604,29.759 31.663,29.778 31.721,29.798 C31.721,29.807 31.721,29.817 31.721,29.827 C31.740,29.827 31.759,29.827 31.779,29.827 C31.779,29.836 31.779,29.846 31.779,29.855 C31.798,29.855 31.818,29.855 31.837,29.855 C31.837,29.865 31.837,29.875 31.837,29.884 C31.856,29.884 31.876,29.884 31.895,29.884 C31.895,29.894 31.895,29.904 31.895,29.913 C31.915,29.913 31.934,29.913 31.953,29.913 C31.953,29.923 31.953,29.933 31.953,29.942 C31.973,29.942 31.992,29.942 32.011,29.942 C32.011,29.952 32.011,29.961 32.011,29.971 C32.031,29.971 32.050,29.971 32.070,29.971 C32.070,29.981 32.070,29.990 32.070,30.000 C32.089,30.000 32.108,30.000 32.128,30.000 C32.137,30.019 32.147,30.039 32.157,30.058 C32.215,30.077 32.273,30.096 32.331,30.116 C32.341,30.135 32.351,30.154 32.360,30.173 C32.380,30.173 32.399,30.173 32.419,30.173 C32.419,30.183 32.419,30.193 32.419,30.202 C32.438,30.202 32.457,30.202 32.477,30.202 C32.486,30.222 32.496,30.241 32.506,30.260 C32.525,30.260 32.544,30.260 32.564,30.260 C32.574,30.279 32.583,30.299 32.593,30.318 C32.612,30.318 32.632,30.318 32.651,30.318 C32.661,30.337 32.670,30.356 32.680,30.376 C32.700,30.376 32.719,30.376 32.738,30.376 C32.748,30.395 32.758,30.414 32.767,30.434 C32.787,30.434 32.806,30.434 32.826,30.434 C32.835,30.453 32.845,30.472 32.855,30.491 C32.874,30.491 32.893,30.491 32.913,30.491 C32.922,30.511 32.932,30.530 32.942,30.549 C32.971,30.559 33.000,30.568 33.029,30.578 C33.048,30.607 33.068,30.636 33.087,30.665 C33.107,30.665 33.126,30.665 33.145,30.665 C33.174,30.703 33.204,30.742 33.233,30.780 C33.252,30.780 33.271,30.780 33.291,30.780 C33.320,30.819 33.349,30.857 33.378,30.896 C33.397,30.896 33.417,30.896 33.436,30.896 C33.485,30.954 33.533,31.012 33.581,31.069 C33.601,31.069 33.620,31.069 33.640,31.069 C33.727,31.166 33.814,31.262 33.901,31.358 C33.921,31.358 33.940,31.358 33.959,31.358 C33.989,31.397 34.018,31.435 34.047,31.474 C34.124,31.541 34.202,31.609 34.279,31.676 C34.279,31.696 34.279,31.715 34.279,31.734 C34.367,31.811 34.454,31.888 34.541,31.965 C34.541,31.985 34.541,32.004 34.541,32.023 C34.599,32.071 34.657,32.119 34.715,32.168 C34.715,32.187 34.715,32.206 34.715,32.225 C34.754,32.254 34.793,32.283 34.832,32.312 C34.832,32.331 34.832,32.351 34.832,32.370 C34.861,32.389 34.890,32.408 34.919,32.428 C34.919,32.447 34.919,32.466 34.919,32.486 C34.948,32.505 34.977,32.524 35.006,32.543 C35.006,32.563 35.006,32.582 35.006,32.601 C35.035,32.620 35.064,32.640 35.093,32.659 C35.093,32.678 35.093,32.697 35.093,32.717 C35.113,32.726 35.132,32.736 35.152,32.746 C35.152,32.765 35.152,32.784 35.152,32.803 C35.171,32.813 35.190,32.823 35.210,32.832 C35.210,32.852 35.210,32.871 35.210,32.890 C35.229,32.900 35.248,32.909 35.268,32.919 C35.268,32.938 35.268,32.958 35.268,32.977 C35.287,32.987 35.307,32.996 35.326,33.006 C35.326,33.025 35.326,33.044 35.326,33.064 C35.345,33.073 35.365,33.083 35.384,33.092 C35.384,33.112 35.384,33.131 35.384,33.150 C35.394,33.150 35.404,33.150 35.413,33.150 C35.413,33.170 35.413,33.189 35.413,33.208 C35.433,33.218 35.452,33.227 35.471,33.237 C35.481,33.276 35.491,33.314 35.500,33.353 C35.520,33.362 35.539,33.372 35.559,33.382 C35.559,33.401 35.559,33.420 35.559,33.439 C35.568,33.439 35.578,33.439 35.588,33.439 C35.588,33.459 35.588,33.478 35.588,33.497 C35.597,33.497 35.607,33.497 35.617,33.497 C35.617,33.516 35.617,33.536 35.617,33.555 C35.626,33.555 35.636,33.555 35.646,33.555 C35.646,33.574 35.646,33.593 35.646,33.613 C35.665,33.622 35.685,33.632 35.704,33.642 C35.714,33.680 35.723,33.719 35.733,33.757 C35.743,33.757 35.752,33.757 35.762,33.757 C35.762,33.776 35.762,33.796 35.762,33.815 C35.772,33.815 35.781,33.815 35.791,33.815 C35.811,33.873 35.830,33.931 35.849,33.988 C35.859,33.988 35.869,33.988 35.878,33.988 C35.878,34.017 35.878,34.046 35.878,34.075 C35.888,34.075 35.898,34.075 35.907,34.075 C35.907,34.094 35.907,34.114 35.907,34.133 C35.917,34.133 35.927,34.133 35.937,34.133 C35.946,34.171 35.956,34.210 35.966,34.249 C35.975,34.249 35.985,34.249 35.995,34.249 C35.995,34.277 35.995,34.306 35.995,34.335 C36.004,34.335 36.014,34.335 36.024,34.335 C36.033,34.374 36.043,34.412 36.053,34.451 C36.063,34.451 36.072,34.451 36.082,34.451 C36.082,34.480 36.082,34.509 36.082,34.538 C36.092,34.538 36.101,34.538 36.111,34.538 C36.111,34.557 36.111,34.576 36.111,34.595 C36.121,34.595 36.130,34.595 36.140,34.595 C36.150,34.653 36.159,34.711 36.169,34.769 C36.179,34.769 36.189,34.769 36.198,34.769 C36.198,34.788 36.198,34.807 36.198,34.827 C36.208,34.827 36.218,34.827 36.227,34.827 C36.237,34.884 36.247,34.942 36.256,35.000 C36.266,35.000 36.276,35.000 36.285,35.000 C36.285,35.029 36.285,35.058 36.285,35.087 C36.295,35.087 36.305,35.087 36.315,35.087 C36.315,35.116 36.315,35.145 36.315,35.173 C36.324,35.173 36.334,35.173 36.344,35.173 C36.344,35.202 36.344,35.231 36.344,35.260 C36.353,35.260 36.363,35.260 36.373,35.260 C36.373,35.299 36.373,35.337 36.373,35.376 C36.382,35.376 36.392,35.376 36.402,35.376 C36.402,35.405 36.402,35.434 36.402,35.462 C36.411,35.462 36.421,35.462 36.431,35.462 C36.441,35.530 36.450,35.597 36.460,35.665 C36.470,35.665 36.479,35.665 36.489,35.665 C36.489,35.703 36.489,35.742 36.489,35.780 C36.499,35.780 36.508,35.780 36.518,35.780 C36.528,35.857 36.537,35.934 36.547,36.012 C36.557,36.012 36.567,36.012 36.576,36.012 C36.576,36.060 36.576,36.108 36.576,36.156 C36.649,36.390 36.680,36.695 36.751,36.936 C36.751,37.013 36.751,37.091 36.751,37.168 C36.760,37.168 36.770,37.168 36.780,37.168 C36.780,37.245 36.780,37.322 36.780,37.399 C36.789,37.399 36.799,37.399 36.809,37.399 C36.809,37.495 36.809,37.592 36.809,37.688 C36.819,37.688 36.828,37.688 36.838,37.688 C36.838,37.813 36.838,37.938 36.838,38.064 C36.848,38.064 36.857,38.064 36.867,38.064 C36.867,38.343 36.867,38.622 36.867,38.902 C36.910,39.053 36.896,39.311 36.896,39.509 C36.896,39.894 36.896,40.279 36.896,40.665 C36.896,43.025 36.896,45.386 36.896,47.746 C36.886,48.516 36.877,49.287 36.867,50.058 C36.867,50.273 36.849,50.555 36.896,50.723 C36.936,50.864 36.875,51.012 36.925,51.127 C36.935,51.127 36.944,51.127 36.954,51.127 C36.964,51.166 36.974,51.204 36.983,51.243 C36.993,51.243 37.003,51.243 37.012,51.243 C37.022,51.281 37.032,51.320 37.041,51.358 C37.061,51.368 37.080,51.378 37.100,51.387 C37.100,51.407 37.100,51.426 37.100,51.445 C37.148,51.484 37.196,51.522 37.245,51.561 C37.255,51.590 37.264,51.619 37.274,51.647 C37.293,51.647 37.313,51.647 37.332,51.647 C37.371,51.696 37.410,51.744 37.448,51.792 C37.468,51.792 37.487,51.792 37.507,51.792 C37.516,51.811 37.526,51.830 37.536,51.850 C37.555,51.850 37.574,51.850 37.594,51.850 C37.604,51.869 37.613,51.888 37.623,51.908 C37.642,51.908 37.662,51.908 37.681,51.908 C37.691,51.927 37.700,51.946 37.710,51.965 C37.749,51.975 37.788,51.985 37.826,51.994 C37.826,52.004 37.826,52.013 37.826,52.023 C37.885,52.042 37.943,52.062 38.001,52.081 C38.001,52.091 38.001,52.100 38.001,52.110 C38.030,52.110 38.059,52.110 38.088,52.110 C38.088,52.119 38.088,52.129 38.088,52.139 C38.107,52.139 38.127,52.139 38.146,52.139 C38.146,52.148 38.146,52.158 38.146,52.168 C38.175,52.168 38.204,52.168 38.233,52.168 C38.233,52.177 38.233,52.187 38.233,52.197 C38.263,52.197 38.292,52.197 38.321,52.197 C38.321,52.206 38.321,52.216 38.321,52.225 C38.350,52.225 38.379,52.225 38.408,52.225 C38.408,52.235 38.408,52.245 38.408,52.254 C38.437,52.254 38.466,52.254 38.495,52.254 C38.495,52.264 38.495,52.274 38.495,52.283 C38.534,52.283 38.573,52.283 38.611,52.283 C39.521,52.603 40.817,52.543 42.042,52.543 C44.155,52.543 46.268,52.543 48.381,52.543 C48.943,52.543 49.505,52.543 50.067,52.543 C50.343,52.543 50.713,52.578 50.939,52.514 C51.065,52.514 51.191,52.514 51.317,52.514 C51.317,52.505 51.317,52.495 51.317,52.486 C51.395,52.486 51.472,52.486 51.550,52.486 C51.550,52.476 51.550,52.466 51.550,52.457 C51.618,52.457 51.685,52.457 51.753,52.457 C51.753,52.447 51.753,52.437 51.753,52.428 C51.802,52.428 51.850,52.428 51.899,52.428 C51.899,52.418 51.899,52.408 51.899,52.399 C52.073,52.370 52.248,52.341 52.422,52.312 C52.732,52.206 53.042,52.100 53.352,51.994 C53.352,51.985 53.352,51.975 53.352,51.965 C53.391,51.956 53.430,51.946 53.469,51.936 C53.469,51.927 53.469,51.917 53.469,51.908 C53.498,51.908 53.527,51.908 53.556,51.908 C53.556,51.898 53.556,51.888 53.556,51.879 C53.614,51.859 53.672,51.840 53.730,51.821 C53.730,51.811 53.730,51.802 53.730,51.792 C53.750,51.792 53.769,51.792 53.789,51.792 C53.789,51.782 53.789,51.773 53.789,51.763 C53.847,51.744 53.905,51.724 53.963,51.705 C53.973,51.686 53.982,51.667 53.992,51.647 C54.050,51.628 54.108,51.609 54.167,51.590 C54.176,51.570 54.186,51.551 54.196,51.532 C54.234,51.522 54.273,51.513 54.312,51.503 C54.322,51.484 54.331,51.464 54.341,51.445 C54.360,51.445 54.380,51.445 54.399,51.445 C54.409,51.426 54.419,51.407 54.428,51.387 C54.448,51.387 54.467,51.387 54.486,51.387 C54.496,51.368 54.506,51.349 54.515,51.329 C54.535,51.329 54.554,51.329 54.574,51.329 C54.574,51.320 54.574,51.310 54.574,51.301 C54.603,51.291 54.632,51.281 54.661,51.272 C54.670,51.252 54.680,51.233 54.690,51.214 C54.709,51.214 54.729,51.214 54.748,51.214 C54.767,51.185 54.787,51.156 54.806,51.127 C54.826,51.127 54.845,51.127 54.864,51.127 C54.893,51.089 54.922,51.050 54.952,51.012 C54.971,51.012 54.990,51.012 55.010,51.012 C55.039,50.973 55.068,50.934 55.097,50.896 C55.116,50.896 55.136,50.896 55.155,50.896 C55.233,50.809 55.310,50.723 55.388,50.636 C55.407,50.636 55.426,50.636 55.446,50.636 C55.456,50.617 55.465,50.597 55.475,50.578 C55.533,50.530 55.591,50.482 55.649,50.434 C55.649,50.414 55.649,50.395 55.649,50.376 C55.737,50.299 55.824,50.222 55.911,50.145 C55.911,50.125 55.911,50.106 55.911,50.087 C55.959,50.048 56.008,50.010 56.056,49.971 C56.056,49.952 56.056,49.933 56.056,49.913 C56.095,49.884 56.134,49.855 56.173,49.827 C56.182,49.798 56.192,49.769 56.202,49.740 C56.221,49.730 56.241,49.721 56.260,49.711 C56.260,49.692 56.260,49.672 56.260,49.653 C56.270,49.653 56.279,49.653 56.289,49.653 C56.299,49.624 56.308,49.595 56.318,49.566 C56.337,49.557 56.357,49.547 56.376,49.538 C56.376,49.518 56.376,49.499 56.376,49.480 C56.405,49.461 56.434,49.441 56.463,49.422 C56.473,49.383 56.483,49.345 56.493,49.306 C56.512,49.297 56.531,49.287 56.551,49.277 C56.560,49.249 56.570,49.220 56.580,49.191 C56.589,49.191 56.599,49.191 56.609,49.191 C56.619,49.152 56.628,49.114 56.638,49.075 C56.657,49.066 56.677,49.056 56.696,49.046 C56.715,48.988 56.735,48.931 56.754,48.873 C56.774,48.863 56.793,48.854 56.812,48.844 C56.812,48.825 56.812,48.805 56.812,48.786 C56.822,48.786 56.832,48.786 56.841,48.786 C56.841,48.767 56.841,48.748 56.841,48.728 C56.851,48.728 56.861,48.728 56.870,48.728 C56.870,48.709 56.870,48.690 56.870,48.671 C56.880,48.671 56.890,48.671 56.900,48.671 C56.900,48.651 56.900,48.632 56.900,48.613 C56.909,48.613 56.919,48.613 56.929,48.613 C56.929,48.593 56.929,48.574 56.929,48.555 C56.938,48.555 56.948,48.555 56.958,48.555 C56.958,48.536 56.958,48.516 56.958,48.497 C56.967,48.497 56.977,48.497 56.987,48.497 C57.006,48.439 57.026,48.381 57.045,48.324 C57.055,48.324 57.064,48.324 57.074,48.324 C57.084,48.276 57.093,48.227 57.103,48.179 C57.113,48.179 57.122,48.179 57.132,48.179 C57.132,48.160 57.132,48.141 57.132,48.121 C57.142,48.121 57.152,48.121 57.161,48.121 C57.161,48.092 57.161,48.064 57.161,48.035 C57.171,48.035 57.181,48.035 57.190,48.035 C57.200,47.996 57.210,47.958 57.219,47.919 C57.229,47.919 57.239,47.919 57.248,47.919 C57.258,47.861 57.268,47.803 57.278,47.746 C57.287,47.746 57.297,47.746 57.307,47.746 C57.307,47.726 57.307,47.707 57.307,47.688 C57.316,47.688 57.326,47.688 57.336,47.688 C57.452,47.283 57.568,46.879 57.685,46.474 C57.685,46.426 57.685,46.378 57.685,46.329 C57.725,46.198 57.761,46.003 57.801,45.867 C57.801,45.800 57.801,45.732 57.801,45.665 C57.811,45.665 57.820,45.665 57.830,45.665 C57.849,45.366 57.869,45.067 57.888,44.769 C57.898,44.769 57.907,44.769 57.917,44.769 C57.917,44.480 57.917,44.191 57.917,43.902 C57.927,43.902 57.937,43.902 57.946,43.902 C57.946,43.584 57.946,43.266 57.946,42.948 C57.937,42.948 57.927,42.948 57.917,42.948 C57.867,42.773 57.933,42.498 57.888,42.341 C57.869,42.042 57.849,41.744 57.830,41.445 C57.820,41.445 57.811,41.445 57.801,41.445 C57.801,41.378 57.801,41.310 57.801,41.243 C57.791,41.243 57.781,41.243 57.772,41.243 C57.772,41.175 57.772,41.108 57.772,41.040 C57.762,41.040 57.752,41.040 57.743,41.040 C57.743,40.983 57.743,40.925 57.743,40.867 C57.648,40.555 57.612,40.182 57.510,39.884 C57.500,39.807 57.491,39.730 57.481,39.653 C57.471,39.653 57.462,39.653 57.452,39.653 C57.433,39.547 57.413,39.441 57.394,39.335 C57.384,39.335 57.374,39.335 57.365,39.335 C57.345,39.239 57.326,39.143 57.307,39.046 C57.297,39.046 57.287,39.046 57.278,39.046 C57.278,39.017 57.278,38.988 57.278,38.960 C57.268,38.960 57.258,38.960 57.248,38.960 C57.248,38.931 57.248,38.902 57.248,38.873 C57.239,38.873 57.229,38.873 57.219,38.873 C57.210,38.815 57.200,38.757 57.190,38.699 C57.181,38.699 57.171,38.699 57.161,38.699 C57.161,38.680 57.161,38.661 57.161,38.642 C57.152,38.642 57.142,38.642 57.132,38.642 C57.113,38.555 57.093,38.468 57.074,38.382 C57.064,38.382 57.055,38.382 57.045,38.382 C57.045,38.362 57.045,38.343 57.045,38.324 C57.035,38.324 57.026,38.324 57.016,38.324 C57.016,38.295 57.016,38.266 57.016,38.237 C57.006,38.237 56.996,38.237 56.987,38.237 C56.977,38.189 56.967,38.141 56.958,38.092 C56.948,38.092 56.938,38.092 56.929,38.092 C56.929,38.073 56.929,38.054 56.929,38.035 C56.919,38.035 56.909,38.035 56.900,38.035 C56.900,38.006 56.900,37.977 56.900,37.948 C56.890,37.948 56.880,37.948 56.870,37.948 C56.861,37.909 56.851,37.871 56.841,37.832 C56.832,37.832 56.822,37.832 56.812,37.832 C56.812,37.803 56.812,37.775 56.812,37.746 C56.803,37.746 56.793,37.746 56.783,37.746 C56.783,37.726 56.783,37.707 56.783,37.688 C56.774,37.688 56.764,37.688 56.754,37.688 C56.744,37.649 56.735,37.611 56.725,37.572 C56.715,37.572 56.706,37.572 56.696,37.572 C56.696,37.553 56.696,37.534 56.696,37.514 C56.686,37.514 56.677,37.514 56.667,37.514 C56.667,37.495 56.667,37.476 56.667,37.457 C56.657,37.457 56.648,37.457 56.638,37.457 C56.638,37.437 56.638,37.418 56.638,37.399 C56.628,37.399 56.619,37.399 56.609,37.399 C56.609,37.380 56.609,37.360 56.609,37.341 C56.599,37.341 56.589,37.341 56.580,37.341 C56.580,37.322 56.580,37.303 56.580,37.283 C56.570,37.283 56.560,37.283 56.551,37.283 C56.483,37.129 56.415,36.975 56.347,36.821 C56.328,36.811 56.308,36.802 56.289,36.792 C56.270,36.734 56.250,36.676 56.231,36.618 C56.211,36.609 56.192,36.599 56.173,36.590 C56.163,36.551 56.153,36.513 56.144,36.474 C56.134,36.474 56.124,36.474 56.115,36.474 C56.105,36.445 56.095,36.416 56.085,36.387 C56.066,36.378 56.047,36.368 56.027,36.358 C56.018,36.320 56.008,36.281 55.998,36.243 C55.989,36.243 55.979,36.243 55.969,36.243 C55.959,36.214 55.950,36.185 55.940,36.156 C55.921,36.146 55.901,36.137 55.882,36.127 C55.882,36.108 55.882,36.089 55.882,36.069 C55.872,36.069 55.863,36.069 55.853,36.069 C55.843,36.040 55.833,36.012 55.824,35.983 C55.804,35.973 55.785,35.963 55.766,35.954 C55.766,35.934 55.766,35.915 55.766,35.896 C55.737,35.877 55.707,35.857 55.678,35.838 C55.678,35.819 55.678,35.800 55.678,35.780 C55.649,35.761 55.620,35.742 55.591,35.723 C55.591,35.703 55.591,35.684 55.591,35.665 C55.562,35.645 55.533,35.626 55.504,35.607 C55.504,35.588 55.504,35.568 55.504,35.549 C55.475,35.530 55.446,35.511 55.417,35.491 C55.417,35.472 55.417,35.453 55.417,35.434 C55.397,35.424 55.378,35.414 55.359,35.405 C55.339,35.376 55.320,35.347 55.300,35.318 C55.291,35.318 55.281,35.318 55.271,35.318 C55.271,35.299 55.271,35.279 55.271,35.260 C55.223,35.222 55.174,35.183 55.126,35.145 C55.126,35.125 55.126,35.106 55.126,35.087 C54.952,34.923 54.777,34.759 54.603,34.595 C54.496,34.480 54.389,34.364 54.283,34.249 C54.263,34.249 54.244,34.249 54.225,34.249 C54.186,34.200 54.147,34.152 54.108,34.104 C54.089,34.104 54.070,34.104 54.050,34.104 C54.021,34.066 53.992,34.027 53.963,33.988 C53.944,33.988 53.924,33.988 53.905,33.988 C53.876,33.950 53.847,33.911 53.818,33.873 C53.798,33.873 53.779,33.873 53.759,33.873 C53.740,33.844 53.721,33.815 53.701,33.786 C53.682,33.786 53.663,33.786 53.643,33.786 C53.633,33.767 53.624,33.748 53.614,33.728 C53.595,33.728 53.575,33.728 53.556,33.728 C53.537,33.699 53.517,33.671 53.498,33.642 C53.478,33.642 53.459,33.642 53.440,33.642 C53.430,33.622 53.420,33.603 53.411,33.584 C53.382,33.574 53.352,33.565 53.323,33.555 C53.323,33.545 53.323,33.536 53.323,33.526 C53.304,33.526 53.285,33.526 53.265,33.526 C53.256,33.507 53.246,33.487 53.236,33.468 C53.197,33.459 53.159,33.449 53.120,33.439 C53.110,33.420 53.100,33.401 53.091,33.382 C53.052,33.372 53.013,33.362 52.974,33.353 C52.965,33.333 52.955,33.314 52.945,33.295 C52.907,33.285 52.868,33.276 52.829,33.266 C52.819,33.247 52.810,33.227 52.800,33.208 C52.781,33.208 52.761,33.208 52.742,33.208 C52.742,33.198 52.742,33.189 52.742,33.179 C52.722,33.179 52.703,33.179 52.684,33.179 C52.684,33.170 52.684,33.160 52.684,33.150 C52.664,33.150 52.645,33.150 52.626,33.150 C52.626,33.141 52.626,33.131 52.626,33.121 C52.606,33.121 52.587,33.121 52.567,33.121 C52.567,33.112 52.567,33.102 52.567,33.092 C52.548,33.092 52.529,33.092 52.509,33.092 C52.509,33.083 52.509,33.073 52.509,33.064 C52.490,33.064 52.470,33.064 52.451,33.064 C52.451,33.054 52.451,33.044 52.451,33.035 C52.432,33.035 52.412,33.035 52.393,33.035 C52.393,33.025 52.393,33.015 52.393,33.006 C52.374,33.006 52.354,33.006 52.335,33.006 C52.335,32.996 52.335,32.987 52.335,32.977 C52.315,32.977 52.296,32.977 52.277,32.977 C52.277,32.967 52.277,32.958 52.277,32.948 C52.219,32.929 52.160,32.909 52.102,32.890 C52.102,32.881 52.102,32.871 52.102,32.861 C52.073,32.861 52.044,32.861 52.015,32.861 C52.015,32.852 52.015,32.842 52.015,32.832 C51.976,32.823 51.937,32.813 51.899,32.803 C51.899,32.794 51.899,32.784 51.899,32.775 C51.870,32.775 51.841,32.775 51.811,32.775 C51.811,32.765 51.811,32.755 51.811,32.746 C51.792,32.746 51.773,32.746 51.753,32.746 C51.753,32.736 51.753,32.726 51.753,32.717 C51.724,32.717 51.695,32.717 51.666,32.717 C51.666,32.707 51.666,32.697 51.666,32.688 C51.647,32.688 51.627,32.688 51.608,32.688 C51.608,32.678 51.608,32.669 51.608,32.659 C51.550,32.649 51.492,32.640 51.433,32.630 C51.433,32.620 51.433,32.611 51.433,32.601 C51.414,32.601 51.395,32.601 51.375,32.601 C51.375,32.592 51.375,32.582 51.375,32.572 C51.278,32.553 51.181,32.534 51.085,32.514 C51.085,32.505 51.085,32.495 51.085,32.486 C51.056,32.486 51.026,32.486 50.997,32.486 C50.997,32.476 50.997,32.466 50.997,32.457 C50.968,32.457 50.939,32.457 50.910,32.457 C50.910,32.447 50.910,32.437 50.910,32.428 C50.804,32.408 50.697,32.389 50.590,32.370 C50.590,32.360 50.590,32.351 50.590,32.341 C50.542,32.341 50.493,32.341 50.445,32.341 C50.445,32.331 50.445,32.322 50.445,32.312 C50.406,32.312 50.367,32.312 50.329,32.312 C50.329,32.303 50.329,32.293 50.329,32.283 C50.280,32.283 50.232,32.283 50.183,32.283 C50.183,32.274 50.183,32.264 50.183,32.254 C50.135,32.254 50.086,32.254 50.038,32.254 C50.038,32.245 50.038,32.235 50.038,32.225 C49.989,32.225 49.941,32.225 49.893,32.225 C49.893,32.216 49.893,32.206 49.893,32.197 C49.834,32.197 49.776,32.197 49.718,32.197 C49.718,32.187 49.718,32.177 49.718,32.168 C49.641,32.168 49.563,32.168 49.485,32.168 C49.485,32.158 49.485,32.148 49.485,32.139 C49.408,32.139 49.330,32.139 49.253,32.139 C49.253,32.129 49.253,32.119 49.253,32.110 C49.146,32.110 49.040,32.110 48.933,32.110 C48.933,32.100 48.933,32.091 48.933,32.081 C48.720,32.081 48.507,32.081 48.293,32.081 C48.067,32.018 47.697,32.052 47.421,32.052 C46.849,32.052 46.277,32.052 45.706,32.052 C45.421,32.052 45.039,32.088 44.804,32.023 C42.440,32.033 40.075,32.042 37.710,32.052 C37.679,31.969 37.680,31.830 37.681,31.705 C37.748,31.629 37.710,31.056 37.710,30.896 C37.710,30.125 37.710,29.354 37.710,28.584 Z"></path></svg>');
    background-size: 77px;
    background-repeat: no-repeat;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(237,111,55, 0.0);
    transition: all ease-in-out 0.5s ;
    opacity: 0;
}

.properties-special .object-image:after {
        background-position:   center;
}

.properties .object-image:after {
        background-position:   center;
}

.object-image:after {
    border-radius: 0.75rem;
}

.object:hover .object-image:after {
    background-color: rgba(237,111,55, 0.75);
    opacity: 1;
    z-index: 12;
}


.properties-filter-extra .properties-filter-extra-main {
    position: relative;
}


.properties-filter {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: #f5f5f5;
}

.fs-dropdown {
    background-color: #f5f5f5  !important; 
}
.properties-filter-v-2 .facetwp-type-fselect .fs-dropdown .fs-search,
.properties-filter-v-2 .facetwp-search-wrap input.facetwp-search, .properties-filter-v-2 .facetwp-type-autocomplete input.facetwp-autocomplete, .properties-filter-v-2 .properties-filter-range-list {
    background-color: #fff;
}

.properties-title .facetwp-counts,
.properties-filter-v-1 .fs-wrap.multiple .fs-option.selected .fs-checkbox i,
.properties-filter-v-search .fs-wrap.multiple .fs-option.selected .fs-checkbox i,
.properties-filter-v-1 .fs-wrap.multiple .fs-option.selected .fssearchcheckbox i,
.properties-filter-v-search .fs-wrap.multiple .fs-option.selected .fssearchcheckbox i,
.properties-filter-selections .facetwp-selections .facetwp-selection-value:before,
.properties-filter-more-close a {
    background-color: var(--oranje);
}

.properties-filter .facetwp-checkbox.checked:before,
.properties-filter .facetwp-radio.checked:before {
    background-color: var(--oranje);
    border-color: var(--oranje);
}

.properties-filter-extra .facetwp-per-page {
    margin-bottom: 0;
}

.properties-filter-v-1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #e8e3db;
}

.properties-filter-v-1 .fs-search {
    border-top: 0;
}

.properties-filter-v-1 .properties-filter-default {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: .75rem!important;
    padding-bottom: .75rem!important;
    background-color: #fff;
    border-radius: .25rem;
    font-size: 1rem;
}

.properties-filter-v-1 .properties-filter-range-list {
    margin-bottom: 0;
}

.properties-filter-v-1 .facetwp-facet,
.properties-filter-v-1 .facetwp-facet-zoeken.facetwp-type-fselect {
    margin-bottom: 0;
    border-right: 0px solid #ebebeb;
}

.properties-filter-v-1 .facetwp-facet-zoeken.facetwp-type-fselect .fs-search {
    padding-top: 17px;
    padding-bottom: 17px;
}

.properties-filter-v-1 .facetwp-facet-zoeken.facetwp-type-fselect .fs-dropdown {
    border-radius: 50px;
}
.properties-filter-v-1 .facetwp-facet, .properties-filter-v-1 .facetwp-facet-zoeken.facetwp-type-fselect,
.properties-filter-v-1 .col-properties-filter-price-from .properties-filter-range-list {
    border-right: 0px solid #ebebeb;
}

.properties-filter-v-1 .properties-filter-more {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: transparent;
    color: #222;
}

.properties-filter-v-1 .properties-filter-more a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222!important;
    text-transform: capitalize!important;
    text-align: left!important;
    text-decoration: underline;
}

.properties-filter-v-1 .properties-filter-more a:before {
    width: 18px;
    height: 18px;
    position: relative;
    top: 4px;
    margin-right: .5rem;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.6009 4.10156V6.30156C20.6009 7.10156 20.1009 8.10156 19.6009 8.60156L15.3009 12.4016C14.7009 12.9016 14.3009 13.9016 14.3009 14.7016V19.0016C14.3009 19.6016 13.9009 20.4016 13.4009 20.7016L12.0009 21.6016C10.7009 22.4016 8.90086 21.5016 8.90086 19.9016V14.6016C8.90086 13.9016 8.50086 13.0016 8.10086 12.5016L7.63086 12.0116C7.32086 11.6816 7.26086 11.1816 7.51086 10.7916L12.6309 2.57156C12.8109 2.28156 13.1309 2.10156 13.4809 2.10156H18.6009C19.7009 2.10156 20.6009 3.00156 20.6009 4.10156Z' fill='%23222222'/%3E%3Cpath d='M10.3504 3.63156L6.80039 9.32156C6.46039 9.87156 5.68039 9.95156 5.23039 9.48156L4.30039 8.50156C3.80039 8.00156 3.40039 7.10156 3.40039 6.50156V4.20156C3.40039 3.00156 4.30039 2.10156 5.40039 2.10156H9.50039C10.2804 2.10156 10.7604 2.96156 10.3504 3.63156Z' fill='%23222222'/%3E%3C/svg%3E%0A");
    content: '';
    display: inline-block;
}

.properties-filter-v-1 .properties-filter-more-close {
    display: none;
}

.properties-filter .properties-filter-range-list .facetwp-counter {
    display: none;
}

.properties-filter .properties-filter-more-options .properties-filter-range-list {
    border-radius: 50px;
}

.properties-filter .properties-filter-more-options {
    padding-top: 130px!important;
    background-color: #f4f4f4;
}

.properties-filter .properties-filter-more-options .container {
    padding-left: 0;
    padding-right: 0;
}

.properties-filter-v-1 .properties-filter-reset {
    top: 19px;
    right: 52px;
    background-color: var(--oranje);
}

.properties-filter-selections {
    padding-top: 2rem;
}

.properties-filter-selections .facetwp-selections .facetwp-selection-value {
    background-color: var(--oranje);
    border-color: var(--oranje);
    border-radius: 10px;
    color: #fff;
}

.properties-filter .properties-filter-range-list .facetwp-type-radio .facetwp-radio,
.properties-filter.properties-filter-v-1 .properties-filter-range-list .facetwp-type-checkboxes .facetwp-checkbox {
    padding-left: 45px;
}

.properties-filter .properties-filter-range-list .facetwp-type-radio .facetwp-radio:before,
.properties-filter .properties-filter-range-list .facetwp-type-radio .facetwp-radio:after {
    left: 12px;
}

@media (min-width: 768px) {
    .properties-filter-extra .col-12.col-md-4,
    .properties-filter-extra .col-12.col-md-8 {
        width: 50%;
    }
}

.properties-title .facetwp-counts {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: 0;
    padding: 0;
    border-radius: 50%;
    text-align: center;
}

#carouselSpecialObjects {
    width: calc(100vw - ((100vw - 1750px) / 2));
    margin-left: -13px;
    box-sizing: border-box;
}

.properties-special .carousel {
    overflow: hidden;
}

.object,
.properties-special .object,
.properties .object {
    background-color: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--lichtblauwstroke);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    overflow: hidden;
}

.properties-special .object .object-image,
.properties .object .object-image {
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.object .object-image img,
.properties-special .object .object-image img {
    height: 400px;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.properties .object .object-image img {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.properties .object .object-image div.object-status,
.properties-special .object .object-image div.object-status,
.properties-item .object-detail-photo div.object-status {
    position: absolute;
    z-index: 99;
    top: 15px;
    left: auto;
    right: 15px;
    padding: .2rem .75rem .2rem 1.5rem!important;
    background-color:#fff;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 300;
    text-align: center;
    display: table;
        border-radius: .25rem;
    box-shadow:  0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1) ;
    color: var(--groen);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6px" height="6px"><path fill-rule="evenodd" fill="rgb(22, 163, 74)" d="M3.000,-0.000 C4.657,-0.000 6.000,1.343 6.000,3.000 C6.000,4.657 4.657,6.000 3.000,6.000 C1.343,6.000 -0.000,4.657 -0.000,3.000 C-0.000,1.343 1.343,-0.000 3.000,-0.000 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
}


.properties .object .object-image div.object-status, .properties-special .object .object-image div.object-status, .properties-item .object-detail-photo div.object-status {
    /*background-color: var(--oranje);*/
}

.properties-item .object-detail-header .object-detail-adres h1 span.object-street, .properties-item .object-detail-header .object-detail-adres h1 span.object-housenumber, .properties-item .object-detail-header .object-detail-adres h1 span.object-housenumber-addition, .properties-item .object-detail-header .object-detail-adres h1, .properties-item .object-detail-header .object-detail-adres h1 span.object-address-line {
    font-weight: 300;
    font-size: 38px;
    line-height: 46px;
}

.properties-item .object-detail-photo div.object-status,
.object.object-status-beschikbaar .object-image img:after, .properties .object.object-status-beschikbaar .object-image img:after {
    position: absolute;
    top: 15px;
    left: auto;
    right: 15px;
    padding: .2rem .75rem .2rem 1.5rem!important;
    background-color:#fff;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 300;
    text-align: center;
    display: table;
        border-radius: .25rem;
    box-shadow:  0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1) ;
    color: var(--oranje);
}

.object .object-image:after {
    top: 50px;
    right: 0px;
}

.object.object-status-beschikbaar .object-image:after:before {
    content:'';
    display: inline-block;

}
/*.object.object-status-available .object-image img:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6px" height="6px"><path fill-rule="evenodd" fill="rgb(22, 163, 74)" d="M3.000,-0.000 C4.657,-0.000 6.000,1.343 6.000,3.000 C6.000,4.657 4.657,6.000 3.000,6.000 C1.343,6.000 -0.000,4.657 -0.000,3.000 C-0.000,1.343 1.343,-0.000 3.000,-0.000 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
}*/

.properties .object.object-status-verkocht-ondervoorbehoud .object-image div.object-status,
.properties .object.object-status-verkocht .object-image div.object-status {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6px" height="6px"><path fill-rule="evenodd" fill="rgb(255, 0, 0)" d="M3.000,-0.000 C4.657,-0.000 6.000,1.343 6.000,3.000 C6.000,4.657 4.657,6.000 3.000,6.000 C1.343,6.000 -0.000,4.657 -0.000,3.000 C-0.000,1.343 1.343,-0.000 3.000,-0.000 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
}

.properties .object.object-status-verkocht-onderbod .object-image div.object-status {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="6px" height="6px"><path fill-rule="evenodd" fill="rgb(255, 165, 0)" d="M3.000,-0.000 C4.657,-0.000 6.000,1.343 6.000,3.000 C6.000,4.657 4.657,6.000 3.000,6.000 C1.343,6.000 -0.000,4.657 -0.000,3.000 C-0.000,1.343 1.343,-0.000 3.000,-0.000 Z"/></svg>');
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
}

.object .object-info,
.properties-special .object .object-info,
.properties .object .object-info {
    position: absolute;
    padding-bottom: 0rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.0rem;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    bottom: 0;
    z-index: 15;
    width: 100%;
}

.properties .object.object-banner .object-info {
    position: relative !important;
}

.object .object-address .object-street,
.object .object-address .object-housenumber,
.object .object-address .object-housenumber-addition,
.properties-special .object .object-address .object-housenumber,
.properties-special .object .object-address .object-street,
.properties .object .object-address .object-street,
.properties-special .object .object-address .object-housenumber,
.properties .object .object-address .object-housenumber,
.properties-special .object .object-address .object-housenumber-addition,
.properties .object .object-address .object-housenumber-addition {
    font-size: 1.4rem;
    color: var(--groen) !important;
    margin-bottom: 0.5rem;
    font-family: "neulis-sans", sans-serif;
}

.properties-special .object .object-address .object-place,
.properties .object .object-address .object-place {
    color: var(--oranje);
}

.properties .object .object-address .object-place {
    font-size: 15px;
}

.object-address.mb-3 {
    margin-bottom: 0px !important;
}

.object-address {
    display: grid;
}

.object-address-line {
    display: block;
}
.object-address-line:nth-child(1) { order:2 }
.object-address-line:nth-child(2) { order:1 }



.properties-special .object .object-price,
.properties .object .object-price {
    margin-top: 0.1rem;
    margin-bottom: 0!important;
    color: var(--groen);
    font-weight: 500;
}

.properties-special .object .object-features,
.properties .object .object-features {
    width: calc(100% + 4rem);
    min-height: 0px;
    margin-top: 1rem;
    margin-bottom: 0 !important;
    padding-top: 0rem;
    /*border-top: 1px solid #c7c7c7;*/
    display: -ms-flexbox;
    display: inline-flex;
    flex-direction: row;
    margin-left: -2rem;
    padding: 1rem 2rem;
    text-align: center;
}

.properties-special .object .object-features {
    min-height: 56px;
}

.properties-special .object .object-feature,
.properties .object .object-feature {
    width: 33.3333%;
    font-size: .9rem;
    color: #fff;
}

.properties-special .object .object-feature > .row > .col-3,
.properties .object .object-feature > .row > .col-5 {
    display: none;
    width: 100%;
    font-weight: 500;
}

.properties-special .object .object-feature > .row > .col-9,
.properties .object .object-feature > .row > .col-7 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.properties-special .object-features .object-features-energy .object-feature-info:before,
.properties .object-features .object-features-energy .object-feature-info:before,
.properties-special .object-features .object-feature-totalekadestraleoppervlakte .object-feature-info:before,
.properties .object-features .object-feature-totalekadestraleoppervlakte .object-feature-info:before,
.properties-special .object-features .object-feature-woonoppervlakte .object-feature-info:before,
.properties .object-features .object-feature-woonoppervlakte .object-feature-info:before,
.properties-special .object-features .object-feature-aantalkamers .object-feature-info:before,
.properties .object-features .object-feature-aantalkamers .object-feature-info:before {
    width: 100%;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 18px;
    content: "";
    display: block;
}

.properties-special .object-features .object-feature-totalekadestraleoppervlakte .object-feature-info:before,
.properties .object-features .object-feature-totalekadestraleoppervlakte .object-feature-info:before {
    background-image: url(images/wit/perceel-oppervlakte.svg);
}

.properties-special .object-features .object-feature-woonoppervlakte .object-feature-info:before,
.properties .object-features .object-feature-woonoppervlakte .object-feature-info:before {
    background-image: url(images/wit/woon-oppervlakte.svg);
}

.properties-special .object-features .object-feature-aantalkamers .object-feature-info:before,
.properties .object-features .object-feature-aantalkamers .object-feature-info:before {
    background-image: url(images/wit/aantal-kamers.svg);
}
.properties-special .object-features .object-features-energy .object-feature-info:before,
.properties .object-features .object-features-energy .object-feature-info:before {
    background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g clip-path="url(%23clip0_4418_9835)"><path d="M6.08998 13.2809H9.17998V20.4809C9.17998 22.1609 10.09 22.5009 11.2 21.2409L18.77 12.6409C19.7 11.5909 19.31 10.7209 17.9 10.7209H14.81V3.52087C14.81 1.84087 13.9 1.50087 12.79 2.76087L5.21998 11.3609C4.29998 12.4209 4.68998 13.2809 6.08998 13.2809Z" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></g><defs><clipPath id="clip0_4418_9835"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
}
.object .object-view,
.properties-special .object .object-view,
.properties .object .object-view {
    /*position: absolute;
    bottom: .5rem;
    right: 1.5rem;
    margin-bottom: .5rem!important;*/
}

.object .object-view a,
.properties-special .object .object-view a,
.properties .object .object-view a {
    padding: 0!important;
    color: var(--oranje);
    border: 0;
    display: table!important;
    font-weight: 700;
}
.object .object-view a:after,
.properties-special .object .object-view a:after,
.properties .object .object-view a:after {
    width: 7px;
    height: 12px;
    position: relative;
    position: absolute;
    background-image: url('data:image/svg+xml,<svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.876953 0.5C0.977777 0.5 1.05475 0.530412 1.13281 0.608398L6.07715 5.55273C6.13104 5.60665 6.15622 5.64863 6.16797 5.67676V5.67773C6.18275 5.71329 6.19141 5.75306 6.19141 5.80176C6.19141 5.85046 6.18275 5.89022 6.16797 5.92578V5.92676C6.15621 5.95488 6.13103 5.99687 6.07715 6.05078L1.1084 11.0195C1.03063 11.0973 0.963489 11.1192 0.882812 11.1162C0.788784 11.1127 0.707921 11.0809 0.62207 10.9951C0.543947 10.917 0.512697 10.8402 0.512695 10.7393C0.512695 10.6384 0.543945 10.5615 0.62207 10.4834L5.30371 5.80176L0.59668 1.09473C0.519014 1.01703 0.497072 0.95072 0.5 0.870117C0.503448 0.77585 0.536015 0.694453 0.62207 0.608398C0.699995 0.530589 0.776363 0.500076 0.876953 0.5Z" fill="%231D2362" stroke="%231D2362"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    display: inline-block;
    content: '';
    margin-left: 15px;
    top: 8px;
}

.object .object-view a:hover,
.object .object-view a:focus,
.properties-special .object .object-view a:hover,
.properties .object .object-view a:hover,
.properties-special .object .object-view a:focus,
.properties .object .object-view a:focus {
    background-color: transparent;
}

.properties-special .object .object-view a:hover:after,
.properties .object .object-view a:hover:after,
.properties-special .object .object-view a:focus:after,
.properties .object .object-view a:focus:after {
   
} 

.properties-pagination .facetwp-pager a.facetwp-page:first-of-type {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.properties-pagination .facetwp-pager a.facetwp-page:last-of-type {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.properties-special .carousel-control-prev {
    margin-right: 15px;
}
.properties-special .carousel-control-prev,
.properties-special .carousel-control-next {
    width: 40px;
    height: 40px;
    top: -70px;
    z-index: 555;
    cursor: pointer;
    opacity: 1;
    border-radius: 20px;
    background-color: var(--oranje);
    transition: all ease-in-out 0.5s;
}
.carousel-control-prev,
.carousel-control-next {
    transition: all ease-in-out 0.5s;
}

.properties-special .carousel-control-prev {
    left: auto;
    right: 40px;
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.82129 0.5C7.90691 0.500059 7.98026 0.526325 8.0625 0.608398C8.1448 0.694341 8.1709 0.771445 8.1709 0.857422C8.17081 0.944261 8.14426 1.01826 8.0625 1.10059L1.70117 7.46191H15.1113C15.2328 7.46193 15.3079 7.49726 15.3721 7.56055C15.4342 7.6219 15.4687 7.69362 15.4688 7.81348C15.4688 7.93333 15.4342 8.00505 15.3721 8.06641C15.3079 8.12969 15.2328 8.16502 15.1113 8.16504H1.70117L8.05664 14.5205V14.5195C8.1389 14.602 8.16719 14.6788 8.16797 14.7705V14.7715C8.16849 14.838 8.15383 14.8964 8.1123 14.9561L8.06055 15.0176C7.9806 15.0985 7.90742 15.1248 7.81836 15.124C7.72391 15.1231 7.6456 15.0931 7.5625 15.0107L0.614258 8.0625C0.561096 8.00833 0.5354 7.9662 0.523438 7.9375V7.93652C0.50833 7.90019 0.5 7.8601 0.5 7.8125C0.50003 7.76491 0.508641 7.72576 0.523438 7.69043V7.68945C0.535302 7.66099 0.560769 7.61862 0.614258 7.56445L7.56445 0.614258C7.65485 0.527034 7.73453 0.5 7.82129 0.5Z" fill="white" stroke="white"/></svg>');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.properties-special .carousel-control-next {
    right: 0;
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.14453 0.5C8.21548 0.500668 8.27733 0.517317 8.33887 0.560547L8.40039 0.613281L15.3486 7.56152C15.4018 7.61569 15.4275 7.65782 15.4395 7.68652V7.6875C15.4546 7.72385 15.4629 7.7639 15.4629 7.81152C15.4629 7.85913 15.4543 7.89825 15.4395 7.93359V7.93457C15.4276 7.96304 15.4022 8.00538 15.3486 8.05957L8.39453 15.0078C8.30318 15.0981 8.22456 15.124 8.1416 15.124C8.0609 15.1239 7.98874 15.0994 7.90527 15.0137L7.90039 15.0088L7.84863 14.9482C7.80653 14.8886 7.79201 14.8306 7.79199 14.7656C7.79199 14.701 7.80676 14.6433 7.84863 14.584L7.90039 14.5234L14.2617 8.16211H0.851562C0.729469 8.16207 0.657228 8.12693 0.59668 8.06641H0.595703C0.53483 8.0055 0.500002 7.93257 0.5 7.81055C0.5 7.68853 0.534835 7.6156 0.595703 7.55469H0.59668C0.657231 7.49416 0.729461 7.45902 0.851562 7.45898H14.2617L7.90625 1.10352C7.84494 1.04216 7.81315 0.983763 7.80078 0.918945L7.79492 0.851562C7.79401 0.761613 7.82017 0.688031 7.90039 0.607422L7.90137 0.606445C7.98151 0.525858 8.05487 0.499224 8.14453 0.5Z" fill="white" stroke="white"/></svg>');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.properties-special .carousel-control-prev:before,
.properties-special .carousel-control-prev:after,
.properties-special .carousel-control-next:before,
.properties-special .carousel-control-next:after {
    display: none;
}

.properties-special .carousel-control-prev:hover,
.properties-special .carousel-control-next:hover {
    background-color: var(--groen);
}


.object .object-image,
.properties .object .object-image,
.properties-special .object .object-image {
    overflow: hidden;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    margin-bottom: 0 !important;
}

.object .object-image img,
.properties .object .object-image img,
.properties-special .object .object-image img {
    transition: all ease 0.5s;
    height: auto;
    aspect-ratio: 3/3;
}

.object:hover .object-image img,
.properties .object:hover .object-image img,
.properties-special .object:hover .object-image img {
    transform: scale(1.0);
}

/* layout */
.properties-special .object .object-image a, .properties .object .object-image a{
    display: grid !important; 
    border-radius: 0.75rem;
    overflow: hidden;
}

.object-image-img {
    order: 2;
}

.object-image-info {
    order: 1
}

.properties .object .object-image .object-image-info,
.properties-special .object .object-image .object-image-info {
    position: relative !important;
    background-color: #fff;
    z-index: 20;
    min-height: 120px;
}

.properties-special .object .object-price, .properties .object .object-price,
.properties-special .object .object-address .object-street, .properties-special .object .object-address .object-housenumber, .properties-special .object .object-address .object-housenumber-addition {
    color: var(--groen) !important;
}

/* object banner */
.object-info.object-banner-info {
    padding: 2rem !important;
}

.properties-special .object,
.properties .object {
    height: calc(100% - 25px);
    display: flex;
    position: relative;
}
.object.object-banner {
    background-color: var(--oranje);
    color: #fff;
    text-align: center;
    height: calc(100% - 25px);
    display: flex;
}

.object-banner-title {
        font-size: 2.5rem;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 3rem;
}

.object-banner-button {
    margin-top: 60px;
}

.object-banner-button a {
    color:#fff;
    background-color: var(--groen);
    border-radius: 50px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(1em + 2px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
}

.object-banner-button a:hover {
    background-color: var(--groendark);
    color: #fff;
}




/* Scroll fix */
.properties-special .carousel-item {
    margin-left: -1rem;
}

.properties-special .carousel-item > .row {
    width: 33.333333%;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: block;
    flex-wrap: nowrap;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.properties-special > .row > * {
    flex-shrink: 0;
    width: auto;
    max-width: auto;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
}

.properties-special .carousel-inner {
    width: calc(100% + 2rem);
    max-width: 1620px;
}

@media (max-width: 767px) {
    .properties-special .carousel-inner .carousel-item > div {
        display: none;
    }

    .properties-special .carousel-inner .carousel-item > div:first-child {
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.properties-special .carousel-inner .carousel-item.active,
.properties-special .carousel-inner .carousel-item-next,
.properties-special .carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .properties-special .carousel-inner .carousel-item-end.active,
    .properties-special .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    .properties-special .carousel-inner .carousel-item-start.active, 
    .properties-special .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

@media (min-width: 1200px) {
    .properties-special .carousel-inner .carousel-item-end.active,
    .properties-special .carousel-inner .carousel-item-next {
        transform: translateX(33.3333333333%);
    }

    .properties-special .carousel-inner .carousel-item-start.active, 
    .properties-special .carousel-inner .carousel-item-prev {
        transform: translateX(-33.3333333333%);
    }
}

.properties-special .carousel-inner .carousel-item-end,
.properties-special .carousel-inner .carousel-item-start { 
    transform: translateX(0);
}

@media (max-width: 767.98px) {
    .properties-special,
    .properties-special .carousel-item > .row {
        width: 100%;
    }

    .properties-special {
        padding-top: 0rem;
    }

    .properties-special .carousel-item > .row {
        padding-left: 0;
        padding-right: 0;
    }

    .properties-special .carousel-item {
        margin-left: 0;
    }

 

    .properties-special .carousel-control-prev {
        right: 40px;
    }
    
        .properties-special .carousel-control-next {
        right: -19px;
    }
    .properties-special .object .object-image .object-image-info, .properties .object .object-image .object-image-info {
        padding: 2rem;
    }
    .wp-block-group.wp-block-group-objects .wp-block-columns .wp-block-column ul li.ms-auto {
        margin-left:  0!important;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .properties-special {
        width: 100%;
    }

    .properties-special .carousel-item > .row {
        width: 50%;
    }

    .properties-special .object .object-image img {
        height: 300px;
    }

    .properties-special .carousel-control-prev {
        right: 40px;
    }
    
    .properties-special .carousel-control-next {
        right: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .properties-special {
        width: 100%;
    }
}


/* properties */
.properties-filter-v-1 {
    background-color: #fff;
    z-index: 999;
}

.properties-filter-extra {
    margin-top: 5rem;
}

.properties-filter .facetwp-checkbox, .properties-filter .facetwp-radio,
.properties-filter-v-2 .facetwp-type-fselect .fs-wrap.multiple .fs-option {
    text-transform: capitalize;
}

.properties-filter-more-options.collapse {
    display: block !important;
    width: 50%;
}


.properties-filter-default .col-12.col-md-4.offset-md-8.col-lg-2 {
    display: none !important;
}


.properties-filter .properties-filter-more-options {
    padding-top: 0 !important;
    background-color: #fff !important;
}

.properties-filter .properties-filter-more-options .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.properties-filter .properties-filter-more-options .properties-filter-range-list {
    width: 190px;
}
.properties-filter .properties-filter-more-options .properties-filter-range-list,
.properties-filter-v-1 .properties-filter-range-list,
.properties-filter-v-1 .col-properties-filter-price-from .properties-filter-range-list,
.properties-filter-v-1 .fs-label-wrap .fs-label, .properties-filter-v-search .fs-label-wrap .fs-label {
    height: 58px;
    line-height: 55px;
    padding: 0 40px 0 20px;
    border: 2px solid #f5f5f5;
    border-radius: 50px;
}

.properties-filter-extra .properties-filter-show, .properties-filter-extra .facetwp-sort .facetwp-sort-select, .properties-filter-extra .facetwp-per-page .facetwp-per-page-select {
    border: 2px solid #f5f5f5;
    border-radius: 50px;
     padding: 0 40px 0 20px;
}    

.fs-arrow {
    border: 0 !important;
    right: 15px !important;
    transition: none !important;
}

.fs-open .fs-arrow {
    transform: rotate(-180deg);
    margin-right: 10px;
}

.properties-filter .properties-filter-range-list:after {
    width: 12px !important;
    height: 12px !important;
    background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.69506 6.96028C6.47539 7.17996 6.11929 7.17996 5.89961 6.96028L0.164751 1.22541C-0.0549169 1.00573 -0.0549169 0.649631 0.164751 0.429956L0.429921 0.164756C0.649588 -0.0549187 1.00574 -0.0549187 1.22542 0.164756L6.29734 5.23671L11.3693 0.164756C11.589 -0.0549187 11.9451 -0.0549187 12.1647 0.164756L12.4299 0.429956C12.6496 0.649631 12.6496 1.00573 12.4299 1.22541L6.69506 6.96028Z" fill="%231D2362"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    content: '';
    top: 32px;
    border: 0 !important;
    position: absolute;
    right: 15px;
    transition: none ;
}

.properties-filter .properties-filter-range-list.open:after {
    top: 20px
}

.fs-arrow:after {
    width: 12px !important;
    height: 12px !important;
    background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.69506 6.96028C6.47539 7.17996 6.11929 7.17996 5.89961 6.96028L0.164751 1.22541C-0.0549169 1.00573 -0.0549169 0.649631 0.164751 0.429956L0.429921 0.164756C0.649588 -0.0549187 1.00574 -0.0549187 1.22542 0.164756L6.29734 5.23671L11.3693 0.164756C11.589 -0.0549187 11.9451 -0.0549187 12.1647 0.164756L12.4299 0.429956C12.6496 0.649631 12.6496 1.00573 12.4299 1.22541L6.69506 6.96028Z" fill="%231D2362"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
     display: inline-block;
    content: '';
    position: relative;
    top: -4px;
    border: 0 !important;
    position: relative !important;
    margin-left: -10px;
}



.properties-item {
    margin-top: 113px
}

.properties-item .object-detail-extra {
    display: none
}

.properties-item .object-detail-photos .container {
    max-width: none
}

.properties-item .object-detail-photos .object-detail-photo-large img {
    height: 700px
}

.properties-item .object-detail-photos .object-detail-photo-medium img,.properties-item .object-detail-photos .object-detail-photo-small img {
    height: 346px
}

.properties-item .object-detail-information .object-detail-title,.properties-item .object-detail-features .object-detail-title,.properties-item .object-detail-photos-full .object-detail-title {
    display: none
}

.properties-item .object-detail-features .object-detail-features-more,.properties-item .object-detail-information .object-detail-description-more,.properties-item .object-detail-photos-full .object-detail-photos-more,.properties-item .object-detail-maps .object-detail-maps-more {
    margin-top: 2rem;
    padding: 0!important;
    border: 0!important
}

.properties-item .object-detail-features .object-detail-features-more:hover,.properties-item .object-detail-information .object-detail-description-more:hover,.properties-item .object-detail-photos-full .object-detail-photos-more:hover,.properties-item .object-detail-maps .object-detail-maps-more:hover {
    background-color: #fff0
}

.properties-item .object-detail-navigation li a {
    border: 1px solid #f5f5f5;
    color: var(--groen);
}

.properties-item .object-detail-navigation li a:hover,.properties-item .object-detail-navigation li a:focus {
    background-color: var(--oranje);
    border-color: var(--oranje);
    color: var(--oranje)
}

.contact-info a {
    color: var(--groen);
}

.contact-info a:hover {
    color: var(--oranje);
}

.properties-item .object-detail-header .object-detail-adres h1 span.object-street,.properties-item .object-detail-header .object-detail-adres h1 span.object-housenumber,.properties-item .object-detail-header .object-detail-adres h1 span.object-housenumber-addition {
    font-size: 3rem;
    font-weight: 300
}

.properties-item .object-detail-header .object-detail-adres h1 span.object-place {
    font-size: 1.5rem;
    font-style: italic
}

.properties-item .object-detail-information .object-information {
    padding-right: 5rem
}

.properties-item .object-detail-contact {
    padding: 0!important;
    border: 0
}

.properties-item .object-detail-contact .object-detail-title {
    display: block
}

.properties-item .object-detail-contact .contact-info-appointment a,.properties-item .object-detail-contact .contact-info-website a,.properties-item .object-detail-contact .contact-info-brochure a,.properties-item .object-detail-contact .contact-info-custom-button a {
    background-color: #fff0;
    border: 1px solid var(--oranje);
    color: var(--oranje)!important;
    padding: calc(0.75em + 2px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
    transition: all ease-in-out 0.5s;
    border-radius: 50px;
}


.properties-item .object-detail-contact .contact-info-appointment a:hover,
.properties-item .object-detail-contact .contact-info-website a:hover,
.properties-item .object-detail-contact .contact-info-brochure a:hover,
.properties-item .object-detail-contact .contact-info-custom-button a:hover {
    background-color: var(--oranje);
    color: #fff !important;
}

.properties-item .object-detail-contact .object-share li a {
    background-color: #fff0;
    border: 1px solid var(--oranje)

}

.properties-item .object-detail-contact .object-share li a svg {
    fill: var(--oranje)
}

.properties-item-scroll li a {
    background-color: #fff0;
    border: 1px solid var(--oranje);
    color: var(--oranje)!important
}

.properties-item-scroll li a svg path {
    fill: var(--oranje)
}

.properties-item-scroll li a:hover,.properties-item-scroll li a:focus {
    background-color: #fff0
}

.properties-item-scroll li.li-scroll-favorite {
    display: none!important
}

.properties-item .object.object-new-construction .object-view-items {
    color: #222
}

.properties-item .object.object-new-construction .object-view-items:before,.properties-item .object.object-new-construction .object-view-items:after {
    background-color: #222
}

.properties-item .object.object-new-construction-items {
    background-color: #fff0
}

.object-detail-photos-item {
    border-radius: 0.75rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(1) {
        width:100%
    }

    .properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(1) .object-detail-photos-item {
        height: 700px
    }

    .properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(2),.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(3),.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(7),.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(8) {
        width: 50%
    }

    .properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(2) .object-detail-photos-item,.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(3) .object-detail-photos-item,.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(7) .object-detail-photos-item,.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(8) .object-detail-photos-item {
        height: 450px
    }

    .properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(4),.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(5),.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(6) {
        width: 33.3333333333%
    }

    .properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(4) .object-detail-photos-item,.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(5) .object-detail-photos-item,.properties-item .object-detail-photos-full .col-12.col-lg-3:nth-child(6) .object-detail-photos-item {
        height: 450px
    }
}

.properties-item .object-detail-photos-full .object-detail-photos-item a {
    background-color: var(--groen)
}

.properties-item .object-detail-photos-full .object-detail-photos-item a:before,.properties-item .object-detail-photos-full .object-detail-photos-item a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background-color: var(--oranje);
    z-index: 2;
    content: '';
    opacity: 0
}

.properties-item .object-detail-photos-full .object-detail-photos-item a:before {
    width: 1px;
    height: 70px
}

.properties-item .object-detail-photos-full .object-detail-photos-item a:after {
    width: 70px;
    height: 1px
}

.properties-item .object-detail-photos-full .object-detail-photos-item a img {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 0.75rem;
}

.properties-item .object-detail-photos-full .object-detail-photos-item a:hover img {
    opacity: .3
}

.properties-item .object-detail-photos-full .object-detail-photos-item a:hover:before,.properties-item .object-detail-photos-full .object-detail-photos-item a:hover:after {
    opacity: 1
}

@media (max-width: 767.98px) {
    .properties-item {
        margin-top:100px
    }

    .properties-item .object-detail-photos .object-detail-photo-large img {
        height: 300px
    }

    .properties-item .object-detail-header .object-detail-adres h1 span.object-street,.properties-item .object-detail-header .object-detail-adres h1 span.object-housenumber,.properties-item .object-detail-header .object-detail-adres h1 span.object-housenumber-addition {
        font-size: 2rem
    }
}





/* Slider */

.wp-block-gallery {
    position: relative;
    overflow: hidden;
}

.wp-block-gallery .wp-block-image {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
}

.wp-block-gallery .wp-block-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.wp-block-gallery .wp-block-image.active {
    opacity: 1;
    position: relative;
}


}
@media (min-width: 600px) {
    .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2), .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image) {
        width: calc(100% - var(--wp--style--unstable-gallery-gap, 16px) * .5);
    }
}



/* content */


.wp-block-column {
    border-radius: 0.75rem;
}


/* Content image background */
.wp-block-group.wp-block-group-content-image-background {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    background-color: #000;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-image img {
    object-position: top;
}
.wp-block-group.wp-block-group-content-image-background .wp-block-image:before {
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1px;
    left: 0;
    background-repeat: no-repeat;
    background-position: bottom right;
    content: '';
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns {
    position: relative;
    z-index: 3;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column {
    color: #fff;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column h2 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 3rem;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column h3 {
    color: #fff;
}





.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column ul {
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column ul li:not(.choice-1) {
    position: relative;
    margin-bottom: .5rem;
    padding-left: 30px;
    display: block;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column ul li:not(.choice-1):before {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 5px;
    left: 0;
    margin-right: .75rem;
    background-color: var(--groen);
    border-radius: 50%;
    content: '';
    display: inline-block;
}

.wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column ul li:not(.choice-1):after {
    width: 5px;
    height: 10px;
    position: absolute;
    top: 10px;
    left: 9px;
    transform: rotate(45deg);
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    display: inline-block;
    content: '';
}

@media (max-width: 767.98px) {
    .wp-block-group.wp-block-group-content-image-background {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column h2 {
        font-size: 2rem;
    }

    .wp-block-group.wp-block-group-content-image-background .wp-block-image:after {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column:nth-of-type(1) {
        display: none;
    }

    .wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column:nth-of-type(2) {
        flex-basis: 100%!important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .wp-block-group.wp-block-group-content-image-background .wp-block-columns .wp-block-column:nth-of-type(2) {
        flex-basis: 50%!important;
    }
}


/* content image */
.wp-block-group-content-image {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.wp-block-group-content-image a {
    color: var(--groen);
}


.wp-block-group-image-content h6,
.wp-block-group-content-image h6 {
    color: var(--oranje);
}

/* image content */
.wp-block-group-image-content-background {
    background-color: var(--oranje);
}

.wp-block-group-image-content-background h6,
.wp-block-group-content-image-background h6 {
    color: #fff;
}


.wp-block-group-image-content .wp-block-columns,
.wp-block-group-image-content-background .wp-block-columns {
    gap: 5rem;
}

.wp-block-group-header-image-content .wp-block-columns {
    align-items: stretch; /* kolommen even hoog */
}

.wp-block-group-header-image-content .wp-block-column:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center; /* verticale centrering */
}

.wp-block-group-text-center {
    padding-top: 2rem;
}

.wp-block-group-content-image .wp-block-columns .wp-block-column,
.wp-block-group-image-content .wp-block-columns .wp-block-column {
    flex-basis: 50%;
}

.wp-block-group-image-content .wp-block-columns .wp-block-column:nth-child(2) {
    padding-left: 5rem;
    padding-right: 5rem;
}

.wp-block-group-content-image .wp-block-columns .wp-block-column:nth-child(1) {
    padding-left: 5rem;
    padding-right: 5rem;
}

/* intro */
.wp-block-group-content-intro.background {
    background-color: var(--groen);
}
.wp-block-group-content-intro.background  .wp-block-group__inner-container {
   
}


.wp-block-group-content-intro h6 {
    color: var(--oranje);
}


.wp-block-group-content-intro.background h2,
.wp-block-group-content-intro.background p {
    color: #fff;
}

/* image content */
.wp-block-group-image-content-background {
    background-color: var(--oranje);
}


/* counter */

.wp-block-group.wp-block-group-counter {
    background-color: var(--groen);
}

.counter-col {
    position: relative;
    z-index: 2;
    padding-right: 0px;
    padding: 1rem;
    color: #fff;
}


.counter-col span {
    text-transform: uppercase;
    font-weight: 700;
}

.counter-col span span {
    display: block;
}

.counter-col:hover a,
.counter-col:hover {
    color: var(--oranje);
}

.counter-wrap .col-sm-6 {
    border-right: 1px solid var(--groen);
}

.counter-wrap .col-sm-6:nth-child(4),
.counter-wrap .col-sm-6:nth-child(2) {
    border-right: 0px solid #333;
}

.counter-wrap .col-sm-6:nth-child(3),
.counter-wrap .col-sm-6:nth-child(4) {
    border-top: 1px solid var(--groen);
}


.counter-col a {
    color: #4c4c4c;
}

.counter {
    margin-bottom: 10px;
    font-size: 100px!important;
    font-weight: 700;
    height: 100px;
    line-height: 100px;
    color: #fff;
}

.counter-wrap span {
    font-weight: normal;
    opacity: 0.8;
}

.counter-wrap span strong {
    color: #fff;
    display: block;
}

.counter.after-plus:after {
    content: '+';
    color: var(--oranje);
    display: inline-block;
}

.counter.after-procent:after {
    content: '%';
    color: var(--oranje);
    display: inline-block;
}

/* Services */
.wp-block-group.wp-block-group-services-new {
    position: relative;
}

.wp-block-group.wp-block-group-services-new h2 {
}

.wp-block-group.wp-block-group-services-new:before {
    position: absolute;
    top: 0;
    right: 2rem;
    background-repeat: no-repeat;
    content: '';
    width: 200px;
    height: 200px;
    background-size: cover;
}

@media(max-width: 1920px) {
    .wp-block-group.wp-block-group-services-new:before {
         width: 120px;
        height: 120px;
        background-size: cover;
        right: 2rem;
    }
}

.wp-block-group.wp-block-group-services-new .wp-block-columns {
    margin-bottom: 0;
}

.wp-block-group.wp-block-group-services-new.wp-block-group-wijken .wp-block-columns {
    margin-bottom: 2rem;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column {
    position: relative;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column .wp-block-image {
    margin-bottom: 20px;
    position: relative;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column .wp-block-image:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .25s ease-in-out;
    background: linear-gradient(0deg,rgba(0,0,0,.6),transparent 70%);
    border-radius: 0.75rem;
    content: '';
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column .wp-block-image img {
    height: 540px;
    border-radius: 0.75rem;
    object-position: top;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column p:nth-child(2):not(:last-of-type) {
    width: 125px;
    height: 125px;
    line-height: 1.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: rotate(15deg);
    padding-top: 2.8rem;
    background-color: var(--oranje);
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column p:last-of-type {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column p:last-of-type a {
    width: 100%;
    height: calc(100% - 0px);
    line-height: 1.2;
    margin-top: 0;
    padding: 2.5rem 2.5rem 3.5rem 2.5rem;
    background-color: transparent;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    align-items: end;
    display: flex;
    text-decoration: none;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column p:last-of-type a:after {
    width: 50px;
    height: 30px;
    position: absolute;
    bottom: 50px;
    right: 1rem;
    background-size: auto;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    display: inline-block;
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,1)"><path d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"></path></svg>');
    background-repeat: no-repeat;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column p:last-of-type a strong {
    display: contents;
    font-weight: 700;
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column .wp-block-image:after {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    opacity: 0;
    background: linear-gradient(20deg,var(--oranje),transparent 70%);
}

.wp-block-group.wp-block-group-services-new .wp-block-columns .wp-block-column:hover .wp-block-image:after {
    background: linear-gradient(20deg,var(--oranje),transparent 70%);
    opacity: 1;
}


.wp-block-column h2:nth-of-type(1) {
    margin-top: 0rem;
}

.wp-block-column h2 {
    margin-top: 2rem;
}


/* Woningkompas */

.wp-block-group-woningkompas {
    background-color: var(--oranje);
    color: #fff;
    padding-bottom: 0;
}

.wp-block-group-woningkompas .wp-block-columns {
    gap: 10rem;
}

.wp-block-group-woningkompas h2 {
    color: #fff;
}

.background a.wp-block-button__link {
    color: var(--oranje) !important;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(1em + 2px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
}

.background .wp-block-button__link:hover {
    color: #fff!important;
    background-color: var(--oranje)!important;
}


#contact.modal {
    top: 25%;
    z-index: 1070;
}

#contact .modal-body {
    padding: 0 3rem 3rem;
}

#contact .modal-content {
    background-color: var(--groen);
    color: #FFF !important  ;
}

#contact .modal-header {
    padding: 3rem 3rem 0rem;
    border:0px;
}

#contact h5.modal-title  {
    color: #fff !important;
}

#contact .btn-close {
    border-radius: 1rem;
    background-color: var(--oranje);
    background: var(--oranje) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
    background-size: 10px;
    top: -10px;
    position: absolute;
    right: -9px;
}

#contact div.wpforms-container-full .wpforms-form button[type=submit] {
    background-color: var(--oranje)!important;
    border: 1px solid var(--oranje) !important;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 576px;
        margin: 1.75rem auto;
    }
}

/* FAQ */

.wp-block-yoast-faq-block {
    margin-top: 5rem;
}

.wp-block-group-faq .schema-faq-question {
  cursor: pointer;
  display: block;
  padding: 15px 0;
  background: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  position: relative;
  border-top: 1px solid #f5f5f5;
  margin-bottom: 0;
  font-weight: 900;
}

.wp-block-group-faq .schema-faq-section:last-of-type .schema-faq-question {
    border-bottom: 1px solid #f5f5f5;
}

.wp-block-group-faq .schema-faq-question::after {
    width: 13px;
    height: 28px;
    background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.69506 6.96028C6.47539 7.17996 6.11929 7.17996 5.89961 6.96028L0.164751 1.22541C-0.0549169 1.00573 -0.0549169 0.649631 0.164751 0.429956L0.429921 0.164756C0.649588 -0.0549187 1.00574 -0.0549187 1.22542 0.164756L6.29734 5.23671L11.3693 0.164756C11.589 -0.0549187 11.9451 -0.0549187 12.1647 0.164756L12.4299 0.429956C12.6496 0.649631 12.6496 1.00573 12.4299 1.22541L6.69506 6.96028Z" fill="%231D2362"/></svg>');
    content: "";
    position: absolute;
    right: 20px;
    background-repeat: no-repeat;
    background-position: right center;
}

.wp-block-group-faq .schema-faq-question.active::after {
  content: "";
  transform: rotate(-180deg);
}

.wp-block-group-faq .schema-faq-answer {
  display: none;
  padding: 15px;
  border-left: 0px solid #f5f5f5;
  margin-bottom: 10px;
}


/* news */
.wp-block-group-news {
}

.wp-block-group-news p,
.wp-block-group-news h2,
.wp-block-group-news h6 {
}
.wp-block-latest-posts li {
    display: table;
    background-color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}
.wp-block-latest-posts__featured-image {
    position:  relative ;
}
.wp-block-latest-posts__featured-image img {
    height: 550px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    
}

.wp-block-latest-posts__featured-image.aligncenter {
    margin-bottom: 0em;
    text-align: center;
    position: relative;
}

.wp-block-latest-posts__featured-image:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .25s ease-in-out;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 70%);
     border-radius: 0.75rem; 
    content: '';
}

.wp-block-latest-posts li:hover .wp-block-latest-posts__featured-image:after {

  -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background: linear-gradient(20deg,var(--oranje),transparent 70%);
}

.wp-block-latest-posts__post-title {
    font-size: 28px;
    line-height: 35px;
    display: block;
    align-items: center;
    padding: 2.5rem 4rem 2.5rem 2.5rem;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-weight: 700;
    min-height: 220px;
    text-decoration: none;
    display: flex;
    align-items: end;
}
.wp-block-latest-posts__post-title:after {
    width: 50px;
    height: 30px;
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    background-size: auto;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    display: inline-block;
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,1)"><path d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"></path></svg>');
    background-repeat: no-repeat;
}

.wp-block-latest-posts__post-title:hover {
    color: #fff;
}

.wp-block-latest-posts__post-excerpt {
    display: block;
    width: 100%;
}
.blog-share a {
    background-color: var(--groen);
}

.blog-share a:hover {
    background-color: var(--quinary);
}
.blog-share a svg {
    fill:#fff;
}


/* news 2 kolommen */

.wp-block-group-news-col-2 {
    background-color: var(--oranje);
    padding-bottom: 4rem;
}

.wp-block-group-news-col-2:before {
    background-image: url('images/S-B-wit.png'); 
    background-repeat: no-repeat;
    background-position: center; 
    width: 50vw;
    height: 50vw;
    background-size: 100%;
    content: ''; 
    display: block;
    opacity: 0.2;
    top: 0%;
    left: -5%;
    position: absolute;
}

.wp-block-group-news-col-2 .wp-block-group__inner-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group-news-col-2 .wp-block-column:nth-child(1) {
    padding-right: 5rem;
}

.wp-block-group-news-col-2 p,
.wp-block-group-news-col-2 h2,
.wp-block-group-news-col-2 h6 {
    color: #fff;
}


.wp-block-group-news-col-2 .wp-block-buttons .wp-block-button__link {
    background-color: #fff;
    color: var(--groen);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all ease-in-out 0.5s;
}

.wp-block-group-news-col-2 .wp-block-buttons .wp-block-button__link:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.wp-block-group-news-col-2 .wp-block-latest-posts li {
    display: table;
    background-color: #fff;
    border-radius: 5rem;
    overflow: hidden;
    position: relative;
}
.wp-block-group-news-col-2 .wp-block-latest-posts__featured-image {
    position:  relative ;
}
.wp-block-group-news-col-2 .wp-block-latest-posts__featured-image img {
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    
}

.wp-block-group-news-col-2 .wp-block-latest-posts__featured-image.aligncenter {
    margin-bottom: 0em;
    text-align: center;
    position: relative;
}

.wp-block-group-news-col-2  .wp-block-latest-posts__featured-image:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .25s ease-in-out;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 70%);
     border-radius: 0.75rem; 
    content: '';
}

.wp-block-group-news-col-2 .wp-block-latest-posts li:hover .wp-block-latest-posts__featured-image:after {

  -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background: linear-gradient(20deg,var(--oranje),transparent 70%);
}

.wp-block-group-news-col-2 .wp-block-latest-posts__post-title {
    font-size: 20px;
    line-height: 35px;
    display: block;
    align-items: center;
    padding: 2.5rem 4rem 2.5rem 2.5rem;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-weight: 700;
    min-height: 220px;
    text-decoration: none;
    display: flex;
    align-items: end;
}
.wp-block-group-news-col-2 .wp-block-latest-posts__post-title:after {
    width: 50px;
    height: 30px;
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    background-size: auto;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    display: inline-block;
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,1)"><path d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"></path></svg>');
    background-repeat: no-repeat;
}

.wp-block-group-news-col-2 .wp-block-latest-posts__post-title:hover {
    color: #fff;
}

.wp-block-group-news-col-2 .wp-block-latest-posts__post-excerpt {
    display: block;
    width: 100%;
}

/* Reviews */

.wp-block-group-reviews {
    background-color: var(--oranje);
    padding-bottom: 4rem;
}

.wp-block-group-reviews:before {
    background-image: url('images/S-B-wit.png'); 
    background-repeat: no-repeat;
    background-position: center; 
    width: 50vw;
    height: 50vw;
    background-size: 100%;
    content: ''; 
    display: block;
    opacity: 0.2;
    top: 0%;
    left: -5%;
    position: absolute;
}

.wp-block-group-reviews .wp-block-group__inner-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group-reviews .wp-block-column:nth-child(1) {
    padding-right: 5rem;
}

.wp-block-group-reviews p,
.wp-block-group-reviews h2,
.wp-block-group-reviews h6 {
    color: #fff;
}


.wp-block-group-reviews .wp-block-buttons .wp-block-button__link {
    background-color: #fff;
    color: var(--groen);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all ease-in-out 0.5s;
}

.wp-block-group-reviews .wp-block-buttons .wp-block-button__link:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.wp-block-group-reviews .wp-block-latest-posts li {
    display: table;
    background-color: #fff;
    border-radius: 5rem;
    overflow: hidden;
    position: relative;
}
.wp-block-group-reviews .wp-block-latest-posts__featured-image {
    position:  relative ;
}
.wp-block-group-reviews .wp-block-latest-posts__featured-image img {
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    
}

.wp-block-group-reviews .wp-block-latest-posts__featured-image.aligncenter {
    margin-bottom: 0em;
    text-align: center;
    position: relative;
}

.wp-block-group-reviews  .wp-block-latest-posts__featured-image:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .25s ease-in-out;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 70%);
     border-radius: 0.75rem; 
    content: '';
}

.wp-block-group-reviews .wp-block-latest-posts li:hover .wp-block-latest-posts__featured-image:after {

  -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background: linear-gradient(20deg,var(--oranje),transparent 70%);
}

.wp-block-group-reviews .wp-block-latest-posts__post-title {
    font-size: 20px;
    line-height: 35px;
    display: block;
    align-items: center;
    padding: 2.5rem 4rem 2.5rem 2.5rem;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-weight: 700;
    min-height: 220px;
    text-decoration: none;
    display: flex;
    align-items: end;
}
.wp-block-group-reviews .wp-block-latest-posts__post-title:after {
    width: 50px;
    height: 30px;
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    background-size: auto;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    display: inline-block;
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,1)"><path d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z"></path></svg>');
    background-repeat: no-repeat;
}

.wp-block-group-reviews .wp-block-latest-posts__post-title:hover {
    color: #fff;
}

.wp-block-group-reviews .wp-block-latest-posts__post-excerpt {
    display: block;
    width: 100%;
}


/* CTA */


.wp-block-group-cta {
    padding-bottom: 0;
}

.wp-block-group-cta .wp-block-group__inner-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
    background-color: var(--groen);
    border-radius: 0.75rem;
    max-width: 1570px;
}

.wp-block-group-cta h3 {
    font-weight: 400;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0;
}
/* Background Oranje */

.wp-block-group-oranje {
    background-color: var(--oranje);
    padding-bottom: 4rem;
}

.wp-block-group-oranje:before {
    background-image: url('images/S-B-wit.png'); 
    background-repeat: no-repeat;
    background-position: center; 
    width: 50vw;
    height: 50vw;
    background-size: 100%;
    content: ''; 
    display: block;
    opacity: 0.2;
    top: 0%;
    left: -5%;
    position: absolute;
}

.wp-block-group-oranje .wp-block-group__inner-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group-oranje .wp-block-column:nth-child(1) {
    padding-right: 5rem;
}

.wp-block-group-oranje p,
.wp-block-group-oranje h2,
.wp-block-group-oranje h6 {
    color: #fff;
}


.wp-block-group-oranje .wp-block-buttons .wp-block-button__link {
    background-color: #fff;
    color: var(--groen);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all ease-in-out 0.5s;
}

.wp-block-group-oranje .wp-block-buttons .wp-block-button__link:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.wp-block-group-oranje ul li {
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 3rem;
    border-radius: 5rem;
    border: 1px solid #fff;
    margin-bottom: 1rem;
}






/* Reviews */
.wp-block-group.wp-block-group-reviews {
    position: relative;
    color: var(--tertiary);
    z-index: 3;
    overflow: hidden;
}

.page-id-74 .wp-block-group.wp-block-group-review {
    padding-top: 5rem;
}

.wp-block-group.wp-block-group-reviews > .wp-block-group__inner-container {
    /*max-width: 100%;*/
}




.wp-block-group.wp-block-group-reviews .carousel {
    width: calc(100% + 100px);
    margin-top: 3rem;
    margin-left: -1rem;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-card {
    width: 100%;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-image {
    width: 100%;
    /*height: 450px;*/
}

.wp-block-group.wp-block-group-reviews  img,
.wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-image img {
    object-fit: cover;
    border-radius: 5rem;
    filter: brightness(0.6);
    aspect-ratio: 1 / 1;
}

.wp-block-group.wp-block-group-reviews .review-content .text-name,
.wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-name,
.wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-address {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.review-content {
    position: absolute;
    padding: 3rem;
    bottom: 0;
    border-radius: 5rem;
    border: 1px solid #fff;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-content {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-control-prev,
.wp-block-group.wp-block-group-reviews .carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: -60px;
    cursor: pointer;
    opacity: 1;
    background-color: #fff;
}


.wp-block-group.wp-block-group-reviews .carousel .carousel-control-prev {
    left: auto;
    right: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ed6f37'%3E%3Cpath d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-control-next {
    right: 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ed6f37'%3E%3Cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-control-prev:before,
.wp-block-group.wp-block-group-reviews .carousel .carousel-control-prev:after,
.wp-block-group.wp-block-group-reviews .carousel .carousel-control-next:before,
.wp-block-group.wp-block-group-reviews .carousel .carousel-control-next:after {
    display: none;
}

.wp-block-group.wp-block-group-reviews .carousel .carousel-control-prev:hover,
.wp-block-group.wp-block-group-reviews .carousel .carousel-control-next:hover {
    background-color: var(--groen);
}

/* Scroll fix */
@media (max-width: 767px) {
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item > div {
        display: none;
    }

    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item > div:first-child {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .wp-block-group.wp-block-group-reviews .carousel-control-prev,
    .wp-block-group.wp-block-group-reviews .carousel-control-next {
        top: -70px;
    }
}

.wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item.active,
.wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-next,
.wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-end.active,
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-start.active, 
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-end.active,
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-start.active, 
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

@media (min-width: 1200px) and (max-width: 1499.98px) {
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-end.active,
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-next {
        transform: translateX(20%);
    }

    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-start.active, 
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-prev {
        transform: translateX(-20%);
    }
}

@media (min-width: 1500px) {
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-end.active,
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-start.active, 
    .wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }

    #carouselReviews .carousel-inner {
        width: 1600px;
        /*padding-left: 1rem;  
        padding-right: 1rem;*/
    }
}

.wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-end,
.wp-block-group.wp-block-group-reviews .carousel-inner .carousel-item-start { 
    transform: translateX(0);
}

@media (max-width: 767.98px) {
    .wp-block-group.wp-block-group-reviews > .wp-block-group__inner-container > h3 {
        font-size: 2rem;
    }

    .wp-block-group.wp-block-group-reviews .carousel {
        width: 100%;
        margin-left: 0;
    }

    .wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-image {
        height: 300px;
    }

    .wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-card {
        background-color: var(--groen);
    }

    .wp-block-group.wp-block-group-reviews .carousel .carousel-control-prev {
        left: auto;
        right: 45px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23aaa689'%3E%3Cpath d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
        background-size: 16px 16px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .wp-block-group.wp-block-group-reviews .carousel .carousel-control-next {
        right: 5px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23aaa689'%3E%3Cpath d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
        background-size: 16px 16px;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .wp-block-group.wp-block-group-reviews > .wp-block-group__inner-container > h3 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  
}

@media (min-width: 1200px) and (max-width: 1499.98px) {
    .wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-image {
        height: 350px;
    }
}

.wp-block-group-team-grid .wp-block-group__inner-container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group-team-grid .wp-block-column ul {
    padding-left: 0;
    display: inline-block;
}

.wp-block-group.wp-block-group-team-grid .medewerker-card {
    list-style: none;
    background-color: transparent;
    padding: .5rem;
    width: 50%;
    min-height: 580px;
    float: left;
}

.wp-block-group.wp-block-group-team-grid .medewerker-card:first-child {
    padding-left: 0;
}

.wp-block-group.wp-block-group-team-grid .medewerker-card:last-child {
    padding-right: 0;
}

.wp-block-group.wp-block-group-team-grid .card-inner {
    border-radius: 10px;
    background-color: transparent;
}
.wp-block-group.wp-block-group-team-grid .card-inner .text-content  {
    padding: 2.5rem;
    border-radius: 90px;
    background-color: #fff;
    margin-top: -2.5rem;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-group.wp-block-group-team-grid .card-inner .text-content h3 {
    color: var(--oranje);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.wp-block-group.wp-block-group-team-grid .card-inner .text-content p {
    font-size: 1.125rem;
    font-weight: 400;
}
.wp-block-group.wp-block-group-team-grid .image {
    position: relative;
    
}

.wp-block-group.wp-block-group-team-grid .image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.wp-block-group.wp-block-group-team-grid .actions ul li.swiper-grid  {
    display: inline-block;
    margin: 0 5px !important;
}


.wp-block-group.wp-block-group-team-grid .actions {
    position: absolute;
    bottom: 4rem;
    width: 100%;
    text-align: center;
}

.wp-block-group.wp-block-group-team-grid .actions a  {
    background-color: var(--oranje);
    width: 45px;
    height: 45px;
    border-radius: 45px;
    line-height: 45px;
    display: inline-block;
    margin: 3px;
}

.wp-block-group.wp-block-group-team-grid .actions a svg {
    fill: #fff;
    height: 18px;
    line-height: 18px;
    margin-top: -5px;
}

.wp-block-group.wp-block-group-team-grid .medewerker-content {
    position: absolute;
    padding-top: 150px;
    bottom: 0px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.0));
    overflow: hidden;
    border-radius: 35px;
    transition: all ease 0.5s;
    opacity: 0;
}

.wp-block-group.wp-block-group-team-grid .image:hover .medewerker-content {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
    opacity: 1;
}

.wp-block-group.wp-block-group-team-grid .medewerker-content p {
    margin-bottom: 0;
}

.wp-block-group.wp-block-group-team-grid .medewerker-content a {
    color: #fff;
}


/* footer */

.footer {
    background-color: var(--oranje);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.footer:before {
    background-color: var(--oranje);
    height: 5rem;
    width: 100%;
    position: absolute;
    content: '';
    top: -5rem;
    z-index: -1;
}

.footer h5 { 
    font-size: 2.125rem;
    font-weight: 400;
}

.footer ul li {
    line-height: 40px;
}

.footer ul li,
.footer ul li a,
.footer h5 {
    color:#fff;
    text-decoration: none;
    font-weight: 400;
}

.footer .list-navigation ul {
    padding-left: 0;
}

.footer .list-navigation ul li {
    list-style: none;
}
.footer .list-navigation ul li {
    background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z" fill="%23d5d0ab"></path></svg>');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
    background-size: 9px;
}

.footer ul li span {
    width: 130px;
    display: inline-block;
}

.footer ul.footer-icons svg {
    fill: var(--groen);
    aspect-ratio: 1 / 1;
    width: 20px;
}


.footer ul.footer-brands {
    position: relative;
    z-index: 888;
    width: 80%;
    margin: auto;
    padding: 1.5rem 0 4rem;
}

.footer ul.footer-brands li {
    width: 25%;
    text-align: center;
    margin: auto;
    display: inline-block;
}
.footer-brands li.nvm {
    top: -24px;
    position: relative;
}

.footer-brands li.nvm svg.svg-brand {
    max-height: 76px ;
}

.footer svg.svg-brand .svg-nvm-1,
.footer svg.svg-brand .svg-nvm-business-1,
.footer svg.svg-brand .svg-mva-1,
.footer svg.svg-brand .svg-mva-expats-1,
.footer svg.svg-brand .svg-funda-1,
.footer svg.svg-brand .svg-funda-ib-1,
.footer svg.svg-brand .svg-funda-3,
.footer svg.svg-brand .svg-funda-ib-3,
.footer svg.svg-brand .svg-funda-ib-4,
.footer svg.svg-brand .svg-pararius-1,
.footer svg.svg-brand .svg-pararius-2,
.footer svg.svg-brand .svg-vbo-2,
.footer svg.svg-brand .svg-vastgoedcert-1,
.footer svg.svg-brand .svg-vastgoedcert-2,
.footer svg.svg-brand .svg-nwwi-2,
.footer svg.svg-brand .svg-tmi-1,
.footer svg.svg-brand .svg-tmi-2,
.footer svg.svg-brand .svg-nrvt-2,
.footer svg.svg-brand .svg-scvm-1,
.footer svg.svg-brand .svg-scvm-2,
.footer svg.svg-brand .svg-scvm-3,
.footer svg.svg-brand .svg-scvm-4,
.footer svg.svg-brand .svg-vastgoedpro-1,
.footer svg.svg-brand .svg-vastgoedpro-2,
.footer svg.svg-brand .svg-qualis-1,
.footer svg.svg-brand .svg-qualis-2 {
    fill: var(--groen);
}

svg.svg-brand .svg-nrvt-1 {
    fill: var(--oranje);
}

.footer svg.svg-brand .svg-nwwi-3 {
    fill: #000;
    opacity: .4;
}

.footer svg.svg-brand .svg-vbo-1,
.footer svg.svg-brand .svg-funda-2,
.footer svg.svg-brand .svg-funda-ib-2,
.footer svg.svg-brand .svg-nwwi-1,
.footer svg.svg-brand .svg-qualis-3 {
    fill: transparent;
}

.footer-copyright {
    padding-top: 20px;
    height: 70px;
    font-size: 16px;
}


.footer-copyright p,
.footer-copyright span
.footer-copyright,
.footer-copyright a {
    color: #6b7280;
     font-size: 16px;
     font-weight: 500;
}


/* news */

.page-single .post-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    aspect-ratio: 3 / 1.5;
    height: auto;
    margin-bottom: 3rem;
}



/* wpforms */
body .iti__selected-country-primary, div.wpforms-container .wpforms-form .iti__selected-country-primary, div.wpforms-container-full .wpforms-form .iti__selected-country-primary, #wpforms-conversational-form-page .iti__selected-country-primary {
    display: none !important;
}
div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-row:last-of-type,
div.wpforms-container-full .wpforms-form input[type=date], div.wpforms-container-full .wpforms-form input[type=datetime], div.wpforms-container-full .wpforms-form input[type=datetime-local], div.wpforms-container-full .wpforms-form input[type=email], div.wpforms-container-full .wpforms-form input[type=month], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=password], div.wpforms-container-full .wpforms-form input[type=range], div.wpforms-container-full .wpforms-form input[type=search], div.wpforms-container-full .wpforms-form input[type=tel], div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=time], div.wpforms-container-full .wpforms-form input[type=url], div.wpforms-container-full .wpforms-form input[type=week], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
    min-height: 66px !important;   
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 18px !important;
    font-weight: 300!important;
    border: 1px solid rgba(0,33,78,.1) !important;
    background-color: #fff;
}
 div.wpforms-container-full .wpforms-form input[type=search] {
    height: auto !important;
 }

div.wpforms-container-full .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner .choices__list--multiple:empty+.choices__input,
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__inner, div.wpforms-container .wpforms-form .choices[data-type*="text"] .choices__inner,
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__inner {
    border: 1px solid rgba(0,33,78,.0) !important;
    min-height: 62px !important; 
}

div.wpforms-container-full .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner .choices__list--multiple:empty+.choices__input {
}


div.wpforms-container .wpforms-form .choices__list--dropdown {
    min-height: 62px !important; 
}

div.wpforms-container-full .wpforms-form textarea  {
    height: 200px !important;
    padding-top: 20px;
}

div.wpforms-container-full .wpforms-form label.wpforms-error {
    color: #ea0c00 !important;
    font-size: 14px !important;
    margin-top: 18px !important;
    font-weight: 400!important;
    opacity: 1 !important;
}

#wpforms-2531-field_5-error {
    position: absolute;
}

/* Change WPForms placeholder text color */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
    color: var(--blauw) !important; /* Change to your desired color */
    opacity: 0.6 !important; /* Ensure visibility in some browsers */
    font-weight: 400 !important;
}

/* For older browser support */
.wpforms-form input:-ms-input-placeholder,
.wpforms-form textarea:-ms-input-placeholder {
    color: var(--blauw) !important;
        opacity: 0.6 !important; /* Ensure visibility in some browsers */
        font-weight: 400 !important;

}

.wpforms-form input::-ms-input-placeholder,
.wpforms-form textarea::-ms-input-placeholder {
    color: var(--blauw) !important;
        opacity: 0.6 !important; /* Ensure visibility in some browsers */
        font-weight: 400 !important;

}

/* Change placeholder color when input is focused */
.wpforms-form input:focus::placeholder,
.wpforms-form textarea:focus::placeholder {
    opacity: 0.4 !important; /* Change to your desired color */
}


div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background-color: var(--groen) !important;
    border: 1px solid var(--groen)!important;
    border-radius: 50px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(1em + 2px) calc(1.5em + 2px) !important;
    font-size: 16px !important;
    font-weight: 700;
    color: #fff !important;
}

div.wpforms-container-full .wpforms-form input[type=checkbox], div.wpforms-container-full .wpforms-form input[type=radio] {
    border: 1px solid #ccc;
    background-color: #fff;
    width: 14px;
    height: 14px;
    margin: 11px 10px 0 3px !important;
    display: inline-block;
    vertical-align: baseline;
}

.wpforms-container .wpforms-form .wpforms-field-privacy-checkbox a {
    color: var(--oranje);
}



.footer .wpforms-container .wpforms-form .wpforms-field-privacy-checkbox a {
    color: #fff;
}

.footer div.wpforms-container-full .wpforms-form input[type=submit]:hover, .footer div.wpforms-container-full .wpforms-form button[type=submit]:hover, .footer div.wpforms-container-full .wpforms-form .wpforms-page-button:hover {
    background-color: var(--groen) !important;
    border-color: var(--groen) !important;
    color: var(--oranje) !important;
}


.footer div.wpforms-container-full .wpforms-form .wpforms-field-label,
.footer .wpforms-container .wpforms-form .wpforms-field-privacy-checkbox .wpforms-field-description {
    color: #fff !important;
}


.footer ul.list-social li {
    display: inline-block;
    width: 40px;
}

.footer ul.list-social li a.svg-rounded {
    width: 40px;
    height: 40px;
    background-color: #fff;
}

.footer ul.list-social li a.svg-rounded svg {
    max-height: 30px;
}

.list-social li svg.svg-social .svg-tiktok,
.list-social li svg.svg-social .svg-facebook,
.list-social li svg.svg-social .svg-twitter,
.list-social li svg.svg-social .svg-linkedin,
.list-social li svg.svg-social .svg-youtube,
.list-social li svg.svg-social .svg-instagram,
.list-social li svg.svg-social .svg-whatsapp {
    fill: var(--oranje);
}

.footer ul.list-social li a.svg-rounded:hover,
.footer ul.list-social li a.svg-rounded:focus {
    background-color: var(--groen);
}



.list-social li a.svg-rounded:hover svg.svg-social .svg-tiktok,
.list-social li a.svg-rounded:hover svg.svg-social .svg-facebook,
.list-social li a.svg-rounded:hover svg.svg-social .svg-twitter,
.list-social li a.svg-rounded:hover svg.svg-social .svg-linkedin,
.list-social li a.svg-rounded:hover svg.svg-social .svg-youtube,
.list-social li a.svg-rounded:hover svg.svg-social .svg-instagram,
.list-social li a.svg-rounded:hover svg.svg-social .svg-whatsapp {
    fill: #fff;
}


/* Announcement */
.announcement {
    max-width: 375px;
    bottom: 12rem;
    right: 2rem;
    z-index: 999;
}

.announcement .collapse {
    max-width: 375px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.announcement .well {
    background-color: var(--oranje)!important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: #fff;
    padding: 25px;
    border-radius: 0.75rem;
}

.announcement h4 {
    line-height: 1.2;
    font-size: 1.8rem;
    color: #fff;
}

.announcement a.btn {
    padding: .75rem 1.5rem;
    background-color: #fff;
    border-radius: .25rem;
    border: 2px solid transparent;
    color: var(--oranje);
    font-weight: 500;
    transition: all ease 0.5s;
}


.announcement-info ul li{
    font-style:italic;
}

.announcement-info ul li:before {
    width: 20px;
    height: 20px;
    position: absolute;
    margin-top: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22.75C6.07 22.75 1.25 17.93 1.25 12C1.25 6.07 6.07 1.25 12 1.25C17.93 1.25 22.75 6.07 22.75 12C22.75 17.93 17.93 22.75 12 22.75ZM12 2.75C6.9 2.75 2.75 6.9 2.75 12C2.75 17.1 6.9 21.25 12 21.25C17.1 21.25 21.25 17.1 21.25 12C21.25 6.9 17.1 2.75 12 2.75Z' fill='%237a6200'/%3E%3Cpath d='M10.7397 16.2802C10.5497 16.2802 10.3597 16.2102 10.2097 16.0602C9.91969 15.7702 9.91969 15.2902 10.2097 15.0002L13.2097 12.0002L10.2097 9.00016C9.91969 8.71016 9.91969 8.23016 10.2097 7.94016C10.4997 7.65016 10.9797 7.65016 11.2697 7.94016L14.7997 11.4702C15.0897 11.7602 15.0897 12.2402 14.7997 12.5302L11.2697 16.0602C11.1197 16.2102 10.9297 16.2802 10.7397 16.2802Z' fill='%237a6200'/%3E%3C/svg%3E%0A");
    content: '';
    margin-left: -30px;
}

.announcement-info ul{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left:15px;
}

.announcement a.btn:hover,
.announcement a.btn:focus {
    background-color: var(--groendark);
    color: #fff;
}

.announcement .btn-announcement-close {
    width: 30px;
    height: 30px;
    background: var(--groen);
    position: absolute;
    top: -15px;
    right: -15px;
}

.announcement .btn-announcement-close:before,
.announcement .btn-announcement-close:after {
    width: 13px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    content: '';
}

.announcement .btn-announcement-close:before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.announcement .btn-announcement-close:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 576px) {

    .announcement {
        max-width: 260px;
        left: 0.75rem;
        bottom: 0.75rem;
        transform: scale(0.85);
    }

    .announcement .collapse {
        max-width: 260px;
    }

    .announcement .well {
        padding: 15px;
    }

    .announcement h4 {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .announcement p,
    .announcement li {
        font-size: 0.85rem;
    }

    .announcement a.btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .announcement .btn-announcement-close {
        width: 24px;
        height: 24px;
        top: -12px;
        right: -12px;
    }

    .announcement-info.p-3 {
        padding: 0 1rem !important;
    }

    .announcement a.btn,
    .announcement .knop-default {
        margin-top: 0;
    }
}



@media (min-width: 768px) and (max-width: 991.98px) {
    
}


@media (min-width: 992px) and (max-width: 1199.98px) {
    
}

@media(max-width: 767px) {
    .wp-block-group-header-content-image .wp-block-columns .wp-block-column:nth-child(1) {
        padding: 1.5rem;
        max-width: 100%;
    }
    .counter-wrap .col-sm-6 {
        border-right: 0px solid var(--groen);
    }

    .wp-block-latest-posts.is-grid li {
        margin: 0 0 1.25em 0;
    }

    .wp-block-latest-posts__featured-image img {
        height: auto;
        aspect-ratio: 2 / 1.5;
    }

    .wp-block-group-content-image img {
        margin-top: 2rem;
    }

    .wp-block-group-cta h3 {
        font-size: 1.5rem;
    }

    .wp-block-group-cta .wp-block-group__inner-container {
        padding: 1rem;
        text-align: center;
    }

    .wp-block-group-cta {
        padding-top: 0;
    }
    .wp-block-group-cta .wp-block-buttons.is-content-justification-right {
        justify-content: center;
    }
    .wp-block-button.is-style-outline--2 .wp-block-button__link {
         padding: calc(0.2em + 0px) calc(0.5em + 0px);
    }

    .wp-block-button__link {
        padding: calc(0.2em + 2px) calc(0.5em + 2px);
    }

    .wp-block-group.wp-block-group-reviews {
        padding-bottom: 0;
    }

    .wp-block-group.wp-block-group-reviews .carousel .carousel-item .carousel-item-card.px-3 {
        padding: 0 !important;
    }
    .wp-block-group-counter {
        text-align: center;
    }

     .wp-block-group-counter .wp-block-button  {
        margin: 0 auto 2rem;
    }

}




/* Steps */
.wp-block-group.wp-block-group-steps {
}

.wp-block-group.wp-block-group-steps.background {
    background-color: var(--groen);
}


.wp-block-group.wp-block-group-steps.background a {
    color: #fff;
}

.wp-block-group.wp-block-group-steps.background:before {
    background-image: url('images/S-B.png'); 
    background-repeat: no-repeat;
    background-position: center; 
    width: 50vw;
    height: 50vw;
    background-size: 100%;
    content: ''; 
    display: block;
    opacity: 0.2;
    top: -25%;
    position: absolute;
}

.wp-block-group.wp-block-group-steps.background h6 {
    color: var(--oranje);

}

.wp-block-group.wp-block-group-steps.background p,
.wp-block-group.wp-block-group-steps.background h2,
.wp-block-group.wp-block-group-steps.background h3,
.wp-block-group.wp-block-group-steps.background h4 {
    color: #fff;
}


.carousel-item-inside .carousel-item-image:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .5s ease-in-out;
    background: linear-gradient(0deg, rgba(0, 0, 0, .1), transparent 70%);
    border-radius: 0.75rem;
    content: '';
    transition: all ease 0.5s;
    z-index: 1;
}

.carousel-item-inside:hover .carousel-item-image:after {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    background: linear-gradient(20deg, rgba(237, 111, 55, 1), transparent 70%);
    z-index: 1;
}



#carouselSteps .carousel-inner {
    width: calc(100% + 1rem);
}

.wp-block-group.wp-block-group-steps h2 {
    color: #fff;
}

.wp-block-group.wp-block-group-steps > .wp-block-group__inner-container > p:last-of-type {
    margin-bottom: 2rem;
}

.wp-block-group.wp-block-group-steps .carousel {
    margin-top: 0rem;
    box-sizing: border-box;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item {
    height: auto;
    /*margin-left: -1rem;*/
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .col-12 {
    padding-right: 1.4rem;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside {
    background-color: #fff;
    border-radius: 5rem;
    overflow: hidden;
    height: 600px;
}


.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside .carousel-item-image {
    background-color: var(--groen);
    height: 500px;
    
}
.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside .carousel-item-image img {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    filter: brightness(0.9);
    aspect-ratio: 2 / 3;
    width: 100%;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside .carousel-item-info {
    z-index: 11;
    position: absolute;
    bottom: -220px;
    transition: all ease 0.5s;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-number {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}
.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-title {
    transition: all ease 0.5s;
}
.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-title h3 {
    font-size: 1.4rem;
    color: #fff;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-content {
    flex-grow: 1;
    color: #fff;
    opacity: 0;
    transition: all ease 1.5s;
    height: 200px;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside:hover .carousel-item-info {
    bottom: 0%;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside:hover .carousel-item-content {
    opacity: 1;
    height: auto;
}


.wp-block-group.wp-block-group-steps .carousel .carousel-control-prev,
.wp-block-group.wp-block-group-steps .carousel .carousel-control-next {
    width: 37px;
    height: 37px;
    top: -50px;
    background-color: var(--oranje);
    cursor: pointer;
    opacity: 1;
    border-radius: 50px;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-control-prev {
    left: auto;
    right: 50px;
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.82129 0.5C7.90691 0.500059 7.98026 0.526325 8.0625 0.608398C8.1448 0.694341 8.1709 0.771445 8.1709 0.857422C8.17081 0.944261 8.14426 1.01826 8.0625 1.10059L1.70117 7.46191H15.1113C15.2328 7.46193 15.3079 7.49726 15.3721 7.56055C15.4342 7.6219 15.4687 7.69362 15.4688 7.81348C15.4688 7.93333 15.4342 8.00505 15.3721 8.06641C15.3079 8.12969 15.2328 8.16502 15.1113 8.16504H1.70117L8.05664 14.5205V14.5195C8.1389 14.602 8.16719 14.6788 8.16797 14.7705V14.7715C8.16849 14.838 8.15383 14.8964 8.1123 14.9561L8.06055 15.0176C7.9806 15.0985 7.90742 15.1248 7.81836 15.124C7.72391 15.1231 7.6456 15.0931 7.5625 15.0107L0.614258 8.0625C0.561096 8.00833 0.5354 7.9662 0.523438 7.9375V7.93652C0.50833 7.90019 0.5 7.8601 0.5 7.8125C0.50003 7.76491 0.508641 7.72576 0.523438 7.69043V7.68945C0.535302 7.66099 0.560769 7.61862 0.614258 7.56445L7.56445 0.614258C7.65485 0.527034 7.73453 0.5 7.82129 0.5Z" fill="white" stroke="white"/></svg>');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.wp-block-group.wp-block-group-steps .carousel .carousel-control-next {
    right: 3px;
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.14453 0.5C8.21548 0.500668 8.27733 0.517317 8.33887 0.560547L8.40039 0.613281L15.3486 7.56152C15.4018 7.61569 15.4275 7.65782 15.4395 7.68652V7.6875C15.4546 7.72385 15.4629 7.7639 15.4629 7.81152C15.4629 7.85913 15.4543 7.89825 15.4395 7.93359V7.93457C15.4276 7.96304 15.4022 8.00538 15.3486 8.05957L8.39453 15.0078C8.30318 15.0981 8.22456 15.124 8.1416 15.124C8.0609 15.1239 7.98874 15.0994 7.90527 15.0137L7.90039 15.0088L7.84863 14.9482C7.80653 14.8886 7.79201 14.8306 7.79199 14.7656C7.79199 14.701 7.80676 14.6433 7.84863 14.584L7.90039 14.5234L14.2617 8.16211H0.851562C0.729469 8.16207 0.657228 8.12693 0.59668 8.06641H0.595703C0.53483 8.0055 0.500002 7.93257 0.5 7.81055C0.5 7.68853 0.534835 7.6156 0.595703 7.55469H0.59668C0.657231 7.49416 0.729461 7.45902 0.851562 7.45898H14.2617L7.90625 1.10352C7.84494 1.04216 7.81315 0.983763 7.80078 0.918945L7.79492 0.851562C7.79401 0.761613 7.82017 0.688031 7.90039 0.607422L7.90137 0.606445C7.98151 0.525858 8.05487 0.499224 8.14453 0.5Z" fill="white" stroke="white"/></svg>');
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}



.wp-block-group.wp-block-group-steps .carousel .carousel-control-prev:before,
.wp-block-group.wp-block-group-steps .carousel .carousel-control-prev:after,
.wp-block-group.wp-block-group-steps .carousel .carousel-control-next:before,
.wp-block-group.wp-block-group-steps .carousel .carousel-control-next:after {
    display: none;
}

/* Scroll fix */
@media (max-width: 767px) {
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item > div {
        display: none;
    }

    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item > div:first-child {
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item.carousel-item-prev {
        z-index: 3;
    }
}

.wp-block-group.wp-block-group-steps .carousel-inner .carousel-item.active,
.wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-next,
.wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-end.active,
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-start.active, 
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

@media (min-width: 1200px) {
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-end.active,
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-start.active, 
    .wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-end,
.wp-block-group.wp-block-group-steps .carousel-inner .carousel-item-start { 
    transform: translateX(0);
}

@media (max-width: 767.98px) {
    .wp-block-group.wp-block-group-steps .wp-block-group__inner-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .wp-block-group.wp-block-group-steps > .wp-block-group__inner-container > h2 {
        margin-bottom: 4rem;
    }
    
    .wp-block-group.wp-block-group-steps .carousel {
        width: 100%;
        margin-top: 5rem;
    }

    .wp-block-group.wp-block-group-steps .carousel .carousel-item {
        margin-left: 0;
    }

    .wp-block-group.wp-block-group-steps .carousel .carousel-item .col-12 {
        padding-right: 0;
    }

    .wp-block-group.wp-block-group-steps .carousel .carousel-item .carousel-item-inside {
        height: auto!important;
        min-height: 350px;
    }
    
    .wp-block-group.wp-block-group-steps .carousel .carousel-control-prev,
    .wp-block-group.wp-block-group-steps .carousel .carousel-control-next {
        top: -58px;
    }
    
    .wp-block-group.wp-block-group-steps .carousel .carousel-control-prev {
        right: 47px;
    }
    
    .wp-block-group.wp-block-group-steps .carousel .carousel-control-next {
        right: 0;
    }

    .wp-block-group.wp-block-group-steps .wp-block-group__inner-container p:last-of-type a {
        margin-right: auto;
        float: none;
    }
    
    .wp-block-group.wp-block-group-steps .wp-block-group__inner-container p:last-of-type a:last-of-type {
        margin-right: auto;
    }
}


.page-id-402 .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    z-index: 9998;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    backdrop-filter: blur(10px);
}



@media(max-width: 767px) {
    .wp-block-group-image-content .wp-block-columns .wp-block-column:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
    }
    #carouselSpecialObjects {
        width: 100%;
        margin: auto;
        box-sizing: border-box;
    }
    .properties-special .carousel-control-next {
         right: 0px; 
    }

    .wp-block-group.wp-block-group-objects .wp-block-columns {
        gap: 2rem;
    }

    .wp-block-group.wp-block-group-objects {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}



/* wijken */

.wijken-maps svg {
    width: 100%;
}
.wijken-maps a {
    text-decoration: none;
}

.wijken-maps a text {
    opacity: 0;
}

.wijken-maps a path {
    fill: rgba(237,111,55,0.0);
    transition: all ease 0.5s;
    text-decoration: none;
    stroke: rgba(255,255,255, 1.0);
}

.wijken-maps a:hover path {
     fill: rgba(237,111,55,1.0);
     stroke: rgba(255,255,255, 0.0);
}

.wijken-maps a:hover text {
    opacity: 1;
}

.list-wijken {
    padding-left: 0;
    column-count: 2;
}
.list-wijken li {
    width: 100%;
    list-style: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ed6f37"><g clip-path="url(%23clip0_4418_8221)"><path d="M20.6201 8.45C19.5701 3.83 15.5401 1.75 12.0001 1.75C12.0001 1.75 12.0001 1.75 11.9901 1.75C8.4601 1.75 4.4201 3.82 3.3701 8.44C2.2001 13.6 5.3601 17.97 8.2201 20.72C9.2801 21.74 10.6401 22.25 12.0001 22.25C13.3601 22.25 14.7201 21.74 15.7701 20.72C18.6301 17.97 21.7901 13.61 20.6201 8.45ZM12.0001 13.46C10.2601 13.46 8.8501 12.05 8.8501 10.31C8.8501 8.57 10.2601 7.16 12.0001 7.16C13.7401 7.16 15.1501 8.57 15.1501 10.31C15.1501 12.05 13.7401 13.46 12.0001 13.46Z" fill="white" style="fill: var(--fillg);"/></g><defs><clipPath id="clip0_4418_8221"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-size: 20spx;
    padding-left: 33px;
    line-height: 30px;
    background-position: left center;
}

.list-wijken li a {
    width: 100%;
}