Merge branch 'master' of gitlab.navinfo.com:CollectVehicle/OneMapQS

 Conflicts:
	vtm
This commit is contained in:
squallzhjch 2023-08-25 09:28:23 +08:00
commit 7c533faad2
205 changed files with 4571 additions and 50 deletions

View File

@ -2,12 +2,28 @@
{
"tableGroupName": "普通图层",
"tableMap" : {
"1007": {
"table": "OMDB_NODE_FORM",
"code": 1007,
"name": "点形态",
"zoomMin": 15,
"zoomMax": 20,
"checkLinkId": false
},
"1007_PA": {
"table": "OMDB_NODE_PA",
"code": 1007,
"name": "点形态PA",
"zoomMin": 15,
"zoomMax": 20,
"checkLinkId": false
},
"1012": {
"table": "OMDB_CHECKPOINT",
"code": 1012,
"name": "检查点",
"zoomMin": 15,
"zoomMax": 19
"zoomMax": 20
},
"2001": {
"table": "OMDB_RD_LINK",
@ -72,6 +88,13 @@
}
]
},
"2017": {
"table": "OMDB_LINK_CONSTRUCTION",
"code": 2017,
"name": "道路施工",
"zoomMin": 15,
"zoomMax": 17
},
"2019": {
"table": "OMDB_LINK_SPEEDLIMIT",
"code": 2019,
@ -106,6 +129,14 @@
"zoomMax": 20,
"checkLinkId": false
},
"2090":{
"table": "OMDB_LANE_CONSTRUCTION",
"code": 2090,
"name": "车道施工",
"zoomMin": 18,
"zoomMax": 20,
"checkLinkId": false
},
"2201":{
"table": "OMDB_BRIDGE",
"code": 2201,
@ -129,6 +160,39 @@
"zoomMax": 20,
"transformer2Code": ""
},
"3005":{
"table": "OMDB_TRAFFIC_SIGN",
"code": 3005,
"name": "交通标牌",
"is3D": true,
"transformer": [
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "normalizationTrafficSignHeight()"
},{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "generateDirectReferenceLine('', 0.2)"
}
]
},
"3006":{
"table": "OMDB_POLE",
"code": 3006,
"name": "杆状物",
"is3D": true,
"transformer": [
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "normalizationPoleHeight()"
}
]
},
"3012":{
"table": "OMDB_FILL_AREA",
"code": 3012,
@ -141,7 +205,8 @@
"code": 3016,
"name": "停止位置",
"zoomMin": 18,
"zoomMax": 20
"zoomMax": 20,
"checkLinkId": false
},
"4001": {
"table": "OMDB_INTERSECTION",
@ -260,6 +325,39 @@
}
]
},
"4009":{
"table": "OMDB_WARNINGSIGN",
"code": 4009,
"name": "警示信息",
"zoomMin": 15,
"zoomMax": 20,
"transformer": [
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "translateRight()"
},
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "generateS2EReferenceLine()"
},
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "generateDirectReferenceLine('',3)"
},
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "obtainReferenceDynamicSrc('assets:omdb/appendix/1105_','_0.svg','typeCode')"
}
]
},
"4010":{
"table": "OMDB_ELECTRONICEYE",
"code": 4010,
@ -283,7 +381,7 @@
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "generateDirectReferenceLine(3)"
"vlib": "generateDirectReferenceLine('',3)"
},
{
"k": "geometry",
@ -302,6 +400,15 @@
"transformer": [
]
},
"4023": {
"table": "OMDB_TOLLGATE",
"code": 4023,
"name": "收费站",
"zoomMin": 15,
"zoomMax": 20,
"transformer": [
]
},
"4601":{
"table": "OMDB_LANEINFO",
"code": 4601,
@ -359,7 +466,7 @@
"code": 2004,
"name": "道路属性",
"zoomMin": 15,
"zoomMax": 19,
"zoomMax": 20,
"transformer": [
{
"k": "geometry",

View File

@ -57,7 +57,7 @@ class ImportConfig {
for ((index, value) in params.withIndex()) {
// 前2个参数确定为对象本身和RenderEntity因此自定义参数从index+2开始设置
if (methodParams.size>index+2) {
callByParams[methodParams[index+2]] = value
callByParams[methodParams[index+2]] = value.replace("'", "")
}
}
when(val result = method.callBy(callByParams)) { // 如果方法返回的数据类型是boolean且返回为false则该数据不处理
@ -125,6 +125,7 @@ class TableInfo {
val name: String = ""
var checked : Boolean = true
var transformer: MutableList<Transform> = mutableListOf()
var is3D : Boolean = false // 是否支持3D默认情况下都不支持3D在数据导入阶段会自动抹去Z轴高程信息
}
class Transform {

View File

@ -12,6 +12,7 @@ import com.google.gson.reflect.TypeToken
import com.navinfo.collect.library.data.entity.RenderEntity
import com.navinfo.collect.library.data.entity.TaskBean
import com.navinfo.collect.library.enums.DataCodeEnum
import com.navinfo.collect.library.utils.GeometryTools
import com.navinfo.omqs.Constant
import com.navinfo.omqs.bean.ImportConfig
import com.navinfo.omqs.db.deep.LinkList
@ -23,6 +24,7 @@ import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.flow
import kotlinx.coroutines.withContext
import org.locationtech.jts.geom.Geometry
import org.spatialite.database.SQLiteDatabase
import java.io.File
import javax.inject.Inject
@ -144,6 +146,7 @@ class ImportOMDBHelper @AssistedInject constructor(
val realm = Realm.getDefaultInstance()
// 先获取当前配置的所有图层的个数,方便后续计算数据解析进度
var tableNum = 0
var processIndex = 0
for (importConfig in importConfigList) {
tableNum += importConfig.tableMap.size
}
@ -173,8 +176,6 @@ class ImportOMDBHelper @AssistedInject constructor(
.toMutableMap()
map["qi_table"] = currentConfig.table
map["qi_name"] = currentConfig.name
map["qi_code"] =
if (currentConfig.code == 0) currentConfig.code else currentEntry.key
map["qi_code"] = if (currentConfig.code == 0) currentConfig.code else currentEntry.key
map["qi_zoomMin"] = currentConfig.zoomMin
map["qi_zoomMax"] = currentConfig.zoomMax
@ -189,8 +190,26 @@ class ImportOMDBHelper @AssistedInject constructor(
renderEntity.zoomMin = map["qi_zoomMin"].toString().toInt()
renderEntity.zoomMax = map["qi_zoomMax"].toString().toInt()
// 其他数据插入到Properties中
renderEntity.geometry = map["geometry"].toString()
// 其他数据插入到Properties中
if (!currentConfig.is3D) { // 如果是非3d要素则自动将Z轴坐标全部置为0
val coordinates = renderEntity.wkt?.coordinates?.map {
coordinate -> coordinate.z = 0.0
coordinate
}?.toTypedArray()
var newGeometry: Geometry? = null
if (renderEntity.wkt?.geometryType == Geometry.TYPENAME_POINT) {
newGeometry = GeometryTools.createPoint(coordinates!![0].x, coordinates!![0].y)
} else if (renderEntity.wkt?.geometryType == Geometry.TYPENAME_LINESTRING) {
newGeometry = GeometryTools.createLineString(coordinates)
} else if (renderEntity.wkt?.geometryType == Geometry.TYPENAME_POLYGON) {
newGeometry = GeometryTools.createLineString(coordinates)
}
if (newGeometry!=null) {
renderEntity.geometry = newGeometry.toString()
}
}
for ((key, value) in map) {
when (value) {
is String -> renderEntity.properties.put(key, value)
@ -390,6 +409,44 @@ class ImportOMDBHelper @AssistedInject constructor(
}
}
}
}else if(renderEntity.table == DataCodeEnum.OMDB_NODE_FORM.name){//特殊处理因为code相同使用表名判断
//过滤不需要渲染的要素
var formOfWay = renderEntity.properties["formOfWay"]
if(formOfWay!=null&&formOfWay=="30"){
renderEntity.enable=2
renderEntity.code = DataCodeEnum.OMDB_NODE_FORM.code
}else{
Log.e("qj","过滤不显示数据${renderEntity.table}")
continue
}
}else if(renderEntity.table == DataCodeEnum.OMDB_NODE_PA.name){//特殊处理因为code相同使用表名判断
//过滤不需要渲染的要素
var attributeType = renderEntity.properties["attributeType"]
if(attributeType!=null&&attributeType=="30"){
renderEntity.enable=2
renderEntity.code = DataCodeEnum.OMDB_NODE_PA.code
}else{
Log.e("qj","过滤不显示数据${renderEntity.table}")
continue
}
}else if(renderEntity.code == DataCodeEnum.OMDB_OBJECT_STOPLOCATION.code){
//过滤不需要渲染的要素
var locationType = renderEntity.properties["locationType"]
if(locationType!=null){
when (locationType) {
"3","4"->{
renderEntity.enable=0
Log.e("qj","过滤不显示数据${renderEntity.table}")
continue
}
}
}
}else if(renderEntity.code == DataCodeEnum.OMDB_LANE_CONSTRUCTION.code){
//特殊处理空数据,渲染原则使用
var startTime = renderEntity.properties["startTime"]
if(startTime==null||startTime=="") {
renderEntity.properties["startTime"] = "null"
}
}
listResult.add(renderEntity)
@ -401,7 +458,7 @@ class ImportOMDBHelper @AssistedInject constructor(
}
}
// 1个文件发送一次flow流
emit("${index + 1}/${tableNum}")
emit("${++processIndex}/${tableNum}")
// 如果当前解析的是OMDB_RD_LINK数据将其缓存在预处理类中以便后续处理其他要素时使用
if (currentConfig.table == "OMDB_RD_LINK") {
importConfig.preProcess.cacheRdLink =

View File

@ -231,7 +231,11 @@ class ImportPreProcess {
if (renderEntity.table == table) {
Log.e("qj","generateS2EReferencePoint===开始")
if (renderEntity.properties.containsKey(proKey)) {
startReference.properties["type"] = "s_2_p_${renderEntity.properties[proKey]}"
if(renderEntity.properties[proKey]!=""){
startReference.properties["type"] = "s_2_p_${renderEntity.properties[proKey]}"
}else{
startReference.properties["type"] = "s_2_p_0"
}
Log.e("qj","generateS2EReferencePoint===s_2_p_${renderEntity.properties[proKey]}")
}
} else {
@ -258,7 +262,11 @@ class ImportPreProcess {
endReference.properties["qi_table"] = renderEntity.table
if (renderEntity.table == table) {
if (renderEntity.properties.containsKey(proKey)) {
endReference.properties["type"] = "e_2_p_${renderEntity.properties[proKey]}"
if(renderEntity.properties[proKey]!=""){
endReference.properties["type"] = "e_2_p_${renderEntity.properties[proKey]}"
}else{
endReference.properties["type"] = "e_2_p_0"
}
}
} else {
endReference.properties["type"] = "e_2_p"
@ -653,4 +661,85 @@ class ImportPreProcess {
WKTWriter(3).write(GeometryTools.getPolygonGeometry(geometry.coordinates))
}
}
/**
* 生成动态src字段-辅助图层一般用于显示带角度的图标
* @param renderEntity 要被处理的RenderEntity
* @param prefix 图片的前缀一般还需要指定图片对应的文件夹
* @param suffix 图片的后缀根据codeName获取到的code后匹配图片的后缀还包含code码后的其他字符串内容
* @param codeName 数据对应的code字段的字段名
* */
fun obtainReferenceDynamicSrc(renderEntity: RenderEntity, prefix: String, suffix: String, codeName: String) {
if (codeName.isNullOrBlank()) {
return
}
// 根据数据或angle计算方向对应的角度和偏移量
val geometry = renderEntity.wkt
var radian = 0.0 // geometry的角度如果是点获取angle如果是线获取最后两个点的方向
var pointStartArray = mutableListOf<Coordinate>()
if (Geometry.TYPENAME_POINT == geometry?.geometryType) {
val point = Coordinate(geometry?.coordinate)
pointStartArray.add(point)
var angle =
if (renderEntity?.properties?.get("angle") == null) 0.0 else renderEntity?.properties?.get(
"angle"
)?.toDouble()!!
// angle角度为与正北方向的顺时针夹角将其转换为与X轴正方向的逆时针夹角即为正东方向的夹角
angle = (450 - angle) % 360
radian = Math.toRadians(angle)
} else if (Geometry.TYPENAME_LINESTRING == geometry?.geometryType) {
var coordinates = geometry.coordinates
val p1: Coordinate = coordinates.get(coordinates.size - 2)
val p2: Coordinate = coordinates.get(coordinates.size - 1)
// 计算线段的方向
radian = Angle.angle(p1, p2)
pointStartArray.add(p1)
} else if (Geometry.TYPENAME_POLYGON == geometry?.geometryType) {
// 记录下面数据的每一个点位
pointStartArray.addAll(geometry.coordinates)
// 获取当前的面数据对应的方向信息
var angle = if (renderEntity?.properties?.get("angle") == null) {
if (renderEntity?.properties?.get("heading") == null) {
0.0
} else {
renderEntity?.properties?.get("heading")?.toDouble()!!
}
} else renderEntity?.properties?.get("angle")?.toDouble()!!
angle = (450 - angle) % 360
radian = Math.toRadians(angle)
}
// 计算偏移距离
var dx: Double = GeometryTools.convertDistanceToDegree(
defaultTranslateDistance,
geometry?.coordinate?.y!!
) * Math.cos(radian)
var dy: Double = GeometryTools.convertDistanceToDegree(
defaultTranslateDistance,
geometry?.coordinate?.y!!
) * Math.sin(radian)
for (pointStart in pointStartArray) {
val coorEnd = Coordinate(pointStart.getX() + dx, pointStart.getY() + dy, pointStart.z)
val dynamicSrcReference = ReferenceEntity()
dynamicSrcReference.renderEntityId = renderEntity.id
dynamicSrcReference.name = "${renderEntity.name}动态icon"
dynamicSrcReference.table = renderEntity.table
dynamicSrcReference.zoomMin = renderEntity.zoomMin
dynamicSrcReference.zoomMax = renderEntity.zoomMax
dynamicSrcReference.taskId = renderEntity.taskId
dynamicSrcReference.enable = renderEntity.enable
// 与原有方向指向平行的线
dynamicSrcReference.geometry =
WKTWriter(3).write(GeometryTools.createLineString(arrayOf(pointStart, coorEnd)))
dynamicSrcReference.properties["qi_table"] = renderEntity.table
dynamicSrcReference.properties["type"] = "dynamicSrc"
val code = renderEntity.properties[codeName]
dynamicSrcReference.properties["src"] = "${prefix}${code}${suffix}"
Realm.getDefaultInstance().insert(dynamicSrcReference)
}
}
}

View File

@ -129,7 +129,7 @@ class PersonalCenterFragment(private var indoorDataListener: ((Boolean) -> Unit?
// 定位到指定位置
niMapController.mMapView.vtmMap.animator()
// .animateTo(GeoPoint( 40.05108004733645, 116.29187746293708 ))
.animateTo(GeoPoint( 40.45403725443716, 115.81488271796577))
.animateTo(GeoPoint( 40.45250049995882, 115.85967482434108 ))
}
R.id.personal_center_menu_open_all_layer -> {
MapParamUtils.setDataLayerEnum(DataLayerEnum.SHOW_ALL_LAYERS)

View File

@ -171,7 +171,7 @@ class PersonalCenterViewModel @Inject constructor(
}
} else {
val newTask = TaskBean()
newTask.id = 9999
newTask.id = -1
importOMDBHelper.importOmdbZipFile(importOMDBHelper.omdbFile, newTask).collect {
Log.d("importOMDBData", it)
}

View File

@ -254,6 +254,10 @@
<xs:attribute name="repeat-gap" default="200" type="xs:float" use="optional"/>
<xs:attribute name="repeat-start" default="30" type="xs:float" use="optional"/>
<xs:attribute name="rotate" default="true" type="xs:boolean" use="optional"/>
<!-- 设置是否支持图标压盖如果为true则同点位图标不避让允许压盖否则支持自动避让 -->
<xs:attribute name="gland" default="false" type="xs:boolean" use="optional"/>
<!-- 原图标旋转角度默认情况下应该使用以X轴为正方向的图标此处可设置原图标的旋转角度在渲染时自动对图标进行旋转仅支持线要素 -->
<xs:attribute name="degree" default="0" type="xs:float" use="optional"/>
</xs:complexType>
<xs:complexType name="extrusion">

View File

@ -1987,12 +1987,37 @@
</m>
<!-- 检查点 -->
<m v="OMDB_CHECKPOINT">
<m v="OMDB_NODE_FORM">
<symbol src="assets:omdb/icon_1012_0.svg" symbol-height="56"
symbol-width="56"></symbol>
</m>
<!-- 铁路路口 -->
<m v="OMDB_NODE_FORM">
<symbol src="assets:omdb/icon_1007_0.svg" symbol-height="56"
symbol-width="56"></symbol>
</m>
<!-- 铁路路口 -->
<m v="OMDB_NODE_PA">
<symbol src="assets:omdb/icon_1007_0.svg" symbol-height="56"
symbol-width="56"></symbol>
</m>
<!-- 收费站 -->
<m v="OMDB_TOLLGATE">
<m k="angle">
<symbol repeat="false" repeat-start="0" rotate="false"
src="assets:omdb/icon_4023_0.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<!-- <m k="type" v="angle">
<symbol repeat="false" repeat-gap="2000" repeat-start="0" rotate="true"
src="assets:omdb/icon_arrow_right.svg" symbol-height="64"
symbol-width="64"></symbol>
</m>
<m k="type" v="s_2_e">
<line use="s2e" />
</m>-->
</m>
<!-- 道路边界类型 -->
<m v="OMDB_RDBOUND_BOUNDARYTYPE">
<outline-layer id="boundaryType" stroke="#8e44ad" width="0.1" />
@ -2141,11 +2166,11 @@
<line dasharray="4,4" stroke="#4624FF" width="0.4" />
</m>
<m k="type" v="s_2_p">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2202_0.svg" symbol-height="24" symbol-width="24"></symbol>
</m>
<m k="type" v="e_2_p">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2202_1.svg" symbol-height="24" symbol-width="24"></symbol>
</m>
</m>
@ -2157,27 +2182,27 @@
<lineSymbol repeat-gap="24" repeat-start="0" symbol-height="24" src="assets:omdb/icon_2201_1.svg" />
</m>
<m k="type" v="s_2_p_1">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2201_1_1.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<m k="type" v="e_2_p_1">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2201_1_2.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<m k="type" v="s_2_p_2">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2201_2_1.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<m k="type" v="e_2_p_2">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2201_2_2.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<m k="type" v="s_2_p_3">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2201_3_1.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<m k="type" v="e_2_p_3">
<symbol repeat="false" repeat-start="0" rotate="false"
<symbol repeat="false" repeat-start="0" rotate="false" gland="true"
src="assets:omdb/icon_2201_3_2.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
</m>
@ -2193,10 +2218,10 @@
<m k="locationType" v="1">
<m k="color" v="1">
<line stroke="#ffffff" use="boundaryType" width="0.1"/>
<line stroke="#ffffff" repeat-start="2" use="boundaryType" width="0.1"/>
</m>
<m k="color" v="9">
<line stroke="#eccc68" use="boundaryType" width="0.1"/>
<line stroke="#eccc68" repeat-start="2" use="boundaryType" width="0.1"/>
</m>
</m>
@ -2208,25 +2233,9 @@
<symbol repeat="true" repeat-gap="1" repeat-start="2" src="assets:omdb/icon_3016_1.svg" symbol-width="5" symbol-height="24"></symbol>
</m>
</m>
<!--虚线不做渲染-->
<!-- <m k="locationType" v="3">
<m k="color" v="1">
<symbol repeat="true" repeat-gap="4" repeat-start="0" src="assets:omdb/icon_2013_3.svg" symbol-width="10" symbol-height="4"></symbol>
</m>
<m k="color" v="9">
<symbol repeat="true" repeat-gap="4" repeat-start="0" src="assets:omdb/icon_2013_3.svg" symbol-width="10" symbol-height="4"></symbol>
</m>
</m>
<m k="locationType" v="4">
<m k="color" v="1">
<line dasharray="1,1,1,1" repeat-start="0" stroke="#ffffff" width="0.1"/>
</m>
<m k="color" v="9">
<line dasharray="1,1,1,1" repeat-start="0" stroke="#eccc68" width="0.1"/>
</m>
</m>-->
</m>
<!--常规点限速-->
<m v="OMDB_SPEEDLIMIT">
<m k="speedFlag" v="0">
@ -2300,11 +2309,14 @@
<!--电子眼-->
<m v="OMDB_ELECTRONICEYE">
<caption dy="-30" fill="#0000FF" k="name" priority="0" size="12"
stroke="#ffffff" stroke-width="1.0"></caption>
<m k="eleceyeId">
<caption dy="-30" fill="#0000FF" k="name" priority="0" size="12"
stroke="#ffffff" stroke-width="1.0"></caption>
<symbol repeat="false" src="assets:omdb/4010/icon_electroniceye_4010.svg" symbol-height="24" symbol-width="24"></symbol>
</m>
<m k="type" v="angle">
<symbol repeat="false" repeat-gap="2000" repeat-start="0" rotate="true"
src="assets:omdb/icon_4010.svg" symbol-height="24" symbol-width="18"></symbol>
src="assets:omdb/4010/right.svg" symbol-height="24" symbol-width="24"></symbol>
</m>
<m k="type" v="s_2_e">
<line use="s2e" />
@ -2318,5 +2330,34 @@
<!-- <area use="obj-area" repeat="false"></area>-->
<!-- <symbol src="assets:omdb/icon_fill_area_3012.svg"></symbol>-->
</m>
<!-- 道路施工 -->
<m v="OMDB_LINK_CONSTRUCTION">
<line stroke="#FF0000" width="1" />
<symbol repeat="true" repeat-start="0" src="assets:omdb/icon_2017_1.svg"></symbol>
</m>
<!-- 车道施工 -->
<m v="OMDB_LANE_CONSTRUCTION">
<line stroke="#eccc68" width="0.1" />
<m k="startTime" v="null">
<symbol repeat="true" repeat-start="0" gland="true" repeat-gap="100" src="assets:omdb/icon_2017_1.svg"></symbol>
</m>
<m k="startTime" v="-|null">
<symbol repeat="true" repeat-start="0" repeat-gap="100" gland="true" src="assets:omdb/icon_2017_2.svg"></symbol>
</m>
</m>
<!-- 警示信息 -->
<m v="OMDB_WARNINGSIGN">
<m k="type" v="dynamicSrc">
<symbol repeat="false" repeat-gap="2000" repeat-start="0" rotate="true"
src="@src" symbol-height="24" symbol-width="24" degree="90"></symbol>
</m>
<m k="type" v="s_2_e">
<line use="s2e" />
</m>
</m>
</m>
</rendertheme>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="32mm" height="32mm" viewBox="0 0 90.7 90.7"><defs><style>.d{fill:#ca171d;stroke:#8b1c21;stroke-miterlimit:10;}.e{fill:#d7e2e3;opacity:0;}</style></defs><g id="c"><g><rect class="e" width="90.7" height="90.7"/><path class="d" d="M52.4,75.2l-7.3,14.6c-.2,.3-.6,.5-.9,.3-.1,0-.2-.2-.3-.3l-7.3-14.6c-.2-.3,0-.8,.3-.9,.2,0,.4,0,.5,0l7.1,2.5,7.1-2.5c.4-.1,.8,0,.9,.4,0,.2,0,.4,0,.5Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 485 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="32mm" height="32mm" viewBox="0 0 90.7 90.7"><defs><style>.d{fill:#ca171d;stroke:#8b1c21;stroke-miterlimit:10;}.e{fill:#d7e2e3;opacity:0;}</style></defs><g id="c"><g><rect class="e" width="90.7" height="90.7"/><path class="d" d="M17.4,54.1l-14.6-7.3c-.3-.2-.5-.6-.3-.9,0-.1,.2-.2,.3-.3l14.6-7.3c.3-.2,.8,0,.9,.3,0,.2,0,.4,0,.5l-2.5,7.1,2.5,7.1c.1,.4,0,.8-.4,.9-.2,0-.4,0-.5,0Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 484 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="32mm" height="32mm" viewBox="0 0 90.7 90.7"><defs><style>.d{fill:#ca171d;stroke:#8b1c21;stroke-miterlimit:10;}.e{fill:#d7e2e3;opacity:0;}</style></defs><g id="c"><g><rect class="e" width="90.7" height="90.7"/><path class="d" d="M73.3,39.5l14.6,7.3c.3,.2,.5,.6,.3,.9,0,.1-.2,.2-.3,.3l-14.6,7.3c-.3,.2-.8,0-.9-.3,0-.2,0-.4,0-.5l2.5-7.1-2.5-7.1c-.1-.4,0-.8,.4-.9,.2,0,.4,0,.5,0Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 484 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="32mm" height="32mm" viewBox="0 0 90.7 90.7"><defs><style>.d{fill:#ca171d;stroke:#8b1c21;stroke-miterlimit:10;}.e{fill:#d7e2e3;opacity:0;}</style></defs><g id="c"><g><rect class="e" width="90.7" height="90.7"/><path class="d" d="M37.7,19.2l7.3-14.6c.2-.3,.6-.5,.9-.3,.1,0,.2,.2,.3,.3l7.3,14.6c.2,.3,0,.8-.3,.9-.2,0-.4,0-.5,0l-7.1-2.5-7.1,2.5c-.4,.1-.8,0-.9-.4,0-.2,0-.4,0-.5Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 483 B

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="30px" height="28px" viewBox="0 0 30 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>qita_icon</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0002 0.672 29.465 0.672 29.465 27.9996 0.0002 27.9996"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-432.000000, -394.000000)">
<g id="qita_icon-2" transform="translate(432.000000, 393.000000)">
<g id="qita_icon">
<g id="编组复制-25">
<g id="编组" transform="translate(0.000000, 0.328000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M28.5572,27.9986 C29.0572,27.9986 29.4652,27.5706 29.4652,27.0356 C29.4652,26.8666 29.4212,26.6986 29.3432,26.5536 L15.5192,1.1546 C15.3582,0.8566 15.0582,0.6716 14.7302,0.6716 C14.4082,0.6716 14.1062,0.8566 13.9452,1.1546 L0.1172,26.5546 C0.0432,26.6996 0.0002,26.8686 0.0002,27.0366 C0.0002,27.5666 0.4062,27.9996 0.9092,27.9996 L28.5572,27.9986 Z" id="Fill-1" fill="#100808" mask="url(#mask-2)"></path>
</g>
<polygon id="Fill-3" fill="#F7BD42" points="25.4156 25.4369 4.0526 25.4369 14.7326 5.8169"></polygon>
</g>
<circle id="椭圆形" fill="#000000" cx="10.3" cy="19.3" r="1.3"></circle>
<circle id="椭圆形复制-9" fill="#000000" cx="14.8" cy="19.3" r="1.3"></circle>
<circle id="椭圆形复制-10" fill="#000000" cx="19.3" cy="19.3" r="1.3"></circle>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>5</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-209.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="5" transform="translate(2.000000, 2.000000)">
<circle id="椭圆形复制-180" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="5复制-8" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="6" y="13">5</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>10</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-248.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="10" transform="translate(41.000000, 2.000000)">
<circle id="椭圆形复制-192" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="10复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="4" y="13">10</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>15</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-287.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="15" transform="translate(80.000000, 2.000000)">
<circle id="椭圆形复制-185" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="15复制-9" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="4" y="13">15</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>20</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-326.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="20" transform="translate(119.000000, 2.000000)">
<circle id="椭圆形复制-197" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="20复制-9" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">20</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>25</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-366.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="25" transform="translate(159.000000, 2.000000)">
<circle id="椭圆形复制-182" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="25复制-8" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">25</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>30</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-405.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="30" transform="translate(198.000000, 2.000000)">
<circle id="椭圆形复制-194" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="30复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">30</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>35</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-444.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="35" transform="translate(237.000000, 2.000000)">
<circle id="椭圆形复制-189" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="35复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">35</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>40</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-483.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="40" transform="translate(276.000000, 2.000000)">
<circle id="椭圆形复制-201" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="40复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">40</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>45</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-523.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="45" transform="translate(316.000000, 2.000000)">
<circle id="椭圆形复制-187" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="45复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">45</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>50</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-562.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="50" transform="translate(355.000000, 2.000000)">
<circle id="椭圆形复制-199" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="50复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">50</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>55</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-603.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="55" transform="translate(396.000000, 2.000000)">
<circle id="椭圆形复制-184" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="55复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">55</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>60</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-642.000000, -1408.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="60" transform="translate(435.000000, 2.000000)">
<circle id="椭圆形复制-196" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="60复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">60</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>65</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-209.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="65" transform="translate(2.000000, 46.000000)">
<circle id="椭圆形复制-191" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="65复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">65</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>70</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-248.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="70" transform="translate(41.000000, 46.000000)">
<circle id="椭圆形复制-203" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="70复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">70</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>75</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-287.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="75" transform="translate(80.000000, 46.000000)">
<circle id="椭圆形复制-181" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="75复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">75</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>80</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-326.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="80" transform="translate(119.000000, 46.000000)">
<circle id="椭圆形复制-193" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="80复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">80</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>90</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-405.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="90" transform="translate(198.000000, 46.000000)">
<circle id="椭圆形复制-198" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="90复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="3" y="13">90</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>100</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-483.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="100" transform="translate(276.000000, 46.000000)">
<circle id="椭圆形复制-195" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="100复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="1" y="13">100</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>110</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-562.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="110" transform="translate(355.000000, 46.000000)">
<circle id="椭圆形复制-202" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="110复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="2" y="13">110</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>120</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-642.000000, -1452.000000)">
<g id="编组-4" transform="translate(209.000000, 1408.000000)">
<g id="120" transform="translate(435.000000, 46.000000)">
<circle id="椭圆形复制-200" stroke="#DA021B" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="120复制-7" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#DA0520">
<tspan x="1" y="13">120</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>5</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-211.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="5">
<circle id="椭圆形复制-51" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="5复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="8" y="15">5</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 963 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>10</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-250.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="10" transform="translate(39.000000, 0.000000)">
<circle id="椭圆形复制-63" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="10复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="6" y="15">10</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>15</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-289.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="15" transform="translate(78.000000, 0.000000)">
<circle id="椭圆形复制-56" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="15复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="6" y="15">15</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>20</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-328.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="20" transform="translate(117.000000, 0.000000)">
<circle id="椭圆形复制-68" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="20复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">20</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>25</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-368.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="25" transform="translate(157.000000, 0.000000)">
<circle id="椭圆形复制-53" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="25复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">25</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>30</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-407.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="30" transform="translate(196.000000, 0.000000)">
<circle id="椭圆形复制-65" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="30复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">30</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>35</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-446.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="35" transform="translate(235.000000, 0.000000)">
<circle id="椭圆形复制-60" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="35复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">35</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>40</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-485.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="40" transform="translate(274.000000, 0.000000)">
<circle id="椭圆形复制-72" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="40复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">40</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>45</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-525.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="45" transform="translate(314.000000, 0.000000)">
<circle id="椭圆形复制-58" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="45复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">45</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22"><defs><style>.h{fill:#7074ff;}.i{fill:#ececec;font-family:PingFangHK-Medium-B5pc-H, 'PingFang HK';font-size:10px;font-weight:500;isolation:isolate;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><circle id="g" class="h" cx="11" cy="11" r="11"/><text class="i" transform="translate(5 15)"><tspan x="0" y="0">50</tspan></text></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 482 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>55</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-605.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="55" transform="translate(394.000000, 0.000000)">
<circle id="椭圆形复制-55" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="55复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">55</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>60</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-644.000000, -1215.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="60" transform="translate(433.000000, 0.000000)">
<circle id="椭圆形复制-67" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="60复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">60</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>65</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-211.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="65" transform="translate(0.000000, 44.000000)">
<circle id="椭圆形复制-62" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="65复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">65</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>70</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-250.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="70" transform="translate(39.000000, 44.000000)">
<circle id="椭圆形复制-74" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="70复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">70</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>75</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-289.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="75" transform="translate(78.000000, 44.000000)">
<circle id="椭圆形复制-52" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="75复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">75</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1011 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>80</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-328.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="80" transform="translate(117.000000, 44.000000)">
<circle id="椭圆形复制-64" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="80复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">80</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1012 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>90</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-407.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="90" transform="translate(196.000000, 44.000000)">
<circle id="椭圆形复制-69" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="90复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="5" y="15">90</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1012 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>100</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-485.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="100" transform="translate(274.000000, 44.000000)">
<circle id="椭圆形复制-66" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="100复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="15">100</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1016 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>110</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-564.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="110" transform="translate(353.000000, 44.000000)">
<circle id="椭圆形复制-73" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="110复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="4" y="15">110</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1016 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>120</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-644.000000, -1259.000000)">
<g id="编组-3" transform="translate(211.000000, 1215.000000)">
<g id="120" transform="translate(433.000000, 44.000000)">
<circle id="椭圆形复制-71" fill="#7074FF" cx="11" cy="11" r="11"></circle>
<text id="120复制-2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="15">120</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1016 B

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>5</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1130.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="5" transform="translate(42.000000, 2.000000)">
<circle id="椭圆形复制-104" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="5复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="6" y="13">5</tspan>
</text>
<g id="编组-8复制-4" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>10</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1169.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="10" transform="translate(81.000000, 2.000000)">
<circle id="椭圆形复制-116" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="10复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="4" y="13">10</tspan>
</text>
<g id="编组-8复制-8" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>15</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1201.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="15" transform="translate(113.000000, 2.000000)">
<circle id="椭圆形复制-109" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="15复制-6" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="4" y="13">15</tspan>
</text>
<g id="编组-8复制-9" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>20</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1240.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="20" transform="translate(152.000000, 2.000000)">
<circle id="椭圆形复制-121" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="20复制-6" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">20</tspan>
</text>
<g id="编组-8复制-10" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>25</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1280.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="25" transform="translate(192.000000, 2.000000)">
<circle id="椭圆形复制-106" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="25复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">25</tspan>
</text>
<g id="编组-8复制-11" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>30</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1319.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="30" transform="translate(231.000000, 2.000000)">
<circle id="椭圆形复制-118" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="30复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">30</tspan>
</text>
<g id="编组-8复制-15" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>35</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1358.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="35" transform="translate(270.000000, 2.000000)">
<circle id="椭圆形复制-113" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="35复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">35</tspan>
</text>
<g id="编组-8复制-16" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>40</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1397.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="40" transform="translate(309.000000, 2.000000)">
<circle id="椭圆形复制-125" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="40复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">40</tspan>
</text>
<g id="编组-8复制-19" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>45</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1437.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="45" transform="translate(349.000000, 2.000000)">
<circle id="椭圆形复制-111" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="45复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">45</tspan>
</text>
<g id="编组-8复制-22" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>50</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1477.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="50" transform="translate(389.000000, 2.000000)">
<circle id="椭圆形复制-123" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="50复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">50</tspan>
</text>
<g id="编组-8复制-23" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>55</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1517.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="55" transform="translate(429.000000, 2.000000)">
<circle id="椭圆形复制-108" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="55复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">55</tspan>
</text>
<g id="编组-8复制-24" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>60</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1556.000000, -1546.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="60" transform="translate(468.000000, 2.000000)">
<circle id="椭圆形复制-120" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="60复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">60</tspan>
</text>
<g id="编组-8复制-25" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>65</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1091.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="65" transform="translate(3.000000, 46.000000)">
<circle id="椭圆形复制-115" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="65复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">65</tspan>
</text>
<g id="编组-8复制-5" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>70</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1130.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="70" transform="translate(42.000000, 46.000000)">
<circle id="椭圆形复制-127" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="70复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">70</tspan>
</text>
<g id="编组-8复制-6" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>75</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1169.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="75" transform="translate(81.000000, 46.000000)">
<circle id="椭圆形复制-105" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="75复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">75</tspan>
</text>
<g id="编组-8复制-7" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>80</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1208.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="80" transform="translate(120.000000, 46.000000)">
<circle id="椭圆形复制-117" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="80复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">80</tspan>
</text>
<g id="编组-8复制-14" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>90</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1287.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="90" transform="translate(199.000000, 46.000000)">
<circle id="椭圆形复制-122" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="90复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="3" y="13">90</tspan>
</text>
<g id="编组-8复制-12" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>100</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1365.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="100" transform="translate(277.000000, 46.000000)">
<circle id="椭圆形复制-119" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="100复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="1" y="13">100</tspan>
</text>
<g id="编组-8复制-17" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>110</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1444.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="110" transform="translate(356.000000, 46.000000)">
<circle id="椭圆形复制-126" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="110复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="2" y="13">110</tspan>
</text>
<g id="编组-8复制-21" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>120</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-1524.000000, -1590.000000)">
<g id="编组-17复制" transform="translate(1090.000000, 1546.000000)">
<g id="120" transform="translate(436.000000, 46.000000)">
<circle id="椭圆形复制-124" stroke="#CBCBCB" stroke-width="1.5" cx="9" cy="9" r="9.75"></circle>
<text id="120复制-4" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#ECECEC">
<tspan x="1" y="13">120</tspan>
</text>
<g id="编组-8复制-26" transform="translate(1.000000, 1.000000)" stroke="#CBCBCB" stroke-width="0.5">
<path d="M14,1 L1,14" id="Stroke-5复制"></path>
<path d="M13,0 L0,13" id="Stroke-7复制"></path>
<path d="M15,2 L2,15" id="Stroke-9复制"></path>
<path d="M16,3 L3,16" id="Stroke-13复制"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>5</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-215.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="5">
<rect id="矩形" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="9" y="12">5</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 966 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>10</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-254.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="10" transform="translate(39.000000, 0.000000)">
<rect id="矩形复制-2" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="7" y="12">10</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1020 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>15</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-293.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="15" transform="translate(78.000000, 0.000000)">
<rect id="矩形复制-5" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="7" y="12">15</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1020 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>20</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-332.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="20" transform="translate(117.000000, 0.000000)">
<rect id="矩形复制-6" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">20</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>25</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-369.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="25" transform="translate(154.000000, 0.000000)">
<rect id="矩形复制-7" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">25</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>30</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-406.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="30" transform="translate(191.000000, 0.000000)">
<rect id="矩形复制-8" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">30</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>35</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-443.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="35" transform="translate(228.000000, 0.000000)">
<rect id="矩形复制-9" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">35</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>40</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-480.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="40" transform="translate(265.000000, 0.000000)">
<rect id="矩形复制-10" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">40</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>45</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-517.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="45" transform="translate(302.000000, 0.000000)">
<rect id="矩形复制-11" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">45</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>50</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-554.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="50" transform="translate(339.000000, 0.000000)">
<rect id="矩形复制-12" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">50</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>55</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-591.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="55" transform="translate(376.000000, 0.000000)">
<rect id="矩形复制-13" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">55</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>60</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-628.000000, -1623.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="60" transform="translate(413.000000, 0.000000)">
<rect id="矩形复制-14" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">60</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>65</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-215.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="65" transform="translate(0.000000, 41.000000)">
<rect id="矩形复制-15" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">65</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>70</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-254.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="70" transform="translate(39.000000, 41.000000)">
<rect id="矩形复制-16" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">70</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>75</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-293.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="75" transform="translate(78.000000, 41.000000)">
<rect id="矩形复制-17" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">75</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>80</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-332.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="80" transform="translate(117.000000, 41.000000)">
<rect id="矩形复制-17" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">80</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>85</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-369.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="85" transform="translate(154.000000, 41.000000)">
<rect id="矩形复制-20" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">85</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>90</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-406.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="90" transform="translate(191.000000, 41.000000)">
<rect id="矩形复制-21" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">90</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>95</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-443.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="95" transform="translate(228.000000, 41.000000)">
<rect id="矩形复制-22" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="6" y="12">95</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1023 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>100</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-480.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="100" transform="translate(265.000000, 41.000000)">
<rect id="矩形复制-23" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="4" y="12">100</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>105</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-517.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="105" transform="translate(302.000000, 41.000000)">
<rect id="矩形复制-24" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="4" y="12">105</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>110</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-554.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="110" transform="translate(339.000000, 41.000000)">
<rect id="矩形复制-25" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="5" y="12">110</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>115</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-591.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="115" transform="translate(376.000000, 41.000000)">
<rect id="矩形复制-26" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="5" y="12">115</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="16px" viewBox="0 0 24 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>120</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-汇总说明" transform="translate(-628.000000, -1664.000000)">
<g id="编组-25" transform="translate(215.000000, 1623.000000)">
<g id="120" transform="translate(413.000000, 41.000000)">
<rect id="矩形复制-27" stroke="#6D6D6D" fill="#FFFC7D" x="0.5" y="0.5" width="23" height="15"></rect>
<text font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" fill="#000000">
<tspan x="4" y="12">120</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1"
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹閹间礁纾圭€瑰嫭鍣磋ぐ鎺戠倞闁哄啫鐗婇崑鎰版煕濞嗗繘宕伴幇纾藉ù锝嗗灊閸氭煕鐎d户闁瑰箍鍨归埞鎴犫偓锝忕床婵犵數濮撮敃銈夊箠閹扮増鏅繝濠傚暊閺€浠嬫煃閳轰礁鏆㈢痪鍋撶紓鍌氬€烽懗鑸垫叏闂堟稓鏆嗙紒瀣仢鐓ょ紒鐘茬秺閺岋綁骞囩徊璇测攽濞叉牠鍩為幋锔芥櫖闁告洖鎽嬫繝纰樷偓鎶芥煙閸嬫捇骞栨潏鍓ф偧闁绘挻鎹囬弻锝夋偐閸欏绐涢梺绋块幐姝岀亱闂佸憡鍔栧Σ姊洪柅鐐插閸樼敻姊洪懝鏉垮惞婵" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾归柟闂寸绾剧懓鐎f崳闁绘閵嗘帒閿濆懍澹曟俊銈囧Х閸嬬偤鎮ч悩鑼嫚濞村濠电偛妫欓崝鏇㈠礉閸涘瓨鈷戦梻鍫熺〒缁犲啿鈹戦弨杈╃矉閹烘鍤冮柍鍝勫暟閿涙繃绻涙潏鍓у缂佺懇瀹暶洪悡娆撴煕濞戞﹫鏀婚柛濠冨姍閺" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
</sodipodi:namedview>
<g>
<path id="path14_8_" fill="#FEFEFE" stroke="#D91C0F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="
M1.478,15.001c0,7.454,6.066,13.52,13.522,13.52s13.522-6.064,13.522-13.52S22.459,1.48,15,1.48
C7.545,1.48,1.478,7.546,1.478,15.001z"/>
<g>
<path id="path3387_3_" sodipodi:nodetypes="cczcczccscccccccccscczcczccc" stroke="#000000" stroke-width="0.25" d="
M15.771,25.621l-2.306-0.798c0,0-1.258-0.461-2.427-0.922c-0.721-0.25-1.032-0.43-1.254-1.478v-1.95c0,0,0.013-0.022-0.002-0.967
c-0.015-0.919,1.237-1.53,1.237-1.53l4.749-3.345c0,0,0.708-0.333,1.532-1.302c0.885-1.041,0.859-2.367,0.859-2.367l0.019-4.127
l4.221,3.882l0.067-2.41L17.16,3.367L10.269,8.3l0.072,2.301l5.922-3.884L16.265,8.6c0,0,0.057,2.125-0.278,3.073
c-0.261,0.745-1.458,1.317-1.458,1.317l-5.027,3.549c0,0-0.921,0.476-1.221,1.119c-0.33,0.702-0.265,2.527-0.265,2.527
l0.031,1.487c-0.017-2.804-0.039,0.735,0.089,1.684c0.132,0.943,0.937,1.31,1.649,1.545l5.938,2.289L15.771,25.621z"/>
<path id="path3194" sodipodi:nodetypes="cccccccccc" stroke="#000000" stroke-width="0.5" d="M19.257,25.448l0.007-7.581
l3.112,2.217l0.044-1.419l-3.716-3.054l-3.647,3.056l0.041,1.484l2.975-2.215l-0.017,7.515L19.257,25.448z"/>
</g>
<rect x="14.072" y="1.841" fill="#D91C0F" width="1.852" height="26.317"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1"
id="svg2203" xmlns:cc="http://web.resource.org/cc/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" sodipodi:version="0.32" sodipodi:docname="闂傚倸鍊搁崐鎼佸磹閹间礁纾圭€瑰嫭鍣磋ぐ鎺戠倞闁哄啫鐗婇崑鎰版煕濞嗗繘宕伴幇纾藉ù锝嗗灊閸氭煕鐎d户闁瑰箍鍨归埞鎴犫偓锝忕床婵犵數濮撮敃銈夊箠閹扮増鏅繝濠傚暊閺€浠嬫煃閳轰礁鏆㈢痪鍋撶紓鍌氬€烽懗鑸垫叏闂堟稓鏆嗙紒瀣仢鐓ょ紒鐘茬秺閺岋綁骞囩徊璇测攽濞叉牠鍩為幋锔芥櫖闁告洖鎽嬫繝纰樷偓鎶芥煙閸嬫捇骞栨潏鍓ф偧闁绘挻鎹囬弻锝夋偐閸欏绐涢梺绋块幐姝岀亱闂佸憡鍔栧Σ姊洪柅鐐插閸樼敻姊洪懝鏉垮惞婵" sodipodi:docbase="D:\SVG\闂傚倸鍊搁崐鎼佸磹閹间礁纾归柟闂寸绾剧懓鐎f崳闁绘閵嗘帒閿濆懍澹曟俊銈囧Х閸嬬偤鎮ч悩鑼嫚濞村濠电偛妫欓崝鏇㈠礉閸涘瓨鈷戦梻鍫熺〒缁犲啿鈹戦弨杈╃矉閹烘鍤冮柍鍝勫暟閿涙繃绻涙潏鍓у缂佺懇瀹暶洪悡娆撴煕濞戞﹫鏀婚柛濠冨姍閺" inkscape:version="0.45.1" inkscape:output_extension="org.inkscape.output.svg.inkscape"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px"
viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<sodipodi:namedview inkscape:zoom="0.74999999" id="base" showguides="true" guidetolerance="10" pagecolor="#ffffff" inkscape:cx="126.79097" borderopacity="1.0" gridtolerance="10000" bordercolor="#666666" inkscape:cy="646.08493" objecttolerance="10" inkscape:window-height="968" inkscape:window-y="-4" inkscape:window-x="-4" inkscape:window-width="1280" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:guide-bbox="true">
<sodipodi:guide position="1116" id="guide22942" orientation="vertical"></sodipodi:guide>
<sodipodi:guide position="1147" id="guide22944" orientation="vertical"></sodipodi:guide>
</sodipodi:namedview>
<g>
<path id="path14_9_" fill="#FEFEFE" stroke="#000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="
M1.478,15c0,7.454,6.064,13.52,13.524,13.52c7.455,0,13.52-6.064,13.52-13.52S22.459,1.479,15.002,1.479
C7.543,1.481,1.478,7.543,1.478,15z"/>
<g opacity="0.75">
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="3.883" y1="21.057" x2="24.258" y2="6.702"/>
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="4.655" y1="22.484" x2="25.03" y2="8.128"/>
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="5.62" y1="23.951" x2="25.995" y2="9.595"/>
<line fill="none" stroke="#000000" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round" x1="6.507" y1="25.381" x2="26.882" y2="11.025"/>
</g>
<g>
<path id="path3387_1_" sodipodi:nodetypes="cczcczccscccccccccscczcczccc" stroke="#000000" stroke-width="0.25" d="M15.769,25.62
l-2.304-0.798c0,0-1.261-0.461-2.428-0.922c-0.722-0.25-1.032-0.43-1.254-1.478v-1.95c0,0,0.013-0.022-0.002-0.967
c-0.015-0.919,1.237-1.53,1.237-1.53l4.751-3.345c0,0,0.706-0.333,1.53-1.302c0.887-1.043,0.863-2.367,0.863-2.367l0.017-4.127
l4.223,3.882l0.065-2.41l-5.305-4.938l-6.892,4.933l0.072,2.301l5.922-3.884l0.002,1.884c0,0,0.057,2.125-0.274,3.073
c-0.265,0.745-1.458,1.317-1.458,1.317l-5.038,3.547c0,0-0.921,0.476-1.219,1.119c-0.332,0.702-0.267,2.527-0.267,2.527
l0.035,1.487c-0.02-2.804-0.041,0.735,0.089,1.684c0.13,0.943,0.935,1.31,1.647,1.545l5.938,2.289L15.769,25.62z"/>
<path id="path3194_1_" sodipodi:nodetypes="cccccccccc" stroke="#000000" stroke-width="0.5" d="M19.257,25.446l0.007-7.581
l3.114,2.217l0.044-1.419l-3.716-3.053l-3.649,3.056l0.041,1.484l2.977-2.215l-0.019,7.515L19.257,25.446z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

Some files were not shown because too many files have changed in this diff Show More