svg柱状图图表动画展示效果代码

代码语言:html

所属分类:图表

代码描述:svg柱状图图表动画展示效果代码

代码标签: svg 图表 动画 柱状图

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

 
<meta charset="UTF-8">
 

 
 
 
<style>
#Master_2 {
 
transform: translateX(100%);
 
-webkit-animation: moveMenu 2000ms ease-out both;
         
animation: moveMenu 2000ms ease-out both;
 
-webkit-animation-delay: 2000ms;
         
animation-delay: 2000ms;
}

.firstGraph *,
.secGraph *,
.thirdGraph * {
 
transform-box: fill-box;
 
transform-origin: center bottom;
 
-webkit-animation: growAnim 300ms ease-out both;
         
animation: growAnim 300ms ease-out both;
}

.firstGraph .sec {
 
-webkit-animation-delay: 100ms;
         
animation-delay: 100ms;
}

.firstGraph .third {
 
-webkit-animation-delay: 200ms;
         
animation-delay: 200ms;
}

.secGraph .first {
 
-webkit-animation-delay: 300ms;
         
animation-delay: 300ms;
}

.secGraph .sec {
 
-webkit-animation-delay: 400ms;
         
animation-delay: 400ms;
}

.secGraph .third {
 
-webkit-animation-delay: 500ms;
         
animation-delay: 500ms;
}

.thirdGraph .first {
 
-webkit-animation-delay: 600ms;
         
animation-delay: 600ms;
}

.thirdGraph .sec {
 
-webkit-animation-delay: 700ms;
         
animation-delay: 700ms;
}

.thirdGraph .third {
 
-webkit-animation-delay: 800ms;
         
animation-delay: 800ms;
}

#text_7,
#text_8,
#text_9 {
 
-webkit-animation: textFade 300ms ease-out both;
         
animation: textFade 300ms ease-out both;
 
-webkit-animation-delay: 200ms;
         
animation-delay: 200ms;
}

#text_8 {
 
-webkit-animation-delay: 500ms;
         
animation-delay: 500ms;
}

#text_9 {
 
-webkit-animation-delay: 800ms;
         
animation-delay: 800ms;
}

#cursor {
 
transform-box: fill-box;
 
transform-origin: center;
 
-webkit-animation: cursorAnim 2000ms linear both;
         
animation: cursorAnim 2000ms linear both;
 
-webkit-animation-delay: 900ms;
         
animation-delay: 900ms;
}

#Main_2 {
 
transform-box: fill-box;
 
transform-origin: center;
 
-webkit-clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%);
         
clip-path: polygon(0 0, 80% 0, 80% 100%, 0% 100%);
 
-webkit-animation: showUp 300ms linear both;
         
animation: showUp 300ms linear both;
 
-webkit-animation-delay: 3200ms;
         
animation-delay: 3200ms;
}

.newFirst,
.newSec,
.newThird {
 
transform-box: fill-box;
 
transform-origin: center bottom;
 
-webkit-animation: growAnim 300ms ease-out both;
         
animation: growAnim 300ms ease-out both;
 
-webkit-animation-delay: 3500ms;
         
animation-delay: 3500ms;
}

.textFirst,
.textSec,
.textThird {
 
-webkit-animation: textFade 300ms ease-out both;
         
animation: textFade 300ms ease-out both;
 
-webkit-animation-delay: 3800ms;
         
animation-delay: 3800ms;
}

.newSec {
 
-webkit-animation-delay: 3700ms;
         
animation-delay: 3700ms;
}

.newThird {
 
-webkit-animation-delay: 3900ms;
         
animation-delay: 3900ms;
}

.textSec {
 
-webkit-animation-delay: 4000ms;
         
animation-delay: 4000ms;
}

.textThird {
 
-webkit-animation-delay: 4200ms;
         
animation-delay: 4200ms;
}

@-webkit-keyframes moveMenu {
 
0% {
   
transform: translateX(100%);
 
}

 
30% {
   
transform: translateX(0);
 
}

 
50% {
   
transform: translateX(0);
 
}

 
80% {
   
transform: translateX(100%);
 
}

 
100% {
   
transform: translateX(100%);
 
}
}

@keyframes moveMenu {
 
0% {
   
transform: translateX(100%);
 
}

 
30% {
   
transform: translateX(0);
 
}

 
50% {
   
transform: translateX(0);
 
}

 
80% {
   
transform: translateX(100%);
 
}

 
100% {
   
transform: translateX(100%);
 
}
}

@-webkit-keyframes growAnim {
 
0% {
   
transform: scale(1, 0);
 
}

 
100% {
   
transform: scale(1, 1);
 
}
}

@keyframes growAnim {
 
0% {
   
transform: scale(1, 0);
 
}

 
100% {
   
transform: scale(1, 1);
 
}
}

@-webkit-keyframes textFade {
 
0% {
   
transform: translateY(5%);
   
opacity: 0;
 
}

 
100% {
   
transform: translateY(0);
   
opacity: 1;
 
}
}

@keyframes textFade {
 
0% {
   
transform: translateY(5%);
   
opacity: 0;
 
}

 
100% {
   
transform: translateY(0);
   
opacity: 1;
 
}
}

@-webkit-keyframes cursorAnim {
 
0% {
   
transform: translate(-500%, 0) scale(1);
   
opacity: 0;
 
}

 
15% {
   
transform: translate(-250%, 0) scale(1);
   
opacity: 1;
 
}

 
30% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
40% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
45% {
   
transform: translate(0, 0) scale(0.8);
   
opacity: 1;
 
}

 
50% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
60% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
80% {
   
transform: translate(-600%, 200%) scale(1);
   
opacity: 1;
 
}

 
90% {
   
transform: translate(-600%, 200%) scale(1);
   
opacity: 1;
 
}

 
95% {
   
transform: translate(-600%, 200%) scale(0.8);
   
opacity: 1;
 
}

 
100% {
   
transform: translate(-600%, 200%) scale(1);
   
opacity: 0;
 
}
}

@keyframes cursorAnim {
 
0% {
   
transform: translate(-500%, 0) scale(1);
   
opacity: 0;
 
}

 
15% {
   
transform: translate(-250%, 0) scale(1);
   
opacity: 1;
 
}

 
30% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
40% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
45% {
   
transform: translate(0, 0) scale(0.8);
   
opacity: 1;
 
}

 
50% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
60% {
   
transform: translate(0, 0) scale(1);
   
opacity: 1;
 
}

 
80% {
   
transform: translate(-600%, 200%) scale(1);
   
opacity: 1;
 
}

 
90% {
   
transform: translate(-600%, 200%) scale(1);
   
opacity: 1;
 
}

 
95% {
   
transform: translate(-600%, 200%) scale(0.8);
   
opacity: 1;
 
}

 
100% {
   
transform: translate(-600%, 200%) scale(1);
   
opacity: 0;
 
}
}

@-webkit-keyframes showUp {
 
0% {
   
transform: scale(0);
 
}

 
100% {
   
transform: scale(1);
 
}
}

@keyframes showUp {
 
0% {
   
transform: scale(0);
 
}

 
100% {
   
transform: scale(1);
 
}
}

body
{
 
overflow: hidden;
}
svg
{
 
position: absolute;
 
inset: 0;
}
#playCheck {
 
position: absolute;
 
z-index: 9;
 
width: 100%;
 
height: 100%;
 
top: 0;
 
left: 0;
 
opacity: 0;
}
#playCheck:checked ~ svg * {
 
-webkit-animation-name: none !important;
         
animation-name: none !important;
 
display: none;
}
.clickText {
 
position: absolute;
 
z-index: 10;
 
width: 100vw;
 
height: 100vh;
 
opacity: 0;
 
display: flex;
 
align-items: center;
 
justify-content: center;
 
pointer-events: none;
 
font-family: sans-serif;
 
font-size: 1.2em;
 
color: gray;
 
transition: opacity 300ms linear 0ms;
}
#playCheck:checked ~ .clickText {
 
