最新更新
|
@ -0,0 +1,71 @@
|
|||
package com.github.niefy.modules.h5.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* @TableName h5_invitation
|
||||
*/
|
||||
@TableName(value ="h5_invitation")
|
||||
@Data
|
||||
public class H5Invitation implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
private String userName;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private String userId;
|
||||
|
||||
/**
|
||||
* 用户专业id
|
||||
*/
|
||||
private String userMajorId;
|
||||
|
||||
/**
|
||||
* 组id
|
||||
*/
|
||||
private Integer groupId;
|
||||
|
||||
/**
|
||||
* 专业id,0表示未选择
|
||||
*/
|
||||
private Integer majorId;
|
||||
|
||||
/**
|
||||
* 工作单位
|
||||
*/
|
||||
private String workName;
|
||||
|
||||
/**
|
||||
* 工作单位确认
|
||||
*/
|
||||
private String workNameQr;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
package com.github.niefy.modules.h5.mapper;
|
||||
|
||||
import com.github.niefy.modules.h5.entity.H5Invitation;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author 27428
|
||||
* @description 针对表【h5_invitation】的数据库操作Mapper
|
||||
* @createDate 2024-05-13 20:41:43
|
||||
* @Entity com.github.niefy.modules.h5.entity.H5Invitation
|
||||
*/
|
||||
@Mapper
|
||||
public interface H5InvitationMapper extends BaseMapper<H5Invitation> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
package com.github.niefy.modules.h5.service;
|
||||
|
||||
import com.github.niefy.common.utils.PageUtils;
|
||||
import com.github.niefy.modules.h5.entity.H5Invitation;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author 27428
|
||||
* @description 针对表【h5_invitation】的数据库操作Service
|
||||
* @createDate 2024-05-13 20:41:43
|
||||
*/
|
||||
@Service
|
||||
public interface H5InvitationService extends IService<H5Invitation> {
|
||||
|
||||
List<H5Invitation> queryInvitation();
|
||||
|
||||
PageUtils queryPage(Map<String, Object> params);
|
||||
PageUtils queryPageY(Map<String, Object> params);
|
||||
PageUtils queryPageD(Map<String, Object> params);
|
||||
PageUtils queryPageL(Map<String, Object> params);
|
||||
PageUtils queryPageZ(Map<String, Object> params);
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,123 @@
|
|||
package com.github.niefy.modules.h5.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.github.niefy.common.utils.PageUtils;
|
||||
import com.github.niefy.common.utils.Query;
|
||||
import com.github.niefy.modules.h5.entity.H5Invitation;
|
||||
import com.github.niefy.modules.h5.entity.H5User;
|
||||
import com.github.niefy.modules.h5.service.H5InvitationService;
|
||||
import com.github.niefy.modules.h5.mapper.H5InvitationMapper;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author 27428
|
||||
* @description 针对表【h5_invitation】的数据库操作Service实现
|
||||
* @createDate 2024-05-13 20:41:43
|
||||
*/
|
||||
@Service
|
||||
public class H5InvitationServiceImpl extends ServiceImpl<H5InvitationMapper, H5Invitation>
|
||||
implements H5InvitationService{
|
||||
|
||||
@Override
|
||||
public List<H5Invitation> queryInvitation() {
|
||||
return this.list();
|
||||
}
|
||||
|
||||
@Override
|
||||
public PageUtils queryPage(Map<String, Object> params) {
|
||||
// String userMajorId = (String) params.get("userMajorId");
|
||||
// Long createUserId = (Long) params.get("createUserId");
|
||||
|
||||
IPage<H5Invitation> page = this.page(
|
||||
new Query<H5Invitation>().getPage(params),
|
||||
new QueryWrapper<H5Invitation>()
|
||||
// .like(StringUtils.isNotBlank(userMajorId), "user_major_id", userMajorId)
|
||||
// 按时间降序排序
|
||||
.orderByDesc("update_time")
|
||||
//
|
||||
// .eq( "major_id", )
|
||||
);
|
||||
|
||||
return new PageUtils(page);
|
||||
}
|
||||
@Override
|
||||
public PageUtils queryPageY(Map<String, Object> params) {
|
||||
// String userId = (String) params.get("userId");
|
||||
// Long createUserId = (Long) params.get("createUserId");
|
||||
|
||||
IPage<H5Invitation> page = this.page(
|
||||
new Query<H5Invitation>().getPage(params),
|
||||
new QueryWrapper<H5Invitation>()
|
||||
// .like(StringUtils.isNotBlank(userId), "user_id", userId)
|
||||
// 按时间降序排序
|
||||
.orderByDesc("update_time")
|
||||
|
||||
.eq( "major_id", 1)
|
||||
);
|
||||
|
||||
return new PageUtils(page);
|
||||
}
|
||||
@Override
|
||||
public PageUtils queryPageD(Map<String, Object> params) {
|
||||
// String userId = (String) params.get("userId");
|
||||
// Long createUserId = (Long) params.get("createUserId");
|
||||
|
||||
IPage<H5Invitation> page = this.page(
|
||||
new Query<H5Invitation>().getPage(params),
|
||||
new QueryWrapper<H5Invitation>()
|
||||
// .like(StringUtils.isNotBlank(userId), "user_id", userId)
|
||||
// 按时间降序排序
|
||||
.orderByDesc("update_time")
|
||||
|
||||
.eq( "major_id", 4)
|
||||
);
|
||||
|
||||
return new PageUtils(page);
|
||||
}
|
||||
@Override
|
||||
public PageUtils queryPageL(Map<String, Object> params) {
|
||||
// String userId = (String) params.get("userId");
|
||||
// Long createUserId = (Long) params.get("createUserId");
|
||||
|
||||
IPage<H5Invitation> page = this.page(
|
||||
new Query<H5Invitation>().getPage(params),
|
||||
new QueryWrapper<H5Invitation>()
|
||||
// .like(StringUtils.isNotBlank(userId), "user_id", userId)
|
||||
// 按时间降序排序
|
||||
.orderByDesc("update_time")
|
||||
|
||||
.eq( "major_id", 7)
|
||||
);
|
||||
|
||||
return new PageUtils(page);
|
||||
}
|
||||
@Override
|
||||
public PageUtils queryPageZ(Map<String, Object> params) {
|
||||
// String userId = (String) params.get("userId");
|
||||
// Long createUserId = (Long) params.get("createUserId");
|
||||
|
||||
IPage<H5Invitation> page = this.page(
|
||||
new Query<H5Invitation>().getPage(params),
|
||||
new QueryWrapper<H5Invitation>()
|
||||
// .like(StringUtils.isNotBlank(userId), "user_id", userId)
|
||||
// 按时间降序排序
|
||||
.orderByDesc("update_time")
|
||||
|
||||
.eq( "major_id", 8)
|
||||
);
|
||||
|
||||
return new PageUtils(page);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.github.niefy.modules.h5.mapper.H5InvitationMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.github.niefy.modules.h5.entity.H5Invitation">
|
||||
<id property="id" column="id" jdbcType="INTEGER"/>
|
||||
<result property="userName" column="user_name" jdbcType="VARCHAR"/>
|
||||
<result property="userId" column="user_id" jdbcType="VARCHAR"/>
|
||||
<result property="userMajorId" column="user_major_id" jdbcType="VARCHAR"/>
|
||||
<result property="groupId" column="group_id" jdbcType="INTEGER"/>
|
||||
<result property="majorId" column="major_id" jdbcType="INTEGER"/>
|
||||
<result property="workName" column="work_name" jdbcType="VARCHAR"/>
|
||||
<result property="workNameQr" column="work_name_qr" jdbcType="VARCHAR"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,user_name,user_id,
|
||||
user_major_id,group_id,major_id,
|
||||
work_name,work_name_qr,create_time,
|
||||
update_time
|
||||
</sql>
|
||||
</mapper>
|
|
@ -1 +0,0 @@
|
|||
#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;color:#2c3e50}nav{padding:30px}nav a{font-weight:700;color:#2c3e50}nav a.router-link-exact-active{color:#42b983}.main-page[data-v-7ade1cb4]{height:100vh;width:100vw}.main-page .head[data-v-7ade1cb4]{margin-top:3rem;width:90%}.main-page .sfm[data-v-7ade1cb4]{margin-top:2rem;width:70%}.main-page .input-code[data-v-7ade1cb4]{text-align:center;font-size:35px;height:3.5rem;width:80%;opacity:1;border-radius:132px;background:#fff,#fff;border:4px solid rgba(141,35,40,.6);box-shadow:0 0 0 rgba(0,0,0,.1),0 3px 7px rgba(0,0,0,.1),0 12px 12px rgba(0,0,0,.09),0 27px 16px rgba(0,0,0,.05),0 47px 19px rgba(0,0,0,.01),0 74px 21px transparent}.main-page .loginbut[data-v-7ade1cb4]{width:60%;margin-top:10%}.tishi[data-v-7ade1cb4]{margin:5px 15px;text-align:left}.tishi span[data-v-7ade1cb4]{text-align:left}.tishi p[data-v-7ade1cb4]{text-align:left;text-indent:20px;padding:0;margin:0}.tishi p em[data-v-7ade1cb4]{font-style:normal;text-align:center;font-weight:700}.loading[data-v-7ade1cb4]{position:absolute;left:50%;transform:translateX(-50%);top:60%;width:80px}
|
|
@ -0,0 +1 @@
|
|||
#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;color:#2c3e50}nav{padding:30px}nav a{font-weight:700;color:#2c3e50}nav a.router-link-exact-active{color:#42b983}.main-page[data-v-0cb725ed]{height:100vh;width:100vw;background:url(/img/bj1.3666c65e.svg) no-repeat;background-size:100%}.main-page .hrbun[data-v-0cb725ed]{height:44vh;width:100vw}.main-page .hrbun img[data-v-0cb725ed]{padding-top:6vh;width:90%}.main-page .hsd[data-v-0cb725ed]{width:100vw;height:12vh}.main-page .hsd img[data-v-0cb725ed]{width:85%}.code[data-v-0cb725ed]{width:90%;height:270px;margin:0 auto}.code .input-code[data-v-0cb725ed]{text-align:center;font-size:35px;height:2.5rem;width:80%;opacity:1;color:rgba(141,35,40,.6);font-weight:600;border-radius:132px;background:#fff,#fff;border:4px solid rgba(141,35,40,.6);box-shadow:0 0 0 rgba(0,0,0,.1),0 3px 7px rgba(0,0,0,.1),0 12px 12px rgba(0,0,0,.09),0 27px 16px rgba(0,0,0,.05),0 47px 19px rgba(0,0,0,.01),0 74px 21px transparent}.code .text1[data-v-0cb725ed]{width:90%}.code .sbm[data-v-0cb725ed]{width:90%;margin-top:2vh;height:40px}.code .dl[data-v-0cb725ed]{width:50%;margin-top:2vh}.footer[data-v-0cb725ed]{width:100vw}.footer img[data-v-0cb725ed]{width:65%}
|
Before Width: | Height: | Size: 32 KiB |
|
@ -1 +0,0 @@
|
|||
<svg t="1686310663774" class="icon" viewBox="0 0 1034 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14779" width="200" height="200"><path d="M552.96 855.04c25.6 25.6 66.56 25.6 87.04 0l240.64-230.4c61.44-61.44 61.44-158.72 0-220.16s-168.96-61.44-230.4 0c-30.72 25.6-76.8 25.6-102.4 0-61.44-61.44-168.96-61.44-230.4 0S256 563.2 317.44 624.64l235.52 230.4z" fill="#91BDDA" p-id="14780" data-spm-anchor-id="a313x.7781069.0.i22" class="selected"></path><path d="M450.56 870.4c35.84 35.84 87.04 35.84 122.88 0l332.8-332.8c87.04-87.04 87.04-230.4 0-317.44s-230.4-87.04-317.44 0l-5.12 5.12c-40.96 40.96-102.4 40.96-143.36 0l-5.12-5.12C348.16 133.12 204.8 133.12 117.76 220.16s-87.04 230.4 0 317.44L450.56 870.4z m-35.84 35.84l-332.8-332.8c-107.52-107.52-107.52-281.6 0-394.24s281.6-107.52 394.24 0l5.12 5.12c20.48 20.48 51.2 20.48 71.68 0l5.12-5.12c107.52-107.52 281.6-107.52 394.24 0s107.52 281.6 0 394.24l-332.8 332.8c-61.44 56.32-153.6 56.32-204.8 0z" fill="" p-id="14781"></path></svg>
|
Before Width: | Height: | Size: 997 B |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 259 KiB |
Before Width: | Height: | Size: 167 KiB |
Before Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 13 KiB |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg t="1715233040957" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
p-id="10836" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
||||
<path d="M808.442 750.473c-19.129-12.815-45.006-23.897-76.914-32.938-29.814-8.447-64.333-14.988-101.734-19.411a1474.629 1474.629 0 0 0 27.112-41.87c35.54-57.014 63.92-111.757 84.355-162.708 26.17-65.254 39.44-124.842 39.44-177.105 0-34.365-7.223-67.696-21.469-99.068-13.684-30.135-33.23-57.156-58.092-80.313-24.709-23.015-53.446-41.07-85.416-53.664-32.98-12.99-67.976-19.579-104.018-19.579-36.043 0-71.04 6.589-104.02 19.58-31.967 12.593-60.706 30.648-85.415 53.663-24.862 23.157-44.407 50.178-58.09 80.313-14.247 31.372-21.47 64.703-21.47 99.068 0 52.264 13.269 111.85 39.44 177.105 20.434 50.952 48.815 105.695 84.355 162.708a1473.727 1473.727 0 0 0 27.117 41.878c-37.374 4.422-71.868 10.96-101.664 19.403-31.907 9.042-57.784 20.123-76.913 32.938-37.658 25.229-45.563 54.502-45.563 74.615s7.905 49.386 45.562 74.615c19.129 12.815 45.006 23.898 76.914 32.938 59.392 16.83 137.445 26.099 219.786 26.099 82.339 0 160.394-9.27 219.785-26.099 31.907-9.04 57.784-20.123 76.913-32.938 37.659-25.229 45.563-54.502 45.563-74.615s-7.905-49.386-45.564-74.615zM511.706 198.241c66.177 0 119.84 53.661 119.84 119.838 0 66.178-53.662 119.839-119.84 119.839-66.176 0-119.839-53.661-119.839-119.839 0-66.177 53.662-119.838 119.839-119.838z m0.038 709.334c-160.769 0-291.097-36.93-291.097-82.486 0-37.221 87.008-68.678 206.532-78.945 34.14 46.973 59.66 76.7 61.278 78.576l23.249 26.96 23.25-26.96c1.617-1.876 27.14-31.607 61.282-78.582 119.56 10.26 206.603 41.723 206.603 78.95 0 45.557-130.33 82.487-291.097 82.487z"
|
||||
fill="#8c2341" p-id="10837"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg t="1715243210469" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1938"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
||||
<path d="M85.333333 469.717333C85.333333 451.829333 99.658667 437.333333 117.333333 437.333333s32 14.506667 32 32.384V786.133333c0 5.962667 4.778667 10.794667 10.666667 10.794667a10.56 10.56 0 0 0 5.045333-1.28l154.848-84.021333a73.898667 73.898667 0 0 1 72.853334 1.290666l252.544 148.842667a10.56 10.56 0 0 0 10.122666 0.341333l213.333334-107.264c3.626667-1.824 5.92-5.568 5.92-9.664V469.717333C874.666667 451.829333 888.992 437.333333 906.666667 437.333333s32 14.506667 32 32.384V745.173333c0 28.682667-16.053333 54.890667-41.44 67.658667l-213.333334 107.264a73.898667 73.898667 0 0 1-70.805333-2.378667L360.533333 768.896a10.56 10.56 0 0 0-10.410666-0.192l-154.848 84.032a73.973333 73.973333 0 0 1-35.285334 8.96c-41.237333 0-74.666667-33.813333-74.666666-75.552V469.717333z m672-132.266666c0 87.808-73.173333 192.917333-217.056 320.288a42.666667 42.666667 0 0 1-56.554666 0C339.829333 530.378667 266.666667 425.258667 266.666667 337.450667 266.666667 203.968 376.64 96 512 96s245.333333 107.968 245.333333 241.450667z m-426.666666 0c0 61.514667 59.712 149.557333 181.333333 259.701333 121.621333-110.144 181.333333-198.186667 181.333333-259.701333C693.333333 239.584 612.277333 160 512 160s-181.333333 79.573333-181.333333 177.450667zM512 405.333333a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"
|
||||
fill="#8c2341" p-id="1939"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,8 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="493" height="132" viewBox="0 0 493 132" fill="none">
|
||||
<rect x="0" y="0" width="493" height="132" rx="66" fill="#8D2328" >
|
||||
</rect>
|
||||
<g >
|
||||
<path fill="#FFFDFD" d="M190.76 77.776L190.76 65.824L186.824 65.824L193.448 57.04L191.096 57.04L188.36 50.416L194.792 50.416L196.088 53.536L199.976 48.4L188.072 48.4L188.072 44.656L208.904 44.656L208.904 48.208L202.712 56.464L216.536 56.464L209.528 44.656L217.736 44.656L219.272 47.152L220.568 44.752L227.048 44.752L223.496 51.232L221.816 51.232L223.352 53.776L224.6 50.896L230.84 50.896L228.056 57.376L225.608 57.376L231.176 66.304L226.904 66.304L226.904 77.776L190.76 77.776ZM212.36 83.104L215.528 78.832L223.688 78.832L220.568 83.104L230.024 83.104L230.024 87.424L187.448 87.424L187.448 83.104L212.36 83.104ZM198.584 73.936L218.504 73.936L218.504 67.744L198.584 67.744L198.584 73.936ZM200.936 60.976L200.936 58.864L197.192 63.808L220.904 63.808L217.688 58.432L217.688 60.976L200.936 60.976ZM201.032 78.784L203.72 82.288L195.56 82.288L192.968 78.784L201.032 78.784ZM280.888 60.448L280.888 57.232L252.568 57.232L252.568 53.104L280.888 53.104L280.888 49.936L251.848 49.936L251.848 45.28L288.232 45.28L288.232 60.448L292.84 60.448L292.84 65.104L274.792 65.104L274.792 83.632L267.4 89.248L262.792 83.632L267.064 80.32L267.064 65.104L249.688 65.104L249.688 60.448L280.888 60.448ZM263.992 75.232L258.328 86.848L250.216 86.848L255.88 75.232L263.992 75.232ZM286.168 75.232L290.632 86.848L282.568 86.848L278.056 75.232L286.168 75.232ZM290.776 66.688L286.36 73.264L278.248 73.264L282.616 66.688L290.776 66.688ZM259.24 66.688L263.752 73.168L255.64 73.168L251.128 66.688L259.24 66.688Z">
|
||||
</path>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1715232967931" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7743" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M494.043838 676.149245c76.612957-44.890404 128.087287-128.087287 128.087287-223.3547 0-142.851242-115.817243-258.768242-258.768242-258.768242S104.694398 309.843546 104.694398 452.794545c0 95.267414 51.47433 178.464296 128.087287 223.3547C98.409742 719.842572 1.246956 846.134243 1.246956 995.070628l0 28.929372 724.431369 0 0-28.929372C725.678324 846.134243 628.515538 719.842572 494.043838 676.149245z" p-id="7744" fill="#8c2341"></path><path d="M791.118558 545.967073c76.612957-44.890404 128.087287-128.087287 128.087287-223.3547 0-142.851242-115.817243-258.768242-258.768242-258.768242-75.615392 0-143.74905 32.520604-191.033609 84.194447 6.583926 2.294398 13.068095 4.78831 19.552265 7.481734 38.406235 16.260302 72.921968 39.503556 102.549635 69.131223 29.627667 29.627667 52.870921 64.1434 69.131223 102.549635 16.858841 39.802825 25.338139 82.099562 25.338139 125.593376 0 57.260205-15.262737 113.622601-44.092353 162.802533-9.476863 16.260302-20.350317 31.523039-32.520604 45.788212 5.087579 3.291963 10.075402 6.783439 14.963468 10.374671 33.418412 24.240818 62.74681 53.269946 87.187141 86.488846 24.839357 33.617925 44.092353 70.627569 57.260205 110.031369 2.793181 8.479299 5.386849 16.958597 7.581491 25.537652L1022.753044 893.817828l0-28.929372C1022.753044 715.852314 925.590258 589.660399 791.118558 545.967073z" p-id="7745" fill="#8c2341"></path></svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -1 +0,0 @@
|
|||
<svg t="1686310435404" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12365" width="200" height="200"><path d="M760.504 883.784l-619.152 9.88-64.68-24.576V787.024c7.808-3.712 191.376-75.2 193.576-83.568 2.144-8.376 71.616-34.12 66.576-41.168l-18.76-81.216V427.784c0-73.152 59.24-130.44 134.848-130.44 75.576 0 134.816 57.288 134.816 130.472l-31.704 153.256-37.864 64.304c-4.816 6.992 18.072 31.728 20.176 39.952 2.112 8.184 41.808 14.32 49.392 18.128l172.776 83.568v106.64-9.912 0.032z" fill="#91BDDA" p-id="12366" data-spm-anchor-id="a313x.7781069.0.i12" class=""></path><path d="M932.776 848.24l-177.056 1.992v-69.656l-155.936-72.08-65.888-33.152c7.816-3.712-45.48-2.52-43.304-10.888 2.136-8.376 48.344-37.864 43.304-44.888l23.264-71.384 30.56-120.368c0-73.152 9.92-169.472 85.52-169.472 59.752 0 109.264 35.792 127.424 86.936 4.784 13.536-13 29.624-13 44.984l-58.608 157.88-15.328 47.376c-4.816 6.984 44.664 15.84 46.776 24.048 2.104 8.184 39.976 41.08 47.56 44.888l172.776 83.568-18.04 82.064-30.024 18.16z" fill="#91BDDA" p-id="12367" data-spm-anchor-id="a313x.7781069.0.i16" class=""></path><path d="M771.456 761.784a29.264 29.264 0 0 1 16.208 26.216v103.248a29.264 29.264 0 0 1-29.336 29.304H76.232a29.304 29.304 0 0 1-29.336-29.304V788c0-11.296 6.52-21.56 16.68-26.44l241.84-115.84-72.024-101.256a29.136 29.136 0 0 1-5.44-16.992V364.864c0-106.016 84.984-189.112 193.48-189.112 108.472 0 193.456 83.064 193.456 189.112v162.608c0 5.928-1.8 11.72-5.16 16.616l-70.04 101.856 231.76 115.84z m-42.4 100.16h-0.032v-55.808l-245.704-122.8a29.296 29.296 0 0 1-11.016-42.832L556.24 518.376v-153.52c0-73.176-59.24-130.464-134.816-130.464-75.6 0-134.84 57.288-134.84 130.44v153.28L373.36 640.16a29.28 29.28 0 0 1-11.232 43.44l-256.6 122.88v55.464h623.52z m238.496-172.464a29.264 29.264 0 0 1 16.208 26.216v103.248a29.256 29.256 0 0 1-29.336 29.304h-73.088a29.336 29.336 0 0 1 0-58.64h43.784v-55.808L679.44 611.04a29.296 29.296 0 0 1-11.04-42.84l83.976-122.128v-153.52c0-73.176-59.232-130.496-134.84-130.496-4.72 0-10.576 0.504-17.504 1.576a31.472 31.472 0 0 1-34.624-21.528l-0.408-1.2a26.368 26.368 0 0 1 20.584-34.088 191.736 191.736 0 0 1 31.952-3.36c108.496 0 193.456 83.056 193.456 189.104v162.608c0 5.928-1.808 11.728-5.168 16.616l-70 101.864 231.728 115.832z" fill="#2c2c2c" p-id="12368" data-spm-anchor-id="a313x.7781069.0.i13" class="selected"></path></svg>
|
Before Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 108 KiB |
After Width: | Height: | Size: 102 KiB |
|
@ -0,0 +1,793 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 519.54 187.52">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #c9a1a4;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="_图层_2-2" data-name="图层 2">
|
||||
<g id="_图层_1-2" data-name="图层 1-2">
|
||||
<rect class="cls-1" x="259.59" width=".45" height="16.83"/>
|
||||
<circle class="cls-1" cx="259.84" cy="11.67" r="1.2"/>
|
||||
<path class="cls-1" d="M259.84,13.09c-.78,0-1.42-.65-1.41-1.43,0-.78,.65-1.42,1.43-1.41,.78,0,1.41,.64,1.41,1.42,0,.78-.64,1.42-1.42,1.42,0,0,0,0-.01,0Zm0-2.39c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1Z"/>
|
||||
<rect class="cls-1" x="259.05" y="16.09" width="1.52" height="5.58"/>
|
||||
<path class="cls-1" d="M260.79,21.9h-2v-6h2v6Zm-1.52-.45h1.08v-5.13h-1.08v5.13Z"/>
|
||||
<rect class="cls-1" x="257.42" y="21.48" width="4.84" height="2.99"/>
|
||||
<path class="cls-1" d="M262.48,24.69h-5.28v-3.43h5.28v3.43Zm-4.83-.44h4.35v-2.55h-4.39l.04,2.55Z"/>
|
||||
<rect class="cls-1" x="256.55" y="33.32" width="6.58" height="1.62"/>
|
||||
<path class="cls-1" d="M263.35,35.16h-7v-2.06h7v2.06Zm-6.58-.45h6.13v-1.17h-6.13v1.17Z"/>
|
||||
<rect class="cls-1" x="254.98" y="35.19" width="9.72" height=".98"/>
|
||||
<path class="cls-1" d="M264.92,36.4h-10.17v-1.4h10.17v1.4Zm-9.72-.4h9.27v-.54h-9.27v.54Z"/>
|
||||
<path class="cls-1" d="M266.05,39.4h-12.43v-3.67h12.43v3.67Zm-11.54-.89h10.65v-1.89h-10.65v1.89Z"/>
|
||||
<path class="cls-1" d="M269.19,43.78h-18.69l3-2.47h12.6l3.09,2.47Zm-16.19-.89h13.67l-.85-.69h-12l-.82,.69Z"/>
|
||||
<path class="cls-1" d="M265,42.2h-10.28v-3.42h10.28v3.42Zm-9.36-.89h8.47v-1.65h-8.47v1.65Z"/>
|
||||
<path class="cls-1" d="M263.83,50.21h-8v-3.37l1.51-1.65h4.85l1.62,1.57,.02,3.45Zm-7.08-.89h6.19v-2.19l-1.09-1.05h-4.1l-1,1.11v2.13Z"/>
|
||||
<path class="cls-1" d="M267.65,50.21h-15.65v-7.32h15.63l.02,7.32Zm-14.74-.89h13.85v-5.54h-13.85v5.54Z"/>
|
||||
<path class="cls-1" d="M268.77,76.16h-17.87v-25.23h17.87v25.23Zm-17-.89h16.09v-23.45h-16.07l-.02,23.45Z"/>
|
||||
<path class="cls-1" d="M270.14,51.7h-20.61v-2.38h20.61v2.38Zm-19.72-.89h18.83v-.6h-18.83v.6Z"/>
|
||||
<path class="cls-1" d="M271.76,77.89h-23.76v-2.62h23.77v2.62Zm-22.88-.89h22v-.84h-22v.84Z"/>
|
||||
<path class="cls-1" d="M273.12,137.48h-26.49v-45.12h26.49v45.12Zm-25.6-.88h24.71v-43.35h-24.71v43.35Z"/>
|
||||
<path class="cls-1" d="M268.38,142.07h-17v-5.32h17v5.32Zm-16.12-.89h15.23v-3.54h-15.23v3.54Z"/>
|
||||
<path class="cls-1" d="M276.23,93.25h-32.68l16.25-6.44,16.43,6.44Zm-28-.89h23.31l-11.71-4.59-11.6,4.59Z"/>
|
||||
<path class="cls-1" d="M249.2,91.91v-14.24h21.35v14.23l-10.74-4.24-10.61,4.25Zm10.6-5.21l9.86,3.89v-12h-19.57v12l9.71-3.89Z"/>
|
||||
<polygon class="cls-1" points="257.43 33.89 256.56 33.66 259.41 22.86 260.27 23.09 257.43 33.89"/>
|
||||
<polygon class="cls-1" points="262.26 33.89 259.41 23.09 260.27 22.86 263.12 33.66 262.26 33.89"/>
|
||||
<path class="cls-1" d="M259.94,68.27c-3.31,0-6-2.69-6-6,0-3.31,2.69-6,6-6,3.31,0,6,2.69,6,6,0,.02,0,.03,0,.05-.03,3.29-2.71,5.95-6,5.95Zm0-11c-2.79,0-5.06,2.27-5.06,5.06,0,2.79,2.27,5.06,5.06,5.06,2.79,0,5.06-2.27,5.06-5.06h0c0-2.8-2.27-5.06-5.06-5.07h0Z"/>
|
||||
<path class="cls-1" d="M259.94,67.15c-2.67,0-4.83-2.17-4.82-4.84s2.17-4.83,4.84-4.82c2.66,0,4.82,2.17,4.82,4.83,0,2.67-2.17,4.83-4.84,4.83Zm0-9.22c-2.42,0-4.39,1.98-4.38,4.4,0,2.42,1.98,4.39,4.4,4.38,2.42,0,4.38-1.97,4.38-4.39,0-2.43-1.97-4.39-4.4-4.39Z"/>
|
||||
<path class="cls-1" d="M261.53,85.73h-3.73v-4.45h3.73v4.45Zm-3.28-.44h2.84v-3.56h-2.84v3.56Z"/>
|
||||
<path class="cls-1" d="M265.5,137.42h-12.38v-45h12.38v45Zm-11.32-.89h10.26v-43.27h-10.26v43.27Z"/>
|
||||
<path class="cls-1" d="M261.48,108.14h-3.77v-9.09l1.89-1.05,1.88,1.07v9.07Zm-3.32-.45h2.84v-8.38l-1.44-.82-1.44,.82,.04,8.38Z"/>
|
||||
<path class="cls-1" d="M261.93,130.42h-4.84v-13.75h4.84v13.75Zm-4.4-.44h4v-12.87h-4v12.87Z"/>
|
||||
<rect class="cls-1" x="257.31" y="121.62" width="4.4" height=".44"/>
|
||||
<rect class="cls-1" x="257.31" y="126.14" width="4.4" height=".44"/>
|
||||
<rect class="cls-1" x="259.29" y="117.11" width=".45" height="13.09"/>
|
||||
<rect class="cls-1" x="244.89" y="141.16" width="29.58" height="2.34"/>
|
||||
<rect class="cls-1" x="234.96" y="157.46" width="49.44" height="2.48"/>
|
||||
<rect class="cls-1" x="234.96" y="179.53" width="49.44" height="3.1"/>
|
||||
<rect class="cls-1" x="234.96" y="160.35" width="49.44" height=".5"/>
|
||||
<rect class="cls-1" x="234.96" y="178.58" width="49.44" height=".5"/>
|
||||
<path class="cls-1" d="M273.69,152.87h-28v-8.87h28v8.87Zm-27.59-.44h27.15v-8h-27.15v8Z"/>
|
||||
<polygon class="cls-1" points="273.57 144.46 245.74 144.46 244.9 143.32 245.26 143.06 245.96 144.01 273.36 144.01 274.15 143.05 274.5 143.33 273.57 144.46"/>
|
||||
<polygon class="cls-1" points="311.71 158.79 284.39 158.79 284.39 158.35 311.26 158.35 311.26 152.9 208.25 152.9 208.25 158.03 234.96 158.03 234.96 158.48 207.8 158.48 207.8 152.46 311.71 152.46 311.71 158.79"/>
|
||||
<rect class="cls-1" x="246.86" y="137.04" width=".45" height="4.93"/>
|
||||
<rect class="cls-1" x="272.45" y="137.04" width=".45" height="4.93"/>
|
||||
<polygon class="cls-1" points="278.18 178.58 276.36 178.58 276.61 177.61 276.61 161.82 276.36 160.6 278.18 160.6 277.94 161.82 277.94 177.6 278.18 178.58"/>
|
||||
<polygon class="cls-1" points="280.33 178.58 278.51 178.58 278.76 177.61 278.76 161.82 278.51 160.6 280.33 160.6 280.1 161.82 280.1 177.6 280.33 178.58"/>
|
||||
<path class="cls-1" d="M277.71,175.62h-35.84v-11.15h35.84v11.15Zm-34.95-.89h34.06v-9.37h-34.06v9.37Z"/>
|
||||
<rect class="cls-1" x="244.76" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="247.49" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="250.22" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="252.94" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="255.67" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="258.39" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="261.12" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="263.84" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="266.57" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="269.29" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="272.02" y="160.85" width=".18" height="4.07"/>
|
||||
<rect class="cls-1" x="274.74" y="160.85" width=".18" height="4.07"/>
|
||||
<polygon class="cls-1" points="251.91 150.08 248.09 150.08 248.09 149.9 251.73 149.9 251.73 146.25 251.91 146.25 251.91 150.08"/>
|
||||
<polygon class="cls-1" points="257.76 150.08 253.95 150.08 253.95 149.9 257.58 149.9 257.58 146.25 257.76 146.25 257.76 150.08"/>
|
||||
<polygon class="cls-1" points="263.62 150.08 259.8 150.08 259.8 149.9 263.44 149.9 263.44 146.25 263.62 146.25 263.62 150.08"/>
|
||||
<polygon class="cls-1" points="269.47 150.08 265.66 150.08 265.66 149.9 269.29 149.9 269.29 146.25 269.47 146.25 269.47 150.08"/>
|
||||
<rect class="cls-1" x="208.03" y="152.68" width="103.46" height="3.59"/>
|
||||
<path class="cls-1" d="M205.09,108.17h-3.09v-6.38l.82-.41c.44-.22,.97-.22,1.41,0l.83,.41,.03,6.38Zm-2.62-.45h2.17v-5.66l-.58-.29c-.32-.15-.68-.15-1,0l-.58,.29v5.66Z"/>
|
||||
<path class="cls-1" d="M211.59,108.17h-3.06v-6.38l.71-.36c.51-.25,1.12-.25,1.63,0l.72,.36v6.38Zm-2.62-.45h2.17v-5.66l-.47-.23c-.39-.19-.84-.19-1.23,0l-.47,.23v5.66Z"/>
|
||||
<path class="cls-1" d="M193.13,167.23h-9.65v-34c.72-2.03,2.66-3.38,4.82-3.33,3.2,0,4.74,3.17,4.81,3.3v.1l.02,33.93Zm-9.21-.44h8.76v-33.46c-.19-.37-1.66-3-4.38-3-1.96-.06-3.73,1.15-4.38,3v33.46Z"/>
|
||||
<path class="cls-1" d="M192.49,167.09h-8.26v-33.62c.62-1.72,2.28-2.86,4.11-2.82,2.72,0,4,2.64,4.08,2.76l.05,.09,.02,33.59Zm-7.37-.88h6.48v-32.5c-.63-1.24-1.86-2.06-3.24-2.17-1.42-.05-2.72,.8-3.24,2.13v32.54Z"/>
|
||||
<path class="cls-1" d="M185.12,184h-6.12v-10.37c.5-1.2,1.7-1.95,3-1.88,1.27,.05,2.43,.75,3.06,1.85v.08l.06,10.32Zm-5.79-.34h5.45v-9.93c-.58-.97-1.62-1.59-2.75-1.65-1.16-.09-2.24,.57-2.71,1.63v9.95Z"/>
|
||||
<path class="cls-1" d="M184.48,184.23h-4.93l.12-10.4c.35-.97,1.32-1.58,2.35-1.48,1,.03,1.92,.54,2.49,1.36l.08,.11-.11,10.41Zm-4-.89h3.15l.1-9.24c-.41-.51-1.02-.83-1.68-.86-.61-.08-1.2,.24-1.47,.79l-.1,9.31Z"/>
|
||||
<path class="cls-1" d="M191.44,183.78h-.33v-10.2c.51-1.19,1.71-1.94,3-1.88,1.27,.05,2.42,.75,3.06,1.85v7.26h-.17v-7.13c-.59-.97-1.62-1.59-2.75-1.65-1.16-.08-2.24,.57-2.71,1.63l-.1,10.12Z"/>
|
||||
<path class="cls-1" d="M192.56,183.79h-.89l.12-9.95c.35-.97,1.32-1.58,2.35-1.48,1,.04,1.92,.54,2.49,1.36l.07,.11v7.82h-.89v-7.55c-.41-.52-1.01-.83-1.67-.86-.61-.08-1.2,.24-1.48,.79l-.1,9.76Z"/>
|
||||
<path class="cls-1" d="M218.08,108.17h-3.08v-6.38l.84-.42c.44-.22,.95-.22,1.39,0l.83,.42,.02,6.38Zm-2.61-.45h2.17v-5.66l-.59-.29c-.31-.16-.69-.16-1,0l-.59,.29v5.66Z"/>
|
||||
<path class="cls-1" d="M224.58,108.17h-3.06v-6.38l.84-.42c.43-.22,.95-.22,1.38,0l.84,.42v6.38Zm-2.61-.45h2.17v-5.66l-.6-.29c-.31-.17-.69-.17-1,0l-.59,.29,.02,5.66Z"/>
|
||||
<path class="cls-1" d="M231.08,108.17h-3.08v-6.38l.73-.36c.5-.26,1.1-.26,1.6,0l.73,.36,.02,6.38Zm-2.61-.45h2.16v-5.66l-.48-.24c-.38-.19-.82-.19-1.2,0l-.48,.24v5.66Z"/>
|
||||
<path class="cls-1" d="M237.58,108.17h-3.06v-6.38l.84-.42c.43-.22,.95-.22,1.38,0l.84,.42v6.38Zm-2.62-.45h2.17v-5.66l-.59-.29c-.31-.17-.69-.17-1,0l-.6,.29,.02,5.66Z"/>
|
||||
<path class="cls-1" d="M242.24,98.45h-44.54v-2.45h44.54v2.45Zm-44.1-.45h43.66v-1.54h-43.66v1.54Z"/>
|
||||
<path class="cls-1" d="M247.3,99h-5.5v-1.54h5.5v1.54Zm-5.06-.44h4.62v-.66h-4.62v.66Z"/>
|
||||
<rect class="cls-1" x="197.92" y="96.4" width="44.1" height=".83"/>
|
||||
<path class="cls-1" d="M242.24,99.45h-43.24v-1.45h43.26l-.02,1.45Zm-42.82-.45h42.38v-.55h-42.38v.55Z"/>
|
||||
<path class="cls-1" d="M247.3,109.72h-48.3v-10.72h48.3v10.72Zm-47.88-.44h47.44v-9.83h-47.44v9.83Z"/>
|
||||
<rect class="cls-1" x="173.4" y="109.11" width="31.8" height="1.96"/>
|
||||
<rect class="cls-1" x="240.22" y="99.22" width="1.13" height="10.02"/>
|
||||
<path class="cls-1" d="M246.1,108.34h-4.3v-6.65h4.3v6.65Zm-3.86-.45h3.41v-5.75h-3.41v5.75Z"/>
|
||||
<path class="cls-1" d="M204.43,113h-30.37v-2.1h30.37v2.1Zm-29.92-.45h29.49v-1.21h-29.49v1.21Z"/>
|
||||
<polygon class="cls-1" points="205.19 109.11 215.25 122.27 215.25 123.83 205.19 111.07 205.19 109.11"/>
|
||||
<path class="cls-1" d="M246.76,111h-41.49v-1.7h41.49v1.7Zm-41-.44h40.59v-.82h-40.63l.04,.82Z"/>
|
||||
<polygon class="cls-1" points="213.93 125.06 204.04 112.86 204.38 112.58 213.48 123.81 213.48 122.24 213.93 122.24 213.93 125.06"/>
|
||||
<path class="cls-1" d="M203.78,119.32h-28.28v-6.82h28.28v6.82Zm-27.78-.45h27.39v-5.87h-27.39v5.87Z"/>
|
||||
<path class="cls-1" d="M182.45,119.32h-2.65v-4.7h2.65v4.7Zm-2.21-.45h1.76v-3.8h-1.76v3.8Z"/>
|
||||
<path class="cls-1" d="M187.22,119.32h-2.65v-4.7h2.65v4.7Zm-2.2-.45h1.75v-3.8h-1.77l.02,3.8Z"/>
|
||||
<path class="cls-1" d="M194.83,119.32h-2.65v-4.7h2.65v4.7Zm-2.2-.45h1.76v-3.8h-1.76v3.8Z"/>
|
||||
<path class="cls-1" d="M199.62,119.32h-2.62v-4.7h2.65l-.03,4.7Zm-2.21-.45h1.76v-3.8h-1.76v3.8Z"/>
|
||||
<rect class="cls-1" x="174.28" y="119.09" width="30.58" height="1.85"/>
|
||||
<polygon class="cls-1" points="204.87 119.09 214.19 130.2 214.19 131.73 204.87 120.95 204.87 119.09"/>
|
||||
<rect class="cls-1" x="212.99" y="123.83" width=".45" height="5.45"/>
|
||||
<polygon class="cls-1" points="212.86 155.47 212.41 155.47 212.41 131.82 203.46 122.06 175.72 122.06 175.72 121.62 203.66 121.62 212.86 131.65 212.86 155.47"/>
|
||||
<polygon class="cls-1" points="1.57 105.89 28.52 106.61 37.02 112.81 36.56 114.64 28.17 108.56 1.57 107.88 1.57 105.89"/>
|
||||
<polygon class="cls-1" points="34.68 114.82 27.63 109.65 3.13 109.14 3.14 108.69 27.78 109.21 34.94 114.46 34.68 114.82"/>
|
||||
<polygon class="cls-1" points="34.31 116.51 26.78 111.24 3.72 110.59 3.74 109.92 27 110.58 34.7 115.97 34.31 116.51"/>
|
||||
<polygon class="cls-1" points="10.53 115.15 174.28 120.02 175.72 120.02 175.72 122.85 10.53 117.51 10.53 115.15"/>
|
||||
<path class="cls-1" d="M1.41,181.53l-1.41-.07v-.22L3.48,109.86l1.4,.07v.22L1.41,181.53Zm-.94-.53H.98l3.45-70.72h-.52L.47,181Z"/>
|
||||
<path class="cls-1" d="M11.19,119.16H6.43v-5.29h4.76v5.29Zm-4.43-.33h4.09v-4.63H6.76v4.63Z"/>
|
||||
<rect class="cls-1" x="23.72" y="113.75" width="6.02" height=".33" transform="translate(-88.42 134.69) rotate(-87.02)"/>
|
||||
<path class="cls-1" d="M244.31,122.51h-4.26v-10.78h4.26v10.78Zm-3.92-.34h3.61v-10.11h-3.59l-.02,10.11Z"/>
|
||||
<rect class="cls-1" x="240.22" y="115.59" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="240.22" y="117.96" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M237.91,122.51h-4.26v-10.78h4.26v10.78Zm-3.93-.34h3.59v-10.11h-3.57l-.02,10.11Z"/>
|
||||
<rect class="cls-1" x="233.81" y="115.59" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="233.81" y="117.96" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M231.5,122.51h-4.26v-10.78h4.26v10.78Zm-3.93-.34h3.6v-10.11h-3.6v10.11Z"/>
|
||||
<rect class="cls-1" x="227.41" y="115.59" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="227.41" y="117.96" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M225.09,122.51h-4.26v-10.78h4.26v10.78Zm-3.92-.34h3.59v-10.11h-3.59v10.11Z"/>
|
||||
<rect class="cls-1" x="221" y="115.59" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="221" y="117.96" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M218.68,122.51h-4.26v-10.78h4.26v10.78Zm-3.92-.34h3.59v-10.11h-3.59v10.11Z"/>
|
||||
<rect class="cls-1" x="214.59" y="115.59" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="214.59" y="117.96" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M212.35,119.59l-4.26-5.59v-2.29h4.26v7.88Zm-3.93-5.68l3.6,4.69v-6.54h-3.6v1.85Z"/>
|
||||
<rect class="cls-1" x="209.53" y="115.59" width="2.66" height=".33"/>
|
||||
<path class="cls-1" d="M217.58,129.89h-3v-4.24h3v4.24Zm-2.61-.33h2.28v-3.56h-2.25l-.03,3.56Z"/>
|
||||
<path class="cls-1" d="M224.27,129.89h-3v-4.24h3v4.24Zm-2.62-.33h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<path class="cls-1" d="M231,129.89h-3v-4.24h3v4.24Zm-2.62-.33h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<path class="cls-1" d="M237.63,129.89h-2.95v-4.24h2.95v4.24Zm-2.61-.33h2.28v-3.56h-2.3l.02,3.56Z"/>
|
||||
<path class="cls-1" d="M244.31,129.89h-2.94v-4.24h2.94v4.24Zm-2.61-.33h2.3v-3.56h-2.3v3.56Z"/>
|
||||
<path class="cls-1" d="M217.58,136.66h-3v-4.24h3v4.24Zm-2.61-.34h2.28v-3.57h-2.25l-.03,3.57Z"/>
|
||||
<path class="cls-1" d="M224.27,136.66h-3v-4.24h3v4.24Zm-2.62-.34h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M231,136.66h-3v-4.24h3v4.24Zm-2.62-.34h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M237.63,136.66h-2.95v-4.24h2.95v4.24Zm-2.61-.34h2.28v-3.57h-2.3l.02,3.57Z"/>
|
||||
<path class="cls-1" d="M244.31,136.66h-2.94v-4.24h2.94v4.24Zm-2.61-.34h2.3v-3.57h-2.3v3.57Z"/>
|
||||
<path class="cls-1" d="M217.58,143.32h-3v-4.24h3v4.24Zm-2.58-.32h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M224.27,143.32h-3v-4.24h3v4.24Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M231,143.32h-3v-4.24h3v4.24Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M237.63,143.32h-2.95v-4.24h2.95v4.24Zm-2.63-.32h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M244.31,143.32h-2.94v-4.24h2.94v4.24Zm-2.61-.32h2.3v-3.57h-2.3v3.57Z"/>
|
||||
<path class="cls-1" d="M217.58,150.56h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.25l-.03,3.57Z"/>
|
||||
<path class="cls-1" d="M224.27,150.56h-3v-4.23h3v4.23Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M231,150.56h-3v-4.23h3v4.23Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M237.63,150.56h-2.95v-4.23h2.95v4.23Zm-2.61-.33h2.28v-3.57h-2.3l.02,3.57Z"/>
|
||||
<path class="cls-1" d="M244.31,150.56h-2.94v-4.23h2.94v4.23Zm-2.61-.33h2.3v-3.57h-2.3v3.57Z"/>
|
||||
<polygon class="cls-1" points="10.53 124.19 175.93 127.08 175.9 128.69 10.53 125.68 10.53 124.19"/>
|
||||
<path class="cls-1" d="M203.28,167.23h-27.78v-44.67h27.78v44.67Zm-27.28-.44h26.88v-43.79h-26.88v43.79Z"/>
|
||||
<rect class="cls-1" x="184.79" y="141.25" width="7.25" height=".44"/>
|
||||
<rect class="cls-1" x="184.68" y="145.08" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="184.68" y="143.16" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="184.79" y="150.99" width="7.25" height=".44"/>
|
||||
<rect class="cls-1" x="184.68" y="154.82" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="184.68" y="152.9" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="188.08" y="141.47" width=".45" height="3.83"/>
|
||||
<rect class="cls-1" x="188.08" y="151.37" width=".45" height="3.83"/>
|
||||
<polygon class="cls-1" points="9.08 165.18 173.48 167.63 173.48 170.18 9.08 167.34 9.08 165.18"/>
|
||||
<rect class="cls-1" x="172.49" y="166.12" width="34.08" height="2.2"/>
|
||||
<polygon class="cls-1" points="206.06 169.85 172.82 169.85 172.82 167.68 173.26 167.68 173.26 169.41 205.61 169.41 205.61 167.92 206.06 167.92 206.06 169.85"/>
|
||||
<rect class="cls-1" x="-7.95" y="144.56" width="39.73" height="1.59" transform="translate(-133.85 150.2) rotate(-87.22)"/>
|
||||
<rect class="cls-1" x="6.34" y="144.99" width="40.13" height="1.59" transform="translate(-120.32 166.35) rotate(-87.71)"/>
|
||||
<rect class="cls-1" x="19.03" y="145.35" width="40.1" height="1.59" transform="translate(-107.79 182.44) rotate(-88.91)"/>
|
||||
<rect class="cls-1" x="31.37" y="145.35" width="40.1" height="1.59" transform="translate(-95.68 194.77) rotate(-88.91)"/>
|
||||
<rect class="cls-1" x="62.97" y="126.34" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="75.31" y="126.57" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="87.64" y="126.57" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="99.98" y="126.34" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="112.32" y="127.49" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="124.66" y="126.57" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="137" y="127.49" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="149.34" y="127.49" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="161.68" y="128.38" width="1.59" height="40.1"/>
|
||||
<polygon class="cls-1" points="13.82 165.19 13.37 165.16 15.5 126.98 13.4 125.8 13.62 125.41 15.96 126.73 15.95 126.87 13.82 165.19"/>
|
||||
<polygon class="cls-1" points="174.04 172.23 9.86 169.58 9.86 166.66 11.2 166.66 11.2 168.27 174.06 170.9 174.04 172.23"/>
|
||||
<rect class="cls-1" x="0" y="181.37" width="174.05" height="2.41"/>
|
||||
<polygon class="cls-1" points="193.14 184.22 173.61 184.22 173.61 170.08 206.28 170.08 206.28 174.23 205.39 174.23 205.39 170.97 174.5 170.97 174.5 183.34 193.14 183.34 193.14 184.22"/>
|
||||
<rect class="cls-1" x="9.86" y="167.04" width="2.28" height="15.03"/>
|
||||
<rect class="cls-1" x="24.48" y="168.92" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="36.94" y="168.92" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="49.41" y="169.81" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="61.87" y="169.81" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="74.33" y="170.18" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="86.8" y="170.18" width="2.28" height="12.72"/>
|
||||
<rect class="cls-1" x="99.26" y="170.64" width="2.28" height="12.43"/>
|
||||
<rect class="cls-1" x="111.72" y="170.64" width="2.28" height="12.43"/>
|
||||
<rect class="cls-1" x="124.18" y="170.64" width="2.28" height="12.11"/>
|
||||
<rect class="cls-1" x="136.65" y="170.64" width="2.28" height="12.43"/>
|
||||
<rect class="cls-1" x="149.11" y="171.12" width="2.28" height="12.16"/>
|
||||
<rect class="cls-1" x="161.57" y="171.23" width="2.28" height="11.83"/>
|
||||
<path class="cls-1" d="M172.05,140.76h-6.39v-7.92h6.39v7.92Zm-6-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="165.88" y="134.73" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="168.69" y="134.9" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M172.05,152.36h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="165.88" y="146.33" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="168.69" y="146.5" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M172.05,164h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="165.88" y="157.93" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="168.69" y="158.1" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M159.5,140.31h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="153.33" y="134.29" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="156.13" y="134.45" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M159.5,151.92h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="153.33" y="145.89" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="156.13" y="146.05" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M159.5,163.52h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="153.33" y="157.49" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="156.13" y="157.65" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M147.16,140.11h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="140.99" y="134.08" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="143.8" y="134.25" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M147.16,151.71h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="140.99" y="145.68" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="143.8" y="145.85" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M147.16,163.31h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="140.99" y="157.29" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="143.8" y="157.45" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M134.82,139.84h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="128.65" y="133.81" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="131.46" y="133.97" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M134.82,151.44h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="128.65" y="145.41" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="131.46" y="145.58" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M134.82,163h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="128.65" y="157.01" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="131.46" y="157.18" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M122.35,139.57h-6.35v-7.91h6.39l-.04,7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="116.18" y="133.54" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="118.99" y="133.71" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M122.35,151.17h-6.35v-7.91h6.39l-.04,7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="116.18" y="145.15" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="118.99" y="145.31" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M122.35,162.78h-6.35v-7.92h6.39l-.04,7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="116.18" y="156.75" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="118.99" y="156.91" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M110.29,139.41h-6.39v-7.91h6.39v7.91Zm-5.94-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="104.12" y="133.38" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="106.93" y="133.55" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M110.29,151h-6.39v-7.9h6.39v7.9Zm-5.94-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="104.12" y="144.99" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="106.93" y="145.15" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M110.29,162.61h-6.39v-7.91h6.39v7.91Zm-5.94-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="104.12" y="156.59" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="106.93" y="156.75" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M97.8,139.08h-6.39v-7.91h6.39v7.91Zm-5.94-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="91.64" y="133.05" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="94.44" y="133.22" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M97.8,150.68h-6.39v-7.91h6.39v7.91Zm-5.94-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="91.64" y="144.65" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="94.44" y="144.82" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M97.8,162.28h-6.39v-7.91h6.39v7.91Zm-5.94-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="91.64" y="156.26" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="94.44" y="156.42" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M85.47,138.89h-6.4v-7.89h6.4v7.89Zm-6-.45h5.53v-7h-5.5l-.03,7Z"/>
|
||||
<rect class="cls-1" x="79.3" y="132.86" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="82.1" y="133.03" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M85.47,150.49h-6.4v-7.91h6.4v7.91Zm-6-.44h5.53v-7h-5.5l-.03,7Z"/>
|
||||
<rect class="cls-1" x="79.3" y="144.46" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="82.1" y="144.63" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M85.47,162.09h-6.4v-7.91h6.4v7.91Zm-6-.44h5.53v-7h-5.5l-.03,7Z"/>
|
||||
<rect class="cls-1" x="79.3" y="156.06" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="82.1" y="156.23" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M73.13,138.5h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="66.96" y="132.47" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="69.76" y="132.64" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M73.13,150.1h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="66.96" y="144.07" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="69.76" y="144.24" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M73.13,161.7h-6.39v-7.91h6.39v7.91Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="66.96" y="155.67" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="69.76" y="155.84" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M61,138.5h-6.41v-7.92h6.41v7.92Zm-6-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="54.81" y="132.47" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="57.62" y="132.64" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M61,150.1h-6.41v-7.92h6.41v7.92Zm-6-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="54.81" y="144.07" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="57.62" y="144.24" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M61,161.7h-6.41v-7.91h6.41v7.91Zm-6-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="54.81" y="155.67" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="57.62" y="155.84" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M48.45,138.3h-6.39v-7.92h6.39v7.92Zm-6-.45h5.55v-7h-5.5l-.05,7Z"/>
|
||||
<rect class="cls-1" x="42.28" y="132.27" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="45.09" y="132.43" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M48.45,149.9h-6.39v-7.9h6.39v7.9Zm-6-.45h5.55v-7h-5.5l-.05,7Z"/>
|
||||
<rect class="cls-1" x="42.28" y="143.87" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="45.09" y="144.04" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M48.45,161.5h-6.39v-7.92h6.39v7.92Zm-6-.45h5.55v-7h-5.5l-.05,7Z"/>
|
||||
<rect class="cls-1" x="42.28" y="155.47" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="45.09" y="155.64" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M36.3,137.88h-6.39v-7.88h6.39v7.88Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="30.13" y="131.85" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="32.94" y="132.01" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M36.3,149.48h-6.39v-7.92h6.39v7.92Zm-5.95-.48h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="30.13" y="143.45" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="32.94" y="143.62" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M36.3,161.08h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="30.13" y="155.05" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="32.94" y="155.22" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M23.69,137.85h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="17.52" y="131.82" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="20.33" y="131.99" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M23.69,149.45h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="17.52" y="143.42" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="20.33" y="143.59" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M23.69,161.05h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="17.52" y="155.02" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="20.33" y="155.19" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M175.72,130.12c-6.5-.12-159.09-2.93-160-3v-.44c1.25,.11,158.39,3,160,3v.44Z"/>
|
||||
<rect class="cls-1" x="12.52" y="168.96" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="27.17" y="168.96" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="52.11" y="168.96" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="64.58" y="169.83" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="77.05" y="169.83" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="89.52" y="169.83" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="101.98" y="170.41" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="114.45" y="170.49" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="126.92" y="170.28" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="139.39" y="170.88" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="151.86" y="170.88" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="164.33" y="170.88" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="39.64" y="169.47" width=".33" height="13.11"/>
|
||||
<polygon class="cls-1" points="175.47 123.64 11.01 118.27 10.54 117.51 10.82 117.33 11.2 117.94 175.48 123.31 175.47 123.64"/>
|
||||
<path class="cls-1" d="M22.18,179.26h-7v-6.8l7,.08v6.72Zm-6.74-.26h6.56v-6.28l-6.51-.07-.05,6.35Z"/>
|
||||
<rect class="cls-1" x="18.62" y="171.34" width=".22" height="6.74" transform="translate(-156.17 191.69) rotate(-89.43)"/>
|
||||
<rect class="cls-1" x="18.6" y="174.45" width=".22" height="4.7"/>
|
||||
<path class="cls-1" d="M35.37,179.26h-6.53v-6.58l6.53,.08v6.5Zm-6.3-.22h6.08v-6.04l-6.08-.08v6.12Z"/>
|
||||
<rect class="cls-1" x="31.99" y="171.45" width=".22" height="6.3" transform="translate(-142.77 205.21) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="32.01" y="174.61" width=".22" height="4.54"/>
|
||||
<path class="cls-1" d="M47.27,179.26h-6.18v-6.4l6.18,.07v6.33Zm-6-.22h5.74v-5.89l-5.74-.07v5.96Z"/>
|
||||
<rect class="cls-1" x="44.15" y="172.01" width=".22" height="5.95" transform="translate(-131.16 217.49) rotate(-89.43)"/>
|
||||
<rect class="cls-1" x="44.09" y="174.73" width=".22" height="4.41"/>
|
||||
<path class="cls-1" d="M59.62,179.26h-5.84v-6.26l5.84,.07v6.19Zm-5.62-.26h5.39v-5.71l-5.39-.03v5.74Z"/>
|
||||
<rect class="cls-1" x="56.58" y="172.06" width=".22" height="5.61" transform="translate(-118.65 230.06) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="56.6" y="174.86" width=".22" height="4.29"/>
|
||||
<path class="cls-1" d="M72.43,179.26h-5.53v-6.06l5.53,.07v5.99Zm-5.31-.26h5.09v-5.55l-5.09-.06v5.61Z"/>
|
||||
<rect class="cls-1" x="69.55" y="172.32" width=".22" height="5.31" transform="translate(-105.9 243.14) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="69.57" y="174.98" width=".22" height="4.17"/>
|
||||
<path class="cls-1" d="M84.8,179.26h-5.24v-5.89l5.24,.06v5.83Zm-5-.22h4.79v-5.39l-4.79-.06v5.45Z"/>
|
||||
<rect class="cls-1" x="82.2" y="172.84" width=".22" height="5.02" transform="translate(-93.85 255.91) rotate(-89.43)"/>
|
||||
<rect class="cls-1" x="82.09" y="175.1" width=".22" height="4.05"/>
|
||||
<path class="cls-1" d="M96.75,179.26h-5v-5.75l5,.06v5.69Zm-4.75-.26h4.54v-5.25h-4.54v5.25Z"/>
|
||||
<rect class="cls-1" x="94.15" y="172.81" width=".22" height="4.77" transform="translate(-81.73 267.95) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="94.16" y="175.2" width=".22" height="3.95"/>
|
||||
<path class="cls-1" d="M109.15,179.26h-4.75v-5.61l4.75,.06v5.55Zm-4.52-.22h4.3v-5.11l-4.3-.05v5.16Z"/>
|
||||
<rect class="cls-1" x="106.67" y="173.03" width=".22" height="4.52" transform="translate(-69.42 280.57) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="106.68" y="175.3" width=".22" height="3.85"/>
|
||||
<path class="cls-1" d="M121.11,179.26h-4.52v-5.46h4.52v5.46Zm-4.29-.22h4.06v-5h-4.06v5Z"/>
|
||||
<rect class="cls-1" x="118.73" y="173.25" width=".22" height="4.29" transform="translate(-57.56 292.74) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="118.75" y="175.4" width=".22" height="3.75"/>
|
||||
<path class="cls-1" d="M133.52,179.26h-4.3v-5.33h4.3v5.33Zm-4.08-.22h3.86v-4.84h-3.86v4.84Z"/>
|
||||
<rect class="cls-1" x="131.27" y="173.46" width=".22" height="4.08" transform="translate(-45.24 305.37) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="131.27" y="175.49" width=".22" height="3.65"/>
|
||||
<path class="cls-1" d="M146,179.26h-4.12v-5.21h4.12v5.21Zm-3.9-.22h3.67v-4.72h-3.67v4.72Z"/>
|
||||
<rect class="cls-1" x="143.77" y="173.62" width=".22" height="3.89" transform="translate(-32.91 317.94) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="143.79" y="175.58" width=".22" height="3.57"/>
|
||||
<path class="cls-1" d="M158.38,179.26h-3.95v-5.1h3.95v5.1Zm-3.72-.22h3.5v-4.62h-3.5v4.62Z"/>
|
||||
<rect class="cls-1" x="156.28" y="173.78" width=".22" height="3.72" transform="translate(-20.58 330.52) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="156.31" y="175.66" width=".22" height="3.49"/>
|
||||
<path class="cls-1" d="M170.82,179.26h-3.82v-5h3.78l.04,5Zm-3.56-.22h3.33v-4.51h-3.33v4.51Z"/>
|
||||
<rect class="cls-1" x="168.82" y="173.95" width=".22" height="3.56" transform="translate(-8.24 343.15) rotate(-89.51)"/>
|
||||
<rect class="cls-1" x="168.82" y="175.74" width=".22" height="3.41"/>
|
||||
<polygon class="cls-1" points="206.56 166.12 210.16 168.01 210.16 169.94 206.56 168.32 206.56 166.12"/>
|
||||
<polygon class="cls-1" points="209.55 169.31 204.75 167.53 204.75 130.08 211.3 136.16 211.3 155.18 210.41 155.18 210.41 136.55 205.64 132.12 205.64 166.91 209.86 168.48 209.55 169.31"/>
|
||||
<polygon class="cls-1" points="241.07 178.58 239.25 178.58 239.5 177.61 239.5 161.82 239.25 160.6 241.07 160.6 240.84 161.82 240.84 177.6 241.07 178.58"/>
|
||||
<polygon class="cls-1" points="243.22 178.58 241.4 178.58 241.65 177.61 241.65 161.82 241.4 160.6 243.22 160.6 242.99 161.82 242.99 177.6 243.22 178.58"/>
|
||||
<path class="cls-1" d="M195.16,183.16l-1.42-.08s4.56-3.23,6-4.44,5-4.93,5-4.93l1.62,.09,4.19-6.12,.67,.68-4,6.28h-2s-3.54,3.66-4.84,4.76-5.22,3.76-5.22,3.76Z"/>
|
||||
<path class="cls-1" d="M220.62,175.4h-3.56l3.12-6.55h3.29l-2.85,6.55Zm-2.85-.44h2.55l2.47-5.66h-2.33l-2.69,5.66Z"/>
|
||||
<path class="cls-1" d="M216.53,183.93h-4.42l4.33-7.76h3.27l-3.18,7.76Zm-3.66-.45h3.36l2.82-6.88h-2.35l-3.83,6.88Z"/>
|
||||
<path class="cls-1" d="M216.52,186.48h-4.43v-2.42h4.43v2.42Zm-4-.44h3.54v-1.53h-3.54v1.53Z"/>
|
||||
<rect class="cls-1" x="231.51" y="186.47" width="2.71" height=".6"/>
|
||||
<rect class="cls-1" x="231.51" y="182.95" width="2.71" height=".47"/>
|
||||
<path class="cls-1" d="M234,186.33h-2.19v-2.86h2.19v2.86Zm-2-.22h1.74v-2.42h-1.74v2.42Z"/>
|
||||
<rect class="cls-1" x="192.82" y="186.34" width="2.71" height=".6"/>
|
||||
<rect class="cls-1" x="192.82" y="182.82" width="2.71" height=".47"/>
|
||||
<path class="cls-1" d="M195.27,186.2h-2.27v-2.86h2.29l-.02,2.86Zm-2.06-.22h1.84v-2.42h-1.84v2.42Z"/>
|
||||
<rect class="cls-1" x="229.58" y="171.53" width="7.22" height="1.34" transform="translate(1.76 346.76) rotate(-73.47)"/>
|
||||
<path class="cls-1" d="M231.93,183.28c-.31-1.17-.55-2.37-.71-3.57,0-.57,.1-4.08,.1-4.23l1.34,.05c0,1-.12,3.71-.11,4.14,.17,1.11,.4,2.21,.68,3.29l-1.3,.32Z"/>
|
||||
<rect class="cls-1" x="195.76" y="185.38" width="16.46" height=".33"/>
|
||||
<rect class="cls-1" x="196.92" y="184.42" width="15.35" height=".33"/>
|
||||
<rect class="cls-1" x="198.11" y="183.46" width="14.32" height=".33"/>
|
||||
<rect class="cls-1" x="199.32" y="182.5" width="13.63" height=".33"/>
|
||||
<rect class="cls-1" x="200.54" y="181.54" width="13.1" height=".33"/>
|
||||
<rect class="cls-1" x="201.45" y="180.58" width="12.69" height=".33"/>
|
||||
<rect class="cls-1" x="202.39" y="179.62" width="12.32" height=".33"/>
|
||||
<rect class="cls-1" x="203.31" y="178.66" width="11.9" height=".33"/>
|
||||
<rect class="cls-1" x="204.57" y="177.7" width="11.18" height=".33"/>
|
||||
<rect class="cls-1" x="205.49" y="176.74" width="10.71" height=".33"/>
|
||||
<rect class="cls-1" x="216.77" y="185.38" width="15.11" height=".33"/>
|
||||
<rect class="cls-1" x="217.25" y="184.42" width="14.61" height=".33"/>
|
||||
<rect class="cls-1" x="217.7" y="183.46" width="14.14" height=".33"/>
|
||||
<rect class="cls-1" x="224.95" y="175.69" width=".33" height="13.94" transform="translate(42.06 407.46) rotate(-89.9)"/>
|
||||
<rect class="cls-1" x="218.59" y="181.54" width="13.1" height=".33"/>
|
||||
<rect class="cls-1" x="219.04" y="180.58" width="12.69" height=".33"/>
|
||||
<rect class="cls-1" x="219.48" y="179.62" width="12.32" height=".33"/>
|
||||
<rect class="cls-1" x="219.93" y="178.66" width="11.9" height=".33"/>
|
||||
<rect class="cls-1" x="220.37" y="177.7" width="11.18" height=".33"/>
|
||||
<rect class="cls-1" x="220.82" y="176.74" width="10.71" height=".33"/>
|
||||
<rect class="cls-1" x="208.93" y="174.25" width="8.92" height=".33"/>
|
||||
<rect class="cls-1" x="209.69" y="173.21" width="8.62" height=".33"/>
|
||||
<rect class="cls-1" x="210.39" y="172.17" width="8.37" height=".33"/>
|
||||
<rect class="cls-1" x="211.21" y="171.13" width="8.1" height=".33"/>
|
||||
<rect class="cls-1" x="212.49" y="170.09" width="7.26" height=".33"/>
|
||||
<rect class="cls-1" x="221.99" y="174.25" width="10.29" height=".33"/>
|
||||
<rect class="cls-1" x="222.43" y="173.21" width="9.94" height=".33"/>
|
||||
<rect class="cls-1" x="223.24" y="172.17" width="9.66" height=".33"/>
|
||||
<rect class="cls-1" x="223.74" y="171.13" width="9.35" height=".33"/>
|
||||
<rect class="cls-1" x="224.32" y="170.09" width="9.65" height=".33"/>
|
||||
<polygon class="cls-1" points="214.45 169.37 213.56 169.37 213.56 159.15 209.71 159.15 209.71 168.9 208.81 168.9 208.81 158.26 214.45 158.26 214.45 169.37"/>
|
||||
<rect class="cls-1" x="210.01" y="167.48" width="1.34" height=".98"/>
|
||||
<rect class="cls-1" x="233.56" y="168.24" width="1.34" height=".98"/>
|
||||
<rect class="cls-1" x="284.75" y="168.53" width="1.34" height=".98"/>
|
||||
<polyline class="cls-1" points="211.5 167.48 212.2 167.84 212.2 168.66 211.5 168.46"/>
|
||||
<rect class="cls-1" x="218.54" y="158.26" width=".45" height="11.69"/>
|
||||
<rect class="cls-1" x="229.25" y="158.26" width=".45" height="12"/>
|
||||
<path class="cls-1" d="M317.51,108.61h-3.06v-6.38l.82-.41c.44-.22,.97-.22,1.41,0l.83,.41v6.38Zm-2.62-.44h2.17v-5.66l-.58-.29c-.31-.16-.69-.16-1,0l-.58,.29v5.66Z"/>
|
||||
<path class="cls-1" d="M311,108.61h-3v-6.38l.71-.35c.52-.26,1.12-.26,1.64,0l.71,.35-.06,6.38Zm-2.61-.44h2.16v-5.66l-.46-.24c-.39-.19-.85-.19-1.24,0l-.46,.24v5.66Z"/>
|
||||
<path class="cls-1" d="M336.06,167.68h-9.65v-34.05c.06-.14,1.61-3.31,4.8-3.31,2.16-.04,4.1,1.3,4.82,3.34v34l.03,.02Zm-9.21-.45h8.77v-33.47c-.66-1.85-2.43-3.06-4.39-3-2.72,0-4.19,2.64-4.38,3v33.47Z"/>
|
||||
<path class="cls-1" d="M335.31,167.54h-8.26v-33.69c.06-.11,1.36-2.75,4.09-2.75,1.83-.04,3.48,1.09,4.11,2.81v.14l.06,33.49Zm-7.37-.89h6.48v-32.53c-.52-1.33-1.82-2.18-3.24-2.13-1.38,.11-2.61,.93-3.24,2.16v32.5Z"/>
|
||||
<path class="cls-1" d="M340.54,184.39h-6.12v-10.35h0c.63-1.1,1.79-1.8,3.06-1.85,1.29-.06,2.49,.69,3,1.88v10.36l.06-.04Zm-5.79-.33h5.46v-9.95c-.46-1.06-1.55-1.72-2.71-1.63-1.13,.05-2.16,.67-2.74,1.64v9.94Z"/>
|
||||
<path class="cls-1" d="M340,184.67h-4.94l-.1-10.41,.07-.11c.58-.81,1.5-1.31,2.5-1.35,1.03-.11,1.99,.51,2.34,1.48v.11l.13,10.28Zm-4.05-.89h3.15l-.1-9.31c-.27-.55-.86-.86-1.47-.78-.66,.03-1.27,.34-1.68,.85l.1,9.24Z"/>
|
||||
<path class="cls-1" d="M328.09,184.23v-10.12c-.47-1.06-1.55-1.72-2.71-1.63-1.13,.05-2.16,.67-2.75,1.64v7.14h-.33l.05-7.26c.63-1.1,1.79-1.8,3.06-1.85,1.3-.07,2.5,.68,3,1.88v10.19h-.32Z"/>
|
||||
<path class="cls-1" d="M327,184.23l-.1-9.76c-.27-.55-.86-.86-1.47-.78-.66,.03-1.27,.34-1.68,.86v7.53h-.89v-7.82l.08-.11c.57-.82,1.49-1.32,2.49-1.35,1.03-.1,2,.51,2.35,1.48v.11l.11,9.83h-.89Z"/>
|
||||
<path class="cls-1" d="M304.51,108.61h-3.06v-6.38l.84-.42c.44-.21,.94-.21,1.38,0l.84,.42v6.38Zm-2.61-.44h2.17v-5.66l-.6-.3c-.31-.16-.69-.16-1,0l-.59,.3,.02,5.66Z"/>
|
||||
<path class="cls-1" d="M298,108.61h-3v-6.38l.84-.42c.44-.21,.95-.21,1.39,0l.83,.42-.06,6.38Zm-2.61-.44h2.17v-5.66l-.59-.3c-.32-.15-.68-.15-1,0l-.59,.3v5.66Z"/>
|
||||
<path class="cls-1" d="M291.52,108.61h-3.06v-6.38l.72-.36c.51-.25,1.1-.25,1.61,0l.73,.36v6.38Zm-2.62-.44h2.17v-5.66l-.48-.24c-.38-.19-.83-.19-1.21,0l-.48,.24v5.66Z"/>
|
||||
<path class="cls-1" d="M285,108.61h-3v-6.38l.84-.42c.44-.21,.94-.21,1.38,0l.84,.42-.06,6.38Zm-2.62-.44h2.17v-5.66l-.59-.3c-.31-.16-.69-.16-1,0l-.6,.3,.02,5.66Z"/>
|
||||
<path class="cls-1" d="M321.84,98.9h-44.55v-2.44h44.55v2.44Zm-44.1-.45h43.65v-1.54h-43.65v1.54Z"/>
|
||||
<path class="cls-1" d="M277.74,99.4h-5.51v-1.5h5.51v1.5Zm-5.06-.4h4.61v-.6h-4.61v.6Z"/>
|
||||
<rect class="cls-1" x="277.52" y="96.85" width="44.1" height=".83"/>
|
||||
<path class="cls-1" d="M320.56,99.89h-43.27v-1.44h43.27v1.44Zm-42.82-.44h42.38v-.55h-42.38v.55Z"/>
|
||||
<path class="cls-1" d="M320.56,110.17h-48.33v-10.72h48.33v10.72Zm-47.88-.45h47.44v-9.83h-47.44v9.83Z"/>
|
||||
<rect class="cls-1" x="314.34" y="109.56" width="31.8" height="1.96"/>
|
||||
<rect class="cls-1" x="278.18" y="99.67" width="1.13" height="10.02"/>
|
||||
<path class="cls-1" d="M277.74,108.78h-4.3v-6.64h4.3v6.64Zm-3.86-.44h3.41v-5.76h-3.41v5.76Z"/>
|
||||
<path class="cls-1" d="M345.48,113.39h-30.38v-2.1h30.38v2.1Zm-29.93-.39h29.45v-1.21h-29.45v1.21Z"/>
|
||||
<polygon class="cls-1" points="314.34 109.56 304.29 122.72 304.29 124.27 314.34 111.51 314.34 109.56"/>
|
||||
<path class="cls-1" d="M314.26,111.43h-41.48v-1.71h41.48v1.71Zm-41-.45h40.6v-.81h-40.6v.81Z"/>
|
||||
<polygon class="cls-1" points="305.61 125.51 305.61 122.68 306.05 122.68 306.05 124.25 315.15 113.03 315.5 113.31 305.61 125.51"/>
|
||||
<path class="cls-1" d="M344,119.76h-28.24v-6.76h28.24v6.76Zm-27.83-.44h27.39v-5.93h-27.36l-.03,5.93Z"/>
|
||||
<path class="cls-1" d="M339.74,119.76h-2.65v-4.69h2.65v4.69Zm-2.2-.44h1.75v-3.81h-1.75v3.81Z"/>
|
||||
<path class="cls-1" d="M335,119.76h-2.65v-4.69h2.65v4.69Zm-2.21-.44h1.76v-3.81h-1.76v3.81Z"/>
|
||||
<path class="cls-1" d="M327.35,119.76h-2.64v-4.69h2.64v4.69Zm-2.2-.44h1.76v-3.81h-1.76v3.81Z"/>
|
||||
<path class="cls-1" d="M322.57,119.76h-2.65v-4.69h2.65v4.69Zm-2.2-.44h1.75v-3.81h-1.75v3.81Z"/>
|
||||
<rect class="cls-1" x="314.68" y="119.54" width="30.58" height="1.85"/>
|
||||
<polygon class="cls-1" points="314.67 119.54 305.35 130.64 305.35 132.18 314.67 121.39 314.67 119.54"/>
|
||||
<rect class="cls-1" x="306.1" y="124.27" width=".45" height="5.45"/>
|
||||
<polygon class="cls-1" points="307.13 155.91 306.68 155.91 306.68 132.09 306.74 132.03 315.88 122.06 343.81 122.06 343.81 122.51 316.08 122.51 307.13 132.26 307.13 155.91"/>
|
||||
<polygon class="cls-1" points="517.97 106.34 491.02 107.06 482.52 113.25 482.98 115.08 491.37 109.01 517.97 108.33 517.97 106.34"/>
|
||||
<polygon class="cls-1" points="484.86 115.26 484.6 114.91 491.76 109.66 516.4 109.14 516.41 109.58 491.91 110.1 484.86 115.26"/>
|
||||
<polygon class="cls-1" points="485.22 116.96 484.84 116.41 492.54 111.02 515.79 110.37 515.81 111.03 492.76 111.68 485.22 116.96"/>
|
||||
<polygon class="cls-1" points="509.01 115.59 345.25 120.47 343.81 120.47 343.81 123.29 509.01 117.95 509.01 115.59"/>
|
||||
<path class="cls-1" d="M518.13,182v-.23l-3.48-71.38,1.41-.06v.22l3.48,71.38-1.41,.07Zm-3-71.18l3.44,70.71h.52l-3.44-70.72h-.52Z"/>
|
||||
<path class="cls-1" d="M513.11,119.61h-4.76v-5.3h4.76v5.3Zm-4.43-.33h4.09v-4.63h-4.09v4.63Z"/>
|
||||
<rect class="cls-1" x="492.64" y="111.32" width=".33" height="6.02" transform="translate(-5.29 25.86) rotate(-2.99)"/>
|
||||
<path class="cls-1" d="M279.48,123h-4.26v-10.83h4.26v10.83Zm-3.92-.33h3.59v-10.16h-3.59v10.16Z"/>
|
||||
<rect class="cls-1" x="275.39" y="116.04" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="275.39" y="118.4" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M285.89,123h-4.26v-10.83h4.26v10.83Zm-3.93-.33h3.6v-10.16h-3.56l-.04,10.16Z"/>
|
||||
<rect class="cls-1" x="281.8" y="116.04" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="281.8" y="118.4" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M292.3,123h-4.3v-10.83h4.26l.04,10.83Zm-3.93-.33h3.63v-10.16h-3.59l-.04,10.16Z"/>
|
||||
<rect class="cls-1" x="288.2" y="116.04" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="288.2" y="118.4" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M298.71,123h-4.27v-10.83h4.27v10.83Zm-3.93-.33h3.59v-10.16h-3.59v10.16Z"/>
|
||||
<rect class="cls-1" x="294.61" y="116.04" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="294.61" y="118.4" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M305.11,123h-4.26v-10.83h4.26v10.83Zm-3.92-.33h3.59v-10.16h-3.59v10.16Z"/>
|
||||
<rect class="cls-1" x="301.02" y="116.04" width="3.93" height=".33"/>
|
||||
<rect class="cls-1" x="301.02" y="118.4" width="3.93" height=".33"/>
|
||||
<path class="cls-1" d="M307.18,120v-7.86h4.27v2.3l-4.27,5.56Zm.34-7.52v6.54l3.59-4.69v-1.85h-3.59Z"/>
|
||||
<rect class="cls-1" x="307.35" y="116.04" width="2.66" height=".33"/>
|
||||
<path class="cls-1" d="M304.9,130.33h-2.9v-4.23h2.95l-.05,4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M298.22,130.33h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M291.54,130.33h-3v-4.23h3v4.23Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M284.85,130.33h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M278.17,130.33h-2.95v-4.23h2.95v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M304.9,137.1h-2.9v-4.23h2.95l-.05,4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M298.22,137.1h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M291.54,137.1h-3v-4.23h3v4.23Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M284.85,137.1h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M278.17,137.1h-2.95v-4.23h2.95v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M304.9,143.76h-2.9v-4.23h2.95l-.05,4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M298.22,143.76h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M291.54,143.76h-3v-4.23h3v4.23Zm-2.62-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M284.85,143.76h-3v-4.23h3v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M278.17,143.76h-2.95v-4.23h2.95v4.23Zm-2.61-.33h2.28v-3.57h-2.28v3.57Z"/>
|
||||
<path class="cls-1" d="M304.9,151h-2.9v-4.24h2.95l-.05,4.24Zm-2.61-.34h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<path class="cls-1" d="M298.22,151h-3v-4.24h3v4.24Zm-2.61-.34h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<path class="cls-1" d="M291.54,151h-3v-4.24h3v4.24Zm-2.62-.34h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<path class="cls-1" d="M284.85,151h-3v-4.24h3v4.24Zm-2.61-.34h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<path class="cls-1" d="M278.17,151h-2.95v-4.24h2.95v4.24Zm-2.61-.34h2.28v-3.56h-2.28v3.56Z"/>
|
||||
<polygon class="cls-1" points="509.01 124.63 343.61 127.52 343.64 129.13 509.01 126.13 509.01 124.63"/>
|
||||
<path class="cls-1" d="M344,167.68h-27.74v-44.68h27.74v44.68Zm-27.33-.45h26.89v-43.78h-26.86l-.03,43.78Z"/>
|
||||
<rect class="cls-1" x="327.49" y="141.7" width="7.25" height=".44"/>
|
||||
<rect class="cls-1" x="327.49" y="145.52" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="327.49" y="143.61" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="327.49" y="151.44" width="7.25" height=".44"/>
|
||||
<rect class="cls-1" x="327.49" y="155.26" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="327.49" y="153.35" width="7.37" height=".44"/>
|
||||
<rect class="cls-1" x="331.01" y="141.92" width=".45" height="3.83"/>
|
||||
<rect class="cls-1" x="331.01" y="151.81" width=".45" height="3.83"/>
|
||||
<polygon class="cls-1" points="510.45 165.62 346.06 168.08 346.06 170.63 510.45 167.78 510.45 165.62"/>
|
||||
<rect class="cls-1" x="312.97" y="166.56" width="34.08" height="2.2"/>
|
||||
<polygon class="cls-1" points="346.72 170.3 313.48 170.3 313.48 168.36 313.92 168.36 313.92 169.85 346.27 169.85 346.27 168.12 346.72 168.12 346.72 170.3"/>
|
||||
<rect class="cls-1" x="506.81" y="125.98" width="1.59" height="39.73" transform="translate(-6.48 24.79) rotate(-2.78)"/>
|
||||
<rect class="cls-1" x="492.01" y="125.99" width="1.59" height="40.1" transform="translate(-5.13 18.59) rotate(-2.15)"/>
|
||||
<rect class="cls-1" x="479.64" y="126.57" width="1.59" height="40.1" transform="translate(-2.7 9.17) rotate(-1.09)"/>
|
||||
<rect class="cls-1" x="467.31" y="126.57" width="1.59" height="40.1" transform="translate(-2.7 8.93) rotate(-1.09)"/>
|
||||
<rect class="cls-1" x="454.98" y="126.79" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="442.64" y="127.01" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="430.3" y="127.01" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="417.97" y="126.79" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="405.63" y="127.93" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="393.28" y="127.01" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="380.95" y="127.93" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="368.61" y="127.93" width="1.59" height="40.1"/>
|
||||
<rect class="cls-1" x="356.27" y="128.82" width="1.59" height="40.1"/>
|
||||
<polygon class="cls-1" points="505.72 165.63 503.58 127.18 505.92 125.86 506.14 126.24 504.04 127.43 506.17 165.61 505.72 165.63"/>
|
||||
<polygon class="cls-1" points="345.49 172.68 345.47 171.34 508.34 168.71 508.34 167.11 509.68 167.11 509.68 170.02 509.02 170.03 345.49 172.68"/>
|
||||
<rect class="cls-1" x="345.48" y="181.81" width="174.05" height="2.41"/>
|
||||
<polygon class="cls-1" points="345.93 184.67 326.39 184.67 326.39 183.78 345.04 183.78 345.04 171.42 314.15 171.42 314.15 174.67 313.25 174.67 313.25 170.53 345.93 170.53 345.93 184.67"/>
|
||||
<rect class="cls-1" x="507.4" y="167.48" width="2.28" height="15.03"/>
|
||||
<rect class="cls-1" x="492.77" y="169.36" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="480.31" y="169.36" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="467.85" y="170.25" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="455.39" y="170.25" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="442.92" y="170.62" width="2.28" height="13.15"/>
|
||||
<rect class="cls-1" x="430.46" y="170.63" width="2.28" height="12.72"/>
|
||||
<rect class="cls-1" x="418" y="171.08" width="2.28" height="12.43"/>
|
||||
<rect class="cls-1" x="405.54" y="171.08" width="2.28" height="12.43"/>
|
||||
<rect class="cls-1" x="393.07" y="171.08" width="2.28" height="12.11"/>
|
||||
<rect class="cls-1" x="380.61" y="171.08" width="2.28" height="12.43"/>
|
||||
<rect class="cls-1" x="368.15" y="171.56" width="2.28" height="12.16"/>
|
||||
<rect class="cls-1" x="355.68" y="171.67" width="2.28" height="11.83"/>
|
||||
<path class="cls-1" d="M353.88,141.2h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="347.71" y="135.18" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="350.52" y="135.34" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M353.88,152.8h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="347.71" y="146.78" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="350.52" y="146.94" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M353.88,164.41h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="347.71" y="158.38" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="350.52" y="158.54" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M366.43,140.76h-6.43v-7.92h6.39l.04,7.92Zm-5.94-.45h5.51v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="360.26" y="134.73" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="363.07" y="134.9" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M366.43,152.36h-6.43v-7.91h6.39l.04,7.91Zm-5.94-.44h5.51v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="360.26" y="146.33" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="363.07" y="146.5" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M366.43,164h-6.43v-7.91h6.39l.04,7.91Zm-5.94-.44h5.51v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="360.26" y="157.93" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="363.07" y="158.1" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M378.77,140.56h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="372.6" y="134.53" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="375.41" y="134.7" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M378.77,152.16h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="372.6" y="146.13" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="375.41" y="146.3" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M378.77,163.76h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="372.6" y="157.73" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="375.41" y="157.9" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M391.11,140.28h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="384.94" y="134.25" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="387.74" y="134.42" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M391.11,151.88h-6.39v-7.88h6.39v7.88Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="384.94" y="145.85" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="387.74" y="146.02" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M391.11,163.48h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="384.94" y="157.45" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="387.74" y="157.62" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M403.58,140h-6.39v-7.9h6.39v7.9Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="397.41" y="133.99" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="400.22" y="134.16" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M403.58,151.62h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="397.41" y="145.59" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="400.22" y="145.76" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M403.58,163.22h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="397.41" y="157.19" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="400.22" y="157.36" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M415.64,139.86h-6.4v-7.92h6.4v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="409.47" y="133.83" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="412.27" y="134" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M415.64,151.46h-6.4v-7.92h6.4v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="409.47" y="145.43" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="412.27" y="145.6" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M415.64,163.06h-6.4v-7.91h6.4v7.91Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="409.47" y="157.03" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="412.27" y="157.2" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M428.12,139.53h-6.39v-7.92h6.39v7.92Zm-5.94-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="421.95" y="133.5" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="424.76" y="133.66" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M428.12,151.13h-6.39v-7.92h6.39v7.92Zm-5.94-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="421.95" y="145.1" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="424.76" y="145.27" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M428.12,162.73h-6.39v-7.91h6.39v7.91Zm-5.94-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="421.95" y="156.7" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="424.76" y="156.87" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M440.46,139.33h-6.39v-7.91h6.39v7.91Zm-5.94-.44h5.48v-7h-5.5l.02,7Z"/>
|
||||
<rect class="cls-1" x="434.29" y="133.31" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="437.1" y="133.47" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M440.46,150.94h-6.39v-7.94h6.39v7.94Zm-5.94-.45h5.48v-7h-5.5l.02,7Z"/>
|
||||
<rect class="cls-1" x="434.29" y="144.91" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="437.1" y="145.07" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M440.46,162.54h-6.39v-7.92h6.39v7.92Zm-5.94-.45h5.48v-7h-5.5l.02,7Z"/>
|
||||
<rect class="cls-1" x="434.29" y="156.51" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="437.1" y="156.67" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M452.8,138.94h-6.39v-7.94h6.39v7.94Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="446.63" y="132.91" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="449.44" y="133.08" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M452.8,150.54h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="446.63" y="144.51" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="449.44" y="144.68" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M452.8,162.14h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="446.63" y="156.12" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="449.44" y="156.28" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M465,138.94h-6.39v-7.94h6.39v7.94Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="458.78" y="132.91" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="461.59" y="133.08" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M465,150.54h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="458.78" y="144.51" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="461.59" y="144.68" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M465,162.14h-6.39v-7.91h6.39v7.91Zm-6-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="458.78" y="156.12" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="461.59" y="156.28" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M477.48,138.74h-6.39v-7.91h6.39v7.91Zm-6-.44h5.52v-7h-5.5l-.02,7Z"/>
|
||||
<rect class="cls-1" x="471.31" y="132.71" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="474.11" y="132.88" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M477.48,150.34h-6.39v-7.91h6.39v7.91Zm-6-.44h5.52v-7h-5.5l-.02,7Z"/>
|
||||
<rect class="cls-1" x="471.31" y="144.31" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="474.11" y="144.48" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M477.48,161.94h-6.39v-7.94h6.39v7.94Zm-6-.44h5.52v-7h-5.5l-.02,7Z"/>
|
||||
<rect class="cls-1" x="471.31" y="155.91" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="474.11" y="156.08" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M489.63,138.32h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="483.46" y="132.29" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="486.27" y="132.46" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M489.63,149.92h-6.39v-7.92h6.39v7.92Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="483.46" y="143.89" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="486.27" y="144.06" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M489.63,161.52h-6.39v-7.91h6.39v7.91Zm-5.95-.44h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="483.46" y="155.49" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="486.27" y="155.66" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M502.24,138.3h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="496.07" y="132.27" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="498.88" y="132.43" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M502.24,149.9h-6.39v-7.9h6.39v7.9Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="496.07" y="143.87" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="498.88" y="144.04" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M502.24,161.5h-6.39v-7.92h6.39v7.92Zm-5.95-.45h5.5v-7h-5.5v7Z"/>
|
||||
<rect class="cls-1" x="496.07" y="155.47" width="5.95" height=".33"/>
|
||||
<rect class="cls-1" x="498.88" y="155.64" width=".33" height="5.64"/>
|
||||
<path class="cls-1" d="M343.82,130.56v-.44c1.59,0,158.72-2.93,160-3l.05,.45c-.96,.06-153.56,2.87-160.05,2.99Z"/>
|
||||
<rect class="cls-1" x="506.69" y="169.4" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="492.03" y="169.4" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="467.09" y="169.4" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="454.62" y="170.27" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="442.16" y="170.27" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="429.69" y="170.27" width=".33" height="13.11"/>
|
||||
<rect class="cls-1" x="417.22" y="170.85" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="404.75" y="170.93" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="392.28" y="170.72" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="379.81" y="171.33" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="367.34" y="171.33" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="354.87" y="171.33" width=".33" height="12.53"/>
|
||||
<rect class="cls-1" x="479.56" y="169.91" width=".33" height="13.11"/>
|
||||
<polygon class="cls-1" points="344.07 124.09 344.05 123.75 508.34 118.39 508.71 117.78 509 117.95 508.53 118.71 508.44 118.72 344.07 124.09"/>
|
||||
<path class="cls-1" d="M504.32,179.7h-7v-6.7l7-.08v6.78Zm-6.74-.22h6.52v-6.35l-6.52,.08v6.27Z"/>
|
||||
<rect class="cls-1" x="497.48" y="174.77" width="6.74" height=".22" transform="translate(-1.36 3.94) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="500.71" y="174.9" width=".22" height="4.7"/>
|
||||
<path class="cls-1" d="M490.69,179.7h-6.52v-6.5l6.52-.08v6.58Zm-6.3-.22h6.08v-6.13l-6.08,.07v6.06Z"/>
|
||||
<rect class="cls-1" x="484.28" y="174.93" width="6.3" height=".22" transform="translate(-1.36 3.83) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="487.3" y="175.05" width=".22" height="4.54"/>
|
||||
<path class="cls-1" d="M478.44,179.7h-6.17v-6.32l6.17-.08v6.4Zm-5.95-.22h5.73v-5.95l-5.73,.07v5.88Z"/>
|
||||
<rect class="cls-1" x="472.38" y="175.06" width="5.95" height=".22" transform="translate(-1.36 3.74) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="475.23" y="175.18" width=".22" height="4.41"/>
|
||||
<path class="cls-1" d="M465.76,179.7h-5.84v-6.15l5.84-.07v6.22Zm-5.62-.22h5.39v-5.77l-5.39,.06v5.71Z"/>
|
||||
<rect class="cls-1" x="460.03" y="175.18" width="5.61" height=".22" transform="translate(-1.36 3.64) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="462.71" y="175.31" width=".22" height="4.29"/>
|
||||
<path class="cls-1" d="M452.64,179.7h-5.54v-6l5.54-.06v6.06Zm-5.31-.22h5.09v-5.61l-5.09,.06v5.55Z"/>
|
||||
<rect class="cls-1" x="447.22" y="175.3" width="5.31" height=".22" transform="translate(-1.36 3.54) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="449.75" y="175.42" width=".22" height="4.17"/>
|
||||
<path class="cls-1" d="M440,179.7h-5.24v-5.83l5.24-.06v5.89Zm-5-.22h4.79v-5.48l-4.79,.05v5.43Z"/>
|
||||
<rect class="cls-1" x="434.85" y="175.42" width="5.02" height=".22" transform="translate(-1.37 3.44) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="437.23" y="175.54" width=".22" height="4.05"/>
|
||||
<path class="cls-1" d="M427.77,179.7h-5v-5.7l5-.06v5.76Zm-4.76-.22h4.54v-5.3l-4.54,.06v5.24Z"/>
|
||||
<rect class="cls-1" x="422.91" y="175.52" width="4.77" height=".22" transform="translate(-1.37 3.35) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="425.16" y="175.64" width=".22" height="3.95"/>
|
||||
<path class="cls-1" d="M415.13,179.7h-4.74v-5.54l4.74-.06v5.6Zm-4.52-.22h4.3v-5.16l-4.3,.06v5.1Z"/>
|
||||
<rect class="cls-1" x="410.51" y="175.62" width="4.52" height=".22" transform="translate(-1.37 3.25) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="412.64" y="175.74" width=".22" height="3.85"/>
|
||||
<path class="cls-1" d="M402.94,179.7h-4.51v-5.4l4.51-.06v5.46Zm-4.29-.22h4.07v-5l-4.07,.05v4.95Z"/>
|
||||
<rect class="cls-1" x="398.55" y="175.72" width="4.29" height=".22" transform="translate(-1.37 3.15) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="400.56" y="175.85" width=".22" height="3.75"/>
|
||||
<path class="cls-1" d="M390.32,179.7h-4.32v-5.28h4.31v5.28Zm-4.07-.22h3.86v-4.88h-3.86v4.88Z"/>
|
||||
<rect class="cls-1" x="386.13" y="175.82" width="4.08" height=".22" transform="translate(-1.37 3.05) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="388.05" y="175.94" width=".22" height="3.65"/>
|
||||
<path class="cls-1" d="M377.7,179.7h-4.11v-5.16h4.11v5.16Zm-3.89-.22h3.67v-4.76h-3.67v4.76Z"/>
|
||||
<rect class="cls-1" x="374.09" y="175.1" width="3.89" height=".22" transform="translate(-1.73 3.77) rotate(-.57)"/>
|
||||
<rect class="cls-1" x="375.53" y="176.02" width=".22" height="3.57"/>
|
||||
<path class="cls-1" d="M365.1,179.7h-4v-5l4-.05v5.05Zm-3.72-.22h3.5v-4.65h-3.5v4.65Z"/>
|
||||
<rect class="cls-1" x="361.27" y="175.98" width="3.72" height=".22" transform="translate(-1.37 2.86) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="363.01" y="176.1" width=".22" height="3.49"/>
|
||||
<path class="cls-1" d="M352.5,179.7h-3.78v-4.94h3.78v4.94Zm-3.56-.22h3.34v-4.54h-3.34v4.54Z"/>
|
||||
<rect class="cls-1" x="348.83" y="176.06" width="3.56" height=".22" transform="translate(-1.37 2.76) rotate(-.45)"/>
|
||||
<rect class="cls-1" x="350.49" y="176.18" width=".22" height="3.41"/>
|
||||
<polygon class="cls-1" points="312.97 166.57 309.38 168.46 309.38 170.39 312.97 168.76 312.97 166.57"/>
|
||||
<polygon class="cls-1" points="309.98 169.76 309.67 168.93 313.89 167.36 313.89 132.56 309.13 137 309.13 155.63 308.24 155.63 308.24 136.61 314.79 130.52 314.79 167.97 309.98 169.76"/>
|
||||
<polygon class="cls-1" points="278.47 179.02 280.29 179.02 280.04 178.05 280.04 162.27 280.29 161.04 278.47 161.04 278.7 162.27 278.7 178.05 278.47 179.02"/>
|
||||
<polygon class="cls-1" points="276.31 179.02 278.13 179.02 277.88 178.05 277.88 162.27 278.13 161.04 276.31 161.04 276.55 162.27 276.55 178.05 276.31 179.02"/>
|
||||
<path class="cls-1" d="M324.37,183.61l1.43-.09s-4.56-3.22-6-4.43-5-4.93-5-4.93l-1.63,.08-4.17-6.12-.67,.68,4,6.29h2s3.54,3.66,4.83,4.75,5.21,3.77,5.21,3.77Z"/>
|
||||
<path class="cls-1" d="M302.47,175.85h-3.55l-2.85-6.55h3.29l3.11,6.55Zm-3.26-.45h2.56l-2.69-5.66h-2.33l2.46,5.66Z"/>
|
||||
<path class="cls-1" d="M303,184.38l-3.18-7.77h3.27l4.32,7.76h-4.41Zm-2.52-7.31l2.82,6.87h3.36l-3.83-6.87h-2.35Z"/>
|
||||
<path class="cls-1" d="M307.45,186.93h-4.45v-2.42h4.43l.02,2.42Zm-4-.45h3.55v-1.48h-3.54v1.48Z"/>
|
||||
<rect class="cls-1" x="285.32" y="186.92" width="2.71" height=".6"/>
|
||||
<rect class="cls-1" x="285.32" y="183.39" width="2.71" height=".47"/>
|
||||
<path class="cls-1" d="M287.76,186.78h-2.19v-2.87h2.19v2.87Zm-2-.22h1.74v-2.42h-1.7l-.04,2.42Z"/>
|
||||
<rect class="cls-1" x="324" y="186.78" width="2.71" height=".6"/>
|
||||
<rect class="cls-1" x="324" y="183.26" width="2.71" height=".47"/>
|
||||
<path class="cls-1" d="M326.55,186.65h-2.29v-2.87h2.29v2.87Zm-2.07-.22h1.85v-2.43h-1.85v2.43Z"/>
|
||||
<rect class="cls-1" x="285.69" y="169.01" width="1.34" height="7.22" transform="translate(-37.37 88.95) rotate(-16.59)"/>
|
||||
<path class="cls-1" d="M287.61,183.72l-1.3-.32c.29-1.08,.51-2.17,.67-3.28,0-.44-.07-3.14-.1-4.15h1.33c0,.15,.13,3.66,.11,4.23-.17,1.19-.4,2.36-.71,3.52Z"/>
|
||||
<rect class="cls-1" x="307.31" y="185.82" width="16.46" height=".33"/>
|
||||
<rect class="cls-1" x="307.26" y="184.86" width="15.35" height=".33"/>
|
||||
<rect class="cls-1" x="307.11" y="183.9" width="14.32" height=".33"/>
|
||||
<rect class="cls-1" x="306.58" y="182.94" width="13.63" height=".33"/>
|
||||
<rect class="cls-1" x="305.89" y="181.98" width="13.1" height=".33"/>
|
||||
<rect class="cls-1" x="305.4" y="181.02" width="12.69" height=".33"/>
|
||||
<rect class="cls-1" x="304.83" y="180.06" width="12.32" height=".33"/>
|
||||
<rect class="cls-1" x="304.33" y="179.1" width="11.9" height=".33"/>
|
||||
<rect class="cls-1" x="303.79" y="178.14" width="11.18" height=".33"/>
|
||||
<rect class="cls-1" x="303.34" y="177.18" width="10.71" height=".33"/>
|
||||
<rect class="cls-1" x="287.65" y="185.82" width="15.11" height=".33"/>
|
||||
<rect class="cls-1" x="287.67" y="184.86" width="14.61" height=".33"/>
|
||||
<rect class="cls-1" x="287.69" y="183.9" width="14.14" height=".33"/>
|
||||
<rect class="cls-1" x="286.97" y="183.72" width="13.94" height=".33"/>
|
||||
<rect class="cls-1" x="287.85" y="181.98" width="13.1" height=".33"/>
|
||||
<rect class="cls-1" x="287.81" y="181.02" width="12.69" height=".33"/>
|
||||
<rect class="cls-1" x="287.74" y="180.06" width="12.32" height=".33"/>
|
||||
<rect class="cls-1" x="287.71" y="179.1" width="11.9" height=".33"/>
|
||||
<rect class="cls-1" x="287.98" y="178.14" width="11.18" height=".33"/>
|
||||
<rect class="cls-1" x="288.01" y="177.18" width="10.71" height=".33"/>
|
||||
<rect class="cls-1" x="301.69" y="174.69" width="8.92" height=".33"/>
|
||||
<rect class="cls-1" x="301.22" y="173.65" width="8.62" height=".33"/>
|
||||
<rect class="cls-1" x="300.77" y="172.62" width="8.37" height=".33"/>
|
||||
<rect class="cls-1" x="300.22" y="171.58" width="8.1" height=".33"/>
|
||||
<rect class="cls-1" x="299.79" y="170.54" width="7.26" height=".33"/>
|
||||
<rect class="cls-1" x="287.26" y="174.69" width="10.29" height=".33"/>
|
||||
<rect class="cls-1" x="287.17" y="173.65" width="9.94" height=".33"/>
|
||||
<rect class="cls-1" x="286.64" y="172.62" width="9.66" height=".33"/>
|
||||
<rect class="cls-1" x="286.45" y="171.58" width="9.35" height=".33"/>
|
||||
<rect class="cls-1" x="285.57" y="170.54" width="9.65" height=".33"/>
|
||||
<polygon class="cls-1" points="305.98 169.81 305.09 169.81 305.09 158.7 310.72 158.7 310.72 169.34 309.83 169.34 309.83 159.59 305.98 159.59 305.98 169.81"/>
|
||||
<rect class="cls-1" x="308.18" y="167.93" width="1.34" height=".98"/>
|
||||
<polyline class="cls-1" points="308.03 167.93 307.33 168.28 307.33 169.1 308.03 168.9"/>
|
||||
<rect class="cls-1" x="300.55" y="158.7" width=".45" height="11.69"/>
|
||||
<rect class="cls-1" x="289.84" y="158.7" width=".45" height="12"/>
|
||||
<path class="cls-1" d="M284.62,182.85h-49.89v-25.61h49.89v25.61Zm-49.44-.45h49v-24.72h-49v24.72Z"/>
|
||||
<circle class="cls-1" cx="259.95" cy="62.32" r=".36"/>
|
||||
<rect class="cls-1" x="259.82" y="58.1" width=".25" height=".71"/>
|
||||
<rect class="cls-1" x="255.72" y="62.2" width=".71" height=".25"/>
|
||||
<rect class="cls-1" x="259.82" y="65.82" width=".25" height=".71"/>
|
||||
<rect class="cls-1" x="263.46" y="62.2" width=".71" height=".25"/>
|
||||
<polygon class="cls-1" points="258.1 58.94 257.93 59.04 257.77 58.76 257.94 58.66 258.1 58.94"/>
|
||||
<polygon class="cls-1" points="256.65 60.31 256.56 60.48 256.28 60.32 256.38 60.15 256.65 60.31"/>
|
||||
<polygon class="cls-1" points="256.56 64.16 256.66 64.33 256.38 64.49 256.28 64.32 256.56 64.16"/>
|
||||
<polygon class="cls-1" points="257.94 65.6 258.11 65.7 257.94 65.98 257.78 65.88 257.94 65.6"/>
|
||||
<polygon class="cls-1" points="261.79 65.7 261.96 65.6 262.12 65.88 261.95 65.97 261.79 65.7"/>
|
||||
<polygon class="cls-1" points="263.24 64.32 263.33 64.16 263.61 64.31 263.51 64.48 263.24 64.32"/>
|
||||
<polygon class="cls-1" points="263.33 60.48 263.23 60.31 263.51 60.15 263.61 60.32 263.33 60.48"/>
|
||||
<polygon class="cls-1" points="261.95 59.03 261.79 58.94 261.95 58.66 262.12 58.76 261.95 59.03"/>
|
||||
<polygon class="cls-1" points="259.7 62.4 257.69 61.13 257.79 60.95 259.89 62.06 259.7 62.4"/>
|
||||
<polygon class="cls-1" points="260.19 62.4 263.01 60.67 262.91 60.49 260 62.06 260.19 62.4"/>
|
||||
<path class="cls-1" d="M271.64,170.64c-.27,.11-.56,.11-.83,0,.56-.46,.75-1.1,1.21-1.58,.23-.23,.47-.55-.11-.72-.23-.06-.44-.22-.69-.06l.22,.67c-.49,0-.48,.46-.79,.7,.1-.58,.1-1.18,0-1.76,0-.26-.11-.34-.36-.34s-.35,.05-.3,.29c.11,.53-.27,.53-.73,.55,.44,.56,.76,1.1-.23,1.38,.18-.53-.36-.95-.14-1.51,.07-.18-.3-.3-.55-.32s-.38,0-.35,.32c.1,.66-.34,1.29-1,1.41-.43,.14-.46,.44-.12,.66,.67,.43,1.16,.9,1,1.79-.05,.24,.21,.37,.43,.42s.22-.21,.25-.34c.13-.47,.31-.62,.69-.2,.23,.25,.44,.37,.47-.12,0-.3,.1-.54,.45-.52s.32,.31,.33,.54,0,.59-.42,.6c-.14,0-.31-.17-.35,.11s-.06,.36,.14,.47,.36,.37,.56,.18,.77-.48,.67-1-.2-1.09,.67-1c.12,0,.41,0,.32-.31-.02-.19-.18-.34-.38-.32-.02,0-.04,0-.06,.01Zm-2.42-.2h0c0,.23,.34,.45,0,.68-.13,.1-.3,.1-.43,0-.2-.15-.14-.37-.11-.55s.21-.14,.35-.09h.2c.07-.19,0-.47,.26-.51s.26,.19,.32,.35c-.18,.11-.39,.15-.59,.12Z"/>
|
||||
<path class="cls-1" d="M264.51,169.83c-.55,.13-.6-.12-.41-.55,.05-.14,.13-.28,.23-.39,.32-.26,.29-.6,.28-.95s-.37-.38-.58-.49-.32,.09-.23,.31c-.67,.08-.54,.65-.64,1.14-.29-.29-.28-.63-.39-.92s-.26-.52-.58-.4-.14,.37-.08,.6,.27,.6,.12,.93c-.13,0-.07-.15-.11-.21-.19-.25-.43-.53-.74-.34s0,.44,.09,.67,.54,.61,.29,1.07c-.12,.21,.1,.26,.27,.34s.34,.13,.45-.06,.12-.39,.42-.36c.09,.22,0,.52,.22,.7,.1,.09,.11,.24,.02,.34,0,0-.01,.01-.02,.02-.07,.12-.23,.17-.35,.1-.49-.34-.7,.21-1,.31s-.16,.21,0,.37,.46-.08,.66-.17,.54-.22,.71,.05-.06,.52-.32,.68c-.08,.05-.16,.08-.25,.09-.28,0-.35,.13-.3,.36,.05,.2,.25,.33,.46,.28,0,0,0,0,.01,0,.38-.16,.88-.32,1.06-.64,.25-.37,.3-.84,.14-1.25-.35-.54-.14-.92,.09-1.38,.2,.15,.4,.31,.58,.49,.29,.33,.43,.12,.6-.12s.18-.33,.08-.42c-.21-.2-.5-.27-.78-.2Zm-1.56,.25c-.02-.23,.11-.44,.32-.53,.22,.35-.06,.45-.27,.53h-.05Zm.81-1.64c-.14-.1-.2-.21-.09-.38,.05-.08,.09-.17,.12-.26h0c0,.08,.07,.15,.15,.16,.28,.05,.21,.24,.13,.39s-.16,.2-.31,.09Z"/>
|
||||
<path class="cls-1" d="M257.49,170.74c-.16,0-.31,.12-.43-.13-.17-.56-.02-1.17,.39-1.59,.81-.53,.82-.54,.2-1.18-.19-.19-.37-.55-.7-.36-.23,.18-.31,.49-.2,.76,.13,.36,0,.49-.28,.67s-.87,.25-1,.92c-.22,.71-.07,1.49,.4,2.07l-1.23,.15c-.15,0-.33,0-.35,.2s-.07,.37,.07,.51c.13,.13,.34,.16,.49,.05,.66-.39,1.4-.61,2.17-.63,.12,0,.28,0,.3-.18s-.17-.19-.3-.21-.22-.06-.24-.19c-.02-.14,.05-.27,.18-.32,.19-.1,.41-.16,.63-.17,.2,0,.43,0,.52,.19,.06,.2-.03,.41-.22,.5-.13,.08-.29,.12-.28,.32,0,.52-.39,.61-.76,.76-.15,.05-.48-.15-.42,.21,.05,.22,.26,.35,.47,.31,.04,0,.07-.02,.11-.04,.76-.24,1.37-.82,1.64-1.57,.23-.79-.31-1.26-1.16-1.05Zm-1.25,.4c-.35,0-.21-.36-.3-.55s0-.49,.19-.46c.19,.03,.14,.43,.21,.62s.13,.39-.1,.39Z"/>
|
||||
<path class="cls-1" d="M252.24,168.91c-.65,.15-1.3,.34-1.93,.57-.3,.12-.51,.39-.55,.71,0,.16-.07,.36,.08,.38s.41,.1,.55-.11,.18-.19,.32-.1c.1,.05,.15,.17,.1,.28,0,0,0,0,0,0-.22,.33,0,.63,0,.94,.12,.37-.02,.78-.34,1-.16,.06-.24,.24-.19,.4,.01,.03,.03,.06,.05,.08,.1,.2,.34,.28,.54,.17,.01,0,.03-.02,.04-.02,.27-.22,.64-.43,.56-.89,0-.54-.03-1.09-.09-1.63-.08-.44,.18-.86,.6-1,.16-.06,.32-.14,.47-.23,.1-.08,.29-.17,.17-.37-.06-.15-.23-.23-.38-.18Z"/>
|
||||
<path class="cls-1" d="M249.74,169.18c-.9,.18-1.5,.83-2.3,1.11-.17,.05-.28,.23-.22,.41,.01,.05,.04,.09,.07,.13,.12,.17,.32,.22,.49,0,.08-.18,.3-.26,.48-.18,.01,0,.02,.01,.03,.02,.16,.1,.21,.31,.12,.47-.12,.26-.04,.57,.2,.74,.12,.06,.25,.06,.37,0,.21-.21,.09-.47,0-.72-.12-.56-.17-1.1,.55-1.34,.37-.1,.21-.38,.21-.64Z"/>
|
||||
<path class="cls-1" d="M254.78,169.37c.08-.34,.31-.37,.59-.36s.39,.09,.38-.27c0,0,0-.16-.07-.18-.29-.12-.57-.46-.89-.28-.36,.18-.62,.5-.72,.89,0,.23,.21,.36,.42,.45s.26-.15,.29-.25Z"/>
|
||||
<path class="cls-1" d="M248.38,169c.62-.18,1.22-.44,1.78-.76v-.06c.02-.14-.07-.27-.21-.31-.2-.1-.45-.07-.62,.08-.23,.24-.54,.39-.87,.41-.19,0-.29,.07-.29,.27-.02,.16,.07,.31,.21,.37Z"/>
|
||||
<path class="cls-1" d="M261.18,170.2c-.46,0-.47,.29-.49,.5s0,.68,.3,.66,.32-.6,.58-.87-.19-.27-.39-.29Z"/>
|
||||
<path class="cls-1" d="M251,169c.3-.18,.72-.22,.86-.66-.39-.21-.71,.08-1.05,.12-.14,0-.35,.11-.24,.34,.06,.17,.25,.26,.42,.2,0,0,0,0,.01,0Z"/>
|
||||
<polygon class="cls-1" points="269.19 170.45 269.19 170.45 269.21 170.46 269.19 170.45 269.19 170.45"/>
|
||||
<path class="cls-1" d="M263.79,167.81c0,.08,.02,.17,.06,.24,0-.05-.07-.16-.06-.24Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 135 KiB |
Before Width: | Height: | Size: 200 KiB |
After Width: | Height: | Size: 252 KiB |
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1715585200070" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4279" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M159.973123 928.016126c-10.664875 0-20.985721-5.332437-27.178229-14.965228-9.460776-14.965228-4.988409-34.74685 9.976818-44.207626 5.504452-3.440282 136.579204-85.491013 240.647741-90.651436l0.516042 0L383.935495 760.302369c-120.409877-49.884092-199.708382-175.626407-199.708382-320.462288 0-189.55955 145.867966-343.856207 325.278683-343.856207s325.278683 154.124643 325.278683 343.856207c0 144.663867-75.858223 267.137914-195.064001 318.398119l0 20.297665c104.756593 9.460776 234.799261 86.695112 240.475727 89.96338 15.137242 9.116748 20.125651 28.726356 11.008903 43.863598-9.116748 15.137242-28.726356 20.125651-43.863598 11.008903-1.204099-0.688056-126.258357-74.826138-214.157568-81.362674l-25.458088 0c-17.717453 0-31.994625-14.277171-31.994625-31.994625l0-73.966068c0-13.589115 8.600706-25.802117 21.673778-30.274483 105.44465-36.294977 173.390223-140.707542 173.390223-266.277843C770.967243 285.543423 653.825634 159.973123 509.67781 159.973123c-144.147825 0-261.289434 125.570301-261.289434 279.866958 0 125.742315 71.385856 233.251134 177.518562 267.653956 13.245087 4.300353 22.18982 16.513355 22.18982 30.446498l0 72.245926c0 17.717453-14.277171 31.994625-31.994625 31.994625l-30.96254 0c-85.835041 4.300353-206.760961 79.986561-207.96506 80.846632C171.842096 926.295985 165.821603 928.016126 159.973123 928.016126z" fill="#8c2341" p-id="4280"></path></svg>
|
After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 341 KiB |
Before Width: | Height: | Size: 25 KiB |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 666.01 66.82">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #a34d51;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<path class="cls-1" d="M51.77,55.3h-19.51v10.58h-10.94V30.82H62.78v30.67l-8.28,5.18-7.27-5.11,4.54-3.24v-3.02Zm-15.26-33.48v-3.17h-14.54v-6.41h14.54v-3.1H19.51V2.81h16.99V.22h11.16V2.81h16.34v6.34h-16.34v3.1h14.9v6.41h-14.9v3.17h17.71v6.34H17.28v-6.34h19.22Zm-16.85,30.31v8.57l-15.84,5.18V26.57H0v-8.14H14.54V53.71l5.11-1.58ZM12.53,1.37l2.66,12.1H3.6L.86,1.37H12.53Zm19.73,39.53h19.51v-3.96h-19.51v3.96Zm0,9.22h19.51v-3.96h-19.51v3.96ZM89.82,5.47l.86-4.32h8.86l-.86,4.32h11.23v7.85h-12.74l-.94,4.82h9v11.23h4.25v7.49h-4.25v6.48l4.32-.65v7.92l-4.32,.65v14.11h-9.07v-12.74l-9.86,1.44v-7.92l9.86-1.44v-7.85h-11.02v-6.84l3.17-16.7h-3.31V5.47h4.82Zm33.34,47.95h-5.18v11.95h-7.42V24.55h19.87V60.41l-6.12,5.98-4.39-5.9,3.24-2.74v-4.32ZM136.69,.43l14.83,16.92h-9.72v4.97h-24.05v-4.68h-9.43L123.51,.43h13.18Zm13.39,23.76V59.11l-7.2,7.2-5.26-6.19,3.96-3.96V24.19h8.5Zm-17.5,30.53V26.42h7.42v28.3h-7.42Zm-10.66-38.95h16.13l-8.14-9.79-7.99,9.79Zm-3.96,31.1h5.18v-4.46h-5.18v4.46Zm0-11.16h5.18v-4.39h-5.18v4.39Zm-21.82-6.34v-10.58l-2.02,10.58h2.02Zm126.39,36.29l-17.06-41.98-17.42,41.98h-13.82l22.32-51.34h5.11l-5.47-13.46h12.67l27.5,64.8h-13.82ZM290.33,.5l-1.87,3.82h28.66v30.46h7.2l-7.2,4.39v20.38l-11.59,6.26-4.39-9.14,4.32-2.09v-7.56h-1.3l-31.18,19.01h-15.12l30.89-19.01h-29.45v-7.99h5.83V4.32h13.25l1.87-3.82h10.08Zm-13.97,27.22h29.09v-4.61h-29.09v4.61Zm0,11.3h29.09v-3.82h-29.09v3.82Zm0-23.4h29.09v-3.67h-29.09v3.67Zm88.88,49.68l8.42-30.67h-8.35v-7.99h41.18v30.82l-10.66,8.86-6.48-7.42,6.19-5.11v-19.15h-10.8l-7.56,30.67h-11.95ZM353.86,.5h11.45l-4.1,14.33v50.69h-10.66V32.83h-5.54L353.86,.5Zm9.43,23.26L374.02,.14h11.3l-10.58,23.62h-11.45Zm35.64,0L388.14,0h10.87l10.94,23.76h-11.02ZM452.39,1.51h39.38V37.66h-39.38V1.51Zm-2.09,50.18v8.57l-15.91,5.18V27h-3.82v-7.99h14.54V53.28l5.18-1.58Zm12.74-42.41V29.88h18.07V9.29h-18.07Zm-6.05,32.18h10.58l-7.7,23.18h-10.58l7.7-23.18Zm30.1,0l7.7,23.18h-10.51l-7.7-23.18h10.51ZM442.31,.36l2.66,12.1h-11.59l-2.74-12.1h11.66Zm109.76,.72V27.79h-34.49V1.08h34.49Zm-34.85,33.19h9.94l1.66-4.9h10.73l-1.66,4.9h15.05v26.14l-10.51,5.11-5.69-7.56,6.05-2.66v-13.25h-7.42l-7.63,23.26h-11.09l7.85-23.26h-7.27v-7.78ZM580.37,.07V57.53l-10.66,8.86-6.91-7.42,6.91-5.18V.07h10.66Zm-23.98,53.64V6.34h9.5V53.71h-9.5Zm-14.98-45.14h-13.18v11.74h13.18V8.57Zm86.5-6.41v7.78h-9.94l-2.95,9.79h13.1V63h-22.46v-28.66h-5.47l6.98-24.41h-5.54V2.16h26.28Zm27.58,34.49h-25.27l4.32-24.34h10.94l-2.88,16.99h8.06l1.37-20.45h-21.1V1.22h32.4l-2.09,28.08h4.75v30.46l-9.5,7.06-6.19-6.77,5.18-3.96v-19.44Zm-2.23,7.06v7.27h-23.11v-7.27h23.11Zm-34.56-17.28h-3.82v29.23h3.82V26.42Z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg t="1715233010591" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9706"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
||||
<path d="M701.866667 938.666667H106.666667V224C106.666667 147.2 168.533333 85.333333 245.333333 85.333333h317.866667c76.8 0 138.666667 61.866667 138.666667 138.666667V938.666667zM170.666667 874.666667h467.2V224c0-40.533333-34.133333-74.666667-74.666667-74.666667H245.333333C204.8 149.333333 170.666667 183.466667 170.666667 224V874.666667z"
|
||||
fill="#8c2341" p-id="9707"></path>
|
||||
<path d="M256 228.266667h85.333333c12.8 0 21.333333 8.533333 21.333334 21.333333v85.333333c0 12.8-8.533333 21.333333-21.333334 21.333334h-85.333333c-12.8 0-21.333333-8.533333-21.333333-21.333334v-85.333333c0-10.666667 10.666667-21.333333 21.333333-21.333333zM467.2 228.266667h85.333333c12.8 0 21.333333 8.533333 21.333334 21.333333v85.333333c0 12.8-8.533333 21.333333-21.333334 21.333334h-85.333333c-12.8 0-21.333333-8.533333-21.333333-21.333334v-85.333333c0-10.666667 8.533333-21.333333 21.333333-21.333333zM256 448h85.333333c12.8 0 21.333333 8.533333 21.333334 21.333333v85.333334c0 12.8-8.533333 21.333333-21.333334 21.333333h-85.333333c-12.8 0-21.333333-8.533333-21.333333-21.333333v-85.333334c0-12.8 10.666667-21.333333 21.333333-21.333333zM467.2 448h85.333333c12.8 0 21.333333 8.533333 21.333334 21.333333v85.333334c0 12.8-8.533333 21.333333-21.333334 21.333333h-85.333333c-12.8 0-21.333333-8.533333-21.333333-21.333333v-85.333334c0-12.8 8.533333-21.333333 21.333333-21.333333zM256 667.733333h85.333333c12.8 0 21.333333 8.533333 21.333334 21.333334v85.333333c0 12.8-8.533333 21.333333-21.333334 21.333333h-85.333333c-12.8 0-21.333333-8.533333-21.333333-21.333333v-85.333333c0-12.8 10.666667-21.333333 21.333333-21.333334zM467.2 667.733333h85.333333c12.8 0 21.333333 8.533333 21.333334 21.333334v85.333333c0 12.8-8.533333 21.333333-21.333334 21.333333h-85.333333c-12.8 0-21.333333-8.533333-21.333333-21.333333v-85.333333c0-12.8 8.533333-21.333333 21.333333-21.333334zM917.333333 938.666667H674.133333v-64H853.333333V437.333333c0-40.533333-34.133333-74.666667-74.666666-74.666666h-104.533334v-64h104.533334c76.8 0 138.666667 61.866667 138.666666 138.666666V938.666667z"
|
||||
fill="#8c2341" p-id="9708"></path>
|
||||
<path d="M949.333333 938.666667h-874.666666c-17.066667 0-32-14.933333-32-32S57.6 874.666667 74.666667 874.666667h874.666666c17.066667 0 32 14.933333 32 32s-14.933333 32-32 32z"
|
||||
fill="#8c2341" p-id="9709"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 32 KiB |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg t="1715232940815" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6443"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
||||
<path d="M616 524.8c11.2 0 19.2-9.6 19.2-19.2 0-11.2-9.6-19.2-19.2-19.2h-72c-11.2 0-19.2 9.6-19.2 19.2 0 11.2 9.6 19.2 19.2 19.2h72zM278.4 536c-3.2 4.8-9.6 8-16 12.8-9.6 6.4-19.2 9.6-32 12.8l-33.6 9.6c-11.2 3.2-20.8 9.6-28.8 16s-12.8 16-14.4 28.8c-3.2 22.4-4.8 40-1.6 52.8 1.6 14.4 4.8 22.4 8 24 1.6 1.6 6.4 3.2 14.4 4.8 8 1.6 17.6 3.2 28.8 4.8 11.2 1.6 24 3.2 36.8 4.8 14.4 1.6 27.2 3.2 41.6 4.8 14.4 1.6 27.2 1.6 40 3.2 12.8 0 24 1.6 33.6 1.6 9.6 0 20.8 0 35.2-1.6 12.8 0 27.2-1.6 41.6-3.2l43.2-4.8c8-1.6 16-1.6 22.4-3.2v-140.8c-3.2 0-4.8-1.6-8-1.6-9.6-3.2-19.2-6.4-27.2-9.6-9.6-3.2-16-8-22.4-12.8-4.8-4.8-9.6-9.6-11.2-14.4-3.2-4.8-3.2-11.2-4.8-16 0-4.8 0-9.6 1.6-16 1.6-8 4.8-14.4 8-17.6 4.8-3.2 9.6-8 16-12.8 3.2-1.6 4.8-6.4 8-9.6 1.6-4.8 4.8-8 6.4-12.8 1.6-4.8 3.2-11.2 4.8-16l9.6-4.8c3.2-1.6 4.8-6.4 8-9.6 1.6-4.8 3.2-9.6 4.8-17.6v-12.8c-1.6-3.2-1.6-6.4-3.2-9.6-1.6-3.2-3.2-4.8-4.8-6.4 0-14.4-1.6-27.2-3.2-41.6-1.6-11.2-4.8-24-8-36.8-4.8-12.8-11.2-25.6-19.2-35.2-3.2-4.8-8-9.6-16-14.4-6.4-4.8-14.4-9.6-22.4-12.8-8-3.2-17.6-6.4-27.2-9.6-9.6-1.6-19.2-3.2-28.8-3.2-8 0-16 0-24 1.6s-16 3.2-24 6.4-16 8-24 14.4-14.4 12.8-20.8 22.4c-6.4 9.6-12.8 20.8-16 33.6-3.2 12.8-6.4 24-8 35.2-1.6 12.8-1.6 25.6-1.6 38.4-3.2 3.2-4.8 6.4-6.4 11.2-1.6 3.2-1.6 8-3.2 12.8 0 4.8 0 9.6 1.6 16s3.2 9.6 6.4 12.8c1.6 3.2 4.8 4.8 6.4 6.4 1.6 1.6 4.8 3.2 6.4 3.2 1.6 6.4 3.2 11.2 4.8 16 1.6 4.8 3.2 8 4.8 12.8 1.6 4.8 4.8 8 6.4 9.6 6.4 4.8 11.2 9.6 16 14.4 4.8 4.8 8 11.2 8 17.6v14.4c0 4.8-1.6 8-3.2 12.8-3.2 6.4-4.8 9.6-9.6 14.4zM544 288c-11.2 0-19.2 9.6-19.2 19.2 0 11.2 9.6 19.2 19.2 19.2h265.6c11.2 0 19.2-9.6 19.2-19.2 0-11.2-9.6-19.2-19.2-19.2H544z"
|
||||
p-id="6444" fill="#8c2341"></path>
|
||||
<path d="M113.6 758.4c-25.6-3.2-46.4-24-46.4-51.2v-499.2c0-28.8 22.4-49.6 51.2-49.6h753.6c28.8 0 54.4 20.8 54.4 49.6v308.8c12.8 9.6 38.4 20.8 49.6 32v-374.4c0-38.4-48-65.6-86.4-65.6h-803.2c-38.4 0-68.8 43.2-68.8 81.6v532.8c0 35.2 27.2 80 62.4 83.2h428.8c-3.2-11.2-4.8-36.8-6.4-49.6h-388.8z"
|
||||
p-id="6445" fill="#8c2341"></path>
|
||||
<path d="M544 425.6h265.6c11.2 0 19.2-9.6 19.2-19.2 0-11.2-9.6-19.2-19.2-19.2H544c-11.2 0-19.2 9.6-19.2 19.2 0 11.2 8 19.2 19.2 19.2zM777.6 513.6c-129.6 0-235.2 105.6-235.2 235.2s105.6 235.2 235.2 235.2 235.2-105.6 235.2-235.2-105.6-235.2-235.2-235.2z m0 425.6c-105.6 0-190.4-84.8-190.4-190.4s84.8-190.4 190.4-190.4 190.4 84.8 190.4 190.4-84.8 190.4-190.4 190.4z"
|
||||
p-id="6446" fill="#8c2341"></path>
|
||||
<path d="M673.6 646.4l32 24c3.2 0 6.4 0 8-1.6s3.2-3.2 3.2-6.4c0-4.8-1.6-8-4.8-9.6-1.6-1.6-6.4-4.8-14.4-11.2-6.4-4.8-11.2-8-16-8h-6.4v8c-1.6 3.2-1.6 3.2-1.6 4.8zM875.2 838.4h-86.4c-17.6 0-32-1.6-41.6-3.2-16-3.2-27.2-11.2-35.2-22.4l-1.6-11.2v-97.6c-1.6-1.6-1.6-4.8-3.2-4.8-3.2-3.2-6.4-4.8-11.2-4.8h-28.8c-1.6 1.6-3.2 3.2-3.2 4.8v8c0 1.6 1.6 1.6 1.6 3.2 1.6 1.6 3.2 3.2 4.8 3.2h19.2c1.6 1.6 3.2 3.2 3.2 4.8v88c-1.6 6.4-6.4 12.8-17.6 19.2-9.6 6.4-14.4 12.8-14.4 19.2 1.6 3.2 4.8 6.4 8 6.4s6.4 0 9.6-1.6c3.2-1.6 4.8-3.2 6.4-4.8l19.2-17.6c8 11.2 22.4 19.2 40 24 4.8 1.6 19.2 3.2 44.8 6.4h88c4.8-1.6 6.4-4.8 6.4-9.6 0-1.6 0-4.8-1.6-4.8-1.6-3.2-3.2-4.8-6.4-4.8z"
|
||||
p-id="6447" fill="#8c2341"></path>
|
||||
<path d="M739.2 824c3.2 0 4.8-1.6 8-4.8v-36.8h43.2v40c0 1.6 1.6 4.8 3.2 4.8 1.6 1.6 3.2 1.6 6.4 1.6s4.8 0 6.4-1.6c1.6-1.6 3.2-3.2 3.2-4.8v-40h44.8v25.6c-1.6 1.6-3.2 1.6-4.8 1.6-1.6 0-3.2 0-8-1.6s-6.4-1.6-9.6-1.6c-3.2 0-4.8 0-6.4 1.6-1.6 1.6-1.6 3.2-1.6 6.4 0 4.8 1.6 8 6.4 8 4.8 1.6 9.6 3.2 11.2 4.8 4.8 1.6 9.6 1.6 12.8 1.6 3.2 0 6.4 0 9.6-1.6s4.8-3.2 6.4-6.4l3.2-8v-112c-1.6-3.2-3.2-4.8-3.2-6.4-3.2-3.2-8-6.4-11.2-6.4h-40v-1.6-3.2c0-1.6 0-3.2-1.6-4.8 4.8-3.2 9.6-6.4 12.8-9.6 9.6-6.4 19.2-14.4 28.8-22.4 0-1.6-1.6-3.2-1.6-4.8-1.6-3.2-4.8-6.4-8-6.4h-110.4c-1.6 0-1.6 1.6-3.2 1.6-1.6 1.6-3.2 3.2-3.2 4.8v6.4c0 3.2 1.6 4.8 6.4 6.4h84.8c-3.2 3.2-8 6.4-11.2 9.6-4.8 3.2-8 4.8-11.2 4.8-3.2 0-4.8-1.6-8-3.2-1.6 0-4.8-1.6-9.6-4.8-4.8-3.2-9.6-3.2-12.8-3.2-3.2 0-4.8 0-6.4 1.6-1.6 1.6-3.2 3.2-3.2 6.4s1.6 6.4 6.4 8c3.2 1.6 6.4 3.2 11.2 4.8l20.8 9.6v1.6h-54.4c-3.2 1.6-4.8 1.6-6.4 3.2-3.2 3.2-6.4 6.4-6.4 9.6v120c1.6 1.6 1.6 1.6 1.6 3.2 0-3.2 3.2-1.6 4.8-1.6z m68.8-120h38.4l6.4 6.4v14.4h-44.8v-20.8z m0 38.4h44.8v20.8h-44.8v-20.8z m-62.4-32l6.4-6.4h36.8v19.2h-43.2v-12.8z m0 32h43.2v20.8h-43.2v-20.8z"
|
||||
p-id="6448" fill="#8c2341"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 392 KiB |
After Width: | Height: | Size: 322 KiB |
|
@ -1 +0,0 @@
|
|||
<svg t="1686279836167" class="icon" viewBox="0 0 1288 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21110" data-spm-anchor-id="a313x.7781069.0.i32" width="200" height="200"><path d="M1115.134327 794.622808h-735.57223a26.453294 26.453294 0 1 0 0 52.906587h735.57223a26.453294 26.453294 0 1 0 0-52.906587zM762.025524 582.655126H938.665259a27.135959 27.135959 0 0 0 18.773305-7.850655 25.258629 25.258629 0 0 0 7.509322-18.431972A26.453294 26.453294 0 0 0 938.665259 529.065873H762.025524a26.453294 26.453294 0 0 0 0 52.906587zM762.025524 435.711346h294.228892a26.453294 26.453294 0 0 0 0-52.906587H762.025524a26.453294 26.453294 0 1 0 0 52.906587z" p-id="21111" fill="#1296db"></path><path d="M467.796632 382.634093a114.687828 114.687828 0 1 0 114.687828 114.687828 114.858494 114.858494 0 0 0-114.687828-114.687828z m0 176.469068A61.781241 61.781241 0 1 1 511.999232 453.972652a61.269241 61.269241 0 0 1 17.066641 43.519935 61.781241 61.781241 0 0 1-61.269241 61.610574z" fill="#1296db" p-id="21112"></path><path d="M1203.198195 205.823691H261.802274a85.333205 85.333205 0 0 0-85.333205 85.333206V938.665259a85.333205 85.333205 0 0 0 85.333205 85.333205H1203.198195a26.111961 26.111961 0 0 0 18.943972-7.850655 25.599962 25.599962 0 0 0 7.509322-18.602639 26.453294 26.453294 0 0 0-26.453294-26.62396H261.802274A32.255952 32.255952 0 0 1 229.546322 938.665259V291.156897a32.255952 32.255952 0 0 1 32.255952-32.255952h941.737254a32.255952 32.255952 0 0 1 32.255952 32.255952v498.857918a26.453294 26.453294 0 0 0 52.906587 0V291.156897a85.333205 85.333205 0 0 0-85.503872-85.333206z" p-id="21113" fill="#1296db"></path><path d="M1026.899793 0H85.333205a85.333205 85.333205 0 0 0-85.333205 85.333205v647.16703a85.333205 85.333205 0 0 0 85.333205 85.333205h115.54116a26.453294 26.453294 0 1 0 0-52.735921H85.333205a32.255952 32.255952 0 0 1-32.255951-32.255952V85.333205A32.255952 32.255952 0 0 1 85.333205 53.077254h941.907921A32.255952 32.255952 0 0 1 1059.497077 85.333205v146.090448a26.453294 26.453294 0 1 0 52.735921 0V85.333205a85.333205 85.333205 0 0 0-85.333205-85.333205z" p-id="21114" fill="#1296db"></path></svg>
|
Before Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 907 KiB |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg t="1715233064545" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
p-id="13356" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
||||
<path d="M409.6 405.333333l93.866667 0c25.6 0 42.666667-21.333333 42.666667-42.666667L546.133333 264.533333c0-25.6-21.333333-42.666667-42.666667-42.666667L409.6 221.866667c-25.6 0-42.666667 21.333333-42.666667 42.666667l0 93.866667C366.933333 384 384 405.333333 409.6 405.333333zM418.133333 273.066667l76.8 0 0 76.8L418.133333 349.866667 418.133333 273.066667z"
|
||||
p-id="13357" fill="#8c2341"></path>
|
||||
<path d="M644.266667 405.333333l93.866667 0c25.6 0 42.666667-21.333333 42.666667-42.666667L780.8 264.533333c0-25.6-21.333333-42.666667-42.666667-42.666667l-93.866667 0c-25.6 0-42.666667 21.333333-42.666667 42.666667l0 93.866667C601.6 384 622.933333 405.333333 644.266667 405.333333zM652.8 273.066667l76.8 0 0 76.8-76.8 0L652.8 273.066667z"
|
||||
p-id="13358" fill="#8c2341"></path>
|
||||
<path d="M409.6 640l93.866667 0c25.6 0 42.666667-21.333333 42.666667-42.666667l0-93.866667c0-25.6-21.333333-42.666667-42.666667-42.666667L409.6 460.8c-25.6 0-42.666667 21.333333-42.666667 42.666667L366.933333 597.333333C366.933333 622.933333 384 640 409.6 640zM418.133333 512l76.8 0 0 76.8L418.133333 588.8 418.133333 512z"
|
||||
p-id="13359" fill="#8c2341"></path>
|
||||
<path d="M644.266667 640l93.866667 0c25.6 0 42.666667-21.333333 42.666667-42.666667l0-93.866667c0-25.6-21.333333-42.666667-42.666667-42.666667l-93.866667 0c-25.6 0-42.666667 21.333333-42.666667 42.666667L601.6 597.333333C601.6 622.933333 622.933333 640 644.266667 640zM652.8 512l76.8 0 0 76.8-76.8 0L652.8 512z"
|
||||
p-id="13360" fill="#8c2341"></path>
|
||||
<path d="M1011.2 947.2c-12.8-38.4-38.4-72.533333-68.266667-93.866667 0-4.266667 0-8.533333 0-12.8 0-51.2-34.133333-93.866667-81.066667-106.666667L861.866667 192c0-42.666667-25.6-72.533333-64-72.533333L362.666667 119.466667c-38.4 0-76.8 34.133333-76.8 72.533333l0 473.6c-17.066667-8.533333-34.133333-12.8-51.2-12.8-72.533333 0-132.266667 59.733333-132.266667 132.266667 0 21.333333 4.266667 38.4 12.8 55.466667-46.933333 17.066667-89.6 55.466667-106.666667 102.4-4.266667 8.533333 0 17.066667 4.266667 25.6S25.6 981.333333 38.4 981.333333l951.466667 0c8.533333 0 17.066667-4.266667 21.333333-12.8C1015.466667 964.266667 1015.466667 955.733333 1011.2 947.2zM362.666667 170.666667l439.466667 0C806.4 170.666667 810.666667 179.2 810.666667 192l0 537.6c-38.4 8.533333-72.533333 34.133333-85.333333 68.266667-38.4-12.8-76.8-17.066667-115.2-17.066667-55.466667 0-115.2 12.8-166.4 38.4-12.8-34.133333-46.933333-59.733333-81.066667-68.266667-4.266667-17.066667-12.8-29.866667-21.333333-42.666667L341.333333 192C341.333333 179.2 349.866667 170.666667 362.666667 170.666667zM81.066667 930.133333c21.333333-25.6 51.2-38.4 81.066667-38.4 12.8 0 21.333333-8.533333 25.6-17.066667 4.266667-8.533333 0-21.333333-8.533333-29.866667-17.066667-12.8-25.6-34.133333-25.6-55.466667 0-42.666667 34.133333-76.8 76.8-76.8 38.4 0 72.533333 29.866667 76.8 68.266667 0 12.8 12.8 25.6 25.6 25.6 34.133333 0 59.733333 25.6 59.733333 59.733333 0 8.533333 4.266667 17.066667 12.8 21.333333 8.533333 4.266667 17.066667 4.266667 25.6 0 51.2-29.866667 106.666667-46.933333 166.4-46.933333 42.666667 0 85.333333 8.533333 123.733333 25.6 8.533333 4.266667 17.066667 4.266667 25.6 0 8.533333-4.266667 12.8-12.8 12.8-21.333333 0-29.866667 29.866667-55.466667 59.733333-55.466667 34.133333 0 59.733333 25.6 59.733333 59.733333 0 4.266667 0 12.8-4.266667 17.066667-4.266667 12.8 0 25.6 12.8 29.866667 17.066667 8.533333 34.133333 12.8 42.666667 38.4L81.066667 934.4z"
|
||||
p-id="13361" fill="#8c2341"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 7.6 KiB |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg t="1715233084203" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
p-id="14547" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
|
||||
<path d="M841 315.6H641c-28.7 0-52-23.3-52-52V82h46v181.6c0 3.3 2.7 6 6 6h200v46z" fill="#8c2341"
|
||||
p-id="14548"></path>
|
||||
<path d="M804 966H215c-29.2 0-53-23.8-53-53V119c0-29.2 23.8-53 53-53h41c12.7 0 23 10.3 23 23s-10.3 23-23 23h-41c-3.9 0-7 3.1-7 7v794c0 3.9 3.1 7 7 7h589c3.9 0 7-3.1 7-7V288.5L609.3 112H426c-12.7 0-23-10.3-23-23s10.3-23 23-23h192c5.6 0 11 2 15.1 5.7l216 189c5 4.4 7.9 10.7 7.9 17.3v635c0 29.2-23.8 53-53 53zM364.9 112h-39c-12.7 0-23-10.3-23-23s10.3-23 23-23h39c12.7 0 23 10.3 23 23s-10.3 23-23 23z"
|
||||
fill="#8c2341" p-id="14549"></path>
|
||||
<path d="M308 264h36c7.7 0 14 6.3 14 14v36c0 7.7-6.3 14-14 14h-36c-7.7 0-14-6.3-14-14v-36c0-7.7 6.3-14 14-14zM404 264h36c7.7 0 14 6.3 14 14v36c0 7.7-6.3 14-14 14h-36c-7.7 0-14-6.3-14-14v-36c0-7.7 6.3-14 14-14zM320 417h389c12.7 0 23 10.3 23 23s-10.3 23-23 23H320c-12.7 0-23-10.3-23-23s10.3-23 23-23zM319 546h389c12.7 0 23 10.3 23 23s-10.3 23-23 23H319c-12.7 0-23-10.3-23-23s10.3-23 23-23zM662.7 824.9c46.5-30.1 69.7-57.6 69.7-82.5 0-21.8-8.7-35.4-35.1-35.4-10 0-21.5 8.5-34.6 25.4-7.3-16.9-19.6-25.4-37.1-25.4-22.2 0-32.6 12.2-32.6 35.4 0 25 23.2 52.5 69.7 82.5z"
|
||||
fill="#8c2341" p-id="14550"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 5.1 KiB |
|
@ -1 +1 @@
|
|||
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><title>vant-vue3</title><script defer="defer" src="/js/chunk-vendors.16b03157.js"></script><script defer="defer" src="/js/app.45184631.js"></script><link href="/css/chunk-vendors.67a2fae0.css" rel="stylesheet"><link href="/css/app.29ed9b24.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but vant-vue3 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
||||
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><link rel="icon" href="/favicon.ico"><title></title><script defer="defer" src="/js/chunk-vendors.3dd44ecc.js"></script><script defer="defer" src="/js/app.b3c7d80f.js"></script><link href="/css/chunk-vendors.67a2fae0.css" rel="stylesheet"><link href="/css/app.eee473ee.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
|
@ -0,0 +1 @@
|
|||
.custom-header span{color:red}
|
|
@ -0,0 +1 @@
|
|||
.custom-header span{color:red}
|
|
@ -0,0 +1 @@
|
|||
.custom-header span{color:red}
|
|
@ -1 +0,0 @@
|
|||
.transfer-footer{margin-left:20px;padding:6px 5px}
|
|
@ -0,0 +1 @@
|
|||
.custom-header span{color:red}
|
|
@ -0,0 +1 @@
|
|||
.custom-header span{color:red}
|
|
@ -1 +1 @@
|
|||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="referrer" content="never"><meta name="viewport" content="width=device-width,initial-scale=1"><title>微信后台管理系统</title><script src="https://cdn.bootcdn.net/ajax/libs/tinymce/5.10.4/tinymce.min.js"></script><script defer="defer" type="module" src="js/chunk-vendors.93d8c73b.js"></script><script defer="defer" type="module" src="js/app.38f2bf26.js"></script><link href="css/chunk-vendors.c90a9993.css" rel="stylesheet"><link href="css/app.e4089920.css" rel="stylesheet"><script defer="defer" src="js/chunk-vendors-legacy.331472cb.js" nomodule></script><script defer="defer" src="js/app-legacy.2fd3550c.js" nomodule></script></head><body><noscript><strong>We're sorry but weixin-manage doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="referrer" content="never"><meta name="viewport" content="width=device-width,initial-scale=1"><title>评阅人员管理系统</title><script src="https://cdn.bootcdn.net/ajax/libs/tinymce/5.10.4/tinymce.min.js"></script><script defer="defer" type="module" src="js/chunk-vendors.93d8c73b.js"></script><script defer="defer" type="module" src="js/app.fc16ac82.js"></script><link href="css/chunk-vendors.c90a9993.css" rel="stylesheet"><link href="css/app.e4089920.css" rel="stylesheet"><script defer="defer" src="js/chunk-vendors-legacy.331472cb.js" nomodule></script><script defer="defer" src="js/app-legacy.148fbcc8.js" nomodule></script></head><body><noscript><strong>We're sorry but weixin-manage doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
|
@ -1 +1 @@
|
|||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[7251],{37251:function(t,a,e){e.r(a),e.d(a,{default:function(){return c}});var r=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"site-wrapper site-page--login"},[e("div",{staticClass:"site-content__wrapper"},[e("div",{staticClass:"site-content"},[t._m(0),e("div",{staticClass:"login-main"},[e("h3",{staticClass:"login-title"},[t._v("管理员登录")]),e("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"status-icon":""},nativeOn:{keyup:function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.dataFormSubmit()}}},[e("el-form-item",{attrs:{prop:"userName"}},[e("el-input",{attrs:{placeholder:"帐号"},model:{value:t.dataForm.userName,callback:function(a){t.$set(t.dataForm,"userName",a)},expression:"dataForm.userName"}})],1),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{type:"password",placeholder:"密码"},model:{value:t.dataForm.password,callback:function(a){t.$set(t.dataForm,"password",a)},expression:"dataForm.password"}})],1),e("el-form-item",[e("el-button",{staticClass:"login-btn-submit",attrs:{type:"primary"},on:{click:function(a){return t.dataFormSubmit()}}},[t._v("登录")])],1)],1)],1)])])])},s=[function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"brand-info"},[e("h2",{staticClass:"brand-info__text"},[t._v("微信后台管理系统")]),e("p",{staticClass:"brand-info__intro"},[t._v("微信公众号后台管理系统。")])])}],o=(e(74916),e(15306),e(42325)),i={data:function(){return{dataForm:{userName:"",password:"",uuid:"",captcha:""},dataRule:{userName:[{required:!0,message:"帐号不能为空",trigger:"blur"}],password:[{required:!0,message:"密码不能为空",trigger:"blur"}],captcha:[{required:!0,message:"验证码不能为空",trigger:"blur"}]},captchaPath:""}},created:function(){this.getCaptcha()},methods:{dataFormSubmit:function(){var t=this;this.$refs["dataForm"].validate((function(a){a&&t.$http({url:t.$http.adornUrl("/sys/login"),method:"post",data:t.$http.adornData({username:t.dataForm.userName,password:t.dataForm.password,uuid:t.dataForm.uuid,captcha:t.dataForm.captcha})}).then((function(a){var e=a.data;e&&200===e.code?(t.$cookie.set("token",e.token),t.$router.replace({name:"home"})):(t.getCaptcha(),t.$message.error(e.msg))}))}))},getCaptcha:function(){this.dataForm.uuid=(0,o.Fs)(),this.captchaPath=this.$http.adornUrl("/captcha?uuid=".concat(this.dataForm.uuid))}}},n=i,u=e(1001),d=(0,u.Z)(n,r,s,!1,null,null,null),c=d.exports}}]);
|
||||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[4770],{44770:function(t,a,e){e.r(a),e.d(a,{default:function(){return c}});var r=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"site-wrapper site-page--login"},[e("div",{staticClass:"site-content__wrapper"},[e("div",{staticClass:"site-content"},[t._m(0),e("div",{staticClass:"login-main"},[e("h3",{staticClass:"login-title"},[t._v("管理员登录")]),e("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"status-icon":""},nativeOn:{keyup:function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.dataFormSubmit()}}},[e("el-form-item",{attrs:{prop:"userName"}},[e("el-input",{attrs:{placeholder:"帐号"},model:{value:t.dataForm.userName,callback:function(a){t.$set(t.dataForm,"userName",a)},expression:"dataForm.userName"}})],1),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{type:"password",placeholder:"密码"},model:{value:t.dataForm.password,callback:function(a){t.$set(t.dataForm,"password",a)},expression:"dataForm.password"}})],1),e("el-form-item",[e("el-button",{staticClass:"login-btn-submit",attrs:{type:"primary"},on:{click:function(a){return t.dataFormSubmit()}}},[t._v("登录")])],1)],1)],1)])])])},s=[function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"brand-info"},[e("h2",[t._v("评阅人员管理系统")]),e("p",{staticClass:"brand-info__intro"},[t._v("评阅人员管理系统。")])])}],o=(e(74916),e(15306),e(42325)),i={data:function(){return{dataForm:{userName:"",password:"",uuid:"",captcha:""},dataRule:{userName:[{required:!0,message:"帐号不能为空",trigger:"blur"}],password:[{required:!0,message:"密码不能为空",trigger:"blur"}],captcha:[{required:!0,message:"验证码不能为空",trigger:"blur"}]},captchaPath:""}},created:function(){this.getCaptcha()},methods:{dataFormSubmit:function(){var t=this;this.$refs["dataForm"].validate((function(a){a&&t.$http({url:t.$http.adornUrl("/sys/login"),method:"post",data:t.$http.adornData({username:t.dataForm.userName,password:t.dataForm.password,uuid:t.dataForm.uuid,captcha:t.dataForm.captcha})}).then((function(a){var e=a.data;e&&200===e.code?(t.$cookie.set("token",e.token),t.$router.replace({name:"home"})):(t.getCaptcha(),t.$message.error(e.msg))}))}))},getCaptcha:function(){this.dataForm.uuid=(0,o.Fs)(),this.captchaPath=this.$http.adornUrl("/captcha?uuid=".concat(this.dataForm.uuid))}}},n=i,u=e(1001),d=(0,u.Z)(n,r,s,!1,null,null,null),c=d.exports}}]);
|
|
@ -0,0 +1 @@
|
|||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[4770],{44770:function(t,a,e){e.r(a),e.d(a,{default:function(){return l}});var r=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"site-wrapper site-page--login"},[e("div",{staticClass:"site-content__wrapper"},[e("div",{staticClass:"site-content"},[t._m(0),e("div",{staticClass:"login-main"},[e("h3",{staticClass:"login-title"},[t._v("管理员登录")]),e("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"status-icon":""},nativeOn:{keyup:function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.dataFormSubmit()}}},[e("el-form-item",{attrs:{prop:"userName"}},[e("el-input",{attrs:{placeholder:"帐号"},model:{value:t.dataForm.userName,callback:function(a){t.$set(t.dataForm,"userName",a)},expression:"dataForm.userName"}})],1),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{type:"password",placeholder:"密码"},model:{value:t.dataForm.password,callback:function(a){t.$set(t.dataForm,"password",a)},expression:"dataForm.password"}})],1),e("el-form-item",[e("el-button",{staticClass:"login-btn-submit",attrs:{type:"primary"},on:{click:function(a){return t.dataFormSubmit()}}},[t._v("登录")])],1)],1)],1)])])])},s=[function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"brand-info"},[e("h2",[t._v("评阅人员管理系统")]),e("p",{staticClass:"brand-info__intro"},[t._v("评阅人员管理系统。")])])}],i=e(42325),o={data(){return{dataForm:{userName:"",password:"",uuid:"",captcha:""},dataRule:{userName:[{required:!0,message:"帐号不能为空",trigger:"blur"}],password:[{required:!0,message:"密码不能为空",trigger:"blur"}],captcha:[{required:!0,message:"验证码不能为空",trigger:"blur"}]},captchaPath:""}},created(){this.getCaptcha()},methods:{dataFormSubmit(){this.$refs["dataForm"].validate((t=>{t&&this.$http({url:this.$http.adornUrl("/sys/login"),method:"post",data:this.$http.adornData({username:this.dataForm.userName,password:this.dataForm.password,uuid:this.dataForm.uuid,captcha:this.dataForm.captcha})}).then((({data:t})=>{t&&200===t.code?(this.$cookie.set("token",t.token),this.$router.replace({name:"home"})):(this.getCaptcha(),this.$message.error(t.msg))}))}))},getCaptcha(){this.dataForm.uuid=(0,i.Fs)(),this.captchaPath=this.$http.adornUrl(`/captcha?uuid=${this.dataForm.uuid}`)}}},n=o,d=e(1001),u=(0,d.Z)(n,r,s,!1,null,null,null),l=u.exports}}]);
|
|
@ -0,0 +1 @@
|
|||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[4984],{64984:function(t,e,a){a.r(e),a.d(e,{default:function(){return u}});var o=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("el-dialog",{attrs:{title:t.dataForm.id?"修改":"新增","close-on-click-modal":!1,visible:t.visible},on:{"update:visible":function(e){t.visible=e}}},[a("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"label-width":"80px"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.dataFormSubmit()}}},[a("p",{staticStyle:{"text-align":"center",margin:"50px 0 20px"}},[t._v("使用 scoped-slot 自定义数据项")]),a("div",{staticStyle:{"text-align":"center"}},[a("el-transfer",{staticStyle:{"text-align":"left",display:"inline-block"},attrs:{filterable:"","left-default-checked":[2,3],"right-default-checked":[1],titles:["Source","Target"],"button-texts":["到左边","到右边"],format:{noChecked:"${total}",hasChecked:"${checked}/${total}"},data:t.data},on:{change:t.handleChange},scopedSlots:t._u([{key:"default",fn:function(e){var o=e.option;return a("span",{},[t._v(t._s(o.key)+" - "+t._s(o.label))])}}]),model:{value:t.value4,callback:function(e){t.value4=e},expression:"value4"}},[a("el-button",{staticClass:"transfer-footer",attrs:{slot:"left-footer",size:"small"},slot:"left-footer"},[t._v("操作")]),a("el-button",{staticClass:"transfer-footer",attrs:{slot:"right-footer",size:"small"},slot:"right-footer"},[t._v("操作")])],1)],1)]),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.visible=!1}}},[t._v("取消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.dataFormSubmit()}}},[t._v("确定")])],1)],1)},l=[],r=(a(89176),a(62015),{data:function(){return{visible:!1,roleList:[],dataForm:{id:0,dormitory:"",dormitoryNum:"",dormitoryType:0,dormitoryStatus:0}}},methods:{init:function(t){this.visible=!0},dataFormSubmit:function(){}}}),n=r,i=a(1001),s=(0,i.Z)(n,o,l,!1,null,null,null),u=s.exports},62015:function(t,e,a){a(41539),a(54747),a(57658),a(68309);e["Z"]={getGroupList:function(t){t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()}).then((function(e){e.data.list.forEach((function(e){t.groupIdes.push({text:e.name,id:e.id,value:e.id})}))}))},getGroupList2:function(t){return t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()})}}}}]);
|
|
@ -0,0 +1 @@
|
|||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[4984],{64984:function(t,e,a){a.r(e),a.d(e,{default:function(){return u}});var l=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("el-dialog",{attrs:{title:t.dataForm.id?"修改":"新增","close-on-click-modal":!1,visible:t.visible},on:{"update:visible":function(e){t.visible=e}}},[a("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"label-width":"80px"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.dataFormSubmit()}}},[a("p",{staticStyle:{"text-align":"center",margin:"50px 0 20px"}},[t._v("使用 scoped-slot 自定义数据项")]),a("div",{staticStyle:{"text-align":"center"}},[a("el-transfer",{staticStyle:{"text-align":"left",display:"inline-block"},attrs:{filterable:"","left-default-checked":[2,3],"right-default-checked":[1],titles:["Source","Target"],"button-texts":["到左边","到右边"],format:{noChecked:"${total}",hasChecked:"${checked}/${total}"},data:t.data},on:{change:t.handleChange},scopedSlots:t._u([{key:"default",fn:function(e){var l=e.option;return a("span",{},[t._v(t._s(l.key)+" - "+t._s(l.label))])}}]),model:{value:t.value4,callback:function(e){t.value4=e},expression:"value4"}},[a("el-button",{staticClass:"transfer-footer",attrs:{slot:"left-footer",size:"small"},slot:"left-footer"},[t._v("操作")]),a("el-button",{staticClass:"transfer-footer",attrs:{slot:"right-footer",size:"small"},slot:"right-footer"},[t._v("操作")])],1)],1)]),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.visible=!1}}},[t._v("取消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.dataFormSubmit()}}},[t._v("确定")])],1)],1)},o=[],r=(a(62015),{data(){return{visible:!1,roleList:[],dataForm:{id:0,dormitory:"",dormitoryNum:"",dormitoryType:0,dormitoryStatus:0}}},methods:{init(t){this.visible=!0},dataFormSubmit(){}}}),i=r,n=a(1001),s=(0,n.Z)(i,l,o,!1,null,null,null),u=s.exports},62015:function(t,e,a){a(57658);e["Z"]={getGroupList(t){t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()}).then((e=>{e.data.list.forEach((e=>{t.groupIdes.push({text:e.name,id:e.id,value:e.id})}))}))},getGroupList2(t){return t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()})}}}}]);
|
|
@ -1 +0,0 @@
|
|||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[6396],{56396:function(t,e,r){r.r(e),r.d(e,{default:function(){return c}});var a=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("el-dialog",{attrs:{title:t.dataForm.id?"修改":"新增","close-on-click-modal":!1,visible:t.visible},on:{"update:visible":function(e){t.visible=e}}},[r("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"label-width":"80px"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.dataFormSubmit()}}},[r("p",{staticStyle:{"text-align":"center",margin:"50px 0 20px"}},[t._v("使用 scoped-slot 自定义数据项")]),r("div",{staticStyle:{"text-align":"center"}},[r("el-transfer",{staticStyle:{"text-align":"left",display:"inline-block"},attrs:{filterable:"","left-default-checked":[2,3],"right-default-checked":[1],titles:["Source","Target"],"button-texts":["到左边","到右边"],format:{noChecked:"${total}",hasChecked:"${checked}/${total}"},data:t.data},on:{change:t.handleChange},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.option;return r("span",{},[t._v(t._s(a.key)+" - "+t._s(a.label))])}}]),model:{value:t.value4,callback:function(e){t.value4=e},expression:"value4"}},[r("el-button",{staticClass:"transfer-footer",attrs:{slot:"left-footer",size:"small"},slot:"left-footer"},[t._v("操作")]),r("el-button",{staticClass:"transfer-footer",attrs:{slot:"right-footer",size:"small"},slot:"right-footer"},[t._v("操作")])],1)],1)]),r("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[r("el-button",{on:{click:function(e){t.visible=!1}}},[t._v("取消")]),r("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.dataFormSubmit()}}},[t._v("确定")])],1)],1)},o=[],i=(r(21703),r(89176)),n=r(62015),s={data:function(){var t=function(t,e,r){(0,i._7)(e)?r():r(new Error("请输入8位身份码(数字)"))},e=function(t,e,r){(0,i.tq)(e)?r():r(new Error("手机号格式不正确"))};return{visible:!1,roleList:[],dataForm:{id:0,dormitory:"",dormitoryNum:"",dormitoryType:0,dormitoryStatus:0},identityes:["管理员","研究生","本校老师","外校老师"],groupIdes:[],dataRule:{userName:[{required:!0,message:"学生名不能为空",trigger:"blur"}],userId:[{required:!0,message:"身份码不能为空",trigger:"blur"},{validator:t,trigger:"blur"}],studentId:[{required:!0,message:"学生学号不能为空",trigger:"blur"}],phone:[{required:!0,message:"手机号不能为空",trigger:"blur"},{validator:e,trigger:"blur"}]}}},methods:{init:function(t){var e=this;n.Z.getGroupList2(this).then((function(t){e.groupIdes=t.data.list})),this.dataForm.id=t||0,this.$http({url:this.$http.adornUrl("/sys/role/select"),method:"get",params:this.$http.adornParams()}).then((function(t){var r=t.data;e.roleList=r&&200===r.code?r.list:[]})).then((function(){e.visible=!0,e.$nextTick((function(){e.$refs["dataForm"].resetFields()}))})).then((function(){e.dataForm.id&&(console.log("this.dataForm.id",e.dataForm.id),e.$http({url:e.$http.adornUrl("/excel/info/".concat(e.dataForm.id)),method:"get",params:e.$http.adornParams()}).then((function(t){var r=t.data;console.log(r),r&&200===r.code&&(e.dataForm.dormitoryType=parseInt(r.user.dormitoryType),e.dataForm.dormitory=r.user.dormitory,e.dataForm.dormitoryNum=r.user.dormitoryNum,e.dataForm.dormitoryStatus=parseInt(r.user.dormitoryStatus))})))}))},dataFormSubmit:function(){}}},l=s,d=r(1001),u=(0,d.Z)(l,a,o,!1,null,null,null),c=u.exports},62015:function(t,e,r){r(41539),r(54747),r(57658),r(68309);e["Z"]={getGroupList:function(t){t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()}).then((function(e){e.data.list.forEach((function(e){t.groupIdes.push({text:e.name,id:e.id,value:e.id})}))}))},getGroupList2:function(t){return t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()})}}}}]);
|
|
@ -1 +0,0 @@
|
|||
"use strict";(self["webpackChunkwx_manage"]=self["webpackChunkwx_manage"]||[]).push([[6396],{56396:function(t,e,r){r.r(e),r.d(e,{default:function(){return m}});var a=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("el-dialog",{attrs:{title:t.dataForm.id?"修改":"新增","close-on-click-modal":!1,visible:t.visible},on:{"update:visible":function(e){t.visible=e}}},[r("el-form",{ref:"dataForm",attrs:{model:t.dataForm,rules:t.dataRule,"label-width":"80px"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.dataFormSubmit()}}},[r("p",{staticStyle:{"text-align":"center",margin:"50px 0 20px"}},[t._v("使用 scoped-slot 自定义数据项")]),r("div",{staticStyle:{"text-align":"center"}},[r("el-transfer",{staticStyle:{"text-align":"left",display:"inline-block"},attrs:{filterable:"","left-default-checked":[2,3],"right-default-checked":[1],titles:["Source","Target"],"button-texts":["到左边","到右边"],format:{noChecked:"${total}",hasChecked:"${checked}/${total}"},data:t.data},on:{change:t.handleChange},scopedSlots:t._u([{key:"default",fn:function(e){var a=e.option;return r("span",{},[t._v(t._s(a.key)+" - "+t._s(a.label))])}}]),model:{value:t.value4,callback:function(e){t.value4=e},expression:"value4"}},[r("el-button",{staticClass:"transfer-footer",attrs:{slot:"left-footer",size:"small"},slot:"left-footer"},[t._v("操作")]),r("el-button",{staticClass:"transfer-footer",attrs:{slot:"right-footer",size:"small"},slot:"right-footer"},[t._v("操作")])],1)],1)]),r("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[r("el-button",{on:{click:function(e){t.visible=!1}}},[t._v("取消")]),r("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.dataFormSubmit()}}},[t._v("确定")])],1)],1)},o=[],s=r(89176),i=r(62015),l={data(){var t=(t,e,r)=>{(0,s._7)(e)?r():r(new Error("请输入8位身份码(数字)"))},e=(t,e,r)=>{(0,s.tq)(e)?r():r(new Error("手机号格式不正确"))};return{visible:!1,roleList:[],dataForm:{id:0,dormitory:"",dormitoryNum:"",dormitoryType:0,dormitoryStatus:0},identityes:["管理员","研究生","本校老师","外校老师"],groupIdes:[],dataRule:{userName:[{required:!0,message:"学生名不能为空",trigger:"blur"}],userId:[{required:!0,message:"身份码不能为空",trigger:"blur"},{validator:t,trigger:"blur"}],studentId:[{required:!0,message:"学生学号不能为空",trigger:"blur"}],phone:[{required:!0,message:"手机号不能为空",trigger:"blur"},{validator:e,trigger:"blur"}]}}},methods:{init(t){i.Z.getGroupList2(this).then((t=>{this.groupIdes=t.data.list})),this.dataForm.id=t||0,this.$http({url:this.$http.adornUrl("/sys/role/select"),method:"get",params:this.$http.adornParams()}).then((({data:t})=>{this.roleList=t&&200===t.code?t.list:[]})).then((()=>{this.visible=!0,this.$nextTick((()=>{this.$refs["dataForm"].resetFields()}))})).then((()=>{this.dataForm.id&&(console.log("this.dataForm.id",this.dataForm.id),this.$http({url:this.$http.adornUrl(`/excel/info/${this.dataForm.id}`),method:"get",params:this.$http.adornParams()}).then((({data:t})=>{console.log(t),t&&200===t.code&&(this.dataForm.dormitoryType=parseInt(t.user.dormitoryType),this.dataForm.dormitory=t.user.dormitory,this.dataForm.dormitoryNum=t.user.dormitoryNum,this.dataForm.dormitoryStatus=parseInt(t.user.dormitoryStatus))})))}))},dataFormSubmit(){}}},d=l,n=r(1001),u=(0,n.Z)(d,a,o,!1,null,null,null),m=u.exports},62015:function(t,e,r){r(57658);e["Z"]={getGroupList(t){t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()}).then((e=>{e.data.list.forEach((e=>{t.groupIdes.push({text:e.name,id:e.id,value:e.id})}))}))},getGroupList2(t){return t.$http({url:t.$http.adornUrl("/group/list"),method:"get",params:t.$http.adornParams()})}}}}]);
|