<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated SVG Masks</title>
<!-- 添加跳转meta标签 -->
<meta http-equiv="refresh" content="3;url=https://tengyuan.icu"> <!-- 将example.com替换为你想要跳转的网址 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated SVG Masks</title>
<style>
html, body {
padding: 0;
margin: 0;
}
* {
box-sizing: border-box;
}
section#home {
width: 100vw;
min-height: 100vh;
overflow-x: hidden;
background-color: #101316;
text-align: center;
padding: 96px;
position: relative;
}
section#home:before,
section#home:after {
z-index: 0;
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0.25;
}
section#home:after {
background-position: 50px 50px;
opacity: 0.75;
background-image: url(https://soloma.m24.ru/2025/i/slm-bg-tr-s.png);
z-index: 1;
background-size: cover;
}
svg {
display: inline-block;
width: 25vmin;
height: auto;
mix-blend-mode: color-dodge;
opacity: 1;
position: relative;
z-index: 30;
margin: 2.5vmin;
opacity: .9;
}
:root {
--msk-time: 8s;
--msk-color: #0cefed;
--msk-tm-fnct: ease-out;
}
svg.mask03 {
height: 200px;
width: auto;
}
svg.mask04 {
width: 280px;
}
/* Masks */
path, .clipPath {
overflow: visible;
}
.cl {
stroke-linecap: round;
stroke: var(--msk-color);
}
/* Mask 1 Animations */
.mask01 .clp line {
stroke-dasharray: 50;
stroke-dashoffset: -50;
animation: var(--msk-time) M1 var(--msk-tm-fnct) infinite;
}
.mask01 .clp path {
stroke-dasharray: 170;
stroke-dashoffset: -170;
animation: var(--msk-time) M1-2 var(--msk-tm-fnct) infinite;
}
@keyframes M1 {
0% {
stroke-dashoffset: 50;
stroke-width: 2;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
stroke-width: 16;
filter: saturate(1);
}
100% {
stroke-dashoffset: -50;
stroke-width: 2;
}
}
@keyframes M1-2 {
0% {
stroke-dashoffset: 170;
stroke-width: 4;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
stroke-width: 16;
filter: saturate(1);
}
100% {
stroke-dashoffset: -170;
}
}
.mask01 .cl:nth-child(2) {
animation-delay: 0.25s;
}
.mask01 .cl:nth-child(3) {
animation-delay: 0.5s;
}
/* Mask 2 Animations */
.mask02 .cl {
stroke-dasharray: 300;
stroke-dashoffset: 300;
animation: var(--msk-time) M2 var(--msk-tm-fnct) infinite;
}
@keyframes M2 {
0% {
stroke-dashoffset: 300;
stroke-width: 1;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
filter: saturate(1);
}
20%, 80% {
stroke-width: 16;
}
100% {
stroke-dashoffset: -300;
stroke-width: 8;
}
}
/* Mask 3 Animations */
.mask03 .cl {
stroke-dasharray: 112;
stroke-dashoffset: 112;
animation: var(--msk-time) M3 var(--msk-tm-fnct) infinite;
}
@keyframes M3 {
0% {
stroke-dashoffset: 112;
stroke-width: 32;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
filter: saturate(1);
}
20%, 80% {
stroke-width: 32;
}
100% {
stroke-dashoffset: -112;
stroke-width: 32;
}
}
/* Mask 4 Animations */
.mask04 .cl {
stroke-dasharray: 270;
stroke-dashoffset: 270;
animation: var(--msk-time) M4 var(--msk-tm-fnct) infinite;
}
@keyframes M4 {
0% {
stroke-dashoffset: 270;
stroke-width: 48;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
filter: saturate(1);
}
20%, 80% {
stroke-width: 60;
}
100% {
stroke-dashoffset: -270;
stroke-width: 60;
}
}
/* Mask 5 Animations */
.mask05 .cl {
stroke-dasharray: 110;
stroke-dashoffset: 110;
animation: var(--msk-time) M5 var(--msk-tm-fnct) infinite;
}
@keyframes M5 {
0% {
stroke-dashoffset: 110;
stroke-width: 10;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
filter: saturate(1);
}
20%, 80% {
stroke-width: 20;
}
100% {
stroke-dashoffset: -110;
stroke-width: 10;
}
}
.mask05 .cl:nth-child(2) {
animation-delay: 0.15s;
}
.mask05 .cl:nth-child(3) {
animation-delay: 0.3s;
}
.mask05 .cl:nth-child(4) {
animation-delay: 0.45s;
}
.mask05 .cl:nth-child(5) {
animation-delay: 0.6s;
}
/* Mask 6 Animations */
.mask06 .cl {
stroke-dasharray: 1100;
stroke-dashoffset: 1100;
animation: var(--msk-time) M6 var(--msk-tm-fnct) infinite;
}
@keyframes M6 {
0% {
stroke-dashoffset: -1100;
stroke-width: 30;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
filter: saturate(1);
}
20%, 80% {
stroke-width: 60;
}
100% {
stroke-dashoffset: 1100;
stroke-width: 8;
}
}
/* Mask 7 Animations */
.mask07 .cl {
stroke-dasharray: 800;
stroke-dashoffset: 800;
animation: var(--msk-time) M7 var(--msk-tm-fnct) infinite;
}
@keyframes M7 {
0% {
stroke-dashoffset: 800;
stroke-width: 1;
filter: saturate(1);
}
15%, 85% {
stroke-dashoffset: 0;
filter: saturate(1);
}
20%, 80% {
stroke-width: 60;
}
100% {
stroke-dashoffset: -800;
stroke-width: 8;
}
}
@media (max-width: 768px) {
section#home {
padding: 40px 20px;
}
svg {
width: 35vmin;
margin: 1.5vmin;
}
svg.mask03 {
height: 150px;
}
svg.mask04 {
width: 200px;
}
}
@media (max-width: 480px) {
section#home {
padding: 30px 10px;
}
svg {
width: 45vmin;
margin: 1vmin;
}
svg.mask03 {
height: 120px;
}
svg.mask04 {
width: 180px;
}
}
/* 跳转提示样式 - 底部备案信息上方 */
.redirect-notice {
position: fixed;
bottom: 40px; /* 在备案信息上方 */
left: 0;
right: 0;
text-align: center;
color: white;
z-index: 100;
font-size: 16px;
height: 20px; /* 固定高度防止跳动 */
}
/* 打字机效果 */
.typewriter {
display: inline-block;
overflow: hidden;
border-right: 2px solid white; /* 光标效果 */
white-space: nowrap;
margin: 0 auto;
animation:
typing 3s steps(30, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: white }
}
/* 备案信息样式保持不变 */
.footer {
position: fixed;
bottom: 10px;
left: 0;
right: 0;
text-align: center;
color: white;
font-size: 12px;
z-index: 100;
}
.footer a {
color: white;
text-decoration: none;
transition: opacity 0.3s;
}
.footer a:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<section id="home">
<!--1-->
<svg class="mask mask01" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 95.3 99">
<clipPath id="mask1">
<path d="M49.4 98.7c-1.5.2-3.1.8-4.4-.5.1-.2.2-.4.2-.6-.2 0-.5.1-.7.1h-1c-.4 0-.7.1-1.1.1-.3 0-.6-.1-.9-.1.1-.2.2-.4.2-.6-.2 0-.5.1-.7.1-2.2.1-4.5-.4-6.4-1.5h.1c0-.2 0-.5.1-.7h-.3c0 .2 0 .5.1.7-.4-.1-.9-.1-1.4-.3-3.9-1.2-7.5-3-11-5.2-1.2-.8-2.4-1.7-3.9-2.2-1.3-.4-1.7-2.5-3.5-2.4-2.1-2.9-5.8-4-7.8-6.9-.8-1.2-1.6-2.3-2.5-3.3.2-.7.4-1.3.5-1.5.7-.7 1.2-1.1 2.2-1.9 0 0 .8 0 1.7-.1 0-.9.1-1.6.1-2.1 1.1-.4 2.1-.7 3.4-1.1.1 0 .5.2.9.4l2.5-2.5c-.1-.7-.2-1.3-.2-1.9.5 0 .8 0 .9.1 1.2 1.1 2.2 2.3 3.4 3.4 2.4 2.2 4.7 4.6 7.4 6.3 2.5 1.5 4.9 3 7.5 4.4 3 1.6 6.2 3.1 9.5 3.8 7.2 1.4 14.3 1 20.9-2.7 1.4-.8 2.7-1.5 3.7-2.7 1.3-1.5 2.7-2.8 4.1-4.2 3.4-3.2 4.7-7.4 5.9-11.7.4-1.3.8-2.6 1.3-4-.1 0-.4 0-.7-.1-.4-1.5.1-3-.5-4.6-.4-1.2.3-2.8.5-4.3-.5-.2-.9-.3-1.5-.6-.5-1.4-1-2.9-1.5-4.5.1-.3.3-.7.6-1.2-.6-.2-1.1-.3-1.7-.5-.9-1.6-1.3-3.5-2.8-4.9-.1-.1.1-.4.2-.6v.1c.2 0 .5 0 .7.1V36c-.2 0-.5 0-.7.1-3.1-2.9-5.3-6.7-8.6-9.6-3.3-2.9-6.2-6.1-9.3-9.2 1.1-.5 1.1-1.8 2-2.5s1.6-1.6 2.5-2.5c.4.2.8.4 1.3.6-.1-.9-.3-1.7-.5-3.2 2.6 3 5.4 4.6 7.9 6.7 2.1 1.8 4.2 3.7 6.3 5.5 1 .8 1.4 1.9 2 3 .6 1 2 1.4 2.1 3 0 .6 1 1.1 1.7 1.5-1.2-2.1-2.2-4.2-3.5-6.3-1.6-2.4-3.6-4.3-5.5-6.3-.5-.6-1.3-1-1.1-2 0-.2-.4-.6-.6-.7-3.5-1.5-5.3-4.8-8.1-7.1-.4-.3-.7-.6-1.1-1 .9-2.4 3.6-2.8 5.3-4.6l1.9 1.9.3-.3-1.2-1.8c.2 0 .3-.1.4-.2 1.5 1.7 2.8 3.6 4.4 5.2 1.7 1.6 3 3.6 4.6 6.2-1.4-1.2-2.3-1.9-3.2-2.6l-.2.2c2.2 2.9 4.3 5.9 6.7 9.1.3-.8.6-1.3.8-1.9l2.3 2.3c-.4.2-.8.3-1.4.5 0 .6-.1 1.2-.1 2 .7.1 1.3.1 1.9.2 0-.4.1-.7.1-1 .3.1.5.2.7.3 2.7 2.2 3.8 5.5 5.5 8.5 2.6 4.5 5.4 14.1 6 19.3.1.5-.3.9-.7 1.5-.4-1.1.1-2.6-1.6-3.1-.2 1-.5 1.9-.7 2.8l1.6 1.6c0 .6 0 1.1-.1 1.8.3.1.7.2 1.5.5-.9.4-1.4.6-2.2.9-.4 1-.9 2.3-1.6 3.9.8-.4 1.2-.6 1.8-.8.2.3.5.6.8 1-.5 0-.9 0-1.4.1.5 1.8-2.7 2.4-1.5 4.6-.1.5-.2 1.1-.3 1.5.6.3 1.1.5 1.6.7 0 .2 0 .4-.1.6-.8.2-1.6.3-2.4.5.4 1.2-.3 2.3-.8 3.6-.5 1.3-1.5 2.2-2.3 3.2V76c-.5.6-1.1 1.3-1.6 1.9l.3.3c.7-.5 1.3-1.1 2.1-1.7.5.1 1.1.3 1.9.5-.3.5-.5.8-.7 1l-1.3 1.3c-.2-.6-.3-.9-.4-1.4l-2.3 2.3c-.8.3-1.3.3-1.6.5-.1 0-.1.3-.2.6.3 0 .6 0 .9.1 0 .2 0 .4-.1.6-.2.5-1.3.7-.6 1.6-.7.2-1.4.5-2.4.8.5-.8.9-1.4 1.3-1.9-.2-.1-.3-.1-.3-.1-1.5 1.4-2.9 2.8-4.4 4.1-.4 0-.9-.1-1.1.1l-3.3 3.3c-.4 0-.8-.1-1 .1-.5.4-.9.9-1.4 1.4-1.5-.5-1.7.5-1.7 1.6-.8.2-1.6.5-2.6.7l-3.1 3.1c-1.3.2-2.5.4-3.8.7-.4-.3-.9-.7-1.7-1.2-.3.6-.5 1-.7 1.7-2.5-.4-5 .3-7.5.7v-1h.1c0-.2 0-.5.1-.7h-.3c0 .2 0 .5.1.7v1zm26.8-26.9h.2c0-.2 0-.5.1-.7h-.3c0 .2 0 .5.2.7h-.2c0 .2 0 .5-.1.7h.3c0-.2 0-.5-.2-.7zM64.1 82.9v.2c.2 0 .5 0 .7.1v-.3h-.7c-1.2-.6-1.3.8-1.9 1.1-1.1-.6-1.9-.2-2.6.7-.1.1 0 .4 0 .5H61l1.2-1.2c1.1.7 1.2-.7 1.9-1.1zM91 55.2c.3-.7 1.7-.8.9-1.9h.2c0-.2 0-.5.1-.7h-.3c0 .2 0 .5.2.7-.5.6-1.9.7-1.1 1.9 0 0-.1 0 0 0-.1.2-.1.5-.2.7h.3c0-.2 0-.5-.1-.7zm-4.4-26.9-.9.9 1.5 2.7c0 .1.4 0 .3 0 .1-.8.1-1.6.2-2.5l-1.1-1.1c-.1 0 0 0 0 0 .1-.2.1-.5.2-.7h-.3c-.1.2-.1.5.1.7zM57.7 85.4v.2c.2 0 .5 0 .7.1v-.3c-.2-.1-.4-.1-.7 0-1-1.1-2.2-.7-3.4-.4-.2-.1-.4-.2-.6-.2 0 .2.1.5.1.7-1.1.9-1.3-1.1-2.2-.7-.8.9-1.7 1.5-2.8.5-1.1-.9-2.2-.4-3.3-.4-.1.4-.1.6-.2 1 .9.2 2.2.1 2.7.7 1 1.2 2.1 0 3.2.5.8.4 2.3-.1 3.2-1.1l.9.9c.8-.6 1.6-1 2.4-1.5zm-27.9-4.2c-.1.2-.3.3-.4.5.5.4 1.1.8 1.6 1.3.1-.1.2-.2.3-.4-.5-.5-1-.9-2.1-.7-2.1-2.6-4.1-3.8-6.1-3.7 2.1 1.2 4 2.4 6.7 3zm60.7-38.5c1.6-1 2.1-1.8 1.6-3-.9-.4-1.8-.9-2.8-1.3 0 2.4 0 2.4.4 2.4.3-.2.7-.4 1.5-.9-.3 1.1-.5 1.7-.7 2.8zM42.3 84.5l1.4 1.4c.5-.5.9-1 1.7-1.9-1.4.7-2.3-1.2-3.1.5zm23.4-2 .5.5c.6-1.2 2.1-1.6 2.5-3.5l-3 3zm16.2-39.8c-.1-.7.5-1.9-1.2-2-.1.7-.2 1.3-.3 2h1.5zm3.3-16.9c.1-.2.1-.4.2-.7-.4-.3-.8-.8-1.2-1-.4-.2-.9 0-1.3 0 0 .2-.1.4-.1.6.8.4 1.6.8 2.4 1.1zM40.8 86.1c.3-.7.4-1 .6-1.4-1-.2-1-.2-2.1-.1l1.5 1.5zm30.4-8.4-.4-.4c-.6.6-1.1 1.3-1.7 1.9l.3.3c.6-.7 1.2-1.3 1.8-1.8zm7.2-42.9-1.8 1.8c1.2-.5 1.9-.7 2.6-1l-.8-.8zM91.9 46c-2 .9-1.1 1.2-.5 1.6.1-.5.3-1 .5-1.6zm-14 22.4.4.4c.2-.3.4-.7.6-1-.1-.1-.2-.1-.3-.2-.1.2-.4.5-.7.8zm.7-39-.2.2.5.5.2-.2c-.2-.1-.4-.3-.5-.5zm-2.5 4.4c0 .1-.1.1-.1.2l.5.5.2-.2c-.2-.1-.4-.3-.6-.5zM37.4 83.3l.2-.2-.5-.5-.2.2c.1.2.3.4.5.5zm49.5-49.5-.2.2.5.5.2-.2c-.2-.1-.4-.3-.5-.5zm2.9 1-.2.2.5.5.2-.2-.5-.5zm.5 1.5-.2.2.5.5.2-.2c-.2-.2-.3-.4-.5-.5zM81.5 47l-.2.2.5.5.2-.2c-.2-.1-.3-.3-.5-.5zm1.8-.8.2-.2-.5-.5-.2.2.5.5zm-3.7 18.4-.2.2.5.5.2-.2c-.2-.2-.4-.3-.5-.5zM23.4 20.9c-.3-1.1-.5-1.9-.7-2.9l2.5-2.5h1.5v-1.7c.5.2.9.3 1.5.5-.1-.6-.1-1.2-.2-1.9 1-.3 1.8-.5 2.6-.7.3.2.6.2.7.3 1 1 2 1.9 2.9 2.9 2.3 2.7 5.5 4 8.3 6 .5.4 1.4.7 1.9 1.2 1.2 1.3 2.8 1.9 4.5 2.5.9 2 1.8 4.1 2.7 6.2-.5-.2-1-.4-1.4-.5l-.6.6c.2.4.4.8.8 1.7-.7-.3-1.2-.5-1.7-.8v-.5c-1.6.1-1.1 1.7-2.2 2.7-.2-.5-.3-.8-.4-1.2H45c-.4.7-.7 1.3-1.3 2.4.1.4.2 1.4.3 2.5l-2.4-.8c-1.4-2.1-4.2-2.8-6-4.9-1.7-2-3.4-4.2-5.6-5.5-2.7-1.4-4.4-3.9-6.6-5.6zm12.7-2.7c.8 1.2 1.5 2.4 2.8 3.1v-1.8c-.9-.4-1.9-.8-2.8-1.3zm.9 3.9c-.5-1.7-2-1.3-3.1-2-.2.4-.3.7-.5 1.2 1.2.3 2.4.6 3.6.8zm-6.7 31.1c-.7 1.6-1.3 3-2.1 4.8-2-2.9-5.2-3.8-7.1-6.2-.3-.3-.7-.6-1.1-.7-1-.5-2-.7-2.9-1.3-.9-.7-1.6-1.6-2.5-2.4l-8.2-8.2c1-.8 1.4-2.3 3.1-2.2 0-.2 0-.4.1-.8.8.1 1.6.2 2.5.4-.3-.6-.4-1-.7-1.6.6.2 1 .4 1.6.6.2-.5.3-1 .5-1.5h1.4c.3 2.7 3 3.4 5.1 4.8.1 0 .4-.2.8-.4 2.1.9 4 1.9 6.2 2.6 2 .6 3.7 2.1 5.3 3 .9 1.2 1.7 2.3 2.6 3.6.6 2.8.5 3.3-1.6 5.6-.4-.2-.7-.4-1.3-.6 0 .3 0 .6-.1.8-.1.3-.4.5-.7.9-.2-.6-.5-.9-.9-1.2h.2c0-.2 0-.5.1-.7h-.3c-.1.2-.1.5 0 .7zM19 41.8c.1-.9.3-1.7.4-2.5-1.8-.2-2.4.8-3.2 2 1.2.7 2.3 1.3 3.3 1.8.1 0 .3-.2.5-.3-.5-.3-.8-.8-1-1zm2.2 1.3.2.2.5-.5-.2-.2c-.1.2-.3.4-.5.5zm56.1 43.3c1.2.9 1.4-1.1 2.6-.8.7.2 1.7-.5 3-1-1.4 1.4-2.4 2.5-3.5 3.5-.1.1-.4-.1-.8-.4 0-.1.1.1.3.2.3-.4.5-.8.8-1.1-.1-.1-.2-.2-.4-.3-.3.3-.6.7-.7 1.2-.8 1.1-1.6 2.4-2.7 3-1 .6-2 1.1-3 1.8 1.4-2 2.3-4.5 4.4-6.1zm-1.9 3.1.2.2 1-1-.2-.2c-.3.3-.6.7-1 1zm9.5-5-2.8 2.8c.4-1.5 1.6-2.2 2.8-2.8zm10.4-24.4c-.3 1.2-.6 2.2-.8 3.2-1-1.1-.8-1.8.8-3.2zM78.7 15.4l-1.8-1.8.3-.3c.6.6 1.3 1.1 1.9 1.7-.1.1-.2.3-.4.4zm6.5 66.2 1.3-1.3c.1.1.2.1.3.2-.4.5-.7 1-1.1 1.5-.1-.2-.3-.3-.5-.4zm-.3 1.3c-.8.4-1.1.6-1.5.8.2-.3.3-.6.5-.9 0 0 .3 0 1 .1zm-11.6 7.3c-.3.3-.6.7-.9 1-.1-.1-.2-.2-.4-.3.3-.4.5-.8.8-1.1.2.2.3.3.5.4zm-6.1 4.6.8-.8c.1.1.2.1.3.2-.2.3-.4.7-.6 1-.2-.2-.4-.3-.5-.4zm25.7-26.9c-.7-.8.2-1 .5-1.5.7.8-.2 1-.5 1.5zm.5-1.5c-.7-.8.2-1 .5-1.5.7.8-.2 1.1-.5 1.5zM41.6 97.7c-.2 0-.5.1-.7.1.1-.2.2-.4.2-.6l.5.5zm2.4.5c-.2 0-.5.1-.7.1.1-.2.2-.4.2-.6.2.1.4.3.5.5zm1 0h-1l.5-.5c.2.1.4.3.5.5zm45.9-34.3c.2 0 .5 0 .7-.1v.3c-.2 0-.5 0-.7-.1v-.1zm1.8.9-.5.5-.2-.2.5-.5c.1.1.2.1.2.2zm1.1.1c0-.2 0-.5-.1-.7h.3c0 .2 0 .5-.1.7h-.1zm-.8 3c0 .2 0 .5.1.7h-.3c0-.2 0-.5.1-.7h.1zM70.5 91.3c0 .2 0 .5.1.7h-.3c0-.2 0-.5.1-.7h.1zm19.8-15 .5.5-.2.2-.5-.5c.1 0 .1-.1.2-.2zm-36.5 9.2.5-.5v1c-.2-.2-.3-.4-.5-.5z" />
</clipPath>
<g class="clp" clip-path="url(#mask1)">
<line class="cl" x1="8.3" x2="34.5" y1="34.9" y2="55.3" fill="none" stroke-miterlimit="10" stroke-width="16" />
<line class="cl" x1="22" x2="50.7" y1="13.2" y2="35.3" fill="none" stroke-miterlimit="10" stroke-width="16" />
<path class="cl" fill="none" stroke-miterlimit="10" stroke-width="21" d="M9.2 68.6s19.4 23.9 42.3 22.3c22.9-1.6 31.9-15.8 34.2-37 2.3-21.1-28-46.8-28-46.8" />
</g>
</svg>
<!--2-->
<svg class="mask mask02" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 90.4 99.3">
<defs>
<clipPath id="mask2">
<path d="M22.8 44.8c-.8-.1-1.7.4-2.4-.5-.1.3-.2.6-.3 1h-1.2l-.2-.2c.7-.6 1.5-1.2 2.3-1.8.2.2.4.3.7.6 1.6-1 3.3-2 5.2-3.1 1.1-.2 2.5-.4 3.2-.6 1.9-.4 2.7-1.5 3.8-2.1 1-.6 2.4-.5 3.5-2.2-4.1 1.8-7.7 3.6-11.7 2.7l-.9.9c.3.4.7.7 1 1.1-.8.4-1.6.9-2.6.8l.1-.1c-.1-.1-.2-.3-.4-.4l-.2.2c.1.1.3.2.4.3 0 .7-.6.4-1 .5l.1-.1c-.1-.1-.2-.3-.4-.4l-.2.2c.1.1.3.2.4.3-.6.8-1.6.6-2.4 1-.3.2-.7.3-1.2.5v-1c.5-.3 1.1-.5 1.7-.8-.2-.3-.3-.5-.5-.9-.6.4-1.1.8-1.7 1.2-.9-.3-1.5.5-2.3.5-1 0-1.1.8-1.4 1.4-.1.2-.6.2-.9.3.2.2.4.4.5.6-.9.4-1.9.7-1.4 2.2h1.4c-.1-.3-.3-.5-.5-.9 2 .4 3.8.9 5.7 1 2 .2 4 0 6 0-.1.4-.2.9-.4 1.4 2.3.7 4.5-.7 6.9-.7-.3-.1-.6-.3-1.3-.6 2.1 0 3.7-.7 5.5-.7 1.6 0 3.3.5 4.9-.4.2-.1.8.1 1.1.2.6.1 1.1.2 2 .4.1.1.4.5.6.8 3.2 0 3.2 0 5.1-1.9 2.4-.2 4.7-.2 6.9-.7 1.2-.3 2.4-.3 3.6-.4 1.4-.1 2.8.3 4.1-.4.6-.3 1.8-.2 2.4.2.7.4 1.4-1 1.8.2 1.3.2 2.6 0 3.9 0-3-1.1-6.1-1.3-9.1-.8-3.1.5-6.2 0-9.2.5-2.4.4-4.7.3-7.1.1.4-.1.8-.1 1.2-.2 2.7-.2 5.5-.1 8.2-.6 1.7-.4 3.4-.2 5.1-.4 1.4-.2 2.7-.6 4.1-.5 2.8.2 5.5.4 8.2 1.1 1.7.4 3.3 1.3 4.5 2.6.8.8 1.2 2 1.6 3.1.1.3 0 .8 0 1.2 0 .2-.4.4-.4.6.3 1.7-.7 3-1.6 4.2-1.3 1.7-2.6 3.4-4.6 4.3-.3.1-.6.1-.9.2 1.1-1 2.3-2 3.3-3.1 2.2-2.2 3.3-4.9 2.5-8.6-.2 1-.3 1.5-.5 2.6-.2-1.1-.3-1.6-.4-2.1-.4 1.1-.4 2.3-.3 3.4 0 .1.3.1.4.2 0 1-.5 1.7-1.1 2.3-1.3 1.2-2.2 2.6-3.8 3.5-.5.3-.8 1.2-1.2 1.9h1c-.9 1.4-2 2.5-3.6 3.1-.4.1-.6.7-.9 1l-.1-.1c-.1.1-.3.2-.4.4l.2.2c.1-.1.2-.3.3-.4 1.6-.2 2.8-1.3 4-2.1l.5.5c-2.2 1.7-4.5 3.1-6.9 4.5-.2.2-.7 0-1 0-.3.5-.7 1.1-1 1.6-.3-.2-.4-.4-.6-.5-.6 1 .6 1.2.8 1.9-.2 0-.5.2-.7.1-.3-.1-.5-.3-1.4-.8-.3.1-.2.3-.1.3.2 0 .5-.1.7-.2-.3-.1-.6-.2-.6-.1.4 1.3-.4.6-1 .9-.2-.7-.5-1.3-1.6-.9.6.4 1.1.7 1.6.9.2.1.3.4.5.4h4.9c-.7-.5-1.2-.9-2.1-1.5 2.8 0 5.2-.4 7.5.1s4.7.3 7.2 1.2l.7.7c.2-.2.4-.5.5-.4 2.9.7 6.6 2.8 8.1 4.4 1.8 2.1 2.9 4.4 2.9 7.2.1 3.4-1.2 6.3-2.8 9.3-.9 1.7-2.2 3.3-2.4 5.3-1.4.8-2.7 1.5-4.3 2.4-.1-.7-.3-1.2-.4-1.8-.3.2-.4.4-1 .9.3-.8.4-1.2.5-1.7-.4-.3-.9-.6-1.5-1 .1-.3.3-.5.5-.9-.8-1.1-2.2-.7-3.6-.9 1.7-3.6 4.5-6.2 5.7-9.8v-2.5c-.8-1.5-2.4-2-3.8-2.3-2.5-.4-4.9-1.3-7.4-1.2-1.7.1-3.4-.4-5.1-.4-1.7-.1-3.4.2-5.1-.1-2-.4-4-.3-5.9-1-1.5-.5-2.9-1.3-3.8-2.5-.7-.9-1.4-2.2-1.3-3.2.1-1.4.3-3 1.4-4.2 2-2 4.2-3.6 6.6-5 3.6-2.1 7.4-4 10.8-6.5 1.6-1.2 3.6-2 4.4-4.1.1-.2.1-.4.2-.7-1.6-.8-3.2-.8-4.8-.8-1.6 0-3.2.1-4.8 0-3-.1-5.9.9-9 .5-1.8.9-3.8.3-5.6.5-1.5.2-2.9.7-4.4.4-.8.5-1.6 1.1-2.2 1.5-1.2 4.4-.4 8.7-.7 13.1-.3.2-.6.5-1.1.7s-.8 0-1.9-.7c0-3.2.1-6.5 0-9.8-.1-1.7-.5-3.4-2.5-4-.5-.2-1.1-.3-1.7-.3H21.9c-2.4-.1-4.8-.1-7.2-.5-2.7-.4-5-1.7-6.3-4.5.1-.1.2-.3.3-.6.8-3.7 3.8-5.3 6.8-6.6 3.2-1.4 6.4-2.4 9.6-3.8 2.9-1.2 5.8-2.5 8.8-3.5.7-.2 1.2-.7 1.9-1 4.3-1.9 8.6-3.9 12.7-6.1 2.8-1.5 5.5-3.2 8-5.2 1.4-1 2.7-2.2 3.9-3.4 1-1 1.9-2.1 2.7-3.2.5-.8.7-1.9 1.3-3.4-.2-1.4-.4-3.5-.6-5.6.9-.6 1.7-1.2 2.4-1.7.2.2.4.3.6.5.3-.6.6-1 .9-1.6l.3.9c.2-.2 1-1 1.1-1.4.4.1 1.1 0 1.3.3.6.7 1.3 1.6 1.4 2.4.2 1.4 1 2.6.7 4.1-.3 1.4.5 2.8-.5 4.1 0 2.5-1.3 4.7-2.7 6.5-1.5 2-2.7 4.3-5.2 5.5-.9.5-1.8 1.2-2.5 1.9-2.5 2.4-5.4 4-8.3 5.7-3 1.7-6.2 3.1-9.2 4.8-.6.3-1.1.2-1.7.3l.1-.1c-.1-.1-.2-.3-.4-.4l-.2.2c.1.1.3.2.4.3 0 .7-.6.4-1 .5-.1-.2-.3-.3-.4-.5-.2.2-.4.3-.6.5-.4.1-1-.3-1 .5-.4.1-1-.3-1 .5-.5.2-1.3-.5-1.5.5-.3.1-.6.1-1 .2v.3h.9c-.6 1-1.5 1.1-2.5 1-.1-.2-.3-.3-.4-.5-.2.2-.4.3-.6.5-.5-.2-.9-.4-1.5-.6.4 1 .8 1.2 1.5 1.1-.2.6-.5.9-1.2 1s-1.3.4-2.2.8c.6.5.9.8 1.3 1-.8.6-2-.4-2.7.7-.2-.2-.4-.3-.6-.6l-1.4.7c-.4-.5-.9-1.1-1.3-1.8v.3c.5-.1 1-.1 1.5-.2V42c-.5 0-1 0-1.5.3-.3.2-.6.2-1.5.2.9.6 1.3.8 1.8 1.2-.6.3-.9.4-1.3.6 2.8.4 5.2.3 7.4-.2.2-.1.6-.1.7 0 1.8 1 3.8.1 6.1.8-.9.1-1.2.2-1.5.2-2 .2-4.2-.5-6.1.5h-.3c-2.5-1-5.1-.3-7.7-.5.5.2.3-.1.1-.3h1.4v-1.6c-.4.7-1.6.2-1.4 1.6zm61.1 28.5l.5.5c.7 1.2 2.1 1.6 3.1 2.5l-.1.1c.1.1.2.3.4.4l.2-.2c-.1-.1-.3-.2-.5-.3-.2-1.8-1.6-2.2-3.1-2.5-.2-.1-.4-.3-.5-.5-.1 0 0 0 0 0-.1-.2-.2-.3-.3-.5l-.2.2c.1.1.3.3.5.3zM63 64.7c-.4.1-1-.3-1 .5-.4.1-1-.3-1 .6l-.1-.1c-.1.1-.3.2-.4.4l.2.2c.1-.1.2-.3.3-.5.4-.1 1 .3 1-.5.4-.2.9.1 1-.6l.5-.5c.4-.1 1 .3 1-.6l.1.1c.1-.1.3-.2.4-.4l-.2-.2c-.1.1-.2.3-.3.5-.4.1-1-.3-1 .5-.2.2-.3.4-.5.6zm3.6 0c-.4.1-1-.3-1 .5-.4.1-1-.3-1 .5-1 .2-2.1.4-2.5 1.9v-.4c-.3.1-.7.1-1 .2v.3c.3 0 .6-.1 1-.5 1-.2 2.1-.4 2.5-1.5.4-.1 1 .3 1-.5.3-.1.9.2 1-.5-.1 0 0 0 0 0 .2-.1.3-.2.5-.3l-.2-.2c-.2.1-.3.3-.3.5zm2.5-3.6c-.4.1-1-.3-1 .5-.8-.1-1.3.2-1.5 1.4v-.4c-.3.1-.7.1-1 .2v.3c.3 0 .6-.1 1-.5.8.1 1.3-.2 1.5-1 .4-.1 1 .3 1-.5.2-.2.3-.3.5-.9v.4c.3-.1.7-.1 1-.2v-.3c-.3 0-.6.1-1 .5l-.5.5zM14.7 47.8c-.1 0-.1.1 0 0 0 .2.1.4.3.5l.2-.2c-.1-.1-.3-.2-1.7-.9.3.4.4.6.5.6.2 0 .5-.1.7-.2-.4-.1-.7-.1 0 .2zm60-3c0 .8.6.4 1 .5.2.8.7 1.1 1.6 1l-.1.1c.1.1.2.3.4.4l.2-.2c-.1-.1-.3-.2-.5-.3-.2-.8-.7-1.1-1.5-1-.1-.7-.7-.4-1.1-.5-.7-.5-.7-.5-1.5-.1.6 0 1 0 1.5.1zM36 34.5c-.7.3-1.4.6-2 .8 0 .1 0 .2.1.3.7 0 1.3-.1 2-.1v-1.3.4c.3-.1.7-.1 1-.2v-.3c-.5.1-.8.1-1.1.4zm21.4 33.7c-1.5-.3-1.3 1.2-2 1.8l.6.6c.5-.8.9-1.6 1.4-2.4.2-.1.4-.2.5-.3l-.2-.2c-.1.2-.2.3-.3.5zM51.8 29c.4.1.9.2 1.5.4.4-.5 1-1.2 1.5-2l.1.1c.1-.1.3-.2.4-.4l-.2-.2c-.1.1-.2.3-.3.5-.6.2-1.2.3-1.8.5-.2-.2-.4-.3-.5-.4-.5.2-.9.4-1.3.6.3.4.4.7.6.9-1.1.3-2.5.3-2.5 2-.8.3-1.6.6-2.5.9 0-.3 0-.6-.1-.9l.1.1c.1-.1.3-.2.4-.4l-.2-.2c-.1.1-.2.3-.3.5-.7.8-1.6 1.4-2 2.7 1.5-.7 2.7-1.2 3.8-1.8.3-.2.5-.6.7-.9 1.4.1 1.9-1.1 2.6-2zM36.4 47.5v.3c-.8.1-1.6.1-2.4.2 0 .2 0 .3.1.5 2-.3 4-.5 6-.8-1.7 0-3.3-1.3-5.5-.5.9.1 1.3.2 1.8.3zm-19.7.7c1.3.5 2.3-.4 3.4-.8h-3.4v.8zm62.4 23.7c-.9-1.1-2.1-1.4-3.7-.9 1.4.4 2.5.7 3.7.9zM55.9 45.4c.8.3 1.6.6 2.9 0h-2.9zm5.1 26v.4c.6 0 1.2-.1 1.9-.1v-.3H61zm15.1 1.3v-.4c-.6 0-1.2.1-1.9.1v.3h1.9zM66 45.2v-.4c-.6 0-1.2.1-1.9.1v.3H66zm-15.7.7v.4c.6 0 1.2-.1 1.8-.1v-.3h-1.8zm-9.8 3.9v-.5c-.4.1-.9.1-1.3.2v.3h1.3zM23.9 49v.5c.4-.1.9-.1 1.3-.2V49h-1.3zm-1.2-.7v-.5c-.4.1-.9.1-1.3.2v.3h1.3zm43.4 23.6v.5c.4-.1.9-.1 1.3-.2v-.3h-1.3zm1-2.1v.5c.4-.1.9-.1 1.3-.2v-.3h-1.3zm-36.2-33v.3h1v-.3h-1zm10.3-3.6c0 .1 0 .3.1.4.3-.1.6-.1.8-.2v-.2h-.9zm-11.3 8.9v-.3h-1v.3h1zm40.7 3.1v-.3h-1v.3h1zm-.4.7v.4c.3-.1.6-.1.9-.2v-.3c-.3.1-.6.1-.9.1zm3.6 0c0 .1 0 .3.1.4.3-.1.6-.1.8-.2v-.2h-.9zm-30.7 1.6v.3h1v-.3h-1zm39.7 25.2c0-.1 0-.3-.1-.4-.3.1-.6.1-.8.2v.2h.9zm-21.3-9.2v-.3h-1v.3h1zm14.7-12.9v.2h.5v-.2h-.5zm-.7-3.2h-.2v.5h.2v-.5zM72 45.3h-.2v.5h.2v-.5zm-41.3-4.1h-.2v.5h.2v-.5zm1.2-.1v-.2h-.5v.2h.5zm7.3-4.9h.2v-.5h-.2v.5zm39 21c.5-1.7 1.4-3.3 3.2-4.9-.5 1.8-1.3 3.1-2.1 4.4-.1.2-.6.3-1.1.5zM43.5 42.4c-1.6 1.2-3.4 1.6-5.4 1.4v-.9c.9-.3 1.7 1.1 2.7.1.6-.6 1.8-.5 2.7-.6zm-3.5 2h5.6c0 .1 0 .2.1.2-.2.1-.5.1-.7.2-.9.1-1.7-.2-2.6.4-.6.4-1.7.3-2.4-.8zm40.6 1.9c.4.8.8 1.7 1.1 2.2-.2 1.2-.4 2.3-.6 3.6-.5-1.2-.2-2.2-.3-3.1-.1-.9-.4-1.9-.6-2.8.1.2.2.1.4.1zM67 40.9c-2.6 1.2-1.8 1.2-4.7.1 1.7-.4 3.2-.2 4.7-.1zm-16.7 1.6c1.4.1 2.6-1.2 4.2-.6-1.4 1-2.8 1-4.2.6zm-13 1.2h-4.4v-.2c.8-.2 1.6-.3 2.8-.6l1.6.8zm37.4 16.4v.7c-.7.4-1.4.9-2 1.3l-.5-.5c.6-.9 1.7-.9 2.5-1.5zm2-16.7c-.6-.3-1.3-.5-2-.8 0-.2 0-.5.1-.9.8.5 1.4 1 2.1 1.4-.1.1-.1.2-.2.3zm-31.9 2.5h1.9v.3c-.6 0-1.2.1-1.9.1v-.4zm-18 .9h-1.5c.5-.7 1-.7 1.5 0zm33-5.1h-1.4v-.3c.5-.1.9-.1 1.4-.2v.5zm-17.7-4.5c0 .8-.6.4-1 .5v-.5h1zm-1 .5c0 .8-.6.4-1 .5v-.5h1zm-1 .5c-.2.2-.4.3-.6.5-.1-.2-.3-.3-.4-.5h1zm-2.6.5h.9v.3c-.3.1-.6.1-1 .2.1-.2.1-.3.1-.5zM35 40.2c0 .8-.6.4-1 .5v-.5h1zm-17.7 2.7h.8v.3c-.3.1-.6.1-.9.2.1-.2.1-.4.1-.5zm59.4.4c.4.1 1-.3 1 .5-.3-.1-.9.2-1-.5zm-60.5 2.1h.8v.2c-.3.1-.6.1-.8.2.1-.1 0-.2 0-.4zm59 14.2l-.5.5c.2-.2.3-.4.5-.5zm0-.1c.1-.1.2-.3.4-.4l.2.2c-.3.1-.4.2-.6.2 0 .1 0 .1 0 0zm2.1-1.4c-.1.1-.2.3-.4.4l-.2-.2c.2-.1.4-.2.6-.2-.1-.1 0 0 0 0zm-.1-.1l.5-.5c-.1.2-.3.4-.5.5zm1.1-1l-.5.5.5-.5zM26.9 46.8c.1.1.3.2.4.4l-.2.2c-.1-.2-.2-.4-.2-.6-.1.1 0 0 0 0zm53.4-.4c-.1-.1-.3-.2-.4-.4l.2-.2c0 .2.1.4.2.6 0-.1 0 0 0 0zm-1.5-1.6c.1.1.3.2.4.4l-.2.2c0-.3-.2-.4-.2-.6zm-.5-.5l.5.5c-.2-.2-.4-.3-.5-.5zm-.5-.5l.5.5c-.2-.2-.4-.3-.5-.5zm-4.1-1.9h.5v.2h-.5v-.2zm-55 .4l-.5-.5c.2.1.3.3.5.5zm59.6 8.4c-.2.6-.3 1-.4 1.3-.1-.2-.2-.5-.2-.7.1-.2.2-.3.6-.6z" />
</clipPath>
</defs>
<path class="cl" clip-path="url(#mask2)" fill="none" stroke-width="13" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M67.7 1.3s.5 9.7-1.9 15c-2.4 5.2-53 29.7-53 29.7l25.4 2.6 1 17 .9-17.5s33.2-4.2 35.9.1c2.6 4.3-23.5 15.7-22.6 21.9 1 6.2 29.1 1.7 31.6 7.7s-8 19.1-8 19.1" />
</svg>
<!--3-->
<svg class="mask mask03" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 49.9 100">
<defs>
<clipPath id="mask3">
<path id="msk3" d="M49.8 76.1c-1.5 2.1-3.2 1.2-4.8 1.4-.6.7-1.3 1.4-2.1 2.2v18.8c-1 1.7-2.5 1.6-4.1 1.3-1.8-6-.9-12.1-1.2-18.5-.7-.4-1.6-1-2.9-1.8-.2.1-1 .4-1.9.8-.4 1.2-.9 2.5-1.1 3.8-.2 1.4 0 2.9 0 4.6-.9.4-1.9.8-2.8 1.2-.6-.7-1-1.1-1.4-1.6v-6.1c-.9-.6-2-1.2-2.9-2.1-.7-.6-1.2-1.4-1.6-2.2-2-3.9-3.3-8.1-4.2-12.5-.9-3.9-1.6-7.9-2.8-11.8-1.9-6-3-12.2-5.7-17.9-.2-4.1-2.5-7.6-3.6-11.4-1.1-3.6-2.2-7.3-4-10.8-1.1-2.1-1.4-4.6-2-6.9C.5 5.9.3 5.2.1 4.4h1.2c.3 1 .6 2.1.9 2.9 2.4-.2 4.6-.4 6.7-.6.9 1.8 1.7 3.5 2.7 5.6.4-.8.8-1.5 1.4-2.5.5 1.2.8 1.7 1.1 2.3 1.7-1.7-.9-3-.5-4.6.4-1.7.1-3.5.1-5.3 1.2-.6 2.5-1.3 4.1-2.1.3.5.8 1.2 1.1 1.7C20.1 1.1 21.1.6 22 0c1.7.6 3.6 1.1 4.1 3.5 1.6-.3 3.2-.7 4.8-.9 1.6-.2 3.2 0 4.7 0 2 1.5 1.6 4 2.1 6 .9 3.5 1.6 7.1 2.5 10.6.5 2 1 4 1 6 .1 2.8 1.6 5.4.9 8.3 1.7 1.6 0 4.1 1.7 5.8.4.4 0 1.4.1 2.1.5 4.5 1.1 8.9 2.4 13.2.3 1 0 2.3.2 3.4.2 1 .8 2.1.8 3.1.1 2.2 1 4.2 1.5 6.3 0 .1.3.2.3.3-.7 2.9 1.2 5.6.7 8.4zm-24.6-40c-.8-.7-1.4-1.3-2.4-2.1-.3.9-.4 1.4-.6 2.1 1.1 0 1.9 0 3.4.1H25v3.2c-.8.3-1.3.4-2.1.7 1 .6 1.8 1.2 2.6 1.7.3 1.3.6 2.7 1 4.2-.2.5-.5 1.2-.8 1.9.8.3 1.3.5 1.8.6-.4.5-.7.9-1 1.3.4.7.8 1.3.9 1.9.2.8 0 1.6 0 2.9 1.5-.7 2.5-1.2 3.5-1.6-.1-.8-.1-1.5-.2-2.1h-1.2c-.3.5-.5 1.1-.8 1.7-1.3-1.5.3-2.5.4-3.8-.3-.3-.6-.6-.9-1 1.4-2.9.3-6.9-2.5-8.5.1-1-.1-2.1-.5-3.2zm-12-8.7c-.5 1.3-.9 2.3-1.7 4.2 2-1.5 2.7-2.4 1.7-4.2zm27.1 10v-3.1c-.6.1-1.1.2-1.6.3.5 1 .9 1.7 1.6 2.8zm-.9-8h-.7c.1 1.1.1 2.1.2 3.2h.5v-3.2zm3.7 23c.2 0 .5-.1.7-.1-.1-.5-.2-.9-.3-1.4-.1 0-.3 0-.4.1v1.4zM14.8 13.8h.3v-.9h-.3v.9zm-3.4 12h.3v-.9h-.3v.9zm31 22.4h.3v-.9h-.3v.9zm-5.2 30.2h.3v-.9h-.3v.9z" />
</clipPath>
</defs>
<path class="cl" clip-path="url(#mask3)" fill="none" stroke-width="39" stroke-miterlimit="10" d="M16-2.7L43.6 103" />
</svg>
<!--4-->
<svg version="1.1" class="mask mask04" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 256 60.4" xml:space="preserve">
<defs>
<clipPath id="mask04">
<path d="M256 39.4c-1.6 1.1-2.6 2.9-4.7 3.8-1.6.7-3.4 2.2-2.7 5-1.1-2.8-1.8-5.4-5.4-5.2-3.3-3.1-8-3.3-11.4-6.2-.7.5-1.2.9-1.8 1.4-.4-.2-.8-.3-1.2-.5-3.4-2.1-7.3-2.7-11-3.5-6.1-1.3-12-3.1-18.1-4.6-.6-.1-1.2-.3-1.8-.4-2.2-.5-4.3.5-6.7-.8-1.7-1-4.3-.4-6.5-1-3.3-1-7.1-.4-10.5-1.3-3.9-.9-7.9-.2-11.6-1-6.2-1.5-12.4-.6-18.6-.8-5.5-.2-11-.2-16.5 0-3.5.1-7 .8-10.6.9-3.5.2-7.1-.5-10.5.2-3.2.7-6.6.1-9.6 1-3.3 1-6.6 0-9.6 1-2.3.8-4.7.3-6.8 1.6-1.9 1.1-4.3.2-6.5 1.1-2.9 1.2-6.3.7-9.5 1.2-2.6.4-5.2.9-7.8 1.6-2.7.7-5.7.8-8.4 1.4-4.4 1-9.1.8-13.3 3.4-2 3.1-.7 6.8-1.2 10.1-1.5 1.8-3 2.2-4.8.1v-7.3c-1.4-.8-2.7-1.6-4-2.4-1.9.7-3.5 1.6-4.1 4.6v15.9c-2.4 1.9-2.4 1.9-4.9.3V43.8c-.8-.5-1.7-1.2-3.5-2.4-.9.2-2.8.6-5 1-1-1.2-2.1-2.4-3.2-3.8 2.3-2.6-1.4-5.2-.3-8-1.3-.2-2.2-.4-3.8-.7 1.1-1.1 1.8-2 2.6-2.5 3.9-2.3 8.1-3.7 12.4-5 7.1-2.1 14.2-4.3 21.5-6.1 4.2-1 8.4-2.4 12.7-3.1 2.9-.5 5.8-1 8.7-1.8 2.7-.8 5.5-.9 8.2-1.9 2-.7 4.3-.2 6.6-1 2.8-1 6-.8 9-1.2 1.7-.2 3.4-.7 5.1-1 1.6-.2 3.3.4 4.6-1 .1-.1.3 0 .5 0 4.4.8 8.7-1.1 13.1-1.1 2.4 0 4.7-.7 7.1-.9 2.5-.2 5.2.6 7.4-.2 3.3-1.2 6.4-.8 9.6-.8 5.2.1 10.3-1.5 15.6-1.1 5.3.3 10.8.8 16-.1C168-.2 175.2.7 182.4.3c3.9-.2 7.6 1.4 11.6 1.1s8-.1 12 0c.3-.5.6 0 1 .5h-10.8c-1.4 0-3-.5-4.1.9-.9-1.4-2.4-.9-3.6-.9-8.7-.3-17.3 1.7-26.1 1-3.7 1.6-7.7.8-11.6 1.3 2.4 1 5 1.8 6.2 4.6h2.3c.3-.6.5-1.2 1.1-2.3.2 1.1.3 1.5.5 2.3 5.4 0 11 .5 16.4 2.2.2-.6.4-1.2.7-2 .5 0 1.1.1 1.9.1-.5.6-.8 1-1.4 1.6 2.4.5 4.9-.4 6.8.4 1.8.8 3.9-1.1 5.4 1 .6-.4 1-.8 1.5-1.1l1.4 1.4c2 .6 3.4 1.4 4.9 1.5 2.1.1 3.9 1.5 6.1 1.2.9-.2 2 .6 3.1.9 3.7 1 7.5 2.1 11.3 3 9.6 2.4 17.2 4.4 27.4 10 3.7 2 7.1 4.2 9 8.2.3.6.3 1.2.6 2.2zM173.4 8.1v-1h-.3v1h.3zm-8.7-.4h1v-.3h-1v.3zm44.5-4.5c-.7-.8-.9-1.1-1-1.1-.5 0-.9.2-1.4.4.6.2 1.2.4 2.4.7z" />
</clipPath>
</defs>
<path class="cl" clip-path="url(#mask04)" fill="none" stroke-width="60" stroke-miterlimit="10" d="M0 30.2h256" />
</svg>
<!--5-->
<svg class="mask mask05" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" viewBox="0 0 100 96.7">
<g>
<defs>
<clipPath id="mask5">
<path id="msk5" d="M66.4 12.5c.3 2 .5 4 .8 5.9.4.8.9 1.5 1.3 2.3.2.4 0 .9 0 1.6 1.8-.4 3.4.4 5.1-.5 1.5-.9 3.3.4 5-.7.7-.4 1.8-.1 2.7-.2.7-.1 1.3-.2 2-.3 1.6-.4 3.1-.9 4.6-1.6 3-.4 5.6.7 8.3 2.4-.6.4-1.1.8-1.7 1.2l1.6 1.6c-.8.1-1.3.2-2 .3-.5.6.4.6.5 1-.2.2-.4.5-.7.8.5.2.9.3 1.4.5-.7.5-1.4.9-1.8 1.2.2 1.1.4 2.1.5 3.1.7.5 1.4 1.1 2.1 1.6-.2.5-.3.8-.4.8-2.1.6-4.1 1.5-6.4 1.5-1.4 0-2.8.4-4.3.7-1.4.2-3-.4-4.3.7-.3.3-1.1 0-1.7 0-2.9.2-7.7.7-7.7.7s-.1 3.8.8 5.3c.8 1.4 0 3.1.7 4.6.5 0-.5.6.4.7-.3 1.1 1.3 6.2 1.3 8.3l-.1-.1c-.2.2-.4.3-.6.5l.2.2c.2-.2.3-.4.5-.6.5.3 1 .7 2 1.4H82c.7 1.2 1.7.5 2.6.6 0 0 .1-.3.2-.5H82c.1-.2.1-.4.1-.4 2.3-.4 4.5-.8 7-.7-1.1.8-2.1 1.6-3.3 2.4-1.9.1-4-.4-5.9 1.1.3.6.6 1.3 1 2.2-1 .1-1.9.2-2.8.3-.3.4-.6.9-.8 1.3l-.1-.1c-.2.2-.4.3-.6.5l.2.2c.2-.2.3-.4.5-.6h1.6c-.4.9-.7 1.5-1.1 2.3.7.5 1.4 1.1 2.2 1.7V69c.5.2.9.4 1.4.7-.2.3-.5.5-.8.9.8.1 1.4.2 2 .3 0 .1.1.2.1.3-.8.1-1.5.3-2.5.4-.2.5-.5 1.1-.9 1.8.4.1.7.1 1.1.2.8 2.5 1.6 5.1 1.9 8.5.1.4.4.2.4.1 0-.3-.2-.7-.3-1-.1.4-.2.8-.1.9 1.8-.6.8.5 1.1 1.1.2.6.7 1.2.7 1.8-.1 1.6 1.6 3 .1 4.8-.4.4.4 1.8.8 3-.7.5-1.4 1.1-2.3 1.8-.7 0-2.7-1.7-3.8-3.5-.3.3-.6.6-1.1 1 .7.8 2.1 1.6 1.1 3.3-.9-.2-1.7-.4-2.9-.6-.8.3-1.9.7-3.1 1.1-1.3-.9-1.3-2.6-1.6-4-.2-1-.2-1.9-.7-2.9-.9-1.5-.8-3.4-1.5-5s-1.3-3.2-1.4-5c-.1-1.1-.7-2.2-1.1-3.4-.2-.5-.2-1.1-.4-1.9-1.6.1-3.4-.7-5.1.5-.2.1-.4.1-.7.1-3.6.2-7.3.5-10.9.7-1.5.1-2.9.1-4.2 1 .2.8.8 1.7.6 2.4-.3 1.7.6 3.1.8 4.6s.7 3 1.5 4.3c.6 1 .6 1.9.4 2.9-.4 1.7-1 3.3-1.6 5.2-.7-.3-1.3-.5-2-.8-.4.5-.8 1.1-1.6 2.1-.2-1.2-.3-1.9-.4-2.8-.3.2-.5.4-.9.6-.2-.1-.5-.3-.8-.5l-.7.7c-.3-.6-.5-1.3-.5-1.2-1.7.3-2.6.4-3.7.6-.3.7-.7 1.6-1.2 2.5-.1-.1-.4-.1-.5-.2-1.3-1.7-1.9-3.7-2.2-5.8-.3-2.3-.5-4.6-1.3-6.8-.3-.9 0-2.1-.1-3.1-.1-.6-.3-1.2-.5-2l.7-.7c-.4-.5-.7-1-1-1.5-.6.2-1.1.6-1.6.6-3.6-.3-6.8 1.5-10.3 1.5-.7 0-1.5.3-2.2.7-2.2 1.4-4.6 1.5-7.5 1.3-.2-.7-.9-1.6-.6-2.3.7-1.9.6-3.8.7-5.7 0-.3.4-.5.7-.8-1.7-1.5-.2-2.5.7-3.5-.2-.3-.4-.5-.6-.6 3-1.1 6-2.7 9.1-3.1 3.2-.4 6.2-2.2 9.8-1.4-.3-1.8-.6-3.4-.7-5.1-.2-1.7-.1-3.3-.6-5-.4-1.4-.7-3.1-.7-4.6 0-1.7-.7-3.3-1-5.2-1.5.2-3-.3-4.6.6-1.3.7-3.2-.6-4.6.6-.2.2-.7.1-1 .1L3 45.5c-.9-1-1.6-1.9-2.4-2.8.7-.8.9-1.8-.2-2.7l1.5-1.5c-.6-.3-1.2-.6-1.9-1.1.9-.4 1.4-.7 1.8-.9v-.8c-.5-.2-.9-.4-1.6-.7.3-.5.6-1 .8-1.4-.2-.2-.4-.5-.6-.7l.8-.8c.2-.1.4-.2.6-.2 1.4 0 2.8.1 4.2 0 1.5-.1 3.1-.5 4.6-.7 1.6-.1 3.4.4 4.9-.1 2.3-.8 4.9-.3 7.3-1.7-1.2-5.8-2.5-11.9-2.1-18.3.8-.3 1.7-.7 2.6-.9s1.9.3 2.6-.7c.2.5.5 1 .8 1.6.7-.5 1.4-1 2.2-1.6.1.4.3.8.6 1.5.8-.5 1.5-.9 2.2-1.4.1.1.4.3.6.5.2-.2.5-.4.7-.7l1 2v2.9c0 1.6 0 3.1.6 4.6.5 1.3-.3 2.8.7 4.3.5.8.1 2.3.1 3.3.6.9 1.5 1.5 2.4 1 .6-.3 1.1-.7 1.9-.6.9 0 1.8 0 2.7.5-2 .4-4 .8-6.2 1.2 0 .2-.1.5-.2 1.1.9-.1 1.7-.2 2.5-.3.8.1 1.7.2 2.5.3 0 1-.8.6-1.2.7-.5.1-.9.4-1.1.4-.7-.2-1.2-.4-1.8-.5-.5 2.2 1.2 3.4 1.6 5.1.7-.3 1.3-.7 1.9-.8.6-.1 1.3-.1 2.2-.1l-1.2-1.2c-.4.3-.9.5-1 .6-.7-.4-1.2-.6-1.7-.9 2-1.4 3.9-1.1 6.4-1-1.1.5-1.5.7-2 .9l1.3 1.3c.5-1.1.8-2 1.2-2.9 2.2-.5 4.4-1.6 6.6-.2.3-.6.6-1 .5-1.5 1 .2 1.9.4 2.6.6 1.1-.2 2.2-.4 3.4-.7-.5-.5-.8-.9-1-1-1.8.3-3.3.6-5 1.1-1.3-.2-3 .9-4.4-.5-.2-.2-.8-.2-1 0-2 1.2-4.2.5-6.3.7.1-.2.1-.6.3-.6 2.1-.3 4.2-.5 6.3-.9.3 0 .5-.4.8-.6.9 1 2 .8 3.1.4 1-.4 1.9-.8 3.2-.6 1 .2 2.1-.4 3.1-.7-.4-1.3-1.2-2.6-1.2-3.9 0-2.2-1.2-4-1.6-6.1-.3-1.4-.9-2.9-1.2-4.4-.5-2.5-1.3-5.1-.6-7.9C56.5 2.2 60.4 3.3 64 3c.4.6.8 1 .9 1.5.3 2.4.5 4.7.8 7.1.1.6.5.7.7.9zM30.8 43.4h.6c-.1-.5-.2-.9-.3-1.4-.2 0-.3 0-.5.1 0 .4.1.9.7 1.3v1.9c1-.2 1.8-.4 2.5-.5.4.9.9 1.6.9 2.3 0 2.1.3 3.9 1.3 5.8.4.8.5 2.1-.5 2.8.5.9.9 1.7 1.4 2.6-.2.3-.4.6-.7.9.2.3.5.6.6 1 .1.5.1 1 .2 1.6.5 0 .7 0 1.2-.1 0-.9.2-1.9-.2-2.6-1.1-2.1-1.2-4.3-1.2-6.5v-4.9c1.4 1.3 1.5 3.1 1.4 4.8-.2 2.3.5 4.4 1.2 6.5.3.8.5 1.5-.3 2.2-.1.1 0 .3.1.5h1.6c.2-.5.3-.9.5-1.5.3.6.5 1.1.7 1.6 2-.3 4.2.5 6-.7 3.5.5 6.8-.8 10.2-.7 1.6.1 3.2-.1 4.5-1.4.7-.3 1.4-.7 2-1-.5-1.3-1-2.6-1.7-4.2-.3.8-.4 1.2-.6 1.7-.5-.6-.9-1.1-1.4-1.7.7-.3 1.2-.6 1.6-.8-.3-.4-.6-.8-.7-1l-1.2.4c.9-1.7 1-3.1 0-4.5.5-.2.9-.3 1.4-.5-.6-1.5-.9-3.2-1.9-4.5-1-1.4-.5-3.6-2-4.3-6.7.9-13 .8-19.3 2.3l-1 1c-.6-.2-1.1-.4-1.8-.6v2c.5.2.9.3 1.3.5-1.3 1.2-.5 2.7-.7 4-.2-.2-.7-.4-.7-.6.3-1.9-.7-3.4-1-5.1-.7.1-1.3.1-2 .2.4.5.6.7.9 1l-.8.8c-.6-.4-1.2-.6-2.3-.7zm23.5 23c-1.9.6-3.7-.3-5.3.7 1-.2 1.8.8 2.9.4 1.2-.4 2.5-.1 3.8-.2 1 0 1.9-1.7 3-.3 0 .2 0 .5-.1.7-1.3.3-2.5.7-3.5.9-.7-.3-1.3-.4-1.9-.7-.1.5-.1.8-.1 1.2.9.2 2.1.8 2.8.5 1.3-.7 2.1.4 3.1.5.5-.5 1-1 1.7-1.6h3.8c-.2-1-.4-1.8-.6-2.5l.5-.5-1-1-.8.8c.2.9.3 1.7.6 2.9-.8-.3-1.1-.5-1.5-.5s-.8.1-.7.1c-.7-.3-1.1-.5-1.9-.9 1.2-.2 1.9-.3 3-.4-.7-.6-1.1-.9-1.6-1.3-.4.2-.7.4-1.2.6-2.1-1.4-3.6-.5-5 .6zm-34-32c-.5.5-1 1.1-1.6 1.7l.2.2c2.1-.2 4-1.2 3.7-2-.5.1-1.2.1-2.3.1zm11.3-1.5c-.1.1-.2.2-.4.3.3.7.6 1.4.7 2.1.1.8 0 1.6 0 2.3.2 0 .3 0 .5.1.4-1 .8-1.9 1.2-3-.7-.6-1.3-1.2-2-1.8zm15.2 35.2c-.4.5-.6.7-.9 1.2.7 0 1.1-.1 1.9-.1-.5-1.1-.9-1.9-1.2-2.7-.6.4-.8.6-1.1.7s-.5.2-1.3.5c1.1.2 1.8.3 2.6.4zm29 19.5c.1-1 .2-1.8.3-2.7h-1.8c.3 1 .6 1.8.8 2.7h.7zm-41.7-37c0-.8.1-1.8 0-1.8-.7-.1-1.4-.1-2.7-.1 1.1.7 1.8 1.2 2.7 1.9zm-4.7-23.3c.6.8.9 1.1 1.3 1.6l1.6-1.6h-2.9zm2.8 20.1c.5-.2.9-.5 1.4-.7-.1-.2-.2-.3-.3-.5-.6.1-1.3.2-2.1.3.5.5.8.8 1 .9zm24.5 23.5v.6c.9-.1 1.7-.1 2.6-.2v-.4h-2.6zm17.6 20.8h.6c-.1-.6-.2-1.2-.3-1.9h-.4c.1.7.1 1.3.1 1.9zM44 76.1c-1.3-.4-1.8-.1-1.5.5.5-.1 1-.3 1.5-.5zM53.9 33v.6c.6-.1 1.2-.2 1.9-.3v-.4c-.7.1-1.3.1-1.9.1zm-19.2-7.7h-.6c.1.6.2 1.3.3 1.9h.4c-.1-.7-.1-1.3-.1-1.9zm39.6-1.4v.6c.6-.1 1.2-.2 1.9-.3v-.4c-.7.1-1.3.1-1.9.1zm-2.1 1c1.1.2 1.1.2.9-1.5-.4.7-.6 1.1-.9 1.5zm1.8 62h-.4v1.4h.4v-1.4zM35 59.4c.2 0 .4-.1.6-.1-.1-.4-.2-.8-.3-1.1-.1 0-.2 0-.3.1v1.1zm-.7-4.1h.4v-1.4h-.4v1.4zm20.3-23.7c0 .2.1.4.1.6.4-.1.8-.2 1.1-.3 0-.1 0-.2-.1-.3h-1.1zM20 32c0-.2-.1-.4-.1-.6-.4.1-.8.2-1.1.3 0 .1 0 .2.1.3H20zm33.1-.3v.2h.7v-.2h-.7zm-5.4 1.2h.2v-.7h-.2v.7zm5.1 0h-.2v.7h.2v-.7zM34.4 52.5h.2v-.7h-.2v.7zm43 7h-.2v.7h.2v-.7zm-64.6 7.8h-.2v.7h.2v-.7zm32.1 2.1h.2v-.7h-.2v.7zm6.3 0h.2v-.7h-.2v.7zm12.9 0h-.2v.7h.2v-.7zm-10.2-44c.7-.3 1.5-.7 2.5-1.2.1.8.2 1.4.3 2-1.2.7-2.1.5-2.8-.8zm30 41.3c-.6 1.3-1.5 1.5-2.7 1.1v-1.1h2.7zm-1.2-6.3h2.6v1.4c-1-.4-1.8-.7-2.7-1 .1-.2.1-.3.1-.4zm.7 9.8h3.3c-1.1.8-2.2.5-3.3 0zm4.8-.7h3.5v.4h-3.5v-.4zM49 25.8c.7.1 1.4.1 2.3.2-.6.5-.9.8-1.5 1.3-.2-.4-.5-.9-.8-1.5zm48.4 28.9h2.6v.4c-.8.1-1.7.1-2.5.2-.1-.2-.1-.4-.1-.6zm-3.7 1.2h-2.6v-.4c.9-.1 1.7-.1 2.6-.2v.6zm3.5 13.3h-2.6v-.4c.9-.1 1.7-.1 2.6-.2v.6zM53.9 26.3c-.5.1-.9.2-1.4.4-.1-.5-.1-.9-.2-1.8.7.6 1.1.9 1.6 1.4zm26.6 38h-1.4v-.4h1.4v.4zM66.3 12.4c.2-.2.3-.4.5-.6l.2.2c-.2.2-.4.3-.7.4.1.1 0 0 0 0zM48.2 26.3h-.7v-.2h.7v.2zm-2.8.5h.7v.2h-.7v-.2zm-6.9 16.7h1.1c.2 1.3.4 2.7.6 4-.1 0-.3.1-.5.1-1.2-1.1-1.6-2.5-1.2-4.1zm3.2 16h-1.2v-3.3c.8 1 1.8 1.8 1.2 3.3zm-.7-4.7l-1.1-1.1c.3-.6.7-1.2 1.1-2.1v3.2zm18.5-1.7v-1.2c.1 0 .2 0 .3-.1.1.4.2.8.3 1.1-.2.2-.4.2-.6.2zm-2.9-8.5h-.7v-.2h.7v.2zm-16.4 5.1v.7H40v-.7h.2zm20.1 4.9v-.7h.2v.7h-.2zm2.6 1.7h.7v.2h-.7v-.2zm-.1 2.6c-.2-.2-.4-.3-.6-.5l.2-.2c.2.2.3.4.5.6 0 0 0 .1-.1.1z"/>
</clipPath>
</defs>
<g clip-path="url(#mask5)">
<line class="cl" x1="-.1" x2="98.9" y1="39.6" y2="25.5" fill="none" stroke-miterlimit="10" stroke-width="19" />
<line class="cl" x1="5.4" x2="102.8" y1="75" y2="60.3" fill="none" stroke-miterlimit="10" stroke-width="19" />
<line class="cl" x1="25.9" x2="42.2" y1="6.5" y2="97.7" fill="none" stroke-miterlimit="10" stroke-width="19" />
<line class="cl" x1="56.6" x2="79.5" y1=".8" y2="95.5" fill="none" stroke-miterlimit="10" stroke-width="19" />
</g>
</g>
</svg>
<!--6-->
<svg class="mask mask06" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 320 320">
<defs>
<clipPath id="msk6">
<path id="prefix__a" d="M241.2 42.016c-.161.559-1.455-.263-2.069.263.29-.108 2.186-.942 2.069-.263zM68.08 75.207c-1.278-1.711-5.145 2.504-2.341.927.617-.017 2.272.025 2.341-.927zm.013.063c-.029.106-.025-.065-.003-.106.01.033.01.069.003.106zm171.802-33.184c-.033.04-.093.037-.139.043a.164.164 0 01.139-.043zm.392.027c-.017-.007-.03-.017-.046-.023.018-.002.029.016.046.023zm.893.142c.007.034-.025.014-.046.017-.004-.031.026-.015.046-.017zM31.285 92.272c-.069 1.344 2.02-.521 1.01-.85-.251-.141-.552.118-.548.369.597.212-.115.898-.462.481zm7.244-9.3c.752 1.171.87-.339 1.598-.552.589-.013 1.111.037 1.657-.056-.307-.665-4.111-.395-3.255.608zm16.102-4.55c.484.191.988-.445.525-.824-.995-.619-1.42.7-.525.824zm-12.368 3.467c.405-.015.626-.368.917-.651 1.07-.964-2.582.375-.917.651zm-28.312 86.997c-.039-1.793.34-3.363-.106-5.042-.734 1.067-.674 3.84.106 5.042zm-.498 8.769c.11.751-.442 1.551.325 2.425.203-.941-.049-1.685-.325-2.425zm-.033 5.899c.114.247.046.734.412.591-.057-.333.048-.746-.412-.591zm.103-20.58c1.07-.816.97-12.182.256-15.119-.545 4.747.516 10.167-.256 15.119zm-2.604 67.235c2.324-.48.615-5.041-.202-6.059l.202 6.059zm1.159-6.955c1.442-11.101.632-25.646-.225-37.661-.076 12.492-1.734 26.03.225 37.661zm-1.226 13.159c.448.069.195-1.51 0-1.624v1.624zm282.437-172.06c-.179.425-.04 1.189.103 1.342.72-.187 1.318-1.509-.103-1.342zm20.679 1.145c1.562-2.316 1.105-.924 1.989-1.152.292-1.348-7.897.384-1.989 1.152zm-18.4 3.066c-.941 1.231.496.298 1.229.16-.467-.036-.88.045-1.229-.16zm20.393 6.649c-.25.515 1.738 1.002 1.558-.279-.313-.626-1.095.307-1.558.279zm-49.535-38.541c.769-.509 1.823-.556 2.783-.8-.158-.595-3.811-.24-2.783.8zm50.382 33.284c-.81.737.787.648.967 2.65.485.747-.9 1.607-1.033 1.435-.714-.791-.382.362-.568.578-.255.385-.85.836-1.604.983 1.02 1.566-1.154.681-1.531.781-1.01 1.346-.548.2-1.199.306-4.008 2.673-10.205 2.034-13.335 3.448-15.669 3.43-31.895 6.523-47.489 9.001-18.429 3.774-38.808 7.128-55.56 10.316-9.633 2.391-18.826 2.898-28.534 5.012-1.055-.831-4.508 2.155-5.577.186-.359 1.162-1.405.527-2.949 1.376-1.377-.087-3.097.634-2.766-.614-5.426 2.27-12.173 2.909-18.341 3.306-2.712 1.073-7.239 1.775-10.542 1.902-4.115.817-7.574 1.447-11.608 2.002-1.127.371-2.478.249-3.477.438-.441-1.187-1.901-.873-2.103.137-.932 1.089-2.828-.606-3.776 1.036-1.78-.423-2.935.782-4.657.245-.798-.203-1.25 1.264-1.574-.272-2.167 2.744-3.122-1.08-3.149.794-.096.691-.784-.511-1.229.575-.462.756-.953-.801-1.425-.425.721.661-1.001 1.383-1.427.531-1.537.861-5.023 1.034-1.061 1.226 18.517-.462 35.829.524 53.328-.363 9.525.253 18.029.343 28.212-.059.976.895 2.821-1.011 3.208.714.13 0 .405-.083.306-.186 1.91-1.589 6.865-.111 9.506-.393 2.026-.569 5.361.402 7.414-.141 1.46.184 3.172-.273 4.596.216.426-.256 2.227-.532 2.086.257 1.598.198 1.576-.875 2.807-.185 1.409-.265 4.095-.738 4.51.494.442.542.332-1.106.877-.578.531.731 1.614-.159 2.169.196.432.631 1.005.239.814-.438.748.007 2.245.186 2.847.08 1.119-.126 3.482 1.114 4.082-.009.632.353 2.269-.266 2.587.51-.419-.026-1.711-.009-1.119.618.896.29 1.09-.551 1.654-.801.881.985.894-.285 2.671-.026 1.897.635-.143.047.205-.389 1.151-.238 1.073 1.195 1.717 1.618.97-.568.612.129.741.405.543-.484 1.198-1.182 1.83-1.867.458-.052 3.901-.029 1.438.801-2.274-.989-1.679.725-3.109 1.45 1.475 1.375.983-.654 1.857-.983.888-.321 2.216-.8 3.026-1.147-1.342.57.783 2.747 1.365 1.805.158-.766.159-2.911 1.242-1.349.14.119-.501.402-.577.501-.09.188 1.066.208 1.279.342-.165-.769-.144-1.214 1.026-1.033.075-.73 1.008-.579 1.335-.22-2.008 1.234 4.346-1.215 1.152.429-2.606 1.222-.799.554.95.485.777.283 1.182-1.186 1.761-.342 1.044.18 1.058 1.216.186.243-2.491.226-.203 2.131 1.531.394 1.059-1.159 1.74 1.086 3.056.98.986.384 1.121-.324.667-.88.196-.06 1.339.236.99.505.171 1.211 2.771-.01 3.703.601 8.065-.72 17.226.045 24.376-.72.475.972.475.295.983.354.432.863 1.233-.185 1.797-.027 2.127.398 5.643-.213 8.157.359.603-.579 1.814-.848.97.053.251-.338.99-.478.92.05-1.059.784.917-.058.906.182-.093.575.851 0 .711.565 4.333-.677 7.897 2.172 12.176 1.401.452 1.158 2.669.893 3.743 1.694.425.186 2.205-.661 1.76.196.582.5-1.75.229-.588.893-1.196 2.031 3.902-.217 4.314.833 2.635-2.126 2.686 2.354 3.189 4.488-.127 1.474 1.032 2.866.329 3.756 2.421 9.035 1.873 18.436 1.97 27.634-.077 2.011-.294 4.718.119 6.51-.674 1.901.56 4.149-.843 5.709 1.083.471.27 1.335.558 2.166-.638.615-.047.369.173.85.027.173-.086 1.063.076 1.641-.529 1.11.381 2.198-.166 3.421.808 1.232-.289 2.077.331 3.281.024.727-1.005.551.001 1.176.272 1.319-.591 2.924-.273 4.364.007.116-.388.345.017.379.464-.108-.212 1.584.332 1.817-.374 1.405.246 2.399-.571 3.667 1.029.275.245 1.445-.014 2.232 1.134 1.293-.076 3.771.509 5.394.846.587-1.392.749-.359.927 1.525 1.367-.554 5.196.644 6.609-.424 1.941-.749 3.556.106 5.138-.716.313-.567 1.01-.322 1.345.052 1.675-1.312.393-.083 1.93.337.372-.408.326-.213.621.475.543.017 1.246.316 1.757-.239.674-.194.798-.811.916-.558.319 1.266.107.469.615-.575.219.276.923-.086 1.189-.761.498-.013.515.438.482.226 1.424-.959 3.341-.207 4.095.094 0 .26.033.233.146-.797.626.376 1.068-.607 1.395-.27-1.704-1.137-.021.183.315-1.249.625.808.316-.296 2.103 1.646-1.054.306.409-.904.617.841.683-1.016.28-.166.575.89.149-.173.339 1.066.634.13.043.545.239.561.316-.214.204.463 1.643-.419 1.318-.266-.033-.521-.319-.352-.564 1.112-1.086-1.12-1.117-1.481-1.744-1.392.837.787.641.983 1.103.395.183.541.405.136.714.136.309 1.289.79 1.01 1.076-.25-.578-2.943.274-1.807.801.418-.037 1.577.252 1.926.255-.196.365-.761.67-1.079.143-.247-.135-.148.629-.342.758.562.179 1.136-.561 1.033.608.783.012.518.621.22.791-1.087-.892.422.892.073 1.315-.84-1.241-1.706-2.375-.986-.066-.208.595 1.19.63.341 1.039-.169.239-.584.943-.658.242 1-.202-.309-1.445-.568-.349-1.549.195 2.172 1.564.674 1.621-.051.832-2.055 1.233-.807 1.9.524-.13.955-.27.239.432-.319-.127-.718-.077-.532.298-.503 1.094 1.597.269 1.637 1.459-1.949-.094.366 1.698 1.02 1.624.495.721-1.89.398-.997.976 1.246.302.432.681-.359.624-1.109-.492-.533.792-1.335.751.501 3.072.19 6.54.403 9.018-.272.732-1.066 1.451.056 1.784-.973.316-.325.229-.355.585-.947.545.163.445.023 1.066-.021.286-.416 2.487.05 3.292-.46 1.008-.21 1.219-.462 2.123.354.127.439.606-.05.544-.266-.449-.482 0-.296.219.478.362.093.276-.189.385.07.203.043.412-.262.355.304.743-.068 1.78-.269 2.511-.409 1.622-1.737 2.68-1.132 4.7-.964.074-.947 1.552-1.694 2.215-.136.335.618 1.332-.196 1.043-.528.335-.169-1.016-.893-.349-.189-.272-1.701-1.279-1.471-.415.36 1.143-1.729.453-2.511.501.653.645-.712.288-.92.558-3.174.999-8.036-.014-12.488.885-19.845 1.917-40.557 1.929-60.811 1.699-10.405.057-20.025-.416-30.756.243-5.024-.038-9.484.004-14.754-.236-3.169-.017-7.888.838-11.545-.189-2.04 1.111-5.703-.241-8.141.435-2.015-.391-5.563.549-7.284-.173-1.436.062-6.485.859-9.34.142-3.374.539-6.735-.337-9.928.153-1.656-.084-3.485.2-5.082-.216-.598.367-2.297.478-2.305-.257-1.584-.265-1.442.71-2.584.385-1.354-.559-4.919.957-5.51-.695-.482-.548-.362 1.103-.97.578-1.055-.473-2.258-.089-3.291-.439-.819 2.131-6.271-.975-7.666.612-.671-.479-2.437.369-2.863-.511.415.019 1.893.029 1.236-.618-.889-.425-1.25.633-1.823.8-.621.023-.133-.395-.392-.548-.644.455-2.771.824-3.537.252 1.881 1.153-.104 1.113-1.152-.906-1.077.568-.675-.129-.824-.405a32.955 32.955 0 00-2.019 1.867c-.256.003-1.651-.004-2.229.036-.683-.02.079-1.129.644-.837 2.456 1.093 1.877-.777 3.444-1.451-1.651-1.372-1.066.647-2.053.983-1.002.397-2.454.742-3.348 1.147.641-.694.908-.642.173-1.267-.93-.312-.787-1.504-1.684-.541-.068.675-.297 2.996-1.374 1.348-.177-.139 1.244-.719.448-.634-.435.03-1.8-.63-1.132.392.302.621-.748.369-1.226.432-.149.827-.578.262-1.265.508-.01-.01-.199-.276-.209-.289.867-.033.505-.654-.043-.462-.714.407-3.771 1.193-1.229.033 4.199-1.79-2.124.17-2.993-.142-3.214-1.087 3.298.263.203-1.23-.546-1.456-2.654 2.053-3.03.675-1.353.13-2.898-2.391-3.554-.637 1.416.889-1.208.302-.727-.05-3.175-1.541-9.101.04-13.156-.336-6.012.796-12.649-.544-17.869.455-.521-.972-.548-.288-1.089-.355-.419-.96-1.42.261-1.983.026-.927-.211-3.008-.169-4.397-.083-1.76.018-3.291-.088-4.913-.262-.63-.211-1.685.664-1.8-.116.917-.326-.156-.462-.408-.296-.3.305-.674.227-.714-.19-6.611-.492-14.524-2.204-20.201-3.556-.671-.456 1.949-.255.651-.894 2.242-1.391 1.419-1.461-.289-1.511-.784-.479 1.033-3.385-.408-2.169-.406-.369-.598-.64-.059-1.09-.535-.243-1.252.144-.85-.728-1.919-2.141 3.185-2.187-1.11-2.989.316-.878.938-1.119 1.658-1.255.296-.04.262-.137-.073-.213-.297-.529 1.531-.727.757-1.209-3.115-.74 3.821-2.272 3.886-.492 1.053-2.408 1.88-3.36 4.701-3.131.245-.781 1.564-.101 1.66-.868.402.083.917.581 1.033-.119-1.31-8.554-1.28 7.252-2.812-5.331-.948-.794-1.057.601-1.067 1.411-1.013-2.136-.883-4.035-2.006-6.048-1.276.573.428 2.959-.323 4.291-.657-2.162-.531-4.762-.89-6.985-1.079.627-1.536-.37-.826-1.282-4.372-4.101-1.561 7.411-.852 11.147-3.301-5.06-1.515-14.458-5.148-17.496-.046.003-.365.392-.454-.057.926-.109-.131-.937.296-1.631 2.67-.619 1.065-3.209 1.631-6.125.508 1.434.523 3.717.919 4.707.505.947 1.944-1.55 2.388.343.424-7.03.703-121.367-2.76-92.449-3.363-8.719 6.757-28.813-4.597-28.557-1.482.154-3.819.046-2.832-1.909-1.877.684-.844.047-1.422-.86-.784-.478.133-.731.432-1.265-1.576-.236-.373-1.098-1.885-2.428-.118-.09-.776-.588-.882-.665.498-1.255-.548-.598-.306-1.219-.018-.785.278-.988.35-1.697-2.743-3.624 7.177-4.099 8.671-5.596 1.887.18 3.754-1.454 5.627-.651.721-3.317 1.452-6.033 1.044-.84 2.537-.072 1.818-10.273 2.749-3.947 1.219-.72.352-1.693.933-2.504 1.262 5.342.792-1.145 1.574-2.966.179 2.386.023 6.021.863 7.828 2.163-3.443-.355-9.063 2.973-11.688.521 3.572 1.585 6.847 2.344 10.383 1.831-.816 3.719-1.556 5.313-1.212 1.383-1.745 1.225-1.197 2.949-1.265.682-1.474.609-2.671.894-.319 2.713-.982 5.133.081 5.081-3.418-.714-.49-1.66.312-2.311.399-.545.033-1.551-.611-2.073-.276-.576.756.88-.039.531.707-2.255.82.522-2.223-2.142-.794.89.88-1.362 1.415-1.634 1.206.079-.893-1.157-1.302-2.083-1.369.389-2.331 1.083-.833 2.179-1.391 1.401-.332 1.567-1.464.097-1.259-.139 1.161-1.15.098-1.508.684-1.06.339-1.193-.793-1.777.612-.378-1.448-2.632.578-1.723-1.448.275.076.853.239 1.126.319 2.091-.069-.192-2.363.196-.913-.416 1.016-1.269-.463-1.534-.675-2.518.381 2.012-.776 2.511-.896.216-.044.754-.293.472-.552-.063-.72 1.75-.425 2.195-.432 1.915 2.309-.515-1.905 1.246-.425.345.68 1.238-1.386 1.477-1.441.236.209 1.056.219 1.435.342 1.146.05.345-.89 1.01-.751 1.887.581.402-.691 2.594-.518 1.126-.189-.528-1.644 1.926-1.402.754-.555 1.046-1.993 2.312-1.382 2.053-.052 5.394-2.679 7.131-1.267-.01.646.811.443 1.249.41.771-.764.962-2.56 2.245-1.84-.413 1.404-.51 1.792.848.485 1.424.827 1.273-1.14 2.242-1.316 2.919.105 1.117 1.811 4.098.488 7.135-1.185.667-.505 5.078-2.949 5.444-.687 10.74-2.542 15.714-3.162.874-1.34 2.248.661 2.518-.358.5-1.09 2.177.078 2.919-.771.252-.246.621-.03.561.279.74.221 1.483-1.644 3.285-.527.604-.499 1.02-1.137 1.644-.237 1.547-1.402 5.867-1.707 7.636-1.954.708 1.013 1.06-1.23 2.694-.726.817 1.045-1.395 1.2-1.574 1.564.224.778 3.175.19 2.199-.416-1.11-1.777 3.33-2.1 4.334-1.874.432.891.718-.66 1.429-.634.365-.027 1.485-.339 1.694-.744.484.081.985 1.082 1.471.335.526-.2 1.085 1.238.914.08.106-.289.319-.279.605-.183.691.236.09-.355.392-.415.352-.09.737-.239 1.249-.163 1.223-.533 3.056-.571 4.736-.894 3.21-1.103 6.848-1.314 10.227-2.009 10.85-2.197 21.387-4.133 32.36-6.612 1.933 1.298 3.062-.966 4.494-.446 3.136-1.541 5.864-.842 8.22-1.514 3.03.192 5.729-2.594 8.881-1.01-.552-2.139 4.725-1.098 6.556-2.017 1.16-.038 1.234-.337.771.665 1.594-2.377 4.433-.751 6.693-2.288.409-.154 2.531.894 2.232-.336 1.396.072 3.827-.449 4.982-1.066.592.858 1.21-.763 2.402-.102.743.49 1.987-1.565 2.262-.375 2.418.196 1.096-.229 2.614-1.01 2.171-.082 3.753-.239 5.606-.598.508.761.95-.684 1.252-.627.272.455 1.063-.262 1.319-.156.1.322.598.372.628.126.342-1.325 1.779.113 2.674-1.007 2.201.878 3.114-.22 5.298-.61 1.887-.068 5.184-.487 6.43-1.455.511.564 3.758.08.956.89-.583-.719-3.81 1.178-1.973.959.126-.162.715-.741 1.086-.504.438.279.704.817.844.156 1.002-.43 3.411.329 2.966-1.126-.131-.251-1.305-.222-.991-.474.678-.392 1-1.103 1.727-.947 1.115.874 3.669 1.663 1.129-.016.216-.966 3.726.078 4.869-1.347 1.026.659 3.727-1.005 3.99.326-.03.253.149.233.245-.115.858-1.096 1.511-1.159 2.956-.857.711.119 1.847-.824 2.099-.316-.698.579-.487 1.04.664 1.316.531-1.19-.836-2.814 1.289-1.621.701 1.523 2.362.374 2.328-.798.286.113.957.548.456.744-.674 1.293.738.357.986.269.775.336 1.143-.462 2-.209.555-.825 1.783-.219 2.388-.765.478.858.867.226 1.422-.106 2.096 1.039 1.663.005 3.158-.15 1.501.443 2.686-1.909 3.966-.707.103-1.727 1.295-.621 1.787-.342-.023-.765.689-.242 1.046.027.023.315-.365.853.339.88.395-.495.731-.515.93.037 1.154-.253-.328-.906.491-1.362 2.735 1.819-.746 1.235-1.299 1.986 2.518-.125 1.48 3.306.435 2.492-.394-.958-1.568-.593-1.212.196.715.225.011.421.26.78 1.118.325 2.531-.255 3.038.715.486-.134.027-.512.675-.416 1.774.528-.017.488-.196 1.05.513 1.229 2.76.685 3.298.243-.261-.408.775-2.271 1.667-1.993.276-.99.346.195.698-.004.482-.814 1.807.223 2.471-.04.706-.509 2.276-.956 3.085-1.305-.176.774-.681 1.359.558 1.78-.032-.542.664-1.715 1.372-1.106.11.153.13.332.365.076.379-.521.94.103.893.511-2.4 3.339 8.253.74 5.845 5.252-.846.584-1.973-.047-3.218.315-1.946.608.882 1.044 1.335 1.425.539-.89.411-.633 1.119-.452.229 0 .073.677-.279.817-1.076 1.319.382 1.139-.289 2.122-.83 1.052-.91 1.183-.601 1.867a1.03 1.03 0 00-.98.897c1.371 1.553-2.34 3.83-.885 6.579 2.584-.223-4.077 2.687-3.784 2.372-4.916.179-9.662 2.495-14.993 2.462-4.521 1.599-2.123 4.145-3.979 1.637-.765-.037-1.073 1.674.011.863.302.187.211 1.293.634.585-.403-.358 1.081.648 1.358-.412.634-1.614 2.504.107 2.548-1.022.681-.193.246.193.658.325.457.14.802.146.092.226-.747.934 3.231-.513 4.322-.469.902.217 1.801-.004 1.012 1.482-.75.056-2.437.302-.664.969 1.034-.032 2.526-1.725 2.435-.073-2.327-.614-5.266 3.06-1.88.792 2.999.872 2.204.428 2.623-.944-1.27.279.457-1.417.874-.458-.876 1.857 1.33 1.164 1.498 2.275-.916 1.043.034.392.8.262 2.01.945.554-.035 3.355-.604-3.152.335 1.356-.953-1.426-.476-.185.093-.86.654-.989.402-.801-.229-.95-.589-.156-1.362.236.588.306.691.907.747-.382-1.931 2.72-.171 3.763-1.751.412 2.105 1.893-1.665 2.122 1.236.652.186 3.459-.783 4.023-1.023-.71-.372-3.001-.601-2.541.447-2.901-.924 2.314-1.33 3.431-2.04 1.021 1.245 4.013-1.755 3.08 1.223-.064.272.418.415.584.203.625-1.99.723.059 2.076-.382.936-.024 1.559.296 2.381-.581.734.365-.08.754.239.993 1.129-.02.335.661.943.9.99.193-.764 1.006-.797 1.448-.136.697.654.598 1.043.322-.379-1.355 1.448-1.04 1.867-.538-.125.413-1.298 1.189-1.365 1.644-.01.165-.636-.226-.835-.12zM87.692 116.754c.09.007.169.007.242.007-.198-.058-.12-.041-.242-.007zm-2.952-.196c.731.25 1.279.259 2.109.169-.293-.863-1.46-1.087-2.109-.169zm-3.694.252c.983.044 1.976.059 3.066-.073-2.12-.088-.062-1.103.455-.764.262-.373-1.34-.46-1.634-.724-.428 1.137-.982-.264-1.887 1.561zm3.448-.059c.037.046.11.037.13-.103l-.13.103zm-2.976-1.724c.318-.175-.336-.806-.664-.754-1.027.232.149 1.003.664.754zm-5.364-40.405c.427.061.559-.231.707-.435.078-1.207-3.505.377-.707.435zm-2.205-.04c-.531-.335-.226-.731-1.066-.352-.934 1.93.332 1.279 1.066.352zm19.054 208.414c.04-.555-2.337-.805-2.036-.491.55.005 1.603.797 2.036.491zm3.295-.625c-.442-.014-2.457-.159-2.328.638.695-.033 5.455-.904 2.328-.638zm6.875-.256c-1.836-.137 1.722.724 2.079.296.515-.873-1.743-.113-2.079-.296zm8.483 1.621c-.118-.753-.168.942.096.787.259-.001-.035-.517-.096-.787zm11.794.479c-.325.023-2.962-1.753-1.923-.319.547.117 1.627.916 1.923.319zm111.901-165.259c.031.419.868.371 1.139.731 1.974-.09-.865-.878-1.139-.731zm-4.052.654c.739-.013 3.045.328 3.182-.671-.749.229-2.581.289-3.182.671zm-5.148.226c1.708.158-1.586-.733-1.883-.299-.485.867 1.557.126 1.883.299zm-7.676-1.621c.108.755.152-.941-.086-.787-.236.017.03.515.086.787zm-10.672-.478c.332.27 1.557.518 1.886.967.46-.491-1.67-1.635-1.886-.967zM87.39 170.411c-2.687.281-5.177.072-7.812.298-.123-.159-1.146-.501-1.172-.335.126.11.103.229-.276.083-.996 1.048-2.149-.171-3.51-.026-.04.036-.399.385-.429.412-2.132-.611 1.139.887-2.953.319-1.463-.721-2.44.476-3.866.156-.45 6.272.008 66.674-4.228 44.123-2.324-12.972-1.871 13.499-2.528 18.99 5.47.724.52-8.557 2.446-12.295.726 1.687.185 3.761 1.717 4.825-.655 4.476-.286 11.179 1.435 3.405-.39 5.113 1.447 3.528 5.556 3.374 4.183.291 8.932-.469 13.331-.226 20.851-.098 42.172-.579 61.764-.372 15.208.453 31.957-.636 45.267.415 21.068-.805 45.72-2.367 68.839-1.967 2.239-.886 4.332.916 4.115-1.876-.545-.707.057-.899-.139-1.651-.138-.437.466-1.409-.196-1.74.616-1.329.092-2.667.13-4.275-1.1-.241-.135-1.578-.051-1.953-.191-.397-.422-1.277-.089-1.677-.291-.362-.17-1.879.212-2.182-.775-.34.234-1.092-.571-1.657.351-.37.945-.14.172-.857.286.02.356.014.153-.013.193-2.588.268-6.055.1-8.426.551-2.112-.456-4.179.052-6.115-.468-2.845.364-5.561-.125-9.054.592-.422.183-.641.455-1.249-.44.077-.391.203-.585-.096.9-.04.189-.918-.086-1.07-.032-.33.577-.272.421-.651-.157-.491.749-.932-.15-.787.729-.83-.396-1.54.442-2.458-1.103-4.757-.521-10.161-1.717-15.471 1.914-1.499-4.961-.442-5.503-.353-3.711.363-6.574-.11-10.227.509-11.549-.308-22.846.565-34.024-.03-2.424.991-6.132-1.011-8.426.933-3.014-1.247-4.775.26-7.666-.641-15.937.153-38.755.024-53.813-.123-18.048.338-37.265 2.006-56.465 1.784zM95.843 69.67c-1.656.313-.37 1.429.16.877.182-.269.129-.99-.16-.877zm42.447-7.955c.013-.784-.581-.156-.824.106-2.104.654.19.619.824-.106zm39.256-7.851c-.122-.026-.831-.154-.933-.183-1.254.855 1.059 1.384.933.183zm6.493-1.415c-.09.54.726 1.26 1.119.382.987.338-1.255-.671-1.119-.382zm5.66-.11c.09.01.458.053.541.06.465-.787-1.85-.817-.541-.06zm13.88 44.829c-.208-1.03-1.278-1.457-1.249-.176-1.096.599.047.8 1.249.176zm22.409-52.631c-.282.183-1.06.219-1.172.339-.221 1.614 2.322-.504 1.172-.339zm8.569-1.189c-.193-.787-1.322-.037-.565.511.771.283.462-.099.565-.511zm83.114 211.622c-.148-.527-3.302.153-1.232.844l.86-.12c1.638.755.537.392 1.355-.133.262-.076-.79-.279-.983-.591zM291.423 65.236c1.72.128-.482-.857-1.033-.528-1.423.721-.033 1.81 1.006 1.269.106-.409-.407-.366-.671-.429-.284-.507.4-.41.698-.312z" />
</clipPath>
</defs>
<path class="cl" clip-path="url(#msk6)" fill="none" stroke="#F0F" stroke-width="62.11" stroke-miterlimit="10" d="M325.748 49.306L30.463 113.249 42.42 261.412l246.417-2.599 6.759-110.213-287.487-9.877" />
</svg>
<!--7-->
<svg class="mask mask07" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300">
<defs>
<clipPath id="msk07">
<path id="prefix__a" d="M56.701 292.351c3.425.838 3.113-4.094 5.33-5.179 1.6.779 2.565 1.828 2.879-.068 1.13-.738-.735-1.351-1.288-1.509.938-1.568 2.474.569 2.828-.446-.979-.551-.246-1.964-1.198-2.727-.187-.726 1.645-1.592.566-2.239.597-.742 1.443-.702 2.824-1.26.219-.727.752-.663 1.441-.617.135-2.189 5.181-.603 4.422-2.578 2.883-1.663 6.293-1.652 9.377-3.707 22.859-6.846 46.024-18.103 65.025-24.406 41.88-13.531 88.407-27.764 125.74-45.39 7.644-2.677 12.976-6.985 20.433-10.328-.886-.097-.102-1.443.304-.902.972 1.578.969-1.345 1.946-.547 1.204-2.022 1.783-1.886 1.112-4.901-.535-.124-1.096.391-.778-.861-.431.378-.769.177-.846-.267-.838-1.874-3.662-2.193-4.057-4.578-.503-.778-2.341 1.192-1.902-.242.234-.993-.408.031-.828-.499-.061-.955-.167-2.84-1.301-1.441-1.115-3.618-1.758.012-2.634-2.302.544-.096 2.168-.219.838-.997-3.449 2.913-2.128-1.56-4.836.628-1.899-2.081-4.548 2.396-3.89-1.913 2.715-2.452-3.549-1.351-.059-2.614 1.815.101-1.115-2.779-1.576-2.888-3.676-3.329-2.473-3.656 1.271-4.879 1.892-3.099 4.608-1.706 3.803-7.088.83 1.755 3.111-.083 4.001-.897 1.22-.852-1.855-.485-1.003-1.676.811-.635-.035-.951.182-1.407 1.156-.038 1.113-3.371-.388-1.977-1.264.797.14-2.096-.137-2.459-.065-.32-1.018-1.049-1.004-1.664-.328-1.146-.631 1.118-1.055-1.262-1.14-.176-.8.506-1.083-1.416.002-3.452-3.792.797-1.549-3.519.248-3.652-.724.088-4.991-1.598-1.323 1.113-.457-1.272-.433-1.687.166-1.457 1.382.629 1.673-.239.002-1.31-.597-1.581-.962-2.224.383.018 1.116-.175.404-.476 2.827-6.977-4.201-10.328-8.847-14.582-2.672-5.323-10.278-7.138-15.09-9.961-.258-.267-2.274-2.049-2.128-.611.079.231-.967-.886-1.279-.225-2.225-2.076-4.304-2.317-6.535-4.083-17.224-8.741-35.592-18.761-52.252-26.052-35.492-20.965-74.227-42.097-112.882-62.269-.543.944-2.93-.417-2.965-1.656-.607 2.405-10.479-5.33-10.077-3.321C56.253 6.482 49.576 5.487 42.46 2.34c.39 1.169-1.237.764-.815-.413-1.267-.119-2.428.548-3.08-.533.061 1.547-3.371-.183-4.634.347-2.49 2.547-9.105-.74-8.453 1.986-7.137-1.788-3.816 13.509-8.995 14.179 5.072.866-4.1 3.129-1.871 1.165-2.537-.413.652-1.736-1.223-2.047-2.564 2.632.74 1.419-.648 2.57-.98-.109-.521.848-.825 1.345-.77.303-4.31-1.665-1.486-1.542-1.411-6.864-7.717 7.702-6.258 10.571-.641 4.185.474 9.564-.259 13.443 1.882 3.954.042 4.753 1.823 9.045-.718.625-1.016-.816-1.647-.478-.969 1.722 3.491-.205-.014 2.792 3.933 1.25-1.676 2.474 1.572 3.813 1.46 1.192-.396 1.22-.951 2.246.847.477.629 1.12-.112 1.442-.422 4.342 1.836.959 2.816 2.016-.091.763-1.837.585-2.129 1.104 2.562 1.528-.072 1.685-.55-.034-2.273-3.098-.531 1.453 1.434 2.085.317.527-3.533-1.051-2.353.731.265.082 1.191.283 1.291.475-.461.07-2.26.81-1.491 1.508 1.557-1.598 1.218 1.073-.194.956 1.672 1.029 4.255 1.97 2.51 3.824-1.204 1.487.487-1.038-1.019-.953-1.993.764 2.282 2.977-1.422 3.218-.201 1.171-1.145 2.248.252 2.953-.272.791-.849 1.546.107 2.236-3.172 1.528 1.825.995.061 1.927-.879.213-1.211.346-.342.847.988.543-.585.739.121 1.048 2.516.374-2.798.627.49 3.062-2.212-.006-.386 3.821-1.619 5.616 2.113 1.917.676-.028.268 2.884-.411 1.145 3.677 2.04-.021 2.71-.266.533.694.975-.477 1.189.358 14.22-.255 31.465-.737 43.914 1.326.865-1.124 1.088.621 1.648.936.237.033.209-.376.272-.753.935-.706 3.918.325 4.629-1.148 6.261-.963 15.433-.595 21.607.725 34.221.476 79.019 3.103 114.339 1.139 2.225 1.107 2.651.604 4.631.977-.366 1.707 1.266 2.389 1.817 2.45.352-.418.383 1.494 1.912 5.236-.076 3.735-1.227 6.789 2.161 3.436-1.128-2.478-2.492.561-2.683 1.649 1.289.926 1.273 2.965.991.973-.99.909-.075 2.082-.52-1.451-1.305-.033-2.933.862-3.713-2.567-1.455-.047-.587 1.333-.652.88-.886-1.502-2.71.552-2.849-.532-1.004-.287-5.973-2.15-3.588 2.383-.273-.846 5.856-.471-1.469 3.998-.158-.415-.733 2.145-1.916-1.068-.736.036-2.842-.173-3.229-.826-.292-2.11-.6.101-.928-.821-1.461-2.889-.318-1.717.796-.134 2.871-.731-2.094-1.066 1.168-.897-1.34-.196-.585.068-1.313-.787-.568-1.465-1.424-.071-1.837-.203-1.269-.501-1.419.556-.681 2.615-.53.147-1.499 4.135-.926.482-1.94-1.967-.269-2.981-1.565 3.027-2.323-.833-2.422 1.026-3.514 2.091.514.088 4.225 2.069 3.667.373-.542-1.239-4.098.845-2.392 3.562 6.286 1.636-7.152 2.764-3.165.225-.363 1.736-.863.669-1.102-.148-1.062 4.382-1.195 1.895.209 1.291 1.339 1.146 8.321.649 10.875 1.231 1.946-.374 7.785 3.535 7.215 5.911.297 10.118 3.924 15.532 5.145 2.446 1.528.094-1.071 2.52-2.243 2.089.694-1.93 5.616 2.532 3.967zm134.886-132.127c.31.704-.836-1.178-.527-1.067.217-.097.406.763.527 1.067zm-90.038-54.897c.198.214.26 1.127.601 1.442 1.757 2.162-1.908-.647-.601-1.442zm-7.954-3.721c-.101.362-.138 1.115-.352 1.02-.284.072.663-2.01.352-1.02zm-5.843-5.789c.49.285 2.882 1.04 1.05 1.375-.135-.404-2.548-2.23-1.05-1.375zm-7.164-3.384c.894.023 1.859.68 2.531 1.129-.33.198-4.597-.902-2.531-1.129zM78.6 90.904c.041.556.797.944.602 1.469-.283.072-2.392-2.306-.602-1.469zm-7.517-1.492c.012-.006.063-.046.071-.048.265.32.141.329-.071.048zm-1.396 7.406c-.91-.557.469-.426.495-.827.922-.292 1.21 1.887-.495.827zm2.319 40.33c-.96-.868-.318-2.832.055-.774.475.327.87 1.016-.055.774zm.933 36.365c.465-.399.602-.465 1.21.197-.207 1.232-2.086.52-1.21-.197zm.298 8.114c-1.292-.68.201-1.093.853-.919.469-.058-1.58 1.711-.853.919zm-.654 4.696c.031-.485 1.085-1.062 1.094-.552 0 .285-.487.947-1.094.552zm26.22 3.655c-7.342-.298-15.035 5.88-22.636 6.224-1.716 1.799-.129-1.78-.201-2.946-.156-.695-2.256-.348-1.722-1.328 2.625 1.405.488-5.383 1.346-6.798-2.682.003-.53-.856-.079-1.547.233-2.257-2.119-7.808-.219-8.264-.1-6.356-1.159-11.597-.288-18.231-1.84-11.249-.363-29-2.261-39 .882-.806-1.867-.546-.244-.94 1.02-.452-.545-.997.996-1.437.881-.759-2.1-3.579-.9-3.424 1.774-5.203-1.479-3.32-2.886-5.412 2.172-2.783.727 1.527 3.11.669 1.128-1.776-2.267-1.811-.592-2.502.796-.354.312-3.145-.049-4.564-.783-.896 1.406-.982.221-1.788-1.585-1.199-.203-.829-.173-1.798-1.491-1.144 1.599-2.961-.941-3.522-.588-.692 1.453.012.834-.798-1.116-.966.826-1.745.027-2.594 3.761-1.719 2.042 3.557 1.153.628-1.005-.433-.288.616.001 1.021.268.953 3.381.163 4.028 1.475-.874.048-4.158-.161-2.047.684 1.222.093 2.245-.49 1.104.898 1.829.387 2.379.678 2.739-.841.733 1.033 1.57.738.159 1.387.374 3.573 2.453-4.594 2.794.198.468 1.006.053 1.2-.757 1.655 1.368-.294 3.371.889 4.359-.886 2.416-.837-.365 2.165-1.637 1.912-.588-.658-1.46-1.937-1.93-.419 1.634 1.821 3.275.341 4.553-.284-.033.385-.728 1.102.433.869.276.467-.384 3.775.851 2.471-1.446-1.981 1.298 1.53 2.496.376-.535 2.1 1.063-.369 1.915.718.244.986-.867.534-1.317.215-.276.756 2.124 2.193 2.963 1.523.667.781 4.432 4.561 5.342 3.262.185-.601.692.135.669.484 1.031.247 2.018 2.103 2.605.891 21.124 14.708 46.625 26.522 70.39 40.015 3.683 1.337 6.214 4.231 10.479 5.976 6.105 3.565 9.603 4.267.065 5.998.178.613.428 1.554-.591.835-.704-.279-1.406 1.245-2.177.447-.642-.345-.066 2.243-1.041.511-4.463.052-6.888 3.668-10.751 2.665-23.156 10.016-47.062 14.71-70.193 25.316zm83.555-26.823c-1.319.254-2.133-.837-.302-.465 1.194-.046 1.761 1.709.302.465z" />
</clipPath>
</defs>
<path class="cl" clip-path="url(#msk07)" fill="none" stroke="#F0F" stroke-width="90" stroke-miterlimit="10" d="M38.933 252.004l-1-217 229 129z" />
</svg>
</section>
<div class="redirect-notice">
<div class="typewriter">页面将在3秒后自动跳转...</div>
</div>
<div class="footer">
<a href="https://beian.miit.gov.cn/" target="_blank">
闽ICP备2025097315号-1
</a>
</div>
<script>
// 更可靠的跳转脚本
window.onload = function() {
setTimeout(function() {
window.location.href = "https://tengyuan.icu";
}, 1500);
// 添加点击任意位置跳转
document.addEventListener('click', function() {
window.location.href = "https://tengyuan.icu";
});
}
// 禁止右键菜单
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
});
// 禁止快捷键 Ctrl+U 和 F12
document.addEventListener('keydown', function(e) {
if (e.ctrlKey && e.keyCode === 85 || e.keyCode === 123) {
e.preventDefault();
}
});
</script>
</head>
index.html
style.css
index.js