opacity: 1;
}
</style>



</head>

<body >
 
<input type="checkbox" id="playCheck" />
<div class="clickText">Click again to replay</div>
<svg width="100vw" height="100vh" viewBox="0 0 664 566" fill="none" xmlns="http://www.w3.org/2000/svg">
 
<g id="Frame 2152">
   
<g id="Images - Product">
     
<g id="Frame 2149">
       
<g id="Main" filter="url(#filter0_dddd_5074_68376)">
         
<g clip-path="url(#clip0_5074_68376)">
           
<rect x="80" y="80" width="504" height="406" rx="13.9848" fill="white" />
           
<g id="Frame 2017" clip-path="url(#clip1_5074_68376)">
             
<g id="graph">
               
<path id="Vector" d="M157.012 400H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" />
               
<path id="Vector_2" d="M157.012 298H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" />
               
<path id="Vector_3" d="M157.012 361H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" />
               
<path id="Vector_4" d="M157.012 233.797H669.947" stroke="#E9E9E9" stroke-width="0.473416" stroke-miterlimit="10" stroke-linecap="square" stroke-dasharray="0.47 0.47 0.47 0.47 0.47 0.47" />
               
<g id="Dates">
                 
<path id="text" d="M211.983 411.455H211.203V416.607H211.139L207.56 411.455H206.793V418H207.585V412.861H207.649L211.216 418H211.983V411.455ZM219.092 414.727C219.092 412.656 217.877 411.365 216.203 411.365C214.528 411.365 213.313 412.656 213.313 414.727C213.313 416.798 214.528 418.089 216.203 418.089C217.877 418.089 219.092 416.798 219.092 414.727ZM218.325 414.727C218.325 416.428 217.391 417.348 216.203 417.348C215.014 417.348 214.08 416.428 214.08 414.727C214.08 413.027 215.014 412.107 216.203 412.107C217.391 412.107 218.325 413.027 218.325 414.727ZM220.385 411.455H219.554L221.958 418H222.776L225.179 411.455H224.348L222.405 416.964H222.328L220.385 411.455Z" fill="#898989" />
                 
<path id="text_2" d="M320.812 418C322.807 418 323.932 416.76 323.932 414.714C323.932 412.682 322.807 411.455 320.902 411.455H318.793V418H320.812ZM319.585 417.297V412.158H320.851C322.385 412.158 323.165 413.129 323.165 414.714C323.165 416.312 322.385 417.297 320.761 417.297H319.585ZM325.261 418H329.263V417.297H326.054V415.072H329.007V414.369H326.054V412.158H329.212V411.455H325.261V418ZM335.907 413.5C335.664 412.158 334.591 411.365 333.274 411.365C331.599 411.365 330.385 412.656 330.385 414.727C330.385 416.798 331.599 418.089 333.274 418.089C334.591 418.089 335.664 417.297 335.907 415.955H335.115C334.923 416.862 334.143 417.348 333.274 417.348C332.085 417.348 331.152 416.428 331.152 414.727C331.152 413.027 332.085 412.107 333.274 412.107C334.143 412.107 334.923 412.592 335.115 413.5H335.907Z" fill="#898989" />
                 
<path id="text_3" d="M432.298 411.455V416.134C432.298 416.949 431.908 417.386 431.224 417.386C430.601 417.386 430.151 417.022 430.151 416.466H429.371C429.371 417.473 430.151 418.089 431.224 418.089C432.362 418.089 433.091 417.39 433.091 416.134V411.455H432.298ZM434.948 418L435.606 416.146H438.252L438.911 418H439.742L437.338 411.455H436.52L434.117 418H434.948ZM435.855 415.443L436.904 412.49H436.955L438.003 415.443H435.855ZM445.952 411.455H445.172V416.607H445.108L441.528 411.455H440.761V418H441.554V412.861H441.618L445.185 418H445.952V411.455ZM450.235 414.727C450.235 416.338 450.67 417.68 451.45 418.818H452.114C451.501 417.974 451.015 416.249 451.015 414.727C451.015 413.206 451.501 411.48 452.114 410.636H451.45C450.67 411.774 450.235 413.116 450.235 414.727ZM453.33 418H454.122V415.072H456.96V414.369H454.122V412.158H457.254V411.455H453.33V418ZM460.144 418.102C461.473 418.102 462.368 417.092 462.368 415.571C462.368 414.037 461.473 413.027 460.144 413.027C458.814 413.027 457.919 414.037 457.919 415.571C457.919 417.092 458.814 418.102 460.144 418.102ZM460.144 417.425C459.134 417.425 458.673 416.555 458.673 415.571C458.673 414.587 459.134 413.705 460.144 413.705C461.154 413.705 461.614 414.587 461.614 415.571C461.614 416.555 461.154 417.425 460.144 417.425ZM463.519 418H464.274V414.893C464.274 414.229 464.798 413.743 465.514 413.743C465.715 413.743 465.923 413.781 465.974 413.794V413.027C465.888 413.021 465.69 413.014 465.578 413.014C464.99 413.014 464.478 413.347 464.299 413.832H464.248V413.091H463.519V418ZM468.777 418.102C469.774 418.102 470.503 417.604 470.733 416.862L470.004 416.658C469.812 417.169 469.368 417.425 468.777 417.425C467.892 417.425 467.281 416.853 467.246 415.801H470.81V415.482C470.81 413.653 469.723 413.027 468.7 413.027C467.371 413.027 466.489 414.075 466.489 415.584C466.489 417.092 467.358 418.102 468.777 418.102ZM467.246 415.149C467.297 414.385 467.837 413.705 468.7 413.705C469.518 413.705 470.043 414.318 470.043 415.149H467.246ZM473.951 418.102C475.038 418.102 475.754 417.438 475.882 416.568H475.127C474.987 417.105 474.539 417.425 473.951 417.425C473.056 417.425 472.481 416.683 472.481 415.545C472.481 414.433 473.069 413.705 473.951 413.705C474.616 413.705 475.012 414.114 475.127 414.561H475.882C475.754 413.641 474.974 413.027 473.938 413.027C472.609 413.027 471.727 414.075 471.727 415.571C471.727 417.041 472.571 418.102 473.951 418.102ZM478.429 418.115C479.285 418.115 479.733 417.655 479.886 417.335H479.925V418H480.679V414.766C480.679 413.206 479.49 413.027 478.864 413.027C478.122 413.027 477.278 413.283 476.895 414.178L477.611 414.433C477.777 414.075 478.17 413.692 478.889 413.692C479.583 413.692 479.925 414.059 479.925 414.689V414.714C479.925 415.079 479.554 415.047 478.659 415.162C477.748 415.28 476.754 415.482 476.754 416.607C476.754 417.565 477.496 418.115 478.429 418.115ZM478.544 417.438C477.943 417.438 477.508 417.169 477.508 416.645C477.508 416.07 478.033 415.891 478.621 415.814C478.94 415.776 479.797 415.686 479.925 415.533V416.223C479.925 416.837 479.439 417.438 478.544 417.438ZM485.533 414.19C485.296 413.494 484.766 413.027 483.794 413.027C482.759 413.027 481.992 413.615 481.992 414.446C481.992 415.124 482.394 415.577 483.296 415.788L484.114 415.98C484.609 416.095 484.843 416.332 484.843 416.67C484.843 417.092 484.395 417.438 483.692 417.438C483.075 417.438 482.688 417.172 482.554 416.645L481.838 416.824C482.014 417.658 482.701 418.102 483.705 418.102C484.846 418.102 485.622 417.479 485.622 416.632C485.622 415.948 485.194 415.517 484.318 415.303L483.59 415.124C483.008 414.98 482.746 414.785 482.746 414.408C482.746 413.986 483.193 413.679 483.794 413.679C484.453 413.679 484.724 414.043 484.855 414.382L485.533 414.19ZM488.893 413.091H487.844V411.915H487.09V413.091H486.349V413.73H487.09V416.798C487.09 417.655 487.78 418.064 488.42 418.064C488.701 418.064 488.88 418.013 488.982 417.974L488.829 417.297C488.765 417.31 488.663 417.335 488.496 417.335C488.164 417.335 487.844 417.233 487.844 416.594V413.73H488.893V413.091ZM491.638 415.239C491.638 413.628 491.203 412.286 490.424 411.148H489.759C490.372 411.991 490.858 413.717 490.858 415.239C490.858 416.76 490.372 418.486 489.759 419.33H490.424C491.203 418.192 491.638 416.849 491.638 415.239Z" fill="#898989" />
               
