添加项目

master
bicijinlian 4 years ago
parent 4aa8641fdd
commit 0d7075e1de

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30717.126
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SnapSvgStudy", "SnapSvgStudy\SnapSvgStudy.csproj", "{846B110A-0CA4-441A-81AC-FE133017F636}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{846B110A-0CA4-441A-81AC-FE133017F636}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{846B110A-0CA4-441A-81AC-FE133017F636}.Debug|Any CPU.Build.0 = Debug|Any CPU
{846B110A-0CA4-441A-81AC-FE133017F636}.Release|Any CPU.ActiveCfg = Release|Any CPU
{846B110A-0CA4-441A-81AC-FE133017F636}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {066532D5-6F49-45CE-BA76-9F17859F8DA9}
EndGlobalSection
EndGlobal

@ -0,0 +1,39 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SnapSvgStudy.Controllers
{
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
private readonly ILogger<WeatherForecastController> _logger;
public WeatherForecastController(ILogger<WeatherForecastController> logger)
{
_logger = logger;
}
[HttpGet]
public IEnumerable<WeatherForecast> Get()
{
var rng = new Random();
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
TemperatureC = rng.Next(-20, 55),
Summary = Summaries[rng.Next(Summaries.Length)]
})
.ToArray();
}
}
}

@ -0,0 +1,26 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SnapSvgStudy
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}
}

@ -0,0 +1,30 @@
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:55655",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "Index.html",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"SnapSvgStudy": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "Index.html",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\Scripts\jQuery\" />
</ItemGroup>
</Project>

@ -0,0 +1,50 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SnapSvgStudy
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}

@ -0,0 +1,15 @@
using System;
namespace SnapSvgStudy
{
public class WeatherForecast
{
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string Summary { get; set; }
}
}

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}

@ -0,0 +1,10 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>改变状态</title>
<script src="Scripts/SnapSVG/snap.svg.js"></script>
</head>
<body>
<div id="SvgShow" style="border:1px solid red;">
</div>
<div style="margin-top:20px;border:solid 1px blue;">
<input id="btn_start" type="button" value="启动" />
<input id="btn_stop" type="button" value="停止" />
</div>
</body>
<script>
//加载现在svg文件
Snap.load('/Svgs/towerd.svg', function (g) {
//显示
Snap('#SvgShow').append(g);
});
document.getElementById("btn_start").onclick = function () {
Snap('#SvgShow').select("#SVG_ani").attr({ style: "display:block;" });
};
document.getElementById("btn_stop").onclick = function () {
Snap('#SvgShow').select("#SVG_ani").attr({ style: "display:none;" });
};
</script>
</html>

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>SnapSvg.js 类库例子</title>
</head>
<body>
<div>
<table style="width:750px;" border="1" cellpadding="0" cellspacing="0">
<caption>SnapSvg.js 类库例子</caption>
<thead>
<tr>
<th>例子</th>
<th>连接</th>
<th>备注</th>
</tr>
</thead>
<tr>
<td>改变状态</td>
<td>
<a href="ChangeState.html" target="_blank">改变状态</a>
</td>
<td>ajax加载svg文件操作显示。</td>
</tr>
<tr>
<td>Svg字符串</td>
<td>
<a href="SvgString.html" target="_blank">SvgString</a>
</td>
<td>操作Svg字符串</td>
</tr>
<tr>
<td>Snap.load</td>
<td>
<a href="SnapLoad.html" target="_blank">SnapLoad</a>
</td>
<td>ajax加载svg文件操作显示。</td>
</tr>
<tr>
<td>SnapImages</td>
<td>
<a href="SnapImage.html" target="_blank">SnapImage</a>
</td>
<td>使用Image方法加载svg文件。</td>
</tr>
</table>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,22 @@
<html lang="zh-cn">
<head>
<title>SnapSVG 例子</title>
<meta charset="utf-8" />
<script src="Scripts/SnapSVG/snap.svg.js"></script>
</head>
<body>
<div id="svg01" style="border:1px solid red;">
</div>
<script>
//引入已有的svg图片
var mycanv = Snap(500, 500);
mycanv.image('/Svgs/demo.svg', 10, 10, 100, 100);
</script>
<div style="margin-top:20px;border:solid 1px blue;">
第2个Div内容
</div>
</body>
</html>