</g>
             
</g>
           
</g>
           
<path id="Vector_5" opacity="0.16" d="M551 131L108 131" stroke="#0A2144" stroke-miterlimit="10" stroke-linecap="square" />
           
<path id="text_4" d="M124.316 236.727H124.782V236.094C125.976 236.011 126.646 235.307 126.646 234.42C126.646 233.33 125.612 232.977 125.01 232.818L124.782 232.756V230.736C125.385 230.795 125.822 231.119 125.885 231.636H126.566C126.538 230.807 125.811 230.176 124.782 230.108V229.455H124.316V230.116C123.342 230.216 122.612 230.835 122.612 231.727C122.612 232.511 123.18 232.977 124.089 233.239L124.316 233.304V235.455C123.72 235.392 123.231 235.085 123.18 234.5H122.453C122.518 235.395 123.2 236.02 124.316 236.094V236.727ZM124.782 235.455V233.438L124.805 233.443C125.419 233.614 125.964 233.83 125.964 234.409C125.964 234.98 125.47 235.378 124.782 235.455ZM124.316 232.631C123.885 232.509 123.294 232.27 123.294 231.693C123.294 231.202 123.691 230.827 124.316 230.744V232.631ZM129.52 236.08C130.628 236.08 131.441 235.261 131.441 234.148C131.441 233.02 130.657 232.193 129.588 232.193C129.196 232.193 128.816 232.332 128.577 232.523H128.543L128.748 230.807H131.179V230.182H128.157L127.804 233.045L128.463 233.125C128.705 232.952 129.117 232.827 129.475 232.83C130.216 232.835 130.759 233.398 130.759 234.159C130.759 234.906 130.236 235.455 129.52 235.455C128.924 235.455 128.449 235.071 128.395 234.545H127.713C127.756 235.432 128.52 236.08 129.52 236.08ZM134.467 236.08C135.751 236.08 136.49 234.991 136.49 233.091C136.49 231.205 135.74 230.102 134.467 230.102C133.194 230.102 132.444 231.205 132.444 233.091C132.444 234.991 133.183 236.08 134.467 236.08ZM134.467 235.455C133.62 235.455 133.126 234.605 133.126 233.091C133.126 231.58 133.626 230.716 134.467 230.716C135.308 230.716 135.808 231.58 135.808 233.091C135.808 234.605 135.314 235.455 134.467 235.455ZM139.467 236.08C140.751 236.08 141.49 234.991 141.49 233.091C141.49 231.205 140.74 230.102 139.467 230.102C138.194 230.102 137.444 231.205 137.444 233.091C137.444 234.991 138.183 236.08 139.467 236.08ZM139.467 235.455C138.62 235.455 138.126 234.605 138.126 233.091C138.126 231.58 138.626 230.716 139.467 230.716C140.308 230.716 140.808 231.58 140.808 233.091C140.808 234.605 140.314 235.455 139.467 235.455ZM142.672 236H143.376V234.114L144.103 233.295L146.126 236H146.978L144.535 232.807L146.978 230.182H146.058L143.444 233.068H143.376V230.182H142.672V236Z" fill="#353D46" />
           
<path id="text_5" d="M122.886 301.727H123.352V301.094C124.545 301.011 125.215 300.307 125.215 299.42C125.215 298.33 124.181 297.977 123.579 297.818L123.352 297.756V295.736C123.954 295.795 124.391 296.119 124.454 296.636H125.136C125.107 295.807 124.38 295.176 123.352 295.108V294.455H122.886V295.116C121.911 295.216 121.181 295.835 121.181 296.727C121.181 297.511 121.749 297.977 122.658 298.239L122.886 298.304V300.455C122.289 300.392 121.8 300.085 121.749 299.5H121.022C121.087 300.395 121.769 301.02 122.886 301.094V301.727ZM123.352 300.455V298.438L123.374 298.443C123.988 298.614 124.533 298.83 124.533 299.409C124.533 299.98 124.039 300.378 123.352 300.455ZM122.886 297.631C122.454 297.509 121.863 297.27 121.863 296.693C121.863 296.202 122.261 295.827 122.886 295.744V297.631ZM128.237 301.08C129.365 301.08 130.203 300.372 130.203 299.42C130.203 298.682 129.766 298.145 129.033 298.023V297.977C129.621 297.798 129.987 297.315 129.987 296.659C129.987 295.835 129.337 295.102 128.26 295.102C127.254 295.102 126.419 295.722 126.385 296.636H127.067C127.092 296.057 127.643 295.716 128.249 295.716C128.891 295.716 129.305 296.105 129.305 296.693C129.305 297.307 128.825 297.705 128.135 297.705H127.669V298.33H128.135C129.018 298.33 129.51 298.778 129.51 299.42C129.51 300.037 128.973 300.455 128.226 300.455C127.553 300.455 127.018 300.108 126.976 299.545H126.26C126.303 300.46 127.109 301.08 128.237 301.08ZM133.263 301.08C134.547 301.08 135.286 299.991 135.286 298.091C135.286 296.205 134.536 295.102 133.263 295.102C131.99 295.102 131.24 296.205 131.24 298.091C131.24 299.991 131.979 301.08 133.263 301.08ZM133.263 300.455C132.416 300.455 131.922 299.605 131.922 298.091C131.922 296.58 132.422 295.716 133.263 295.716C134.104 295.716 134.604 296.58 134.604 298.091C134.604 299.605 134.109 300.455 133.263 300.455ZM138.263 301.08C139.547 301.08 140.286 299.991 140.286 298.091C140.286 296.205 139.536 295.102 138.263 295.102C136.99 295.102 136.24 296.205 136.24 298.091C136.24 299.991 136.979 301.08 138.263 301.08ZM138.263 300.455C137.416 300.455 136.922 299.605 136.922 298.091C136.922 296.58 137.422 295.716 138.263 295.716C139.104 295.716 139.604 296.58 139.604 298.091C139.604 299.605 139.109 300.455 138.263 300.455ZM141.467 301H142.172V299.114L142.899 298.295L144.922 301H145.774L143.331 297.807L145.774 295.182H144.854L142.24 298.068H142.172V295.182H141.467V301Z" fill="#353D46" />
           
<path id="text_6" d="M123.279 365.727H123.745V365.094C124.938 365.011 125.609 364.307 125.609 363.42C125.609 362.33 124.575 361.977 123.972 361.818L123.745 361.756V359.736C124.347 359.795 124.785 360.119 124.847 360.636H125.529C125.501 359.807 124.773 359.176 123.745 359.108V358.455H123.279V359.116C122.305 359.216 121.575 359.835 121.575 360.727C121.575 361.511 122.143 361.977 123.052 362.239L123.279 362.304V364.455C122.683 364.392 122.194 364.085 122.143 363.5H121.415C121.481 364.395 122.163 365.02 123.279 365.094V365.727ZM123.745 364.455V362.438L123.768 362.443C124.381 362.614 124.927 362.83 124.927 363.409C124.927 363.98 124.433 364.378 123.745 364.455ZM123.279 361.631C122.847 361.509 122.256 361.27 122.256 360.693C122.256 360.202 122.654 359.827 123.279 359.744V361.631ZM128.71 359.182H128.006L126.551 360.148V360.864L127.972 359.92H128.006V365H128.71V359.182ZM132.281 365.08C133.565 365.08 134.304 363.991 134.304 362.091C134.304 360.205 133.554 359.102 132.281 359.102C131.009 359.102 130.259 360.205 130.259 362.091C130.259 363.991 130.997 365.08 132.281 365.08ZM132.281 364.455C131.435 364.455 130.94 363.605 130.94 362.091C130.94 360.58 131.44 359.716 132.281 359.716C133.122 359.716 133.622 360.58 133.622 362.091C133.622 363.605 133.128 364.455 132.281 364.455ZM137.281 365.08C138.565 365.08 139.304 363.991 139.304 362.091C139.304 360.205 138.554 359.102 137.281 359.102C136.009 359.102 135.259 360.205 135.259 362.091C135.259 363.991 135.997 365.08 137.281 365.08ZM137.281 364.455C136.435 364.455 135.94 363.605 135.94 362.091C135.94 360.58 136.44 359.716 137.281 359.716C138.122 359.716 138.622 360.58 138.622 362.091C138.622 363.605 138.128 364.455 137.281 364.455ZM140.486 365H141.19V363.114L141.918 362.295L143.94 365H144.793L142.349 361.807L144.793 359.182H143.872L141.259 362.068H141.19V359.182H140.486V365Z" fill="#353D46" />
           
<g id="Master">
             
<g id="buttom row">
               
<g id="Legend">
                 
<circle id="color" cx="171" cy="446" r="2.5" stroke="#8C0DAF" stroke-width="5" />
                 
<path id="Text" opacity="0.78" d="M182.879 450H187.941V448.961H184.086V446.512H187.633V445.477H184.086V443.039H187.895V442H182.879V450ZM190.581 446.437C190.581 445.48 191.167 444.934 191.979 444.934C192.772 444.934 193.253 445.453 193.253 446.324V450H194.421V446.184C194.421 444.699 193.604 443.922 192.378 443.922C191.476 443.922 190.886 444.34 190.608 444.977H190.534V444H189.413V450H190.581V446.437ZM198.503 452.375C200.03 452.375 201.21 451.676 201.21 450.133V444H200.065V444.973H199.979C199.772 444.602 199.358 443.922 198.241 443.922C196.792 443.922 195.726 445.066 195.726 446.977C195.726 448.891 196.815 449.91 198.233 449.91C199.335 449.91 199.761 449.289 199.972 448.906H200.046V450.086C200.046 451.027 199.401 451.434 198.515 451.434C197.542 451.434 197.163 450.945 196.956 450.602L195.952 451.016C196.269 451.75 197.069 452.375 198.503 452.375ZM198.491 448.941C197.448 448.941 196.905 448.141 196.905 446.961C196.905 445.809 197.437 444.914 198.491 444.914C199.511 444.914 200.058 445.746 200.058 446.961C200.058 448.199 199.499 448.941 198.491 448.941ZM202.776 450H203.944V444H202.776V450ZM203.366 443.074C203.769 443.074 204.104 442.762 204.104 442.379C204.104 441.996 203.769 441.68 203.366 441.68C202.96 441.68 202.628 441.996 202.628 442.379C202.628 442.762 202.96 443.074 203.366 443.074ZM206.684 446.437C206.684 445.48 207.27 444.934 208.082 444.934C208.875 444.934 209.355 445.453 209.355 446.324V450H210.523V446.184C210.523 444.699 209.707 443.922 208.48 443.922C207.578 443.922 206.988 444.34 206.711 444.977H206.637V444H205.516V450H206.684V446.437ZM214.676 450.121C215.984 450.121 216.91 449.477 217.176 448.5L216.07 448.301C215.859 448.867 215.352 449.156 214.687 449.156C213.688 449.156 213.016 448.508 212.984 447.352H217.25V446.937C217.25 444.77 215.953 443.922 214.594 443.922C212.922 443.922 211.82 445.195 211.82 447.039C211.82 448.902 212.906 450.121 214.676 450.121ZM212.988 446.477C213.035 445.625 213.652 444.887 214.602 444.887C215.508 444.887 216.102 445.559 216.105 446.477H212.988ZM221.132 450.121C222.44 450.121 223.366 449.477 223.632 448.5L222.526 448.301C222.315 448.867 221.808 449.156 221.144 449.156C220.144 449.156 219.472 448.508 219.44 447.352H223.706V446.937C223.706 444.77 222.409 443.922 221.05 443.922C219.378 443.922 218.276 445.195 218.276 447.039C218.276 448.902 219.362 450.121 221.132 450.121ZM219.444 446.477C219.491 445.625 220.108 444.887 221.058 444.887C221.964 444.887 222.558 445.559 222.562 446.477H219.444ZM225.002 450H226.17V446.336C226.17 445.551 226.775 444.984 227.604 444.984C227.846 444.984 228.119 445.027 228.213 445.055V443.937C228.096 443.922 227.865 443.91 227.717 443.91C227.014 443.91 226.412 444.309 226.193 444.953H226.131V444H225.002V450ZM229.224 450H230.392V444H229.224V450ZM229.813 443.074C230.216 443.074 230.552 442.762 230.552 442.379C230.552 441.996 230.216 441.68 229.813 441.68C229.407 441.68 229.075 441.996 229.075 442.379C229.075 442.762 229.407 443.074 229.813 443.074ZM233.131 446.437C233.131 445.48 233.717 444.934 234.529 444.934C235.322 444.934 235.803 445.453 235.803 446.324V450H236.971V446.184C236.971 444.699 236.154 443.922 234.928 443.922C234.025 443.922 233.436 444.34 233.158 444.977H233.084V444H231.963V450H233.131V446.437ZM241.053 452.375C242.58 452.375 243.76 451.676 243.76 450.133V444H242.615V444.973H242.529C242.322 444.602 241.908 443.922 240.791 443.922C239.342 443.922 238.275 445.066 238.275 446.977C238.275 448.891 239.365 449.91 240.783 449.91C241.885 449.91 242.311 449.289 242.521 448.906H242.596V450.086C242.596 451.027 241.951 451.434 241.064 451.434C240.092 451.434 239.713 450.945 239.506 450.602L238.502 451.016C238.818 451.75 239.619 452.375 241.053 452.375ZM241.041 448.941C239.998 448.941 239.455 448.141 239.455 446.961C239.455 445.809 239.986 444.914 241.041 444.914C242.061 444.914 242.607 445.746 242.607 446.961C242.607 448.199 242.049 448.941 241.041 448.941Z" fill="#353D46" />
               
</g>
               
<g id="Legend_2">
                 
<circle id="color_2" cx="274.5" cy="446" r="2.5" stroke="#2671FF" stroke-width="5" />
                 