@ -0,0 +1,36 @@
<html lang="zh-cn">
<head>
<title>SnapSVG 例子</title>
<meta charset="utf-8" />
<script src="Scripts/SnapSVG/snap.svg.js"></script>
</head>
<body>
<div id="svg01" style="border:1px solid red;">
</div>
<script>
//加载现在svg文件
Snap.load('/Svgs/demo.svg', function (g) {
//操纵
g.select("svg").attr({
width: "20.637mm",
height: "20.637mm"
}).click(function () {
alert("宽:"+this.attr("width")+"高:"+this.attr("height"));
});
//显示
Snap('#svg01').append(g);
});
//引入已有的svg图片
//var mycanv = Snap(500, 500);
//mycanv.image('/demo.svg', 10, 10, 100, 100);
</script>
<div style="margin-top:20px;border:solid 1px blue;">
第2个Div内容
</div>
</body>
</html>

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>SnapSvg.js 类库例子</title>
<script src="Scripts/jQuery/jquery-1.12.4.min.js"></script>
<script src="Scripts/SnapSVG/snap.svg.js"></script>
<script>
$(function () {
});
</script>
</head>
<body>
<div id="SvgShow"></div>
</body>
</html>

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>改变状态</title>
<script src="Scripts/SnapSVG/snap.svg.js"></script>
</head>
<body>
<div id="SvgShow" style="border:1px solid red;">
</div>
<div style="margin-top:20px;border:solid 1px blue;">
<input id="btn_start" type="button" value="启动" />
<input id="btn_stop" type="button" value="停止" />
</div>
</body>
<script>
//加载现在svg文件
Snap.load('/Svgs/towerd.svg', function (g) {
//显示
Snap('#SvgShow').append(g);
});
document.getElementById("btn_start").onclick = function () {
Snap('#SvgShow').select("#SVG_ani").attr({ style: "display:block;" });
};
document.getElementById("btn_stop").onclick = function () {
Snap('#SvgShow').select("#SVG_ani").attr({ style: "display:none;" });
};
</script>
</html>

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="84.637mm" height="84.637mm" version="1.1" viewBox="0 0 299.89602 299.89599" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="f" x="-.00965" y="-.015863" width="1.0193" height="1.0317" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.96273933"/>
</filter>
<linearGradient id="h" x1="321.34" x2="321.34" y1="481.87" y2="377.28" gradientUnits="userSpaceOnUse">
<stop stop-color="#666" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="i" x1="319.77" x2="319.77" y1="481.87" y2="523.94" gradientUnits="userSpaceOnUse">
<stop offset="0"/>
<stop stop-color="#b3b3b3" offset="1"/>
</linearGradient>
<linearGradient id="j" x1="316.18" x2="312.19" y1="300.02" y2="695.52" gradientUnits="userSpaceOnUse">
<stop stop-color="#f60" offset="0"/>
<stop stop-color="#ffb380" offset="1"/>
</linearGradient>
<filter id="g" x="-.012" y="-.012" width="1.024" height="1.024" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.4643359"/>
</filter>
</defs>
<g transform="translate(-166.24 -296.51)">
<path d="m185.99 300.02c-8.9977 0-16.242 7.2445-16.242 16.242v260.38c0 8.9977 7.2445 16.242 16.242 16.242h260.38c8.9977 0 16.24-7.2445 16.24-16.242v-260.38c0-8.9977-7.2425-16.242-16.24-16.242h-260.38zm0 3.7324h260.38c6.9957 0 12.51 5.514 12.51 12.51v260.38c0 6.9957-5.514 12.51-12.51 12.51h-260.38c-6.9957 0-12.51-5.5141-12.51-12.51v-260.38c0-6.9957 5.514-12.51 12.51-12.51zm14.098 8.3945c-10.026 0-18.213 8.1872-18.213 18.213v232.19c0 10.026 8.1872 18.213 18.213 18.213h232.19c10.026 2e-5 18.213-8.1872 18.213-18.213v-232.19c0-10.026-8.1872-18.213-18.213-18.213h-232.19z" fill="#2b1100" filter="url(#g)"/>
<path d="m185.99 300.02c-8.9977 0-16.242 7.2445-16.242 16.242v260.38c0 8.9977 7.2445 16.242 16.242 16.242h260.38c8.9977 0 16.24-7.2445 16.24-16.242v-260.38c0-8.9977-7.2425-16.242-16.24-16.242h-260.38zm0 3.7324h260.38c6.9957 0 12.51 5.514 12.51 12.51v260.38c0 6.9957-5.514 12.51-12.51 12.51h-260.38c-6.9957 0-12.51-5.5141-12.51-12.51v-260.38c0-6.9957 5.514-12.51 12.51-12.51zm14.098 8.3945c-10.026 0-18.213 8.1872-18.213 18.213v232.19c0 10.026 8.1872 18.213 18.213 18.213h232.19c10.026 2e-5 18.213-8.1872 18.213-18.213v-232.19c0-10.026-8.1872-18.213-18.213-18.213h-232.19z" fill="url(#j)"/>
<path d="m209.98 371.28c-4.806 0-9.1387 1.3017-12.129 4.3555-2.9902 3.0538-4.2305 7.4016-4.2305 12.268v30.586c1e-5 5.3403 1.9742 10.265 5.7012 13.846a3.9666 3.9666 0 0 0 0.0215 0.0215l39.98 37.85v21.309h-17.203v-24.07a3.9666 3.9666 0 0 0 -3.9668 -3.9668h-20.566a3.9666 3.9666 0 0 0 -3.9668 3.9668v32.783c1e-5 4.8412 1.2467 9.1749 4.2402 12.211 2.9936 3.036 7.3179 4.3242 12.119 4.3242h41.396c4.8258 0 9.1622-1.2816 12.174-4.3144 3.0116-3.0328 4.2734-7.3748 4.2734-12.221v-32.783c0-5.4814-1.9508-10.492-5.7285-14.049l-2e-3 -2e-3 -39.973-37.672v-19.193h17.203v21.961a3.9666 3.9666 0 0 0 3.9668 3.9668h20.566a3.9666 3.9666 0 0 0 3.9668 -3.9668v-30.762c0-4.8212-1.2683-9.1492-4.2832-12.164-3.0149-3.0149-7.3429-4.2832-12.164-4.2832h-41.396zm66.27 0a3.9666 3.9666 0 0 0 -3.8965 4.7109l26.279 137.72a3.9666 3.9666 0 0 0 3.8965 3.2226h20.479a3.9666 3.9666 0 0 0 3.8945 -3.2207l26.367-137.72a3.9666 3.9666 0 0 0 -3.8945 -4.7129h-20.566a3.9666 3.9666 0 0 0 -3.9141 3.3242l-12.072 73.602-12.004-73.598a3.9666 3.9666 0 0 0 -3.9141 -3.3281h-20.654zm97.295 0c-4.8305 0-9.1753 1.2951-12.184 4.3457-3.0083 3.0506-4.2637 7.4068-4.2637 12.277v112.32c0 4.832 1.2205 9.1491 4.1777 12.191 2.9572 3.0423 7.2536 4.3438 12.006 4.3438h43.242c4.8505 0 9.2009-1.2751 12.23-4.3047 3.0296-3.0296 4.3047-7.38 4.3047-12.23v-61.084a3.9666 3.9666 0 0 0 -3.9668 -3.9668h-35.947a3.9666 3.9666 0 0 0 -3.9668 3.9668v17.49a3.9666 3.9666 0 0 0 3.9668 3.9668h11.326v30.562h-18.873v-94.283h18.873v20.379a3.9666 3.9666 0 0 0 3.9668 3.9668h20.654a3.9666 3.9666 0 0 0 3.9668 -3.9668v-29.355c0-4.8752-1.2686-9.2397-4.2949-12.287-3.0263-3.0474-7.3851-4.3359-12.24-4.3359h-42.979z" fill="#2b1100" fill-opacity=".5125" filter="url(#f)"/>
<path d="m217.98 377.28c-4.806 0-9.1387 1.3017-12.129 4.3555-2.9902 3.0538-4.2305 7.4016-4.2305 12.268v30.586c1e-5 5.3403 1.9742 10.265 5.7012 13.846a3.9666 3.9666 0 0 0 0.0215 0.0215l39.98 37.85v0.0977c0.14371 0.0404 0.28594 0.0907 0.42969 0.13086 4.1409 1.1555 8.2951 2.196 12.459 3.0781 4.1639 0.88216 8.3377 1.6055 12.518 2.127 1.03 0.1285 2.063 0.12131 3.0938 0.22461v-8.4199c0-5.4814-1.9508-10.492-5.7285-14.049l-2e-3 -2e-3 -39.973-37.672v-19.193h17.203v21.961a3.9666 3.9666 0 0 0 3.9668 3.9668h20.566a3.9666 3.9666 0 0 0 3.9668 -3.9668v-30.762c0-4.8212-1.2683-9.1492-4.2832-12.164-3.0149-3.0149-7.3429-4.2832-12.164-4.2832h-41.396zm66.27 0a3.9666 3.9666 0 0 0 -3.8965 4.7109l19.027 99.723c3.6825-0.46799 7.3647-1.0648 11.043-2.0176 2.0929-0.54214 4.1851-1.1667 6.2754-1.8809 2.0903-0.71414 4.1787-1.517 6.2656-2.4141 2.0869-0.89706 4.1714-1.8896 6.2539-2.9805 2.0826-1.0909 4.1629-2.2806 6.2402-3.5762 3.6962-2.3053 6.9608-4.2452 10.396-6.3398l15.414-80.512a3.9666 3.9666 0 0 0 -3.88 -4.71h-20.566a3.9666 3.9666 0 0 0 -3.9141 3.3242l-12.072 73.602-12.004-73.598a3.9666 3.9666 0 0 0 -3.9141 -3.3281h-20.654zm97.295 0c-4.8305 0-9.1753 1.2951-12.184 4.3457-3.0083 3.0506-4.2637 7.4067-4.2637 12.277v57.59c1.9693-1.0446 4.0749-2.3187 5.9941-3.2559 2.6995-1.3181 5.3546-2.5268 7.9863-3.6211 2.6318-1.0943 5.2392-2.0744 7.8398-2.9316 2.2269-0.73408 4.4507-1.3315 6.6797-1.8828v-36.922h18.873v20.379a3.9666 3.9666 0 0 0 3.9668 3.9668h20.654a3.9666 3.9666 0 0 0 3.9668 -3.9668v-29.355c0-4.8752-1.2686-9.2397-4.2949-12.287-3.0263-3.0474-7.3851-4.3359-12.24-4.3359h-42.979z" fill="url(#h)"/>
<path d="m393.6 439.91c-2.2184 0.54943-4.4318 1.1442-6.6484 1.875-2.5982 0.85659-5.2023 1.8361-7.832 2.9297-2.6298 1.0936-5.2845 2.3017-7.9824 3.6191-1.9329 0.94383-4.0531 2.2264-6.0371 3.2793v54.619c0 4.832 1.2205 9.1491 4.1777 12.191 2.9572 3.0423 7.2536 4.3438 12.006 4.3437h43.242c4.8505 0 9.2009-1.2751 12.23-4.3047 3.0296-3.0296 4.3047-7.38 4.3047-12.23v-61.084a3.9666 3.9666 0 0 0 -3.9668 -3.9668h-35.947a3.9666 3.9666 0 0 0 -3.9668 3.9668v17.49a3.9666 3.9666 0 0 0 3.9668 3.9668h11.326v30.562h-18.873v-57.258zm-47.768 22.732c-3.4114 2.0804-6.6497 4.0049-10.318 6.293-2.0795 1.2969-4.1614 2.4881-6.2461 3.5801s-4.1726 2.0845-6.2617 2.9824c-2.0891 0.89794-4.179 1.7012-6.2715 2.416-2.0925 0.71484-4.1862 1.3421-6.2812 1.8848-3.6808 0.95339-7.3658 1.5511-11.051 2.0195l7.2324 37.902a3.9666 3.9666 0 0 0 3.8965 3.2227h20.479a3.9666 3.9666 0 0 0 3.8945 -3.2207l10.928-57.08zm-140.24 6.8398a3.9666 3.9666 0 0 0 -3.9668 3.9668v32.783c1e-5 4.8412 1.2467 9.1749 4.2402 12.211 2.9936 3.036 7.3179 4.3242 12.119 4.3242h41.396c4.8258 0 9.1622-1.2816 12.174-4.3144 3.0116-3.0328 4.2734-7.3748 4.2734-12.221v-24.262c-1.0339-0.10352-2.0703-0.0977-3.1035-0.22656-4.1833-0.52174-8.3606-1.2463-12.527-2.1289-4.1667-0.88256-8.322-1.9222-12.465-3.0781-0.13525-0.0377-0.26909-0.0851-0.4043-0.12305v21.105h-17.203v-24.07a3.9666 3.9666 0 0 0 -1.3652 -2.9883c-0.93669-0.32178-1.8622-0.65227-2.7969-0.97851h-20.371z" fill="url(#i)"/>
<path d="m216.98 376.28a1.0001 1.0001 0 0 0 -0.13867 0.01c-4.9324 0.0256-9.5071 1.3785-12.705 4.6445-3.2254 3.294-4.5156 7.9328-4.5156 12.969v30.586c1e-5 5.5867 2.0777 10.79 6.0078 14.566l8e-3 8e-3a1.0001 1.0001 0 0 0 0.0195 0.0176l39.668 37.555v19.879h-15.203v-23.07c1.6e-4 -2.7313-2.2355-4.967-4.9668-4.9668h-20.566c-2.7313-1.7e-4 -4.967 2.2355-4.9668 4.9668v32.783c1e-5 5.0129 1.2972 9.6362 4.5273 12.912 3.2323 3.2782 7.8519 4.623 12.832 4.623h41.396c5.0029 0 9.6323-1.3379 12.883-4.6113 3.2494-3.2723 4.5644-7.9044 4.5644-12.924v-32.783c0-5.7186-2.049-11.017-6.043-14.777a1.0001 1.0001 0 0 0 -2e-3 -2e-3l-39.658-37.375v-17.762h15.203v20.961c-1.6e-4 2.7313 2.2355 4.967 4.9668 4.9668h20.566c2.7313 1.7e-4 4.967-2.2354 4.9668-4.9668v-30.762c0-4.9966-1.3221-9.617-4.5762-12.871-3.2541-3.2541-7.8745-4.5762-12.871-4.5762h-41.396zm66.27 0c-3.0963-3.1e-4 -5.46 2.8572-4.8789 5.8984l26.279 137.72c0.44591 2.3354 2.5013 4.0354 4.8789 4.0352h20.479c2.376-7.6e-4 4.4302-1.6996 4.877-4.0332l26.367-137.72c0.58262-3.0412-1.7805-5.8995-4.877-5.9004h-20.566c-2.4256 9e-5 -4.5096 1.7686-4.9024 4.1621l-11.082 67.564-11.02-67.561c-0.39065-2.3955-2.4733-4.1655-4.9004-4.166h-20.654zm97.295 0c-5.0092 0-9.6496 1.35-12.896 4.6426-3.2448 3.2905-4.5508 7.938-4.5508 12.98v112.32c0 5.0004 1.27 9.604 4.4609 12.887 3.1953 3.2872 7.7878 4.6484 12.723 4.6484h43.242c5.0257 0 9.6687-1.3288 12.938-4.5976 3.2688-3.2688 4.5977-7.9118 4.5977-12.938v-61.084c1.6e-4 -2.7313-2.2355-4.967-4.9668-4.9668h-35.947c-2.7313-1.7e-4 -4.967 2.2355-4.9668 4.9668v17.49c-1.7e-4 2.7313 2.2355 4.967 4.9668 4.9668h10.326v28.562h-16.873v-92.283h16.873v19.379c-1.7e-4 2.7313 2.2354 4.967 4.9668 4.9668h20.654c2.7313 1.6e-4 4.967-2.2355 4.9668-4.9668v-29.355c0-5.0487-1.3217-9.7052-4.5859-12.992-3.2653-3.2881-7.9172-4.6309-12.949-4.6309h-42.979zm-163.56 2h41.396c4.6458 0 8.6813 1.2145 11.457 3.9902s3.9902 6.8112 3.9902 11.457v30.762c1e-4 1.6504-1.3164 2.9669-2.9668 2.9668h-20.566c-1.6504 1.1e-4 -2.9669-1.3164-2.9668-2.9668v-21.961a1.0001 1.0001 0 0 0 -1 -1h-17.203a1.0001 1.0001 0 0 0 -1 1v19.193a1.0001 1.0001 0 0 0 0.31445 0.72656l39.961 37.662a1.0001 1.0001 0 0 0 0.0137 0.0117c3.5615 3.3531 5.4141 8.0781 5.4141 13.322v32.783c0 4.6722-1.2106 8.7223-3.9844 11.516-2.7727 2.7922-6.8141 4.0195-11.463 4.0195h-41.396c-4.6224 0-8.6534-1.2334-11.408-4.0273-2.757-2.7961-3.9512-6.8382-3.9512-11.508v-32.783c-1e-4 -1.6504 1.3164-2.9669 2.9668-2.9668h20.566c1.6504-1e-4 2.9669 1.3164 2.9668 2.9668v24.07a1.0001 1.0001 0 0 0 1 1h17.203a1.0001 1.0001 0 0 0 1 -1v-21.309a1.0001 1.0001 0 0 0 -0.3125 -0.72656l-39.971-37.84-0.0117-0.0117a1.0001 1.0001 0 0 0 -0.0156 -0.0156c-3.5239-3.3857-5.3926-8.0292-5.3926-13.123v-30.586c1e-5 -4.6961 1.1904-8.7548 3.9453-11.568 2.7517-2.8102 6.7887-4.0547 11.414-4.0547zm66.27 0h20.654c1.4608 2.9e-4 2.6907 1.0465 2.9258 2.4883l12.004 73.598a1.0001 1.0001 0 0 0 1.9746 0l12.072-73.6v-2e-3c0.23713-1.4397 1.4685-2.4843 2.9277-2.4844h20.566c1.8825 5.6e-4 3.2663 1.6746 2.9121 3.5234l-26.367 137.72c-0.26874 1.4037-1.4829 2.4097-2.9121 2.4102h-20.479c-1.4303 1.1e-4 -2.6458-1.0053-2.9141-2.4102l-26.279-137.72c-0.35326-1.8489 1.0317-3.5236 2.9141-3.5234zm97.295 0h42.979c4.6782 0 8.742 1.2323 11.529 4.0391 2.7884 2.8078 4.0059 6.8823 4.0059 11.584v29.355c1e-4 1.6504-1.3164 2.9669-2.9668 2.9668h-20.654c-1.6504 1e-4 -2.9669-1.3164-2.9668-2.9668v-20.379a1.0001 1.0001 0 0 0 -1 -1h-18.873a1.0001 1.0001 0 0 0 -1 1v94.283a1.0001 1.0001 0 0 0 1 1h18.873a1.0001 1.0001 0 0 0 1 -1v-30.562a1.0001 1.0001 0 0 0 -1 -1h-11.326c-1.6504 9e-5 -2.9669-1.3164-2.9668-2.9668v-17.49c-1e-4 -1.6504 1.3164-2.9669 2.9668-2.9668h35.947c1.6504-1e-4 2.9669 1.3164 2.9668 2.9668v61.084c2e-5 4.6752-1.2214 8.7332-4.0117 11.523-2.7903 2.7903-6.8482 4.0117-11.523 4.0117h-43.242c-4.5697 0-8.5699-1.2436-11.289-4.041-2.7235-2.8019-3.8945-6.8306-3.8945-11.494v-112.32c0-4.6988 1.2029-8.7654 3.9746-11.576 2.7696-2.8086 6.8209-4.0469 11.473-4.0469z" color="black" color-rendering="auto" fill="#b3b3b3" image-rendering="auto" shape-rendering="auto" solid-color="black" style="block-progression:tb;isolation:auto;mix-blend-mode:normal;text-decoration-color:black;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-transform:none;white-space:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,394 @@
<svg version="1.1" id="lengqueta" xmlns="http://www.w3.org/2000/svg" width="96" height="107.4" viewBox="0 0 192 214.8">
<style type="text/css">.lqTa0{fill:url(#lqTa_1_);}.lqTa1{fill:url(#lqTa_2_);}.lqTa2{fill:#D0E2D8;}.lqTa3{fill:#74AD92;}.lqTa4{fill:#47775B;}.lqTa5{fill:#82C0A5;}.lqTa6{fill:url(#lqTa_3_);stroke:url(#lqTa_4_);stroke-miterlimit:10;}.lqTa7{fill:url(#lqTa_5_);stroke:url(#lqTa_6_);stroke-miterlimit:10;}.lqTa8{fill:url(#lqTa_7_);stroke:url(#lqTa_8_);stroke-miterlimit:10;}.lqTa9{fill:url(#lqTa_9_);stroke:url(#lqTa_10_);stroke-miterlimit:10;}.lqTa10{fill:url(#lqTa_11_);stroke:url(#lqTa_12_);stroke-miterlimit:10;}.lqTa11{fill:url(#lqTa_13_);stroke:url(#lqTa_14_);stroke-miterlimit:10;}.lqTa12{fill:url(#lqTa_15_);stroke:url(#lqTa_16_);stroke-miterlimit:10;}.lqTa13{fill:url(#lqTa_17_);stroke:url(#lqTa_18_);stroke-miterlimit:10;}.lqTa14{fill:#679980;}.lqTa15{fill:#73A88E;}.lqTa16{fill:url(#lqTa_19_);stroke:url(#lqTa_20_);stroke-miterlimit:10;}.lqTa17{fill:url(#lqTa_21_);stroke:url(#lqTa_22_);stroke-miterlimit:10;}.lqTa18{fill:url(#lqTa_23_);stroke:url(#lqTa_24_);stroke-miterlimit:10;}.lqTa19{fill:url(#lqTa_25_);stroke:url(#lqTa_26_);stroke-miterlimit:10;}.lqTa20{fill:url(#lqTa_27_);stroke:url(#lqTa_28_);stroke-miterlimit:10;}.lqTa21{fill:url(#lqTa_29_);stroke:url(#lqTa_30_);stroke-miterlimit:10;}.lqTa22{fill:url(#lqTa_31_);stroke:url(#lqTa_32_);stroke-miterlimit:10;}.lqTa23{fill:url(#lqTa_33_);stroke:url(#lqTa_34_);stroke-miterlimit:10;}.lqTa24{fill:#9FCEB7;}.lqTa25{fill:url(#lqTa_35_);}.lqTa26{fill:none;stroke:url(#lqTa_36_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa27{fill:none;stroke:url(#lqTa_37_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa28{fill:none;stroke:url(#lqTa_38_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa29{fill:none;stroke:url(#lqTa_39_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa30{fill:none;stroke:url(#lqTa_40_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa31{fill:none;stroke:url(#lqTa_41_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa32{fill:none;stroke:url(#lqTa_42_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa33{fill:none;stroke:url(#lqTa_43_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa34{fill:none;stroke:url(#lqTa_44_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa35{fill:none;stroke:url(#lqTa_45_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa36{fill:none;stroke:url(#lqTa_46_);stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}.lqTa37{fill:url(#lqTa_47_);}.lqTa38{fill:#E5E5E5;}.lqTa39{fill:url(#lqTa_48_);}.lqTa40{fill:url(#lqTa_49_);}.lqTa41{fill:url(#lqTa_50_);}.lqTa42{fill:#BCC9C1;}.hide{display:none;}.show {display:default;}.lqTa44{display:inline;fill:url(#lqTa_51_);}.lqTa45{fill:url(#lqTa_52_);}.lqTa46{display:inline;fill:url(#lqTa_53_);}.lqTa47{display:inline;fill:url(#lqTa_54_);}.lqTa48{display:inline;fill:url(#lqTa_55_);}.lqTa49{fill:#DAE8EF;}.lqTa50{fill:url(#lqTa_56_);}.lqTa51{fill:url(#lqTa_57_);}.lqTa52{display:inline;opacity:0.5;fill:#E71F19;enable-background:new ;}</style>
<g id="SVG_base1">
<linearGradient id="lqTa_1_" gradientUnits="userSpaceOnUse" x1="6907.7998" y1="6987.5303" x2="6925.8398" y2="6987.5303" gradientTransform="matrix(1 0 0 1 -6877.3901 -6795.8955)">
<stop offset="0" style="stop-color:#74AD92"/>
<stop offset="1" style="stop-color:#91BCA6"/>
</linearGradient>
<path class="lqTa0" d="M30.4,189.7v2.5c0,0.7,4.1,1.3,9,1.3s9-0.5,9-1.3v-2.5H30.4z"/>
<linearGradient id="lqTa_2_" gradientUnits="userSpaceOnUse" x1="6907.7998" y1="6321.2051" x2="6925.8398" y2="6321.2051" gradientTransform="matrix(1 0 0 -1 -6877.3901 6510.9551)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#91BCA6"/>
</linearGradient>
<ellipse class="lqTa1" cx="39.4" cy="189.8" rx="9" ry="1.3"/>
<ellipse class="lqTa2" cx="39.4" cy="189.8" rx="2.6" ry="0.4"/>
<rect x="36.8" y="178.9" class="lqTa3" width="5.2" height="10.8"/>
<rect x="182.5" y="142" class="lqTa4" width="8.2" height="32.8"/>
<polygon class="lqTa3" points="27.8,181.1 10.3,198.6 8.8,197.1 26.3,179.6"/>
<polygon class="lqTa3" points="106.3,181.5 123.8,199 125.4,197.5 107.9,180"/>
<polygon class="lqTa5" points="0,68.3 0,214.5 10.6,214.5 10.6,182 123.5,182 123.5,214.5 134.4,214.5 134.4,68.3"/>
<linearGradient id="lqTa_3_" gradientUnits="userSpaceOnUse" x1="9.585" y1="141.62" x2="9.585" y2="75.7499">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_4_" gradientUnits="userSpaceOnUse" x1="9.585" y1="75.2499" x2="9.585" y2="142.12">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa6" d="M9.6,141.6L9.6,141.6c-2.7,0-4.8-2.2-4.9-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.1c2.6,0,4.7,2.2,4.8,4.8V137 C14.3,139.6,12.2,141.6,9.6,141.6z"/>
<linearGradient id="lqTa_5_" gradientUnits="userSpaceOnUse" x1="6916.9102" y1="7162.0957" x2="6916.9102" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_6_" gradientUnits="userSpaceOnUse" x1="6906.9077" y1="7127.3901" x2="6927.0176" y2="7130.9497" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa7" d="M26.1,141.6h-0.2c-2.6,0-4.7-2.2-4.8-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.2c2.6,0,4.7,2.2,4.8,4.8V137 C30.8,139.6,28.7,141.6,26.1,141.6z"/>
<linearGradient id="lqTa_7_" gradientUnits="userSpaceOnUse" x1="6933.4199" y1="7162.0952" x2="6933.4199" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_8_" gradientUnits="userSpaceOnUse" x1="6923.3672" y1="7127.3813" x2="6943.4771" y2="7130.9214" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa8" d="M42.6,141.6h-0.2c-2.6,0-4.7-2.2-4.8-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.2c2.6,0,4.7,2.1,4.8,4.7l0,0v56.4 C47.3,139.5,45.2,141.6,42.6,141.6z"/>
<linearGradient id="lqTa_9_" gradientUnits="userSpaceOnUse" x1="6950.0098" y1="7162.0952" x2="6950.0098" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_10_" gradientUnits="userSpaceOnUse" x1="6939.8276" y1="7127.3604" x2="6959.9077" y2="7130.9106" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa9" d="M59.1,141.6L59.1,141.6c-2.7,0-4.8-2.2-4.9-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.2c2.6,0,4.7,2.2,4.8,4.8V137 C63.8,139.6,61.7,141.6,59.1,141.6z"/>
<linearGradient id="lqTa_11_" gradientUnits="userSpaceOnUse" x1="6966.4199" y1="7162.0952" x2="6966.4199" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_12_" gradientUnits="userSpaceOnUse" x1="6956.3042" y1="7127.3633" x2="6976.394" y2="7130.9136" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa10" d="M75.5,141.6L75.5,141.6c-2.7,0-4.8-2.2-4.9-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.2c2.6,0,4.7,2.1,4.8,4.7v56.5 C80.3,139.5,78.1,141.6,75.5,141.6z"/>
<linearGradient id="lqTa_13_" gradientUnits="userSpaceOnUse" x1="6982.875" y1="7162.0952" x2="6982.875" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_14_" gradientUnits="userSpaceOnUse" x1="6972.7578" y1="7127.377" x2="6992.8379" y2="7130.917" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa11" d="M92,141.6L92,141.6c-2.7,0-4.8-2.2-4.9-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7H92c2.6,0,4.7,2.2,4.8,4.8V137 C96.7,139.6,94.6,141.6,92,141.6z"/>
<linearGradient id="lqTa_15_" gradientUnits="userSpaceOnUse" x1="6999.25" y1="7162.0952" x2="6999.25" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_16_" gradientUnits="userSpaceOnUse" x1="6989.2402" y1="7127.3896" x2="7009.2998" y2="7130.9194" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa12" d="M108.4,141.6L108.4,141.6c-2.7,0-4.8-2.2-4.9-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.1c2.6,0,4.7,2.2,4.7,4.8V137 C113.1,139.6,111,141.6,108.4,141.6C108.4,141.6,108.4,141.6,108.4,141.6L108.4,141.6z"/>
<linearGradient id="lqTa_17_" gradientUnits="userSpaceOnUse" x1="7015.875" y1="7162.0952" x2="7015.875" y2="7096.2256" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_18_" gradientUnits="userSpaceOnUse" x1="7005.7666" y1="7127.3745" x2="7025.8564" y2="7130.9243" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa13" d="M125,141.6L125,141.6c-2.7,0-4.8-2.2-4.9-4.8V80.4c0-2.6,2.2-4.7,4.8-4.7h0.1c2.6,0,4.7,2.2,4.8,4.8V137 C129.7,139.6,127.6,141.6,125,141.6z"/>
<g>
<rect x="4" y="174.1" class="lqTa4" width="23.4" height="2.7"/>
<g>
<rect x="4" y="147" class="lqTa4" width="23.4" height="2.7"/>
<rect x="4" y="152.4" class="lqTa4" width="23.4" height="2.7"/>
<rect x="4" y="157.9" class="lqTa4" width="23.4" height="2.7"/>
<rect x="4" y="163.3" class="lqTa4" width="23.4" height="2.7"/>
<rect x="4" y="168.7" class="lqTa4" width="23.4" height="2.7"/>
<rect x="29.8" y="147" class="lqTa4" width="23.4" height="2.7"/>
<rect x="29.8" y="152.4" class="lqTa4" width="23.4" height="2.7"/>
<rect x="29.8" y="157.9" class="lqTa4" width="23.4" height="2.7"/>
<rect x="29.8" y="163.3" class="lqTa4" width="23.4" height="2.7"/>
<rect x="29.8" y="168.7" class="lqTa4" width="23.4" height="2.7"/>
<rect x="29.8" y="174.1" class="lqTa4" width="23.4" height="2.7"/>
<rect x="55.5" y="147" class="lqTa4" width="23.4" height="2.7"/>
<rect x="55.5" y="152.4" class="lqTa4" width="23.4" height="2.7"/>
<rect x="55.5" y="157.9" class="lqTa4" width="23.4" height="2.7"/>
<rect x="55.5" y="163.3" class="lqTa4" width="23.4" height="2.7"/>
<rect x="55.5" y="168.7" class="lqTa4" width="23.4" height="2.7"/>
<rect x="55.5" y="174.1" class="lqTa4" width="23.4" height="2.7"/>
<rect x="81.3" y="147" class="lqTa4" width="23.4" height="2.7"/>
<rect x="81.3" y="152.4" class="lqTa4" width="23.4" height="2.7"/>
<rect x="81.3" y="157.9" class="lqTa4" width="23.4" height="2.7"/>
<rect x="81.3" y="163.3" class="lqTa4" width="23.4" height="2.7"/>
<rect x="81.3" y="168.7" class="lqTa4" width="23.4" height="2.7"/>
<rect x="81.3" y="174.1" class="lqTa4" width="23.4" height="2.7"/>
<rect x="107.1" y="147" class="lqTa4" width="23.4" height="2.7"/>
<rect x="107.1" y="152.4" class="lqTa4" width="23.4" height="2.7"/>
<rect x="107.1" y="157.9" class="lqTa4" width="23.4" height="2.7"/>
<rect x="107.1" y="163.3" class="lqTa4" width="23.4" height="2.7"/>
<rect x="107.1" y="168.7" class="lqTa4" width="23.4" height="2.7"/>
<rect x="107.1" y="174.1" class="lqTa4" width="23.4" height="2.7"/>
</g>
</g>
<polygon class="lqTa14" points="146.3,162.9 138.8,185.1 138.1,184 145.6,161.8"/>
<polygon class="lqTa14" points="179.9,153.2 187.3,165.9 187.9,164.1 180.5,151.2"/>
<polygon class="lqTa15" points="134.4,68.6 134.4,214.8 138.9,212 138.9,179.6 187.2,149.3 187.2,181.7 191.9,178.8 191.9,32.7"/>
<linearGradient id="lqTa_19_" gradientUnits="userSpaceOnUse" x1="7029.4199" y1="7520.3604" x2="7029.4199" y2="7454.4297" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_20_" gradientUnits="userSpaceOnUse" x1="7021.7988" y1="7485.5215" x2="7036.6792" y2="7488.1416" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa16" d="M138.4,138.5L138.4,138.5c-1.2,0.7-2.1-0.8-2.1-3.4V78.6c0-2.6,0.9-5.2,2.1-6l0.1-0.1 c1.1-0.7,2.1,0.9,2.1,3.4v56.4C140.5,135.2,139.5,137.8,138.4,138.5z"/>
<linearGradient id="lqTa_21_" gradientUnits="userSpaceOnUse" x1="7036.4497" y1="7519.853" x2="7036.4497" y2="7454.0132" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_22_" gradientUnits="userSpaceOnUse" x1="7028.8398" y1="7484.9668" x2="7043.71" y2="7487.5869" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa17" d="M145.5,134.1L145.5,134.1c-1.2,0.7-2.1-0.8-2.1-3.4V74.3c0-2.6,0.9-5.2,2.1-6l0.1-0.1 c1.1-0.7,2.1,0.9,2.1,3.4V128C147.4,130.7,146.6,133.5,145.5,134.1z"/>
<linearGradient id="lqTa_23_" gradientUnits="userSpaceOnUse" x1="7043.6147" y1="7519.3262" x2="7043.6147" y2="7453.396" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_24_" gradientUnits="userSpaceOnUse" x1="7035.8936" y1="7484.3457" x2="7050.7734" y2="7486.9756" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa18" d="M152.6,129.7L152.6,129.7c-1.2,0.7-2.1-0.8-2.1-3.4V69.8c0-2.6,0.9-5.3,2.1-6l0.1-0.1 c1.1-0.7,2.1,0.9,2.1,3.4v56.4C154.6,126.3,153.6,129,152.6,129.7z"/>
<linearGradient id="lqTa_25_" gradientUnits="userSpaceOnUse" x1="7050.52" y1="7518.7495" x2="7050.52" y2="7452.9888" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_26_" gradientUnits="userSpaceOnUse" x1="7042.9395" y1="7483.7583" x2="7057.8193" y2="7486.3984" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa19" d="M159.5,125.3L159.5,125.3c-1.2,0.7-2.1-0.8-2.1-3.4V65.5c0-2.6,0.9-5.3,2.1-6l0.1-0.1 c1.1-0.7,2.1,0.9,2.1,3.4v56.4C161.6,121.9,160.7,124.5,159.5,125.3z"/>
<linearGradient id="lqTa_27_" gradientUnits="userSpaceOnUse" x1="7057.6099" y1="7518.0972" x2="7057.6099" y2="7452.2559" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_28_" gradientUnits="userSpaceOnUse" x1="7049.9849" y1="7483.1274" x2="7064.8647" y2="7485.7578" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa20" d="M166.6,120.8L166.6,120.8c-1.2,0.7-2.1-0.8-2.1-3.4V61c0-2.6,0.9-5.3,2.1-6l0.1-0.1c1.1-0.7,2.1,0.9,2.1,3.4 v56.4C168.6,117.4,167.7,120.2,166.6,120.8z"/>
<linearGradient id="lqTa_29_" gradientUnits="userSpaceOnUse" x1="7064.6797" y1="7517.4019" x2="7064.6797" y2="7451.562" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_30_" gradientUnits="userSpaceOnUse" x1="7057.0396" y1="7482.4385" x2="7071.9194" y2="7485.0684" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa21" d="M173.7,116.3L173.7,116.3c-1.2,0.7-2.1-0.8-2.1-3.4V56.5c0-2.6,0.9-5.2,2.1-5.9l0.1-0.1 c1.1-0.7,2.1,0.9,2.1,3.4v56.5C175.8,113,174.8,115.7,173.7,116.3z"/>
<linearGradient id="lqTa_31_" gradientUnits="userSpaceOnUse" x1="7071.7998" y1="7517.0415" x2="7071.7998" y2="7451.2012" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_32_" gradientUnits="userSpaceOnUse" x1="7064.0796" y1="7481.9478" x2="7078.9595" y2="7484.5679" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa22" d="M180.8,112L180.8,112c-1.2,0.7-2.1-0.8-2.1-3.4V52.2c0-2.6,0.9-5.2,2.1-6l0.1-0.1c1.1-0.7,2.1,0.9,2.1,3.4 V106C182.8,108.7,181.9,111.3,180.8,112z"/>
<linearGradient id="lqTa_33_" gradientUnits="userSpaceOnUse" x1="7078.8198" y1="7516.4321" x2="7078.8198" y2="7450.5601" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#76AFA5"/>
</linearGradient>
<linearGradient id="lqTa_34_" gradientUnits="userSpaceOnUse" x1="7071.1587" y1="7481.3452" x2="7086.0283" y2="7483.9653" gradientTransform="matrix(1 -0.54 0 1 -6890.9399 -3585.4656)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#73A88E"/>
</linearGradient>
<path class="lqTa23" d="M187.8,107.6L187.8,107.6c-1.2,0.7-2.1-0.8-2.1-3.4V47.8c0-2.6,0.9-5.2,2.1-6l0.1-0.1c1-0.7,2,0.9,2,3.4v56.5 C190,104.2,189,106.9,187.8,107.6z"/>
<g>
<polygon class="lqTa4" points="146,141.9 136,148.2 136,145.5 146,139.2"/>
<polygon class="lqTa4" points="146,147.4 136,153.6 136,150.9 146,144.6"/>
<polygon class="lqTa4" points="146,152.8 136,159 136,156.3 146,150.1"/>
<polygon class="lqTa4" points="146,158.2 136,164.5 136,161.8 146,155.5"/>
<polygon class="lqTa4" points="146,163.7 136,169.9 136,167.2 146,161"/>
<polygon class="lqTa4" points="146,169.1 136,175.3 136,172.6 146,166.4"/>
<polygon class="lqTa4" points="157.1,135 147.1,141.2 147.1,138.5 157.1,132.3"/>
<polygon class="lqTa4" points="157.1,140.5 147.1,146.7 147.1,144 157.1,137.8"/>
<polygon class="lqTa4" points="157.1,145.9 147.1,152.1 147.1,149.4 157.1,143.2"/>
<polygon class="lqTa4" points="157.1,151.3 147.1,157.6 147.1,154.8 157.1,148.6"/>
<polygon class="lqTa4" points="157.1,156.7 147.1,163.1 147.1,160.3 157.1,154"/>
<polygon class="lqTa4" points="157.1,162.1 147.1,168.5 147.1,165.7 157.1,159.4"/>
<polygon class="lqTa4" points="168.1,128.1 158.1,134.4 158.1,131.7 168.1,125.4"/>
<polygon class="lqTa4" points="168.1,133.6 158.1,139.8 158.1,137.1 168.1,130.9"/>
<polygon class="lqTa4" points="168.1,139 158.1,145.2 158.1,142.5 168.1,136.3"/>
<polygon class="lqTa4" points="168.1,144.4 158.1,150.7 158.1,147.9 168.1,141.7"/>
<polygon class="lqTa4" points="168.1,149.8 158.1,156.1 158.1,153.3 168.1,147.1"/>
<polygon class="lqTa4" points="168.1,155.3 158.1,161.5 158.1,158.8 168.1,152.6"/>
<polygon class="lqTa4" points="179.1,121.2 169.2,127.4 169.2,124.7 179.1,118.5"/>
<polygon class="lqTa4" points="179.1,126.6 169.2,132.9 169.2,130.1 179.1,123.9"/>
<polygon class="lqTa4" points="179.1,132 169.2,138.3 169.2,135.6 179.1,129.3"/>
<polygon class="lqTa4" points="179.1,137.5 169.2,143.8 169.2,141.1 179.1,134.8"/>
<polygon class="lqTa4" points="179.1,142.9 169.2,149.3 169.2,146.5 179.1,140.2"/>
<polygon class="lqTa4" points="179.1,148.4 169.2,154.7 169.2,151.9 179.1,145.6"/>
<polygon class="lqTa4" points="190.2,114.3 180.2,120.6 180.2,117.9 190.2,111.6"/>
<polygon class="lqTa4" points="190.2,119.8 180.2,126 180.2,123.3 190.2,117.1"/>
<polygon class="lqTa4" points="190.2,125.2 180.2,131.5 180.2,128.7 190.2,122.5"/>
<polygon class="lqTa4" points="190.2,130.6 180.2,136.9 180.2,134.1 190.2,127.9"/>
<polygon class="lqTa4" points="190.2,136.1 180.2,142.3 180.2,139.5 190.2,133.3"/>
<polygon class="lqTa4" points="190.2,141.5 180.2,147.7 180.2,144.9 190.2,138.7"/>
</g>
<polygon class="lqTa24" points="135.1,68.7 0,68.7 57,33.3 192,33.3"/>
<linearGradient id="lqTa_35_" gradientUnits="userSpaceOnUse" x1="6934.6802" y1="7039.9556" x2="7046.8599" y2="7039.9556" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#69C0A5"/>
</linearGradient>
<ellipse class="lqTa25" cx="99.8" cy="19.5" rx="56.1" ry="19.5"/>
<linearGradient id="lqTa_36_" gradientUnits="userSpaceOnUse" x1="7059.6177" y1="7062.6348" x2="7071.3374" y2="7062.6348" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8165.3145 5649.7104)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa26" d="M177.6,139l-11.4,6.9"/>
<linearGradient id="lqTa_37_" gradientUnits="userSpaceOnUse" x1="7061.7075" y1="7052.4741" x2="7073.4277" y2="7052.4741" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8165.3145 5649.7104)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa27" d="M177.6,149.3l-11.4,6.9"/>
<linearGradient id="lqTa_38_" gradientUnits="userSpaceOnUse" x1="7056.3374" y1="7077.1118" x2="7071.7876" y2="7077.1118" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8167.7944 5651.8501)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa28" d="M174.4,125.1l2.8,0.7c0.4,0.6,0.3,1.4-0.3,1.9c0,0,0,0,0,0l0,0h-0.1l-11.4,6.9l-3.3-0.7"/>
<linearGradient id="lqTa_39_" gradientUnits="userSpaceOnUse" x1="7054.6377" y1="7086.7578" x2="7066.3574" y2="7086.7578" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8165.3145 5649.7104)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa29" d="M177.6,114.3l-11.4,6.9"/>
<linearGradient id="lqTa_40_" gradientUnits="userSpaceOnUse" x1="7051.4277" y1="7101.332" x2="7066.8877" y2="7101.332" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8167.7944 5651.8501)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa30" d="M174.4,100.4l2.8,0.7c0.4,0.6,0.3,1.4-0.3,1.9c0,0,0,0,0,0l0,0h-0.1l-11.4,6.9l-3.3-0.7"/>
<linearGradient id="lqTa_41_" gradientUnits="userSpaceOnUse" x1="7049.6577" y1="7110.9888" x2="7061.3774" y2="7110.9888" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8165.3145 5649.7104)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa31" d="M177.6,89.6l-11.4,6.9"/>
<linearGradient id="lqTa_42_" gradientUnits="userSpaceOnUse" x1="7046.5176" y1="7125.4551" x2="7061.9678" y2="7125.4551" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8167.7944 5651.8501)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa32" d="M174.4,75.7l2.8,0.7c0.4,0.6,0.3,1.4-0.3,1.9c0,0,0,0,0,0l0,0h-0.1l-11.4,6.9l-3.3-0.7"/>
<linearGradient id="lqTa_43_" gradientUnits="userSpaceOnUse" x1="7044.6875" y1="7135.0923" x2="7056.4175" y2="7135.0923" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8165.3145 5649.7104)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa33" d="M177.6,65l-11.4,6.9"/>
<linearGradient id="lqTa_44_" gradientUnits="userSpaceOnUse" x1="7041.5977" y1="7149.5728" x2="7057.0679" y2="7149.5728" gradientTransform="matrix(0.9798 0.1999 0.1999 -0.9798 -8167.7944 5651.8501)">
<stop offset="0" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa34" d="M174.4,51.1l2.8,0.7c0.4,0.6,0.3,1.4-0.3,1.9c0,0,0,0,0,0l0,0h-0.1l-11.4,6.9l-3.3-0.8"/>
<linearGradient id="lqTa_45_" gradientUnits="userSpaceOnUse" x1="151.32" y1="108.445" x2="166.58" y2="108.445">
<stop offset="0.55" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa35" d="M152.3,44.5h5c4.5,0,8.2,3.7,8.2,8.2v119.6"/>
<linearGradient id="lqTa_46_" gradientUnits="userSpaceOnUse" x1="7054.6099" y1="6922.8506" x2="7069.8701" y2="6922.8506" gradientTransform="matrix(1 0 0 -1 -6890.9399 7022.3652)">
<stop offset="0.55" style="stop-color:#B6D2E2"/>
<stop offset="1" style="stop-color:#8797A6"/>
</linearGradient>
<path class="lqTa36" d="M164.6,35.6h5.1c4.5,0,8.2,3.7,8.2,8.2v119.6"/>
<linearGradient id="lqTa_47_" gradientUnits="userSpaceOnUse" x1="6990.77" y1="7020.7456" x2="6990.77" y2="7020.7456" gradientTransform="matrix(1 0 0 1 -6890.9399 -7020.4756)">
<stop offset="2.000000e-02" style="stop-color:#9FA0A0"/>
<stop offset="0.13" style="stop-color:#BDBDBD"/>
<stop offset="0.28" style="stop-color:#E1E1E1"/>
<stop offset="0.4" style="stop-color:#F7F7F7"/>
<stop offset="0.48" style="stop-color:#FFFFFF"/>
<stop offset="0.57" style="stop-color:#F9F9F9"/>
<stop offset="0.69" style="stop-color:#E9E9E9"/>
<stop offset="0.82" style="stop-color:#CECECE"/>
<stop offset="0.97" style="stop-color:#A9AAAA"/>
<stop offset="1" style="stop-color:#9FA0A0"/>
</linearGradient>
<path class="lqTa37" d="M99.8,0.3"/>
<path class="lqTa15" d="M156,19.3L156,19.3c0,0,0.1,0.3,0.1,0.4c0,10.7-25.2,19.5-56.1,19.5s-56.2-8.8-56.2-19.5v-0.5h-0.1V44l0,0 c0,10.7,25.2,19.5,56.1,19.5s56.2-8.8,56.2-19.5L156,19.3L156,19.3z"/>
<path class="lqTa3" d="M29.6,57.4v7.1c0,0.6,1.2,1.4,2.6,1.4s2.6-0.8,2.6-1.4v-7.1L29.6,57.4z"/>
<ellipse class="lqTa38" cx="32.2" cy="56.4" rx="2.6" ry="1.3"/>
<linearGradient id="lqTa_48_" gradientUnits="userSpaceOnUse" x1="5433.1001" y1="7419.999" x2="5412.6299" y2="7419.999" gradientTransform="matrix(-1 0 0 -1 5455.1299 7474.8853)">
<stop offset="0" style="stop-color:#74AD92"/>
<stop offset="1" style="stop-color:#91BCA6"/>
</linearGradient>
<path class="lqTa39" d="M24.3,52.8c2.5-1.1,5.2-1.6,7.9-1.5c2.7-0.1,5.4,0.4,7.9,1.5h2.3v1.8c0,2.2-4.6,4-10.2,4s-10.2-1.8-10.2-4 v-1.8H24.3z"/>
<linearGradient id="lqTa_49_" gradientUnits="userSpaceOnUse" x1="6899.4902" y1="6458.1953" x2="6919.8701" y2="6458.1953" gradientTransform="matrix(1 0 0 -1 -6877.3901 6510.9551)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#91BCA6"/>
</linearGradient>
<ellipse class="lqTa40" cx="32.3" cy="52.8" rx="10.2" ry="4"/>
<linearGradient id="lqTa_50_" gradientUnits="userSpaceOnUse" x1="5428.0601" y1="7422.6758" x2="5417.8501" y2="7422.6758" gradientTransform="matrix(-1 0 0 -1 5455.1201 7474.8955)">
<stop offset="0" style="stop-color:#47775B"/>
<stop offset="1" style="stop-color:#69C0A5"/>
</linearGradient>
<ellipse class="lqTa41" cx="32.3" cy="52.2" rx="5.2" ry="2.1"/>
<path class="lqTa2" d="M32.3,56c5.2,0,9.6-1.6,10.1-3.6c0.1,0.1,0.1,0.3,0.1,0.4c0,2.2-4.6,4-10.2,4s-10.2-1.8-10.2-4 c0-0.2,0-0.3,0.1-0.4C22.7,54.4,27.1,56,32.3,56z"/>
<path class="lqTa42" d="M32.3,50.5c2.7,0,5,0.8,5.2,1.9c0-0.1,0-0.1,0.1-0.2c0-1.2-2.4-2.1-5.2-2.1s-5.2,1-5.2,2.2 c0,0.1,0,0.1,0.1,0.2C27.3,51.3,29.6,50.5,32.3,50.5z"/>
</g>
<g id="SVG_ani" style="display:block">
<g class="hide">
<animate accumulate="none" additive="replace" attributeName="class" calcMode="linear" dur="0.5s" fill="remove" repeatCount="indefinite" restart="always" values="show;hide;hide;hide;"/>
<linearGradient id="lqTa_51_" gradientUnits="userSpaceOnUse" x1="244.07" y1="160.5105" x2="319.6201" y2="160.5105" gradientTransform="matrix(1 0 0 -1 -179.02 180.5255)">
<stop offset="0" style="stop-color:#BABEC6"/>
<stop offset="0.54" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#BABEC6"/>
</linearGradient>
<path class="lqTa44" d="M130.5,29.1l6.8-3.2l-31.8-6l30.6-6.7l-6.8-3.2l-26.4,8.5l-9.4-12L82.6,7.8L98,19l-36.4-0.7v3.9l35.9-1.6 L84.5,32.2l10.9,1.2l6.8-12.1L130.5,29.1z"/>
</g>
<g class="hide">
<animate accumulate="none" additive="replace" attributeName="class" calcMode="linear" dur="0.5s" fill="remove" repeatCount="indefinite" restart="always" values="hide;show;hide;hide;"/>
<linearGradient id="lqTa_52_" gradientUnits="userSpaceOnUse" x1="244.07" y1="160.1155" x2="319.61" y2="160.1155" gradientTransform="matrix(1 0 0 -1 -179.02 180.5255)">
<stop offset="0" style="stop-color:#BABEC6"/>
<stop offset="0.54" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#BABEC6"/>
</linearGradient>
<path class="lqTa45" d="M137.2,25.5l3.5-3.7l-35.6-2.3l23-9.6l-9.3-2.3l-17.4,10.8L81.7,7.9l-9.3,2.3l24.8,9L62,22.4l3.6,3.7 l32.8-5.3l-2,12.4h11.5L103.2,21L137.2,25.5z"/>
</g>
<g class="show">
<animate accumulate="none" additive="replace" attributeName="class" calcMode="linear" dur="0.5s" fill="remove" repeatCount="indefinite" restart="always" values="hide;hide;show;hide;"/>
<linearGradient id="lqTa_53_" gradientUnits="userSpaceOnUse" x1="244.07" y1="160.8055" x2="319.61" y2="160.8055" gradientTransform="matrix(1 0 0 -1 -179.02 180.5255)">
<stop offset="0" style="stop-color:#BABEC6"/>
<stop offset="0.54" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#BABEC6"/>
</linearGradient>
<path class="lqTa46" d="M140.6,21.4v-3.9l-36,1.6l13.1-11.6l-10.9-1.2l-6.8,12.2l-28.3-7.8L65,13.8l31.8,6l-30.6,6.7l6.8,3.2 l26.4-8.5l9.4,12l10.9-1.2l-15.5-11.2L140.6,21.4z"/>
</g>
<g class="hide">
<animate accumulate="none" additive="replace" attributeName="class" calcMode="linear" dur="0.5s" fill="remove" repeatCount="indefinite" restart="always" values="hide;hide;hide;show;"/>
<linearGradient id="lqTa_54_" gradientUnits="userSpaceOnUse" x1="244.07" y1="161.3055" x2="319.61" y2="161.3055" gradientTransform="matrix(1 0 0 -1 -179.02 180.5255)">
<stop offset="0" style="stop-color:#BABEC6"/>
<stop offset="0.54" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#BABEC6"/>
</linearGradient>
<path class="lqTa47" d="M140.4,17.2l-3.5-3.7l-32.8,5.3l2-12.4H94.6l4.6,12.3l-34-4.5l-3.6,3.7l35.6,2.3l-23,9.6l9.3,2.3L101,21.2 l19.8,10.4l9.3-2.3l-24.8-9L140.4,17.2z"/>
</g>
</g>
<g id="SVG_sta" style="display:none">
<linearGradient id="lqTa_55_" gradientUnits="userSpaceOnUse" x1="244.07" y1="161.3055" x2="319.61" y2="161.3055" gradientTransform="matrix(1 0 0 -1 -179.02 180.5255)">
<stop offset="0" style="stop-color:#BABEC6"/>
<stop offset="0.54" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#BABEC6"/>
</linearGradient>
<path class="lqTa48" d="M140.4,17.2l-3.5-3.7l-32.8,5.3l2-12.4H94.6l4.6,12.3l-34-4.5l-3.6,3.7l35.6,2.3l-23,9.6l9.3,2.3L101,21.2 l19.8,10.4l9.3-2.3l-24.8-9L140.4,17.2z"/>
</g>
<g id="SVG_base2" style="display:block">
<g>
<polygon class="lqTa49" points="84.1,34.7 116.3,3.8 116.8,4.3 84.6,35.2"/>
<rect x="47.9" y="19.8" class="lqTa49" width="103.8" height="0.7"/>
</g>
<linearGradient id="lqTa_56_" gradientUnits="userSpaceOnUse" x1="43.74" y1="19.505" x2="155.98" y2="19.505">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#91BCA6"/>
</linearGradient>
<path class="lqTa50" d="M99.8,4.1c14.5,0,28.1,1.9,38.3,5.5s13.6,7.6,13.6,10s-3.6,6.4-13.6,9.9S114.3,35,99.8,35s-28.1-1.9-38.3-5.5 s-13.7-7.7-13.7-9.9s3.6-6.4,13.6-9.9S85.3,4.2,99.8,4.1 M99.8,0C68.9,0,43.7,8.8,43.7,19.5S68.8,39,99.8,39S156,30.2,156,19.5 S130.8,0,99.8,0L99.8,0z"/>
<path class="lqTa3" d="M94.8,14v6.9c0,1.2,2.2,2.1,4.8,2.1s4.8-0.9,4.8-2.1V14H94.8z"/>
<linearGradient id="lqTa_57_" gradientUnits="userSpaceOnUse" x1="6972.1802" y1="6496.9355" x2="6981.7998" y2="6496.9355" gradientTransform="matrix(1 0 0 -1 -6877.3901 6510.9551)">
<stop offset="0" style="stop-color:#9FCEB7"/>
<stop offset="1" style="stop-color:#91BCA6"/>
</linearGradient>
<ellipse class="lqTa51" cx="99.6" cy="14" rx="4.8" ry="2.1"/>
</g>
<g id="SVG_alert" style="display:none">
<path class="lqTa52" d="M43.7,19.6v-0.5h-0.1v22.4L32,48.8c-5.4,0-9.7,1.7-9.9,3.8c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1l0,0v1.8 c0,0.1,0,0.3,0,0.4L0.7,68.3H0v146.2h10.6v-16.1L26.9,182h9.9v6.6c-3.7,0.2-6.4,0.6-6.4,1.2l0,0v2.5c0,0.7,4.1,1.3,9,1.3 s9-0.5,9-1.3v-2.4c0,0,0-0.1,0-0.1c0-0.6-2.7-1-6.4-1.2V182h64.8l16.7,16.7v15.8h10.9v0.4l4.5-2.8v-27.2l2.2-6.6l23.4-14.7v8.9 c0,0,0.7,1,1,1s1-1,1-1v-10.1l10.3-6.5v7.8c0.1,0.5,0.5,0.9,1,0.9c0.5,0,1-0.4,1-0.9v-9l1.3-0.8l2.4,4v17.1h4.7v6.9l4.7-2.9V33.3 l0.1-0.1H192v-0.5l-0.9,0.5h-35.2V20.8 M155.6,21.6l0.3-0.8c0.1-0.4,0.1-0.8,0.1-1.2c0-0.1-0.1-0.4-0.1-0.5v0.1l0,0 c-0.1-1.7-0.7-3.3-1.7-4.6C148,6.2,126,0,99.9,0h-0.1c-31,0-56.1,8.7-56.1,19.5c0,5.4,0.3,14,10.5,17.5 M10.6,195.4V182H24 L10.6,195.4z M109.8,182h13.6v13.6L109.8,182z M138.8,181.6v-2l0.9-0.5L138.8,181.6z M181.4,152.9l1.1-0.7v2.6L181.4,152.9z M164.5,172.3c0,0.5,0.5,1,1,1c0.5,0,1-0.4,1-0.9c0,0,0-0.1,0-0.1" opacity=".5" fill="#ff1d1d"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

Loading…
Cancel
Save