<path id="Text_2" opacity="0.78" d="M286.379 450H287.586V447.188H289.227C291.082 447.188 292 446.066 292 444.59C292 443.117 291.09 442 289.23 442H286.379V450ZM287.586 446.164V443.035H289.102C290.297 443.035 290.785 443.684 290.785 444.59C290.785 445.496 290.297 446.164 289.117 446.164H287.586ZM293.321 450H294.489V446.336C294.489 445.551 295.095 444.984 295.923 444.984C296.165 444.984 296.438 445.027 296.532 445.055V443.937C296.415 443.922 296.185 443.91 296.036 443.91C295.333 443.91 294.731 444.309 294.513 444.953H294.45V444H293.321V450ZM299.855 450.121C301.547 450.121 302.652 448.883 302.652 447.027C302.652 445.16 301.547 443.922 299.855 443.922C298.164 443.922 297.059 445.16 297.059 447.027C297.059 448.883 298.164 450.121 299.855 450.121ZM299.859 449.141C298.754 449.141 298.238 448.176 298.238 447.023C298.238 445.875 298.754 444.898 299.859 444.898C300.957 444.898 301.473 445.875 301.473 447.023C301.473 448.176 300.957 449.141 299.859 449.141ZM306.202 450.117C307.296 450.117 307.726 449.449 307.937 449.066H308.034V450H309.175V442H308.007V444.973H307.937C307.726 444.602 307.327 443.922 306.21 443.922C304.761 443.922 303.694 445.066 303.694 447.012C303.694 448.953 304.745 450.117 306.202 450.117ZM306.46 449.121C305.417 449.121 304.874 448.203 304.874 447C304.874 445.809 305.405 444.914 306.46 444.914C307.479 444.914 308.026 445.746 308.026 447C308.026 448.262 307.468 449.121 306.46 449.121ZM314.643 447.512C314.646 448.531 313.889 449.016 313.232 449.016C312.51 449.016 312.01 448.492 312.01 447.676V444H310.842V447.816C310.842 449.305 311.658 450.078 312.811 450.078C313.713 450.078 314.326 449.602 314.604 448.961H314.666V450H315.814V444H314.643V447.512ZM319.911 450.121C321.329 450.121 322.247 449.27 322.376 448.102H321.239C321.091 448.75 320.587 449.133 319.919 449.133C318.931 449.133 318.294 448.309 318.294 447C318.294 445.715 318.942 444.906 319.919 444.906C320.661 444.906 321.114 445.375 321.239 445.937H322.376C322.251 444.727 321.263 443.922 319.899 443.922C318.208 443.922 317.114 445.195 317.114 447.027C317.114 448.836 318.169 450.121 319.911 450.121ZM326.426 444H325.195V442.562H324.027V444H323.148V444.937H324.027V448.48C324.023 449.57 324.855 450.098 325.777 450.078C326.148 450.074 326.398 450.004 326.535 449.953L326.324 448.988C326.246 449.004 326.102 449.039 325.914 449.039C325.535 449.039 325.195 448.914 325.195 448.238V444.937H326.426V444Z" fill="#353D46" />
               
</g>
               
<g id="Legend_3">
                 
<circle id="color_3" cx="356.5" cy="446" r="2.5" stroke="#C9DBFF" stroke-width="5" />
                 
<path id="Text_3" opacity="0.78" d="M368.379 442V450H369.527V444.207H369.602L371.961 449.988H372.914L375.273 444.211H375.348V450H376.496V442H375.031L372.484 448.219H372.391L369.844 442H368.379ZM379.903 450.133C380.896 450.133 381.454 449.629 381.677 449.18H381.724V450H382.864V446.016C382.864 444.27 381.489 443.922 380.536 443.922C379.45 443.922 378.45 444.359 378.06 445.453L379.157 445.703C379.329 445.277 379.767 444.867 380.552 444.867C381.306 444.867 381.692 445.262 381.692 445.941V445.969C381.692 446.395 381.255 446.387 380.177 446.512C379.04 446.645 377.876 446.941 377.876 448.305C377.876 449.484 378.763 450.133 379.903 450.133ZM380.157 449.195C379.497 449.195 379.021 448.898 379.021 448.32C379.021 447.695 379.575 447.473 380.251 447.383C380.63 447.332 381.528 447.23 381.696 447.062V447.836C381.696 448.547 381.13 449.195 380.157 449.195ZM384.42 450H385.588V446.336C385.588 445.551 386.193 444.984 387.021 444.984C387.264 444.984 387.537 445.027 387.631 445.055V443.937C387.514 443.922 387.283 443.91 387.135 443.91C386.432 443.91 385.83 444.309 385.611 444.953H385.549V444H384.42V450ZM388.642 450H389.81V447.871L390.392 447.289L392.431 450H393.864L391.271 446.574L393.7 444H392.302L389.911 446.539H389.81V442H388.642V450ZM397.104 450.121C398.412 450.121 399.338 449.477 399.604 448.5L398.498 448.301C398.287 448.867 397.779 449.156 397.115 449.156C396.115 449.156 395.443 448.508 395.412 447.352H399.678V446.937C399.678 444.77 398.381 443.922 397.021 443.922C395.35 443.922 394.248 445.195 394.248 447.039C394.248 448.902 395.334 450.121 397.104 450.121ZM395.416 446.477C395.463 445.625 396.08 444.887 397.029 444.887C397.936 444.887 398.529 445.559 398.533 446.477H395.416ZM403.774 444H402.544V442.562H401.376V444H400.497V444.937H401.376V448.48C401.372 449.57 402.204 450.098 403.126 450.078C403.497 450.074 403.747 450.004 403.884 449.953L403.673 448.988C403.595 449.004 403.45 449.039 403.263 449.039C402.884 449.039 402.544 448.914 402.544 448.238V444.937H403.774V444ZM405.066 450H406.234V444H405.066V450ZM405.656 443.074C406.059 443.074 406.395 442.762 406.395 442.379C406.395 441.996 406.059 441.68 405.656 441.68C405.25 441.68 404.918 441.996 404.918 442.379C404.918 442.762 405.25 443.074 405.656 443.074ZM408.974 446.437C408.974 445.48 409.56 444.934 410.372 444.934C411.165 444.934 411.646 445.453 411.646 446.324V450H412.813V446.184C412.813 444.699 411.997 443.922 410.771 443.922C409.868 443.922 409.278 444.34 409.001 444.977H408.927V444H407.806V450H408.974V446.437ZM416.896 452.375C418.423 452.375 419.603 451.676 419.603 450.133V444H418.458V444.973H418.372C418.165 444.602 417.751 443.922 416.634 443.922C415.185 443.922 414.118 445.066 414.118 446.977C414.118 448.891 415.208 449.91 416.626 449.91C417.728 449.91 418.153 449.289 418.364 448.906H418.438V450.086C418.438 451.027 417.794 451.434 416.907 451.434C415.935 451.434 415.556 450.945 415.349 450.602L414.345 451.016C414.661 451.75 415.462 452.375 416.896 452.375ZM416.884 448.941C415.841 448.941 415.298 448.141 415.298 446.961C415.298 445.809 415.829 444.914 416.884 444.914C417.903 444.914 418.45 445.746 418.45 446.961C418.45 448.199 417.892 448.941 416.884 448.941ZM424.42 446.68C424.42 448.641 424.943 450.273 425.936 451.664H427.006C426.236 450.633 425.631 448.539 425.631 446.68C425.631 444.824 426.236 442.73 427.006 441.699H425.936C424.943 443.09 424.42 444.723 424.42 446.68ZM431.038 444H429.808V442.562H428.64V444H427.761V444.937H428.64V448.48C428.636 449.57 429.468 450.098 430.39 450.078C430.761 450.074 431.011 450.004 431.147 449.953L430.937 448.988C430.858 449.004 430.714 449.039 430.526 449.039C430.147 449.039 429.808 448.914 429.808 448.238V444.937H431.038V444ZM432.33 450H433.498V446.336C433.498 445.551 434.104 444.984 434.932 444.984C435.174 444.984 435.447 445.027 435.541 445.055V443.937C435.424 443.922 435.193 443.91 435.045 443.91C434.342 443.91 433.74 444.309 433.521 444.953H433.459V444H432.33V450ZM436.552 450H437.72V444H436.552V450ZM437.142 443.074C437.544 443.074 437.88 442.762 437.88 442.379C437.88 441.996 437.544 441.68 437.142 441.68C436.735 441.68 436.403 441.996 436.403 442.379C436.403 442.762 436.735 443.074 437.142 443.074ZM441.037 450.133C442.029 450.133 442.588 449.629 442.811 449.18H442.857V450H443.998V446.016C443.998 444.27 442.623 443.922 441.67 443.922C440.584 443.922 439.584 444.359 439.193 445.453L440.291 445.703C440.463 445.277 440.9 444.867 441.686 444.867C442.439 444.867 442.826 445.262 442.826 445.941V445.969C442.826 446.395 442.389 446.387 441.311 446.512C440.174 446.645 439.01 446.941 439.01 448.305C439.01 449.484 439.896 450.133 441.037 450.133ZM441.291 449.195C440.631 449.195 440.154 448.898 440.154 448.32C440.154 447.695 440.709 447.473 441.385 447.383C441.764 447.332 442.662 447.23 442.83 447.062V447.836C442.83 448.547 442.264 449.195 441.291 449.195ZM446.722 442H445.554V450H446.722V442ZM450.539 446.684C450.539 444.723 450.016 443.09 449.023 441.699H447.953C448.723 442.73 449.328 444.824 449.328 446.684C449.328 448.539 448.723 450.633 447.953 451.664H449.023C450.016 450.273 450.539 448.641 450.539 446.684Z" fill="#353D46" />
               
</g>
             
</g>
           
</g>
           
<g id="Frame 2108">
             
<g clip-path="url(#clip2_5074_68376)" class="firstGraph">
               
<rect id="Rectangle 2338" class="first" x="165" y="259" width="114" height="141" fill="#8947CD" />
               
<rect id="Rectangle 2337" class="sec" x="165" y="306" width="114" height="94" fill="#2671FF" />
               
<rect id="Rectangle 2325" class="third" x="165" y="353.051" width="114" height="47.0246" fill="#C9DBFF" />
             
</g>
           
</g>
           
<g id="Frame 2117">
             
<g clip-path="url(#clip3_5074_68376)" class="secGraph">
               
<rect id="Rectangle 2341" class="first" x="287" y="247" width="114" height="153" fill="#8947CD" />
               
<rect id="Rectangle 2340" class="sec" x="287" y="315" width="114" height="85" fill="#2671FF" />
               
<rect id="Rectangle 2339" class="third" x="287" y="364.482" width="114" height="35.2789" fill="#C9DBFF" />
             
</g>
           
</g>
           
<g id="Frame 2113">
             
<g clip-path="url(#clip4_5074_68376)" class="thirdGraph">
               
<rect id="Rectangle 2344" class="first" x="409" y="239" width="114" height="161" fill="#8947CD" />
               
<rect id="Rectangle 2343" class="sec" x="409" y="332" width="114" height="68" fill="#2671FF" />
               
<rect id="Rectangle 2342" class="third" x="409" y="378.834" width="114" height="21.1673" fill="#C9DBFF" />
             
</g>
           
</g>
           
<path id="text_7" d="M179.074 285.455H180.006V284.188C182.392 284.023 183.733 282.614 183.733 280.841C183.733 278.659 181.665 277.955 180.46 277.636L180.006 277.511V273.472C181.21 273.591 182.085 274.239 182.21 275.273H183.574C183.517 273.614 182.062 272.352 180.006 272.216V270.909H179.074V272.233C177.125 272.432 175.665 273.67 175.665 275.455C175.665 277.023 176.801 277.955 178.619 278.477L179.074 278.608V282.909C177.881 282.784 176.903 282.17 176.801 281H175.347C175.477 282.79 176.841 284.04 179.074 284.188V285.455ZM180.006 282.909V278.875L180.051 278.886C181.278 279.227 182.369 279.659 182.369 280.818C182.369 281.96 181.381 282.756 180.006 282.909ZM179.074 277.261C178.21 277.017 177.028 276.54 177.028 275.386C177.028 274.403 177.824 273.653 179.074 273.489V277.261ZM185.572 281.614H191.05V284H192.391V281.614H193.982V280.364H192.391V272.364H190.686L185.572 280.455V281.614ZM191.05 280.364H187.095V280.273L190.959 274.159H191.05V280.364ZM199.906 284.159C202.474 284.159 203.952 281.983 203.952 278.182C203.952 274.409 202.452 272.205 199.906 272.205C197.361 272.205 195.861 274.409 195.861 278.182C195.861 281.983 197.338 284.159 199.906 284.159ZM199.906 282.909C198.213 282.909 197.224 281.21 197.224 278.182C197.224 275.159 198.224 273.432 199.906 273.432C201.588 273.432 202.588 275.159 202.588 278.182C202.588 281.21 201.599 282.909 199.906 282.909ZM209.974 284.159C212.327 284.188 213.861 282.415 213.861 280.25C213.861 278 212.196 276.386 210.202 276.386C209.003 276.386 207.974 276.972 207.338 277.932H207.247C207.253 275.097 208.355 273.455 210.156 273.455C211.384 273.455 212.122 274.227 212.384 275.273H213.77C213.486 273.466 212.111 272.205 210.156 272.205C207.537 272.205 205.929 274.523 205.929 278.636C205.929 282.938 208.065 284.136 209.974 284.159ZM209.974 282.909C208.514 282.909 207.446 281.665 207.452 280.273C207.457 278.881 208.577 277.636 210.02 277.636C211.446 277.636 212.497 278.807 212.497 280.25C212.497 281.727 211.401 282.909 209.974 282.909ZM217.571 282.409H216.116L216.048 283.045C215.884 284.585 215.56 286.119 215.412 286.841H216.435C216.707 286.068 217.287 284.318 217.48 283.023L217.571 282.409ZM223.435 284.159C225.651 284.159 227.276 282.523 227.276 280.295C227.276 278.04 225.707 276.386 223.571 276.386C222.787 276.386 222.026 276.665 221.548 277.045H221.48L221.889 273.614H226.753V272.364H220.707L220.003 278.091L221.321 278.25C221.804 277.903 222.628 277.653 223.344 277.659C224.827 277.67 225.912 278.795 225.912 280.318C225.912 281.812 224.866 282.909 223.435 282.909C222.241 282.909 221.293 282.142 221.185 281.091H219.821C219.906 282.864 221.435 284.159 223.435 284.159ZM233.464 284.159C235.72 284.159 237.396 282.744 237.396 280.841C237.396 279.364 236.521 278.29 235.055 278.045V277.955C236.232 277.597 236.964 276.631 236.964 275.318C236.964 273.67 235.663 272.205 233.51 272.205C231.499 272.205 229.828 273.443 229.76 275.273H231.124C231.175 274.114 232.277 273.432 233.487 273.432C234.771 273.432 235.601 274.21 235.601 275.386C235.601 276.614 234.641 277.409 233.26 277.409H232.328V278.659H233.26C235.027 278.659 236.01 279.557 236.01 280.841C236.01 282.074 234.936 282.909 233.442 282.909C232.095 282.909 231.027 282.216 230.942 281.091H229.51C229.595 282.92 231.209 284.159 233.464 284.159ZM240.084 284H241.561L246.743 273.682V272.364H239.288V273.614H245.288V273.705L240.084 284ZM247.861 284.091C248.423 284.091 248.884 283.631 248.884 283.068C248.884 282.506 248.423 282.045 247.861 282.045C247.298 282.045 246.838 282.506 246.838 283.068C246.838 283.631 247.298 284.091 247.861 284.091ZM254.635 284.159C256.959 284.159 258.578 282.801 258.589 280.909C258.578 279.438 257.595 278.188 256.339 277.955V277.886C257.43 277.602 258.146 276.534 258.158 275.295C258.146 273.523 256.658 272.205 254.635 272.205C252.589 272.205 251.101 273.523 251.112 275.295C251.101 276.534 251.817 277.602 252.93 277.886V277.955C251.652 278.188 250.669 279.438 250.68 280.909C250.669 282.801 252.288 284.159 254.635 284.159ZM254.635 282.909C253.038 282.909 252.055 282.091 252.067 280.841C252.055 279.528 253.141 278.591 254.635 278.591C256.107 278.591 257.192 279.528 257.203 280.841C257.192 282.091 256.209 282.909 254.635 282.909ZM254.635 277.386C253.362 277.386 252.464 276.591 252.476 275.386C252.464 274.205 253.328 273.432 254.635 273.432C255.919 273.432 256.783 274.205 256.794 275.386C256.783 276.591 255.885 277.386 254.635 277.386ZM264.562 284.159C267.131 284.159 268.608 281.983 268.608 278.182C268.608 274.409 267.108 272.205 264.562 272.205C262.017 272.205 260.517 274.409 260.517 278.182C260.517 281.983 261.994 284.159 264.562 284.159ZM264.562 282.909C262.869 282.909 261.881 281.21 261.881 278.182C261.881 275.159 262.881 273.432 264.562 273.432C266.244 273.432 267.244 275.159 267.244 278.182C267.244 281.21 266.256 282.909 264.562 282.909Z" fill="white" />
           
<path id="text_8" d="M301.043 273.455H301.974V272.188C304.361 272.023 305.702 270.614 305.702 268.841C305.702 266.659 303.634 265.955 302.429 265.636L301.974 265.511V261.472C303.179 261.591 304.054 262.239 304.179 263.273H305.543C305.486 261.614 304.031 260.352 301.974 260.216V258.909H301.043V260.233C299.094 260.432 297.634 261.67 297.634 263.455C297.634 265.023 298.77 265.955 300.588 266.477L301.043 266.608V270.909C299.849 270.784 298.872 270.17 298.77 269H297.315C297.446 270.79 298.81 272.04 301.043 272.188V273.455ZM301.974 270.909V266.875L302.02 266.886C303.247 267.227 304.338 267.659 304.338 268.818C304.338 269.96 303.349 270.756 301.974 270.909ZM301.043 265.261C300.179 265.017 298.997 264.54 298.997 263.386C298.997 262.403 299.793 261.653 301.043 261.489V265.261ZM307.541 269.614H313.018V272H314.359V269.614H315.95V268.364H314.359V260.364H312.655L307.541 268.455V269.614ZM313.018 268.364H309.064V268.273L312.928 262.159H313.018V268.364ZM322.011 272.159C324.267 272.159 325.943 270.744 325.943 268.841C325.943 267.364 325.068 266.29 323.602 266.045V265.955C324.778 265.597 325.511 264.631 325.511 263.318C325.511 261.67 324.21 260.205 322.057 260.205C320.045 260.205 318.375 261.443 318.307 263.273H319.67C319.722 262.114 320.824 261.432 322.034 261.432C323.318 261.432 324.148 262.21 324.148 263.386C324.148 264.614 323.188 265.409 321.807 265.409H320.875V266.659H321.807C323.574 266.659 324.557 267.557 324.557 268.841C324.557 270.074 323.483 270.909 321.989 270.909C320.642 270.909 319.574 270.216 319.489 269.091H318.057C318.142 270.92 319.756 272.159 322.011 272.159ZM331.903 272.159C334.119 272.159 335.744 270.523 335.744 268.295C335.744 266.04 334.176 264.386 332.04 264.386C331.256 264.386 330.494 264.665 330.017 265.045H329.949L330.358 261.614H335.222V260.364H329.176L328.472 266.091L329.79 266.25C330.273 265.903 331.097 265.653 331.812 265.659C333.295 265.67 334.381 266.795 334.381 268.318C334.381 269.812 333.335 270.909 331.903 270.909C330.71 270.909 329.761 270.142 329.653 269.091H328.29C328.375 270.864 329.903 272.159 331.903 272.159ZM339.587 270.409H338.132L338.064 271.045C337.899 272.585 337.575 274.119 337.428 274.841H338.45C338.723 274.068 339.303 272.318 339.496 271.023L339.587 270.409ZM342.178 272H343.655L348.837 261.682V260.364H341.382V261.614H347.382V261.705L342.178 272ZM354.621 272.159C356.876 272.159 358.553 270.744 358.553 268.841C358.553 267.364 357.678 266.29 356.212 266.045V265.955C357.388 265.597 358.121 264.631 358.121 263.318C358.121 261.67 356.82 260.205 354.666 260.205C352.655 260.205 350.984 261.443 350.916 263.273H352.28C352.331 262.114 353.433 261.432 354.643 261.432C355.928 261.432 356.757 262.21 356.757 263.386C356.757 264.614 355.797 265.409 354.416 265.409H353.484V266.659H354.416C356.183 266.659 357.166 267.557 357.166 268.841C357.166 270.074 356.092 270.909 354.598 270.909C353.251 270.909 352.183 270.216 352.098 269.091H350.666C350.751 270.92 352.365 272.159 354.621 272.159ZM364.967 260.364H363.558L360.649 262.295V263.727L363.49 261.841H363.558V272H364.967V260.364ZM368.626 272.091C369.189 272.091 369.649 271.631 369.649 271.068C369.649 270.506 369.189 270.045 368.626 270.045C368.064 270.045 367.604 270.506 367.604 271.068C367.604 271.631 368.064 272.091 368.626 272.091ZM375.401 272.159C377.724 272.159 379.344 270.801 379.355 268.909C379.344 267.438 378.361 266.188 377.105 265.955V265.886C378.196 265.602 378.912 264.534 378.923 263.295C378.912 261.523 377.423 260.205 375.401 260.205C373.355 260.205 371.866 261.523 371.878 263.295C371.866 264.534 372.582 265.602 373.696 265.886V265.955C372.418 266.188 371.435 267.438 371.446 268.909C371.435 270.801 373.054 272.159 375.401 272.159ZM375.401 270.909C373.804 270.909 372.821 270.091 372.832 268.841C372.821 267.528 373.906 266.591 375.401 266.591C376.872 266.591 377.957 267.528 377.969 268.841C377.957 270.091 376.974 270.909 375.401 270.909ZM375.401 265.386C374.128 265.386 373.23 264.591 373.241 263.386C373.23 262.205 374.094 261.432 375.401 261.432C376.685 261.432 377.548 262.205 377.56 263.386C377.548 264.591 376.651 265.386 375.401 265.386ZM381.26 269.614H386.737V272H388.078V269.614H389.669V268.364H388.078V260.364H386.374L381.26 268.455V269.614ZM386.737 268.364H382.783V268.273L386.646 262.159H386.737V268.364Z" fill="white" />
           
<path id="text_9" d="M422.941 265.455H423.873V264.188C426.259 264.023 427.6 262.614 427.6 260.841C427.6 258.659 425.532 257.955 424.327 257.636L423.873 257.511V253.472C425.077 253.591 425.952 254.239 426.077 255.273H427.441C427.384 253.614 425.93 252.352 423.873 252.216V250.909H422.941V252.233C420.992 252.432 419.532 253.67 419.532 255.455C419.532 257.023 420.668 257.955 422.487 258.477L422.941 258.608V262.909C421.748 262.784 420.771 262.17 420.668 261H419.214C419.344 262.79 420.708 264.04 422.941 264.188V265.455ZM423.873 262.909V258.875L423.918 258.886C425.146 259.227 426.237 259.659 426.237 260.818C426.237 261.96 425.248 262.756 423.873 262.909ZM422.941 257.261C422.077 257.017 420.896 256.54 420.896 255.386C420.896 254.403 421.691 253.653 422.941 253.489V257.261ZM429.44 261.614H434.917V264H436.258V261.614H437.849V260.364H436.258V252.364H434.553L429.44 260.455V261.614ZM434.917 260.364H430.962V260.273L434.826 254.159H434.917V260.364ZM443.842 264.159C446.194 264.188 447.728 262.415 447.728 260.25C447.728 258 446.063 256.386 444.069 256.386C442.87 256.386 441.842 256.972 441.205 257.932H441.114C441.12 255.097 442.222 253.455 444.023 253.455C445.251 253.455 445.989 254.227 446.251 255.273H447.637C447.353 253.466 445.978 252.205 444.023 252.205C441.404 252.205 439.796 254.523 439.796 258.636C439.796 262.938 441.933 264.136 443.842 264.159ZM443.842 262.909C442.381 262.909 441.313 261.665 441.319 260.273C441.325 258.881 442.444 257.636 443.887 257.636C445.313 257.636 446.364 258.807 446.364 260.25C446.364 261.727 445.268 262.909 443.842 262.909ZM450.326 264H451.803L456.985 253.682V252.364H449.531V253.614H455.531V253.705L450.326 264ZM459.126 262.409H457.671L457.603 263.045C457.438 264.585 457.114 266.119 456.967 266.841H457.989C458.262 266.068 458.842 264.318 459.035 263.023L459.126 262.409ZM464.977 264.159C467.545 264.159 469.022 261.983 469.022 258.182C469.022 254.409 467.522 252.205 464.977 252.205C462.431 252.205 460.931 254.409 460.931 258.182C460.931 261.983 462.408 264.159 464.977 264.159ZM464.977 262.909C463.283 262.909 462.295 261.21 462.295 258.182C462.295 255.159 463.295 253.432 464.977 253.432C466.658 253.432 467.658 255.159 467.658 258.182C467.658 261.21 466.67 262.909 464.977 262.909ZM471.181 264H478.522V262.75H473.113V262.659L475.727 259.864C477.727 257.722 478.317 256.722 478.317 255.432C478.317 253.636 476.863 252.205 474.817 252.205C472.778 252.205 471.227 253.591 471.227 255.636H472.567C472.567 254.312 473.425 253.432 474.772 253.432C476.033 253.432 476.999 254.205 476.999 255.432C476.999 256.506 476.369 257.301 475.022 258.773L471.181 262.977V264ZM480.869 264H488.21V262.75H482.8V262.659L485.414 259.864C487.414 257.722 488.005 256.722 488.005 255.432C488.005 253.636 486.55 252.205 484.505 252.205C482.465 252.205 480.914 253.591 480.914 255.636H482.255C482.255 254.312 483.113 253.432 484.46 253.432C485.721 253.432 486.687 254.205 486.687 255.432C486.687 256.506 486.056 257.301 484.71 258.773L480.869 262.977V264ZM491.556 264.091C492.119 264.091 492.579 263.631 492.579 263.068C492.579 262.506 492.119 262.045 491.556 262.045C490.994 262.045 490.533 262.506 490.533 263.068C490.533 263.631 490.994 264.091 491.556 264.091ZM498.457 264.159C500.712 264.159 502.388 262.744 502.388 260.841C502.388 259.364 501.513 258.29 500.048 258.045V257.955C501.224 257.597 501.957 256.631 501.957 255.318C501.957 253.67 500.656 252.205 498.502 252.205C496.491 252.205 494.82 253.443 494.752 255.273H496.116C496.167 254.114 497.269 253.432 498.479 253.432C499.763 253.432 500.593 254.21 500.593 255.386C500.593 256.614 499.633 257.409 498.252 257.409H497.32V258.659H498.252C500.019 258.659 501.002 259.557 501.002 260.841C501.002 262.074 499.928 262.909 498.434 262.909C497.087 262.909 496.019 262.216 495.934 261.091H494.502C494.587 262.92 496.201 264.159 498.457 264.159ZM508.644 264.159C510.9 264.159 512.576 262.744 512.576 260.841C512.576 259.364 511.701 258.29 510.235 258.045V257.955C511.411 257.597 512.144 256.631 512.144 255.318C512.144 253.67 510.843 252.205 508.69 252.205C506.678 252.205 505.008 253.443 504.94 255.273H506.303C506.354 254.114 507.457 253.432 508.667 253.432C509.951 253.432 510.781 254.21 510.781 255.386C510.781 256.614 509.82 257.409 508.44 257.409H507.508V258.659H508.44C510.207 258.659 511.19 259.557 511.19 260.841C511.19 262.074 510.116 262.909 508.621 262.909C507.275 262.909 506.207 262.216 506.121 261.091H504.69C504.775 262.92 506.388 264.159 508.644 264.159Z" fill="white" />
           
<g id="Frame 2024">
              <path id="text_10" d="M118.432 196.273H120.528V193.422C125.898 193.051 128.915 189.881 128.915 185.892C128.915 180.983 124.261 179.398 121.551 178.682L120.528 178.401V169.311C123.239 169.58 125.207 171.037 125.489 173.364H128.557C128.429 169.631 125.156 166.793 120.528 166.486V163.545H118.432V166.524C114.047 166.972 110.761 169.759 110.761 173.773C110.761 177.301 113.318 179.398 117.409 180.574L118.432 180.868V190.545C115.747 190.264 113.548 188.884 113.318 186.25H110.045C110.339 190.277 113.408 193.089 118.432 193.422V196.273ZM120.528 190.545V181.469L120.631 181.494C123.392 182.261 125.847 183.233 125.847 185.841C125.847 188.411 123.622 190.2 120.528 190.545ZM118.432 177.838C116.489 177.288 113.83 176.214 113.83 173.619C113.83 171.408 115.619 169.72 118.432 169.349V177.838ZM133.054 187.631H145.377V193H148.395V187.631H151.974V184.818H148.395V166.818H144.559L133.054 185.023V187.631ZM145.377 184.818H136.48V184.614L145.173 170.858H145.377V184.818ZM165.458 193.358C170.751 193.422 174.202 189.433 174.202 184.562C174.202 179.5 170.457 175.869 165.969 175.869C163.272 175.869 160.958 177.186 159.526 179.347H159.322C159.335 172.967 161.815 169.273 165.867 169.273C168.629 169.273 170.29 171.011 170.879 173.364H173.998C173.359 169.298 170.265 166.46 165.867 166.46C159.974 166.46 156.356 171.676 156.356 180.932C156.356 190.609 161.163 193.307 165.458 193.358ZM165.458 190.545C162.173 190.545 159.769 187.746 159.782 184.614C159.795 181.482 162.313 178.682 165.56 178.682C168.769 178.682 171.134 181.315 171.134 184.562C171.134 187.886 168.667 190.545 165.458 190.545ZM180.048 193H183.372L195.031 169.784V166.818H178.258V169.631H191.758V169.835L180.048 193ZM199.847 189.42H196.575L196.421 190.852C196.05 194.317 195.322 197.768 194.989 199.392H197.29C197.904 197.653 199.208 193.716 199.643 190.801L199.847 189.42ZM213.012 193.358C218.79 193.358 222.114 188.462 222.114 179.909C222.114 171.42 218.739 166.46 213.012 166.46C207.284 166.46 203.909 171.42 203.909 179.909C203.909 188.462 207.233 193.358 213.012 193.358ZM213.012 190.545C209.202 190.545 206.978 186.723 206.978 179.909C206.978 173.108 209.228 169.222 213.012 169.222C216.796 169.222 219.046 173.108 219.046 179.909C219.046 186.723 216.821 190.545 213.012 190.545ZM226.972 193H243.489V190.188H231.319V189.983L237.199 183.693C241.699 178.874 243.029 176.624 243.029 173.722C243.029 169.682 239.756 166.46 235.154 166.46C230.564 166.46 227.074 169.58 227.074 174.182H230.091C230.091 171.203 232.022 169.222 235.051 169.222C237.89 169.222 240.063 170.96 240.063 173.722C240.063 176.138 238.644 177.928 235.614 181.239L226.972 190.699V193ZM248.769 193H265.286V190.188H253.115V189.983L258.996 183.693C263.496 178.874 264.826 176.624 264.826 173.722C264.826 169.682 261.553 166.46 256.951 166.46C252.361 166.46 248.871 169.58 248.871 174.182H251.888C251.888 171.203 253.819 169.222 256.848 169.222C259.686 169.222 261.86 170.96 261.86 173.722C261.86 176.138 260.441 177.928 257.411 181.239L248.769 190.699V193ZM272.816 193.205C274.081 193.205 275.117 192.169 275.117 190.903C275.117 189.638 274.081 188.602 272.816 188.602C271.55 188.602 270.515 189.638 270.515 190.903C270.515 192.169 271.55 193.205 272.816 193.205ZM288.342 193.358C293.417 193.358 297.189 190.175 297.189 185.892C297.189 182.568 295.22 180.152 291.922 179.602V179.398C294.568 178.592 296.217 176.419 296.217 173.466C296.217 169.759 293.289 166.46 288.444 166.46C283.919 166.46 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0