模板,表格,登陆修改
|
|
@ -24,7 +24,7 @@ public class Tbl_User implements java.io.Serializable {
|
|||
/**
|
||||
* 版本号
|
||||
*/
|
||||
private static final long serialVersionUID = 1916426418064460350L;
|
||||
private static final long serialVersionUID = -7318879296790573758L;
|
||||
|
||||
/**
|
||||
* 用户Id
|
||||
|
|
@ -99,6 +99,11 @@ public class Tbl_User implements java.io.Serializable {
|
|||
@Column(name = "create_time", nullable = true)
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* */
|
||||
@Column(name = "phone_type", nullable = true, length = 10)
|
||||
private String phoneType;
|
||||
|
||||
/**
|
||||
* 登陆手机类型
|
||||
*/
|
||||
|
|
@ -380,6 +385,25 @@ public class Tbl_User implements java.io.Serializable {
|
|||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getPhoneType() {
|
||||
return this.phoneType;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置
|
||||
*
|
||||
* @param phoneType
|
||||
*
|
||||
*/
|
||||
public void setPhoneType(String phoneType) {
|
||||
this.phoneType = phoneType;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取登陆手机类型
|
||||
*
|
||||
|
|
|
|||
|
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package com.ifish.config;
|
||||
|
||||
import com.ifish.helper.UserHelper;
|
||||
import com.ifish.util.SpringSecurityUtils;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
|
||||
import org.springframework.web.servlet.view.RedirectView;
|
||||
|
||||
/**
|
||||
* 这个拦截器是SpringMVC的自定义拦截器,会拦截网站所有的URL访问,postHandle方法可以自定义修改ModelAndView
|
||||
*
|
||||
* @author Administrator
|
||||
*/
|
||||
public class MyInterceptorAdapter extends HandlerInterceptorAdapter {
|
||||
|
||||
@Override
|
||||
public void postHandle(
|
||||
HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
|
||||
throws Exception {
|
||||
if (SpringSecurityUtils.getCurrentUser() != null) {
|
||||
String userName = SpringSecurityUtils.getCurrentUserName();
|
||||
modelAndView.addObject("username", userName);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -62,7 +62,7 @@ public class WebConfig extends WebMvcConfigurerAdapter {
|
|||
|
||||
@Override
|
||||
public void addInterceptors(InterceptorRegistry registry) {
|
||||
//registry.addInterceptor(myInterceptorAdapter());
|
||||
registry.addInterceptor(myInterceptorAdapter());
|
||||
super.addInterceptors(registry);
|
||||
}
|
||||
|
||||
|
|
@ -85,8 +85,8 @@ public class WebConfig extends WebMvcConfigurerAdapter {
|
|||
return new StandardServletMultipartResolver();
|
||||
}
|
||||
|
||||
// @Bean
|
||||
// public MyInterceptorAdapter myInterceptorAdapter() {
|
||||
// return new MyInterceptorAdapter();
|
||||
// }
|
||||
@Bean
|
||||
public MyInterceptorAdapter myInterceptorAdapter() {
|
||||
return new MyInterceptorAdapter();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
package com.ifish.controller;
|
||||
|
||||
import com.ifish.helper.SecurityService;
|
||||
import com.ifish.util.SpringSecurityUtils;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
|
@ -10,6 +11,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
|
|||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
import javax.servlet.jsp.jstl.core.Config;
|
||||
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
|
|
@ -64,6 +66,29 @@ public class Index {
|
|||
public ModelAndView test1() {
|
||||
ModelAndView mv = new ModelAndView();
|
||||
mv.setViewName("index");
|
||||
mv.addObject("myjs", "<!-- Other plugins ( load only nessesary plugins for every page) -->\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.pie.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.resize.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.time.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.growraf.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.categories.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.stack.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.tooltip.min.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/flot/date.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/sparklines/jquery.sparkline.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/pie-chart/jquery.easy-pie-chart.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/forms/icheck/jquery.icheck.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/forms/tags/jquery.tagsinput.min.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/forms/tinymce/tinymce.min.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/misc/highlight/highlight.pack.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/misc/countTo/jquery.countTo.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/ui/weather/skyicons.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/ui/notify/jquery.gritter.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/ui/calendar/fullcalendar.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/js/jquery.sprFlat.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/js/app.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/js/pages/dashboard.js\"></script>");
|
||||
return mv;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,9 +5,12 @@
|
|||
*/
|
||||
package com.ifish.controller;
|
||||
|
||||
import com.ifish.helper.UserHelper;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
|
||||
/**
|
||||
|
|
@ -17,11 +20,34 @@ import org.springframework.web.servlet.ModelAndView;
|
|||
@Controller
|
||||
public class User {
|
||||
|
||||
@Autowired
|
||||
private UserHelper userHelper;
|
||||
|
||||
@RequestMapping(value = {"/userlist"}, method = RequestMethod.GET)
|
||||
public ModelAndView getUserList() {
|
||||
ModelAndView mv = new ModelAndView();
|
||||
mv.setViewName("userlist");
|
||||
mv.addObject("myjs", "<!-- Other plugins ( load only nessesary plugins for every page) -->\n"
|
||||
+ " <script src=\"static/assets/plugins/core/moment/moment.min.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/sparklines/jquery.sparkline.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/charts/pie-chart/jquery.easy-pie-chart.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/forms/icheck/jquery.icheck.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/forms/tags/jquery.tagsinput.min.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/forms/tinymce/tinymce.min.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/tables/jquery.dataTables.js\"></script>\n"
|
||||
+ " <link href=\"static/assets/plugins/tables/jquery.dataTables.css\" type='text/css'/>\n"
|
||||
+ " <link href=\"static/assets/plugins/tables/dataTables.bootstrap.css\" type='text/css'/>\n"
|
||||
+ " <script src=\"static/assets/plugins/tables/dataTables.bootstrap.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/misc/highlight/highlight.pack.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/plugins/misc/countTo/jquery.countTo.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/js/jquery.sprFlat.js\"></script>\n"
|
||||
+ " <script src=\"static/assets/js/app.js\"></script>");
|
||||
return mv;
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/getUserList", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public Object getlist() {
|
||||
return userHelper.getlist();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,4 +20,11 @@ public interface UserHelper {
|
|||
* @return
|
||||
*/
|
||||
public Tbl_Security_User getTbl_Security_User(String usernameSring);
|
||||
|
||||
/**
|
||||
* 根据条件获取用户列表
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Object getlist();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,8 +6,13 @@
|
|||
package com.ifish.helper;
|
||||
|
||||
import com.ifish.bean.Tbl_Security_User;
|
||||
import com.ifish.bean.Tbl_User;
|
||||
import com.ifish.mapper.Tbl_User_Mapper;
|
||||
import com.ifish.util.IfishUtil;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
|
@ -18,14 +23,14 @@ import org.springframework.stereotype.Component;
|
|||
*/
|
||||
@Component
|
||||
public class UserHelperI implements UserHelper {
|
||||
|
||||
|
||||
@Autowired
|
||||
private RedisHelperI redisHelperI;
|
||||
@Autowired
|
||||
private RedisKeyHelperI redisKeyHelperI;
|
||||
@Autowired
|
||||
private Tbl_User_Mapper tbl_User_Mapper;
|
||||
|
||||
|
||||
@Override
|
||||
public Tbl_Security_User getTbl_Security_User(String usernameSring) {
|
||||
Tbl_Security_User tbl_Security_User = null;
|
||||
|
|
@ -43,7 +48,35 @@ public class UserHelperI implements UserHelper {
|
|||
} catch (Exception e) {
|
||||
}
|
||||
return tbl_Security_User;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 根据条件获取用户列表
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public Object getlist() {
|
||||
List<Map> list = tbl_User_Mapper.getUserList();
|
||||
|
||||
for (Map map : list) {
|
||||
if (map.get("createTime") != null) {
|
||||
String createTime = IfishUtil.format((Date) map.get("createTime"));
|
||||
map.put("createTime", createTime);
|
||||
}
|
||||
if (map.get("loginTime") != null) {
|
||||
String loginTime = IfishUtil.format((Date) map.get("loginTime"));
|
||||
map.put("loginTime", loginTime);
|
||||
}
|
||||
}
|
||||
|
||||
Map map = new HashMap();
|
||||
map.put("data", list);
|
||||
map.put("draw", 20);
|
||||
map.put("recordsTotal", 100);
|
||||
map.put("recordsFiltered", 77);
|
||||
return map;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,11 +7,14 @@ package com.ifish.mapper;
|
|||
|
||||
import com.ifish.bean.Tbl_Security_User;
|
||||
import com.ifish.bean.Tbl_User;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import org.apache.ibatis.annotations.Insert;
|
||||
import org.apache.ibatis.annotations.InsertProvider;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
import org.apache.ibatis.annotations.SelectKey;
|
||||
import org.apache.ibatis.annotations.SelectProvider;
|
||||
import org.apache.ibatis.annotations.Update;
|
||||
import org.apache.ibatis.annotations.UpdateProvider;
|
||||
|
||||
|
|
@ -110,4 +113,12 @@ public interface Tbl_User_Mapper {
|
|||
*/
|
||||
@Select("SELECT * FROM tbl_security_user where username=#{user}")
|
||||
Tbl_Security_User getSecurity_UserByUserName(@Param("user") String userName);
|
||||
|
||||
/**
|
||||
* 根据条件查询用户列表
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@SelectProvider(type = Tbl_User_MapperSql.class, method = "getlist")
|
||||
List<Map> getUserList();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -92,4 +92,18 @@ public class Tbl_User_MapperSql {
|
|||
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册用户页,获取用户列表
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getlist() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
sb.append("SELECT user_id userId,phone_number phoneNumber,user_email userEmail,nick_name nickName,create_time createTime,phone_type phoneType,login_type loginType,login_time loginTime,login_count loginCount,address,is_register_gwell isRegisterGwell,jiguang_userid jiguangUserid,remarks FROM tbl_user \n"
|
||||
+ "LIMIT 40,10");
|
||||
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,126 @@
|
|||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package com.ifish.util;
|
||||
|
||||
import com.ifish.config.UserInfo;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import org.springframework.security.core.Authentication;
|
||||
import org.springframework.security.core.context.SecurityContext;
|
||||
import org.springframework.security.core.context.SecurityContextHolder;
|
||||
import org.springframework.security.core.userdetails.UserDetails;
|
||||
import org.springframework.security.web.authentication.WebAuthenticationDetails;
|
||||
import org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationToken;
|
||||
|
||||
/**
|
||||
* SpringSecurity的工具类.
|
||||
*
|
||||
* 注意. 本类只支持SpringSecurity 3.0.x.
|
||||
*
|
||||
* @author calvin
|
||||
*/
|
||||
public class SpringSecurityUtils {
|
||||
|
||||
/**
|
||||
* 取得当前用户, 返回值为UserInfo类或其子类, 如果当前用户未登录则返回null.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T extends UserInfo> T getCurrentUser() {
|
||||
Authentication authentication = getAuthentication();
|
||||
|
||||
if (authentication == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Object principal = authentication.getPrincipal();
|
||||
if (!(principal instanceof UserInfo)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (T) principal;
|
||||
}
|
||||
|
||||
/**
|
||||
* 取得当前用户的登录名(ID), 如果当前用户未登录则返回空字符串.
|
||||
*/
|
||||
public static String getCurrentName() {
|
||||
Authentication authentication = getAuthentication();
|
||||
|
||||
if (authentication == null || authentication.getPrincipal() == null) {
|
||||
return "";
|
||||
}
|
||||
|
||||
return authentication.getName();
|
||||
}
|
||||
|
||||
/**
|
||||
* 取得当前用户的登录名(ID), 如果当前用户未登录则返回空字符串.
|
||||
*/
|
||||
public static String getCurrentUserName() {
|
||||
if (getCurrentUser() != null && StringUtils.isNoneBlank(getCurrentUser().getUsername())) {
|
||||
return getCurrentUser().getUsername();
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 取得当前用户的Utype, 如果当前用户未登录则返回空字符串.
|
||||
*/
|
||||
public static String getCurrentUserType() {
|
||||
if (getCurrentUser() != null && StringUtils.isNoneBlank(getCurrentUser().getRole())) {
|
||||
return getCurrentUser().getRole();
|
||||
} else {
|
||||
return "0";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 取得当前用户的Email.
|
||||
*/
|
||||
public static String getEmail() {
|
||||
if (getCurrentUser() != null && StringUtils.isNoneBlank(getCurrentUser().getEmail())) {
|
||||
return getCurrentUser().getEmail();
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 将UserDetails保存到Security Context.
|
||||
*
|
||||
* @param userDetails 已初始化好的用户信息.
|
||||
* @param request 用于获取用户IP地址信息,可为Null.
|
||||
*/
|
||||
public static void saveUserDetailsToContext(UserDetails userDetails,
|
||||
HttpServletRequest request) {
|
||||
PreAuthenticatedAuthenticationToken authentication = new PreAuthenticatedAuthenticationToken(
|
||||
userDetails, userDetails.getPassword(), userDetails
|
||||
.getAuthorities());
|
||||
|
||||
if (request != null) {
|
||||
authentication.setDetails(new WebAuthenticationDetails(request));
|
||||
}
|
||||
|
||||
SecurityContextHolder.getContext().setAuthentication(authentication);
|
||||
}
|
||||
|
||||
/**
|
||||
* 取得Authentication, 如当前SecurityContext为空时返回null.
|
||||
*/
|
||||
private static Authentication getAuthentication() {
|
||||
SecurityContext context = SecurityContextHolder.getContext();
|
||||
|
||||
if (context == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return context.getAuthentication();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -3,21 +3,182 @@
|
|||
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
|
||||
<%@ page session="false" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@page import="com.ifish.util.*"%>
|
||||
<!doctype html>
|
||||
<!--[if IE 8]><html class="ie8 lte9" lang="zh-CN"><![endif]-->
|
||||
<!--[if IE 9]><html class="ie9 lte9" lang="zh-CN"><![endif]-->
|
||||
<!--[if (gt IE 9)|!(IE)]><!--><html lang="zh-CN"><!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>${title}</title>
|
||||
<!-- Mobile specific metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<!-- Force IE9 to render in normal mode -->
|
||||
<!--[if IE]><meta http-equiv="x-ua-compatible" content="IE=9" /><![endif]-->
|
||||
<meta name="author" content="SuggeElson" />
|
||||
<meta name="description" content=""
|
||||
/>
|
||||
<meta name="keywords" content=""
|
||||
/>
|
||||
<meta name="application-name" content="sprFlat admin template" />
|
||||
<!-- Import google fonts - Heading first/ text second -->
|
||||
<link rel='stylesheet' type='text/css'
|
||||
<!--[if lt IE 9]>
|
||||
|
||||
<![endif]-->
|
||||
<!-- Css files -->
|
||||
<!-- Icons -->
|
||||
<link href="static/assets/css/icons.css" rel="stylesheet" />
|
||||
<!-- jQueryUI -->
|
||||
<link href="static/assets/css/sprflat-theme/jquery.ui.all.css" rel="stylesheet" />
|
||||
<!-- Bootstrap stylesheets (included template modifications) -->
|
||||
<link href="static/assets/css/bootstrap.css" rel="stylesheet" />
|
||||
<!-- Plugins stylesheets (all plugin custom css) -->
|
||||
<link href="static/assets/css/plugins.css" rel="stylesheet" />
|
||||
<!-- Main stylesheets (template main css file) -->
|
||||
<link href="static/assets/css/main.css" rel="stylesheet" />
|
||||
<!-- Custom stylesheets ( Put your own changes here ) -->
|
||||
<link href="static/assets/css/custom.css" rel="stylesheet" />
|
||||
<!-- Fav and touch icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="static/assets/img/ico/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="static/assets/img/ico/apple-touch-icon-114-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="static/assets/img/ico/apple-touch-icon-72-precomposed.png">
|
||||
<link rel="apple-touch-icon-precomposed" href="static/assets/img/ico/apple-touch-icon-57-precomposed.png">
|
||||
<link rel="icon" href="static/assets/img/ico/favicon.ico" type="image/png">
|
||||
<!-- Windows8 touch icon ( http://www.buildmypinnedsite.com/ )-->
|
||||
<meta name="msapplication-TileColor" content="#3399cc" />
|
||||
<!--<script src="static/assets/plugins/tables/jquery-1.10.2.min.js"></script>-->
|
||||
<!-- Javascripts -->
|
||||
<!-- Load pace first -->
|
||||
<script src="static/assets/plugins/core/pace/pace.min.js"></script>
|
||||
<!-- Important javascript libs(put in all pages) -->
|
||||
<script src="static/assets/js/jquery-1.8.3.min.js"></script>
|
||||
<script>
|
||||
window.jQuery || document.write('<script src="static/assets/js/libs/jquery-2.1.1.min.js">\x3C/script>')
|
||||
</script>
|
||||
<script src="static/assets/js/jquery-ui.js"></script>
|
||||
<script>
|
||||
window.jQuery || document.write('<script src="static/assets/js/libs/jquery-ui-1.10.4.min.js">\x3C/script>')
|
||||
</script>
|
||||
<!--[if lt IE 9]>
|
||||
<script type="text/javascript" src="static/assets/js/libs/excanvas.min.js"></script>
|
||||
<script type="text/javascript" src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<script type="text/javascript" src="static/assets/js/libs/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<!-- Bootstrap plugins -->
|
||||
<script src="static/assets/js/bootstrap/bootstrap.js"></script>
|
||||
<!-- Core plugins ( not remove ever) -->
|
||||
<!-- Handle responsive view functions -->
|
||||
<script src="static/assets/js/jRespond.min.js"></script>
|
||||
<!-- Custom scroll for sidebars,tables and etc. -->
|
||||
<script src="static/assets/plugins/core/slimscroll/jquery.slimscroll.min.js"></script>
|
||||
<script src="static/assets/plugins/core/slimscroll/jquery.slimscroll.horizontal.min.js"></script>
|
||||
<!-- Resize text area in most pages -->
|
||||
<script src="static/assets/plugins/forms/autosize/jquery.autosize.js"></script>
|
||||
<!-- Proivde quick search for many widgets -->
|
||||
<script src="static/assets/plugins/core/quicksearch/jquery.quicksearch.js"></script>
|
||||
<!-- Bootbox confirm dialog for reset postion on panels -->
|
||||
<script src="static/assets/plugins/ui/bootbox/bootbox.js"></script>
|
||||
${myjs}
|
||||
</head>
|
||||
<body>
|
||||
<t:insertAttribute name="header" />
|
||||
<t:insertAttribute name="body" />
|
||||
<!-- Start #sidebar -->
|
||||
<div id="sidebar">
|
||||
<!-- Start .sidebar-inner -->
|
||||
<div class="sidebar-inner">
|
||||
<!-- Start #sideNav -->
|
||||
<ul id="sideNav" class="nav nav-pills nav-stacked">
|
||||
<li>
|
||||
<a href="#"> 用户管理 <i class="im-user"></i></a>
|
||||
<ul class="nav sub">
|
||||
<li><a href="userlist"><i class="ec-users"></i> 注册用户</a>
|
||||
</li>
|
||||
<li><a href="form-validation.html"><i class="ec-chat"></i> 消息推送</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="ec-info"></i> 换水提醒</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#"> 摄像头管理 <i class="br-camera"></i></a>
|
||||
<ul class="nav sub">
|
||||
<li><a href="forms.html"><i class="fa-camera-retro"></i> 摄像头信息</a>
|
||||
</li>
|
||||
<li><a href="form-validation.html"><i class="st-camera"></i> 摄像头绑定</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="im-camera2"></i> 摄像头激活</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#"> 设备管理 <i class="im-cogs"></i></a>
|
||||
<ul class="nav sub">
|
||||
<li><a href="forms.html"><i class="im-cog"></i> 设备信息</a>
|
||||
</li>
|
||||
<li><a href="form-validation.html"><i class="im-cog2"></i> 设备绑定</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="br-cog"></i> 设备类型</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="en-cog"></i> 登陆记录</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#"> 厂家管理 <i class="im-dribbble2"></i></a>
|
||||
<ul class="nav sub">
|
||||
<li><a href="forms.html"><i class="im-user2"></i> 电子厂信息</a>
|
||||
</li>
|
||||
<li><a href="form-validation.html"><i class="im-users2"></i> 鱼缸场信息</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="im-dribbble"></i> 查询统计</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="im-dribbble3"></i> 授权统计</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="im-coin"></i> 账单列表</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#"> 系统管理 <i class="ec-cog"></i></a>
|
||||
<ul class="nav sub">
|
||||
<li><a href="forms.html"><i class="ec-pencil2"></i> 系统用户</a>
|
||||
</li>
|
||||
<li><a href="form-validation.html"><i class="im-checkbox-checked"></i> 菜单管理</a>
|
||||
</li>
|
||||
<li><a href="form-wizard.html"><i class="im-wand"></i> 版本管理</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
<!-- End #sideNav -->
|
||||
</div>
|
||||
<!-- End .sidebar-inner -->
|
||||
</div>
|
||||
<!-- End #sidebar -->
|
||||
<!-- Start #content -->
|
||||
<div id="content">
|
||||
<!-- Start .content-wrapper -->
|
||||
<div class="content-wrapper">
|
||||
<div class="row">
|
||||
<!-- Start .row -->
|
||||
<!-- Start .page-header -->
|
||||
<div class="col-lg-12 heading">
|
||||
<!-- Start .bredcrumb -->
|
||||
<ul id="crumb" class="breadcrumb">
|
||||
</ul>
|
||||
<!-- End .breadcrumb -->
|
||||
</div>
|
||||
<!-- End .page-header -->
|
||||
</div>
|
||||
<!-- End .row -->
|
||||
<t:insertAttribute name="body" />
|
||||
</div>
|
||||
<!-- End .content-wrapper -->
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<!-- End #content -->
|
||||
<t:insertAttribute name="footer" />
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -5,8 +5,3 @@
|
|||
--%>
|
||||
|
||||
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
||||
<!--footer-->
|
||||
<div class="footer">
|
||||
<p>Copyright © 2017.Company name All rights reserved.<a target="_blank" href="http://sc.chinaz.com/moban/">网页模板</a></p>
|
||||
</div>
|
||||
<!--//footer-->
|
||||
|
|
@ -3,196 +3,46 @@
|
|||
Created on : 2017-7-24, 15:13:20
|
||||
Author : Administrator
|
||||
--%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@page language="java" contentType="text/html" pageEncoding="UTF-8"%>
|
||||
<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
|
||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
||||
<%@page import="com.ifish.util.*"%>
|
||||
<!-- Start #header -->
|
||||
<div id="header">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar">
|
||||
<div class="navbar-header">
|
||||
<a class="navbar-brand" href="index">
|
||||
<i class="im-windows8 text-logo-element animated bounceIn"></i><span class="text-logo"></span><span class="text-slogan">爱鱼奇</span>
|
||||
</a>
|
||||
</div>
|
||||
<nav class="top-nav" role="navigation">
|
||||
<ul class="nav navbar-nav pull-left">
|
||||
|
||||
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
||||
<!-- header-starts -->
|
||||
<div class="sticky-header header-section ">
|
||||
<div class="header-left">
|
||||
<!--toggle button start-->
|
||||
<button id="showLeftPush"><i class="fa fa-bars"></i></button>
|
||||
<!--toggle button end-->
|
||||
<!--logo -->
|
||||
<div class="logo">
|
||||
<a href="index.html">
|
||||
<h1>NOVUS</h1>
|
||||
<span>AdminPanel</span>
|
||||
</a>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav pull-right">
|
||||
<li class="dropdown">
|
||||
<a href="#" data-toggle="dropdown"><small>欢迎光临,</small>${username}</a>
|
||||
<ul class="dropdown-menu right" role="menu">
|
||||
<li><a href="#"><i class="st-settings"></i> 修改密码</a>
|
||||
</li>
|
||||
<li><a href="#"><i class="im-exit"></i> 退出</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
<!--//logo-->
|
||||
<!--search-box-->
|
||||
<div class="search-box">
|
||||
<form class="input">
|
||||
<input class="sb-search-input input__field--madoka" placeholder="Search..." type="search" id="input-31" />
|
||||
<label class="input__label" for="input-31">
|
||||
<svg class="graphic" width="100%" height="100%" viewBox="0 0 404 77" preserveAspectRatio="none">
|
||||
<path d="m0,0l404,0l0,77l-404,0l0,-77z"/>
|
||||
</svg>
|
||||
</label>
|
||||
</form>
|
||||
</div><!--//end-search-box-->
|
||||
<div class="clearfix"> </div>
|
||||
<!-- Start #header-area -->
|
||||
<div id="header-area" class="fadeInDown">
|
||||
<div class="header-area-inner">
|
||||
<ul class="list-unstyled list-inline">
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End #header-area -->
|
||||
</div>
|
||||
<div class="header-right">
|
||||
<div class="profile_details_left"><!--notifications of menu start -->
|
||||
<ul class="nofitications-dropdown">
|
||||
<li class="dropdown head-dpdn">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"><i class="fa fa-envelope"></i><span class="badge">3</span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li>
|
||||
<div class="notification_header">
|
||||
<h3>You have 3 new messages</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li><a href="#">
|
||||
<div class="user_img"><img src="static/images/1.png" alt=""></div>
|
||||
<div class="notification_desc">
|
||||
<p>Lorem ipsum dolor amet</p>
|
||||
<p><span>1 hour ago</span></p>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a></li>
|
||||
<li class="odd"><a href="#">
|
||||
<div class="user_img"><img src="static/images/2.png" alt=""></div>
|
||||
<div class="notification_desc">
|
||||
<p>Lorem ipsum dolor amet </p>
|
||||
<p><span>1 hour ago</span></p>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a></li>
|
||||
<li><a href="#">
|
||||
<div class="user_img"><img src="static/images/3.png" alt=""></div>
|
||||
<div class="notification_desc">
|
||||
<p>Lorem ipsum dolor amet </p>
|
||||
<p><span>1 hour ago</span></p>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a></li>
|
||||
<li>
|
||||
<div class="notification_bottom">
|
||||
<a href="#">See all messages</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown head-dpdn">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"><i class="fa fa-bell"></i><span class="badge blue">3</span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li>
|
||||
<div class="notification_header">
|
||||
<h3>You have 3 new notification</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li><a href="#">
|
||||
<div class="user_img"><img src="static/images/2.png" alt=""></div>
|
||||
<div class="notification_desc">
|
||||
<p>Lorem ipsum dolor amet</p>
|
||||
<p><span>1 hour ago</span></p>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a></li>
|
||||
<li class="odd"><a href="#">
|
||||
<div class="user_img"><img src="static/images/1.png" alt=""></div>
|
||||
<div class="notification_desc">
|
||||
<p>Lorem ipsum dolor amet </p>
|
||||
<p><span>1 hour ago</span></p>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a></li>
|
||||
<li><a href="#">
|
||||
<div class="user_img"><img src="static/images/3.png" alt=""></div>
|
||||
<div class="notification_desc">
|
||||
<p>Lorem ipsum dolor amet </p>
|
||||
<p><span>1 hour ago</span></p>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</a></li>
|
||||
<li>
|
||||
<div class="notification_bottom">
|
||||
<a href="#">See all notifications</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown head-dpdn">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"><i class="fa fa-tasks"></i><span class="badge blue1">15</span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li>
|
||||
<div class="notification_header">
|
||||
<h3>You have 8 pending task</h3>
|
||||
</div>
|
||||
</li>
|
||||
<li><a href="#">
|
||||
<div class="task-info">
|
||||
<span class="task-desc">Database update</span><span class="percentage">40%</span>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="progress progress-striped active">
|
||||
<div class="bar yellow" style="width:40%;"></div>
|
||||
</div>
|
||||
</a></li>
|
||||
<li><a href="#">
|
||||
<div class="task-info">
|
||||
<span class="task-desc">Dashboard done</span><span class="percentage">90%</span>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="progress progress-striped active">
|
||||
<div class="bar green" style="width:90%;"></div>
|
||||
</div>
|
||||
</a></li>
|
||||
<li><a href="#">
|
||||
<div class="task-info">
|
||||
<span class="task-desc">Mobile App</span><span class="percentage">33%</span>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="progress progress-striped active">
|
||||
<div class="bar red" style="width: 33%;"></div>
|
||||
</div>
|
||||
</a></li>
|
||||
<li><a href="#">
|
||||
<div class="task-info">
|
||||
<span class="task-desc">Issues fixed</span><span class="percentage">80%</span>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="progress progress-striped active">
|
||||
<div class="bar blue" style="width: 80%;"></div>
|
||||
</div>
|
||||
</a></li>
|
||||
<li>
|
||||
<div class="notification_bottom">
|
||||
<a href="#">See all pending tasks</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<!--notification menu end -->
|
||||
<div class="profile_details">
|
||||
<ul>
|
||||
<li class="dropdown profile_details_drop">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
|
||||
<div class="profile_img">
|
||||
<span class="prfil-img"><img src="static/images/a.png" alt=""> </span>
|
||||
<div class="user-name">
|
||||
<p>Wikolia</p>
|
||||
<span>Administrator</span>
|
||||
</div>
|
||||
<i class="fa fa-angle-down lnr"></i>
|
||||
<i class="fa fa-angle-up lnr"></i>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</a>
|
||||
<ul class="dropdown-menu drp-mnu">
|
||||
<li> <a href="#"><i class="fa fa-cog"></i> Settings</a> </li>
|
||||
<li> <a href="#"><i class="fa fa-user"></i> Profile</a> </li>
|
||||
<li> <a href="#"><i class="fa fa-sign-out"></i> Logout</a> </li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
<!-- Start .header-inner -->
|
||||
</div>
|
||||
<!-- //header-ends -->
|
||||
<!-- End #header -->
|
||||
|
|
|
|||
|
|
@ -3,347 +3,426 @@
|
|||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
||||
"http://www.w3.org/TR/html4/loose.dtd">
|
||||
<div class="main-page">
|
||||
<div class="row-one">
|
||||
<div class="col-md-4 widget">
|
||||
<div class="stats-left ">
|
||||
<h5>Today</h5>
|
||||
<h4>Sales</h4>
|
||||
</div>
|
||||
<div class="stats-right">
|
||||
<label> 45</label>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<div class="col-md-4 widget states-mdl">
|
||||
<div class="stats-left">
|
||||
<h5>Today</h5>
|
||||
<h4>Visitors</h4>
|
||||
</div>
|
||||
<div class="stats-right">
|
||||
<label> 80</label>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<div class="col-md-4 widget states-last">
|
||||
<div class="stats-left">
|
||||
<h5>Today</h5>
|
||||
<h4>Orders</h4>
|
||||
</div>
|
||||
<div class="stats-right">
|
||||
<label>51</label>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<div class="charts">
|
||||
<div class="col-md-4 charts-grids widget">
|
||||
<h4 class="title">Bar Chart Example</h4>
|
||||
<canvas id="bar" height="300" width="400"> </canvas>
|
||||
</div>
|
||||
<div class="col-md-4 charts-grids widget states-mdl">
|
||||
<h4 class="title">Line Chart Example</h4>
|
||||
<canvas id="line" height="300" width="400"> </canvas>
|
||||
</div>
|
||||
<div class="col-md-4 charts-grids widget">
|
||||
<h4 class="title">Pie Chart Example</h4>
|
||||
<canvas id="pie" height="300" width="400"> </canvas>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
<script>
|
||||
var barChartData = {
|
||||
labels: ["Jan", "Feb", "March", "April", "May", "June", "July"],
|
||||
datasets: [
|
||||
{
|
||||
fillColor: "rgba(233, 78, 2, 0.9)",
|
||||
strokeColor: "rgba(233, 78, 2, 0.9)",
|
||||
highlightFill: "#e94e02",
|
||||
highlightStroke: "#e94e02",
|
||||
data: [65, 59, 90, 81, 56, 55, 40]
|
||||
},
|
||||
{
|
||||
fillColor: "rgba(79, 82, 186, 0.9)",
|
||||
strokeColor: "rgba(79, 82, 186, 0.9)",
|
||||
highlightFill: "#4F52BA",
|
||||
highlightStroke: "#4F52BA",
|
||||
data: [40, 70, 55, 20, 45, 70, 60]
|
||||
}
|
||||
]
|
||||
|
||||
};
|
||||
var lineChartData = {
|
||||
labels: ["Jan", "Feb", "March", "April", "May", "June", "July"],
|
||||
datasets: [
|
||||
{
|
||||
fillColor: "rgba(242, 179, 63, 1)",
|
||||
strokeColor: "#F2B33F",
|
||||
pointColor: "rgba(242, 179, 63, 1)",
|
||||
pointStrokeColor: "#fff",
|
||||
data: [70, 60, 72, 61, 75, 59, 80]
|
||||
|
||||
},
|
||||
{
|
||||
fillColor: "rgba(97, 100, 193, 1)",
|
||||
strokeColor: "#6164C1",
|
||||
pointColor: "rgba(97, 100, 193,1)",
|
||||
pointStrokeColor: "#9358ac",
|
||||
data: [50, 65, 51, 67, 52, 64, 50]
|
||||
|
||||
}
|
||||
]
|
||||
|
||||
};
|
||||
var pieData = [
|
||||
{
|
||||
value: 90,
|
||||
color: "rgba(233, 78, 2, 1)",
|
||||
label: "Product 1"
|
||||
},
|
||||
{
|
||||
value: 50,
|
||||
color: "rgba(242, 179, 63, 1)",
|
||||
label: "Product 2"
|
||||
},
|
||||
{
|
||||
value: 60,
|
||||
color: "rgba(88, 88, 88,1)",
|
||||
label: "Product 3"
|
||||
},
|
||||
{
|
||||
value: 40,
|
||||
color: "rgba(79, 82, 186, 1)",
|
||||
label: "Product 4"
|
||||
}
|
||||
|
||||
];
|
||||
|
||||
new Chart(document.getElementById("line").getContext("2d")).Line(lineChartData);
|
||||
new Chart(document.getElementById("bar").getContext("2d")).Bar(barChartData);
|
||||
new Chart(document.getElementById("pie").getContext("2d")).Pie(pieData);
|
||||
|
||||
</script>
|
||||
|
||||
</div>
|
||||
<div class="outlet">
|
||||
<!-- Start .outlet -->
|
||||
<!-- Page start here ( usual with .row ) -->
|
||||
<div class="row">
|
||||
<div class="col-md-4 stats-info widget">
|
||||
<div class="stats-title">
|
||||
<h4 class="title">Browser Stats</h4>
|
||||
<!-- Start .row -->
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="carousel-tile carousel vertical slide">
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<div class="tile red">
|
||||
<div class="tile-icon">
|
||||
<i class="br-cart s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">107</div>
|
||||
<h3>Orders</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="tile orange">
|
||||
<!-- tile start here -->
|
||||
<div class="tile-icon">
|
||||
<i class="ec-cog s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">5</div>
|
||||
<h3>Settings changed</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="stats-body">
|
||||
<ul class="list-unstyled">
|
||||
<li>GoogleChrome <span class="pull-right">85%</span>
|
||||
<div class="progress progress-striped active progress-right">
|
||||
<div class="bar green" style="width:85%;"></div>
|
||||
<!-- End Carousel -->
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="carousel-tile carousel slide">
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<div class="tile blue">
|
||||
<div class="tile-icon">
|
||||
<i class="st-chat s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">24</div>
|
||||
<h3>New Comments</h3>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>Firefox <span class="pull-right">35%</span>
|
||||
<div class="progress progress-striped active progress-right">
|
||||
<div class="bar yellow" style="width:35%;"></div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="tile brown">
|
||||
<!-- tile start here -->
|
||||
<div class="tile-icon">
|
||||
<i class="ec-mail s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">17</div>
|
||||
<h3>New emails</h3>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>Internet Explorer <span class="pull-right">78%</span>
|
||||
<div class="progress progress-striped active progress-right">
|
||||
<div class="bar red" style="width:78%;"></div>
|
||||
</div>
|
||||
</li>
|
||||
<li>Safari <span class="pull-right">50%</span>
|
||||
<div class="progress progress-striped active progress-right">
|
||||
<div class="bar blue" style="width:50%;"></div>
|
||||
</div>
|
||||
</li>
|
||||
<li>Opera <span class="pull-right">80%</span>
|
||||
<div class="progress progress-striped active progress-right">
|
||||
<div class="bar light-blue" style="width:80%;"></div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="last">Others <span class="pull-right">60%</span>
|
||||
<div class="progress progress-striped active progress-right">
|
||||
<div class="bar orange" style="width:60%;"></div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Carousel -->
|
||||
</div>
|
||||
<div class="col-md-8 stats-info stats-last widget-shadow">
|
||||
<table class="table stats-table ">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>S.NO</th>
|
||||
<th>PRODUCT</th>
|
||||
<th>STATUS</th>
|
||||
<th>PROGRESS</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">1</th>
|
||||
<td>Lorem ipsum</td>
|
||||
<td><span class="label label-success">In progress</span></td>
|
||||
<td><h5>85% <i class="fa fa-level-up"></i></h5></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">2</th>
|
||||
<td>Aliquam</td>
|
||||
<td><span class="label label-warning">New</span></td>
|
||||
<td><h5>35% <i class="fa fa-level-up"></i></h5></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">3</th>
|
||||
<td>Lorem ipsum</td>
|
||||
<td><span class="label label-danger">Overdue</span></td>
|
||||
<td><h5 class="down">40% <i class="fa fa-level-down"></i></h5></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">4</th>
|
||||
<td>Aliquam</td>
|
||||
<td><span class="label label-info">Out of stock</span></td>
|
||||
<td><h5>100% <i class="fa fa-level-up"></i></h5></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">5</th>
|
||||
<td>Lorem ipsum</td>
|
||||
<td><span class="label label-success">In progress</span></td>
|
||||
<td><h5 class="down">10% <i class="fa fa-level-down"></i></h5></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">6</th>
|
||||
<td>Aliquam</td>
|
||||
<td><span class="label label-warning">New</span></td>
|
||||
<td><h5>38% <i class="fa fa-level-up"></i></h5></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="carousel-tile carousel vertical slide">
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<div class="tile green">
|
||||
<div class="tile-icon">
|
||||
<i class="ec-users s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">325</div>
|
||||
<h3>New users</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="tile purple">
|
||||
<!-- tile start here -->
|
||||
<div class="tile-icon">
|
||||
<i class="ec-search s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">2540</div>
|
||||
<h3>Searches</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Carousel -->
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="carousel-tile carousel slide">
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<div class="tile teal">
|
||||
<!-- tile start here -->
|
||||
<div class="tile-icon">
|
||||
<i class="ec-images s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">45</div>
|
||||
<h3>New images</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="tile magenta">
|
||||
<!-- tile start here -->
|
||||
<div class="tile-icon">
|
||||
<i class="ec-share s64"></i>
|
||||
</div>
|
||||
<div class="tile-content">
|
||||
<div class="number">3548</div>
|
||||
<h3>Posts shared</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Carousel -->
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
<!-- End .row -->
|
||||
<div class="row">
|
||||
<div class="col-md-8 map widget-shadow">
|
||||
<h4 class="title">Visitors Map </h4>
|
||||
<div class="map_container"><div id="vmap" style="width: 100%; height: 354px;"></div></div>
|
||||
<!--map js-->
|
||||
<link href="static/css/jqvmap.css" rel='stylesheet' type='text/css' />
|
||||
<script src="static/js/jquery.vmap.js"></script>
|
||||
<script src="static/js/jquery.vmap.sampledata.js" type="text/javascript"></script>
|
||||
<script src="static/js/jquery.vmap.world.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
jQuery(document).ready(function () {
|
||||
jQuery('#vmap').vectorMap({
|
||||
map: 'world_en',
|
||||
backgroundColor: '#fff',
|
||||
color: '#696565',
|
||||
hoverOpacity: 0.8,
|
||||
selectedColor: '#696565',
|
||||
enableZoom: true,
|
||||
showTooltip: true,
|
||||
values: sample_data,
|
||||
scaleColors: ['#585858', '#696565'],
|
||||
normalizeFunction: 'polynomial'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<!-- //map js -->
|
||||
<!-- Start .row -->
|
||||
<div class="col-lg-6 col-md-6 sortable-layout">
|
||||
<!-- Start col-lg-6 -->
|
||||
<div class="panel panel-teal toggle panelMove panelClose panelRefresh">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title"><i class="im-bars"></i> Page views</h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div id="stats-pageviews" style="width: 100%; height:250px;"></div>
|
||||
</div>
|
||||
<div class="panel-footer teal-bg">
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="tile teal m0">
|
||||
<div class="tile-content text-center pl0 pr0">
|
||||
<div id="countToday" class="number">75</div>
|
||||
<h3>Today</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="tile teal m0">
|
||||
<div class="tile-content text-center pl0 pr0">
|
||||
<div id="countYesterday" class="number">69</div>
|
||||
<h3>Yesterday</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="tile teal m0">
|
||||
<div class="tile-content text-center pl0 pr0">
|
||||
<div id="countWeek" class="number">380</div>
|
||||
<h3>This Week</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
|
||||
<div class="tile teal m0">
|
||||
<div class="tile-content text-center pl0 pr0">
|
||||
<div id="countTotal" class="number">1254</div>
|
||||
<h3>Total</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End .panel -->
|
||||
<div class="panel panel-brown panelMove">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title"><i class="st-camera"></i> Instagram activity</h4>
|
||||
<div class="pull-right mt10">
|
||||
<a href="#" class="color-grayspr">@SuggeElson</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-body p0">
|
||||
<div class="instagram-widget">
|
||||
<div class="instagram-widget-header gray-bg">
|
||||
<div class="col-lg-4 col-md-4 col-xs-4 text-center">
|
||||
<!-- col-lg-4 start here -->
|
||||
<a href="#">
|
||||
<p class="instagram-widget-text">Followers</p>
|
||||
<strong class="instagram-widget-number">1256</strong>
|
||||
</a>
|
||||
</div>
|
||||
<!-- col-lg-4 end here -->
|
||||
<div class="col-lg-4 col-md-4 col-xs-4 text-center">
|
||||
<!-- col-lg-4 start here -->
|
||||
<a href="#">
|
||||
<p class="instagram-widget-text">Following</p>
|
||||
<strong class="instagram-widget-number">345</strong>
|
||||
</a>
|
||||
</div>
|
||||
<!-- col-lg-4 end here -->
|
||||
<div class="col-lg-4 col-md-4 col-xs-4 text-center">
|
||||
<!-- col-lg-4 start here -->
|
||||
<a href="#">
|
||||
<p class="instagram-widget-text">Shots</p>
|
||||
<strong class="instagram-widget-number">176</strong>
|
||||
</a>
|
||||
</div>
|
||||
<!-- col-lg-4 end here -->
|
||||
</div>
|
||||
<div class="instagram-widget-image">
|
||||
<div id="instagram-widget" class="carousel slide">
|
||||
<!-- Indicators -->
|
||||
<ol class="carousel-indicators dotstyle">
|
||||
<li data-target="#instagram-widget" data-slide-to="0" class="active"><a href="#">Image 1</a>
|
||||
</li>
|
||||
<li data-target="#instagram-widget" data-slide-to="1"><a href="#">Image 2</a>
|
||||
</li>
|
||||
<li data-target="#instagram-widget" data-slide-to="2"><a href="#">Image 3</a>
|
||||
</li>
|
||||
</ol>
|
||||
<div class="carousel-inner">
|
||||
<figure class="item active">
|
||||
<img class="img-responsive" src="static/assets/img/instagram/instagram.jpg" alt="image">
|
||||
</figure>
|
||||
<figure class="item">
|
||||
<img class="img-responsive" src="static/assets/img/instagram/instagram2.jpg" alt="image">
|
||||
</figure>
|
||||
<figure class="item">
|
||||
<img class="img-responsive" src="static/assets/img/instagram/instagram3.jpg" alt="image">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Carousel -->
|
||||
</div>
|
||||
<div class="instagram-widget-footer">
|
||||
<div class="col-lg-6 col-md-6 col-xs-6 text-center">
|
||||
<!-- col-lg-6 start here -->
|
||||
<p>
|
||||
<a href="#">
|
||||
<i class="ec-chat mr5"></i>
|
||||
<strong class="instagram-widget-number">17</strong>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- col-lg-6 end here -->
|
||||
<div class="col-lg-6 col-md-6 col-xs-6 text-center">
|
||||
<!-- col-lg-6 start here -->
|
||||
<p>
|
||||
<a href="#">
|
||||
<i class="ec-heart mr5"></i>
|
||||
<strong class="instagram-widget-number">27</strong>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- col-lg-6 end here -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End .panel -->
|
||||
<div class="panel panel-default panelMove plain">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading white-bg"></div>
|
||||
<div class="panel-body p0">
|
||||
<div id="calendar"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End .panel -->
|
||||
</div>
|
||||
<div class="col-md-4 social-media widget-shadow">
|
||||
<div class="wid-social twitter">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-twitter text-light icon-xlg "></i>
|
||||
<!-- End col-lg-6 -->
|
||||
<div class="col-lg-6 col-md-6 sortable-layout">
|
||||
<!-- Start col-lg-6 -->
|
||||
<div class="panel panel-primary plain toggle panelMove panelClose panelRefresh">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title"><i class="im-bars"></i> Week Earnings</h4>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">3.1 K</h3>
|
||||
<h4 class="counttype text-light">Tweets</h4>
|
||||
<div class="panel-body blue-bg">
|
||||
<div id="stats-earnings" style="width: 100%; height:250px;"></div>
|
||||
</div>
|
||||
<div class="panel-footer white-bg">
|
||||
<div id="stats-category-earnings" class="col-lg-6 col-md-12" style="height:150px;">
|
||||
</div>
|
||||
<div id="stats-earnings-bars" class="col-lg-6 col-md-12" style="height:150px;">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social google-plus">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-google-plus text-light icon-xlg "></i>
|
||||
<!-- End .panel -->
|
||||
<div class="weather-widget panel panel-primary plain toggle panelMove panelClose panelRefresh">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title">Weather now</h4>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">523</h3>
|
||||
<h4 class="counttype text-light">Circles</h4>
|
||||
<div class="panel-body blue-bg text-center">
|
||||
<canvas id="weather-now" width="128" height="128"></canvas>
|
||||
<p class="weather-location"><strong>23°C</strong> Madrid</p>
|
||||
</div>
|
||||
<div class="panel-footer white-bg text-center">
|
||||
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
|
||||
<!-- col-lg-3 start here -->
|
||||
<p class="weather-day">MON</p>
|
||||
<canvas id="forecast-now" width="64" height="64"></canvas>
|
||||
<p class="weather-degree">23°C</p>
|
||||
</div>
|
||||
<!-- col-lg-3 end here -->
|
||||
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
|
||||
<!-- col-lg-3 start here -->
|
||||
<p class="weather-day">TUE</p>
|
||||
<canvas id="forecast-day1" width="64" height="64"></canvas>
|
||||
<p class="weather-degree">17°C</p>
|
||||
</div>
|
||||
<!-- col-lg-3 end here -->
|
||||
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
|
||||
<!-- col-lg-3 start here -->
|
||||
<p class="weather-day">WED</p>
|
||||
<canvas id="forecast-day2" width="64" height="64"></canvas>
|
||||
<p class="weather-degree">15°C</p>
|
||||
</div>
|
||||
<!-- col-lg-3 end here -->
|
||||
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
|
||||
<!-- col-lg-3 start here -->
|
||||
<p class="weather-day">THU</p>
|
||||
<canvas id="forecast-day3" width="64" height="64"></canvas>
|
||||
<p class="weather-degree">18°C</p>
|
||||
</div>
|
||||
<!-- col-lg-3 end here -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social facebook">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-facebook text-light icon-xlg "></i>
|
||||
<!-- End .panel -->
|
||||
<div class="panel panel-default toggle panelMove panelClose panelRefresh">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading">
|
||||
<h4 class="panel-title"><i class="fa-list"></i> ToDo</h4>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">1.06K</h3>
|
||||
<h4 class="counttype text-light">Likes</h4>
|
||||
<div class="panel-body">
|
||||
<div class="todo-widget">
|
||||
<div class="todo-header">
|
||||
<div class="todo-search">
|
||||
<form>
|
||||
<input type="text" class="form-control" name="search" placeholder="Search for todo ...">
|
||||
</form>
|
||||
</div>
|
||||
<div class="todo-add">
|
||||
<a href="#" class="btn btn-primary tip" title="Add new todo"><i class="im-plus"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="todo-period">Today</h4>
|
||||
<ul class="todo-list" id="today">
|
||||
<li class="todo-task-item">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox">
|
||||
</label>
|
||||
<div class="todo-priority normal tip" title="Normal priority">
|
||||
<i class="im-radio-checked"></i>
|
||||
</div>
|
||||
<span class="todo-category label label-primary"> javascript </span>
|
||||
<div class="todo-task-text">Add scroll function to template</div>
|
||||
<button type="button" class="close todo-close">×</button>
|
||||
</li>
|
||||
<li class="todo-task-item">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox">
|
||||
</label>
|
||||
<div class="todo-priority high tip" title="High priority">
|
||||
<i class="im-radio-checked"></i>
|
||||
</div>
|
||||
<span class="todo-category label label-brown"> less </span>
|
||||
<div class="todo-task-text">Fix main less file</div>
|
||||
<button type="button" class="close todo-close">×</button>
|
||||
</li>
|
||||
<li class="todo-task-item task-done">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" checked>
|
||||
</label>
|
||||
<div class="todo-priority high tip" title="High priority">
|
||||
<i class="im-radio-checked"></i>
|
||||
</div>
|
||||
<span class="todo-category label label-info"> html </span>
|
||||
<div class="todo-task-text">Change navigation structure</div>
|
||||
<button type="button" class="close todo-close">×</button>
|
||||
</li>
|
||||
</ul>
|
||||
<h4 class="todo-period">Tomorrow</h4>
|
||||
<ul class="todo-list" id="tomorrow">
|
||||
<li class="todo-task-item">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox">
|
||||
</label>
|
||||
<div class="todo-priority tip" title="Low priority">
|
||||
<i class="im-radio-checked"></i>
|
||||
</div>
|
||||
<span class="todo-category label label-dark"> css </span>
|
||||
<div class="todo-task-text">Create slide panel widget</div>
|
||||
<button type="button" class="close todo-close">×</button>
|
||||
</li>
|
||||
<li class="todo-task-item">
|
||||
<label class="checkbox">
|
||||
<input type="checkbox">
|
||||
</label>
|
||||
<div class="todo-priority medium tip" title="Medium priority">
|
||||
<i class="im-radio-checked"></i>
|
||||
</div>
|
||||
<span class="todo-category label label-danger"> php </span>
|
||||
<div class="todo-task-text">Edit the main controller</div>
|
||||
<button type="button" class="close todo-close">×</button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social dribbble">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-dribbble text-light icon-xlg "></i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">1.6 K</h3>
|
||||
<h4 class="counttype text-light">Subscribers</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social vimeo">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-vimeo-square text-light icon-xlg"> </i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">2.1 m</h3>
|
||||
<h4 class="counttype text-light">Contacts</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social xing">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-xing text-light icon-xlg "></i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">2525</h3>
|
||||
<h4 class="counttype text-light">Connections</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social flickr">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-android text-light icon-xlg"></i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">1221</h3>
|
||||
<h4 class="counttype text-light">Media</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social yahoo">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-yahoo text-light icon-xlg"> Y!</i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">2525</h3>
|
||||
<h4 class="counttype text-light">Connections</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social rss">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-rss text-light icon-xlg"></i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">1523</h3>
|
||||
<h4 class="counttype text-light">Subscribers</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wid-social youtube">
|
||||
<div class="social-icon">
|
||||
<i class="fa fa-youtube text-light icon-xlg"></i>
|
||||
</div>
|
||||
<div class="social-info">
|
||||
<h3 class="number_counter bold count text-light start_timer counted">1523</h3>
|
||||
<h4 class="counttype text-light">Subscribers</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
<!-- End .panel -->
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
<!-- End col-lg-6 -->
|
||||
</div>
|
||||
<div class="row calender widget-shadow">
|
||||
<h4 class="title">Calender</h4>
|
||||
<div class="cal1">
|
||||
<!-- End .row -->
|
||||
<!-- Page End here -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"> </div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End .outlet -->
|
||||
|
|
|
|||
|
|
@ -6,43 +6,152 @@
|
|||
|
||||
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
||||
<!DOCTYPE html>
|
||||
<div class="panel">
|
||||
<div class="row req form-inline">
|
||||
<div class="col-md-8 col-md-offset-4 solid_top form-group">
|
||||
<div class="pull-right">
|
||||
<label>展示条数:
|
||||
<select class="form-control ng-pristine ng-valid ng-touched" ng-change="change(selectedLimit)" ng-model="selectedLimit" ng-options="value.limit for value in values"><option value="?" selected="selected"></option></select>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>序号</td>
|
||||
<td>模块</td>
|
||||
<td>信息</td>
|
||||
<td>时间</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!-- ngRepeat: data in datas -->
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="row form-inline">
|
||||
<div class="col-md-8">
|
||||
<ul class="samplePage pagination pagination ng-isolate-scope ng-valid" total-items="page.totalCount" ng-model="page.pageNo" max-size="5" boundary-links="true" force-ellipses="false" first-text="首页" last-text="末页" previous-text="上一页" next-text="下一页" items-per-page="page.limit" ng-change="pageChanged()" boundary-link-numbers="true">
|
||||
<!-- ngIf: ::boundaryLinks --><li ng-if="::boundaryLinks" ng-class="{disabled: noPrevious()||ngDisabled}" class="pagination-first ng-scope disabled"><a href="" ng-click="selectPage(1, $event)" class="ng-binding">首页</a></li><!-- end ngIf: ::boundaryLinks -->
|
||||
<!-- ngIf: ::directionLinks --><li ng-if="::directionLinks" ng-class="{disabled: noPrevious()||ngDisabled}" class="pagination-prev ng-scope disabled"><a href="" ng-click="selectPage(page - 1, $event)" class="ng-binding">上一页</a></li><!-- end ngIf: ::directionLinks -->
|
||||
<!-- ngRepeat: page in pages track by $index --><li ng-repeat="page in pages track by $index" ng-class="{active: page.active,disabled: ngDisabled&&!page.active}" class="pagination-page ng-scope active"><a href="" ng-click="selectPage(page.number, $event)" class="ng-binding">1</a></li><!-- end ngRepeat: page in pages track by $index -->
|
||||
<!-- ngIf: ::directionLinks --><li ng-if="::directionLinks" ng-class="{disabled: noNext()||ngDisabled}" class="pagination-next ng-scope disabled"><a href="" ng-click="selectPage(page + 1, $event)" class="ng-binding">下一页</a></li><!-- end ngIf: ::directionLinks -->
|
||||
<!-- ngIf: ::boundaryLinks --><li ng-if="::boundaryLinks" ng-class="{disabled: noNext()||ngDisabled}" class="pagination-last ng-scope disabled"><a href="" ng-click="selectPage(totalPages, $event)" class="ng-binding">末页</a></li><!-- end ngIf: ::boundaryLinks -->
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<input type="text" class="form-control ng-pristine ng-untouched ng-valid" style="width:100px;margin:25px 0" name="" ng-model="go">
|
||||
<a class="btn btn-primary btn-sm" ng-click="setPage(go)">跳转</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="outlet">
|
||||
<!-- Start .outlet -->
|
||||
<!-- Page start here ( usual with .row ) -->
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<!-- col-lg-12 start here -->
|
||||
<div class="panel panel-default plain toggle panelClose panelRefresh">
|
||||
<!-- Start .panel -->
|
||||
<div class="panel-heading white-bg">
|
||||
<h4 class="panel-title">Data table</h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<table class="table display" id="datatable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>用户信息</th>
|
||||
<th>注册信息</th>
|
||||
<th>登陆信息</th>
|
||||
<th>注册地址</th>
|
||||
<th>注册技威</th>
|
||||
<th>注册极光</th>
|
||||
<th>备注</th>
|
||||
<th>操作</th>
|
||||
<th>详情</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End .panel -->
|
||||
</div>
|
||||
<!-- col-lg-12 end here -->
|
||||
</div>
|
||||
<!-- Page End here -->
|
||||
</div>
|
||||
<!-- End .outlet -->
|
||||
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
var data = [
|
||||
[
|
||||
"Tiger Nixon",
|
||||
"System Architect",
|
||||
"Edinburgh",
|
||||
"5421",
|
||||
"2011/04/25",
|
||||
"$3,120"
|
||||
],
|
||||
[
|
||||
"Garrett Winters",
|
||||
"Director",
|
||||
"Edinburgh",
|
||||
"8422",
|
||||
"2011/07/25",
|
||||
"$5,300"
|
||||
]
|
||||
];
|
||||
$('#datatable').DataTable({
|
||||
//中文自定义
|
||||
language: {
|
||||
"sProcessing": "处理中...",
|
||||
"sLengthMenu": "显示 _MENU_ 项结果",
|
||||
"sZeroRecords": "没有匹配结果",
|
||||
"sInfo": "显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项",
|
||||
"sInfoEmpty": "显示第 0 至 0 项结果,共 0 项",
|
||||
"sInfoFiltered": "(由 _MAX_ 项结果过滤)",
|
||||
"sInfoPostFix": "",
|
||||
"sSearch": "搜索:",
|
||||
"sUrl": "",
|
||||
"sEmptyTable": "表中数据为空",
|
||||
"sLoadingRecords": "载入中...",
|
||||
"sInfoThousands": ",",
|
||||
"oPaginate": {
|
||||
"sFirst": "首页",
|
||||
"sPrevious": "上页",
|
||||
"sNext": "下页",
|
||||
"sLast": "末页"
|
||||
},
|
||||
"oAria": {
|
||||
"sSortAscending": ": 以升序排列此列",
|
||||
"sSortDescending": ": 以降序排列此列"
|
||||
}
|
||||
},
|
||||
//是否显示排序
|
||||
bSort: false,
|
||||
//是否显示过滤搜索
|
||||
bFilter: false,
|
||||
//页脚展示风格
|
||||
pagingType: "full_numbers",
|
||||
//是否启动服务器数据处理
|
||||
serverSide: true,
|
||||
//ajax获取服务器数据
|
||||
ajax: {
|
||||
url: 'getUserList',
|
||||
type: 'post'
|
||||
},
|
||||
//数据展示
|
||||
columns: [
|
||||
{"data": "userId"},
|
||||
{
|
||||
data: "userId",
|
||||
render: function (data, type, row, meta) {
|
||||
//type 的值 dispaly sort filter
|
||||
//代表,是显示类型的时候判断值的长度是否超过8,如果是则截取
|
||||
//这里只处理了类型是显示的,过滤和排序返回原始数据
|
||||
var str = "";
|
||||
if (row.phoneNumber != null) {
|
||||
str = str + "<span class='btn btn-dark'>" + row.phoneNumber + "</span></br>";
|
||||
}
|
||||
if (row.userEmail != null) {
|
||||
str = str + "<span class='btn btn-primary'>" + row.userEmail + "</span></br>";
|
||||
}
|
||||
if (row.nickName != null && row.nickName != '') {
|
||||
str = str + "<span class='btn btn-xs btn-purple'>" + row.nickName + "</span></br>";
|
||||
}
|
||||
if (row.phoneNumber == null && row.userEmail == null && ((row.nickName == null || row.nickName == ''))) {
|
||||
str = str + "<span class='btn btn-info'>游客登录</span></br>";
|
||||
}
|
||||
return str;
|
||||
}
|
||||
},
|
||||
{
|
||||
"data": "userId",
|
||||
render: function (data, type, row, meta) {
|
||||
var str = "";
|
||||
if (row.createTime != null) {
|
||||
str = str + "<span class='label label-default mr10 mb10'>" + row.createTime + "</span></br>";
|
||||
}
|
||||
if (row.phone_type != null) {
|
||||
str = str + "<span class='label label-info mr10 mb10'>" + row.phone_type + "</span></br>";
|
||||
}
|
||||
return str;
|
||||
}
|
||||
},
|
||||
{"data": "userId"},
|
||||
{"data": "userId"},
|
||||
{"data": "userId"},
|
||||
{"data": "userId"},
|
||||
{"data": "userId"},
|
||||
{"data": "userId"},
|
||||
{"data": "userId"}
|
||||
]
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
/* -----------------------------------------
|
||||
Custom.css - put your own changes here
|
||||
----------------------------------------- */
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
/* -----------------------------------------
|
||||
Custom.css - put your own changes here
|
||||
----------------------------------------- */
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 498 B |
|
After Width: | Height: | Size: 212 B |
|
After Width: | Height: | Size: 220 B |
|
After Width: | Height: | Size: 208 B |
|
After Width: | Height: | Size: 335 B |
|
After Width: | Height: | Size: 207 B |
|
After Width: | Height: | Size: 262 B |
|
After Width: | Height: | Size: 262 B |
|
After Width: | Height: | Size: 332 B |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
|
@ -0,0 +1,38 @@
|
|||
/*!
|
||||
* jQuery UI Accordion 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Accordion#theming
|
||||
*/
|
||||
.ui-accordion .ui-accordion-header {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
margin-top: 2px;
|
||||
padding: .5em .5em .5em .7em;
|
||||
min-height: 0; /* support: IE7 */
|
||||
}
|
||||
.ui-accordion .ui-accordion-icons {
|
||||
padding-left: 2.2em;
|
||||
}
|
||||
.ui-accordion .ui-accordion-noicons {
|
||||
padding-left: .7em;
|
||||
}
|
||||
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
||||
padding-left: 2.2em;
|
||||
}
|
||||
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
||||
position: absolute;
|
||||
left: .5em;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.ui-accordion .ui-accordion-content {
|
||||
padding: 1em 2.2em;
|
||||
border-top: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
/*!
|
||||
* jQuery UI CSS Framework 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming
|
||||
*/
|
||||
@import "jquery.ui.base.css";
|
||||
@import "jquery.ui.theme.css";
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
/*!
|
||||
* jQuery UI Autocomplete 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Autocomplete#theming
|
||||
*/
|
||||
.ui-autocomplete {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
cursor: default;
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
/*!
|
||||
* jQuery UI CSS Framework 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming
|
||||
*/
|
||||
@import url("jquery.ui.core.css");
|
||||
@import url("jquery.ui.accordion.css");
|
||||
@import url("jquery.ui.autocomplete.css");
|
||||
@import url("jquery.ui.button.css");
|
||||
@import url("jquery.ui.datepicker.css");
|
||||
@import url("jquery.ui.dialog.css");
|
||||
@import url("jquery.ui.menu.css");
|
||||
@import url("jquery.ui.progressbar.css");
|
||||
@import url("jquery.ui.resizable.css");
|
||||
@import url("jquery.ui.selectable.css");
|
||||
@import url("jquery.ui.slider.css");
|
||||
@import url("jquery.ui.spinner.css");
|
||||
@import url("jquery.ui.tabs.css");
|
||||
@import url("jquery.ui.tooltip.css");
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
/*!
|
||||
* jQuery UI Button 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Button#theming
|
||||
*/
|
||||
.ui-button {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding: 0;
|
||||
line-height: normal;
|
||||
margin-right: .1em;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
overflow: visible; /* removes extra width in IE */
|
||||
}
|
||||
.ui-button,
|
||||
.ui-button:link,
|
||||
.ui-button:visited,
|
||||
.ui-button:hover,
|
||||
.ui-button:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* to make room for the icon, a width needs to be set here */
|
||||
.ui-button-icon-only {
|
||||
width: 2.2em;
|
||||
}
|
||||
/* button elements seem to need a little more width */
|
||||
button.ui-button-icon-only {
|
||||
width: 2.4em;
|
||||
}
|
||||
.ui-button-icons-only {
|
||||
width: 3.4em;
|
||||
}
|
||||
button.ui-button-icons-only {
|
||||
width: 3.7em;
|
||||
}
|
||||
|
||||
/* button text element */
|
||||
.ui-button .ui-button-text {
|
||||
display: block;
|
||||
line-height: normal;
|
||||
}
|
||||
.ui-button-text-only .ui-button-text {
|
||||
padding: .4em 1em;
|
||||
}
|
||||
.ui-button-icon-only .ui-button-text,
|
||||
.ui-button-icons-only .ui-button-text {
|
||||
padding: .4em;
|
||||
text-indent: -9999999px;
|
||||
}
|
||||
.ui-button-text-icon-primary .ui-button-text,
|
||||
.ui-button-text-icons .ui-button-text {
|
||||
padding: .4em 1em .4em 2.1em;
|
||||
}
|
||||
.ui-button-text-icon-secondary .ui-button-text,
|
||||
.ui-button-text-icons .ui-button-text {
|
||||
padding: .4em 2.1em .4em 1em;
|
||||
}
|
||||
.ui-button-text-icons .ui-button-text {
|
||||
padding-left: 2.1em;
|
||||
padding-right: 2.1em;
|
||||
}
|
||||
/* no icon support for input elements, provide padding by default */
|
||||
input.ui-button {
|
||||
padding: .4em 1em;
|
||||
}
|
||||
|
||||
/* button icon element(s) */
|
||||
.ui-button-icon-only .ui-icon,
|
||||
.ui-button-text-icon-primary .ui-icon,
|
||||
.ui-button-text-icon-secondary .ui-icon,
|
||||
.ui-button-text-icons .ui-icon,
|
||||
.ui-button-icons-only .ui-icon {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.ui-button-icon-only .ui-icon {
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
}
|
||||
.ui-button-text-icon-primary .ui-button-icon-primary,
|
||||
.ui-button-text-icons .ui-button-icon-primary,
|
||||
.ui-button-icons-only .ui-button-icon-primary {
|
||||
left: .5em;
|
||||
}
|
||||
.ui-button-text-icon-secondary .ui-button-icon-secondary,
|
||||
.ui-button-text-icons .ui-button-icon-secondary,
|
||||
.ui-button-icons-only .ui-button-icon-secondary {
|
||||
right: .5em;
|
||||
}
|
||||
|
||||
/* button sets */
|
||||
.ui-buttonset {
|
||||
margin-right: 7px;
|
||||
}
|
||||
.ui-buttonset .ui-button {
|
||||
margin-left: 0;
|
||||
margin-right: -.3em;
|
||||
}
|
||||
|
||||
/* workarounds */
|
||||
/* reset extra padding in Firefox, see h5bp.com/l */
|
||||
input.ui-button::-moz-focus-inner,
|
||||
button.ui-button::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
/*!
|
||||
* jQuery UI CSS Framework 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming/API
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden {
|
||||
display: none;
|
||||
}
|
||||
.ui-helper-hidden-accessible {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
.ui-helper-reset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
line-height: 1.3;
|
||||
text-decoration: none;
|
||||
font-size: 100%;
|
||||
list-style: none;
|
||||
}
|
||||
.ui-helper-clearfix:before,
|
||||
.ui-helper-clearfix:after {
|
||||
content: "";
|
||||
display: table;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.ui-helper-clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.ui-helper-clearfix {
|
||||
min-height: 0; /* support: IE7 */
|
||||
}
|
||||
.ui-helper-zfix {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
filter:Alpha(Opacity=0);
|
||||
}
|
||||
|
||||
.ui-front {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled {
|
||||
cursor: default !important;
|
||||
}
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon {
|
||||
display: block;
|
||||
text-indent: -99999px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
|
@ -0,0 +1,178 @@
|
|||
/*!
|
||||
* jQuery UI Datepicker 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Datepicker#theming
|
||||
*/
|
||||
.ui-datepicker {
|
||||
width: 17em;
|
||||
padding: .2em .2em 0;
|
||||
display: none;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-header {
|
||||
position: relative;
|
||||
padding: .2em 0;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev,
|
||||
.ui-datepicker .ui-datepicker-next {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
width: 1.8em;
|
||||
height: 1.8em;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev-hover,
|
||||
.ui-datepicker .ui-datepicker-next-hover {
|
||||
top: 1px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev {
|
||||
left: 2px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-next {
|
||||
right: 2px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev-hover {
|
||||
left: 1px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-next-hover {
|
||||
right: 1px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-prev span,
|
||||
.ui-datepicker .ui-datepicker-next span {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
top: 50%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-title {
|
||||
margin: 0 2.3em;
|
||||
line-height: 1.8em;
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-title select {
|
||||
font-size: 1em;
|
||||
margin: 1px 0;
|
||||
}
|
||||
.ui-datepicker select.ui-datepicker-month-year {
|
||||
width: 100%;
|
||||
}
|
||||
.ui-datepicker select.ui-datepicker-month,
|
||||
.ui-datepicker select.ui-datepicker-year {
|
||||
width: 49%;
|
||||
}
|
||||
.ui-datepicker table {
|
||||
width: 100%;
|
||||
font-size: .9em;
|
||||
border-collapse: collapse;
|
||||
margin: 0 0 .4em;
|
||||
}
|
||||
.ui-datepicker th {
|
||||
padding: .7em .3em;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
}
|
||||
.ui-datepicker td {
|
||||
border: 0;
|
||||
padding: 1px;
|
||||
}
|
||||
.ui-datepicker td span,
|
||||
.ui-datepicker td a {
|
||||
display: block;
|
||||
padding: .2em;
|
||||
text-align: right;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-buttonpane {
|
||||
background-image: none;
|
||||
margin: .7em 0 0 0;
|
||||
padding: 0 .2em;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-buttonpane button {
|
||||
float: right;
|
||||
margin: .5em .2em .4em;
|
||||
cursor: pointer;
|
||||
padding: .2em .6em .3em .6em;
|
||||
width: auto;
|
||||
overflow: visible;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* with multiple calendars */
|
||||
.ui-datepicker.ui-datepicker-multi {
|
||||
width: auto;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-group {
|
||||
float: left;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-group table {
|
||||
width: 95%;
|
||||
margin: 0 auto .4em;
|
||||
}
|
||||
.ui-datepicker-multi-2 .ui-datepicker-group {
|
||||
width: 50%;
|
||||
}
|
||||
.ui-datepicker-multi-3 .ui-datepicker-group {
|
||||
width: 33.3%;
|
||||
}
|
||||
.ui-datepicker-multi-4 .ui-datepicker-group {
|
||||
width: 25%;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
||||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
||||
border-left-width: 0;
|
||||
}
|
||||
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
||||
clear: left;
|
||||
}
|
||||
.ui-datepicker-row-break {
|
||||
clear: both;
|
||||
width: 100%;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
/* RTL support */
|
||||
.ui-datepicker-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-prev {
|
||||
right: 2px;
|
||||
left: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-next {
|
||||
left: 2px;
|
||||
right: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
||||
right: 1px;
|
||||
left: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
||||
left: 1px;
|
||||
right: auto;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
||||
clear: right;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
||||
float: left;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
||||
.ui-datepicker-rtl .ui-datepicker-group {
|
||||
float: right;
|
||||
}
|
||||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
||||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
||||
border-right-width: 0;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
/*!
|
||||
* jQuery UI Dialog 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Dialog#theming
|
||||
*/
|
||||
.ui-dialog {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: .2em;
|
||||
outline: 0;
|
||||
}
|
||||
.ui-dialog .ui-dialog-titlebar {
|
||||
padding: .4em 1em;
|
||||
position: relative;
|
||||
}
|
||||
.ui-dialog .ui-dialog-title {
|
||||
float: left;
|
||||
margin: .1em 0;
|
||||
white-space: nowrap;
|
||||
width: 90%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.ui-dialog .ui-dialog-titlebar-close {
|
||||
position: absolute;
|
||||
right: .3em;
|
||||
top: 50%;
|
||||
width: 21px;
|
||||
margin: -10px 0 0 0;
|
||||
padding: 1px;
|
||||
height: 20px;
|
||||
}
|
||||
.ui-dialog .ui-dialog-content {
|
||||
position: relative;
|
||||
border: 0;
|
||||
padding: .5em 1em;
|
||||
background: none;
|
||||
overflow: auto;
|
||||
}
|
||||
.ui-dialog .ui-dialog-buttonpane {
|
||||
text-align: left;
|
||||
border-width: 1px 0 0 0;
|
||||
background-image: none;
|
||||
margin-top: .5em;
|
||||
padding: .3em 1em .5em .4em;
|
||||
}
|
||||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
||||
float: right;
|
||||
}
|
||||
.ui-dialog .ui-dialog-buttonpane button {
|
||||
margin: .5em .4em .5em 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ui-dialog .ui-resizable-se {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: -5px;
|
||||
bottom: -5px;
|
||||
background-position: 16px 16px;
|
||||
}
|
||||
.ui-draggable .ui-dialog-titlebar {
|
||||
cursor: move;
|
||||
}
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
/*!
|
||||
* jQuery UI Menu 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Menu#theming
|
||||
*/
|
||||
.ui-menu {
|
||||
list-style: none;
|
||||
padding: 2px;
|
||||
margin: 0;
|
||||
display: block;
|
||||
outline: none;
|
||||
}
|
||||
.ui-menu .ui-menu {
|
||||
margin-top: -3px;
|
||||
position: absolute;
|
||||
}
|
||||
.ui-menu .ui-menu-item {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
/* support: IE10, see #8844 */
|
||||
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
||||
}
|
||||
.ui-menu .ui-menu-divider {
|
||||
margin: 5px -2px 5px -2px;
|
||||
height: 0;
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
border-width: 1px 0 0 0;
|
||||
}
|
||||
.ui-menu .ui-menu-item a {
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
padding: 2px .4em;
|
||||
line-height: 1.5;
|
||||
min-height: 0; /* support: IE7 */
|
||||
font-weight: normal;
|
||||
}
|
||||
.ui-menu .ui-menu-item a.ui-state-focus,
|
||||
.ui-menu .ui-menu-item a.ui-state-active {
|
||||
font-weight: normal;
|
||||
margin: -1px;
|
||||
}
|
||||
|
||||
.ui-menu .ui-state-disabled {
|
||||
font-weight: normal;
|
||||
margin: .4em 0 .2em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.ui-menu .ui-state-disabled a {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* icon support */
|
||||
.ui-menu-icons {
|
||||
position: relative;
|
||||
}
|
||||
.ui-menu-icons .ui-menu-item a {
|
||||
position: relative;
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
||||
/* left-aligned */
|
||||
.ui-menu .ui-icon {
|
||||
position: absolute;
|
||||
top: .2em;
|
||||
left: .2em;
|
||||
}
|
||||
|
||||
/* right-aligned */
|
||||
.ui-menu .ui-menu-icon {
|
||||
position: static;
|
||||
float: right;
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
/*!
|
||||
* jQuery UI Progressbar 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Progressbar#theming
|
||||
*/
|
||||
.ui-progressbar {
|
||||
height: 2em;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
.ui-progressbar .ui-progressbar-value {
|
||||
margin: -1px;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-progressbar .ui-progressbar-overlay {
|
||||
background: url("images/animated-overlay.gif");
|
||||
height: 100%;
|
||||
filter: alpha(opacity=25);
|
||||
opacity: 0.25;
|
||||
}
|
||||
.ui-progressbar-indeterminate .ui-progressbar-value {
|
||||
background-image: none;
|
||||
}
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
/*!
|
||||
* jQuery UI Resizable 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Resizable#theming
|
||||
*/
|
||||
.ui-resizable {
|
||||
position: relative;
|
||||
}
|
||||
.ui-resizable-handle {
|
||||
position: absolute;
|
||||
font-size: 0.1px;
|
||||
display: block;
|
||||
}
|
||||
.ui-resizable-disabled .ui-resizable-handle,
|
||||
.ui-resizable-autohide .ui-resizable-handle {
|
||||
display: none;
|
||||
}
|
||||
.ui-resizable-n {
|
||||
cursor: n-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
top: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-s {
|
||||
cursor: s-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-e {
|
||||
cursor: e-resize;
|
||||
width: 7px;
|
||||
right: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-resizable-w {
|
||||
cursor: w-resize;
|
||||
width: 7px;
|
||||
left: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-resizable-se {
|
||||
cursor: se-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 1px;
|
||||
bottom: 1px;
|
||||
}
|
||||
.ui-resizable-sw {
|
||||
cursor: sw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
bottom: -5px;
|
||||
}
|
||||
.ui-resizable-nw {
|
||||
cursor: nw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
.ui-resizable-ne {
|
||||
cursor: ne-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
right: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
/*!
|
||||
* jQuery UI Selectable 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Selectable#theming
|
||||
*/
|
||||
.ui-selectable-helper {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
border: 1px dotted black;
|
||||
}
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
/*!
|
||||
* jQuery UI Slider 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Slider#theming
|
||||
*/
|
||||
.ui-slider {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
}
|
||||
.ui-slider .ui-slider-handle {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
width: 1.2em;
|
||||
height: 1.2em;
|
||||
cursor: default;
|
||||
}
|
||||
.ui-slider .ui-slider-range {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
font-size: .7em;
|
||||
display: block;
|
||||
border: 0;
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
/* For IE8 - See #6727 */
|
||||
.ui-slider.ui-state-disabled .ui-slider-handle,
|
||||
.ui-slider.ui-state-disabled .ui-slider-range {
|
||||
-webkit-filter: inherit;
|
||||
filter: inherit;
|
||||
}
|
||||
|
||||
.ui-slider-horizontal {
|
||||
height: .8em;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-handle {
|
||||
top: -.3em;
|
||||
margin-left: -.6em;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-range {
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-range-min {
|
||||
left: 0;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-range-max {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.ui-slider-vertical {
|
||||
width: .8em;
|
||||
height: 100px;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-handle {
|
||||
left: -.3em;
|
||||
margin-left: 0;
|
||||
margin-bottom: -.6em;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-range {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-range-min {
|
||||
bottom: 0;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-range-max {
|
||||
top: 0;
|
||||
}
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
/*!
|
||||
* jQuery UI Spinner 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Spinner#theming
|
||||
*/
|
||||
.ui-spinner {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.ui-spinner-input {
|
||||
border: none;
|
||||
background: none;
|
||||
color: inherit;
|
||||
padding: 0;
|
||||
margin: .2em 0;
|
||||
vertical-align: middle;
|
||||
margin-left: .4em;
|
||||
margin-right: 22px;
|
||||
}
|
||||
.ui-spinner-button {
|
||||
width: 16px;
|
||||
height: 50%;
|
||||
font-size: .5em;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
cursor: default;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
right: 0;
|
||||
}
|
||||
/* more specificity required here to overide default borders */
|
||||
.ui-spinner a.ui-spinner-button {
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
border-right: none;
|
||||
}
|
||||
/* vertical centre icon */
|
||||
.ui-spinner .ui-icon {
|
||||
position: absolute;
|
||||
margin-top: -8px;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
}
|
||||
.ui-spinner-up {
|
||||
top: 0;
|
||||
}
|
||||
.ui-spinner-down {
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
/* TR overrides */
|
||||
.ui-spinner .ui-icon-triangle-1-s {
|
||||
/* need to fix icons sprite */
|
||||
background-position: -65px -16px;
|
||||
}
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
/*!
|
||||
* jQuery UI Tabs 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Tabs#theming
|
||||
*/
|
||||
.ui-tabs {
|
||||
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
||||
padding: .2em;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav {
|
||||
margin: 0;
|
||||
padding: .2em .2em 0;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
position: relative;
|
||||
top: 0;
|
||||
margin: 1px .2em 0 0;
|
||||
border-bottom-width: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li a {
|
||||
float: left;
|
||||
padding: .5em 1em;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
||||
margin-bottom: -1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
||||
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
||||
cursor: text;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
||||
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
||||
cursor: pointer;
|
||||
}
|
||||
.ui-tabs .ui-tabs-panel {
|
||||
display: block;
|
||||
border-width: 0;
|
||||
padding: 1em 1.4em;
|
||||
background: none;
|
||||
}
|
||||
|
|
@ -0,0 +1,407 @@
|
|||
/*!
|
||||
* jQuery UI CSS Framework 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming/API
|
||||
*
|
||||
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault='Open%20Sans'%2C%20Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=0px&bgColorHeader=%23f0f0f0&bgTextureHeader=flat&bgImgOpacityHeader=100&borderColorHeader=%23cacaca&fcHeader=%235a5e63&iconColorHeader=%23222222&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=100&borderColorContent=%23cacaca&fcContent=%235a5e63&iconColorContent=%23222222&bgColorDefault=%23e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=%23cacaca&fcDefault=%23555555&iconColorDefault=%23888888&bgColorHover=%23dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=%23999999&fcHover=%23212121&iconColorHover=%23454545&bgColorActive=%23ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=%23aaaaaa&fcActive=%23212121&iconColorActive=%23454545&bgColorHighlight=%23fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=%23fcefa1&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=%23fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=%23cd0a0a&fcError=%23cd0a0a&iconColorError=%23cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
||||
*/
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.ui-icon,
|
||||
.ui-panel-body .ui-icon {
|
||||
background-image: url(images/ui-icons_636363_256x240.png);
|
||||
}
|
||||
.ui-widget-header .ui-icon {
|
||||
background-image: url(images/ui-icons_636363_256x240.png);
|
||||
}
|
||||
.ui-state-default .ui-icon {
|
||||
background-image: url(images/ui-icons_888888_256x240.png);
|
||||
}
|
||||
.ui-state-hover .ui-icon,
|
||||
.ui-state-focus .ui-icon {
|
||||
background-image: url(images/ui-icons_454545_256x240.png);
|
||||
}
|
||||
.ui-state-active .ui-icon {
|
||||
background-image: url(images/ui-icons_454545_256x240.png);
|
||||
}
|
||||
.ui-state-highlight .ui-icon {
|
||||
background-image: url(images/ui-icons_62aeef_256x240.png);
|
||||
}
|
||||
.ui-state-error .ui-icon,
|
||||
.ui-state-error-text .ui-icon {
|
||||
background-image: url(images/ui-icons_cd0a0a_256x240.png);
|
||||
}
|
||||
|
||||
/* positioning */
|
||||
.ui-icon-blank { background-position: 16px 16px; }
|
||||
.ui-icon-carat-1-n { background-position: 0 0; }
|
||||
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
||||
.ui-icon-carat-1-e { background-position: -32px 0; }
|
||||
.ui-icon-carat-1-se { background-position: -48px 0; }
|
||||
.ui-icon-carat-1-s { background-position: -64px 0; }
|
||||
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
||||
.ui-icon-carat-1-w { background-position: -96px 0; }
|
||||
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
||||
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
||||
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
||||
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
||||
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
||||
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
||||
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
||||
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
||||
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
||||
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
||||
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
||||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
||||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
||||
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
||||
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
||||
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
||||
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
||||
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
||||
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
||||
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
||||
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
||||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
||||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
||||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
||||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
||||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
||||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
||||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
||||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
||||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
||||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
||||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
||||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
||||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
||||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
||||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
||||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
||||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
||||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
||||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
||||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
||||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
||||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
||||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
||||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
||||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
||||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
||||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
||||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
||||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
||||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
||||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
||||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
||||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
||||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
||||
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
||||
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
||||
.ui-icon-extlink { background-position: -32px -80px; }
|
||||
.ui-icon-newwin { background-position: -48px -80px; }
|
||||
.ui-icon-refresh { background-position: -64px -80px; }
|
||||
.ui-icon-shuffle { background-position: -80px -80px; }
|
||||
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
||||
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
||||
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
||||
.ui-icon-folder-open { background-position: -16px -96px; }
|
||||
.ui-icon-document { background-position: -32px -96px; }
|
||||
.ui-icon-document-b { background-position: -48px -96px; }
|
||||
.ui-icon-note { background-position: -64px -96px; }
|
||||
.ui-icon-mail-closed { background-position: -80px -96px; }
|
||||
.ui-icon-mail-open { background-position: -96px -96px; }
|
||||
.ui-icon-suitcase { background-position: -112px -96px; }
|
||||
.ui-icon-comment { background-position: -128px -96px; }
|
||||
.ui-icon-person { background-position: -144px -96px; }
|
||||
.ui-icon-print { background-position: -160px -96px; }
|
||||
.ui-icon-trash { background-position: -176px -96px; }
|
||||
.ui-icon-locked { background-position: -192px -96px; }
|
||||
.ui-icon-unlocked { background-position: -208px -96px; }
|
||||
.ui-icon-bookmark { background-position: -224px -96px; }
|
||||
.ui-icon-tag { background-position: -240px -96px; }
|
||||
.ui-icon-home { background-position: 0 -112px; }
|
||||
.ui-icon-flag { background-position: -16px -112px; }
|
||||
.ui-icon-calendar { background-position: -32px -112px; }
|
||||
.ui-icon-cart { background-position: -48px -112px; }
|
||||
.ui-icon-pencil { background-position: -64px -112px; }
|
||||
.ui-icon-clock { background-position: -80px -112px; }
|
||||
.ui-icon-disk { background-position: -96px -112px; }
|
||||
.ui-icon-calculator { background-position: -112px -112px; }
|
||||
.ui-icon-zoomin { background-position: -128px -112px; }
|
||||
.ui-icon-zoomout { background-position: -144px -112px; }
|
||||
.ui-icon-search { background-position: -160px -112px; }
|
||||
.ui-icon-wrench { background-position: -176px -112px; }
|
||||
.ui-icon-gear { background-position: -192px -112px; }
|
||||
.ui-icon-heart { background-position: -208px -112px; }
|
||||
.ui-icon-star { background-position: -224px -112px; }
|
||||
.ui-icon-link { background-position: -240px -112px; }
|
||||
.ui-icon-cancel { background-position: 0 -128px; }
|
||||
.ui-icon-plus { background-position: -16px -128px; }
|
||||
.ui-icon-plusthick { background-position: -32px -128px; }
|
||||
.ui-icon-minus { background-position: -48px -128px; }
|
||||
.ui-icon-minusthick { background-position: -64px -128px; }
|
||||
.ui-icon-close { background-position: -80px -128px; }
|
||||
.ui-icon-closethick { background-position: -96px -128px; }
|
||||
.ui-icon-key { background-position: -112px -128px; }
|
||||
.ui-icon-lightbulb { background-position: -128px -128px; }
|
||||
.ui-icon-scissors { background-position: -144px -128px; }
|
||||
.ui-icon-clipboard { background-position: -160px -128px; }
|
||||
.ui-icon-copy { background-position: -176px -128px; }
|
||||
.ui-icon-contact { background-position: -192px -128px; }
|
||||
.ui-icon-image { background-position: -208px -128px; }
|
||||
.ui-icon-video { background-position: -224px -128px; }
|
||||
.ui-icon-script { background-position: -240px -128px; }
|
||||
.ui-icon-alert { background-position: 0 -144px; }
|
||||
.ui-icon-info { background-position: -16px -144px; }
|
||||
.ui-icon-notice { background-position: -32px -144px; }
|
||||
.ui-icon-help { background-position: -48px -144px; }
|
||||
.ui-icon-check { background-position: -64px -144px; }
|
||||
.ui-icon-bullet { background-position: -80px -144px; }
|
||||
.ui-icon-radio-on { background-position: -96px -144px; }
|
||||
.ui-icon-radio-off { background-position: -112px -144px; }
|
||||
.ui-icon-pin-w { background-position: -128px -144px; }
|
||||
.ui-icon-pin-s { background-position: -144px -144px; }
|
||||
.ui-icon-play { background-position: 0 -160px; }
|
||||
.ui-icon-pause { background-position: -16px -160px; }
|
||||
.ui-icon-seek-next { background-position: -32px -160px; }
|
||||
.ui-icon-seek-prev { background-position: -48px -160px; }
|
||||
.ui-icon-seek-end { background-position: -64px -160px; }
|
||||
.ui-icon-seek-start { background-position: -80px -160px; }
|
||||
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
||||
.ui-icon-seek-first { background-position: -80px -160px; }
|
||||
.ui-icon-stop { background-position: -96px -160px; }
|
||||
.ui-icon-eject { background-position: -112px -160px; }
|
||||
.ui-icon-volume-off { background-position: -128px -160px; }
|
||||
.ui-icon-volume-on { background-position: -144px -160px; }
|
||||
.ui-icon-power { background-position: 0 -176px; }
|
||||
.ui-icon-signal-diag { background-position: -16px -176px; }
|
||||
.ui-icon-signal { background-position: -32px -176px; }
|
||||
.ui-icon-battery-0 { background-position: -48px -176px; }
|
||||
.ui-icon-battery-1 { background-position: -64px -176px; }
|
||||
.ui-icon-battery-2 { background-position: -80px -176px; }
|
||||
.ui-icon-battery-3 { background-position: -96px -176px; }
|
||||
.ui-icon-circle-plus { background-position: 0 -192px; }
|
||||
.ui-icon-circle-minus { background-position: -16px -192px; }
|
||||
.ui-icon-circle-close { background-position: -32px -192px; }
|
||||
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
||||
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
||||
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
||||
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
||||
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
||||
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
||||
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
||||
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
||||
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
||||
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
||||
.ui-icon-circle-check { background-position: -208px -192px; }
|
||||
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
||||
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
||||
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
||||
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
||||
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
||||
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
||||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
||||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
||||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
||||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
||||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
||||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
||||
|
||||
|
||||
|
||||
/* Component containers
|
||||
----------------------------------*/
|
||||
.ui-widget {
|
||||
font-family: 'Open Sans', Verdana,Arial,sans-serif;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.ui-widget .ui-widget {
|
||||
font-size: 1em;
|
||||
}
|
||||
.ui-widget input,
|
||||
.ui-widget select,
|
||||
.ui-widget textarea,
|
||||
.ui-widget button {
|
||||
font-family: 'Open Sans', Verdana,Arial,sans-serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
.ui-widget-content {
|
||||
border: 1px solid #cacaca;
|
||||
background: #ffffff;
|
||||
color: #5a5e63;
|
||||
}
|
||||
.ui-widget-content a {
|
||||
color: #5a5e63;
|
||||
}
|
||||
.ui-widget-header {
|
||||
border: 1px solid #cacaca;
|
||||
background: #f0f0f0;
|
||||
color: #5a5e63;
|
||||
font-weight: bold;
|
||||
}
|
||||
.ui-widget-header a {
|
||||
color: #5a5e63;
|
||||
}
|
||||
|
||||
/* Interaction states
|
||||
----------------------------------*/
|
||||
.ui-state-default,
|
||||
.ui-widget-content .ui-state-default,
|
||||
.ui-widget-header .ui-state-default {
|
||||
border: 1px solid #cacaca;
|
||||
background: #e6e6e6;
|
||||
font-weight: normal;
|
||||
color: #555555;
|
||||
}
|
||||
.ui-state-default a,
|
||||
.ui-state-default a:link,
|
||||
.ui-state-default a:visited {
|
||||
color: #555555;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-state-hover,
|
||||
.ui-widget-content .ui-state-hover,
|
||||
.ui-widget-header .ui-state-hover,
|
||||
.ui-state-focus,
|
||||
.ui-widget-content .ui-state-focus,
|
||||
.ui-widget-header .ui-state-focus {
|
||||
border: 1px solid #999999;
|
||||
background: #dadada;
|
||||
font-weight: normal;
|
||||
color: #212121;
|
||||
}
|
||||
.ui-state-hover a,
|
||||
.ui-state-hover a:hover,
|
||||
.ui-state-hover a:link,
|
||||
.ui-state-hover a:visited {
|
||||
color: #212121;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-state-active,
|
||||
.ui-widget-content .ui-state-active,
|
||||
.ui-widget-header .ui-state-active {
|
||||
border: 1px solid #aaaaaa;
|
||||
background: #ffffff;
|
||||
font-weight: normal;
|
||||
color: #212121;
|
||||
}
|
||||
.ui-state-active a,
|
||||
.ui-state-active a:link,
|
||||
.ui-state-active a:visited {
|
||||
color: #212121;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-highlight,
|
||||
.ui-widget-content .ui-state-highlight,
|
||||
.ui-widget-header .ui-state-highlight {
|
||||
border: 1px solid #fcefa1;
|
||||
background: #fbf9ee;
|
||||
color: #363636;
|
||||
}
|
||||
.ui-state-highlight a,
|
||||
.ui-widget-content .ui-state-highlight a,
|
||||
.ui-widget-header .ui-state-highlight a {
|
||||
color: #363636;
|
||||
}
|
||||
.ui-state-error,
|
||||
.ui-widget-content .ui-state-error,
|
||||
.ui-widget-header .ui-state-error {
|
||||
border: 1px solid #cd0a0a;
|
||||
background: #fef1ec;
|
||||
color: #cd0a0a;
|
||||
}
|
||||
.ui-state-error a,
|
||||
.ui-widget-content .ui-state-error a,
|
||||
.ui-widget-header .ui-state-error a {
|
||||
color: #cd0a0a;
|
||||
}
|
||||
.ui-state-error-text,
|
||||
.ui-widget-content .ui-state-error-text,
|
||||
.ui-widget-header .ui-state-error-text {
|
||||
color: #cd0a0a;
|
||||
}
|
||||
.ui-priority-primary,
|
||||
.ui-widget-content .ui-priority-primary,
|
||||
.ui-widget-header .ui-priority-primary {
|
||||
font-weight: bold;
|
||||
}
|
||||
.ui-priority-secondary,
|
||||
.ui-widget-content .ui-priority-secondary,
|
||||
.ui-widget-header .ui-priority-secondary {
|
||||
opacity: .7;
|
||||
filter:Alpha(Opacity=70);
|
||||
font-weight: normal;
|
||||
}
|
||||
.ui-state-disabled,
|
||||
.ui-widget-content .ui-state-disabled,
|
||||
.ui-widget-header .ui-state-disabled {
|
||||
opacity: .35;
|
||||
filter:Alpha(Opacity=35);
|
||||
background-image: none;
|
||||
}
|
||||
.ui-state-disabled .ui-icon {
|
||||
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
|
||||
}
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Corner radius */
|
||||
.ui-corner-all,
|
||||
.ui-corner-top,
|
||||
.ui-corner-left,
|
||||
.ui-corner-tl {
|
||||
border-top-left-radius: 0px;
|
||||
}
|
||||
.ui-corner-all,
|
||||
.ui-corner-top,
|
||||
.ui-corner-right,
|
||||
.ui-corner-tr {
|
||||
border-top-right-radius: 0px;
|
||||
}
|
||||
.ui-corner-all,
|
||||
.ui-corner-bottom,
|
||||
.ui-corner-left,
|
||||
.ui-corner-bl {
|
||||
border-bottom-left-radius: 0px;
|
||||
}
|
||||
.ui-corner-all,
|
||||
.ui-corner-bottom,
|
||||
.ui-corner-right,
|
||||
.ui-corner-br {
|
||||
border-bottom-right-radius: 0px;
|
||||
}
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
background: #aaaaaa;
|
||||
opacity: .3;
|
||||
filter: Alpha(Opacity=30);
|
||||
}
|
||||
.ui-widget-shadow {
|
||||
margin: -8px 0 0 -8px;
|
||||
padding: 8px;
|
||||
background: #aaaaaa;
|
||||
opacity: .3;
|
||||
filter: Alpha(Opacity=30);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*!
|
||||
* jQuery UI Tooltip 1.10.3
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2013 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
.ui-tooltip {
|
||||
padding: 8px;
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
max-width: 300px;
|
||||
box-shadow: 0 0 5px #aaa;
|
||||
}
|
||||
body .ui-tooltip {
|
||||
border-width: 2px;
|
||||
}
|
||||
|
After Width: | Height: | Size: 88 KiB |
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="ecoico" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " d="" horiz-adv-x="512" />
|
||||
<glyph unicode="" d="M512-46.545c-282.764 0-512 229.236-512 512s229.236 512 512 512 512-229.236 512-512-229.236-512-512-512zM512 884.364c-231.377 0-418.909-187.532-418.909-418.909s187.532-418.909 418.909-418.909 418.909 187.532 418.909 418.909-187.532 418.909-418.909 418.909zM279.273 418.91h139.636l93.091 372.364 93.091-372.364h139.636l-232.727-232.727-232.727 232.727z" />
|
||||
<glyph unicode="" d="M930.909-46.545h-837.818c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h698.182l-93.091-93.091h-605.091v-837.818h837.818v605.091l93.091 93.091v-698.182c0-51.386-41.705-93.091-93.091-93.091zM872.727 896l81.455 81.455c0 0 69.818 1.443 69.818-68.375l-82.106-82.292-69.167 69.213zM418.909 372.364v69.818l34.909 34.909 69.772-69.772-34.863-34.956h-69.818zM895.441 780.195l-348.625-349.556-69.725 69.725 349.091 349.091 69.26-69.26z" />
|
||||
<glyph unicode="" d="M558.545 46.546h-93.091c-71.913 0-139.729 16.756-200.518 45.894l-218.391-138.985 30.255 302.732c-48.454 73.402-76.8 161.28-76.8 255.814 0 257.071 208.384 465.455 465.455 465.455h93.091c257.071 0 465.455-208.384 465.455-465.455 0-257.071-208.384-465.455-465.455-465.455zM558.545 884.364h-93.091c-205.638 0-372.364-166.726-372.364-372.364s166.726-372.364 372.364-372.364h93.091c205.638 0 372.364 166.726 372.364 372.364s-166.726 372.364-372.364 372.364zM698.182 465.455c-25.74 0-46.545 20.852-46.545 46.545s20.806 46.545 46.545 46.545 46.545-20.852 46.545-46.545-20.806-46.545-46.545-46.545zM512 465.455c-25.693 0-46.545 20.852-46.545 46.545s20.852 46.545 46.545 46.545c25.74 0 46.545-20.852 46.545-46.545s-20.806-46.545-46.545-46.545zM325.818 465.455c-25.693 0-46.545 20.852-46.545 46.545s20.852 46.545 46.545 46.545 46.545-20.852 46.545-46.545-20.852-46.545-46.545-46.545z" />
|
||||
<glyph unicode="" d="M930.909 46.546c0 0-744.727 0-837.818 0s-93.091 93.091-93.091 93.091v325.818l232.727 418.909h558.545l232.727-418.909c0 0 0-232.727 0-325.818s-93.091-93.091-93.091-93.091zM744.727 791.273h-465.455l-162.909-325.818h791.273l-162.909 325.818zM930.909 372.364h-837.818v-232.727h837.818v232.727zM605.091 232.728h-186.182v46.545h186.182v-46.545zM721.455 605.091l23.273-46.545h-465.455l23.273 46.545h418.909zM349.091 698.182h325.818l23.273-46.545h-372.364l23.273 46.545z" />
|
||||
<glyph unicode="" d="M930.909 46.546c0 0 0-93.091-93.091-93.091s-575.488 0-651.636 0c-93.091 0-93.091 93.091-93.091 93.091s-49.478 356.911 262.935 445.626c-46.825 51.107-76.753 124.090-76.753 206.010 0 154.205 104.215 279.273 232.727 279.273 128.559 0 232.727-125.068 232.727-279.273 0-81.92-29.929-154.903-76.753-206.010 312.413-88.716 262.935-445.626 262.935-445.626zM512 884.364c0 0-139.636 0-139.636-186.182s139.636-186.182 139.636-186.182 139.636 0 139.636 186.182-139.636 186.182-139.636 186.182zM512 418.91c-372.364 0-325.818-372.364-325.818-372.364h651.636c0 0 46.545 372.364-325.818 372.364z" />
|
||||
<glyph unicode="" d="M1213.021 46.546c0 0 0-93.091-93.091-93.091s-575.488 0-651.636 0c-93.091 0-93.091 93.091-93.091 93.091s-49.478 356.911 262.935 445.626c-46.825 51.107-76.753 124.090-76.753 206.010 0 154.205 104.215 279.273 232.727 279.273s232.727-125.068 232.727-279.273c0-81.92-30.022-154.903-76.8-206.010 312.46-88.716 262.982-445.626 262.982-445.626zM794.112 884.364c0 0-139.636 0-139.636-186.182s139.636-186.182 139.636-186.182 139.636 0 139.636 186.182-139.636 186.182-139.636 186.182zM794.112 418.91c-372.364 0-325.818-372.364-325.818-372.364h651.636c0 0 46.545 372.364-325.818 372.364zM414.767 402.479c-13.964-17.548-25.926-36.492-36.817-56.18-26.484 10.659-58.042 17.594-97.28 17.594-247.808 0-216.855-253.905-216.855-253.905h257.629c0.279-21.551 2.467-42.729 5.911-63.441-109.475 0-233.612 0-263.54 0-61.952 0-61.952 63.441-61.952 63.441s-33.187 248.367 182.412 305.431c-27.788 34.769-45.382 83.921-45.382 138.892 0 105.146 63.488 190.417 141.731 190.417s141.731-85.271 141.731-190.417c0-55.017-17.594-104.169-45.382-138.892 13.591-3.584 26.159-7.959 37.795-12.94zM280.623 681.24c0 0-82.758 0-82.758-126.929 0-126.976 82.758-126.976 82.758-126.976s82.758 0 82.758 126.976c0.047 126.929-82.758 126.929-82.758 126.929z" horiz-adv-x="1214" />
|
||||
<glyph unicode="" d="M930.909 46.546c0 0-744.727 0-837.818 0s-93.091 93.091-93.091 93.091v325.818l232.727 418.909h558.545l232.727-418.909c0 0 0-232.727 0-325.818s-93.091-93.091-93.091-93.091zM744.727 791.273h-465.455l-162.909-325.818h209.455c0 0 93.091 0 93.091-93.091v-46.545h186.182v46.545c0 0 0 93.091 93.091 93.091h209.455l-162.909 325.818zM930.909 372.364h-221.51c-6.47-12.241-11.217-26.903-11.217-46.545 0-93.091-93.091-93.091-93.091-93.091h-186.182c0 0-93.091 0-93.091 93.091 0 19.642-4.748 34.304-11.217 46.545h-221.51v-232.727h837.818v232.727zM302.545 605.091h418.909l23.273-46.545h-465.455l23.273 46.545zM349.091 698.182h325.818l23.273-46.545h-372.364l23.273 46.545z" />
|
||||
<glyph unicode="" d="M512-46.545c-282.764 0-512 229.236-512 512s229.236 512 512 512 512-229.236 512-512-229.236-512-512-512zM512 884.364c-231.377 0-418.909-187.532-418.909-418.909s187.532-418.909 418.909-418.909 418.909 187.532 418.909 418.909-187.532 418.909-418.909 418.909zM721.873 218.206l-12.055-7.261-34.909-21.83-20.573-15.453c-15.267-7.447-31.232-13.359-47.756-18.432v20.759l-5.818 47.988c0 0-2.886 27.648-7.261 34.909s-14.522 17.455-24.716 21.83-17.455 4.375-23.273 11.636-10.193 20.387-17.455 32.023-16.058 23.273-16.058 29.091 0 65.443 0 65.443l7.261 55.296 16.012 11.636 18.897 21.83 13.126 4.329 45.103-8.751h32.023l13.079-27.648 30.534-24.716 18.897-30.534 24.716-8.751h27.648l18.897-23.273 11.636-24.716 4.375-17.455v-29.091l-2.979-17.175c-18.525-31.092-41.891-58.415-69.353-81.687zM609.466 720.012l-32.023-17.455-11.636-33.466-18.897-17.455h-62.557l-29.091-11.636-1.443-23.273-11.636-18.897-2.886-20.387 5.818-17.455 7.261-17.455c0 0 17.455-20.387 0-34.909 0 0-21.83 0-26.159 7.261s-36.399 27.648-42.217 33.466-24.716 11.636-24.716 11.636l-23.273 8.751-21.83 1.443 1.443 30.534-1.443 26.205-8.751 18.897-24.716 18.897-1.443 20.387 2.979 11.311c58.927 58.601 140.102 94.86 229.748 94.86 50.595 0 97.885-12.521 140.614-33.094l-0.977-7.633-42.17-30.534z" />
|
||||
<glyph unicode="" d="M512-46.545c0 0-325.818 372.364-325.818 698.182s325.818 325.818 325.818 325.818 325.818 0 325.818-325.818-325.818-698.182-325.818-698.182zM740.352 694.924c-10.705 56.879-42.403 105.751-86.342 139.869-2.979 2.374-5.679 5.027-8.797 7.261-6.889 4.887-14.522 8.751-22.016 12.847-6.284 3.491-12.195 7.308-18.851 10.24-6.516 2.839-13.545 4.515-20.387 6.749-7.959 2.607-15.546 5.725-23.971 7.447-15.5 3.212-31.465 5.027-47.895 5.027 0 0-0.047 0-0.093 0-0.093 0-0.14 0-0.233 0-16.198 0-31.977-1.722-47.244-4.841-30.487-6.144-57.763-18.246-81.687-34.397-0.372-0.233-0.745-0.372-1.071-0.605-9.914-6.749-18.804-14.522-27.462-22.668-2.607-2.42-5.492-4.468-7.959-6.982-5.818-6.004-10.705-12.66-15.872-19.177-4.422-5.632-9.216-10.985-13.172-17.036-2.653-4.236-4.655-8.797-7.121-13.172-4.934-8.797-9.961-17.548-13.777-26.996-1.443-3.537-2.141-7.308-3.398-10.938-3.537-10.24-7.121-20.48-9.216-31.372-2.932-14.615-4.515-29.556-4.515-44.544 0-232.727 232.727-558.545 232.727-558.545s232.727 325.818 232.727 558.545c0 14.476-1.489 28.998-4.375 43.287zM372.364 651.637c0 77.126 62.511 139.636 139.636 139.636s139.636-62.511 139.636-139.636-62.511-139.636-139.636-139.636-139.636 62.511-139.636 139.636z" />
|
||||
<glyph unicode="" d="M866.909 512h-308.364v308.364l89.181-89.181 325.027 195.025-195.025-325.073 89.181-89.135zM215.785 761.67c-124.23-124.23-153.879-307.060-89.367-459.543l-54.039-98.118c-117.015 196.561-91.555 454.377 77.591 623.523s426.961 194.607 623.476 77.591l-98.071-54.039c-152.529 64.465-335.313 34.863-459.59-89.414zM157.091 418.91h308.364v-308.364l-89.181 89.181-325.027-195.025 195.025 325.027-89.181 89.181zM808.215 169.286c124.788 124.742 154.065 308.503 88.483 461.359l54.132 97.559c117.9-196.701 92.672-455.308-76.8-624.78-169.565-169.519-428.079-194.746-624.78-76.8l97.559 54.132c152.809-65.583 336.663-36.305 461.405 88.529z" />
|
||||
<glyph unicode="" d="M791.273-46.545h-558.545c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h558.545c51.386 0 93.091-41.705 93.091-93.091v-837.818c0-51.386-41.705-93.091-93.091-93.091zM791.273 884.364h-558.545v-837.818h558.545v837.818zM698.182 186.182h-372.364v605.091h372.364v-605.091zM558.545 93.091h-93.091v46.545h93.091v-46.545z" />
|
||||
<glyph unicode="" d="M930.909 139.637h-321.257c-2.607-14.103-4.561-29.277-4.561-46.545 0-93.091 93.091-93.091 93.091-93.091 25.74 0 46.545-10.473 46.545-23.273 0-12.847-20.806-23.273-46.545-23.273h-372.364c-25.693 0-46.545 10.426-46.545 23.273 0 12.8 20.852 23.273 46.545 23.273 0 0 93.091 0 93.091 93.091 0 17.268-1.955 32.442-4.561 46.545h-321.257c-51.386 0-93.091 41.705-93.091 93.091v651.636c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-651.636c0-51.386-41.705-93.091-93.091-93.091zM930.909 884.364h-837.818v-558.545h837.818v558.545z" />
|
||||
<glyph unicode="" d="M930.909 93.091h-837.818c-51.386 0-93.091 41.705-93.091 93.091v558.545c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-558.545c0-51.386-41.705-93.091-93.091-93.091zM884.364 186.182l-266.799 233.472-105.565-93.836-105.565 93.836-266.799-233.472h744.727zM93.091 232.728l261.818 232.727-261.818 232.727v-465.455zM139.636 744.728l372.364-325.818 372.364 325.818h-744.727zM930.909 698.182l-261.818-232.727 261.818-232.727v465.455z" />
|
||||
<glyph unicode="" d="M874.031 103.424c-199.959-199.959-524.148-199.959-724.108 0-199.913 199.959-199.913 524.148 0 724.108 199.959 199.913 524.148 199.913 724.108 0 199.959-200.006 199.959-524.148 0-724.108zM773.353 138.287l-67.165 67.165c-115.247-86.109-273.129-86.109-388.329 0l-66.048-66.001c152.436-121.809 369.199-123.159 521.542-1.164zM676.538 630.040c-90.857 90.903-238.22 90.903-329.123 0s-90.903-238.266 0-329.123c90.903-90.903 238.266-90.903 329.123 0 90.903 90.857 90.903 238.22 0 329.123zM184.785 204.102l67.212 67.165c-86.156 115.247-86.156 273.129 0 388.329l-66.001 66.048c-121.809-152.436-123.159-369.199-1.21-521.542zM251.811 791.459l66.048-66.048c115.2 86.156 273.129 86.156 388.329 0l67.165 67.212c-152.343 121.996-369.105 120.646-521.542-1.164zM839.168 726.808l-67.165-67.212c86.109-115.2 86.109-273.129 0-388.329l66.001-66.001c121.809 152.436 123.159 369.199 1.164 521.542z" />
|
||||
<glyph unicode="" d="M512-46.545c-282.764 0-512 229.236-512 512s229.236 512 512 512 512-229.236 512-512-229.236-512-512-512zM512 884.364c-231.377 0-418.909-187.532-418.909-418.909s187.532-418.909 418.909-418.909 418.909 187.532 418.909 418.909-187.532 418.909-418.909 418.909zM558.545 378.974c0-25.507 0-53.155 0-53.155h-93.091c0 0 0 67.351 0 93.091s20.852 46.545 46.545 46.545v0c51.386 0 93.091 41.705 93.091 93.091s-41.705 93.091-93.091 93.091-93.091-41.705-93.091-93.091c0-17.036 4.887-32.815 12.893-46.545h-99.375c-3.91 14.941-6.609 30.394-6.609 46.545 0 102.819 83.363 186.182 186.182 186.182s186.182-83.363 186.182-186.182c0-86.621-59.439-158.813-139.636-179.572zM558.545 186.182h-93.091v93.091h93.091v-93.091z" />
|
||||
<glyph unicode="" d="M930.909-46.545h-837.818c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-837.818c0-51.386-41.705-93.091-93.091-93.091zM186.182 884.364h-93.091v-93.091h93.091v93.091zM186.182 744.728h-93.091v-93.091h93.091v93.091zM186.182 605.091h-93.091v-93.091h93.091v93.091zM186.182 418.91h-93.091v-93.091h93.091v93.091zM186.182 279.273h-93.091v-93.091h93.091v93.091zM186.182 139.637h-93.091v-93.091h93.091v93.091zM791.273 884.364h-558.545v-837.818h558.545v837.818zM930.909 884.364h-93.091v-93.091h93.091v93.091zM930.909 744.728h-93.091v-93.091h93.091v93.091zM930.909 605.091h-93.091v-93.091h93.091v93.091zM930.909 418.91h-93.091v-93.091h93.091v93.091zM930.909 279.273h-93.091v-93.091h93.091v93.091zM930.909 139.637h-93.091v-93.091h93.091v93.091zM465.455 605.091c46.545 0 186.182-93.091 186.182-139.636s-139.636-139.636-186.182-139.636-46.359 46.545-46.359 46.545v186.182c0 0-0.186 46.545 46.359 46.545z" />
|
||||
<glyph unicode="" d="M930.909-46.545h-837.818c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-837.818c0-51.386-41.705-93.091-93.091-93.091zM930.909 884.364h-837.818v-837.818h837.818v837.818zM465.455 279.273l139.636 186.182 232.727-325.818h-651.636l186.182 232.727 93.091-93.091zM372.364 558.546c-51.386 0-93.091 41.705-93.091 93.091s41.705 93.091 93.091 93.091 93.091-41.705 93.091-93.091-41.705-93.091-93.091-93.091z" />
|
||||
<glyph unicode="" d="M906.938 70.47c-90.903-90.81-238.22-90.81-329.123 0l-98.723 98.816c-30.068 30.022-49.152 66.374-59.345 104.634 30.627 3.724 60.788 11.729 89.553 24.204 6.097-23.087 17.594-45.009 35.654-63.023l98.723-98.816c54.551-54.458 142.941-54.458 197.492 0 54.505 54.551 54.505 142.988 0 197.539l-98.769 98.723c-42.915 42.915-106.636 51.526-158.487 26.857l92.672-92.672c18.199-18.199 18.199-47.616 0-65.815s-47.616-18.199-65.815 0l-102.028 101.981c-90.345-59.811-213.271-49.99-292.911 29.603l-98.769 98.769c-90.857 90.903-90.857 238.266 0 329.123s238.22 90.903 329.123 0l98.723-98.769c30.068-30.022 49.199-66.42 59.345-104.727-30.627-3.724-60.788-11.729-89.553-24.111-6.097 23.040-17.594 44.916-35.654 63.023l-98.676 98.769c-54.551 54.505-142.941 54.505-197.492 0-54.505-54.551-54.505-142.941 0-197.492l98.723-98.769c42.961-42.915 106.682-51.526 158.534-26.857l-92.672 92.719c-18.199 18.199-18.199 47.663 0 65.862s47.616 18.199 65.815 0l102.028-102.074c90.345 59.857 213.271 50.036 292.911-29.603l98.723-98.723c90.903-90.903 90.903-238.266 0-329.169z" />
|
||||
<glyph unicode="" d="M512-46.545c-282.764 0-512 229.236-512 512s229.236 512 512 512 512-229.236 512-512-229.236-512-512-512zM512 884.364c-231.377 0-418.909-187.532-418.909-418.909s187.532-418.909 418.909-418.909 418.909 187.532 418.909 418.909-187.532 418.909-418.909 418.909zM698.182 418.91h-105.984c-16.151-27.741-45.801-46.545-80.198-46.545-51.386 0-93.091 41.705-93.091 93.091 0 34.351 18.804 64.047 46.545 80.198v199.075c0 25.74 20.806 46.545 46.545 46.545s46.545-20.806 46.545-46.545v-199.075c13.964-8.145 25.647-19.735 33.839-33.652h105.798c25.74 0 46.545-20.806 46.545-46.545s-20.806-46.545-46.545-46.545z" />
|
||||
<glyph unicode="" d="M930.909-46.545h-837.818c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-837.818c0-51.386-41.705-93.091-93.091-93.091zM930.909 884.364h-837.818v-837.818h837.818v837.818zM498.223 620.87c22.668-18.106 37.469-47.104 37.469-81.594 0-35.049-11.357-64.047-32.908-83.782-27.788-26.81-71.494-39.424-120.832-39.424-13.033 0-24.995 0.559-34.025 2.188v-139.078h-69.26v364.079c24.948 4.422 59.578 7.68 106.636 7.68 51.107 0 88.576-10.38 112.919-30.068zM347.927 471.366c8.518-2.188 19.875-2.746 34.025-2.746 52.177 0 83.968 24.623 83.968 67.91 0 41.053-29.51 62.976-77.731 62.976-19.27 0-32.908-1.629-40.262-3.258v-124.881zM660.666 321.909c30.627 0 44.218 12.055 44.218 29.556 0 18.106-11.311 27.415-45.382 38.865-53.9 18.106-76.614 46.545-76.055 77.777 0 47.104 40.262 83.782 104.401 83.782 30.627 0 57.251-7.68 73.169-15.872l-13.638-47.616c-11.916 6.563-34.025 15.313-58.415 15.313-24.948 0-38.586-11.497-38.586-27.974 0-16.943 13.033-25.181 48.221-37.19 49.897-17.548 73.169-42.17 73.728-81.594 0-48.175-39.145-83.782-112.314-83.782-33.466 0-63.535 8.192-83.968 19.13l13.591 48.733c16.012-9.263 46.033-19.13 71.028-19.13z" />
|
||||
<glyph unicode="" d="M930.909-46.545h-837.818c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-837.818c0-51.386-41.705-93.091-93.091-93.091zM930.909 884.364h-837.818v-837.818h837.818v837.818zM493.987 650.101l122.228-371.759h-73.681l-34.025 105.379h-119.482l-32.349-105.379h-70.889l120.553 371.759h87.645zM496.78 434.968l-29.603 91.601c-7.215 22.575-13.359 47.988-18.944 69.492h-1.164c-5.585-21.504-11.124-47.476-17.873-69.492l-28.998-91.601h96.582zM700.742 658.898c23.459 0 37.935-16.012 38.493-36.957 0-20.387-15.034-36.399-39.052-36.399-22.9 0-37.935 16.012-37.935 36.399 0 20.945 15.546 36.957 38.493 36.957zM735.325 278.296h-69.167v268.66h69.167v-268.66z" />
|
||||
<glyph unicode="" d="M787.921 321.583c0 0 96.396-318.092 49.85-364.637s-323.91 156.113-323.91 156.113-281.181-202.659-327.727-156.113 53.667 364.637 53.667 364.637-286.394 240.454-239.849 286.999 344.529 50.548 344.529 50.548 124.742 321.769 169.379 321.769c44.637 0.047 169.379-321.769 169.379-321.769s294.167-4.003 340.713-50.548-236.032-286.999-236.032-286.999zM639.953 562.037c-46.545 46.545-107.613 279.273-128 279.273s-81.455-232.727-128-279.273c0 0-244.364 0-244.364-23.273s186.182-116.364 186.182-186.182-69.818-256-46.545-279.273 164.352 139.636 232.727 139.636 209.455-162.909 232.727-139.636-46.545 209.455-46.545 279.273 186.182 162.909 186.182 186.182-244.364 23.273-244.364 23.273z" />
|
||||
<glyph unicode="" d="M512-46.545c-93.091 0-512 418.909-512 744.727 0 154.205 125.068 279.273 279.273 279.273 97.28 0 182.737-49.804 232.727-125.207 49.99 75.404 135.447 125.207 232.727 125.207 154.205 0 279.273-125.068 279.273-279.273 0-325.818-418.909-744.727-512-744.727zM744.727 884.364v0 0c0 0-8.285 0-21.644-2.188-33.14-3.91-63.441-16.058-88.902-34.956-60.090-39.331-122.182-120.32-122.182-288.675 0 168.355-62.092 249.344-122.182 288.675-25.46 18.897-55.808 31.046-88.902 34.956-13.359 2.188-21.644 2.188-21.644 2.188v0c-102.819 0-186.182-83.363-186.182-186.182 0-232.727 325.818-628.364 418.909-628.364s418.909 395.636 418.909 628.364c0 102.819-83.363 186.182-186.182 186.182z" />
|
||||
<glyph unicode="" d="M837.818 977.455h-651.636c-51.386 0-93.091-41.705-93.091-93.091v-837.818c0-51.386 41.705-93.091 93.091-93.091h651.636c51.386 0 93.091 41.705 93.091 93.091v837.818c0 51.386-41.705 93.091-93.091 93.091zM279.273 46.546h-93.091v837.818h93.091v-837.818zM837.818 46.546h-512v837.818h279.273v-186.182l69.818 69.818 69.818-69.818v186.182h93.091v-837.818z" />
|
||||
<glyph unicode="" d="M709.818 977.455h-523.636c-51.386 0-93.091-41.705-93.091-93.091v-837.818c0-51.386 41.705-93.091 93.091-93.091h651.636c51.386 0 93.091 41.705 93.091 93.091v709.818l-221.091 221.091zM698.182 862.348l116.55-117.62h-116.55v117.62zM837.818 46.546h-651.636v837.818h418.909v-232.727h232.727v-605.091z" />
|
||||
<glyph unicode="" d="M930.909-46.545h-837.818c-51.386 0-93.091 41.705-93.091 93.091v837.818c0 51.386 41.705 93.091 93.091 93.091h837.818c51.386 0 93.091-41.705 93.091-93.091v-837.818c0-51.386-41.705-93.091-93.091-93.091zM930.909 884.364h-837.818v-837.818h837.818v837.818zM837.818 139.637h-93.091c0 325.818-232.727 558.545-558.545 558.545v93.091c372.364 0 651.636-279.273 651.636-651.636zM558.545 139.637h-93.091c0 139.636-139.636 279.273-279.273 279.273v93.091c186.182 0 372.364-186.182 372.364-372.364zM232.727 232.728c25.693 0 46.545-20.806 46.545-46.545s-20.852-46.545-46.545-46.545-46.545 20.806-46.545 46.545 20.852 46.545 46.545 46.545z" />
|
||||
<glyph unicode="" d="M884.364-46.545h-744.727c-51.386 0-93.091 41.705-93.091 93.091v465.455c0 51.386 41.705 93.091 93.091 93.091h93.091v93.091c0 154.205 125.068 279.273 279.273 279.273s279.273-125.068 279.273-279.273v-93.091h93.091c51.386 0 93.091-41.705 93.091-93.091v-465.455c0-51.386-41.705-93.091-93.091-93.091zM698.182 698.182c0 102.819-83.363 186.182-186.182 186.182s-186.182-83.363-186.182-186.182v-93.091h372.364v93.091zM884.364 512h-744.727v-465.455h744.727v465.455zM512 418.91c51.386 0 93.091-41.705 93.091-93.091s-41.705-93.091-93.091-93.091-93.091 41.705-93.091 93.091 41.705 93.091 93.091 93.091zM512 232.728c25.74 0 46.545-20.806 46.545-46.545s-20.806-46.545-46.545-46.545c-25.693 0-46.545 20.806-46.545 46.545s20.852 46.545 46.545 46.545z" />
|
||||
<glyph unicode="" d="M465.455 186.182c0 25.706 20.839 46.545 46.545 46.545s46.545-20.839 46.545-46.545c0-25.706-20.839-46.545-46.545-46.545-25.706 0-46.545 20.839-46.545 46.545zM418.909 325.819c0 51.413 41.678 93.091 93.091 93.091s93.091-41.678 93.091-93.091c0-51.413-41.678-93.091-93.091-93.091-51.413 0-93.091 41.678-93.091 93.091zM884.364 605.091h-93.091v93.091c0 154.205-125.068 279.273-279.273 279.273-138.287 0-252.323-100.771-274.572-232.727h94.999c20.713 80.151 92.905 139.636 179.572 139.636 102.819 0 186.182-83.363 186.182-186.182v-93.091h-558.545c-51.386 0-93.091-41.705-93.091-93.091v-465.455c0-51.386 41.705-93.091 93.091-93.091h744.727c51.386 0 93.091 41.705 93.091 93.091v465.455c0 51.386-41.705 93.091-93.091 93.091zM884.364 46.546h-744.727v465.455h744.727v-465.455z" />
|
||||
<glyph unicode="" d="M977.455 488.728l-325.818 139.636 130.234 93.044c-67.863 71.494-163.514 116.41-269.871 116.41-180.364 0-330.659-128.233-364.963-298.449l-86.9 35.98c49.431 203.916 232.727 355.561 451.863 355.561 137.635 0 260.841-60.137 346.112-155.089l119.343 85.271v-372.364zM242.129 209.502c67.817-71.494 163.514-116.41 269.871-116.41 181.062 0 331.776 129.21 365.289 300.451l86.807-37.143c-49.152-204.335-232.634-356.399-452.096-356.399-137.635 0-260.887 60.137-346.112 155.089l-119.343-85.271v372.364l325.818-139.636-130.234-93.044z" />
|
||||
<glyph unicode="" d="M930.909 418.91h-558.545c-25.74 0-46.545 20.806-46.545 46.545s20.806 46.545 46.545 46.545h558.545c25.74 0 46.545-20.806 46.545-46.545s-20.806-46.545-46.545-46.545zM930.909 744.728h-558.545c-25.74 0-46.545 20.806-46.545 46.545s20.806 46.545 46.545 46.545h558.545c25.74 0 46.545-20.806 46.545-46.545s-20.806-46.545-46.545-46.545zM139.636 46.546c-51.386 0-93.091 41.705-93.091 93.091s41.705 93.091 93.091 93.091 93.091-41.705 93.091-93.091-41.705-93.091-93.091-93.091zM139.636 372.364c-51.386 0-93.091 41.705-93.091 93.091s41.705 93.091 93.091 93.091 93.091-41.705 93.091-93.091-41.705-93.091-93.091-93.091zM139.636 698.182c-51.386 0-93.091 41.705-93.091 93.091s41.705 93.091 93.091 93.091 93.091-41.705 93.091-93.091-41.705-93.091-93.091-93.091zM372.364 186.182h558.545c25.74 0 46.545-20.806 46.545-46.545s-20.806-46.545-46.545-46.545h-558.545c-25.74 0-46.545 20.806-46.545 46.545s20.806 46.545 46.545 46.545z" />
|
||||
<glyph unicode="" d="M1024 698.182l-325.818-232.727v139.636c-446.557 0-503.575-318.511-510.929-399.965 12.055 538.624 510.929 539.601 510.929 539.601v186.182l325.818-232.727zM187.252 205.126c-0.093-6.563-1.071-12.195-1.071-18.944 0 0 0.047 6.982 1.071 18.944zM93.091 744.728v-651.636h744.727v332.474l93.091 66.513v-398.988c0-51.386-41.705-93.091-93.091-93.091h-744.727c-51.386 0-93.091 41.705-93.091 93.091v651.636c0 51.386 41.705 93.091 93.091 93.091h605.091c-0.047 0-182.412-0.605-346.903-93.091h-258.188z" />
|
||||
<glyph unicode="" d="M930.909-46.545c0 0-744.727 0-837.818 0s-93.091 93.091-93.091 93.091v512l232.727 418.909h558.545l232.727-418.909c0 0 0-418.909 0-512s-93.091-93.091-93.091-93.091zM325.818 232.728c0 0 0-46.545 46.545-46.545s279.273 0 279.273 0 46.545 0 46.545 46.545 0 46.545 0 46.545 0 46.545-46.545 46.545c-139.636 0-279.273 0-279.273 0s-46.545 0-46.545-46.545 0-46.545 0-46.545zM744.727 884.364h-465.455l-162.909-325.818h791.273l-162.909 325.818zM721.455 698.182l23.273-46.545h-465.455l23.273 46.545h418.909zM349.091 791.273h325.818l23.273-46.545h-372.364l23.273 46.545zM605.091 232.728h-186.182v46.545h186.182v-46.545z" />
|
||||
<glyph unicode="" d="M279.273 512c0 51.413 41.678 93.091 93.091 93.091s93.091-41.678 93.091-93.091c0-51.413-41.678-93.091-93.091-93.091-51.413 0-93.091 41.678-93.091 93.091zM698.182 465.455l-232.727-232.727-93.091 93.091-186.182-186.182h837.818zM1117.091 791.273h-1024c-51.386 0-93.091-41.705-93.091-93.091v-651.636c0-51.386 41.705-93.091 93.091-93.091h1024c51.386 0 93.091 41.705 93.091 93.091v651.636c0 51.386-41.705 93.091-93.091 93.091zM1117.091 46.546h-1024v651.636h1024v-651.636zM1303.273 977.455h-1024c-51.386 0-93.091-41.705-93.091-93.091h1117.091v-744.727c51.386 0 93.091 41.705 93.091 93.091v651.636c0 51.386-41.705 93.091-93.091 93.091z" horiz-adv-x="1396" />
|
||||
<glyph unicode="" d="M930.909 139.637v744.727h-744.727c0 51.386 41.705 93.091 93.091 93.091h651.636c51.386 0 93.091-41.705 93.091-93.091v-651.636c0-51.386-41.705-93.091-93.091-93.091zM837.818 698.182v-651.636c0-51.386-41.705-93.091-93.091-93.091h-651.636c-51.386 0-93.091 41.705-93.091 93.091v651.636c0 51.386 41.705 93.091 93.091 93.091h651.636c51.386 0 93.091-41.705 93.091-93.091zM93.091 46.546h651.636v651.636h-651.636v-651.636zM325.818 325.819l69.818-93.091 116.364 139.636 139.636-232.727h-465.455l139.636 186.182zM302.545 418.91c-38.586 0-69.818 31.232-69.818 69.818s31.232 69.818 69.818 69.818 69.818-31.232 69.818-69.818-31.232-69.818-69.818-69.818z" />
|
||||
<glyph unicode="" d="M1024 46.546c0-93.091-93.091-93.091-93.091-93.091l-266.333 266.287c-69.027-50.176-153.74-80.105-245.667-80.105-231.377 0-418.909 187.532-418.909 418.909s187.532 418.909 418.909 418.909 418.909-187.532 418.909-418.909c0-91.927-29.975-176.64-80.151-245.713l266.333-266.287zM418.909 884.364c-179.945 0-325.818-145.873-325.818-325.818s145.873-325.818 325.818-325.818 325.818 145.873 325.818 325.818-145.873 325.818-325.818 325.818z" />
|
||||
<glyph unicode="" d="M1024 558.546v-186.182l-114.176-38.028c-6.516-19.735-14.895-38.447-24.111-56.785l54.132-108.311-131.677-131.631-108.404 54.225c-18.246-9.169-36.957-17.548-56.599-24.017l-38.074-114.362h-186.182l-38.121 114.362c-19.642 6.47-38.353 14.801-56.553 24.017l-108.451-54.225-131.677 131.631 54.179 108.311c-9.216 18.339-17.594 37.050-24.111 56.785l-114.176 38.028v186.182l114.176 38.028c6.516 19.735 14.895 38.447 24.111 56.785l-54.132 108.311 131.677 131.631 108.451-54.225c18.246 9.169 36.911 17.548 56.553 24.017l38.074 114.362h186.182l38.074-114.362c19.642-6.47 38.353-14.801 56.599-24.017l108.404 54.225 131.677-131.631-54.132-108.311c9.169-18.339 17.594-37.050 24.111-56.785l114.176-38.028zM833.443 513.071c-8.052 54.132-29.556 103.75-60.695 145.594l51.852 86.528-32.861 32.954-86.575-51.945c-41.891 30.953-91.369 52.271-145.455 60.276l-24.436 97.885h-46.545l-24.483-97.932c-54.039-7.959-103.517-29.277-145.408-60.23l-86.575 51.945-32.908-32.908 51.898-86.528c-31.185-41.891-52.643-91.462-60.695-145.641l-97.466-24.343v-46.545l97.466-24.343c8.006-54.132 29.51-103.75 60.649-145.594l-51.898-86.528 32.908-32.908 86.575 51.945c41.844-30.953 91.369-52.271 145.408-60.276l24.529-97.932h46.545l24.436 97.932c54.086 8.006 103.564 29.324 145.455 60.276l86.528-51.945 32.908 32.908-51.852 86.528c31.139 41.844 52.643 91.462 60.695 145.594l97.466 24.343v46.545l-97.466 24.343zM512 325.819c-77.126 0-139.636 62.511-139.636 139.636s62.511 139.636 139.636 139.636c77.079 0 139.636-62.511 139.636-139.636s-62.557-139.636-139.636-139.636zM512 512c-25.693 0-46.545-20.806-46.545-46.545s20.852-46.545 46.545-46.545c25.74 0 46.545 20.806 46.545 46.545s-20.806 46.545-46.545 46.545z" />
|
||||
<glyph unicode="" d="M930.909 791.273h-46.545v-744.727c0-51.386-41.705-93.091-93.091-93.091h-558.545c-51.386 0-93.091 41.705-93.091 93.091v744.727h-46.545c-25.693 0-46.545 20.806-46.545 46.545s20.852 46.545 46.545 46.545h279.273c0 51.386 41.705 93.091 93.091 93.091h93.091c51.386 0 93.091-41.705 93.091-93.091h279.273c25.74 0 46.545-20.806 46.545-46.545s-20.806-46.545-46.545-46.545zM791.273 791.273h-558.545v-744.727h558.545v744.727zM418.909 698.182c25.693 0 46.545-20.806 46.545-46.545v-465.455c0-25.74-20.852-46.545-46.545-46.545s-46.545 20.806-46.545 46.545v465.455c0 25.74 20.852 46.545 46.545 46.545zM605.091 698.182c25.74 0 46.545-20.806 46.545-46.545v-465.455c0-25.74-20.806-46.545-46.545-46.545s-46.545 20.806-46.545 46.545v465.455c0 25.74 20.806 46.545 46.545 46.545z" />
|
||||
<glyph unicode="" d="M895.348 780.288l-69.167 69.167 81.455 81.455c0 0 69.818 1.443 69.818-68.375l-82.106-82.246zM139.636 744.728v-651.636h651.636v442.182l93.091 93.091v-535.273c0-51.386-41.705-93.091-93.091-93.091h-651.636c-51.386 0-93.091 41.705-93.091 93.091v651.636c0 51.386 41.705 93.091 93.091 93.091h535.273l-93.091-93.091h-442.182zM372.364 325.819v69.818l34.909 34.909 69.772-69.772-34.863-34.956h-69.818zM848.896 733.65l-348.625-349.556-69.725 69.725 349.091 349.091 69.26-69.26z" />
|
||||
<glyph unicode="" d="M512-46.545c-282.764 0-512 229.236-512 512s229.236 512 512 512 512-229.236 512-512-229.236-512-512-512zM512 884.364c-231.377 0-418.909-187.532-418.909-418.909s187.532-418.909 418.909-418.909 418.909 187.532 418.909 418.909-187.532 418.909-418.909 418.909zM465.455 186.182c-46.545 0-46.545 46.545-46.545 46.545l46.545 232.727c0 0 0 46.545-46.545 46.545 0 0-46.545 0-46.545 46.545h139.636c0 0 46.545 0 46.545-46.545s-46.545-186.182-46.545-232.727 46.545-46.545 46.545-46.545h46.545c0 0 0-46.545-139.636-46.545zM558.545 651.637c-25.74 0-46.545 20.806-46.545 46.545s20.806 46.545 46.545 46.545 46.545-20.806 46.545-46.545-20.806-46.545-46.545-46.545z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
|
|
@ -0,0 +1,294 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="entypo" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " d="" horiz-adv-x="512" />
|
||||
<glyph unicode="" d="M574.925 397.875c-81.050-81.101-174.95-158.618-212.070-121.446-53.146 53.094-85.862 99.379-203.008 5.274s-27.187-156.877 24.32-208.384c59.392-59.341 280.781-3.123 499.661 215.706 218.778 218.829 275.098 440.269 215.654 499.661-51.456 51.507-114.176 141.414-208.333 24.32s-47.872-149.862 5.274-203.008c37.018-37.171-40.448-131.021-121.498-212.122z" />
|
||||
<glyph unicode="" d="M710.502 972.8h-397.005c-57.498 0-104.499-47.002-104.499-104.499v-815.002c0-57.446 47.002-104.499 104.499-104.499h397.005c57.498 0 104.499 47.053 104.499 104.499v815.002c0 57.498-47.002 104.499-104.499 104.499zM512-9.421c-40.346 0-73.114 23.398-73.114 52.275s32.768 52.275 73.114 52.275c40.397 0 73.114-23.398 73.114-52.275s-32.717-52.275-73.114-52.275zM731.392 147.354h-438.835v689.613h438.835v-689.613z" />
|
||||
<glyph unicode="" d="M788.582 235.366l-134.451 385.843c-37.018 106.189-151.91 164.864-260.762 135.885l-101.171 196.301c-9.165 17.766-30.618 24.576-47.974 15.206-17.357-9.421-24.013-31.437-14.848-49.203l98.765-191.642c-78.694-52.224-119.603-151.194-93.696-244.378l109.568-394.035c30.822-110.746 157.696-167.168 285.235-128.154 125.901 44.186 197.171 165.734 159.334 274.176zM455.629 515.942c-37.325-12.237-77.363 8.806-89.344 47.155-11.981 38.298 8.602 79.309 45.978 91.546 37.376 12.288 77.414-8.806 89.395-47.104s-8.602-79.309-46.029-91.597z" />
|
||||
<glyph unicode="" d="M435.2 921.6h-46.029c-11.315 0-20.531-9.216-20.531-20.48v-194.56h-181.043c-8.448 0-18.944-1.946-28.979-5.018-10.138-3.123-19.814-7.424-26.726-12.134l-121.6-83.456c-6.861-4.71-10.291-10.906-10.291-17.152s3.43-12.442 10.291-17.152l121.6-83.456c6.912-4.71 16.589-9.011 26.726-12.134 10.035-3.072 20.531-5.018 28.979-5.018h181.043v-450.56c0-11.315 9.216-20.48 20.48-20.48h46.080c11.315 0 20.48 9.216 20.48 20.48v880.64c0 11.264-9.165 20.48-20.48 20.48zM1013.709 708.301l-121.6 83.456c-6.861 4.71-16.538 9.011-26.675 12.134-10.086 3.123-20.582 5.069-29.030 5.069h-350.003l41.011-235.52h308.992c8.448 0 18.944 1.946 29.030 5.018s19.814 7.424 26.675 12.083l121.6 83.456c6.912 4.762 10.291 10.957 10.291 17.203s-3.379 12.442-10.291 17.101z" />
|
||||
<glyph unicode="" d="M81.613 702.157c24.986-13.466 371.149-199.373 384.051-206.285 12.851-6.912 29.542-10.24 46.336-10.24 16.845 0 33.536 3.328 46.387 10.291 12.902 6.912 359.014 192.819 384 206.285 25.037 13.414 48.691 55.552 2.765 55.552h-866.253c-45.926 0-22.323-42.138 2.714-55.603zM952.986 599.757c-28.416-14.848-377.19-197.171-394.598-206.285s-29.542-10.291-46.387-10.291c-16.794 0-28.928 1.178-46.336 10.291s-366.234 191.488-394.598 206.285c-20.019 10.445-19.866-1.792-19.866-11.213 0-9.421 0-375.552 0-375.552 0-21.504 28.621-49.152 50.79-49.152h820.070c22.221 0 50.739 27.648 50.739 49.101 0 0 0 366.131 0 375.552 0 9.472 0.205 21.709-19.814 11.264z" />
|
||||
<glyph unicode="" d="M957.133 837.888c-17.562-6.195-886.835-312.474-903.936-318.515-14.541-5.12-17.818-17.664-0.512-24.525 20.531-8.243 194.355-77.875 194.355-77.875h-0.051l115.251-46.182c0 0 554.854 407.501 562.381 412.979 7.526 5.53 16.282-4.864 10.803-10.803-5.478-5.99-402.995-435.917-402.995-435.917-0.051 0-0.051 0-0.051 0l-23.142-25.805 30.669-16.486c0 0 238.080-128.154 255.027-137.318 14.848-7.987 34.202-1.331 38.502 17.152 5.069 21.811 145.664 627.814 148.787 641.229 4.096 17.562-7.475 28.262-25.088 22.067zM361.216 94.106c0-12.646 7.117-16.128 16.947-7.219 12.8 11.674 145.869 131.072 145.869 131.072l-162.816 84.275v-208.128z" />
|
||||
<glyph unicode="" d="M847.923 796.774c-73.83 73.882-129.28 62.822-129.28 62.822l-554.291-554.291-51.712-243.866 243.866 51.712 554.24 554.24c0 0 11.11 55.45-62.822 129.382zM341.965 142.49l-83.098-17.92c-8.038 15.002-17.715 30.003-35.379 47.718-17.664 17.664-32.717 27.29-47.718 35.328l17.971 83.149 24.013 24.013c0 0 45.261-0.922 96.307-51.968 51.098-51.098 52.019-96.358 52.019-96.358l-24.115-23.962z" />
|
||||
<glyph unicode="" d="M217.805-39.014c15.667 51.251 39.424 123.443 71.219 227.891 138.547 22.374 195.891-17.869 283.904 142.541-71.424-22.323-157.542 41.421-152.883 69.018 4.608 27.648 200.346-19.917 328.448 165.786-161.485-36.301-213.197 43.674-192.358 55.757 48.077 27.904 190.822 11.571 266.906 87.194 39.219 38.912 57.549 133.581 41.626 167.373-19.2 40.755-136.038 101.581-200.448 95.898-64.41-5.734-165.427-250.317-195.379-248.371s-35.942 109.517 16.333 209.562c-55.142-24.883-156.16-102.349-187.853-168.55-59.034-123.187 5.53-405.658-15.155-415.744-20.736-10.035-90.419 129.69-111.206 193.024-28.416-97.075-29.082-194.355 53.965-323.584-31.334-84.787-48.435-182.374-51.046-231.987-1.229-39.731 37.018-48.23 43.93-25.805z" />
|
||||
<glyph unicode="" d="M254.003-51.2c-68.403 0-132.454 28.979-178.739 75.315-89.6 89.6-114.637 246.067 11.008 371.712 73.677 73.574 368.589 368.486 515.789 515.686 52.275 52.275 118.733 72.448 182.426 55.347 62.515-16.691 113.818-67.942 130.56-130.509 17.050-63.693-3.174-130.202-55.398-182.426l-493.158-493.21c-28.16-28.16-59.955-44.851-91.955-48.179-31.642-3.328-61.85 6.861-83.046 28.006-38.4 38.349-43.827 110.541 19.968 174.285l346.368 346.47c14.234 14.182 37.325 14.182 51.558 0 14.234-14.234 14.234-37.325 0-51.558l-346.419-346.419c-29.952-29.952-32.717-58.573-19.968-71.322 5.581-5.53 14.080-8.090 23.859-7.066 15.002 1.587 32.102 11.315 48.077 27.29l493.158 493.158c33.843 33.843 46.797 73.626 36.506 112.077-10.138 37.837-41.165 68.864-79.002 79.002-38.451 10.291-78.234-2.714-112.077-36.506-147.149-147.2-442.061-442.112-515.686-515.686-96.051-96.051-73.062-206.592-11.059-268.646 62.054-62.003 172.595-85.043 268.698 11.059l515.738 515.686c14.182 14.234 37.325 14.234 51.507 0 14.234-14.234 14.234-37.325 0-51.507l-515.738-515.738c-60.774-60.826-128.768-86.323-192.973-86.323z" />
|
||||
<glyph unicode="" d="M990.157 484.198c-20.122 21.35-116.941 116.326-161.229 159.693-13.619 13.261-33.075 21.709-53.402 21.709-20.275 0-263.475 0-263.475 0s-243.2 0-263.526 0-39.834-8.499-53.402-21.76c-44.288-43.366-141.21-138.342-161.28-159.693-25.037-26.624-38.758-47.872-32.205-74.189l28.723-157.389c6.502-26.317 35.328-47.872 64.051-47.872h835.174c28.723 0 57.549 21.555 64.051 47.872l28.774 157.389c6.502 26.317-7.219 47.616-32.256 74.24zM719.258 450.099c-5.222 0-9.882-2.662-12.237-6.81l-41.83-104.243h-306.33l-41.83 104.243c-2.304 4.147-7.066 6.81-12.237 6.81h-181.504l104.499 118.221h568.525l104.448-118.221h-181.504z" />
|
||||
<glyph unicode="" d="M972.8 112.64c0 0-102.4 498.33-551.68 498.33v197.99l-369.92-330.496 369.92-342.579v223.13c243.866 0 424.55-21.606 551.68-246.374z" />
|
||||
<glyph unicode="" d="M369.92 671.744v137.216l-369.92-330.496 369.92-342.579v142.285l-216.32 200.294 216.32 193.28zM625.92 611.021v197.939l-369.92-330.496 369.92-342.579v223.13c168.602 0 270.95-21.606 398.080-246.374 0 0-18.79 498.381-398.080 498.381z" />
|
||||
<glyph unicode="" d="M602.88 359.014v-223.078l369.92 342.528-369.92 330.496v-197.939c-449.28 0-551.68-498.381-551.68-498.381 127.13 224.768 307.814 246.374 551.68 246.374z" />
|
||||
<glyph unicode="" d="M758.784 233.062c-126.208 45.978-166.554 84.787-166.554 167.885 0 49.869 38.554 33.587 55.45 124.928 7.014 37.888 41.062 0.614 47.616 87.091 0 34.458-18.586 43.059-18.586 43.059s9.472 51.046 13.158 90.266c4.506 48.947-28.262 175.309-203.469 175.309-175.155 0-208.026-126.362-203.418-175.309 3.686-39.219 13.158-90.266 13.158-90.266s-18.637-8.55-18.637-43.059c6.502-86.477 40.55-49.203 47.565-87.091 16.947-91.341 55.501-75.059 55.501-124.928 0-83.098-40.346-121.907-166.554-167.885-126.669-46.080-208.896-93.133-208.896-125.235 0-32.051 0-107.776 0-107.776h962.56c0 0 0 75.725 0 107.776s-82.278 79.104-208.896 125.235z" />
|
||||
<glyph unicode="" d="M1024 10.24c0 0-1.997 193.894-13.875 213.965-17.664 29.952-58.675 50.483-134.861 82.33-75.93 31.744-100.25 58.573-100.25 115.866 0 34.458 23.194 23.194 33.382 86.221 4.198 26.163 24.678 0.461 28.621 60.109 0 23.808-11.162 29.747-11.162 29.747s5.632 35.226 7.885 62.31c2.765 33.792-17.050 120.986-122.47 120.986s-125.133-87.245-122.419-120.986c2.202-27.085 7.834-62.31 7.834-62.31s-11.162-5.939-11.162-29.747c3.942-59.699 24.422-33.997 28.672-60.109 10.138-63.027 33.331-51.763 33.331-86.221 0-38.963-11.264-63.846-42.342-85.709 165.888-83.046 188.16-99.994 188.16-174.234v-152.218h230.656zM523.469 277.76c-101.325 42.291-133.632 78.029-133.632 154.47 0 45.875 30.925 30.925 44.493 114.995 5.581 34.867 32.973 0.563 38.144 80.128 0 31.744-14.899 39.629-14.899 39.629s7.578 46.95 10.547 83.098c3.686 44.954-22.733 161.28-163.277 161.28-140.544 0-166.912-116.275-163.226-161.28 2.97-36.147 10.496-83.098 10.496-83.098s-14.848-7.885-14.848-39.629c5.274-79.616 32.563-45.312 38.195-80.128 13.568-84.070 44.493-69.069 44.493-114.995 0-76.442-32.41-112.179-133.632-154.47-30.874-12.902-86.323-32.922-86.323-80.947v-186.573h711.373c0 0 0 110.336 0 139.827 0 43.878-86.374 85.197-187.904 127.693z" />
|
||||
<glyph unicode="" d="M633.702 233.062c-127.539 45.978-168.294 84.787-168.294 167.885 0 49.869 38.963 33.587 56.064 124.928 7.117 37.888 41.523 0.614 48.026 87.091 0 34.458-18.739 43.059-18.739 43.059s9.574 51.046 13.261 90.266c4.608 48.947-28.57 175.309-205.619 175.309s-210.227-126.362-205.619-175.309c3.738-39.27 13.312-90.266 13.312-90.266s-18.79-8.55-18.79-43.059c6.605-86.477 41.011-49.203 48.026-87.091 17.152-91.341 56.115-75.059 56.115-124.928 0-83.098-40.806-121.907-168.346-167.885-15.36-5.478-51.968-14.080-83.098-27.546v-205.517h819.2c0 0 0 75.725 0 107.776s-57.498 79.155-185.498 125.286zM870.4 512v153.6h-102.4v-153.6h-153.6v-102.4h153.6v-153.6h102.4v153.6h153.6v102.4h-153.6z" />
|
||||
<glyph unicode="" d="M921.6 870.4h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h819.2c56.371 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.029 102.4-102.4 102.4zM921.6 153.6h-819.2v614.4h819.2v-614.4zM460.8 353.28h-256v-92.16h256v92.16zM460.8 506.88h-256v-92.16h256v92.16zM460.8 660.48h-256v-92.16h256v92.16zM814.080 332.8c0 0-87.040 22.733-87.040 67.482 0 42.598 56.371 60.518 56.371 147.558 0 70.656-21.504 112.64-92.211 112.64s-92.16-41.933-92.16-112.64c0-87.040 56.32-104.96 56.32-147.558 0-44.749-86.989-67.482-86.989-67.482-5.171 0-5.171-71.68-5.171-71.68h256c0 0 0 71.68-5.12 71.68z" />
|
||||
<glyph unicode="" d="M768 163.84h-665.6v460.8h132.864c0 0 35.277 45.875 111.104 102.4h-295.168c-28.262 0-51.2-22.938-51.2-51.2v-563.2c0-28.314 22.938-51.2 51.2-51.2h768c28.314 0 51.2 22.886 51.2 51.2v191.795l-102.4-84.224v-56.371zM684.134 519.68v-181.76l339.866 266.291-339.866 255.949v-160.256c-412.774-0.051-412.774-408.064-412.774-408.064 116.838 191.898 188.723 227.84 412.774 227.84z" />
|
||||
<glyph unicode="" d="M512 870.4c-141.414 0-256-114.637-256-256 0-244.429 256-563.2 256-563.2s256 318.771 256 563.2c0 141.363-114.586 256-256 256zM512 473.088c-76.339 0-138.24 61.901-138.24 138.24s61.901 138.24 138.24 138.24 138.24-61.901 138.24-138.24-61.901-138.24-138.24-138.24z" />
|
||||
<glyph unicode="" d="M1007.77 715.571l-239.309 149.862c-10.598 6.656-23.859 6.656-34.458 0l-222.003-139.059-222.003 139.008c-10.598 6.656-23.859 6.656-34.458 0l-239.309-149.811c-10.035-6.298-16.23-17.715-16.23-29.952v-599.398c0-12.595 6.451-24.269 16.998-30.464s23.398-6.042 33.741 0.461l222.003 139.059 222.003-139.059c10.598-6.656 23.859-6.656 34.509 0l222.003 139.059 222.003-139.059c5.274-3.328 11.264-5.018 17.254-5.018 5.683 0 11.366 1.536 16.486 4.557 10.496 6.195 16.998 17.869 16.998 30.464v599.398c0 12.237-6.195 23.654-16.23 29.952zM239.258 255.846l-172.288-107.878v517.837l172.288 107.878v-517.837zM478.515 147.968l-172.288 107.878v517.837l172.288-107.878v-517.837zM717.773 255.846l-172.237-107.878v517.837l172.237 107.878v-517.837zM956.979 147.968l-172.237 107.878v517.837l172.237-107.878v-517.837z" />
|
||||
<glyph unicode="" d="M348.16 460.8c0-90.47 73.37-163.84 163.84-163.84s163.84 73.421 163.84 163.84c0 90.47-73.37 163.84-163.84 163.84s-163.84-73.37-163.84-163.84zM231.885 522.24c28.109 128.819 142.848 225.28 280.115 225.28 79.206 0 150.835-32.102 202.701-83.968 24.013-24.013 62.925-24.013 86.938 0 23.962 24.013 23.962 62.925 0 86.886-74.138 74.086-176.538 119.962-289.638 119.962-183.398 0-338.637-120.525-390.81-286.72h-121.19v-122.88h163.84c51.149 0 63.693 41.626 68.045 61.44zM860.16 460.8c-51.098 0-63.693-41.626-68.045-61.44-28.109-128.819-142.797-225.28-280.115-225.28-79.155 0-150.835 32.051-202.701 83.968-24.013 24.013-62.925 24.013-86.886 0s-24.013-62.925 0-86.886c74.086-74.086 176.486-119.962 289.587-119.962 183.398 0 338.637 120.525 390.81 286.72h121.19v122.88h-163.84z" />
|
||||
<glyph unicode="" d="M880.077 760.269c-85.606 78.592-224.41 78.592-310.016 0l-58.061-53.35-58.112 53.35c-85.606 78.592-224.358 78.592-309.965 0-96.307-88.371-96.307-231.629 0-320.051l368.077-337.818 368.077 337.818c96.307 88.422 96.307 231.68 0 320.051z" />
|
||||
<glyph unicode="" d="M880.077 760.32c-85.606 78.541-224.41 78.541-310.016 0l-58.061-53.35-58.112 53.35c-85.606 78.541-224.358 78.541-309.965 0-96.307-88.422-96.307-231.629 0-320.051l368.077-337.869 368.077 337.869c96.307 88.371 96.307 231.629 0 320.051zM825.6 492.8l-313.6-292.557-313.549 292.557c-31.642 28.979-43.878 67.174-43.878 107.52 0 40.243 7.066 73.318 38.707 102.349 27.904 25.651 65.434 39.731 105.574 39.731 40.192 0 77.722-24.371 105.626-50.022l107.52-93.491 107.52 93.491c27.904 25.651 65.382 50.022 105.574 50.022s77.722-14.080 105.677-39.731c31.59-29.030 38.605-62.106 38.707-102.349 0-40.294-12.288-78.541-43.878-107.52z" />
|
||||
<glyph unicode="" d="M512 911.36l122.266-344.166h328.294l-267.878-202.138 95.744-354.816-278.426 212.685-278.426-212.685 95.744 354.816-267.878 202.138h328.294z" />
|
||||
<glyph unicode="" d="M962.56 567.194h-328.346l-122.266 344.166-122.214-344.166h-328.294l267.827-202.138-95.744-354.816 278.426 212.685 278.426-212.685-95.744 354.816 267.93 202.138zM511.949 323.379l-154.214-128.051 63.59 182.374-145.971 117.76 180.275-5.12 56.269 206.848 56.32-206.848 180.275 5.12-145.971-117.76 63.642-182.374-154.214 128.051z" />
|
||||
<glyph unicode="" d="M698.778 595.814c-6.758 18.176 181.248 186.112 71.578 322.15-25.702 31.795-112.691-152.371-236.288-235.725-68.147-45.978-226.867-143.872-226.867-197.99v-350.259c0-65.075 251.597-133.99 442.829-133.99 70.093 0 171.571 439.040 171.571 508.826 0 69.99-216.064 68.762-222.822 86.989zM256 590.95c-33.638 0-153.6-20.48-153.6-159.846v-248.218c0-139.366 119.962-154.675 153.6-154.675s-51.2 29.286-51.2 115.661v326.298c0 90.522 84.838 120.781 51.2 120.781z" />
|
||||
<glyph unicode="" d="M325.274 325.734c6.707-18.176-181.248-186.061-71.578-322.099 25.702-31.846 112.691 152.32 236.288 235.725 68.147 45.978 226.816 143.923 226.816 197.99v350.208c0 65.126-251.546 134.042-442.778 134.042-70.093 0-171.622-439.040-171.622-508.826 0-69.99 216.115-68.762 222.874-87.040zM768 330.65c33.69 0 153.6 20.429 153.6 159.846v248.166c0 139.366-119.91 154.726-153.6 154.726-33.638 0 51.2-29.338 51.2-115.661v-326.298c0-90.522-84.838-120.781-51.2-120.781z" />
|
||||
<glyph unicode="" d="M296.96 348.16v317.44h-194.56c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h51.2v-153.6l153.6 153.6h256c56.32 0 102.4 46.080 102.4 102.4v93.184c-3.277-0.717-6.758-1.075-10.24-1.075h-358.4zM921.6 921.6h-460.8c-56.32 0-102.4-46.080-102.4-102.4v-409.6h358.4l153.6-153.6v153.6h51.2c56.32 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4z" />
|
||||
<glyph unicode="" d="M819.2 819.2h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-358.4c0-56.32 46.080-102.4 102.4-102.4h204.8l204.8-153.6v153.6h204.8c56.32 0 102.4 46.080 102.4 102.4v358.4c0 56.32-46.080 102.4-102.4 102.4z" />
|
||||
<glyph unicode="" d="M251.699 778.086c-82.432 0-149.299-68.762-149.299-153.6s66.867-153.6 149.299-153.6c149.248 0 49.766-296.96-149.299-296.96v-71.629c355.226 0 494.438 675.789 149.299 675.789zM681.728 778.086c-82.432 0-149.299-68.762-149.299-153.6s66.867-153.6 149.299-153.6c149.248 0 49.766-296.96-149.299-296.96v-71.629c355.277 0 494.49 675.789 149.299 675.789z" />
|
||||
<glyph unicode="" d="M961.024 445.44l-410.829 411.187c-20.992 21.811-55.347 21.811-76.339 0l-410.88-411.187c-21.043-21.76-13.21-39.629 17.408-39.629h85.658v-315.802c0-22.784 0.973-41.421 42.189-41.421h199.424v316.826h208.64v-316.826h209.357c31.437 0 32.307 18.586 32.307 41.421v315.802h85.606c30.566 0 38.451 17.818 17.459 39.629z" />
|
||||
<glyph unicode="" d="M819.2 870.4h-410.624c-56.32 0-101.376-45.056-101.376-101.376v-410.624c0-56.32 46.080-102.4 102.4-102.4h409.6c56.32 0 102.4 46.080 102.4 102.4v409.6c0 56.32-46.080 102.4-102.4 102.4zM819.2 358.4h-409.6v409.6h409.6v-409.6zM204.8 460.8h-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h307.2v102.4h-307.2v307.2z" />
|
||||
<glyph unicode="" d="M898.304 180.838l-193.485 193.485c29.184 47.974 45.978 104.192 45.978 164.454 0 174.899-151.603 326.502-326.554 326.502-174.899 0-316.723-141.824-316.723-316.723 0-174.95 151.552-326.554 326.502-326.554 58.163 0 112.64 15.77 159.488 43.162l194.509-194.56c19.098-19.046 49.92-19.046 68.915 0l48.282 48.23c18.995 19.046 12.083 43.008-6.912 62.003zM205.005 548.557c0 121.088 98.15 219.29 219.238 219.29 121.139 0 229.069-107.93 229.069-229.069s-98.15-219.29-219.29-219.29-229.018 107.93-229.018 229.069z" />
|
||||
<glyph unicode="" d="M876.288 825.139c-85.811 85.76-193.485 117.146-227.789 82.842l-138.035-138.086c-20.941-20.941-39.219-91.034-30.822-161.946l-417.843-417.894c-24.781-24.73-4.71-84.992 44.851-134.554 49.562-49.613 109.875-69.632 134.605-44.902l417.843 417.843c70.963-8.397 141.056 9.882 161.946 30.822l138.086 138.086c34.304 34.304 2.918 141.978-82.842 227.789zM416.819 407.552c-19.098 19.046-12.851 56.166 13.773 82.842s63.744 32.87 82.842 13.824c18.995-19.046 12.851-56.166-13.824-82.842-26.675-26.675-63.744-32.87-82.79-13.824zM762.419 711.219c-66.458 66.458-83.149 154.112-77.261 160.051 5.939 5.939 90.163-14.234 156.672-80.691 66.458-66.458 86.374-150.886 80.64-156.621s-93.645 10.803-160.051 77.261z" />
|
||||
<glyph unicode="" d="M76.8 614.298h870.4c29.184 0 24.422 31.13 9.882 36.198-14.541 5.069-176.282 66.202-204.442 66.202h-46.080v153.6h-389.12v-153.6h-46.080c-28.16 0-189.901-61.133-204.442-66.202s-19.354-36.198 9.882-36.198zM957.44 557.978h-890.88c-28.16 0-56.32-33.28-56.32-61.44v-179.2c0-28.16 28.16-61.44 56.32-61.44h101.478l-45.158-256h778.24l-45.158 256h101.478c28.16 0 56.32 33.28 56.32 61.44v179.2c0 28.16-28.16 61.44-56.32 61.44zM225.28 102.298l71.68 332.8h430.080l71.629-332.8h-573.389z" />
|
||||
<glyph unicode="" d="M750.080 536.934c-116.736 251.238-177.408 346.675-368.179 342.682-67.942-1.382-51.61 49.203-103.424 30.003-51.763-19.149-7.322-47.258-60.314-90.726-148.582-121.958-134.912-234.803-65.997-503.808 29.082-113.254-69.99-118.835-30.822-228.659 28.621-80.026 239.565-113.613 462.131-30.976 222.566 82.534 363.008 246.426 334.387 326.554-39.168 109.773-118.579 49.152-167.782 154.931zM559.309 123.085c-198.707-73.728-362.086-30.362-368.998-11.11-11.878 33.229 64.154 144.179 291.379 228.506 227.226 84.326 354.048 53.043 367.309 15.923 7.834-21.914-90.88-159.539-289.69-233.318zM495.462 301.978c-103.936-38.554-176.128-82.637-222.874-122.368 32.922-29.901 94.515-37.171 155.955-14.387 78.182 29.030 126.208 95.642 107.213 148.736-0.205 0.666-0.563 1.229-0.819 1.843-12.8-4.147-25.958-8.755-39.475-13.824z" />
|
||||
<glyph unicode="" d="M402.381 220.467l-41.472-41.165c-35.942-35.584-94.362-35.635-130.253 0-17.254 17.152-26.726 39.834-26.726 64.051s9.523 46.95 26.726 64.102l152.576 151.398c31.59 31.386 91.085 77.517 134.451 34.509 19.917-19.763 52.070-19.61 71.782 0.256 19.763 19.866 19.661 52.019-0.256 71.782-73.677 73.114-182.63 59.597-277.504-34.509l-152.576-151.398c-36.557-36.352-56.73-84.685-56.73-136.141 0-51.405 20.173-99.738 56.781-136.090 37.683-37.427 87.142-56.064 136.602-56.064s99.021 18.637 136.704 56.064l41.472 41.216c19.917 19.763 20.019 51.917 0.256 71.731-19.763 19.866-51.917 19.968-71.834 0.256zM864.819 808.499c-79.155 78.541-189.798 82.79-263.117 10.086l-51.661-51.251c-19.917-19.763-20.070-51.866-0.307-71.782 19.814-19.917 51.917-20.019 71.782-0.256l51.661 51.251c37.939 37.683 87.654 22.067 120.115-10.086 17.254-17.101 26.726-39.885 26.726-64.051 0-24.218-9.523-46.95-26.726-64.051l-162.816-161.485c-74.394-73.83-109.363-39.219-124.262-24.422-19.917 19.763-52.019 19.61-71.731-0.256-19.763-19.917-19.661-52.070 0.256-71.782 34.15-33.894 73.216-50.688 114.074-50.688 50.074 0 102.963 25.19 153.242 75.11l162.765 161.485c36.608 36.301 56.781 84.634 56.781 136.038s-20.173 99.789-56.781 136.141z" />
|
||||
<glyph unicode="" d="M946.483 733.184c-584.090-233.83-347.494 395.52-800.512 64.205l-94.771-33.997 187.699-737.792h103.373l-91.904 361.37c404.173 338.842 240.538-369.203 718.643 325.478 11.11 16.128-3.738 28.262-22.528 20.736z" />
|
||||
<glyph unicode="" d="M859.392 460.8c0 53.658 33.024 96 82.688 125.082-9.011 29.901-20.787 58.624-35.379 85.606-55.808-14.592-100.915 7.27-138.803 45.158-37.99 37.939-49.613 83.098-35.021 138.803-26.982 14.592-55.603 26.522-85.606 35.43-29.082-49.715-81.664-82.739-135.27-82.739-53.606 0-106.138 33.024-135.27 82.739-30.003-8.909-58.624-20.838-85.606-35.379 14.541-55.757 2.97-100.915-34.97-138.854-37.939-37.888-83.098-59.75-138.803-45.21-14.592-26.931-26.47-55.654-35.43-85.555 49.715-29.082 82.739-71.424 82.739-125.082 0-53.606-33.024-106.189-82.739-135.322 8.96-29.952 20.838-58.624 35.43-85.606 55.757 14.592 100.864 2.97 138.803-34.97 37.939-37.939 49.51-83.046 34.97-138.803 26.982-14.592 55.654-26.522 85.606-35.43 29.133 49.766 81.664 82.739 135.27 82.739 53.606 0 106.24-33.024 135.322-82.739 30.003 8.96 58.624 20.838 85.606 35.43-14.592 55.757-3.021 100.864 35.021 138.803 37.888 37.888 82.995 59.75 138.803 45.21 14.592 26.982 26.419 55.654 35.379 85.606-49.715 29.133-82.739 71.475-82.739 125.082zM512 273.766c-103.27 0-186.982 83.763-186.982 187.034s83.712 187.034 186.982 187.034c103.322 0 187.034-83.763 187.034-187.034s-83.712-187.034-187.034-187.034z" />
|
||||
<glyph unicode="" d="M160.461 620.032c47.821 37.12 87.45 11.571 140.339-49.664 5.99-6.861 13.978 1.178 18.483 5.12 4.506 3.994 74.342 66.765 77.722 69.683 3.43 3.021 7.526 8.653 2.099 14.95s-25.293 32-38.042 48.64c-92.57 121.088 253.235 203.213 200.090 204.493-26.982 0.717-135.475 1.946-151.654 0.256-65.69-6.963-148.173-68.352-189.696-96.922-54.272-37.325-74.598-58.982-77.926-62.003-15.36-13.466-2.458-44.39-30.31-68.813-29.44-25.805-47.77-6.298-64.819-21.248-8.499-7.475-32.102-25.139-38.912-31.13-6.758-5.939-7.987-16.026-1.075-24.115 0 0 64.666-71.475 70.144-77.773 5.427-6.298 20.019-11.622 29.082-3.635 9.062 7.936 32.307 28.365 36.25 31.846 3.994 3.43-2.56 44.186 18.227 60.314zM452.762 593.613c-6.144 7.117-13.722 7.27-20.326 1.434l-73.472-64.051c-5.734-5.12-6.502-14.541-1.331-20.48l424.653-483.226c9.882-11.469 27.085-12.646 38.502-2.714l49.715 41.574c11.315 9.933 12.493 27.341 2.611 38.758l-420.352 488.704zM1018.982 799.283c-3.789 25.293-16.896 19.968-23.706 9.216-6.707-10.701-36.915-56.371-49.306-77.005-12.288-20.582-42.496-60.979-99.021-21.094-58.778 41.574-38.298 70.605-28.109 90.112 10.291 19.61 41.882 74.496 46.49 81.408 4.506 6.912-0.819 26.982-18.995 18.586-18.278-8.448-129.178-52.531-144.589-115.712-15.718-64.358 13.21-121.805-43.52-178.893l-68.71-71.68 69.018-80.282 84.685 80.435c20.224 20.275 63.283 39.987 102.298 31.13 83.61-18.944 129.178 12.493 156.723 64.358 24.678 46.438 20.582 144.128 16.742 169.421zM140.288 99.789c-10.65-10.752-10.65-28.16 0-38.861l48.691-47.616c10.65-10.701 27.546-6.195 38.195 4.506l251.238 247.040-77.005 87.706-261.12-252.774z" />
|
||||
<glyph unicode="" d="M628.224 344.576c-145.254-145.203-365.261-169.882-536.064-74.24 19.712-35.123 44.339-68.198 74.24-98.099 175.104-175.104 459.008-175.104 634.112 0 175.104 175.155 175.104 459.059 0 634.163-29.901 29.901-62.925 54.528-98.099 74.24 95.693-170.803 70.963-390.81-74.189-536.064z" />
|
||||
<glyph unicode="" d="M888.422 739.072c-158.925 105.677-337.357 142.182-548.966 81.562-165.171-47.36-316.57-235.213-328.294-396.083-13.875-190.208 134.298-353.075 395.162-352.819 281.293 0.307 386.56 135.373 388.915 176.384 2.304 41.062-109.773 116.941-37.632 194.97 90.368 97.741 170.803 14.438 219.546 26.214 48.742 11.674 73.421 161.843-88.73 269.773zM562.074 261.99c-42.547 0-77.056 34.406-77.056 76.8 0 42.445 34.509 76.8 77.056 76.8s77.005-34.355 77.005-76.8c-0.051-42.394-34.458-76.8-77.005-76.8z" />
|
||||
<glyph unicode="" d="M272.384 762.675c-195.686-113.562-184.422-298.496-177.664-366.899 252.774 299.366 630.835 284.826 630.835 284.826s-535.962-183.757-693.402-552.397c-12.39-29.184 58.368-67.021 74.496-32.614 48.179 102.502 115.354 179.405 115.354 179.405 99.123-36.915 270.49-80.077 392.038 5.376 161.331 113.613 144.845 365.363 375.245 487.936 53.811 28.672-451.584 148.326-716.902-5.632z" />
|
||||
<glyph unicode="" d="M604.109 911.411h-82.125v-669.286c-45.414 17.51-104.192 17.766-162.15-3.328-103.834-37.786-165.734-129.741-138.24-205.312 27.546-75.622 134.042-106.24 237.875-68.454 88.218 32.102 145.92 103.27 144.486 170.24l0.154 547.328c143.206-22.528 152.986-203.622 135.834-254.413-6.554-19.251 4.966-33.638 26.624 0 154.368 240.282-162.458 346.214-162.458 483.226z" />
|
||||
<glyph unicode="" d="M312.832 833.075v-607.59c-33.075 6.912-71.578 4.301-109.773-9.83-85.862-31.898-116.173-109.568-93.389-173.363 22.733-63.846 89.958-89.651 175.821-57.754 72.909 27.085 120.678 87.091 119.45 143.718 0 0 0 322.202 0 501.914l363.571 83.302v-385.536c-33.075 6.912-71.578 4.301-109.773-9.83-85.914-31.898-116.224-109.568-93.44-173.363 22.784-63.846 89.958-89.651 175.872-57.754 72.96 27.085 120.627 87.091 119.501 143.718v720.077l-547.84-117.709z" />
|
||||
<glyph unicode="" d="M956.928 340.685l-88.422 78.848c-25.6 22.835-25.6 60.109 0 82.944l88.422 78.797c25.6 22.835 18.739 44.083-15.206 47.309l-117.197 11.11c-33.946 3.226-52.224 32.41-40.55 64.87l62.208 173.158c11.674 32.461-2.611 44.288-31.693 26.266l-138.291-85.504c-29.082-18.022-66.662-8.192-83.507 21.862l-50.125 89.395c-16.794 30.054-44.646 30.208-61.798 0.358l-46.541-80.998c-17.152-29.85-56.576-42.598-87.603-28.314l-81.92 37.632c-31.078 14.234-54.938-2.253-53.094-36.762l4.454-82.688c1.843-34.458-23.603-69.99-56.525-78.848l-79.104-21.248c-32.922-8.909-38.963-34.816-13.363-57.651l88.422-78.797c25.6-22.784 25.6-60.109 0-82.893l-88.422-78.746c-25.6-22.886-18.842-44.902 15.002-48.998l107.264-13.005c33.843-4.198 52.736-34.406 41.933-67.123l-55.040-166.81c-10.803-32.819 4.608-45.619 34.202-28.416l126.106 72.909c29.645 17.203 69.427 7.68 88.474-20.89l52.378-78.694c18.995-28.723 47.616-27.085 63.437 3.482l46.029 88.678c15.923 30.618 53.914 43.11 84.429 27.802l88.781-44.39c30.618-15.309 54.118 0.41 52.275 34.918l-4.454 82.688c-1.843 34.509 23.603 69.99 56.525 78.899l79.053 21.197c33.024 8.96 39.066 34.867 13.466 57.651zM563.2 246.016h-102.4v107.52h102.4v-107.52zM563.2 409.805h-102.4v266.24h102.4v-266.24z" />
|
||||
<glyph unicode="" d="M169.062 346.214c23.757-96.307 53.965-138.291 154.726-182.374 100.813-44.032 148.685-92.16 188.211-92.16s84.326 42.086 185.139 86.221c100.813 43.981 73.933 57.498 97.69 153.702l-282.829-137.523-342.938 172.134zM998.963 597.197l-426.24 238.694c-33.382 18.688-88.013 18.688-121.395 0l-426.291-238.694c-33.382-18.688-33.382-49.306 0-67.994l426.24-238.694c33.382-18.688 88.013-18.688 121.395 0l275.558 154.317-298.803 69.99c-11.469-2.867-24.115-4.454-37.427-4.454-53.811 0-97.434 25.958-97.434 57.958s43.622 58.010 97.434 58.010c41.779 0 77.363-15.718 91.187-37.683l316.467-103.834 79.309 44.39c33.382 18.688 33.382 49.306 0 67.994zM868.71 144.794c-3.226-19.61 65.69-52.019 72.243 5.581 29.645 259.635-21.299 334.387-21.299 334.387l-71.424-39.987c0 0.051 60.57-57.6 20.48-299.981z" />
|
||||
<glyph unicode="" d="M852.378 709.478l-460.698 237.517c-63.13 33.229-187.546-30.976-223.283-87.501-15.923-25.293-14.797-43.52-14.797-53.862l5.683-536.32c0.358-11.418 14.746-26.726 26.982-34.304 25.549-15.667 412.672-257.28 423.578-264.141 5.888-3.686 12.902-5.376 19.763-5.376 5.837 0 11.725 1.28 17.050 3.942 11.674 5.734 18.944 16.794 18.944 28.928v563.251c0 11.725-6.861 22.528-18.022 28.416l-418.714 233.779c4.71 9.216 23.347 28.672 57.6 46.592 36.096 18.944 63.078 11.776 69.274 9.37 0 0 401.92-215.091 414.208-221.491 12.237-6.4 12.493-7.373 12.493-18.278 0-10.957 0-534.528 0-534.528 0-26.675 27.034-37.581 46.95-37.581 19.814 0 41.011 19.456 41.011 37.581v575.59c0 11.725-6.912 22.579-18.022 28.416z" />
|
||||
<glyph unicode="" d="M819.2 921.6h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h614.4c56.371 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.029 102.4-102.4 102.4zM819.2 102.4h-614.4v716.8h614.4v-716.8zM563.2 358.4h-256v-51.2h256v51.2zM716.8 563.2h-204.8v-51.2h204.8v51.2zM512 614.4h204.8v102.4h-204.8v-102.4zM460.8 716.8h-153.6v-204.8h153.6v204.8zM409.6 460.8h-102.4v-51.2h102.4v51.2zM460.8 409.6h256v51.2h-256v-51.2zM716.8 256h-409.6v-51.2h409.6v51.2zM614.4 307.2h102.4v51.2h-102.4v-51.2z" />
|
||||
<glyph unicode="" d="M927.846 785.050c-15.155 13.107-97.587 75.52-112.998 88.781s-39.475 17.050-56.474 17.050h-492.749c-16.947 0-41.062-3.738-56.422-17.050-15.411-13.312-97.843-75.725-112.998-88.781s-27.802-32.819-23.757-60.979c4.045-28.16 99.174-664.218 99.174-664.218 5.325-16.026 23.552-29.133 40.55-29.133h599.706c16.998 0 35.226 13.158 40.55 29.133 0 0 95.078 636.058 99.174 664.218 3.994 28.16-8.602 47.872-23.757 60.979zM512 339.558c-166.298 0-201.882 235.366-209.254 283.853h94.054c14.182-70.758 46.387-191.693 115.2-191.693s101.069 120.934 115.251 191.693h94.003c-7.373-48.486-42.957-283.853-209.254-283.853zM151.706 716.8l112.947 117.76h494.694l112.947-117.76h-720.589z" />
|
||||
<glyph unicode="" d="M273.92-45.056h102.4l229.786 409.651h264.294c0 0 153.6 0 153.6 71.629 0 71.68-153.6 71.68-153.6 71.68h-264.294l-229.786 409.6h-102.4l127.386-409.6h-183.654l-115.251 102.451h-102.4l81.971-174.080-81.971-174.131h102.4l115.251 102.451h183.654l-127.386-409.651z" />
|
||||
<glyph unicode="" d="M505.702 931.789c-260.096-3.482-468.173-217.139-464.691-477.286 3.482-260.198 217.19-468.173 477.286-464.742 260.147 3.482 468.224 217.19 464.691 477.286-3.482 260.198-217.19 468.224-477.286 464.742zM506.573 870.4c70.144 0.973 136.397-15.872 194.56-46.131l-63.386-105.677c-37.99 18.483-80.64 28.928-125.747 28.928-45.056 0-87.706-10.445-125.696-28.979l-63.334 105.626c54.989 28.672 117.35 45.312 183.603 46.234zM254.259 335.104l-105.574-63.283c-28.672 54.938-45.312 117.299-46.182 183.501-0.973 70.195 15.872 136.448 46.131 194.56l105.626-63.437c-18.534-37.939-28.979-80.538-28.979-125.645 0-45.056 10.445-87.706 28.979-125.696zM517.478 51.251c-70.144-0.973-136.448 15.872-194.56 46.131l63.386 105.677c37.99-18.534 80.64-28.979 125.696-28.979 45.107 0 87.757 10.394 125.696 28.928l63.334-105.574c-54.989-28.621-117.299-45.261-183.552-46.182zM512 235.571c-124.416 0-225.229 100.864-225.229 225.229 0 124.416 100.864 225.28 225.229 225.28 124.467 0 225.28-100.864 225.28-225.28 0-124.416-100.813-225.229-225.28-225.229zM769.741 335.104c18.534 37.99 28.979 80.64 28.979 125.696 0 45.107-10.445 87.706-28.979 125.696l105.574 63.386c28.672-54.989 45.363-117.299 46.234-183.552 0.922-70.195-15.923-136.448-46.182-194.56l-105.626 63.334z" />
|
||||
<glyph unicode="" d="M512 747.52c-335.923 0-512-247.45-512-286.72s176.077-286.72 512-286.72 512 247.45 512 286.72-176.077 286.72-512 286.72zM512 240.23c-125.645 0-227.533 98.765-227.533 220.57s101.888 220.57 227.533 220.57c125.696 0 227.584-98.765 227.584-220.57s-101.888-220.57-227.584-220.57zM512 460.8c-20.787 22.835 33.997 110.234 0 110.234-62.822 0-113.766-49.357-113.766-110.234s50.944-110.285 113.766-110.285c62.874 0 113.818 49.408 113.818 110.285 0 27.955-96.051-19.456-113.818 0z" />
|
||||
<glyph unicode="" d="M512 931.84c-260.147 0-471.040-210.944-471.040-471.040 0-260.147 210.893-471.040 471.040-471.040s471.040 210.893 471.040 471.040c0 260.147-210.893 471.040-471.040 471.040zM512 92.16c-203.622 0-368.64 165.069-368.64 368.64s165.018 368.64 368.64 368.64 368.64-165.069 368.64-368.64-165.018-368.64-368.64-368.64zM547.84 727.040h-71.68v-281.088l174.336-174.336 50.688 50.688-153.344 153.344z" />
|
||||
<glyph unicode="" d="M819.2 601.958h-30.72c-11.315 0-20.48-9.216-20.48-20.48v-141.158c0-68.454-53.914-184.32-256-184.32s-256 115.866-256 184.32v141.158c0 11.264-9.267 20.48-20.48 20.48h-30.72c-11.264 0-20.48-9.216-20.48-20.48v-141.158c0-114.534 84.173-237.056 276.48-253.952v-135.168h-133.171c-11.213 0-20.429-9.216-20.429-20.48v-61.44c0-11.264 9.216-20.48 20.429-20.48h368.64c11.315 0 20.48 9.216 20.48 20.48v61.44c0 11.315-9.216 20.48-20.48 20.48h-133.069v135.168c192.358 16.896 276.48 139.469 276.48 253.952v141.158c0 11.264-9.216 20.48-20.48 20.48zM512 358.4c120.166 0 153.6 49.357 153.6 81.92v161.638h-307.2v-161.638c0-32.563 33.434-81.92 153.6-81.92zM665.6 890.88c0 32.614-33.434 81.92-153.6 81.92s-153.6-49.306-153.6-81.92v-217.242h307.2v217.242z" />
|
||||
<glyph unicode="" d="M870.4 819.2h-46.080v-102.4h-163.84v102.4h-296.96v-102.4h-163.84v102.4h-46.080c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h716.8c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM870.4 102.4h-716.8v409.6h716.8v-409.6zM317.44 921.6h-71.68v-174.080h71.68v174.080zM778.24 921.6h-71.68v-174.080h71.68v174.080z" />
|
||||
<glyph unicode="" d="M348.314 0.051c-9.882 6.502 161.485 366.592 155.546 382.413-5.888 15.821-187.597 73.574-196.506 101.376-8.858 27.802 358.81 445.747 368.435 437.658 9.626-8.038-160.205-370.586-155.546-382.362s190.925-71.987 196.506-101.325c5.581-29.44-358.554-444.211-368.435-437.76z" />
|
||||
<glyph unicode="" d="M778.906 581.683c-14.080 0-27.955-1.229-41.421-3.482-33.587 109.824-137.626 189.85-260.915 189.85-150.426 0-272.333-119.194-272.333-266.24 0-13.107 1.024-26.010 2.918-38.656-7.219 0.819-14.49 1.382-21.965 1.382-102.246 0-185.19-81.101-185.19-181.043 0-99.994 82.944-181.043 185.19-181.043h593.715c135.424 0 245.094 107.315 245.094 239.616s-109.722 239.616-245.094 239.616zM582.246 360.96c-25.344-36.045-133.888-147.917-138.496-152.627-5.325-6.554-20.019-17.562-33.946-8.499-3.994 2.611-8.806 7.834-8.806 18.125 0 9.882 4.506 19.968 5.069 21.094l52.89 117.043c-9.933 3.942-26.982 10.854-40.243 16.64l-3.533 1.536c-13.414 5.632-30.106 12.749-30.106 31.13 0 8.755 4.198 18.995 12.749 31.181 25.344 36.045 133.888 147.866 138.496 152.627 5.325 6.554 19.968 17.562 33.946 8.55 3.994-2.611 8.806-7.834 8.806-18.125 0-9.882-4.506-19.968-5.069-21.094l-52.89-117.043c9.933-3.994 26.982-10.906 40.243-16.64l3.482-1.485c13.414-5.683 30.106-12.8 30.106-31.181 0.051-8.858-4.147-19.046-12.698-31.232z" />
|
||||
<glyph unicode="" d="M522.394 944.077c-1.331 10.957-19.456 10.957-20.787 0-45.21-363.93-276.326-438.938-276.326-691.866 0-156.211 131.226-282.88 286.72-282.88 155.494 0 286.72 126.72 286.72 282.88 0 252.928-231.117 327.936-276.326 691.866zM478.771 541.798c-3.072-11.213-6.298-22.784-9.626-34.662-20.531-72.909-43.827-155.597-43.827-251.187 0-51.814-30.618-70.195-59.238-70.195-32.666 0-59.187 26.675-59.187 59.699 0 112.998 54.426 186.778 102.451 251.904 15.053 20.378 29.235 39.629 40.806 58.88 5.274 8.755 19.507 8.397 25.958-0.307 2.918-4.198 3.942-9.318 2.662-14.131z" />
|
||||
<glyph unicode="" d="M512 931.84c-260.147 0-471.040-210.893-471.040-471.040s210.893-471.040 471.040-471.040 471.040 210.893 471.040 471.040-210.893 471.040-471.040 471.040zM512 307.2c-84.838 0-153.6 68.813-153.6 153.6 0 84.838 68.762 153.6 153.6 153.6 84.787 0 153.6-68.813 153.6-153.6 0-84.787-68.813-153.6-153.6-153.6z" />
|
||||
<glyph unicode="" d="M1011.354 415.693c-31.949 87.45-121.19 139.622-238.694 139.622-4.557 0-9.011-0.154-13.414-0.358l-0.768 105.574c0 0 174.541 30.157 180.429 31.181s6.861 6.093 5.632 11.776c-1.178 5.683-8.55 45.261-9.626 50.022-1.434 6.656-5.274 6.502-10.598 5.581s-166.451-23.654-166.451-23.654-0.563 100.045-0.614 106.445c-0.051 6.4-3.584 8.141-9.933 8.038-6.4-0.102-47.155-0.717-52.531-0.819-5.376-0.051-8.346-2.509-8.243-7.629 0.102-5.12 1.69-118.067 1.69-118.067s-156.774-27.085-161.075-27.802-8.704-2.765-7.68-7.322c0.973-4.557 9.728-55.962 10.65-60.006 0.87-4.045 3.635-6.502 9.574-5.478s149.76 25.856 149.76 25.856l1.792-103.322c-55.142-14.49-92.211-42.189-115.507-66.714-39.322-41.318-61.798-96.614-61.798-151.706 0-81.306 49.664-129.485 119.142-137.984 161.946-19.814 262.093 156.621 295.424 241.357 56.218-77.056 13.158-222.925-107.213-306.125-2.15-1.587-4.966-6.605-1.638-10.598s27.648-33.894 31.693-38.81c4.045-4.813 10.547-2.918 13.107-1.075 128.512 88.422 187.392 231.014 146.893 342.016zM633.139 252.518c-49.408 6.195-48.282 46.797-48.282 74.394 0 39.578 16.742 80.896 44.8 110.387 17.203 18.074 38.4 31.795 62.925 40.909l4.198-218.982c-19.61-6.707-40.806-9.523-63.642-6.707zM757.453 280.781l2.304 210.381c4.301 0.205 8.55 0.512 12.902 0.512 39.578 0 76.544-7.424 96.563-18.534 20.019-11.11-52.378-138.854-111.77-192.358zM299.162 673.382c-1.536 4.813-5.222 7.373-9.984 7.373h-99.84c-4.71 0-8.448-2.56-9.933-7.373-21.043-66.509-178.227-562.79-178.995-565.299-0.87-2.714-0.563-3.891 3.174-3.891h88.73c3.84 0 5.069 1.178 5.786 3.686 0.819 2.611 51.661 169.882 51.661 169.882h178.995c0 0 50.842-167.322 51.61-169.882 0.819-2.509 1.946-3.686 5.837-3.686h88.678c3.789 0 4.096 1.178 3.174 3.891-0.666 2.509-157.798 498.79-178.893 565.299zM165.222 349.901l74.086 268.8 74.035-268.8h-148.122z" />
|
||||
<glyph unicode="" d="M269.978 618.803c10.291 0 20.224-1.536 29.542-4.454 35.328 39.578 74.496 75.622 116.89 107.571-1.741 7.424-2.816 15.206-2.816 23.245 0 11.162 1.843 21.811 5.222 31.744-47.462 34.099-99.174 62.669-154.061 84.787-51.558-31.846-96.461-73.37-132.25-122.010 26.573-47.053 58.214-90.931 94.106-130.918 13.158 6.4 27.853 10.035 43.366 10.035zM169.779 518.605c0 14.029 2.918 27.443 8.141 39.578-32.102 35.328-61.286 73.421-86.835 114.074-32-63.59-50.125-135.424-50.125-211.456 0-88.115 24.269-170.496 66.355-240.998 15.002 84.736 43.571 164.864 82.944 238.285-12.8 16.794-20.48 37.734-20.48 60.518zM513.792 845.414c26.522 0 50.483-10.342 68.403-27.085 52.275 22.477 107.366 39.731 164.659 50.739-69.171 39.834-149.299 62.771-234.854 62.771-58.317 0-114.125-10.701-165.632-30.106 40.909-20.224 79.923-43.725 116.531-70.349 14.95 8.858 32.307 14.029 50.893 14.029zM663.706 373.35c6.246 13.005 15.104 24.474 26.061 33.587-29.594 91.034-76.442 174.285-136.806 245.965-12.032-5.12-25.242-7.936-39.168-7.936-21.709 0-41.779 7.014-58.214 18.739-36.352-27.597-69.939-58.573-100.506-92.365 9.523-15.309 15.104-33.331 15.104-52.736 0-10.496-1.587-20.531-4.557-30.054 87.91-58.726 189.082-99.021 298.086-115.2zM793.702 238.029c1.331-18.944 2.099-38.093 2.099-57.395 0-34.048-2.202-67.482-6.298-100.403 79.923 58.368 140.698 141.158 171.418 237.517-36.352-8.806-73.626-15.104-111.667-18.739-8.96-27.392-29.338-49.613-55.552-60.979zM640.205 306.022c-116.275 19.251-224.102 63.59-317.901 127.181-15.258-9.37-33.075-14.848-52.275-14.848-7.066 0-13.875 0.768-20.531 2.15-44.902-85.197-73.626-180.224-81.92-280.883 44.851-48.077 99.584-86.784 161.075-112.794 76.288 117.299 182.989 214.426 311.552 279.194zM828.211 809.882c-75.469-7.27-147.558-26.214-214.682-54.682 0.41-3.277 0.563-6.656 0.563-10.035 0-15.821-3.738-30.72-10.291-43.981 67.072-78.746 119.142-170.496 152.064-270.899 40.704-0.768 75.571-25.702 90.573-61.184 45.363 4.608 89.498 13.312 132.045 25.805 2.918 21.504 4.557 43.469 4.557 65.894 0 138.445-59.75 262.963-154.829 349.082zM690.637 252.467c-120.064-56.218-220.365-142.797-293.069-248.627 36.608-9.165 74.957-14.080 114.432-14.080 71.117 0 138.394 15.821 198.81 43.981 9.677 47.462 14.848 96.563 14.848 146.893 0 18.125-0.87 36.147-2.202 54.016-12.083 3.84-23.194 9.933-32.819 17.818z" />
|
||||
<glyph unicode="" d="M905.728 730.829c-25.702 152.474-164.864 254.31-310.733 227.379-145.92-26.88-269.005-144.179-243.302-296.653 5.581-32.819 20.89-84.224 39.066-121.088l-264.96-395.418c-9.779-14.592-15.309-40.909-12.39-58.419l17.050-100.915c2.97-17.51 19.098-29.286 35.84-26.214l77.619 14.285c16.794 3.123 38.042 17.869 47.309 32.819l105.728 170.547 70.912 13.107 122.317 198.554c40.243-7.117 97.894-4.71 131.994 1.587 145.971 26.931 209.306 187.955 183.552 340.429zM776.499 652.698c-40.141-59.853-81.050-17.664-138.394 24.32-57.293 41.933-109.312 67.738-69.171 127.59 40.141 59.904 119.091 74.496 176.435 32.512 57.344-41.933 71.27-124.57 31.13-184.422z" />
|
||||
<glyph unicode="" d="M788.89 460.8c0 141.619 65.382 221.184 116.582 221.184 18.637 0 67.277 0 67.277 0-34.15 54.221-62.413 86.016-187.187 86.016h-512.41c-191.181 0-273.152-176.179-273.152-307.2s81.971-307.2 273.152-307.2h512.41c124.826 0 153.037 31.795 187.238 86.067 0 0-16.077 0-67.277 0s-116.634 79.565-116.634 221.133zM649.626 368.947c-8.346-12.902-34.56-0.819-34.56-0.819l-151.398 68.403c0 0-13.517-34.253-23.962-58.368s-18.483-51.456-61.901-20.89c-43.469 30.566-183.296 166.4-183.296 166.4s-17.715 14.49-8.858 28.16c8.346 12.902 34.56 0.819 34.56 0.819l151.398-68.403c0 0 13.517 34.202 23.962 58.368 10.445 24.064 18.483 51.456 61.901 20.89 43.469-30.566 183.347-166.451 183.347-166.451s17.613-14.438 8.806-28.109zM966.4 566.938h-38.298c-28.672 0-56.627-38.656-56.627-101.376s28.006-101.325 56.627-101.325h38.298c28.621 0 57.6 38.605 57.6 101.325s-28.979 101.376-57.6 101.376z" />
|
||||
<glyph unicode="" d="M580.147 901.12v0c-251.29 0-409.498-86.579-398.899-156.16 3.072-19.866 11.52-73.984 22.221-142.080-123.136-47.821-163.942-125.286-158.464-188.518 6.451-74.803 73.779-154.88 221.594-168.755 84.378-7.834 185.907 38.4 251.75 117.504-6.298 10.65-9.882 22.938-9.882 36.198 0 39.578 32.051 71.68 71.629 71.68s71.68-32.102 71.68-71.68c0-39.014-31.232-70.707-70.042-71.578-78.336-101.018-197.581-161.946-310.528-154.829 2.611-16.64 3.635-22.938 4.915-31.386 4.659-29.594 120.166-120.832 303.974-120.986h0.051c183.808 0.154 299.366 91.392 303.974 120.986 4.557 29.44 84.070 532.787 94.822 603.443 10.65 69.53-147.61 156.16-398.797 156.16zM116.429 420.608c-2.816 32.87 23.296 76.646 98.458 109.517 10.803-68.659 22.579-143.206 32.922-208.64-82.125 16.128-127.898 58.931-131.379 99.123zM580.096 638.771c-183.808 0.102-314.214 68.352-314.214 93.798-0.102 25.344 130.406 93.696 314.214 93.594 183.808 0.102 314.368-68.25 314.266-93.594 0-25.446-130.406-93.696-314.266-93.798z" />
|
||||
<glyph unicode="" d="M622.797 58.419c-1.434-15.872 11.11-29.901 27.955-31.283l204.032-16.742c16.794-1.382 31.795 10.394 33.229 26.266l15.974 168.243-265.267 21.862-15.923-168.346zM120.013 204.851l15.923-168.243c1.485-15.872 16.486-27.648 33.28-26.266l204.032 16.742c16.794 1.382 29.389 15.462 27.904 31.283l-15.974 168.294-265.165-21.811zM93.747 482.15l16.435-173.568 265.267 21.811-16.486 173.414c-0.358 4.147-0.563 8.499-0.563 12.749 0 79.667 68.915 144.435 153.6 144.435s153.6-64.819 153.6-144.435c0-4.25-0.205-8.55-0.614-12.749l-16.384-173.414 265.216-21.811 16.435 173.568c1.024 11.469 1.587 22.989 1.587 34.406 0 217.702-188.365 394.803-419.84 394.803s-419.84-177.101-419.84-394.803c0-11.418 0.563-22.938 1.587-34.406z" />
|
||||
<glyph unicode="" d="M956.621 389.222l-161.178 383.59c-12.698 25.6-46.49 46.541-75.11 46.541h-416.614c-28.621 0-62.413-20.941-75.162-46.541l-161.126-383.59c-12.8-25.6-19.405-69.632-14.694-97.894l34.816-188.723c4.71-28.211 31.898-51.302 60.467-51.302h728.064c28.621 0 55.808 23.091 60.518 51.302l34.816 188.723c4.557 28.211-1.997 72.294-14.797 97.894zM886.784 254.771l-13.21-76.902c-3.994-29.542-30.618-53.709-59.085-53.709h-604.979c-28.518 0-55.091 24.166-59.085 53.709l-13.261 76.902c-3.942 29.542 16.128 53.709 44.698 53.709h660.275c28.57-0.051 48.64-24.166 44.646-53.709z" />
|
||||
<glyph unicode="" d="M512 880.64c-219.085 0-355.226-72.192-347.853-130.765l73.83-607.59c2.918-23.654 113.715-101.171 274.022-101.325 160.358 0.154 271.104 77.722 274.074 101.325l73.779 607.59c7.373 58.573-128.717 130.765-347.853 130.765zM512 660.941c-160.307 0.154-274.074 57.242-274.074 78.592-0.051 21.197 113.766 78.438 274.074 78.336 160.307 0.051 274.125-57.139 274.074-78.336 0-21.35-113.715-78.438-274.074-78.592z" />
|
||||
<glyph unicode="" d="M627.866 329.318c0 0 361.421 260.762 321.331 559.258-0.922 6.554-3.072 10.854-5.734 13.773-2.816 2.714-7.014 4.966-13.466 5.888-291.686 40.909-546.509-328.909-546.509-328.909-221.082 26.522-205.005-17.613-305.869-259.84-19.302-46.182 11.981-62.106 46.285-49.101 34.304 12.902 110.029 41.523 110.029 41.523l132.557-135.629c0 0-27.955-77.466-40.602-112.538-12.646-35.174 2.867-67.174 48.026-47.462 236.749 103.27 279.859 86.835 253.952 313.037zM679.475 632.218c-30.618 31.334-30.618 82.125 0 113.459 30.618 31.283 80.23 31.283 110.848 0 30.669-31.283 30.669-82.125 0-113.459-30.566-31.386-80.23-31.386-110.848 0z" />
|
||||
<glyph unicode="" d="M141.466 278.426c-77.517-76.186-12.032-154.419-115.046-270.387-46.49-52.326 191.386-36.352 309.248 79.514 49.971 49.101 35.891 120.73-17.715 173.466-53.606 52.685-126.515 66.509-176.486 17.408zM1000.499 939.11c-39.782 39.066-480.205-313.856-611.328-442.726-65.075-63.949-86.784-98.253-106.752-123.904-8.653-11.162 2.816-14.592 7.936-17.254 25.754-13.107 43.776-25.293 67.123-48.23 23.347-22.886 35.789-40.602 49.101-65.946 2.662-5.069 6.195-16.333 17.51-7.782 26.112 19.61 60.979 40.96 126.003 104.909 131.123 128.87 490.086 561.818 450.406 600.934z" />
|
||||
<glyph unicode="" d="M921.6 768h-51.2v-768h51.2c56.32 0 102.4 46.080 102.4 102.4v563.2c0 56.32-46.080 102.4-102.4 102.4zM0 665.6v-563.2c0-56.32 46.080-102.4 102.4-102.4h51.2v768h-51.2c-56.32 0-102.4-46.080-102.4-102.4zM686.080 875.162c-34.867 16.23-90.522 46.438-174.080 46.438s-139.213-30.208-174.080-46.438v-107.162h-112.64v-768h573.44v768h-112.64v107.162zM624.64 768h-225.28v68.352c27.29 11.776 66.458 23.808 112.64 23.808s85.299-11.981 112.64-23.757v-68.403z" />
|
||||
<glyph unicode="" d="M512 354.355c122.368 0 224.819 41.574 231.014 95.898-18.176 51.046-38.042 106.701-57.549 161.434-13.517-39.014-88.32-66.56-173.466-66.56s-159.898 27.494-173.517 66.509c-19.507-54.733-39.27-110.336-57.498-161.434 6.195-54.272 108.595-95.846 231.014-95.846zM512 697.651c57.498 0 110.95 17.818 126.618 45.466-21.555 60.57-40.090 112.486-51.814 145.254-7.731 21.862-43.008 33.229-74.803 33.229s-67.072-11.366-74.803-33.178c-11.725-32.768-30.208-84.736-51.814-145.254 15.667-27.699 69.12-45.517 126.618-45.517zM961.536 303.821l-192.256 77.466 22.17-61.798c-1.126-65.434-128.256-117.658-279.45-117.658s-278.323 52.224-279.398 117.658l22.118 61.798-192.256-77.466c-53.914-21.76-56.166-61.952-5.069-89.344l361.574-193.894c51.149-27.392 134.861-27.392 186.010 0l361.574 193.894c51.2 27.392 48.896 67.584-5.018 89.344z" />
|
||||
<glyph unicode="" d="M512 952.371c-271.053 0-491.52-220.57-491.52-491.571 0-271.053 220.467-491.571 491.52-491.571s491.52 220.518 491.52 491.571c0 271.002-220.467 491.571-491.52 491.571zM931.226 460.8c0-95.898-32.563-184.371-86.835-255.027-15.36 12.032-31.642 44.442-16.282 78.029 15.462 33.792 19.507 112.026 15.974 142.438-3.379 30.413-19.2 103.731-62.208 104.448-42.854 0.666-72.294 14.797-97.792 65.69-52.89 105.83 99.277 126.208 46.387 184.832-14.797 16.435-91.29-67.789-102.502 44.442-0.768 8.038 6.912 20.070 17.152 32.512 166.093-55.808 286.106-212.787 286.106-397.363zM454.4 875.827c-9.984-19.456-36.454-27.443-52.582-42.138-34.97-31.642-50.022-27.29-68.915-57.702-18.944-30.413-80.179-74.189-80.179-96.205 0-21.965 30.925-47.974 46.387-42.906 15.462 5.12 56.218 4.813 80.179-3.584 24.013-8.499 200.448-16.947 144.179-166.093-17.818-47.411-95.846-39.424-116.634-117.965-3.123-11.52-13.875-60.723-14.643-76.8-1.229-24.883 17.613-118.682-6.4-118.682-24.115 0-88.934 83.917-88.934 99.123s-16.845 68.557-16.845 114.176-77.67 44.902-77.67 105.574c0 54.784 42.138 82.022 32.666 108.186-9.318 26.112-83.302 27.034-114.125 30.208 53.862 139.878 180.685 243.712 333.517 264.806zM380.16 62.976c25.19 13.261 27.75 30.464 50.586 31.386 26.112 1.126 47.36 10.189 76.749 16.64 26.163 5.683 72.858 32.205 114.074 35.584 34.662 2.867 103.168-1.792 121.6-35.277-66.355-44.032-145.818-69.734-231.168-69.734-46.080 0-90.368 7.578-131.84 21.402z" />
|
||||
<glyph unicode="" d="M952.32 768h-880.64c-39.424 0-71.68-32.256-71.68-71.68v-471.091c0-39.373 32.256-71.629 71.68-71.629h880.64c39.475 0 71.68 32.256 71.68 71.629v471.091c0 39.424-32.256 71.68-71.68 71.68zM563.2 665.6h102.4v-102.4h-102.4v102.4zM716.8 512v-102.4h-102.4v102.4h102.4zM409.6 665.6h102.4v-102.4h-102.4v102.4zM563.2 512v-102.4h-102.4v102.4h102.4zM256 665.6h102.4v-102.4h-102.4v102.4zM409.6 512v-102.4h-102.4v102.4h102.4zM102.4 665.6h102.4v-102.4h-102.4v102.4zM256 512v-102.4h-102.4v102.4h102.4zM204.8 256h-102.4v102.4h102.4v-102.4zM768 256h-512v102.4h512v-102.4zM921.6 256h-102.4v102.4h102.4v-102.4zM768 409.6v102.4h102.4v-102.4h-102.4zM921.6 563.2h-204.8v102.4h204.8v-102.4z" />
|
||||
<glyph unicode="" d="M921.6 870.4h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.371 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.029 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM235.52 774.656c21.248 0 38.4-16.691 38.4-37.325 0-20.685-17.152-37.376-38.4-37.376s-38.4 16.691-38.4 37.325c0 20.685 17.203 37.376 38.4 37.376zM94.72 737.28c0 20.634 17.152 37.325 38.4 37.325s38.4-16.64 38.4-37.325c0-20.685-17.152-37.376-38.4-37.376s-38.4 16.742-38.4 37.376zM922.624 153.6h-821.248v471.040h821.248v-471.040zM922.624 706.56h-615.424v61.44h615.424v-61.44z" />
|
||||
<glyph unicode="" d="M921.6 921.6h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-101.376 102.4-101.376h203.776v100.352h-204.8v472.064h821.248v-472.064h-204.8v-100.403h203.776c56.371 0 102.4 45.107 102.4 101.376v614.451c0 56.32-46.029 102.4-102.4 102.4zM133.171 751.104c-21.248 0-38.4 16.742-38.4 37.376s17.152 37.376 38.4 37.376c21.197 0 38.4-16.742 38.4-37.376s-17.203-37.376-38.4-37.376zM235.571 751.104c-21.248 0-38.4 16.742-38.4 37.376s17.152 37.376 38.4 37.376c21.197 0 38.4-16.742 38.4-37.376s-17.203-37.376-38.4-37.376zM922.675 756.736h-616.499v63.488h616.448v-63.488zM509.338 554.291l-248.422-246.886h153.6v-307.405h189.645v307.405h153.6l-248.422 246.886z" />
|
||||
<glyph unicode="" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.371 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.029 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2zM870.4 562.176h-204.8v-202.701h204.8v202.701zM614.4 562.176h-204.8v-202.701h204.8v202.701zM358.4 562.176h-204.8v-202.701h204.8v202.701z" />
|
||||
<glyph unicode="" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.371 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.029 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2zM614.4 562.176h-204.8v-202.701h204.8v202.701zM358.4 562.176h-204.8v-202.701h204.8v202.701z" />
|
||||
<glyph unicode="" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.371 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.029 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2zM358.4 562.176h-204.8v-202.701h204.8v202.701z" />
|
||||
<glyph unicode="" d="M921.6 716.8h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-307.2c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v307.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 307.2h-819.2v307.2h819.2v-307.2z" />
|
||||
<glyph unicode="" d="M921.6 911.36h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-563.2c0-56.32 45.158-111.462 100.403-122.522l223.846-44.749c0 0-192.666-68.25-68.25-68.25h512c124.416 0-68.25 68.25-68.25 68.25l223.846 44.749c55.194 11.059 100.403 66.202 100.403 122.522v563.2c0 56.32-46.080 102.4-102.4 102.4zM921.6 250.88h-819.2v568.32h819.2v-568.32z" />
|
||||
<glyph unicode="" d="M814.182 686.080c-106.445 0-223.078-59.29-302.182-149.248-79.104 89.958-195.789 149.248-302.234 149.248-101.427 0-209.766-59.187-209.766-225.28s108.339-225.229 209.766-225.28v0c106.496 0 223.13 59.29 302.234 149.248 79.104-89.958 195.738-149.248 302.182-149.248 101.478 0 209.818 59.187 209.818 225.28s-108.339 225.28-209.818 225.28zM209.766 325.632c-77.414 0-116.685 45.466-116.685 135.168s39.27 135.219 116.685 135.219c85.606 0 185.037-55.603 246.067-135.219-61.030-79.616-160.41-135.168-246.067-135.168zM814.182 325.632c-85.606 0-185.037 55.552-246.067 135.168 60.979 79.616 160.461 135.219 246.067 135.219 77.466 0 116.685-45.517 116.685-135.219s-39.219-135.168-116.685-135.168z" />
|
||||
<glyph unicode="" d="M367.872-8.704c40.397-26.112 87.194-43.776 144.128-42.394 56.934-1.382 103.68 16.282 144.077 42.394v105.984h-288.205v-105.984zM650.035 158.771c0 223.027 237.107 294.4 219.341 516.557-11.162 140.186-106.138 297.472-357.376 297.472s-346.214-157.286-357.376-297.472c-17.766-222.208 219.29-293.53 219.29-516.557h276.122zM263.066 667.238c10.65 133.069 101.171 200.55 248.934 200.55s238.285-67.482 248.883-200.55c5.786-72.858-36.096-121.446-92.672-201.011-41.626-58.675-90.88-127.949-113.92-218.163h-84.634c-23.040 90.214-72.243 159.437-113.971 218.163-56.525 79.616-98.406 128.154-92.621 201.011z" />
|
||||
<glyph unicode="" d="M921.6 819.2h-819.2c-56.32 0-102.4-46.080-102.4-102.4v-512c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v512c0 56.32-46.080 102.4-102.4 102.4zM921.6 204.8h-819.2v307.2h819.2v-307.2zM921.6 665.6h-819.2v51.2h819.2v-51.2zM204.8 404.48v-30.72h30.72v30.72h-30.72zM389.12 343.040v-30.72h61.44v30.72h30.72v30.72h30.72v30.72h-61.44v-30.72h-30.72v-30.72h-30.72zM512 312.32v30.72h-30.72v-30.72h30.72zM358.4 312.32v30.72h-61.44v-30.72h61.44zM389.12 373.76h30.72v30.72h-61.44v-61.44h30.72v30.72zM266.24 343.040h30.72v30.72h30.72v30.72h-61.44v-30.72h-30.72v-30.72h-30.72v-30.72h61.44v30.72z" />
|
||||
<glyph unicode="" d="M856.422 315.392c-43.213-69.837-180.992-120.883-344.422-120.883-163.328 0-301.21 51.046-344.371 120.883-9.165 14.797-14.029 6.861-14.029-0.461 0-7.373 0-102.502 0-102.502 0-99.277 160.461-202.189 358.4-202.189s358.4 102.912 358.4 202.189c0 0 0 95.13 0 102.502 0 7.322-4.915 15.258-13.978 0.461zM856.934 577.28c-42.445-61.747-180.838-107.008-344.934-107.008s-302.49 45.261-344.934 107.008c-8.806 12.749-13.466 5.837-13.466 0.051 0-5.786 0-120.627 0-120.627 0-90.266 160.461-163.379 358.4-163.379s358.4 73.114 358.4 163.379c0 0 0 114.842 0 120.627 0 5.786-4.71 12.698-13.466-0.051zM512 911.36c-197.939 0-358.4-60.314-358.4-134.758v-64.461c0-78.95 160.461-142.95 358.4-142.95s358.4 64 358.4 142.95v64.41c0 74.496-160.461 134.81-358.4 134.81z" />
|
||||
<glyph unicode="" d="M788.48 675.789c-130.099 0-235.571-105.472-235.571-235.52 0-49.408 15.258-95.232 41.267-133.12h-164.352c25.958 37.888 41.216 83.763 41.216 133.171 0 130.048-105.472 235.52-235.52 235.52s-235.52-105.472-235.52-235.52 105.472-235.52 235.52-235.52h552.96c130.048 0 235.52 105.472 235.52 235.52s-105.472 235.469-235.52 235.469zM102.4 440.32c0 73.523 59.597 133.12 133.12 133.12s133.12-59.597 133.12-133.12c0-73.574-59.597-133.12-133.12-133.12s-133.12 59.546-133.12 133.12zM788.48 307.2c-73.574 0-133.171 59.546-133.171 133.12 0 73.523 59.597 133.12 133.171 133.12 73.523 0 133.12-59.597 133.12-133.12 0-73.574-59.597-133.12-133.12-133.12z" />
|
||||
<glyph unicode="" d="M798.72 870.4l-61.44-153.6h-450.56l-61.44 153.6c-39.424 0-71.68-32.256-71.68-71.68v-778.24c0-39.424 32.256-71.68 71.68-71.68h573.44c39.475 0 71.68 32.256 71.68 71.68v778.24c0 39.424-32.256 71.68-71.68 71.68zM696.32 768l46.080 102.4h-111.616l-36.864 102.4h-163.84l-36.864-102.4h-111.616l46.080-102.4h368.64z" />
|
||||
<glyph unicode="" d="M204.8 102.4c0-56.525 45.875-102.4 102.4-102.4 56.576 0 102.4 45.875 102.4 102.4s-45.824 102.4-102.4 102.4c-56.525 0-102.4-45.875-102.4-102.4zM716.8 102.4c0-56.525 45.875-102.4 102.4-102.4 56.576 0 102.4 45.875 102.4 102.4s-45.824 102.4-102.4 102.4c-56.525 0-102.4-45.875-102.4-102.4zM386.406 344.474l566.733 161.894c10.803 3.123 19.661 14.848 19.661 26.112v281.6h-721.92v87.040c0 11.264-9.165 20.48-20.48 20.48h-158.72c-11.264 0-20.48-9.216-20.48-20.48v-81.92h99.482l100.762-463.718 9.728-48.282v-76.8c0-11.264 9.216-20.48 20.429-20.48h670.771c11.213 0 20.429 9.216 20.429 20.48v76.8h-575.898c-58.829 0-60.058 23.040-10.496 37.274z" />
|
||||
<glyph unicode="" d="M942.080 870.4h-860.16c-16.947 0-30.72-13.773-30.72-30.72v-122.88h921.6v122.88c0 16.947-13.773 30.72-30.72 30.72zM102.4 122.88c0-39.424 32.256-71.68 71.68-71.68h675.84c39.475 0 71.68 32.256 71.68 71.68v542.72h-819.2v-542.72zM358.4 563.2h307.2v-102.4h-307.2v102.4z" />
|
||||
<glyph unicode="" d="M251.187 381.85l181.862-181.862 333.67 333.67-181.914 181.862-333.619-333.67zM978.176 631.603l-77.414 77.363c-14.797-7.987-31.59-12.595-49.613-12.595-57.19 0-103.578 46.387-103.578 103.629 0 17.971 4.506 34.867 12.595 49.613l-77.414 77.363c-20.224 20.173-53.094 20.173-73.318 0l-563.61-563.661c-20.173-20.173-20.173-53.146 0-73.318l77.414-77.414c14.746 8.038 31.642 12.595 49.562 12.595 57.242 0 103.629-46.336 103.629-103.578 0-17.971-4.557-34.867-12.646-49.613l77.363-77.414c20.173-20.173 53.146-20.173 73.318 0l563.712 563.712c20.122 20.173 20.122 53.146 0 73.318zM433.050 116.787l-265.011 265.062 416.87 416.819 265.011-265.011-416.87-416.87z" />
|
||||
<glyph unicode="" d="M102.502 829.491v-121.242c362.803 0 656.896-294.144 656.896-656.947h121.293c0 429.773-348.416 778.189-778.189 778.189zM102.502 586.957v-121.293c228.864 0 414.413-185.498 414.413-414.362h121.19c0 295.782-239.77 535.654-535.603 535.654zM218.726 283.75c-64.154 0-116.224-52.070-116.224-116.275s52.070-116.224 116.224-116.224c64.205 0 116.275 52.019 116.275 116.224s-52.070 116.275-116.275 116.275z" />
|
||||
<glyph unicode="" d="M512 256c-56.013 0-101.325-45.875-101.325-102.4s45.312-102.4 101.325-102.4c55.962 0 101.325 45.875 101.325 102.4s-45.363 102.4-101.325 102.4zM296.96 370.79l71.68-72.397c79.155 79.974 207.514 79.974 286.72 0l71.68 72.397c-118.784 120.013-311.347 120.013-430.080 0zM153.6 515.635l71.629-72.397c158.362 159.949 415.078 159.949 573.44 0l71.731 72.397c-197.939 199.936-518.861 199.936-716.8 0zM10.24 660.429l71.68-72.397c237.568 239.923 622.643 239.923 860.16 0l71.68 72.397c-277.094 279.962-726.426 279.962-1003.52 0z" />
|
||||
<glyph unicode="" d="M645.171 467.61v453.99c0 28.262-22.938 51.2-51.2 51.2h-174.131c-28.314 0-40.96-22.938-40.96-51.2v-453.99c-85.453-47.053-143.36-137.933-143.36-242.33 0-152.678 123.802-276.48 276.48-276.48s276.48 123.802 276.48 276.48c0 104.397-57.907 195.277-143.309 242.33zM512 51.2c-96.154 0-174.080 77.926-174.080 174.080 0 79.565 53.453 146.432 126.362 167.27v375.45h102.4v-377.498c69.325-22.938 119.45-88.218 119.45-165.222-0.051-96.154-77.978-174.080-174.131-174.080z" />
|
||||
<glyph unicode="" d="M202.496 968.038c-0.768 6.349-11.264 6.349-11.981 0-26.163-210.688-159.795-254.106-159.795-400.538 0-90.47 75.878-163.789 165.786-163.789s165.786 73.318 165.786 163.789c0 146.432-133.632 189.85-159.795 400.538zM833.485 968.038c-0.819 6.349-11.213 6.349-11.981 0-26.163-210.688-159.795-254.106-159.795-400.538 0-90.47 75.878-163.789 165.786-163.789s165.786 73.318 165.786 163.789c0 146.432-133.632 189.85-159.795 400.538zM506.010 513.126c-26.163-210.688-159.795-254.054-159.795-400.486 0-90.522 75.878-163.84 165.786-163.84s165.786 73.37 165.786 163.84c0 146.381-133.632 189.798-159.795 400.486-0.768 6.4-11.213 6.4-11.981 0z" />
|
||||
<glyph unicode="" d="M921.6 768h-460.8v-256h512v204.8c0 28.262-22.886 51.2-51.2 51.2zM51.2 204.8c0-28.314 12.698-51.2 40.96-51.2h266.24v256h-307.2v-204.8zM460.8 153.6h460.8c28.314 0 51.2 22.886 51.2 51.2v204.8h-512v-256zM51.2 716.8v-204.8h307.2v256h-266.24c-28.262 0-40.96-22.938-40.96-51.2z" />
|
||||
<glyph unicode="" d="M35.328 392.602l69.786-17.306 52.531 82.534-99.84 24.73c-24.986 6.246-50.227-8.909-56.422-33.792-6.195-24.781 9.011-49.971 33.946-56.166zM946.227 379.29l-228.506-205.722-268.698 207.923c-5.12 3.994-11.008 6.81-17.306 8.397l-35.789 8.806-52.531-82.483 56.269-13.875 291.738-225.69c8.448-6.605 18.483-9.779 28.57-9.779 11.213 0 22.426 3.994 31.232 11.981l257.382 231.68c19.098 17.203 20.531 46.49 3.328 65.485-17.152 18.995-46.592 20.48-65.69 3.277zM444.621 605.133l250.214-160.205c21.094-13.466 49.152-7.885 63.437 12.646l257.434 370.79c14.592 21.094 9.318 49.92-11.827 64.512s-50.125 9.267-64.768-11.776l-231.834-333.926-251.75 161.178c-10.394 6.656-23.040 8.909-35.174 6.246s-22.63-9.984-29.235-20.429l-383.846-602.573c-13.824-21.606-7.373-50.176 14.336-63.898 7.731-4.915 16.384-7.219 24.934-7.219 15.411 0 30.464 7.578 39.322 21.504l358.758 563.149z" />
|
||||
<glyph unicode="" d="M459.059 860.262c-197.325-23.45-353.69-179.866-377.139-377.139h377.139v377.139zM566.938 859.494v-432.896c0-28.365-22.989-51.354-51.405-51.354h-432.896c27.699-211.712 208.538-375.194 427.725-375.194 238.387 0 431.718 193.229 431.718 431.718 0 219.187-163.482 400.026-375.142 427.725z" />
|
||||
<glyph unicode="" d="M870.4 921.6h-112.64c-28.262 0-40.96-22.938-40.96-51.2v-870.4h204.8v870.4c0 28.262-22.886 51.2-51.2 51.2zM563.2 614.4h-112.64c-28.262 0-40.96-22.938-40.96-51.2v-563.2h204.8v563.2c0 28.262-22.886 51.2-51.2 51.2zM256 307.2h-112.64c-28.262 0-40.96-22.886-40.96-51.2v-256h204.8v256c0 28.314-22.938 51.2-51.2 51.2z" />
|
||||
<glyph unicode="" d="M997.786 850.586l-237.005-386.099c-8.806-14.285-26.010-16.64-38.298-5.171l-114.586 107.315c-12.288 11.469-29.901 9.421-39.219-4.608l-160.922-242.688c-9.267-13.978-27.034-16.179-39.475-4.915l-74.906 68.403c-12.442 11.315-31.181 9.83-41.677-3.226l-235.981-294.298c-10.547-13.158-5.376-23.859 11.366-23.859h986.675v784.64c0.051 16.845-7.168 18.893-15.974 4.506z" />
|
||||
<glyph unicode="" d="M809.011 563.098h-92.211v71.68c0 148.326-68.301 235.52-204.8 235.52-136.448 0-204.8-87.194-204.8-235.52v-71.68h-102.4c-28.262 0-51.2-33.126-51.2-61.44v-399.36c0-28.16 21.965-58.317 48.742-66.918l61.235-19.814c26.778-8.653 71.731-15.718 99.942-15.718h296.96c28.16 0 73.165 7.066 99.942 15.718l61.235 19.814c26.829 8.602 48.742 38.758 48.742 66.918v399.36c0 28.314-33.126 61.44-61.389 61.44zM409.6 655.258c0 73.984 40.858 112.64 102.4 112.64 61.594 0 102.4-38.656 102.4-112.64v-92.16h-204.8v92.16z" />
|
||||
<glyph unicode="" d="M734.669 299.418l-141.21 161.382 141.21 161.382c24.013 24.013 24.013 62.925 0 86.886-24.013 23.962-62.925 23.962-86.886 0l-135.782-155.187-135.731 155.136c-24.013 24.013-62.925 24.013-86.886 0-23.962-24.013-23.962-62.925 0-86.886l141.158-161.331-141.21-161.382c-23.962-24.013-23.962-62.822 0-86.784 24.013-24.013 62.925-24.013 86.886 0l135.782 155.085 135.731-155.085c24.013-24.013 62.925-24.013 86.886 0s24.013 62.771 0.051 86.784z" />
|
||||
<glyph unicode="" d="M819.2 870.4h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM768 409.6h-512v102.4h512v-102.4z" />
|
||||
<glyph unicode="" d="M819.2 870.4h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM768 409.6h-204.8v-204.8h-102.4v204.8h-204.8v102.4h204.8v204.8h102.4v-204.8h204.8v-102.4z" />
|
||||
<glyph unicode="" d="M819.2 870.4h-614.4c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v614.4c0 56.32-46.080 102.4-102.4 102.4zM668.723 215.603l-156.723 156.672-156.723-156.723-88.474 88.525 156.672 156.723-156.672 156.672 88.474 88.525 156.723-156.672 156.672 156.672 88.525-88.474-156.672-156.723 156.723-156.723-88.525-88.474z" />
|
||||
<glyph unicode="" d="M512 890.88c-237.568 0-430.080-192.614-430.080-430.080 0-237.568 192.563-430.080 430.080-430.080 237.517 0 430.080 192.563 430.080 430.080 0 237.517-192.563 430.080-430.080 430.080zM770.56 513.126v-104.704h-517.12v104.704h517.12z" />
|
||||
<glyph unicode="" d="M512 890.88c-237.568 0-430.080-192.614-430.080-430.080 0-237.568 192.563-430.080 430.080-430.080 237.517 0 430.080 192.563 430.080 430.080 0 237.517-192.563 430.080-430.080 430.080zM564.326 408.474v-206.182h-104.653v206.182h-206.234v104.653h206.182v206.234h104.704v-206.182h206.182v-104.704h-206.182z" />
|
||||
<glyph unicode="" d="M512 890.88c-237.568 0-430.080-192.614-430.080-430.080 0-237.568 192.563-430.080 430.080-430.080 237.517 0 430.080 192.563 430.080 430.080 0 237.517-192.563 430.080-430.080 430.080zM600.525 460.8l156.723-156.723-88.525-88.525-156.723 156.723-156.723-156.723-88.474 88.525 156.672 156.723-156.672 156.672 88.474 88.525 156.723-156.672 156.723 156.672 88.525-88.474-156.723-156.723z" />
|
||||
<glyph unicode="" d="M778.189 512h-532.429c-28.314 0-30.72-22.938-30.72-51.2s2.406-51.2 30.72-51.2h532.429c28.314 0 30.771 22.938 30.771 51.2s-2.458 51.2-30.771 51.2z" />
|
||||
<glyph unicode="" d="M778.189 512h-215.040v215.040c0 28.262-22.886 30.72-51.2 30.72-28.262 0-51.2-2.406-51.2-30.72v-215.040h-214.989c-28.314 0-30.72-22.938-30.72-51.2s2.406-51.2 30.72-51.2h214.989v-215.040c0-28.262 22.938-30.72 51.2-30.72 28.314 0 51.2 2.458 51.2 30.72v215.040h215.040c28.314 0 30.771 22.938 30.771 51.2s-2.458 51.2-30.771 51.2z" />
|
||||
<glyph unicode="" d="M921.6 819.2h-489.165c-22.528 0-54.835-12.134-71.782-26.982l-347.955-304.435c-16.947-14.848-16.947-39.117 0-53.965l347.955-304.486c16.947-14.797 49.254-26.931 71.782-26.931h489.165c56.371 0 102.4 46.080 102.4 102.4v512c0 56.32-46.029 102.4-102.4 102.4zM777.779 256l-130.918 130.918-130.816-130.918-73.933 73.882 130.867 130.918-130.867 130.867 73.933 73.933 130.867-130.867 130.867 130.867 73.882-73.933-130.816-130.867 130.867-130.867-73.933-73.933z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.514 0 491.52 220.058 491.52 491.52s-220.006 491.52-491.52 491.52zM776.499 725.197l-0.102 0.102c0-0.051 0.102-0.102 0.102-0.102zM138.035 460.8c0 206.541 167.424 373.965 373.965 373.965 89.805 0 172.237-31.642 236.749-84.378l-526.285-526.234c-52.787 64.461-84.429 146.842-84.429 236.646zM247.501 196.403l0.102-0.102c-0.051 0.051-0.051 0.051-0.102 0.102zM512 86.784c-89.805 0-172.186 31.693-236.646 84.429l526.131 526.234c52.787-64.461 84.48-146.842 84.48-236.646 0.051-206.541-167.475-374.016-373.965-374.016z" />
|
||||
<glyph unicode="" d="M636.518 972.8c68.608 0 102.912-46.797 102.912-100.25 0-66.765-59.597-128.563-137.114-128.563-65.024 0-102.912 38.4-101.12 101.837 0 53.504 45.056 126.976 135.322 126.976zM425.421-51.2c-54.17 0-93.85 33.382-55.962 180.378l62.157 260.659c10.803 41.728 12.595 58.47 0 58.47-16.282 0-86.528-28.826-128.102-57.242l-27.034 45.107c131.738 111.923 283.238 177.51 348.211 177.51 54.118 0 63.078-65.126 36.096-165.325l-71.219-274.022c-12.595-48.435-7.219-65.126 5.376-65.126 16.282 0 69.478 20.122 121.805 61.85l30.72-41.728c-128.051-130.355-267.93-180.531-322.048-180.531z" />
|
||||
<glyph unicode="" d="M505.702 931.789c-260.096-3.482-468.173-217.19-464.691-477.338 3.482-259.994 217.19-468.122 477.286-464.64 260.096 3.482 468.173 217.19 464.691 477.338-3.43 260.045-217.19 468.122-477.286 464.64zM557.926 774.81c47.872 0 62.003-27.75 62.003-59.546 0-39.68-31.795-76.39-86.016-76.39-45.363 0-66.918 22.835-65.638 60.518 0 31.795 26.624 75.418 89.651 75.418zM435.149 166.4c-32.717 0-56.678 19.866-33.792 107.213l37.53 154.829c6.502 24.832 7.578 34.765 0 34.765-9.779 0-52.275-17.152-77.414-34.048l-16.333 26.778c79.616 66.458 171.162 105.472 210.381 105.472 32.717 0 38.144-38.707 21.811-98.253l-43.008-162.816c-7.578-28.774-4.301-38.707 3.277-38.707 9.779 0 41.984 11.878 73.626 36.762l18.483-24.832c-77.363-77.363-161.792-107.162-194.56-107.162z" />
|
||||
<glyph unicode="" d="M721.408 858.419c-58.419 42.138-131.686 63.181-219.955 63.181-67.174 0-123.802-14.848-169.83-44.442-73.062-46.387-111.872-125.133-116.582-236.237h169.267c0 32.358 9.421 63.539 28.314 93.542s50.944 45.005 96.154 45.005c45.926 0 77.619-12.186 94.925-36.506 17.357-24.422 26.010-51.405 26.010-80.998 0-25.754-12.902-49.306-28.467-70.758-8.55-12.493-19.866-23.962-33.843-34.509 0 0-91.802-58.88-132.147-106.189-23.398-27.443-25.498-68.506-27.546-127.437-0.154-4.198 1.434-12.851 16.128-12.851s118.63 0 131.686 0 15.77 9.677 15.974 13.926c0.922 21.453 3.328 32.41 7.27 44.8 7.424 23.398 27.494 43.827 50.125 61.389l46.592 32.154c42.035 32.768 75.622 59.648 90.419 80.742 25.293 34.714 43.059 77.414 43.059 128.051 0 82.688-29.235 145.050-87.552 187.136zM498.739 208.691c-58.368 1.741-106.496-38.605-108.339-101.888-1.843-63.232 43.93-105.011 102.298-106.752 60.928-1.792 107.776 37.274 109.619 100.506 1.792 63.283-42.65 106.342-103.578 108.134z" />
|
||||
<glyph unicode="" d="M505.754 931.789c-260.147-3.482-468.224-217.19-464.742-477.338 3.482-259.994 217.19-468.122 477.338-464.64 260.045 3.482 468.173 217.19 464.64 477.338-3.43 260.045-217.139 468.122-477.235 464.64zM504.371 174.080h-2.611c-40.038 1.178-68.301 30.72-67.174 70.195 1.126 38.758 30.054 66.97 68.813 66.97l2.355-0.051c41.165-1.229 69.12-30.464 67.891-71.066-1.126-38.861-29.645-66.048-69.274-66.048zM672.87 508.518c-9.472-13.363-30.157-30.003-56.269-50.33l-28.774-19.866c-15.77-12.288-25.293-23.808-28.826-35.123-2.867-9.011-4.198-11.315-4.454-29.491l-0.051-4.659h-109.722l0.307 9.318c1.331 38.195 2.304 60.621 18.125 79.206 24.832 29.133 79.616 64.41 81.92 65.894 7.834 5.939 14.438 12.646 19.405 19.814 11.52 15.872 16.589 28.416 16.589 40.653 0 17.050-5.069 32.819-15.053 46.848-9.626 13.568-27.904 20.429-54.323 20.429-26.214 0-44.134-8.346-54.886-25.395-11.11-17.562-16.64-35.942-16.64-54.784v-4.71h-113.152l0.205 4.915c2.918 69.325 27.648 119.194 73.523 148.326 28.774 18.586 64.614 27.955 106.394 27.955 54.733 0 101.018-13.312 137.37-39.526 36.864-26.573 55.552-66.406 55.552-118.323 0-29.082-9.165-56.371-27.238-81.152z" />
|
||||
<glyph unicode="" d="M999.014 52.122l-456.090 800.307c-6.298 11.059-18.125 17.869-30.925 17.869s-24.576-6.81-30.925-17.869l-456.038-800.307c-6.195-10.854-6.093-24.115 0.256-34.867s18.022-17.357 30.618-17.357h912.128c12.493 0 24.218 6.605 30.618 17.357 6.349 10.752 6.451 24.013 0.358 34.867zM568.32 102.298h-112.64v102.4h112.64v-102.4zM568.32 281.498h-112.64v307.2h112.64v-307.2z" />
|
||||
<glyph unicode="" d="M282.419 244.531c-115.814 124.57-113.766 319.744 6.502 440.883 49.254 49.562 110.797 79.155 174.797 88.883l-3.533 106.342c-89.805-10.906-176.742-50.995-245.606-120.32-161.229-162.406-163.123-424.448-6.298-590.438l-89.139-89.754 282.112-15.411-0.768 298.701-118.067-118.886zM622.694 856.832l0.768-298.701 118.118 118.938c115.814-124.57 113.818-319.744-6.502-440.883-49.254-49.613-110.797-79.155-174.848-88.883l3.533-106.291c89.856 10.906 176.794 50.995 245.658 120.371 161.178 162.355 163.174 424.448 6.246 590.387l89.139 89.754-282.112 15.309z" />
|
||||
<glyph unicode="" d="M449.178 880.64c227.635 0 412.723-182.374 418.253-409.344h125.85l-188.365-209.971-188.365 209.971h146.227c-5.478 169.011-143.718 304.384-313.6 304.384-173.363 0-313.856-140.954-313.856-314.88s140.493-314.88 313.856-314.88c69.53 0 133.734 22.733 185.754 61.082l71.936-77.005c-71.014-55.757-160.461-89.037-257.69-89.037-231.117 0-418.458 187.955-418.458 419.84 0 231.885 187.341 419.84 418.458 419.84z" />
|
||||
<glyph unicode="" d="M574.771 880.64c-227.584 0-412.672-182.374-418.253-409.344h-125.798l188.365-209.92 188.314 209.92h-146.227c5.53 169.011 143.77 304.384 313.6 304.384 173.414 0 313.907-140.954 313.907-314.88s-140.493-314.88-313.907-314.88c-69.478 0-133.683 22.733-185.702 61.082l-71.987-77.005c71.014-55.757 160.461-89.037 257.69-89.037 231.168 0 418.56 187.955 418.56 419.84-0.051 231.885-187.443 419.84-418.56 419.84z" />
|
||||
<glyph unicode="" d="M772.762 630.067h36.198v-103.066l215.040 184.32-215.040 184.32v-122.214h-36.198c-189.082 0-295.731-140.134-389.837-263.782-84.634-111.206-157.696-207.258-275.763-207.258h-107.162v-143.411h107.162c189.133 0 295.731 140.186 389.888 263.834 84.582 111.258 157.645 207.258 275.712 207.258zM277.043 539.75c8.038 10.445 16.179 21.094 24.422 31.898 20.019 26.317 41.165 54.067 64.051 81.715-67.635 63.181-149.248 109.824-258.355 109.824h-107.162v-143.36h107.162c67.942 0 120.986-31.898 169.882-80.077zM808.96 292.198h-36.198c-72.038 0-127.283 35.789-178.688 88.986-5.171-6.707-10.291-13.517-15.514-20.378-22.579-29.594-46.899-61.491-73.677-92.979 69.478-67.789 153.651-118.989 267.878-118.989h36.198v-122.88l215.040 184.32-215.040 184.422v-102.502z" />
|
||||
<glyph unicode="" d="M574.822 880.64c-227.635 0-412.723-182.374-418.253-409.344h-125.85l188.365-209.971 188.314 209.971h-146.227c5.53 169.011 143.77 304.384 313.651 304.384 173.363 0 313.856-140.954 313.856-314.88s-140.493-314.88-313.856-314.88c-69.53 0-133.734 22.733-185.754 61.082l-71.987-77.005c71.066-55.757 160.512-89.037 257.741-89.037 231.117 0 418.509 187.955 418.509 419.84-0.051 231.885-187.443 419.84-418.509 419.84zM537.6 686.080v-240.128l153.856-153.856 50.688 50.688-132.864 132.864v210.432h-71.68z" />
|
||||
<glyph unicode="" d="M246.579 460.8h522.24v-245.76h143.36v286.72c0 56.576-45.875 102.4-102.4 102.4h-563.2v102.4l-204.8-174.080 204.8-163.84v92.16z" />
|
||||
<glyph unicode="" d="M716.8 706.56h-512v102.4l-204.8-174.080 204.8-163.84v92.16h512v143.36zM1024 276.48l-204.8 174.080v-102.4h-512v-143.36h512v-92.16l204.8 163.84z" />
|
||||
<glyph unicode="" d="M256 307.2h-51.2c-28.262 0-51.2-22.886-51.2-51.2s22.938-51.2 51.2-51.2h51.2c28.262 0 51.2 22.886 51.2 51.2s-22.938 51.2-51.2 51.2zM256 512h-51.2c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2h51.2c28.262 0 51.2 22.938 51.2 51.2s-22.938 51.2-51.2 51.2zM256 716.8h-51.2c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2h51.2c28.262 0 51.2 22.938 51.2 51.2s-22.938 51.2-51.2 51.2zM460.8 614.4h358.4c28.314 0 51.2 22.938 51.2 51.2s-22.886 51.2-51.2 51.2h-358.4c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2zM819.2 512h-358.4c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2h358.4c28.314 0 51.2 22.938 51.2 51.2s-22.886 51.2-51.2 51.2zM819.2 307.2h-358.4c-28.262 0-51.2-22.886-51.2-51.2s22.938-51.2 51.2-51.2h358.4c28.314 0 51.2 22.886 51.2 51.2s-22.886 51.2-51.2 51.2z" />
|
||||
<glyph unicode="" d="M358.4 512h-307.2c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2h307.2c28.262 0 51.2 22.938 51.2 51.2s-22.938 51.2-51.2 51.2zM358.4 307.2h-307.2c-28.262 0-51.2-22.886-51.2-51.2s22.938-51.2 51.2-51.2h307.2c28.262 0 51.2 22.886 51.2 51.2s-22.938 51.2-51.2 51.2zM993.28 512h-174.080v174.080c0 28.262-22.886 30.72-51.2 30.72s-51.2-2.458-51.2-30.72v-174.080h-168.96c-28.314 0-30.72-22.938-30.72-51.2s2.458-51.2 30.771-51.2h168.909v-174.080c0-28.262 22.886-30.72 51.2-30.72s51.2 2.458 51.2 30.72v174.080h174.080c28.262 0 30.72 22.938 30.72 51.2s-2.458 51.2-30.72 51.2zM358.4 716.8h-307.2c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2h307.2c28.262 0 51.2 22.938 51.2 51.2s-22.938 51.2-51.2 51.2z" />
|
||||
<glyph unicode="" d="M378.88 768h-92.16c-56.32 0-81.92-25.6-81.92-81.92v-92.16c0-56.32 25.6-81.92 81.92-81.92h92.16c56.32 0 81.92 25.6 81.92 81.92v92.16c0 56.32-25.6 81.92-81.92 81.92zM737.28 768h-92.16c-56.32 0-81.92-25.6-81.92-81.92v-92.16c0-56.32 25.6-81.92 81.92-81.92h92.16c56.32 0 81.92 25.6 81.92 81.92v92.16c0 56.32-25.6 81.92-81.92 81.92zM378.88 409.6h-92.16c-56.32 0-81.92-25.6-81.92-81.92v-92.16c0-56.32 25.6-81.92 81.92-81.92h92.16c56.32 0 81.92 25.6 81.92 81.92v92.16c0 56.32-25.6 81.92-81.92 81.92zM737.28 409.6h-92.16c-56.32 0-81.92-25.6-81.92-81.92v-92.16c0-56.32 25.6-81.92 81.92-81.92h92.16c56.32 0 81.92 25.6 81.92 81.92v92.16c0 56.32-25.6 81.92-81.92 81.92z" />
|
||||
<glyph unicode="" d="M819.2 512h-614.4c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2h614.4c28.314 0 51.2 22.938 51.2 51.2s-22.886 51.2-51.2 51.2zM204.8 614.4h614.4c28.314 0 51.2 22.938 51.2 51.2s-22.886 51.2-51.2 51.2h-614.4c-28.262 0-51.2-22.938-51.2-51.2s22.938-51.2 51.2-51.2zM819.2 307.2h-614.4c-28.262 0-51.2-22.886-51.2-51.2s22.938-51.2 51.2-51.2h614.4c28.314 0 51.2 22.886 51.2 51.2s-22.886 51.2-51.2 51.2z" />
|
||||
<glyph unicode="" d="M369.818 416.256h286.72v92.16h-286.72v-92.16zM768 921.6h-512c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h512c56.32 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4zM768 102.4h-512v716.8h512v-716.8zM655.36 708.147h-286.72v-89.6h286.72v89.6zM655.36 306.176h-286.72v-89.6h286.72v89.6z" />
|
||||
<glyph unicode="" d="M768 921.6h-512c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h512c56.32 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4zM297.574 708.147h428.8v-89.6h-428.8v89.6zM726.374 216.576h-428.8v89.6h428.8v-89.6zM727.603 416.256h-428.8v92.16h428.8v-92.16z" />
|
||||
<glyph unicode="" d="M768 921.6h-512c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h512c56.32 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4zM768 102.4h-512v716.8h512v-716.8z" />
|
||||
<glyph unicode="" d="M993.178 593.203l-381.184 102.093-66.714 248.934c-5.581 20.787-27.853 32.922-49.766 27.034l-464.64-124.467c-21.914-5.837-35.123-27.494-29.594-48.282l165.325-617.062c5.581-20.787 27.853-32.922 49.715-27.034l184.986 49.562-25.242-94.106c-5.581-20.838 7.629-42.445 29.542-48.333l415.232-111.258c21.914-5.837 44.186 6.246 49.766 27.034l152.115 567.603c5.581 20.787-7.629 42.445-29.542 48.282zM83.661 786.842l400.845 107.315 148.429-553.882-400.896-107.315-148.378 553.882zM802.765 27.392l-348.928 95.437 27.443 102.554 199.731 53.504c21.914 5.888 35.174 27.494 29.594 48.333l-77.21 288.102 304.435-83.507-135.066-504.422z" />
|
||||
<glyph unicode="" d="M0 716.8v-512c0-56.32 46.080-102.4 102.4-102.4h819.2c56.32 0 102.4 46.080 102.4 102.4v512c0 56.32-46.080 102.4-102.4 102.4h-819.2c-56.32 0-102.4-46.080-102.4-102.4zM921.6 716.8v-512h-819.2v512h819.2z" />
|
||||
<glyph unicode="" d="M876.8 605.542l-104.755 288.563c-7.731 21.299-30.464 32.563-50.637 25.19l-696.166-254.106c-20.224-7.322-30.413-30.566-22.682-51.866l110.438-304.23v163.072c0 73.574 58.778 133.376 131.123 133.376h183.962l219.392 154.010 126.976-154.010h102.349zM984.986 513.178h-740.864c-21.504 0-39.014-18.381-39.014-41.062v-482.355c0-22.63 17.459-41.062 39.014-41.062h740.864c21.555 0 39.014 18.381 39.014 41.062v482.406c0 22.63-17.459 41.011-39.014 41.011zM928.461 51.354h-614.144v88.013l94.464 219.904 141.773-175.974 132.966 136.294 170.957 61.696 73.984-164.966v-164.966z" />
|
||||
<glyph unicode="" d="M1013.76 716.8v61.44c0 22.63-18.381 40.96-40.96 40.96h-921.6c-22.63 0-40.96-18.33-40.96-40.96v-61.44h102.4v-102.4h-102.4v-102.4h102.4v-102.4h-102.4v-102.4h102.4v-102.4h-102.4v-61.44c0-22.63 18.33-40.96 40.96-40.96h921.6c22.579 0 40.96 18.33 40.96 40.96v61.44h-102.4v102.4h102.4v102.4h-102.4v102.4h102.4v102.4h-102.4v102.4h102.4zM399.36 307.2v307.2l256-153.6-256-153.6z" />
|
||||
<glyph unicode="" d="M768 921.6h-512c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h512c56.371 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.029 102.4-102.4 102.4zM655.155 434.125c-12.134-18.944-18.586-10.854-14.95 0 9.626 28.57 9.267 115.046-71.27 127.693v-266.906c0-49.766-28.672-80.998-89.6-100.557-59.187-18.944-125.44 0.768-140.954 43.315-15.462 42.496 19.354 94.208 77.773 115.507 32.614 11.827 65.69 11.725 91.187 1.843v376.525h61.594c0-64.666 173.107-162.253 86.221-297.421z" />
|
||||
<glyph unicode="" d="M976.384 614.4h-928.768c-47.104 0-49.51-22.938-46.899-50.995l42.24-461.21c2.56-28.058 9.216-50.995 56.269-50.995h825.6c48.026 0 53.709 22.938 56.269 50.995l42.24 461.21c2.509 28.058 0.205 50.995-46.95 50.995zM942.285 727.040c-5.632 22.528-33.536 40.96-61.901 40.96h-348.877c-28.416 0-68.045 16.23-88.166 36.147l-30.515 30.106c-20.070 19.917-59.75 36.147-88.115 36.147h-166.707c-28.365 0-54.17-22.886-57.293-50.893l-14.95-133.427h866.867l-10.342 40.96z" />
|
||||
<glyph unicode="" d="M868.762 716.8c0 51.2-50.944 51.2-50.944 51.2h-611.635c0 0-50.944 0-50.944-51.2v-51.2h713.523v51.2zM715.827 870.4h-407.706c0 0-50.944 0-50.944-51.2h509.645c0 51.2-50.995 51.2-50.995 51.2zM970.65 665.6c-30.157 30.31-30.157 30.31-30.157 30.31v-81.51h-857.037v81.51c0 0 0 0-30.157-30.31s-51.763-38.451-39.578-102.451c12.032-63.744 70.554-413.44 79.206-460.749 9.574-51.917 62.31-51.2 62.31-51.2h713.523c0 0 52.736-0.717 62.31 51.2 8.704 47.309 67.174 397.005 79.258 460.749 12.134 64-9.472 72.141-39.68 102.451zM715.827 389.12c0 0 0-51.2-50.995-51.2h-305.715c-50.944 0-50.944 51.2-50.944 51.2v102.4h71.373v-81.92h264.858v81.92h71.475v-102.4z" />
|
||||
<glyph unicode="" d="M173.517 567.706l56.422-497.101c3.021-23.603 116.992-101.222 282.061-101.325 165.069 0.102 279.091 77.722 282.112 101.325l56.422 497.101c-86.221-48.23-215.091-71.066-338.534-71.066s-252.314 22.835-338.483 71.066zM674.15 874.906l-43.981 48.794c-16.947 24.115-35.379 28.621-71.27 28.621h-93.798c-35.84 0-54.272-4.506-71.27-28.621l-43.93-48.794c-131.584-22.989-227.021-83.968-227.021-128.922v-8.755c0-79.155 174.182-143.36 389.12-143.36s389.12 64.205 389.12 143.36v8.755c0 44.954-95.386 105.933-226.97 128.922zM617.933 760.883l-64.102 68.557h-83.661l-64.102-68.557h-87.040c0 0 95.334 113.664 108.083 129.075 9.728 11.776 19.712 16.282 32.614 16.282h104.602c12.902 0 22.835-4.506 32.614-16.282 12.698-15.411 108.083-129.075 108.083-129.075h-87.091z" />
|
||||
<glyph unicode="" d="M512 870.298l-266.24-249.856h168.96v-262.144h194.56v262.144h169.011l-266.291 249.856zM990.208 279.347l-163.021 109.67h-100.506l174.080-133.53h-181.504c-5.222 0-9.882-2.662-12.288-6.81l-41.779-114.432h-306.381l-41.83 114.432c-2.304 4.147-7.066 6.81-12.288 6.81h-181.453l174.131 133.53h-100.557l-162.97-109.67c-24.269-14.49-38.758-47.923-32.256-74.189l28.723-157.389c6.502-26.317 35.379-47.872 64.051-47.872h835.226c28.774 0 57.6 21.555 64.102 47.872l28.723 157.389c6.605 26.317-7.936 59.699-32.205 74.189z" />
|
||||
<glyph unicode="" d="M990.208 279.347l-163.021 109.67h-100.506l174.080-133.53h-181.504c-5.222 0-9.882-2.662-12.288-6.81l-41.779-114.432h-306.381l-41.83 114.432c-2.304 4.147-7.066 6.81-12.288 6.81h-181.453l174.131 133.53h-100.557l-162.97-109.67c-24.269-14.49-38.758-47.923-32.256-74.189l28.723-157.389c6.502-26.317 35.379-47.872 64.051-47.872h835.226c28.774 0 57.6 21.555 64.102 47.872l28.723 157.389c6.605 26.317-7.936 59.699-32.205 74.189zM778.291 608.154h-169.011v262.144h-194.56v-262.144h-168.96l266.24-249.856 266.291 249.856z" />
|
||||
<glyph unicode="" d="M645.12 921.6h-276.48c-28.314 0-40.96-22.938-40.96-51.2v-870.4l184.32 184.32 184.32-184.32v870.4c0 28.262-22.938 51.2-51.2 51.2z" />
|
||||
<glyph unicode="" d="M742.4 972.8h-215.040c-28.262 0-40.96-22.938-40.96-51.2h102.4c28.314 0 51.2-22.938 51.2-51.2v-634.88l153.6-184.32v870.4c0 28.262-22.886 51.2-51.2 51.2zM486.4 819.2h-215.040c-28.262 0-40.96-22.938-40.96-51.2v-819.2l153.6 184.32 153.6-184.32v819.2c0 28.262-22.886 51.2-51.2 51.2z" />
|
||||
<glyph unicode="" d="M399.36 344.525l-204.8 81.971v-69.325l204.8-81.971v69.325zM399.36 557.261l-204.8 81.92v-69.325l204.8-81.92v69.325zM950.323 912.794c-14.029 9.523-31.949 11.469-47.718 5.171l-390.605-156.262-390.605 156.262c-15.77 6.298-33.638 4.352-47.718-5.171-14.029-9.523-22.477-25.395-22.477-42.394v-655.36c0-20.941 12.749-39.731 32.154-47.565l408.73-163.482c0 0 8.397-2.714 9.933-3.021 3.328-0.614 6.656-0.973 9.984-0.973 3.277 0 6.656 0.358 9.933 1.024 1.536 0.307 9.933 3.072 9.933 3.072l408.678 163.43c19.507 7.782 32.256 26.573 32.256 47.514v655.36c0 16.998-8.448 32.87-22.477 42.394zM460.8 104.755l-327.68 131.072v573.85l327.68-131.123v-573.798zM890.88 235.776l-327.68-131.072v573.85l327.68 131.123v-573.901zM829.44 426.496l-204.851-81.971v-69.325l204.851 81.971v69.325zM829.44 639.181l-204.851-81.92v-69.325l204.851 81.92v69.325z" />
|
||||
<glyph unicode="" d="M854.938 487.066l-438.323 271.565c-31.949 20.941-58.061 5.478-58.061-34.304v-527.155c0-39.782 26.163-55.194 58.061-34.253l438.374 271.565c0 0 15.565 10.957 15.565 26.317-0.051 15.309-15.616 26.266-15.616 26.266z" />
|
||||
<glyph unicode="" d="M691.2 819.2c-50.893 0-92.16-15.667-92.16-66.56v-583.68c0-50.893 41.267-66.56 92.16-66.56s92.16 15.667 92.16 66.56v583.68c0 50.893-41.267 66.56-92.16 66.56zM332.8 819.2c-50.893 0-92.16-15.667-92.16-66.56v-583.68c0-50.893 41.267-66.56 92.16-66.56s92.16 15.667 92.16 66.56v583.68c0 50.893-41.267 66.56-92.16 66.56z" />
|
||||
<glyph unicode="" d="M512 819.2c-197.939 0-358.4-160.461-358.4-358.4s160.461-358.4 358.4-358.4c197.888 0 358.4 160.461 358.4 358.4 0 197.939-160.512 358.4-358.4 358.4z" />
|
||||
<glyph unicode="" d="M742.4 768h-460.8c-50.893 0-76.8-15.667-76.8-66.56v-481.28c0-50.893 25.907-66.56 76.8-66.56h460.8c50.893 0 76.8 15.667 76.8 66.56v481.28c0 50.893-25.907 66.56-76.8 66.56z" />
|
||||
<glyph unicode="" d="M938.035 485.325l-382.054 253.44c-29.338 19.558-53.402 5.171-53.402-31.949v-491.981c0-37.171 24.064-51.558 53.402-31.949l382.054 253.389c0 0 14.285 10.24 14.285 24.525s-14.285 24.525-14.285 24.525zM473.395 485.325l-368.845 253.491c-29.286 19.507-53.299 5.12-53.299-32v-491.981c0-37.171 24.013-51.558 53.35-31.949l368.845 253.389c0 0 14.285 10.24 14.285 24.525s-14.336 24.525-14.336 24.525z" />
|
||||
<glyph unicode="" d="M71.629 460.8c0-14.285 14.285-24.525 14.285-24.525l382.106-253.389c29.286-19.61 53.35-5.222 53.35 31.949v491.981c0 37.171-24.064 51.507-53.35 32l-382.106-253.44c0.051-0.051-14.285-10.291-14.285-24.576zM536.32 460.8c0-14.285 14.285-24.525 14.285-24.525l368.794-253.389c29.338-19.61 53.35-5.222 53.35 31.949v491.981c0 37.171-24.013 51.507-53.35 32l-368.794-253.44c0-0.051-14.285-10.291-14.285-24.576z" />
|
||||
<glyph unicode="" d="M383.232 460.8c0-13.21 13.414-22.63 13.414-22.63l372.48-233.933c27.597-18.074 50.074-4.762 50.074 29.44v454.246c0 34.253-22.477 47.565-50.074 29.491l-372.48-233.984c0-0.051-13.414-9.421-13.414-22.63zM204.8 698.522v-475.443c0-45.466 31.334-59.392 76.8-59.392s76.8 13.926 76.8 59.341v475.494c0 45.517-31.334 59.443-76.8 59.443s-76.8-13.978-76.8-59.443z" />
|
||||
<glyph unicode="" d="M627.354 483.43l-372.48 233.984c-27.546 18.022-50.074 4.762-50.074-29.542v-454.195c0-34.304 22.528-47.514 50.074-29.491l372.48 233.933c0 0 13.466 9.472 13.466 22.63s-13.466 22.682-13.466 22.682zM742.4 757.965c-45.466 0-76.8-13.978-76.8-59.443v-475.443c0-45.517 31.334-59.494 76.8-59.494s76.8 13.978 76.8 59.494v475.443c0 45.466-31.334 59.443-76.8 59.443z" />
|
||||
<glyph unicode="" d="M594.586 864.666l123.085-99.635-155.136-150.016 102.4-102.4 150.118 155.238 101.99-125.798v322.611h-322.458zM357.786 410.214l-150.067-155.136-100.864 124.467v-322.56h322.56l-124.467 100.813 155.187 150.067-102.349 102.349z" />
|
||||
<glyph unicode="" d="M209.92 250.88l-158.72-148.48 102.4-102.4 148.48 158.72 102.4-107.52v302.080h-302.080l107.52-102.4zM972.8 819.2l-102.4 102.4-148.48-158.72-102.4 107.52v-302.080h302.080l-107.52 102.4 158.72 148.48z" />
|
||||
<glyph unicode="" d="M971.11 284.774c0-45.107-36.915-81.92-81.971-81.92h-798.72c-45.056 0-50.33 18.893-11.674 42.086l822.067 463.565c38.656 23.194 70.298 5.274 70.298-39.782v-383.949z" />
|
||||
<glyph unicode="" d="M225.178 703.437c-57.446-57.293-308.634-415.437-91.597-632.371 216.883-216.986 574.976 34.15 632.474 91.648 57.446 57.293-17.101 225.024-166.502 374.374-149.35 149.402-316.877 223.949-374.374 166.349zM699.443 212.48c-16.947-16.845-148.224 23.398-274.586 149.811-126.31 126.515-166.656 257.741-149.709 274.688 16.794 16.947 148.224-23.398 274.432-149.862 126.464-126.31 166.81-257.69 149.862-274.637zM707.174 615.987c13.107 0 26.214 5.018 36.198 15.002l97.536 97.587c20.019 20.019 20.019 52.378 0 72.397s-52.429 20.019-72.397 0l-97.536-97.587c-20.019-19.968-20.019-52.378 0-72.397 9.933-9.984 23.091-15.002 36.198-15.002zM522.803 742.656c7.936-4.454 16.486-6.554 24.986-6.554 17.92 0 35.277 9.472 44.698 26.214l55.347 98.816c13.824 24.678 5.018 55.91-19.661 69.683s-55.859 5.018-69.683-19.661l-55.347-98.816c-13.773-24.627-5.018-55.859 19.661-69.683zM970.701 588.288c-13.875 24.678-45.056 33.434-69.683 19.661l-98.816-55.347c-24.627-13.824-33.434-45.005-19.661-69.683 9.421-16.742 26.778-26.214 44.698-26.214 8.499 0 17.101 2.15 24.986 6.554l98.816 55.347c24.678 13.824 33.485 45.056 19.661 69.683z" />
|
||||
<glyph unicode="" d="M948.275 897.075c-19.968 20.019-52.378 20.019-72.397 0l-800.154-800.154c-20.019-20.019-20.019-52.429 0-72.397 9.984-9.984 23.091-15.002 36.198-15.002s26.214 5.018 36.198 15.002l800.154 800.154c20.019 20.019 20.019 52.48 0 72.397zM727.091 502.118c71.117-96.461 93.082-180.224 79.821-193.485-13.312-13.21-96.973 8.755-193.434 79.923l-282.931-282.982c214.323-94.106 492.902 103.219 542.976 153.293 47.36 47.258 4.966 169.523-95.027 294.656l-51.405-51.405zM443.75 566.323c-56.269 84.838-73.216 154.726-61.133 166.861 11.93 12.032 81.92-4.966 166.758-61.235l52.378 52.378c-115.917 85.709-225.024 119.45-269.107 75.213-47.565-47.411-227.789-300.902-165.478-509.798l276.582 276.582z" />
|
||||
<glyph unicode="" d="M716.8 225.28c-50.534 0-94.003-30.618-112.845-74.24h-168.755c-72.294 0-79.053 61.030-79.36 79.36v198.042c22.067-10.189 48.282-16.282 79.36-16.282h168.755c18.842-43.674 62.31-74.24 112.845-74.24 67.84 0 122.88 55.040 122.88 122.88s-55.040 122.88-122.88 122.88c-50.534 0-94.003-30.618-112.845-74.24h-168.755c-72.294 0-79.053 61.030-79.36 79.36v117.555c43.674 18.842 74.189 62.31 74.189 112.845 0 67.84-54.989 122.88-122.829 122.88s-122.88-55.040-122.88-122.88c0-50.534 30.618-93.952 74.24-112.845v-475.955c0-71.014 47.053-176.64 176.64-176.64h168.755c18.842-43.674 62.31-74.24 112.845-74.24 67.84 0 122.88 54.989 122.88 122.88 0 67.84-55.040 122.88-122.88 122.88zM716.8 531.712c39.168 0 70.912-31.744 70.912-70.912s-31.744-70.912-70.912-70.912-70.912 31.744-70.912 70.912 31.744 70.912 70.912 70.912zM236.288 819.2c0 39.168 31.744 70.912 70.912 70.912s70.912-31.744 70.912-70.912-31.744-70.912-70.912-70.912-70.912 31.744-70.912 70.912zM716.8 31.488c-39.168 0-70.912 31.744-70.912 70.912s31.744 70.912 70.912 70.912 70.912-31.744 70.912-70.912-31.744-70.912-70.912-70.912z" />
|
||||
<glyph unicode="" d="M839.68 768c0 67.84-54.989 122.88-122.88 122.88s-122.88-55.040-122.88-122.88c0-49.818 29.696-92.621 72.294-111.923-11.622-99.738-75.878-119.859-168.704-148.838-45.056-14.080-97.434-30.464-141.67-62.31v210.227c43.674 18.893 74.24 62.31 74.24 112.845 0 67.84-55.040 122.88-122.88 122.88-67.891 0-122.88-55.040-122.88-122.88 0-50.534 30.566-93.952 74.24-112.845v-388.762c-43.674-18.79-74.24-62.208-74.24-112.794 0-67.84 54.989-122.88 122.88-122.88 67.84 0 122.88 55.040 122.88 122.88 0 49.818-29.696 92.621-72.346 111.923 11.674 99.738 75.981 119.91 168.755 148.838 94.362 29.491 221.491 69.274 237.261 240.077 44.544 18.534 75.93 62.362 75.93 113.562zM236.288 768c0 39.168 31.744 70.912 70.912 70.912s70.912-31.744 70.912-70.912-31.744-70.912-70.912-70.912-70.912 31.744-70.912 70.912zM307.2 82.688c-39.168 0-70.912 31.744-70.912 70.912s31.744 70.912 70.912 70.912 70.912-31.744 70.912-70.912-31.744-70.912-70.912-70.912zM716.8 697.088c-39.117 0-70.912 31.744-70.912 70.912s31.795 70.912 70.912 70.912 70.912-31.744 70.912-70.912-31.795-70.912-70.912-70.912z" />
|
||||
<glyph unicode="" d="M918.989 215.245v117.555c0 71.014-47.002 176.64-176.589 176.64h-102.4c-72.294 0-79.002 35.43-79.36 53.76v143.155c43.674 18.893 74.24 62.31 74.24 112.845 0 67.84-54.989 122.88-122.88 122.88-67.891 0-122.88-55.040-122.88-122.88 0-50.534 30.566-93.952 74.24-112.845v-143.155c0-13.261-3.84-53.76-79.36-53.76h-102.4c-129.587 0-176.64-105.626-176.64-176.64v-117.555c-43.674-18.842-74.24-62.31-74.24-112.845 0-67.84 54.989-122.88 122.88-122.88 67.84 0 122.88 55.040 122.88 122.88 0 50.534-30.566 94.003-74.24 112.845v117.555c0 13.261 3.84 79.36 79.36 79.36h102.4c31.078 0 57.293 4.71 79.36 12.698v-209.613c-43.674-18.842-74.24-62.31-74.24-112.845 0-67.84 54.989-122.88 122.88-122.88 67.891 0 122.88 55.040 122.88 122.88 0 50.534-30.618 94.003-74.291 112.845v209.613c22.067-7.987 48.282-12.698 79.36-12.698h102.4c72.294 0 79.002-61.030 79.411-79.36v-117.555c-43.674-18.842-74.24-62.31-74.24-112.845 0-67.84 54.989-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 50.534-30.566 94.003-74.291 112.845zM224.512 102.4c0-39.168-31.744-70.912-70.912-70.912s-70.912 31.744-70.912 70.912 31.744 70.912 70.912 70.912 70.912-31.744 70.912-70.912zM441.088 819.2c0 39.168 31.795 70.912 70.912 70.912s70.861-31.744 70.861-70.912-31.744-70.912-70.861-70.912c-39.117 0-70.912 31.744-70.912 70.912zM582.912 102.4c0-39.168-31.795-70.912-70.861-70.912-39.168 0-70.912 31.744-70.912 70.912s31.744 70.912 70.861 70.912c39.117 0 70.912-31.744 70.912-70.912zM870.4 31.488c-39.117 0-70.912 31.744-70.912 70.912s31.795 70.912 70.912 70.912 70.912-31.744 70.912-70.912-31.795-70.912-70.912-70.912z" />
|
||||
<glyph unicode="" d="M560.64 266.445v388.762c43.674 18.842 74.24 62.259 74.24 112.794 0 67.891-55.040 122.88-122.88 122.88s-122.88-54.989-122.88-122.88c0-50.534 30.618-93.952 74.24-112.794v-388.762c-43.674-18.842-74.24-62.259-74.24-112.845 0-67.84 55.040-122.88 122.88-122.88s122.88 55.040 122.88 122.88c0 50.586-30.566 94.003-74.24 112.845zM441.088 768c0 39.168 31.744 70.912 70.912 70.912s70.912-31.744 70.912-70.912-31.744-70.912-70.912-70.912-70.912 31.744-70.912 70.912zM512 82.688c-39.168 0-70.912 31.744-70.912 70.912s31.744 70.912 70.912 70.912 70.912-31.744 70.912-70.912-31.744-70.912-70.912-70.912z" />
|
||||
<glyph unicode="" d="M512.768 849.92v-195.994l-359.27 0.051v-386.662h359.27v-195.635l388.25 389.12z" />
|
||||
<glyph unicode="" d="M511.232 122.88v195.994l359.27-0.051v284.262h-359.27v195.635l-388.25-337.971z" />
|
||||
<glyph unicode="" d="M849.92 460.032l-195.994 0.051 0.051 359.219h-284.262v-359.27l-195.635 0.051 337.92-388.301z" />
|
||||
<glyph unicode="" d="M849.92 461.568l-195.994-0.051 0.051-359.219h-284.262v359.27l-195.635-0.051 337.971 388.301z" />
|
||||
<glyph unicode="" d="M512.768 798.72v-195.994l-359.27 0.051v-284.262h359.27v-195.635l388.25 337.971z" />
|
||||
<glyph unicode="" d="M983.040 460.8c0 260.147-210.893 471.040-471.040 471.040s-471.040-210.893-471.040-471.040c0-260.198 210.893-471.091 471.040-471.091s471.040 210.944 471.040 471.091zM143.36 460.8c0 203.571 165.069 368.64 368.64 368.64s368.64-165.069 368.64-368.64c0-203.622-165.069-368.691-368.64-368.691s-368.64 165.069-368.64 368.691zM709.12 368.64v184.32h-209.408v115.2l-195.072-207.36 195.072-207.36v115.2h209.408z" />
|
||||
<glyph unicode="" d="M512 931.84c-260.147 0-471.040-210.893-471.040-471.040s210.893-471.040 471.040-471.040 471.040 210.893 471.040 471.040-210.893 471.040-471.040 471.040zM512 92.16c-203.622 0-368.64 165.069-368.64 368.64s165.018 368.64 368.64 368.64 368.64-165.069 368.64-368.64-165.018-368.64-368.64-368.64zM604.16 657.92h-184.32v-209.408h-115.2l207.36-195.072 207.36 195.072h-115.2v209.408z" />
|
||||
<glyph unicode="" d="M512.051-10.24c260.147 0 470.989 210.893 470.989 471.040s-210.842 471.040-470.989 471.040c-260.198 0-471.091-210.893-471.091-471.040s210.893-471.040 471.091-471.040zM512.051 829.44c203.622 0 368.589-165.069 368.589-368.64s-165.018-368.64-368.589-368.64c-203.674 0-368.691 165.018-368.691 368.64s165.018 368.64 368.691 368.64zM419.84 263.68h184.371v209.408h115.2l-207.36 195.072-207.411-195.072h115.2v-209.408z" />
|
||||
<glyph unicode="" d="M40.96 460.8c0-260.147 210.944-471.040 471.040-471.040 260.147 0 471.040 210.893 471.040 471.040 0 260.147-210.893 471.040-471.040 471.040-260.147 0-471.040-210.893-471.040-471.040zM880.64 460.8c0-203.571-165.069-368.64-368.64-368.64s-368.64 165.018-368.64 368.64c0 203.622 165.018 368.64 368.64 368.64s368.64-165.018 368.64-368.64zM314.88 552.96v-184.32h209.408v-115.2l195.072 207.36-195.072 207.36v-115.2h-209.408z" />
|
||||
<glyph unicode="" d="M716.749 696.32l0.051-471.040-409.6 235.52z" />
|
||||
<glyph unicode="" d="M747.52 665.549l-471.040 0.051 235.52-409.6z" />
|
||||
<glyph unicode="" d="M276.48 256h471.040l-235.571 409.6z" />
|
||||
<glyph unicode="" d="M307.251 696.32l-0.051-471.040 409.6 235.52z" />
|
||||
<glyph unicode="" d="M585.574 741.581c-21.402-20.89-230.502-240.435-230.502-240.435-11.418-11.162-17.101-25.754-17.101-40.346s5.683-29.184 17.101-40.346c0 0 209.101-219.546 230.502-240.384 21.402-20.89 59.904-22.323 82.739 0 22.784 22.272 24.576 53.35-0.051 80.64l-191.846 200.090 191.846 200.090c24.627 27.341 22.835 58.419 0.051 80.691-22.886 22.272-61.389 20.89-82.739 0z" />
|
||||
<glyph unicode="" d="M792.73 534.374c-20.838-21.402-240.384-230.554-240.384-230.554-11.162-11.418-25.754-17.101-40.346-17.101-14.643 0-29.235 5.683-40.346 17.101 0 0-219.546 209.152-240.435 230.554-20.838 21.402-22.272 59.853 0 82.739 22.323 22.835 53.402 24.627 80.691 0l200.090-191.898 200.038 191.846c27.341 24.627 58.47 22.835 80.691 0 22.323-22.835 20.941-61.338 0-82.688z" />
|
||||
<glyph unicode="" d="M792.73 387.226c-20.838 21.402-240.384 230.502-240.384 230.502-11.162 11.418-25.754 17.152-40.346 17.152-14.643 0-29.235-5.734-40.346-17.152 0 0-219.546-209.101-240.435-230.502-20.838-21.402-22.272-59.904 0-82.739 22.323-22.784 53.402-24.627 80.691 0l200.090 191.846 200.038-191.846c27.341-24.627 58.47-22.784 80.691 0 22.323 22.886 20.941 61.389 0 82.739z" />
|
||||
<glyph unicode="" d="M438.426 741.581c21.402-20.89 230.502-240.435 230.502-240.435 11.469-11.162 17.152-25.754 17.152-40.346s-5.683-29.184-17.152-40.346c0 0-209.101-219.546-230.502-240.384-21.402-20.89-59.853-22.323-82.739 0-22.835 22.272-24.627 53.35 0 80.64l191.898 200.090-191.846 200.090c-24.627 27.341-22.835 58.419 0 80.691s61.338 20.89 82.688 0z" />
|
||||
<glyph unicode="" d="M634.829 285.798c13.722-13.875 13.722-36.301 0-50.125-13.722-13.875-35.891-13.875-49.613 0l-196.096 200.038c-13.722 13.875-13.722 36.301 0 50.125l196.096 200.090c13.722 13.875 35.891 13.875 49.613 0s13.722-36.25 0-50.125l-160.768-175.002 160.768-175.002z" />
|
||||
<glyph unicode="" d="M687.002 583.629c13.875 13.722 36.301 13.722 50.125 0 13.875-13.722 13.875-35.891 0-49.613l-200.038-196.096c-13.875-13.722-36.301-13.722-50.125 0l-200.090 196.096c-13.824 13.722-13.824 35.891 0 49.613 13.875 13.722 36.25 13.722 50.125 0l175.002-160.768 175.002 160.768z" />
|
||||
<glyph unicode="" d="M336.947 337.971c-13.875-13.722-36.25-13.722-50.125 0-13.824 13.722-13.875 35.891 0 49.664l200.090 195.994c13.875 13.722 36.301 13.722 50.125 0l200.090-196.045c13.875-13.773 13.875-35.942 0-49.664s-36.25-13.722-50.125 0l-175.053 160.819-175.002-160.768z" />
|
||||
<glyph unicode="" d="M286.704 80.998c-13.722-13.875-13.722-36.25 0-50.125s35.891-13.875 49.613 0l400.896 404.838c13.722 13.875 13.722 36.301 0 50.125l-400.896 404.89c-13.722 13.875-35.891 13.875-49.613 0s-13.722-36.25 0-50.125l365.568-379.802-365.568-379.802z" />
|
||||
<glyph unicode="" d="M255.13 204.8l0.051 165.274 758.579-0.051v181.914h-758.63l0.051 164.864-244.941-256z" />
|
||||
<glyph unicode="" d="M768 203.878l-165.274 0.051 0.051 758.63h-181.914v-758.682l-164.864 0.051 256-244.89z" />
|
||||
<glyph unicode="" d="M768 717.67h-165.274l0.051-758.63h-181.914v758.63h-164.864l256 244.89z" />
|
||||
<glyph unicode="" d="M768.922 204.8l-0.051 165.274-758.63-0.051v181.914h758.682l-0.051 164.864 244.89-256z" />
|
||||
<glyph unicode="" d="M512 972.8l-235.52-373.76h470.989l-235.469 373.76zM512.051-51.2l235.469 373.76-471.040 0.051 235.571-373.811z" />
|
||||
<glyph unicode="" d="M153.6 573.44c-62.208 0-112.64-50.432-112.64-112.64s50.432-112.64 112.64-112.64 112.64 50.432 112.64 112.64c0 62.208-50.432 112.64-112.64 112.64zM512 573.44c-62.208 0-112.64-50.432-112.64-112.64s50.432-112.64 112.64-112.64 112.589 50.432 112.589 112.64c0 62.208-50.381 112.64-112.589 112.64zM870.4 573.44c-62.208 0-112.64-50.432-112.64-112.64s50.432-112.64 112.64-112.64 112.64 50.432 112.64 112.64c0 62.208-50.432 112.64-112.64 112.64z" />
|
||||
<glyph unicode="" d="M332.8 573.44c-62.208 0-112.64-50.432-112.64-112.64s50.432-112.64 112.64-112.64 112.64 50.432 112.64 112.64-50.432 112.64-112.64 112.64zM691.2 573.44c-62.208 0-112.64-50.432-112.64-112.64s50.432-112.64 112.64-112.64 112.64 50.432 112.64 112.64-50.432 112.64-112.64 112.64z" />
|
||||
<glyph unicode="" d="M512 573.44c-62.208 0-112.64-50.432-112.64-112.64s50.432-112.64 112.64-112.64 112.64 50.432 112.64 112.64-50.432 112.64-112.64 112.64z" />
|
||||
<glyph unicode="" d="M505.446 952.269c-271.462-3.635-488.55-226.611-484.915-498.022s226.611-488.55 498.074-484.915c271.411 3.584 488.55 226.611 484.915 498.074-3.635 271.411-226.714 488.499-498.074 484.864zM517.171 72.806c-214.323-2.918-390.349 168.499-393.216 382.822-2.867 214.323 168.55 390.349 382.874 393.216 214.272 2.867 390.298-168.55 393.165-382.822s-168.499-390.298-382.822-393.216zM391.731 377.498c-20.736 0-36.454 7.578-47.104 22.733-10.701 15.155-15.974 35.328-15.974 60.57 0 55.501 21.043 83.251 63.078 83.251 8.397 0 17.51-2.816 27.341-8.397 9.779-5.632 18.074-15.462 24.832-29.44l63.027 32.819c-25.19 45.414-67.021 68.147-125.338 68.147-39.834 0-72.704-13.158-98.816-39.526-26.061-26.368-39.117-62.003-39.117-106.854 0-45.978 12.902-81.92 38.707-107.725 25.754-25.805 59.75-38.707 101.786-38.707 26.317 0 50.432 6.605 72.294 19.814s39.014 31.283 51.354 54.323l-58.061 29.44c-11.213-26.931-30.566-40.448-58.010-40.448zM663.398 377.498c-20.787 0-36.506 7.578-47.104 22.733-10.701 15.104-15.974 35.328-15.974 60.57 0 55.501 20.992 83.251 63.078 83.251 9.011 0 18.381-2.816 28.211-8.397 9.779-5.632 18.125-15.462 24.781-29.44l62.208 32.819c-24.678 45.414-66.099 68.147-124.518 68.147-39.782 0-72.704-13.158-98.765-39.526-26.112-26.368-39.117-61.952-39.117-106.803 0-45.978 12.749-81.92 38.246-107.725 25.549-25.805 59.648-38.707 102.246-38.707 25.805 0 49.613 6.605 71.475 19.814 21.811 13.21 39.219 31.283 52.122 54.323l-58.88 29.44c-11.213-26.982-30.515-40.499-58.010-40.499z" />
|
||||
<glyph unicode="" d="M512 640.768c45.67 0 68.506 22.784 68.506 68.403 0 46.234-22.835 69.325-68.506 69.325s-68.454-23.091-68.454-69.325c0-45.619 22.784-68.403 68.454-68.403zM612.966 614.349h-201.882c-8.806 0-16.23-3.072-22.426-9.216s-9.216-13.619-9.216-22.374v-201.011h56.166v-238.746h152.678v238.746h56.218v201.062c0 8.755-3.226 16.179-9.626 22.374-6.451 6.093-13.722 9.165-21.914 9.165zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 59.392c-221.696 0-401.408 179.712-401.408 401.408s179.712 401.408 401.408 401.408 401.408-179.712 401.408-401.408-179.712-401.408-401.408-401.408z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM132.864 592.589l249.344-111.667 78.080-34.202 57.958-26.368 47.411-20.224c8.806-7.578 13.21-17.51 13.21-29.798 0-17.613-6.042-30.157-18.022-37.734-11.981-7.578-26.522-11.418-43.469-11.418-41.011 0-77.568 14.899-109.773 44.749l-67.533-68.454c45.056-38.605 94.822-58.266 149.197-58.778v-75.52h57.037v75.52c33.894 2.918 63.334 14.131 88.218 33.792 24.832 19.61 40.55 44.851 46.95 75.878l182.221-81.152c-68.301-123.853-200.192-207.821-351.693-207.821-221.696 0-401.408 179.712-401.408 401.408 0 46.182 7.885 90.522 22.272 131.789zM650.803 467.814l-79.002 35.123-105.37 47.36c-2.918 4.096-4.352 8.192-4.352 12.288 0 14.029 5.99 24.013 18.022 29.85 11.93 5.837 25.549 8.806 40.806 8.806 28.672 0 56.73-9.677 84.275-28.979l64.102 65.843c-36.915 28.109-77.875 43.315-122.88 45.67v75.418h-57.088v-75.469c-30.464-1.741-57.088-10.445-79.923-25.856-22.784-15.565-38.298-36.147-46.49-61.901l-187.136 83.968c71.629 109.67 195.43 182.272 336.23 182.272 221.696 0 401.408-179.712 401.408-401.408 0-35.994-4.813-70.861-13.722-103.987l-248.883 111.002z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM132.25 590.848l128.819-56.986h-9.421v-58.419h46.080c0-8.243-0.819-16.435-0.819-24.678v-13.978h-45.261v-58.419h53.504c7.424-43.674 23.859-79.002 46.029-107.008 46.080-60.877 120.166-93.798 200.806-93.798 52.634 0 100.352 15.667 128.358 31.283l-19.763 91.29c-17.306-9.062-55.962-21.35-93.798-21.35-41.165 0-79.821 12.288-106.138 41.933-12.339 13.926-21.402 32.922-27.085 57.6h178.842l251.187-111.206c-68.352-123.802-200.141-207.718-351.59-207.718-221.696 0-401.408 179.712-401.408 401.408 0 45.568 7.731 89.242 21.658 130.048zM632.678 475.443h7.373v58.419h-139.366l-56.525 25.037c4.864 10.957 10.598 20.736 17.357 28.416 25.498 31.283 61.696 44.493 101.171 44.493 36.198 0 69.888-10.701 91.29-19.814l23.040 93.85c-29.645 13.158-73.267 24.627-123.392 24.627-77.363 0-143.155-31.232-190.054-83.917-10.445-12.032-19.456-25.549-27.648-39.782l-161.28 71.373c71.475 110.694 195.789 184.064 337.357 184.064 221.696 0 401.408-179.712 401.408-401.408 0-35.84-4.762-70.554-13.568-103.578l-267.162 118.221z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM128.512 579.584l250.214-111.411h-55.398v-76.544h115.098l11.264-23.296v-37.12h-126.362v-76.493h126.362v-111.104h122.317v111.104h127.232v70.707l157.542-70.144c-70.042-117.299-198.246-195.891-344.781-195.891-221.696 0-401.408 179.712-401.408 401.408 0 41.37 6.246 81.254 17.92 118.784zM572.058 331.264v37.12l5.734 11.162 108.442-48.23h-114.176zM699.238 432.998v35.226h-76.493l124.826 229.888h-130.458l-85.914-190.259-45.67 20.275-78.49 169.984h-130.458l54.17-101.018-161.894 72.038c70.451 115.763 197.734 193.075 343.142 193.075 221.696 0 401.408-179.712 401.408-401.408 0-40.192-5.99-78.95-16.947-115.558l-197.222 87.757z" />
|
||||
<glyph unicode="" d="M509.44 719.718c-56.218 0-103.885-16.486-143.104-49.562s-63.488-79.77-72.858-139.981h-38.554l97.382-97.434 97.434 97.434h-35.994c8.192 57.907 45.056 86.835 110.592 86.835 36.25 0 64.102-13.568 83.354-40.806 19.354-27.187 28.979-66.867 28.979-118.886 0-49.766-10.547-89.549-31.59-119.347-21.094-29.85-48.896-44.8-83.354-44.8-69.12 0-105.114 29.85-107.981 89.549h-123.75c8.192-61.44 32.461-108.851 72.858-142.182 40.346-33.331 88.371-50.022 143.923-50.022 75.571 0 136.96 24.986 184.371 75.008 47.411 50.074 71.117 112.794 71.117 188.314 0 77.824-22.835 141.619-68.454 191.283-45.722 49.715-107.162 74.598-184.371 74.598zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 59.392c-221.696 0-401.408 179.712-401.408 401.408s179.712 401.408 401.408 401.408 401.408-179.712 401.408-401.408-179.712-401.408-401.408-401.408z" />
|
||||
<glyph unicode="" d="M333.414 492.39h357.274v84.275h-357.274v-84.275zM333.414 334.387h357.274v84.275h-357.274v-84.275zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 59.392c-221.696 0-401.408 179.712-401.408 401.408s179.712 401.408 401.408 401.408 401.408-179.712 401.408-401.408-179.712-401.408-401.408-401.408z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM132.25 590.848l158.157-69.939c-3.994-20.326-6.144-41.523-6.144-63.283 0-196.25 146.432-251.494 238.592-251.494 54.374 0 101.325 17.51 138.138 43.264 7.014 5.018 13.363 10.035 19.2 15.206l-71.629 87.040c-2.099-2.406-4.301-4.659-6.554-6.707-27.904-26.47-58.522-26.47-65.331-26.47-74.291 0-105.728 77.619-106.701 140.646l433.715-191.949c-68.352-123.853-200.192-207.77-351.642-207.77-221.696 0-401.408 179.712-401.408 401.408-0.051 45.568 7.68 89.242 21.606 130.048zM451.174 555.725c16.077 29.082 42.701 52.019 80.845 52.019 22.17 0 39.68-7.373 53.504-16.589 5.734-4.147 10.701-8.294 14.899-12.442l80.026 82.33c-53.76 46.234-114.842 54.477-154.829 54.477-93.901 0-161.946-42.035-201.165-103.68l-149.811 66.355c71.475 110.643 195.789 184.013 337.357 184.013 221.696 0 401.408-179.712 401.408-401.408 0-35.84-4.762-70.554-13.568-103.526l-448.666 198.451z" />
|
||||
<glyph unicode="" d="M512 743.68c-162.253 0-203.059-153.088-203.059-282.88s40.806-282.931 203.059-282.931c162.304 0 203.11 153.139 203.11 282.931s-40.806 282.88-203.11 282.88zM424.602 460.8c0 57.139 3.942 176.23 87.398 176.23 6.605 0 12.595-1.075 18.227-2.458 11.725-10.035 17.408-23.962 6.195-43.366l-108.032-198.605c-3.328 25.139-3.789 49.869-3.789 68.198zM512 284.621c-6.554 0-12.595 0.666-18.176 2.048-1.075 0.307-2.099 0.666-3.174 1.024-1.69 0.563-3.533 1.075-5.171 1.741-18.534 7.885-30.259 22.221-13.414 47.514l120.781 208.589c5.734-30.515 6.554-62.362 6.554-84.685 0.051-57.242-3.942-176.23-87.398-176.23zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 59.392c-221.696 0-401.408 179.712-401.408 401.408s179.712 401.408 401.408 401.408 401.408-179.712 401.408-401.408-179.712-401.408-401.408-401.408z" />
|
||||
<glyph unicode="" d="M713.011 601.19h-107.11v107.11c0 7.578-2.611 14.029-7.885 19.354-5.274 5.222-11.725 7.885-19.302 7.885h-270.336c-7.014-1.178-12.902-4.301-17.51-9.216-4.71-4.966-7.066-10.957-7.066-18.022v-361.574c0-7.578 2.662-14.029 7.885-19.302s11.725-7.885 19.302-7.885h107.11v-107.11c0-7.578 2.611-14.029 7.885-19.302 5.274-5.274 11.725-7.885 19.302-7.885h267.725c7.578 0 14.029 2.662 19.302 7.885s7.885 11.725 7.885 19.302v361.574c0 7.578-2.662 14.029-7.885 19.302-5.274 5.274-11.725 7.885-19.302 7.885zM441.805 601.19c-6.451-1.126-11.981-4.25-16.691-9.216s-7.014-10.906-7.014-17.971v-200.96h-80.742v308.070h215.040v-79.923h-110.592zM686.643 239.616h-215.040v308.070h215.040v-308.070zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 59.392c-221.696 0-401.408 179.712-401.408 401.408s179.712 401.408 401.408 401.408 401.408-179.712 401.408-401.408-179.712-401.408-401.408-401.408z" />
|
||||
<glyph unicode="" d="M833.229 451.994l-97.434 40.448v121.958l-301.056 124.672-133.376-58.778v-138.854l0.819-0.768-117.606-49.152v-126.413l125.491-54.374 127.283 52.634 8.755-3.482 257.178-106.24 6.093-1.741 5.325 1.741 119.347 50.893 8.755 4.454v138.701l-9.574 4.301zM693.658 290.56l-0.87 0.819v-0.819l-225.536 92.928v89.6l225.536-92.314v-3.482h0.87v-86.733zM708.608 404.634l-71.117 30.566 77.261 32.666 72.858-30.771-79.002-32.461zM812.134 329.114l-87.757-37.734v85.965l87.757 36.966v-85.197zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 59.392c-221.696 0-401.408 179.712-401.408 401.408s179.712 401.408 401.408 401.408 401.408-179.712 401.408-401.408-179.712-401.408-401.408-401.408z" />
|
||||
<glyph unicode="" d="M252.058 256c-110.95 0-200.858 91.597-200.858 204.8s89.907 204.8 200.858 204.8c110.95 0 200.909-91.648 200.909-204.8s-89.958-204.8-200.909-204.8zM771.891 256c-111.002 0-201.011 91.597-201.011 204.8s90.010 204.8 201.011 204.8c110.899 0 200.909-91.648 200.909-204.8s-90.010-204.8-200.909-204.8z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.006 491.52-491.52 491.52zM380.672 357.325c-56.064 0-101.478 46.285-101.478 103.475 0 57.19 45.414 103.475 101.478 103.475 56.064 0 101.53-46.285 101.53-103.475-0.051-57.19-45.466-103.475-101.53-103.475zM643.277 357.325c-56.115 0-101.53 46.285-101.53 103.475 0 57.19 45.414 103.475 101.53 103.475 56.013 0 101.478-46.285 101.478-103.475 0.051-57.19-45.466-103.475-101.478-103.475z" />
|
||||
<glyph unicode="" d="M968.192 673.741c-51.507-295.526-339.2-545.792-425.728-602.931-86.579-57.139-165.478 22.886-194.15 83.456-32.768 68.966-131.021 443.238-156.774 474.163-25.702 31.078-102.912-30.925-102.912-30.925l-37.427 49.971c0 0 156.774 190.72 276.070 214.528 126.464 25.242 126.259-197.837 156.672-321.69 29.44-119.859 49.203-188.467 74.854-188.467 25.754 0 74.854 66.867 128.666 169.318 53.914 102.554-2.304 193.075-107.622 128.717 42.086 257.434 439.859 319.334 388.352 23.859z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM737.28 555.469c-26.010-149.35-171.418-275.763-215.091-304.64-43.725-28.826-83.61 11.622-98.099 42.138-16.538 34.867-66.202 223.949-79.206 239.565-13.005 15.718-51.968-15.616-51.968-15.616l-18.893 25.293c0 0 79.206 96.358 139.469 108.339 63.898 12.8 63.795-99.891 79.155-162.509 14.899-60.57 24.883-95.181 37.837-95.181 13.005 0 37.837 33.741 65.024 85.504 27.238 51.866-1.126 97.587-54.374 65.075 21.197 129.997 222.208 161.331 196.147 12.032z" />
|
||||
<glyph unicode="" d="M983.040 752.998c-34.714-15.411-71.936-25.754-111.053-30.464 39.936 23.91 70.605 61.798 84.992 106.906-37.325-22.118-78.694-38.246-122.675-46.899-35.277 37.581-85.504 61.030-141.107 61.030-106.752 0-193.28-86.528-193.28-193.229 0-15.155 1.69-29.901 5.018-44.032-160.614 8.038-303.053 84.992-398.336 201.933-16.691-28.518-26.266-61.747-26.266-97.178 0-67.072 34.15-126.208 86.016-160.87-31.693 1.024-61.491 9.677-87.552 24.166 0-0.819 0-1.587 0-2.406 0-93.645 66.662-171.725 155.034-189.542-16.179-4.403-33.28-6.758-50.944-6.758-12.442 0-24.525 1.178-36.352 3.43 24.576-76.8 96-132.659 180.531-134.195-66.15-51.866-149.453-82.739-240.026-82.739-15.616 0-30.976 0.922-46.080 2.714 85.504-54.835 187.085-86.835 296.294-86.835 355.482 0 549.888 294.502 549.888 549.939 0 8.346-0.154 16.691-0.563 24.986 37.786 27.238 70.502 61.286 96.461 100.045z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM711.885 549.632c0.205-4.147 0.307-8.346 0.307-12.544 0-127.898-97.382-275.405-275.456-275.405-54.63 0-105.574 15.974-148.378 43.52 7.578-0.922 15.309-1.331 23.091-1.331 45.363 0 87.091 15.462 120.269 41.472-42.342 0.768-78.131 28.774-90.47 67.174 5.888-1.126 11.981-1.741 18.176-1.741 8.858 0 17.408 1.178 25.498 3.379-44.237 8.909-77.67 48.026-77.67 94.925 0 0.41 0 0.819 0.051 1.178 13.056-7.219 28.006-11.571 43.827-12.083-25.907 17.357-43.008 46.95-43.008 80.589 0 17.766 4.762 34.406 13.107 48.691 47.718-58.624 119.091-97.178 199.526-101.171-1.638 7.066-2.509 14.438-2.509 22.067 0 53.453 43.366 96.819 96.819 96.819 27.853 0 52.992-11.725 70.656-30.566 22.067 4.301 42.803 12.339 61.491 23.45-7.27-22.579-22.579-41.574-42.598-53.555 19.61 2.355 38.246 7.526 55.603 15.258-12.954-19.405-29.44-36.454-48.333-50.125z" />
|
||||
<glyph unicode="" d="M768 761.395h-146.227c-17.306 0-36.608-22.733-36.608-53.197v-105.574h182.835v-150.528h-182.835v-452.096h-172.646v452.045h-156.518v150.579h156.518v88.576c0 127.027 88.166 230.4 209.203 230.4h146.278v-160.205z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM628.378 612.659h-73.882c-8.704 0-18.432-11.52-18.432-26.829v-53.35h92.365v-76.083h-92.365v-228.403h-87.245v228.403h-79.053v76.032h79.053v44.749c0 64.205 44.544 116.378 105.677 116.378h73.882v-80.896z" />
|
||||
<glyph unicode="" d="M842.24 901.12h-660.48c-60.518 0-110.080-49.562-110.080-110.080v-660.48c0-60.57 49.562-110.029 110.029-110.029h334.029v315.75h-105.472v137.523h105.472v68.915c0 106.24 78.438 189.44 178.586 189.44h97.178v-155.341h-86.989c-22.733 0-29.389-13.056-29.389-31.078v-71.885h116.378v-137.574h-116.378v-315.802h167.066c60.57 0 110.029 49.51 110.029 110.029v660.531c0.102 60.518-49.408 110.080-109.978 110.080z" />
|
||||
<glyph unicode="" d="M101.888 686.643c0-76.442 25.549-131.686 75.878-164.096 41.216-26.573 89.088-30.566 113.971-30.566 6.042 0 10.854 0.256 14.234 0.461 0 0-7.885-51.354 30.208-102.195l-1.741 0.051c-65.997 0-281.293-13.824-281.293-190.822 0-180.070 197.734-189.184 237.363-189.184 3.123 0 4.915 0.051 4.915 0.051 0.461 0 3.277-0.102 8.090-0.102 25.446 0 91.238 3.174 152.371 32.922 79.258 38.451 119.501 105.421 119.501 198.912 0 90.368-61.235 144.128-105.984 183.45-27.29 23.962-50.893 44.646-50.893 64.768 0 20.48 17.203 35.891 39.014 55.398 35.226 31.539 68.506 76.442 68.506 161.331 0 74.65-9.677 124.723-69.325 156.467 6.246 3.174 28.211 5.478 39.117 7.014 32.307 4.403 79.565 9.421 79.565 35.789v5.069h-235.418c-2.355-0.051-238.080-8.806-238.080-224.717zM481.946 225.178c4.506-71.987-57.088-125.133-149.555-131.84-93.901-6.912-171.264 35.379-175.77 107.366-2.15 34.56 13.005 68.403 42.752 95.386 30.208 27.29 71.578 44.134 116.685 47.514 5.325 0.307 10.598 0.563 15.872 0.563 86.886 0 145.766-51.098 150.016-118.989zM420.454 735.949c23.091-81.254-11.776-166.195-67.328-181.862-6.4-1.792-13.005-2.714-19.661-2.714-50.944 0-101.376 51.507-120.064 122.47-10.445 39.885-9.626 74.701 2.355 108.237 11.776 32.922 32.922 55.245 59.546 62.72 6.4 1.843 13.056 2.714 19.712 2.714 61.44 0 100.966-25.498 125.44-111.565zM817.203 559.002v153.6h-97.28v-153.6h-153.6v-97.28h153.6v-153.6h97.28v153.6h153.6v97.28h-153.6z" />
|
||||
<glyph unicode="" d="M465.766 599.808c-12.339 43.52-32.307 56.371-63.386 56.371-3.328 0-6.707-0.461-9.933-1.331-13.517-3.84-24.166-15.104-30.106-31.744-6.093-16.896-6.502-34.56-1.178-54.63 9.421-35.84 34.918-61.901 60.672-61.901 3.328 0 6.707 0.461 9.933 1.331 28.006 7.936 45.619 50.842 33.997 91.904zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.514 0 491.52 220.058 491.52 491.52s-220.006 491.52-491.52 491.52zM483.686 249.754c-30.925-15.002-64.154-16.589-77.005-16.589-2.458 0-3.84 0.051-4.045 0.051 0 0-0.973 0-2.509 0-20.070 0-119.962 4.608-119.962 95.59 0 89.395 108.749 96.358 142.080 96.358h0.922c-19.2 25.702-15.206 51.61-15.206 51.61-1.69-0.102-4.198-0.205-7.219-0.205-12.595 0-36.813 1.997-57.6 15.462-25.446 16.333-38.349 44.237-38.349 82.893 0 109.107 119.091 113.51 120.32 113.562h118.938v-2.611c0-13.312-23.859-15.872-40.192-18.125-5.53-0.768-16.589-1.894-19.763-3.482 30.157-16.077 35.021-41.421 35.021-79.104 0-42.854-16.794-65.536-34.611-81.51-11.008-9.83-19.712-17.664-19.712-28.006 0-10.138 11.878-20.582 25.702-32.717 22.579-19.866 53.555-47.053 53.555-92.723 0-47.206-20.326-80.998-60.365-100.454zM743.782 461.261h-77.619v-77.619h-49.152v77.619h-77.619v49.152h77.619v77.568h49.152v-77.619h77.619v-49.101zM421.018 401.869c-2.662 0-5.325-0.102-7.987-0.307-22.733-1.638-43.725-10.189-58.931-24.013-15.053-13.619-22.682-30.771-21.606-48.179 2.253-36.352 41.37-57.702 88.781-54.272 46.746 3.379 77.875 30.259 75.571 66.662-2.202 34.253-31.949 60.109-75.827 60.109z" />
|
||||
<glyph unicode="" d="M441.139 295.526c-26.88-140.954-59.699-276.122-156.979-346.726-30.003 213.094 44.083 373.094 78.49 542.976-58.675 98.816 7.066 297.574 130.867 248.576 152.32-60.262-131.891-367.258 58.88-405.606 199.219-40.038 280.525 345.6 157.030 470.989-178.483 181.146-519.578 4.198-477.594-255.027 10.189-63.386 75.674-82.637 26.163-170.086-114.227 25.293-148.326 115.405-143.923 235.52 7.066 196.557 176.64 334.182 346.726 353.229 215.142 24.115 417.024-78.95 444.826-281.293 31.386-228.352-97.024-475.699-327.117-457.882-62.31 4.762-88.474 35.635-137.37 65.331z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM545.587 344.269c-31.488 2.458-44.698 18.074-69.376 33.075-13.619-71.27-30.157-139.571-79.36-175.206-15.155 107.674 22.323 188.518 39.68 274.33-29.645 49.869 3.584 150.323 66.099 125.594 76.954-30.464-66.662-185.549 29.747-204.954 100.659-20.224 141.722 174.643 79.309 237.978-90.163 91.494-262.451 2.099-241.254-128.922 5.171-32.051 38.195-41.728 13.21-85.965-57.702 12.8-74.957 58.317-72.704 118.989 3.584 99.379 89.242 168.909 175.155 178.586 108.698 12.134 210.688-39.885 224.819-142.131 15.821-115.456-49.101-240.384-165.325-231.373z" />
|
||||
<glyph unicode="" d="M798.72 41.165c-39.731-18.944-75.776-32.307-107.981-39.936-32.256-7.578-67.174-11.469-104.602-11.469-42.547 0-80.128 5.478-112.896 16.333-32.666 10.906-60.518 26.419-83.661 46.438-23.091 20.224-39.117 41.574-48.026 64.256-8.96 22.682-13.414 55.552-13.414 98.611v330.445h-102.861v133.325c36.557 12.032 67.942 29.184 93.952 51.661 26.112 22.426 47.002 49.408 62.822 80.896 15.77 31.488 26.573 71.475 32.563 120.115h132.352v-238.131h220.928v-147.866h-220.928v-241.613c0-54.579 2.867-89.651 8.653-105.216 5.632-15.462 16.282-27.853 31.795-37.12 20.685-12.493 44.186-18.739 70.707-18.739 47.155 0 94.003 15.514 140.595 46.49v-148.48z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.462 0 491.469 220.058 491.469 491.52s-219.955 491.52-491.469 491.52zM643.891 248.73c-20.122-9.574-38.298-16.282-54.477-20.173-16.282-3.84-33.997-5.786-52.89-5.786-21.504 0-40.499 2.765-57.037 8.243-16.486 5.478-30.618 13.363-42.291 23.501-11.674 10.138-19.763 20.992-24.269 32.461s-6.758 28.058-6.758 49.818v166.963h-51.968v67.328c18.432 6.093 34.304 14.797 47.462 26.163 13.158 11.315 23.757 24.934 31.693 40.858 7.987 15.872 13.517 36.147 16.486 60.672h66.867v-120.371h111.565v-74.701h-111.565v-122.061c0-27.597 1.434-45.312 4.352-53.146s8.243-14.080 16.077-18.739c10.445-6.298 22.374-9.523 35.738-9.523 23.808 0 47.514 7.834 71.014 23.552v-75.059z" />
|
||||
<glyph unicode="" d="M259.891 816.64c0-54.426-40.192-98.509-106.291-98.509-62.208 0-102.4 44.083-102.4 98.509 0 55.706 41.523 98.509 105.011 98.509s102.4-42.803 103.68-98.509zM56.422 6.451v633.856h197.018v-633.856h-197.018zM371.354 438.118c0 79.053-2.611 145.152-5.222 202.189h171.11l9.114-88.166h3.891c25.907 41.523 89.446 102.4 195.738 102.4 129.587 0 226.816-86.835 226.816-273.51v-374.63h-197.018v351.283c0 81.664-28.57 137.421-99.84 137.421-54.426 0-86.784-37.581-101.069-73.882-5.222-12.954-6.502-31.078-6.502-49.254v-365.568h-197.018v431.718z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM391.68 257.075h-99.533v320.256h99.533v-320.256zM341.299 616.653c-31.437 0-51.763 22.323-51.763 49.818 0 28.16 20.941 49.766 53.043 49.766s51.763-21.606 52.378-49.766c0.051-27.546-20.275-49.818-53.658-49.818zM755.149 257.075h-99.482v177.51c0 41.267-14.438 69.376-50.432 69.376-27.494 0-43.827-18.995-51.098-37.325-2.611-6.502-3.277-15.718-3.277-24.832v-184.678h-99.584v218.112c0 39.936-1.28 73.37-2.611 102.144h86.426l4.608-44.493h1.946c13.107 20.941 45.21 51.712 98.918 51.712 65.485 0 114.586-43.827 114.586-138.138v-189.389z" />
|
||||
<glyph unicode="" d="M489.728 592.845c-69.53 123.648-143.872 224.41-149.35 231.782-112.179-52.992-195.942-156.314-222.003-280.883 10.547-0.205 178.176-2.202 371.354 49.101zM539.853 457.728c5.325 1.69 10.547 3.226 15.923 4.762-10.086 22.886-21.146 45.773-32.666 68.352-207.155-61.952-405.965-57.498-413.030-57.293-0.154-4.25-0.307-8.448-0.307-12.749 0-103.475 39.117-197.683 103.219-268.954-0.102 0.102-0.307 0.358-0.307 0.358s110.131 195.277 327.168 265.523zM264.755 143.718l0.102 0.154c-3.021 2.355-6.195 4.454-9.114 6.912 5.325-4.301 9.011-7.066 9.011-7.066zM415.642 851.354c-0.358-0.102-0.717-0.154-1.024-0.256 0.563 0.154 0.973 0.205 1.024 0.256v0zM777.677 762.675c-70.861 62.413-163.789 100.352-265.626 100.352-32.717 0-64.41-3.994-94.822-11.366 6.093-8.090 81.613-108.442 150.426-234.65 151.654 56.883 208.998 144.026 210.022 145.664zM512.051-10.24c-260.198 0-471.091 210.893-471.091 471.040s210.893 471.040 471.091 471.040c260.147 0 470.989-210.893 470.989-471.040s-210.842-471.040-470.989-471.040zM580.454 395.008c-236.083-82.278-314.061-247.757-315.597-251.136 68.198-53.299 153.907-85.299 247.194-85.299 55.706 0 108.749 11.315 156.979 31.795-5.939 35.277-29.338 158.515-85.914 305.562-0.87-0.358-1.792-0.614-2.662-0.922zM598.528 557.107c9.421-19.2 18.381-38.656 26.726-58.368 3.021-6.963 5.837-13.875 8.704-20.787 138.957 17.459 275.712-12.186 280.166-13.158-0.922 95.437-35.021 182.989-91.443 251.494-0.819-1.178-65.331-94.362-224.154-159.181zM658.483 414.464c52.838-145.152 74.24-263.27 78.285-287.334 90.368 60.979 154.522 157.696 172.39 269.875-7.936 2.611-120.627 38.298-250.675 17.459z" />
|
||||
<glyph unicode="" d="M525.261 461.67c1.741 0.563 3.482 1.075 5.325 1.638-4.25 9.523-8.96 19.302-14.285 29.85-96.256-28.467-188.416-28.774-204.851-28.57-0.102-1.229-0.154-2.56-0.154-3.789 0-48.384 17.408-94.925 49.050-131.43 10.598 17.050 66.458 100.454 164.915 132.301zM642.816 612.915c-36.403 31.334-82.739 48.538-130.816 48.538-14.49 0-29.082-1.587-43.469-4.762 10.445-14.131 42.598-58.726 72.755-113.818 65.638 25.19 95.334 61.594 101.53 70.042zM390.349 301.414c35.277-27.085 77.312-41.318 121.651-41.318 26.522 0 52.224 5.12 76.544 15.104-3.379 19.507-15.104 78.848-42.086 149.555-108.646-38.4-149.606-110.643-156.109-123.341zM496.896 529.152c-31.13 54.886-63.539 100.096-72.397 112.23-54.63-26.573-94.822-77.158-108.186-136.192h0.819c20.787 0 94.618 1.741 179.763 23.962zM589.517 435.302c23.808-66.099 34.816-121.139 37.888-138.701 43.622 30.72 73.421 77.875 82.381 130.15-8.909 2.662-41.011 11.366-81.51 11.366-13.158 0-26.266-0.973-38.758-2.816zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.514 0 491.52 220.058 491.52 491.52s-220.006 491.52-491.52 491.52zM512 220.262c-132.608 0-240.538 107.878-240.538 240.538s107.878 240.538 240.538 240.538c132.71 0 240.64-107.878 240.64-240.538s-107.93-240.538-240.64-240.538zM559.206 508.109c4.454-9.114 8.55-18.227 12.39-27.136 1.178-2.918 2.509-5.786 3.686-8.704 14.182 1.69 29.286 2.56 45.107 2.56 43.725 0 80.077-6.4 92.211-8.806-1.075 43.52-16.486 85.811-43.622 119.757-8.192-10.598-41.882-49.306-109.773-77.67z" />
|
||||
<glyph unicode="" d="M565.862 560.128l69.837-33.741 105.421 33.741v61.184c0 126.054-102.758 228.608-229.12 228.608-126.31 0-229.069-102.554-229.069-228.608v-321.024c0-29.594-24.166-53.709-53.811-53.709s-53.811 24.115-53.811 53.709v134.4h-175.309v-134.4c0-126.054 102.758-228.608 229.12-228.608s229.12 102.554 229.12 228.608v321.024c0 29.594 24.166 53.709 53.811 53.709 29.696 0 53.862-24.115 53.862-53.709v-61.184zM848.742 434.688v-134.4c0-29.594-24.166-53.709-53.811-53.709-29.696 0-53.862 24.115-53.862 53.709v137.114l-105.421-33.741-69.837 33.741v-137.114c0-126.054 102.758-228.608 229.12-228.608 126.31 0 229.069 102.554 229.069 228.608v134.4h-175.258z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM686.234 487.27c1.126-8.653 1.741-17.51 1.741-26.47 0-111.462-89.19-201.779-199.27-201.779-109.978 0-199.219 90.368-199.219 201.779s89.19 201.728 199.219 201.728c15.821 0 31.13-1.946 45.875-5.427v-114.893c-23.296 8.499-51.917 7.219-78.899-5.734-48.742-23.552-73.523-76.493-55.245-118.323 18.278-41.728 72.602-56.525 121.344-33.024 33.587 16.179 63.232 55.245 63.232 104.192v148.122c4.198-2.355 8.243-4.864 12.237-7.475 37.888-23.808 94.106-55.603 159.846-58.931 25.651-1.331-10.035-65.792-70.861-83.763z" />
|
||||
<glyph unicode="" d="M512 911.36c-248.832 0-450.56-201.728-450.56-450.56 0-113.766 42.138-217.651 111.718-296.909 70.451 70.451 167.014 110.029 277.862 106.445 141.363-4.557 252.928-71.526 316.928-180.378 117.555 81.306 194.611 217.037 194.611 370.842 0 248.832-201.779 450.56-450.56 450.56zM732.314 300.186c-7.936-13.158-24.934-17.203-37.99-9.267-104.346 63.744-235.622 78.131-390.246 42.854-14.848-3.43-29.747 5.888-33.075 20.838-3.43 14.848 5.837 29.696 20.787 33.075 169.165 38.656 314.317 21.965 431.36-49.459 13.005-7.987 17.152-24.986 9.165-38.042zM786.586 427.981c-9.984-16.282-31.283-21.35-47.565-11.315-119.296 73.318-301.363 94.566-442.573 51.712-18.33-5.53-37.683 4.813-43.213 23.040-5.53 18.33 4.813 37.683 23.040 43.213 161.331 48.998 361.882 25.293 498.995-58.982 16.282-10.086 21.453-31.283 11.315-47.667zM791.296 560.384c-143.104 85.094-379.29 92.826-515.942 51.405-21.914-6.707-45.107 5.734-51.866 27.648-6.605 21.965 5.786 45.21 27.75 51.814 156.928 47.667 417.69 38.451 582.451-59.392 19.763-11.725 26.266-37.222 14.541-56.934-11.725-19.712-37.12-26.163-56.934-14.541zM448.102 135.629c-63.386 2.048-116.173-22.682-154.675-68.915 64.717-35.942 139.213-56.474 218.573-56.474 38.246 0 75.418 4.762 110.848 13.773-33.997 69.734-93.235 109.005-174.746 111.616z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52 0-124.109 45.978-237.466 121.856-323.891 76.902 76.902 182.221 120.064 303.104 116.173 154.214-5.018 275.968-78.029 345.754-196.813 128.256 88.678 212.326 236.749 212.326 404.531 0 271.462-220.058 491.52-491.52 491.52zM752.282 285.594c-8.653-14.336-27.187-18.739-41.472-10.086-113.869 69.53-257.024 85.248-425.677 46.746-16.179-3.738-32.461 6.4-36.096 22.733-3.738 16.128 6.349 32.41 22.63 36.096 184.576 42.189 342.886 23.962 470.579-53.965 14.234-8.704 18.79-27.29 10.035-41.523zM811.622 425.011c-10.906-17.818-34.202-23.347-51.917-12.39-130.253 80.026-328.806 103.219-482.867 56.474-20.019-6.042-41.114 5.274-47.104 25.139-6.042 20.019 5.222 41.114 25.139 47.104 175.974 53.504 394.752 27.597 544.358-64.307 17.766-11.059 23.347-34.202 12.39-52.019zM816.691 569.446c-156.16 92.826-413.747 101.274-562.842 56.064-23.962-7.322-49.254 6.195-56.525 30.157-7.219 23.962 6.298 49.357 30.157 56.525 171.213 51.968 455.68 41.933 635.443-64.819 21.555-12.8 28.672-40.602 15.923-62.157-12.851-21.453-40.602-28.518-62.157-15.77zM442.317 106.086c-69.171 2.202-126.72-24.73-168.755-75.162 70.605-39.27 151.91-61.645 238.438-61.645 41.728 0 82.227 5.222 120.934 15.002-37.069 76.134-101.734 118.938-190.618 121.805z" />
|
||||
<glyph unicode="" d="M870.656 306.176c-39.885 28.109-89.651 26.112-117.965-14.080s-226.202-288.41-550.4-185.344c12.186-10.65 25.088-20.787 38.605-30.31 212.685-149.76 506.47-98.765 656.282 113.971 28.262 40.192 13.312 87.706-26.522 115.763zM244.992 337.92c-20.685 44.595-136.653 340.122 114.688 569.344-15.36-5.274-30.515-11.315-45.517-18.278-236.083-109.312-338.79-389.274-229.478-625.357 20.634-44.646 69.274-55.501 113.51-35.021 44.237 20.531 67.43 64.666 46.797 109.312zM554.291 930.714c-48.947 4.403-82.637-32.256-87.040-80.845-4.352-48.589 22.272-90.675 71.219-95.078 48.998-4.403 362.854-51.712 435.712-384.051 3.174 15.923 5.427 32.102 6.963 48.589 23.296 259.072-167.782 488.038-426.854 511.386zM352.819 433.715c-13.466-31.795-15.667-62.106-4.813-67.738 7.475-3.891 19.149 5.018 30.106 21.299 4.352-17.818 15.104-33.843 30.464-46.746-16.077-5.939-26.624-15.667-26.624-26.675 0-18.074 28.467-32.717 63.539-32.717 31.642 0 57.856 11.878 62.72 27.494 1.28 0 6.298 0 7.526 0 4.915-15.616 31.078-27.494 62.771-27.494 35.123 0 63.539 14.643 63.539 32.717 0 11.008-10.496 20.685-26.624 26.675 15.309 12.902 26.112 28.928 30.413 46.746 11.008-16.282 22.63-25.19 30.157-21.299 10.854 5.632 8.704 35.942-4.864 67.738-10.598 24.883-24.986 43.315-35.942 47.411 0.154 1.536 0.256 3.174 0.256 4.813 0 9.626-2.714 18.534-7.322 25.805 0.102 0.563 0.102 1.126 0.102 1.69 0 4.454-1.075 8.602-2.867 12.186-2.765 64.819-45.005 116.378-113.357 116.378s-110.643-51.558-113.408-116.378c-1.792-3.635-2.867-7.782-2.867-12.237 0-0.563 0-1.126 0.051-1.69-4.506-7.219-7.219-16.128-7.219-25.805 0-1.638 0.102-3.226 0.205-4.813-10.906-4.096-25.344-22.477-35.942-47.36z" />
|
||||
<glyph unicode="" d="M778.24 460.8c0-147.046-119.245-266.24-266.24-266.24-147.046 0-266.24 119.194-266.24 266.24 0 17.51 1.741 34.611 5.018 51.2h-179.098v-353.894c0-75.981 61.542-137.626 137.626-137.626h605.389c75.981 0 137.626 61.594 137.626 137.626v353.894h-179.046c3.226-16.589 4.966-33.69 4.966-51.2zM814.694 901.12h-605.389c-76.032 0-137.626-61.645-137.626-137.626v-149.094h222.925c48.179 68.096 127.59 112.64 217.395 112.64s169.216-44.544 217.395-112.64h222.925v149.094c0 75.981-61.645 137.626-137.626 137.626zM882.022 731.136c0-13.568-11.059-24.576-24.576-24.576h-73.677c-13.517 0-24.576 11.059-24.576 24.576v73.728c0 13.568 11.11 24.576 24.576 24.576h73.677c13.568 0 24.576-11.059 24.576-24.576v-73.728zM675.84 460.8c0 90.522-73.37 163.84-163.84 163.84s-163.84-73.318-163.84-163.84 73.37-163.84 163.84-163.84 163.84 73.318 163.84 163.84z" />
|
||||
<glyph unicode="" d="M312.781 926.618l-292.301-182.067 200.243-167.885 291.277 189.184-199.219 160.768zM688.742 153.907c-5.222 0-10.394 1.792-14.592 5.325l-162.15 134.451-162.15-134.502c-4.198-3.482-9.421-5.325-14.592-5.325-4.352 0-8.704 1.178-12.493 3.686l-120.115 78.592v-46.387l309.35-194.765 309.35 194.816v46.387l-120.115-78.592c-3.789-2.509-8.141-3.686-12.493-3.686zM1003.52 744.55l-292.301 182.067-199.219-160.768 291.226-189.133 200.294 167.834zM512 394.701l180.582-149.914 288.87 188.826-178.176 143.053-291.277-181.965zM331.418 244.787l180.582 149.914-291.226 182.016-178.176-143.104 288.819-188.826z" />
|
||||
<glyph unicode="" d="M887.757 752.23c0 58.88-88.678 65.434-88.678 65.434l-208.333 13.107c0 0-4.454 56.73-46.592 76.39-42.086 19.61-88.371 13.67-121.6 13.312s-41.165-42.803-41.165-82.842 0.768-86.118 0.768-115.2c0-52.019-22.886-74.189-80.179-74.189h-118.118c-33.024 2.15-58.778-3.277-58.778-30.003 0-26.675 38.912-254.566 92.262-307.149 30.976-30.515 220.365-51.917 260.25-51.917s26.624 117.811 37.683 117.811 23.296-66.56 86.118-82.125c62.822-15.667 146.688-12.749 151.142-57.446 5.786-58.982 11.059-135.322-27.75-140.749l-87.808-3.482c-60.211 4.352-44.083 70.093-17.51 70.093s39.885 1.075 39.885 1.075l3.328 71.987c0 0-137.882 16.282-143.77-76.749-5.325-84.992 9.267-125.082 19.968-133.786 10.752-8.806 29.286-25.805 198.144-25.805 237.926 0 150.733 693.402 150.733 752.23zM790.528 444.365c-9.318-9.933-43.11 16.435-75.366 16.435-32.307 0-67.174-17.101-75.366-5.888-8.141 11.264 7.526 101.99 68.352 101.99s91.75-102.554 82.381-112.538zM297.114 759.501c0 11.622 3.021 152.781 3.021 152.781l-179.507-176.077c0 0 124.006 0 148.326 0 24.422 0 28.16 11.622 28.16 23.296z" />
|
||||
<glyph unicode="" d="M286.669 535.45c0 83.814 22.221 137.114 96.717 149.094 26.010 5.12 80.179 3.277 114.637 3.277v-128c0-1.126 0.154-3.226 0.461-4.301 1.382-5.12 6.042-8.96 11.622-8.96 3.174 0 6.093 1.638 9.165 4.608l319.232 319.181-451.994 0.051c-188.109 0-284.109-108.339-284.109-310.579v-424.346l184.269 184.422v215.552zM737.382 601.651v-215.501c0-83.814-22.272-137.165-96.768-149.094-26.010-5.12-80.128-3.277-114.586-3.277v128c0 1.126-0.205 3.226-0.461 4.301-1.434 5.171-6.144 8.96-11.725 9.011-3.174 0-6.042-1.638-9.165-4.659l-319.232-319.13 452.096-0.102c188.058 0 284.058 108.288 284.058 310.579v424.346l-184.218-184.474z" />
|
||||
<glyph unicode="" d="M955.955 356.454c6.81 31.949 10.394 65.126 10.394 99.226 0 255.283-201.165 462.285-449.331 462.285-26.163 0-51.866-2.355-76.8-6.758-40.243 26.010-87.706 41.114-138.701 41.114-143.872 0-260.557-120.064-260.557-268.134 0-49.459 13.107-95.795 35.84-135.578-5.939-30.003-9.114-61.082-9.114-92.928 0-255.283 201.216-462.285 449.331-462.285 28.109 0 55.654 2.662 82.278 7.731 36.659-20.275 78.592-31.795 123.136-31.795 143.974 0 260.608 120.013 260.608 268.083 0 42.752-9.779 83.2-27.085 119.040zM747.469 234.701c-20.787-30.259-51.507-54.272-91.29-71.27-39.424-16.845-86.579-25.395-140.39-25.395-64.563 0-118.63 11.674-160.87 34.765-30.208 16.742-55.091 39.475-73.984 67.482-19.098 28.365-28.774 56.474-28.774 83.558 0 16.947 6.298 31.642 18.739 43.674 12.339 11.878 28.109 17.971 46.899 17.971 15.411 0 28.774-4.762 39.578-14.131 10.342-9.062 19.2-22.426 26.317-39.578 7.987-18.79 16.64-34.611 25.805-47.104 8.806-11.981 21.504-22.118 37.683-30.003 16.282-7.885 38.246-11.93 65.28-11.93 37.12 0 67.584 8.141 90.47 24.269 22.426 15.77 33.28 34.611 33.28 57.702 0 18.227-5.683 32.614-17.357 43.827-12.237 11.725-28.416 20.89-47.974 27.187-20.429 6.554-48.179 13.619-82.432 20.992-46.643 10.291-86.272 22.477-117.76 36.25-32.154 14.029-58.163 33.587-77.158 58.061-19.302 24.781-29.082 56.013-29.082 92.672 0 34.918 10.24 66.406 30.515 93.542 20.122 26.931 49.408 47.923 87.194 62.31 37.325 14.182 81.715 21.402 131.891 21.402 40.141 0 75.418-4.813 104.858-14.182 29.594-9.523 54.579-22.323 74.189-38.093 19.763-15.923 34.458-32.922 43.725-50.483 9.318-17.869 14.029-35.584 14.029-52.736 0-16.538-6.195-31.539-18.432-44.646-12.288-13.158-27.853-19.814-46.131-19.814-16.589 0-29.645 4.198-38.707 12.39-8.397 7.629-17.152 19.61-26.778 36.71-11.213 21.965-24.781 39.219-40.294 51.354-15.155 11.827-40.346 17.869-75.059 17.869-32.205 0-58.419-6.656-77.875-19.814-18.79-12.698-27.853-27.187-27.853-44.339 0-10.547 2.918-19.354 8.96-26.88 6.4-8.038 15.36-15.104 26.778-20.941 11.776-6.093 23.962-10.957 36.147-14.438 12.493-3.533 33.434-8.806 62.208-15.667 36.352-8.038 69.734-17.050 99.277-26.726 29.952-9.83 55.808-22.016 76.902-36.096 21.504-14.438 38.554-32.973 50.637-55.040 12.083-22.221 18.227-49.613 18.227-81.408 0.051-38.195-10.496-72.858-31.386-103.27z" />
|
||||
<glyph unicode="" d="M622.797 468.326c-11.776 7.885-26.317 14.694-43.008 20.275-16.589 5.427-35.277 10.496-55.654 14.95-16.077 3.84-27.802 6.81-34.816 8.806-6.81 1.946-13.619 4.659-20.224 8.090-6.4 3.277-11.469 7.219-15.002 11.725-3.379 4.25-5.018 9.114-5.018 15.053 0 9.626 5.12 17.766 15.616 24.832 10.906 7.373 25.6 11.059 43.622 11.059 19.405 0 33.536-3.328 42.035-9.933 8.704-6.861 16.333-16.486 22.528-28.774 5.478-9.626 10.291-16.282 15.104-20.582 5.018-4.608 12.288-6.963 21.606-6.963 10.291 0 18.995 3.738 25.907 11.11 6.81 7.373 10.291 15.77 10.291 24.986 0 9.626-2.714 19.558-7.885 29.542-5.12 9.83-13.414 19.405-24.422 28.314-11.008 8.806-24.986 15.974-41.574 21.299-16.486 5.325-36.25 7.936-58.726 7.936-28.109 0-52.941-3.994-73.83-11.93-21.248-8.090-37.683-19.814-48.947-34.918-11.315-15.206-17.050-32.87-17.050-52.429 0-20.48 5.478-37.99 16.282-51.866 10.65-13.773 25.19-24.678 43.213-32.614 17.664-7.68 39.834-14.541 65.946-20.275 19.2-4.096 34.765-8.038 46.182-11.725 10.957-3.482 20.070-8.653 26.829-15.258 6.502-6.298 9.677-14.285 9.677-24.525 0-12.902-6.093-23.45-18.637-32.307-12.8-9.011-29.85-13.568-50.688-13.568-15.104 0-27.443 2.253-36.557 6.707-9.062 4.403-16.179 10.035-21.094 16.742-5.12 7.014-9.984 15.872-14.438 26.419-3.994 9.626-8.96 17.101-14.746 22.17-6.093 5.274-13.517 7.936-22.17 7.936-10.547 0-19.354-3.379-26.266-10.035-6.963-6.758-10.496-14.95-10.496-24.474 0-15.155 5.427-30.925 16.077-46.746 10.598-15.77 24.525-28.467 41.472-37.837 23.654-12.902 53.965-19.456 90.061-19.456 30.106 0 56.525 4.813 78.643 14.182 22.323 9.574 39.475 22.989 51.098 39.885 11.725 17.050 17.613 36.506 17.613 57.805 0 17.869-3.379 33.126-10.189 45.619-6.758 12.339-16.282 22.733-28.365 30.771zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.514 0 491.52 220.058 491.52 491.52s-220.006 491.52-491.52 491.52zM629.811 185.549c-24.883 0-48.384 6.451-68.966 17.818-14.95-2.867-30.31-4.352-46.080-4.352-138.957 0-251.648 115.968-251.648 258.918 0 17.869 1.741 35.226 5.12 52.070-12.749 22.272-20.070 48.179-20.070 75.878 0 82.893 65.331 150.17 145.92 150.17 28.57 0 55.142-8.448 77.67-23.040 13.926 2.509 28.314 3.789 43.008 3.789 138.957 0 251.648-115.968 251.648-258.918 0-19.046-1.997-37.632-5.786-55.552 9.677-20.122 15.104-42.701 15.104-66.714-0.051-82.842-65.331-150.067-145.92-150.067z" />
|
||||
<glyph unicode="" d="M433.562 928.512c-222.771-37.376-392.602-231.014-392.602-464.435 0-116.019 42.035-222.157 111.565-304.179 164.915 79.821 280.166 260.352 281.037 470.528v298.086zM512.051 345.19c-29.338-121.498-116.992-225.331-226.202-294.349 67.123-36.813 144.179-57.754 226.15-57.754 82.022 0 159.027 20.941 226.202 57.805-109.21 69.018-196.813 172.8-226.15 294.298zM590.541 632.678c0-211.149 115.507-392.653 280.934-472.781 69.53 82.125 111.565 188.211 111.565 304.179 0 233.37-169.728 427.008-392.499 464.384v-295.782z" />
|
||||
<glyph unicode="" d="M761.805 457.318c-14.029 4.25-23.706 7.219-16.282 26.010 15.923 40.806 17.562 75.981 0.307 101.12-32.41 47.104-120.986 44.595-222.566 1.229 0 0.051-31.898-14.182-23.757 11.622 15.616 51.098 13.261 93.901-11.059 118.63-55.091 56.115-201.626-2.202-327.373-130.048-94.106-95.795-148.736-197.325-148.736-285.133 0-167.936 211.558-280.269 418.56-280.269 271.36 0 451.84 170.701 451.84 298.086 0 77.005-63.693 120.678-120.934 138.752zM431.462 95.744c-165.171-16.333-307.712 58.675-318.464 167.731-10.701 109.005 114.483 210.688 279.654 227.123 165.222 16.435 307.763-58.624 318.464-167.629s-114.483-210.79-279.654-227.226zM1031.27 594.074c-0.102 169.574-137.626 307.046-307.2 307.046-19.814 0-35.84-16.026-35.84-35.84s16.026-35.789 35.84-35.789c130.048 0 235.52-105.472 235.52-235.571 0-19.814 16.026-35.84 35.84-35.84s35.84 16.026 35.84 35.84c0 0 0 0.102 0 0.154zM888.832 599.296c-16.384 79.974-79.462 143.002-159.386 159.386-19.354 3.942-38.349-8.499-42.291-27.904-3.994-19.354 8.499-38.298 27.853-42.291 52.019-10.65 92.979-51.61 103.578-103.578 3.994-19.405 22.938-31.846 42.342-27.904 19.354 3.994 31.898 22.938 27.904 42.291zM346.726 383.846c-66.509-13.363-111.411-69.171-100.25-124.621 11.11-55.45 74.086-89.549 140.646-76.134 66.509 13.363 111.411 69.171 100.25 124.621-11.11 55.398-74.086 89.498-140.646 76.134z" />
|
||||
<glyph unicode="" d="M862.976 725.248c13.926-26.317 20.838-58.829 20.838-97.894 0-88.678-37.376-160.256-112.026-214.579-74.752-54.374-179.149-81.51-313.242-81.51h-31.386c-23.603 0-47.206-18.534-52.48-41.216l-37.683-160.717c-5.274-22.733-28.877-41.318-52.48-41.318h-68.71l-6.144-26.266c-5.325-22.682 9.626-41.267 33.178-41.267h110.029c23.603 0 47.258 18.534 52.429 41.267l37.734 160.768c5.325 22.579 28.877 41.165 52.48 41.165h31.386c134.093 0 238.49 27.136 313.19 81.562 74.803 54.272 112.23 125.798 112.23 214.579 0 39.066-6.912 71.578-20.838 97.843-13.875 26.112-34.099 47.411-60.467 63.642-2.816 1.69-5.12 2.355-8.038 3.942zM268.442 196.915l37.734 160.768c5.325 22.579 28.826 41.165 52.48 41.165h31.386c134.093 0 238.49 27.136 313.19 81.562 74.701 54.323 112.077 125.85 112.077 214.579 0 39.066-6.912 71.578-20.89 97.843-13.875 26.112-34.099 47.411-60.416 63.642-26.982 16.486-58.675 27.955-95.386 34.662-36.71 6.605-79.77 9.984-129.229 9.984h-229.12c-23.654 0-47.258-18.432-52.582-41.165l-154.931-662.989c-5.325-22.733 9.626-41.318 33.178-41.318h110.029c23.654 0 47.309 18.534 52.48 41.267zM358.349 581.581l33.075 140.749c5.325 22.682 28.928 41.216 52.429 41.216h36.045c41.933 0 73.779-7.066 95.078-21.094 21.35-13.926 32.051-35.379 32.051-64.512 0-43.981-16.64-77.978-49.664-101.837-33.075-23.808-79.053-35.84-138.445-35.84h-27.238c-23.654 0-38.554 18.637-33.331 41.318z" />
|
||||
<glyph unicode="" d="M297.37 879.514c-158.208-81.357-256.41-241.715-256.41-419.686 0-32.461 4.096-65.382 11.315-98.202l406.989 370.586c-43.418 39.475-157.491 143.258-161.894 147.302zM706.202 889.549c-61.491 27.955-126.822 42.291-194.253 42.291-47.821 0-94.976-7.936-140.8-22.579l335.002-304.691v284.979zM777.83 848.026v-543.642h178.432c17.562 50.278 26.726 102.554 26.726 155.443 0.051 155.238-77.978 300.646-205.158 388.198zM74.854 285.286c34.509-86.733 95.13-161.331 172.442-214.221v371.2l-104.653-95.283c-35.738-32.512-65.587-59.699-67.789-61.696zM318.976 29.491c47.872-21.606 97.946-34.97 149.504-39.731h86.477c154.573 14.438 293.222 105.933 368.589 242.944h-604.57v-203.213z" />
|
||||
<glyph unicode="" d="M34.406 283.853l16.794 71.68-16.794 74.086c-0.461 2.202-4.659 3.891-9.83 3.891-5.222 0-9.421-1.69-9.83-3.891l-14.746-74.086 14.797-71.68c0.41-2.253 4.608-3.891 9.83-3.891 5.12 0 9.318 1.638 9.779 3.891zM139.366 244.070l14.234 110.797-14.234 171.366c-0.41 4.403-5.734 7.834-12.186 7.834-6.502 0-11.827-3.379-12.134-7.782l-12.646-171.418 12.646-110.797c0.307-4.352 5.632-7.731 12.134-7.731 6.451-0.051 11.776 3.379 12.186 7.731zM244.122 245.862l11.878 108.954-11.878 228.198c-0.307 5.325-6.656 9.574-14.387 9.574-7.782 0-14.131-4.198-14.387-9.574l-10.547-228.198 10.547-109.005c0.256-5.325 6.605-9.523 14.387-9.523 7.731 0 14.080 4.198 14.387 9.574zM348.672 247.501l9.728 107.264-9.728 229.888c-0.256 6.349-7.424 11.366-16.384 11.366-9.011 0-16.179-5.018-16.435-11.366l-8.653-229.888 8.704-107.264c0.154-6.298 7.373-11.315 16.384-11.315 8.96 0 16.128 4.915 16.384 11.315zM453.12 248.832l7.68 105.882-7.68 263.578c-0.154 7.27-8.397 13.158-18.33 13.158s-18.125-5.888-18.278-13.158l-6.912-263.475c0-0.154 6.912-105.933 6.912-105.933 0.154-7.168 8.346-13.056 18.278-13.056 9.933-0.051 18.176 5.786 18.33 13.005zM526.234 235.725c0.307 0 363.469-0.205 365.824-0.205 72.909 0 131.942 57.139 131.942 127.642s-59.034 127.642-131.942 127.642c-18.125 0-35.328-3.533-51.046-9.933-10.496 114.995-110.285 205.21-231.936 205.21-29.747 0-58.778-5.632-84.378-15.258-9.933-3.738-12.646-7.526-12.698-14.95v-405.043c0.102-7.834 6.349-14.336 14.234-15.104z" />
|
||||
<glyph unicode="" d="M488.755 89.19h48.845v-109.67c333.363 35.021 511.078 365.619 482.355 598.579-28.877 232.96-279.091 393.83-560.333 359.373-281.088-34.56-484.71-251.341-455.885-484.301 26.214-211.968 235.52-364.186 485.018-363.981zM803.584 314.419h-93.798v253.594c0 10.138-0.922 19.763-2.714 28.518-1.485 7.629-4.301 13.978-8.397 19.405-3.891 5.12-9.626 9.318-16.896 12.493-7.782 3.379-18.586 5.12-31.898 5.12-27.494 0-48.998-7.168-64-21.248-15.002-13.978-22.17-32.41-22.17-56.269v-241.613h-93.798v253.594c0 10.547-0.973 20.224-2.97 28.826-1.741 7.782-4.659 14.285-8.858 19.814-3.942 5.171-9.165 9.165-16.077 12.134-7.373 3.123-17.408 4.762-29.747 4.762-15.974 0-29.696-2.97-40.653-8.806-11.418-6.093-20.787-13.414-27.75-21.709-7.014-8.397-12.134-17.101-15.258-25.856-3.174-8.806-4.71-15.923-4.71-21.146v-241.613h-93.747v393.984h90.010v-30.771c29.338 26.010 66.816 39.168 111.616 39.168 26.112 0 50.176-5.222 71.629-15.514 15.667-7.526 28.365-18.79 37.786-33.485 11.776 12.698 25.805 23.194 41.626 31.181 23.296 11.878 49.101 17.818 76.8 17.818 20.582 0 39.578-2.15 56.525-6.4 17.51-4.454 32.922-11.571 45.722-21.146 13.21-9.882 23.603-22.835 30.925-38.451 7.219-15.36 10.906-33.741 10.906-54.682v-281.702z" />
|
||||
<glyph unicode="" d="M413.235 496.538c0 0 96.922 7.526 96.922 125.952s-79.309 176.23-179.712 176.23h-330.445v-661.811h330.445c0 0 201.677-6.605 201.677 195.277 0.051 0 8.806 164.352-118.886 164.352zM145.613 681.114h184.832c0 0 44.902 0 44.902-68.864s-26.419-78.848-56.422-78.848h-173.312v147.712zM321.075 254.515h-175.462v176.896h184.832c0 0 66.97 0.922 66.97-90.88 0-77.414-50.022-85.453-76.339-86.016zM801.178 630.323c-244.224 0-244.019-254.208-244.019-254.208s-16.742-252.979 244.019-252.979c0 0 217.293-13.005 217.293 176.026h-111.718c0 0 3.686-71.219-101.837-71.219 0 0-111.77-7.782-111.77 115.098h329.062c0.051-0.051 36.045 287.283-221.030 287.283zM900.557 431.36h-208.589c0 0 13.67 102.042 111.77 102.042 97.997 0 96.819-102.042 96.819-102.042zM926.618 759.757h-262.042v-81.51h261.99v81.51z" />
|
||||
<glyph unicode="" d="M610.509 931.84c-195.123 0-355.635-150.682-371.302-341.709-115.866-45.21-198.246-158.003-198.246-289.638 0-171.366 139.52-310.733 310.938-310.733 131.942 0 244.992 82.586 290.048 198.758 190.771 16.026 341.094 176.282 341.094 371.046 0 205.261-167.066 372.275-372.531 372.275zM351.898 93.338c-114.278 0-207.258 92.877-207.258 207.155 0 75.878 41.062 142.336 102.144 178.432 31.232-140.954 142.694-252.16 283.904-283.136-36.045-61.235-102.707-102.451-178.79-102.451zM355.226 507.597c111.514-1.741 201.882-91.904 203.878-203.315-102.298 20.531-183.142 101.12-203.878 203.315zM662.784 304.384c-2.099 168.499-139.008 305.050-307.661 306.79 24.064 118.886 129.382 208.691 255.334 208.691 143.667 0 260.506-116.787 260.506-260.301 0.051-125.696-89.446-230.861-208.179-255.181zM147.456 710.912c58.624 0 106.24 47.616 106.24 106.138 0 58.522-47.616 106.138-106.24 106.138-58.573 0-106.189-47.616-106.189-106.138 0-58.522 47.616-106.138 106.189-106.138zM147.456 875.622c32.307 0 58.624-26.266 58.624-58.573 0-32.256-26.266-58.573-58.624-58.573-32.256 0-58.573 26.266-58.573 58.573 0 32.307 26.317 58.573 58.573 58.573z" />
|
||||
<glyph unicode="" d="M564.992 410.573c-15.77 9.165-37.632 9.165-55.45 9.165h-58.419v-120.422h53.658c19.866 0 45.158-1.382 62.259 10.598 15.77 10.598 24.627 31.334 24.627 51.098 0 18.381-10.957 40.346-26.675 49.562zM542.925 513.331c13.005 9.882 19.814 27.597 19.814 43.827 0 17.664-8.192 34.611-23.194 43.776-15.77 9.165-44.493 7.066-62.976 7.066h-25.446v-105.984h33.638c19.2 0.051 41.779-1.382 58.163 11.315zM830.72 952.32h-637.491c-95.386 0-172.749-77.363-172.749-172.8v-637.389c0-95.437 77.363-172.8 172.749-172.8h637.44c95.437 0 172.8 77.363 172.8 172.8v637.389c0.051 95.437-77.312 172.8-172.749 172.8zM538.675 209.562h-200.806v484.71h219.392c63.539 0 122.214-40.448 122.214-111.821 0-55.091-30.771-92.826-69.99-104.602v-1.382c58.214-11.981 99.738-43.622 99.738-119.859 0-70.554-48.077-147.046-170.547-147.046z" />
|
||||
<glyph unicode="" d="M457.933 393.574c-127.898 48.282-235.315 134.502-242.432 246.835-4.557 71.629 13.517 134.246 60.109 186.88l-190.259-45.414c-38.246-9.165-61.798-47.565-52.685-85.811l158.31-661.914c9.165-38.246 47.514-61.798 85.76-52.634l81.459 19.456c-31.59 10.496-86.272 30.464-138.65 58.419l75.93 172.237c0 0 89.344-79.616 217.702-79.616 128.307 0 185.395 150.63-55.245 241.562zM991.283 225.536l-158.208 661.914c-9.165 38.246-47.565 61.798-85.811 52.634l-136.294-32.614c34.765-5.478 103.526-20.531 179.405-60.314l-59.341-164.557c0 0-49.408 55.194-181.914 61.901-125.901 6.349-195.994-129.843 49.664-210.176 188.058-61.491 248.218-180.019 245.094-289.638-1.638-56.986-21.606-103.373-44.698-138.291l139.52 33.331c38.195 9.165 61.747 47.565 52.582 85.811z" />
|
||||
<glyph unicode="" d="M505.446 952.269c-271.462-3.635-488.55-226.611-484.915-498.022 3.635-271.462 226.611-488.55 498.074-484.966 271.411 3.686 488.55 226.611 484.915 498.074-3.738 271.462-226.714 488.55-498.074 484.915zM517.171 72.806c-214.272-2.918-390.298 168.499-393.216 382.822-2.816 214.272 168.55 390.298 382.874 393.165 214.272 2.867 390.298-168.499 393.165-382.822s-168.499-390.246-382.822-393.165zM279.194 230.195c0 0 233.933 32.102 333.722 131.891 99.789 99.789 131.891 333.722 131.891 333.722s-233.882-32.154-333.67-131.891c-99.789-99.84-131.942-333.722-131.942-333.722zM461.568 513.434c41.933 41.984 122.112 71.731 190.925 90.214-18.483-68.659-48.384-149.453-90.061-191.078-27.853-27.853-73.011-27.853-100.864 0-27.904 27.853-27.904 73.011 0 100.864z" />
|
||||
<glyph unicode="" d="M1009.613 958.464c-34.816 34.867-68.096 1.894-180.992-52.326-302.080-145.254-828.621-440.269-828.621-440.269l452.352-64.666 64.666-452.403c0 0 295.066 526.541 440.269 828.621 54.323 112.947 87.194 146.125 52.326 181.043zM901.12 842.035l-328.602-610.15-33.331 277.299 361.933 332.851z" />
|
||||
<glyph unicode="" d="M512 901.12c-243.149 0-440.32-197.171-440.32-440.32 0-243.2 197.171-440.32 440.32-440.32 243.2 0 440.32 197.12 440.32 440.32 0 243.149-197.12 440.32-440.32 440.32zM547.84 104.192v197.888h-71.68v-197.888c-169.318 16.794-303.923 151.45-320.768 320.768h197.888v71.68h-197.888c16.845 169.318 151.45 303.974 320.768 320.768v-197.888h71.68v197.888c169.37-16.794 303.974-151.45 320.768-320.768h-197.888v-71.68h197.888c-16.794-169.318-151.398-303.974-320.768-320.768z" />
|
||||
<glyph unicode="" d="M768 307.2c-35.226 0-67.482-11.93-93.389-31.846l-267.213 160.307c1.28 8.192 2.202 16.589 2.202 25.139 0 8.602-0.922 16.947-2.202 25.139l267.213 160.307c25.907-19.917 58.163-31.846 93.389-31.846 84.787 0 153.6 68.762 153.6 153.6s-68.813 153.6-153.6 153.6-153.6-68.762-153.6-153.6c0-8.55 0.922-16.947 2.253-25.139l-267.213-160.358c-25.907 19.968-58.214 31.898-93.44 31.898-84.838 0-153.6-68.762-153.6-153.6 0-84.787 68.762-153.6 153.6-153.6 35.226 0 67.533 11.93 93.44 31.846l267.213-160.307c-1.331-8.192-2.253-16.538-2.253-25.139 0-84.787 68.813-153.6 153.6-153.6s153.6 68.813 153.6 153.6-68.813 153.6-153.6 153.6z" />
|
||||
<glyph unicode="" d="M572.467 237.875c0 74.291 56.32 115.354 148.173 176.179 112.384 74.496 252.16 167.168 252.16 387.021 0 19.814-16.179 35.84-36.198 35.84h-175.667c-24.832 45.875-98.714 94.925-248.934 94.925-150.17 0-224.102-49.050-248.883-94.925h-175.667c-20.019 0-36.25-16.026-36.25-35.84 0-219.853 139.827-312.525 252.211-386.97 91.904-60.826 148.224-101.888 148.224-176.179v-67.123c-96.512-10.752-167.424-46.438-167.424-88.883 0-50.893 101.99-92.16 227.789-92.16 125.85 0 227.84 41.267 227.84 92.16 0 42.445-70.912 78.131-167.424 88.883v67.072zM714.598 496.64c29.082 61.44 52.070 144.742 55.757 268.595h128.461c-12.237-138.189-95.334-208.026-184.218-268.595zM512 869.069c139.878 0.051 194.56-57.139 194.509-78.336 0-21.35-54.528-78.49-194.509-78.592-139.878 0.154-194.458 57.242-194.458 78.592-0.051 21.197 54.579 78.438 194.458 78.336zM125.235 765.235h128.41c3.738-123.853 26.726-207.155 55.757-268.595-88.883 60.57-171.93 130.406-184.166 268.595z" />
|
||||
<glyph unicode="" d="M987.699 952.013c-5.53 16.128-22.989 24.627-38.963 19.046s-24.371-23.245-18.79-39.424c47.104-136.704-46.387-238.797-117.606-293.427l-28.826 41.677c-9.626 13.926-31.334 25.549-48.128 25.805l-161.536-0.768c-16.794 0.256-41.779-7.526-55.603-17.254l-475.955-337.306c-23.040-16.333-28.723-48.486-12.544-71.834l216.371-312.678c16.128-23.347 42.086-20.531 65.126-4.25l475.955 337.357c13.824 9.728 29.542 30.925 35.123 47.002l50.586 161.075c5.478 16.077 2.15 40.653-7.475 54.579l-17.613 25.395c95.693 73.984 195.021 204.902 139.878 365.005zM766.259 472.986c-36.915-26.163-87.757-17.050-113.613 20.275-25.805 37.325-16.845 88.781 20.070 114.944 29.286 20.787 67.328 19.251 94.72-0.922-13.824-8.397-23.245-13.21-25.037-14.080-15.258-7.27-21.811-25.702-14.592-41.165 5.222-11.213 16.179-17.818 27.699-17.818 4.352 0 8.806 0.973 13.005 2.97 9.779 4.659 20.378 10.342 31.386 16.947 4.915-30.362-7.066-62.31-33.638-81.152z" />
|
||||
<glyph unicode="" d="M512 563.2c-84.787 0-153.6-68.813-153.6-153.6 0-84.838 68.813-153.6 153.6-153.6 84.838 0 153.6 68.762 153.6 153.6 0 84.787-68.762 153.6-153.6 153.6zM921.6 716.8h-122.829c-16.896 0-35.123 13.107-40.448 29.133l-31.744 95.283c-5.427 16.077-23.603 29.184-40.499 29.184h-348.16c-16.896 0-35.123-13.107-40.397-29.133l-31.846-95.334c-5.325-16.026-23.501-29.133-40.397-29.133h-122.88c-56.32 0-102.4-46.080-102.4-102.4v-460.8c0-56.32 46.080-102.4 102.4-102.4h819.2c56.371 0 102.4 46.080 102.4 102.4v460.8c0 56.32-46.029 102.4-102.4 102.4zM512 153.6c-141.414 0-256 114.586-256 256 0 141.363 114.586 256 256 256 141.363 0 256-114.637 256-256 0-141.414-114.637-256-256-256zM885.76 542.822c-19.763 0-35.789 16.026-35.789 35.84s16.026 35.84 35.789 35.84c19.814 0 35.84-16.026 35.84-35.84s-16.026-35.84-35.84-35.84z" />
|
||||
<glyph unicode="" d="M881.818 612.915c-81.050 188.672-211.558 332.339-277.555 305.459-112.077-45.568 66.816-264.397-483.635-488.141-47.565-19.302-59.597-96.666-39.68-142.899 19.866-46.234 84.89-92.262 132.454-72.96 8.192 3.328 38.451 13.056 38.451 13.056 33.946-45.568 69.478-18.534 82.125-47.514 15.155-34.816 48.077-110.438 59.238-136.141 11.264-25.702 36.659-49.562 55.091-42.547 18.33 7.014 80.947 30.874 104.909 39.936s29.696 30.464 22.374 47.309c-7.885 18.125-40.243 23.45-49.459 44.646-9.267 21.197-39.424 89.037-48.077 110.438-11.776 29.082 13.261 52.736 49.664 56.525 250.573 26.112 297.421-128.666 382.72-93.952 65.843 26.931 52.429 218.112-28.621 406.784zM853.606 306.893c-14.643-5.939-113.254 71.782-176.282 218.47-62.976 146.637-55.040 280.678-40.448 286.618 14.643 5.99 110.848-87.859 173.875-234.496 62.925-146.586 57.498-264.653 42.854-270.592z" />
|
||||
<glyph unicode="" d="M465.92 409.498h92.16v-102.4h465.92c0 0-7.578 228.25-10.24 299.725-2.509 67.891-26.778 109.875-102.4 109.875h-164.25c-25.446 47.974-52.838 99.584-61.235 115.456-16.947 31.949-22.733 38.144-60.416 38.144h-226.918c-37.683 0-43.469-6.195-60.416-38.144-8.397-15.872-35.789-67.482-61.235-115.456h-164.25c-75.622 0-99.584-41.984-102.4-109.875s-10.24-299.725-10.24-299.725h465.92v102.4zM391.68 772.25c11.725 22.118 15.77 26.419 41.779 26.419h157.030c26.112 0 30.106-4.301 41.779-26.419 4.403-8.294 16.282-30.72 29.491-55.501h-299.52c13.158 24.73 25.037 47.155 29.44 55.501zM558.080 153.498h-92.16v102.4h-440.32c0 0 6.4-92.058 10.24-170.086 1.587-32.41 11.11-85.914 92.109-85.914h768.102c80.998 0 90.317 53.555 92.109 85.914 4.454 80.23 10.24 170.086 10.24 170.086h-440.32v-102.4z" />
|
||||
<glyph unicode="" d="M135.373 647.322c89.446 76.8 160.154 137.574 351.846 29.184 92.109-52.070 166.4-71.629 228.25-71.629 108.288 0 178.432 60.262 239.104 112.333 21.658 18.586 24.474 51.61 6.246 73.677s-50.483 24.934-72.141 6.349c-89.446-76.851-160.102-137.574-351.898-29.184-253.338 143.104-372.019 41.165-467.354-40.755-21.606-18.586-24.422-51.558-6.246-73.626s50.534-24.986 72.192-6.349zM888.627 535.757c-89.446-76.8-160.102-137.574-351.898-29.184-253.286 143.104-371.968 41.165-467.302-40.704-21.658-18.586-24.474-51.61-6.246-73.677s50.483-24.934 72.141-6.349c89.446 76.851 160.154 137.574 351.846 29.235 92.109-52.070 166.4-71.68 228.25-71.68 108.288 0 178.432 60.262 239.104 112.384 21.658 18.586 24.474 51.558 6.246 73.626-18.176 22.118-50.483 24.934-72.141 6.349zM888.627 274.278c-89.446-76.8-160.102-137.574-351.898-29.184-253.286 143.104-372.019 41.216-467.302-40.704-21.658-18.586-24.474-51.61-6.246-73.677s50.483-24.934 72.141-6.349c89.498 76.851 160.154 137.523 351.898 29.235 92.109-52.070 166.4-71.68 228.25-71.68 108.288 0 178.432 60.262 239.104 112.384 21.658 18.534 24.474 51.558 6.246 73.626s-50.534 24.986-72.192 6.349z" />
|
||||
<glyph unicode="" d="M798.72 738.406c0 109.568 0 120.269 0 120.269 0 40.448-128.358 114.125-286.72 114.125s-286.72-73.677-286.72-114.125c0 0 0-10.701 0-120.269 0-109.568 198.502-200.038 198.502-277.606 0-77.619-198.502-168.038-198.502-277.658 0-109.568 0-120.269 0-120.269 0-40.397 128.358-114.074 286.72-114.074s286.72 73.677 286.72 114.125c0 0 0 10.701 0 120.269 0 109.619-198.451 200.038-198.451 277.658 0 77.517 198.451 168.038 198.451 277.555zM304.128 853.555c35.635 22.477 102.451 55.45 210.637 55.45 108.237 0 205.107-55.45 205.107-55.45 7.27-4.403 35.738-19.661 16.23-31.181-42.957-25.446-126.925-52.224-224.154-52.224s-178.33 29.542-221.286 54.989c-19.507 11.571 13.466 28.416 13.466 28.416zM537.651 460.8c0-61.082 50.995-100.403 105.062-152.883 39.475-38.349 93.44-90.829 93.44-124.774v-67.994c-49.613 24.73-198.195 48.947-198.195 128.205 0 40.141-51.917 40.141-51.917 0 0-79.258-148.582-103.475-198.195-128.205v67.994c0 33.894 54.016 86.426 93.491 124.774 54.016 52.48 105.011 91.802 105.011 152.883 0 61.082-50.995 100.403-105.011 152.883-39.475 38.349-93.491 90.88-93.491 124.723l-2.406 51.2c52.531-28.262 135.834-55.245 226.56-55.245s174.438 26.982 226.97 55.245l-2.816-51.2c0-33.843-54.016-86.374-93.44-124.723-54.067-52.48-105.062-91.802-105.062-152.883z" />
|
||||
<glyph unicode="" d="M416.154 266.138c-35.328-61.235-11.571-111.616 37.427-139.878s104.55-23.757 139.878 37.478c35.328 61.184 258.406 607.539 239.002 618.752-19.354 11.213-380.979-455.117-416.307-516.352zM512 655.258c22.426 0 44.288-1.946 65.587-5.53 22.426 28.058 47.565 58.982 71.987 88.422-43.622 12.646-89.651 19.507-137.574 19.507-287.078 0-512-242.074-512-551.117 0-19.046 0.87-38.042 2.509-56.576 2.509-28.16 27.648-48.896 55.552-46.438 28.16 2.56 48.947 27.392 46.438 55.552-1.382 15.514-2.099 31.488-2.099 47.462 0 251.597 179.968 448.717 409.6 448.717zM881.613 591.309c-14.285-38.4-29.389-77.517-42.701-111.36 52.070-75.264 82.688-169.626 82.688-273.408 0-16.23-0.717-32.563-2.15-48.384-2.56-28.16 18.176-53.043 46.336-55.654 1.587-0.154 3.123-0.205 4.71-0.205 26.163 0 48.486 20.019 50.893 46.541 1.741 18.944 2.611 38.349 2.611 57.702 0 151.091-53.862 286.157-142.387 384.768z" />
|
||||
<glyph unicode="" d="M512 624.64c-90.829 0-163.84-72.96-163.84-163.84s72.96-163.84 163.84-163.84 163.84 72.96 163.84 163.84-73.011 163.84-163.84 163.84zM512 355.789c-58.010 0-104.96 47.002-104.96 104.96 0 58.010 46.95 104.96 104.96 104.96s104.96-46.95 104.96-104.96c0-57.958-46.95-104.96-104.96-104.96zM204.8 501.76c-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96 50.176 18.33 50.176 40.96-21.914 40.96-50.176 40.96zM763.238 712.038c-15.974 15.974-45.158 12.749-65.126-7.219-20.019-20.019-23.245-49.152-7.27-65.178s45.158-12.749 65.126 7.219c20.019 19.968 23.296 49.152 7.27 65.178zM819.2 501.76c-28.314 0-50.176-18.33-50.176-40.96s21.914-40.96 50.176-40.96 51.2 18.33 51.2 40.96-22.886 40.96-51.2 40.96zM512 204.8c-22.579 0-40.96-22.938-40.96-51.2 0-28.314 18.33-51.2 40.96-51.2s40.96 22.886 40.96 51.2c0 28.262-18.381 51.2-40.96 51.2zM267.981 269.619c-19.968-20.019-23.245-49.203-7.27-65.178s45.21-12.698 65.178 7.27c20.019 20.019 23.245 49.203 7.27 65.178-15.974 15.923-45.158 12.698-65.178-7.27zM258.202 709.478c-16.026-16.026-12.749-45.158 7.27-65.178 20.019-19.968 49.152-23.245 65.178-7.219s12.749 45.158-7.27 65.126c-19.968 20.019-49.203 23.245-65.178 7.27zM700.672 214.221c20.019-19.968 49.152-23.194 65.126-7.219s12.749 45.158-7.219 65.126c-20.019 20.019-49.203 23.245-65.178 7.27s-12.749-45.21 7.27-65.178zM512 716.8c22.579 0 40.96 22.938 40.96 51.2s-18.381 51.2-40.96 51.2-40.96-22.938-40.96-51.2 18.381-51.2 40.96-51.2z" />
|
||||
<glyph unicode="" d="M972.8 501.76c-9.318 0-40.909 0-50.176 0-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96c9.318 0 40.909 0 50.176 0 28.314 0 51.2 18.33 51.2 40.96s-22.886 40.96-51.2 40.96zM512 742.4c-156.16 0-281.6-125.44-281.6-281.6 0-156.211 125.44-281.6 281.6-281.6 156.211 0 281.6 125.389 281.6 281.6 0 156.16-125.389 281.6-281.6 281.6zM512 256c-113.152 0-204.8 91.648-204.8 204.8 0 113.101 91.648 204.8 204.8 204.8s204.8-91.699 204.8-204.8c0-113.152-91.648-204.8-204.8-204.8zM152.525 460.8c0 22.63-21.862 40.96-50.125 40.96-9.472 0-41.779 0-51.2 0-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96c9.421 0 41.728 0 51.2 0 28.262 0 50.125 18.33 50.125 40.96zM512 819.2c22.579 0 40.96 22.938 40.96 51.2 0 9.37 0 41.83 0 51.2 0 28.262-18.33 51.2-40.96 51.2s-40.96-22.938-40.96-51.2c0-9.37 0-41.83 0-51.2 0-28.262 18.381-51.2 40.96-51.2zM512 102.4c-22.579 0-40.96-22.938-40.96-51.2 0-9.37 0-41.83 0-51.2 0-28.314 18.33-51.2 40.96-51.2s40.96 22.886 40.96 51.2c0 9.37 0 41.83 0 51.2 0 28.262-18.381 51.2-40.96 51.2zM889.088 779.981c20.019 20.019 23.245 49.203 7.27 65.178s-45.158 12.749-65.126-7.27c-5.478-5.53-30.31-30.31-35.84-35.84-20.019-20.019-23.245-49.152-7.27-65.126s45.21-12.8 65.178 7.219c5.478 5.53 30.31 30.31 35.789 35.84zM170.701 177.459c-5.53-5.53-30.31-30.362-35.84-35.84-19.968-20.019-23.194-49.152-7.219-65.126 15.974-15.974 45.158-12.749 65.126 7.219 5.53 5.478 30.362 30.31 35.84 35.84 20.019 20.019 23.245 49.152 7.219 65.126s-45.158 12.698-65.126-7.219zM192.819 837.939c-20.019 19.968-49.152 23.245-65.178 7.219s-12.749-45.158 7.219-65.178c5.53-5.53 30.31-30.31 35.84-35.84 20.019-19.968 49.152-23.245 65.126-7.219s12.8 45.158-7.219 65.126c-5.478 5.53-30.259 30.362-35.789 35.891zM795.341 119.501c5.53-5.53 30.362-30.362 35.84-35.84 20.019-19.968 49.203-23.194 65.178-7.219 15.974 15.974 12.698 45.158-7.27 65.126-5.53 5.478-30.362 30.31-35.84 35.84-20.019 19.968-49.203 23.194-65.178 7.219s-12.646-45.107 7.27-65.126z" />
|
||||
<glyph unicode="" d="M972.8 501.76c-9.318 0-40.909 0-50.176 0-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96c9.318 0 40.909 0 50.176 0 28.314 0 51.2 18.33 51.2 40.96s-22.886 40.96-51.2 40.96zM512 742.4c-156.16 0-281.6-125.44-281.6-281.6 0-156.211 125.44-281.6 281.6-281.6 156.16 0 281.6 125.389 281.6 281.6 0 156.16-125.44 281.6-281.6 281.6zM517.12 256c-118.272 0-209.92 91.648-209.92 204.8 0 113.101 91.648 204.8 209.92 204.8v-409.6zM152.525 460.8c0 22.63-21.862 40.96-50.125 40.96-9.472 0-41.779 0-51.2 0-28.262 0-51.2-18.33-51.2-40.96s22.938-40.96 51.2-40.96c9.421 0 41.728 0 51.2 0 28.262 0 50.125 18.33 50.125 40.96zM512 819.2c22.579 0 40.96 22.938 40.96 51.2 0 9.37 0 41.83 0 51.2 0 28.262-18.33 51.2-40.96 51.2s-40.96-22.938-40.96-51.2c0-9.37 0-41.83 0-51.2 0-28.262 18.381-51.2 40.96-51.2zM512 102.4c-22.579 0-40.96-22.938-40.96-51.2 0-9.37 0-41.83 0-51.2 0-28.314 18.33-51.2 40.96-51.2s40.96 22.886 40.96 51.2c0 9.37 0 41.83 0 51.2 0 28.262-18.381 51.2-40.96 51.2zM889.088 779.981c20.019 20.019 23.245 49.203 7.27 65.178s-45.158 12.749-65.126-7.27c-5.478-5.53-30.31-30.31-35.84-35.84-20.019-20.019-23.245-49.152-7.27-65.126s45.21-12.8 65.178 7.219c5.478 5.53 30.31 30.31 35.789 35.84zM170.701 177.459c-5.53-5.53-30.31-30.362-35.84-35.84-19.968-20.019-23.194-49.152-7.219-65.126 15.974-15.974 45.158-12.749 65.126 7.219 5.53 5.478 30.362 30.31 35.84 35.84 20.019 20.019 23.245 49.152 7.219 65.126s-45.158 12.698-65.126-7.219zM192.819 837.939c-20.019 19.968-49.152 23.245-65.178 7.219s-12.749-45.158 7.219-65.178c5.53-5.53 30.31-30.31 35.84-35.84 20.019-19.968 49.152-23.245 65.126-7.219s12.8 45.158-7.219 65.126c-5.478 5.53-30.259 30.362-35.789 35.891zM795.341 119.501c5.53-5.53 30.362-30.362 35.84-35.84 20.019-19.968 49.203-23.194 65.126-7.219 15.974 15.974 12.749 45.158-7.219 65.126-5.53 5.478-30.362 30.31-35.84 35.84-20.019 19.968-49.203 23.194-65.178 7.219s-12.646-45.107 7.27-65.126z" />
|
||||
<glyph unicode="" d="M389.734 754.79c-18.79 17.664-44.186 17.664-63.027 0l-326.707-293.99 326.707-293.939c18.842-17.715 44.237-17.715 63.027 0s18.79 46.387 0 64.102l-253.645 229.837 253.696 229.786c18.739 17.715 18.739 46.438-0.051 64.205zM697.293 754.79c-18.842 17.664-44.186 17.664-63.027 0-18.79-17.766-17.818-46.438 1.075-64.154l252.57-229.837-252.621-229.837c-18.842-17.715-19.866-46.387-1.075-64.102 18.842-17.715 44.186-17.715 63.027 0l326.758 293.939-326.707 293.99z" />
|
||||
<glyph unicode="" d="M808.96 563.2h-92.16v122.88c0 148.326-68.352 235.52-204.8 235.52-136.499 0-204.8-87.194-204.8-235.52v-20.48h102.4v40.96c0 73.984 40.806 112.64 102.4 112.64 61.542 0 102.4-38.656 102.4-112.64v-143.36h-409.6c-28.314 0-51.2-33.126-51.2-61.44v-399.36c0-28.16 21.965-58.266 48.742-66.918l61.235-19.814c26.829-8.602 71.782-15.667 99.942-15.667h296.96c28.211 0 73.165 7.066 99.942 15.718l61.235 19.814c26.778 8.602 48.742 38.707 48.742 66.867v399.36c0 28.314-33.126 61.44-61.44 61.44z" />
|
||||
<glyph unicode="" d="M564.275 102.4h-411.699v716.8h411.648v-153.6h101.376v153.6c0 56.32-46.029 102.4-102.4 102.4h-409.6c-56.32 0-102.4-46.080-102.4-102.4v-716.8c0-56.32 46.080-102.4 102.4-102.4h409.6c56.371 0 102.4 46.080 102.4 102.4v102.4h-101.325v-102.4zM972.8 435.2l-203.725 199.68v-122.88h-460.8v-153.6h460.8v-122.88l203.725 199.68z" />
|
||||
<glyph unicode="" d="M870.4 921.6h-460.8c-56.32 0-101.376-46.080-101.376-102.4v-153.6h101.376v153.6h460.8v-716.8h-460.8v102.4h-101.376v-102.4c0-56.32 45.056-102.4 101.376-102.4h460.8c56.32 0 102.4 46.080 102.4 102.4v716.8c0 56.32-46.080 102.4-102.4 102.4zM512 235.52l204.8 199.68-204.8 199.68v-122.88h-460.8v-153.6h460.8v-122.88z" />
|
||||
<glyph unicode="" d="M424.704 102.4c-22.272 0-43.366 10.394-56.883 28.314l-182.989 241.562c-23.808 31.437-17.613 76.186 13.824 99.994 31.488 23.859 76.186 17.613 99.994-13.824l120.371-158.925 302.694 485.939c20.838 33.434 64.87 43.674 98.355 22.835 33.434-20.787 43.674-64.87 22.784-98.304l-357.53-573.952c-12.442-20.019-33.894-32.563-57.395-33.587-1.075-0.051-2.15-0.051-3.226-0.051z" />
|
||||
<glyph unicode="" d="M819.302 655.36h-552.96v112.64l-215.040-184.32 215.040-184.32v112.64h512v-215.040h-665.6v-143.36h706.56c56.525 0 102.4 45.875 102.4 102.4v296.96c0 56.576-45.926 102.4-102.4 102.4z" />
|
||||
<glyph unicode="" d="M204.902 307.2h414.771v-153.6l245.76 225.28-245.76 225.229v-153.6h-373.76v317.491h-143.411v-358.4c0-56.525 45.824-102.4 102.4-102.4z" />
|
||||
<glyph unicode="" d="M254.976 296.96v267.264h103.424l-179.2 203.776-179.2-203.776h103.424v-308.224c0-56.525 45.824-102.4 102.4-102.4h459.776l-131.174 143.36h-279.45zM920.525 357.376v308.224c0 56.525-45.875 102.4-102.4 102.4h-459.725l131.123-143.36h279.501v-267.264h-103.424l179.2-203.776 179.2 203.776h-103.475z" />
|
||||
<glyph unicode="" d="M870.4 655.36h-194.56v-143.36h153.6v-215.040h-634.88v215.040h215.040v-112.64l204.8 184.32-204.8 184.32v-112.64h-256c-56.525 0-102.4-45.824-102.4-102.4v-296.96c0-56.525 45.875-102.4 102.4-102.4h716.8c56.576 0 102.4 45.875 102.4 102.4v296.96c0 56.576-45.824 102.4-102.4 102.4z" />
|
||||
<glyph unicode="" d="M776.806 870.4h-572.006c-56.32 0-102.4-46.080-102.4-102.4v-614.4c0-56.32 46.080-102.4 102.4-102.4h614.4c56.32 0 102.4 46.080 102.4 102.4v556.698l-144.794 160.102zM716.8 563.2c0-28.16-23.040-51.2-51.2-51.2h-307.2c-28.16 0-51.2 23.040-51.2 51.2v256h409.6v-256zM665.6 768h-102.4v-204.8h102.4v204.8z" />
|
||||
<glyph unicode="" d="M956.621 389.222l-161.178 383.59c-12.698 25.6-46.49 46.541-75.11 46.541h-104.909l19.456-208.128h138.24l-261.12-216.576-261.12 216.576h138.24l19.456 208.077h-104.858c-28.57 0-62.362-20.941-75.11-46.541l-161.178-383.59c-12.8-25.6-19.354-69.632-14.694-97.894l34.816-188.723c4.71-28.211 31.898-51.302 60.467-51.302h728.013c28.621 0 55.808 23.091 60.518 51.302l34.816 188.723c4.608 28.262-1.946 72.346-14.746 97.946zM886.784 254.771l-13.21-76.902c-3.994-29.542-30.618-53.709-59.085-53.709h-604.979c-28.518 0-55.142 24.166-59.085 53.709l-13.261 76.902c-3.942 29.542 16.179 53.709 44.698 53.709h660.275c28.57-0.051 48.64-24.166 44.646-53.709z" />
|
||||
<glyph unicode="" d="M778.906 581.683c-14.080 0-27.955-1.229-41.421-3.482-33.587 109.824-137.626 189.85-260.915 189.85-150.426 0-272.333-119.194-272.333-266.24 0-13.107 1.024-26.010 2.918-38.656-7.219 0.819-14.49 1.382-21.965 1.382-102.246 0-185.19-81.101-185.19-181.043 0-99.994 82.944-181.043 185.19-181.043h593.715c135.424 0 245.094 107.315 245.094 239.616 0 132.352-109.722 239.616-245.094 239.616z" />
|
||||
<glyph unicode="" d="M778.906 581.683c-14.080 0-27.955-1.229-41.421-3.482-33.587 109.824-137.626 189.85-260.915 189.85-150.426 0-272.333-119.194-272.333-266.24 0-13.107 1.024-26.010 2.918-38.656-7.219 0.819-14.49 1.382-21.965 1.382-102.246 0-185.19-81.101-185.19-181.043 0-99.994 82.944-181.043 185.19-181.043h255.13v194.56h-107.52l179.2 235.52 179.2-235.52h-107.52v-194.56h195.174c135.424 0 245.094 107.315 245.094 239.616 0.051 132.352-109.67 239.616-245.043 239.616z" />
|
||||
<glyph unicode="" d="M430.080 768c0 67.891-55.040 122.88-122.88 122.88-67.84 0-122.88-54.989-122.88-122.88 0-50.534 30.566-93.952 74.24-112.794v-388.762c-43.674-18.842-74.24-62.259-74.24-112.845 0-67.84 55.040-122.88 122.88-122.88 67.891 0 122.88 55.040 122.88 122.88 0 50.586-30.618 94.003-74.24 112.845v388.762c43.674 18.842 74.24 62.259 74.24 112.794zM378.112 153.6c0-39.168-31.744-70.912-70.912-70.912-39.117 0-70.861 31.744-70.861 70.912s31.744 70.912 70.861 70.912c39.168 0 70.912-31.744 70.912-70.912zM307.2 697.088c-39.117 0-70.861 31.744-70.861 70.912s31.744 70.912 70.861 70.912c39.168 0 70.912-31.744 70.912-70.912s-31.744-70.912-70.912-70.912zM765.491 266.445v388.762c43.622 18.842 74.189 62.259 74.189 112.794 0 67.891-54.989 122.88-122.88 122.88-67.789 0-122.88-54.989-122.88-122.88 0-50.534 30.618-93.952 74.291-112.794v-388.762c-43.725-18.842-74.291-62.259-74.291-112.845 0-67.84 55.091-122.88 122.88-122.88 67.891 0 122.88 55.040 122.88 122.88 0 50.586-30.566 94.003-74.189 112.845zM645.888 768c0 39.168 31.795 70.912 70.912 70.912 39.219 0 70.912-31.744 70.912-70.912s-31.693-70.912-70.912-70.912c-39.117 0-70.912 31.744-70.912 70.912zM716.8 82.688c-39.117 0-70.912 31.744-70.912 70.912s31.795 70.912 70.912 70.912c39.219 0 70.912-31.744 70.912-70.912s-31.693-70.912-70.912-70.912z" />
|
||||
<glyph unicode="" d="M511.232 849.92v-195.994l359.27 0.051v-386.662h-359.27v-195.635l-388.25 389.12z" />
|
||||
<glyph unicode="" d="M901.12 460.032l-195.994 0.051 0.051 359.219h-386.662v-359.27l-195.635 0.051 389.12-388.301z" />
|
||||
<glyph unicode="" d="M901.12 461.568l-195.994-0.051 0.051-359.219h-386.662v359.27l-195.635-0.051 389.171 388.301z" />
|
||||
<glyph unicode="" d="M389.171 285.798c-13.722-13.875-13.722-36.301 0-50.125 13.67-13.875 35.891-13.875 49.613 0l196.096 200.038c13.722 13.875 13.722 36.301 0 50.125l-196.096 200.090c-13.722 13.875-35.891 13.875-49.613 0s-13.722-36.25-0.051-50.074l160.819-175.053-160.768-175.002z" />
|
||||
<glyph unicode="" d="M737.229 80.998c13.722-13.875 13.722-36.25 0-50.125s-35.891-13.875-49.613 0l-400.896 404.838c-13.722 13.875-13.722 36.301 0 50.125l400.896 404.89c13.722 13.875 35.891 13.875 49.613 0s13.722-36.25 0-50.125l-365.568-379.802 365.568-379.802z" />
|
||||
<glyph unicode="" d="M132.198 686.029c-13.875 13.722-36.301 13.722-50.125 0-13.824-13.67-13.824-35.891 0-49.613l404.89-400.896c13.875-13.722 36.25-13.722 50.125 0l404.89 400.896c13.824 13.722 13.875 35.891 0 49.613s-36.352 13.722-50.125 0.051l-379.853-365.619-379.802 365.568z" />
|
||||
<glyph unicode="" d="M891.802 235.571c13.875-13.722 36.301-13.722 50.125 0 13.875 13.722 13.875 35.891 0 49.613l-404.89 400.896c-13.824 13.722-36.25 13.722-50.074 0l-404.89-400.896c-13.824-13.722-13.875-35.891 0-49.613s36.25-13.722 50.125 0l379.802 365.619 379.802-365.619z" />
|
||||
<glyph unicode="" d="M699.392 348.774c64.819 1.69 123.085 35.891 157.491 95.437 54.221 93.901 23.501 207.155-80.896 267.418l-65.382 37.786 109.517 189.747-58.317 33.638-211.712-366.592c-16.486 40.653-48.077 77.261-93.85 103.629l-123.75 71.526-191.693-332.032 123.75-71.475c45.773-26.419 93.338-35.226 136.96-29.030l-211.558-366.336 58.368-33.69 109.568 189.696 65.434-37.734c104.397-60.262 218.419-29.338 272.589 64.614 34.304 59.494 34.509 126.771 3.482 183.398zM745.421 658.483c69.683-40.243 87.603-114.432 49.818-179.866-37.786-65.485-110.49-86.118-180.224-45.875l-64.614 37.274c0.768 1.843 1.382 3.686 2.048 5.53l127.488 220.774 65.485-37.837zM295.219 431.002l-65.434 37.786 130.304 225.792 65.485-37.786c69.683-40.243 87.552-114.432 49.818-179.917-37.786-65.485-110.438-86.17-180.173-45.875zM453.99 153.856l-65.485 37.786 127.642 220.979c1.178 1.434 2.406 2.816 3.533 4.301l64.614-37.325c69.786-40.192 87.603-114.432 49.92-179.917-37.837-65.434-110.541-86.067-180.224-45.824z" />
|
||||
<glyph unicode="" d="M512 921.6c-375.654 0-460.8-85.197-460.8-460.8 0-375.603 85.146-460.8 460.8-460.8s460.8 85.197 460.8 460.8c0 375.603-85.146 460.8-460.8 460.8z" />
|
||||
<glyph unicode="" d="M674.816 393.728c-36.762 0-66.56-41.267-66.56-92.109 0-50.893 29.798-92.16 66.56-92.16s66.56 41.267 66.56 92.16c-0.051 50.893-29.85 92.109-66.56 92.109zM906.547 633.549c7.578 18.688 7.936 124.928-32.461 226.611 0 0-92.774-10.138-233.062-106.445-29.44 8.141-79.258 12.186-129.024 12.186-49.818 0-99.584-4.096-129.075-12.186-140.237 96.307-232.96 106.445-232.96 106.445-40.397-101.683-40.090-207.923-32.461-226.611-47.514-51.61-76.544-113.562-76.544-198.195 0-367.923 305.254-373.811 382.31-373.811 17.459 0 52.173-0.051 88.781-0.102 36.608 0.051 71.322 0.102 88.678 0.102 77.107 0 382.31 5.888 382.31 373.811 0 84.634-28.979 146.586-76.493 198.195zM513.434 106.752h-2.816c-193.126 0-343.552 23.040-343.552 210.739 0 44.954 15.923 86.682 53.555 121.293 62.925 57.702 169.267 27.136 289.997 27.136 0.461 0 0.973 0 1.434 0.051 0.512 0 0.973-0.051 1.382-0.051 120.73 0 227.123 30.566 289.997-27.136 37.632-34.611 53.504-76.339 53.504-121.293 0-187.699-150.323-210.739-343.501-210.739zM349.235 393.728c-36.762 0-66.56-41.267-66.56-92.109 0-50.893 29.798-92.16 66.56-92.16s66.56 41.267 66.56 92.16c0 50.893-29.798 92.109-66.56 92.109z" />
|
||||
<glyph unicode="" d="M512.717 463.411c-0.256 0-0.512 0-0.717 0-0.307 0-0.512 0-0.768 0-60.979 0-114.739 15.462-146.534-13.773-19.046-17.51-27.034-38.554-27.034-61.235 0-94.874 75.981-106.496 173.568-106.496h1.434c97.587 0 173.568 11.674 173.568 106.496 0 22.682-7.987 43.725-27.085 61.235-31.642 29.235-85.453 13.773-146.432 13.773zM429.773 333.824c-18.586 0-33.638 20.838-33.638 46.541s15.053 46.541 33.638 46.541 33.638-20.838 33.638-46.541-15.104-46.541-33.638-46.541zM594.176 333.824c-18.483 0-33.587 20.838-33.587 46.541s15.053 46.541 33.587 46.541c18.586 0 33.69-20.838 33.69-46.541s-15.053-46.541-33.69-46.541zM512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52c271.36 0 491.469 220.058 491.469 491.52s-220.058 491.52-491.469 491.52zM556.8 259.072c-8.806 0-26.317 0-44.8-0.051-18.534 0.051-36.045 0.051-44.8 0.051-38.963 0-193.178 3.021-193.178 188.877 0 42.752 14.643 74.035 38.656 100.096-3.84 9.472-4.045 63.181 16.384 114.483 0 0 46.899-5.12 117.76-53.76 14.848 4.096 39.987 6.144 65.178 6.144 25.088 0 50.278-2.048 65.178-6.144 70.912 48.64 117.709 53.76 117.709 53.76 20.378-51.354 20.275-105.062 16.384-114.483 24.013-26.061 38.707-57.344 38.707-100.096 0-185.907-154.163-188.877-193.178-188.877z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM512 574.208c-15.002 0-27.187-12.186-27.187-27.136v-162.202c0-63.642-51.917-115.507-115.763-115.507-63.795 0-115.763 51.866-115.763 115.507v67.891h88.525v-67.891c0-14.95 12.186-27.085 27.187-27.085s27.187 12.134 27.187 27.085v162.202c0.051 63.693 52.019 115.456 115.814 115.456s115.763-51.814 115.763-115.507v-30.925l-53.248-17.050-35.277 17.050v30.976c-0.051 14.95-12.237 27.136-27.238 27.136zM770.714 384.87c0-63.642-51.968-115.507-115.763-115.507-63.846 0-115.763 51.866-115.763 115.507v69.274l35.277-17.050 53.248 17.050v-69.325c0-14.95 12.186-27.085 27.187-27.085s27.136 12.134 27.136 27.085v67.891h88.576v-67.84z" />
|
||||
<glyph unicode="" d="M403.149 328.858c-21.453-19.251-62.669-57.856-131.277-57.856-80.947 0-158.925 70.963-158.925 184.474 0 145.459 93.184 192.358 164.762 192.358 103.219 0 125.85-62.259 153.958-148.582l37.53-118.272c37.478-114.637 107.878-206.848 310.784-206.848 145.51 0 244.019 44.902 244.019 163.123 0 95.795-54.016 145.459-154.829 169.114l-75.059 16.486c-51.61 11.827-66.867 33.075-66.867 68.608 0 40.192 31.642 63.846 83.251 63.846 56.32 0 86.784-21.299 91.494-72.141l117.299 14.182c-9.37 106.394-82.074 150.17-201.728 150.17-105.574 0-208.742-40.192-208.742-169.062 0-80.384 38.707-131.226 135.987-154.88l79.821-18.893c59.802-14.182 79.77-39.066 79.77-73.37 0-43.725-42.24-61.44-122.010-61.44-118.426 0-177.971 62.669-206.080 148.941l-38.758 118.272c-49.254 153.651-107.418 210.432-263.424 210.432-139.059 0-274.125-109.978-274.125-296.755 0-179.763 129.638-276.685 265.933-276.685 98.56 0 148.582 34.611 173.056 52.378l-35.84 102.4z" />
|
||||
<glyph unicode="" d="M512 952.32c-271.462 0-491.52-220.058-491.52-491.52s220.058-491.52 491.52-491.52 491.52 220.058 491.52 491.52-220.058 491.52-491.52 491.52zM647.424 315.904c-102.502 0-138.086 46.592-156.979 104.55l-19.046 59.75c-14.182 43.571-25.651 75.11-77.773 75.11-36.147 0-83.251-23.706-83.251-97.178 0-57.344 39.424-93.184 80.282-93.184 34.714 0 55.501 19.507 66.355 29.235l18.125-51.763c-12.339-8.96-37.581-26.522-87.398-26.522-68.864 0-134.4 48.998-134.4 139.776 0 94.413 68.25 149.965 138.547 149.965 78.797 0 108.134-28.723 133.069-106.342l19.558-59.699c14.234-43.674 44.288-75.315 104.141-75.315 40.294 0 61.645 9.011 61.645 31.027 0 17.357-10.086 29.901-40.294 37.069l-40.294 9.574c-49.203 11.93-68.762 37.632-68.762 78.285 0 65.075 52.173 85.402 105.523 85.402 60.467 0 97.178-22.118 101.888-75.827l-59.238-7.219c-2.355 25.702-17.766 36.454-46.234 36.454-26.061 0-42.035-11.93-42.035-32.256 0-17.971 7.68-28.723 33.792-34.662l37.888-8.346c50.944-11.93 78.234-37.069 78.234-85.453-0.051-59.75-49.869-82.432-123.341-82.432z" />
|
||||
<glyph unicode="" d="M815.923 513.229c120.371 35.584 190.925 163.123 140.237 165.683-130.099 6.605-241.357 69.632-316.314 116.736-7.936 5.222-16.026 10.189-24.371 14.848v-293.12c0-96.922-58.624-174.131-125.082-206.234-96.512-46.592-204.032-17.357-240.179 65.331-36.147 82.688 12.8 187.494 109.312 234.035 53.402 25.754 110.080 28.262 156.262 11.418v227.379c-29.184 6.963-59.546 10.854-90.829 10.854-217.754 0-394.291-178.79-394.291-399.36 0-220.57 176.538-399.36 394.291-399.36 217.805 0 394.291 178.79 394.291 399.36 0 17.766-1.126 35.277-3.328 52.429z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 175 KiB |
|
After Width: | Height: | Size: 297 KiB |
|
|
@ -0,0 +1,461 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="icomoon" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " d="" horiz-adv-x="512" />
|
||||
<glyph unicode="" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
|
||||
<glyph unicode="" d="M1024 352l-192 192v288h-128v-160l-192 192-512-512v-32h128v-320h320v192h128v-192h320v320h128z" />
|
||||
<glyph unicode="" d="M512 896l-512-512 96-96 96 96 64-384h192v192h128v-192h192l64 384 96-96 96 96-512 512zM512 485.492c-49.988 0-90.512 40.52-90.512 90.508s40.524 90.51 90.512 90.51c49.984 0 90.51-40.524 90.51-90.51 0-49.988-40.526-90.508-90.51-90.508z" />
|
||||
<glyph unicode="" d="M0-64h512v1024h-512v-1024zM320 832h128v-128h-128v128zM320 576h128v-128h-128v128zM320 320h128v-128h-128v128zM64 832h128v-128h-128v128zM64 576h128v-128h-128v128zM64 320h128v-128h-128v128zM576 640h448v-64h-448zM576-64h128v256h192v-256h128v576h-448z" />
|
||||
<glyph unicode="" d="M896 704v128h-896v-704c0-35.346 28.654-64 64-64h864c53.022 0 96 42.978 96 96v544h-128zM832 128h-768v640h768v-640zM128 640h640v-64h-640zM512 512h256v-64h-256zM512 384h256v-64h-256zM512 256h192v-64h-192zM128 512h320v-320h-320z" />
|
||||
<glyph unicode="" d="M864 960c88.364 0 160-71.634 160-160 0-36.020-11.91-69.258-32-96l-64-64-224 224 64 64c26.742 20.090 59.978 32 96 32zM64 224l-64-288 288 64 592 592-224 224-592-592zM715.578 596.422l-448-448-55.156 55.156 448 448 55.156-55.156z" />
|
||||
<glyph unicode="" d="M384 320l128 64 448 448-64 64-448-448-64-128zM289.3 92.902c-31.632 66.728-65.666 100.762-132.396 132.394l99.096 272.792 128 77.912 384 384h-192l-384-384-192-640 640 192 384 384v192l-384-384-77.912-128" />
|
||||
<glyph unicode="" d="M384 373.334c0 0 203.944 122.36 318.766 74.026 23.802 36.268 47.248 75.336 70.202 115.222-112.326 27.52-260.968 2.752-260.968 2.752s190.212 114.122 306.666 78.4c23.35 42.108 46.054 83.642 67.956 122.304-92.776 6.268-182.622-8.704-182.622-8.704s119.148 71.488 226.578 83.598c33.798 54.86 65.17 97.88 93.422 119.068-561 0-896-640-1024-1024h64l192 320c0 0 64-64 256 0 45.474 15.158 90.948 57.252 135.572 113.934-112.616 28.554-263.572 3.4-263.572 3.4z" />
|
||||
<glyph unicode="" d="M960.004 671.994l-223.998 223.998 64 64 223.998-223.998zM896 608l-32-352c-288 0-704-320-704-320l-53.13 53.13 273.664 273.664c10.974-4.368 22.934-6.794 35.466-6.794 53.020 0 96 42.98 96 96 0 53.020-42.98 96-96 96-53.020 0-96-42.98-96-96 0-12.532 2.426-24.49 6.794-35.466l-273.664-273.664-53.13 53.13c0 0 320 416 320 704l352 32 224-224z" />
|
||||
<glyph unicode="" d="M192 381.714v-443.43c10.454-1.496 21.134-2.286 32-2.286h32v448.002h-32c-10.866 0-21.546-0.79-32-2.286zM768 384v-448h32c10.868 0 21.546 0.79 32 2.286v443.428c-10.454 1.496-21.132 2.286-32 2.286h-32zM1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-61.418 10.828-120.306 30.656-174.874-19.472-33.202-30.656-71.852-30.656-113.126 0-89.354 52.326-166.478 128-202.432v404.864c-20.126-9.562-38.58-22.060-54.858-36.904-5.992 29.22-9.142 59.478-9.142 90.472 0 247.424 200.576 448 448 448s448-200.576 448-448c0-30.994-3.148-61.252-9.142-90.472-16.28 14.844-34.73 27.342-54.858 36.904v-404.864c75.676 35.954 128 113.078 128 202.432 0 41.274-11.184 79.924-30.656 113.126 19.828 54.568 30.656 113.456 30.656 174.874z" />
|
||||
<glyph unicode="" d="M981.188 799.892c-143.632 20.65-302.332 32.108-469.186 32.108-166.86 0-325.556-11.458-469.194-32.108-27.53-107.726-42.808-226.75-42.808-351.892 0-125.14 15.278-244.166 42.808-351.89 143.638-20.652 302.336-32.11 469.194-32.11 166.854 0 325.552 11.458 469.186 32.11 27.532 107.724 42.812 226.75 42.812 351.89 0 125.142-15.28 244.166-42.812 351.892zM384.002 256v384l320-192-320-192z" />
|
||||
<glyph unicode="" d="M0 832v-768h1024v768h-1024zM192 128h-128v128h128v-128zM192 384h-128v128h128v-128zM192 640h-128v128h128v-128zM768 128h-512v640h512v-640zM960 128h-128v128h128v-128zM960 384h-128v128h128v-128zM960 640h-128v128h128v-128zM384 640v-384l256 192z" />
|
||||
<glyph unicode="" d="M384 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160-88.366 0-160 71.634-160 160zM0 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160-88.366 0-160 71.634-160 160zM768 352v96c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-320c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v96l256-160v448l-256-160zM640 192h-512v192h512v-192z" />
|
||||
<glyph unicode="" d="M864 768h-512c-88 0-160-72-160-160v-512c0-88 72-160 160-160h512c88 0 160 72 160 160v512c0 88-72 160-160 160zM416 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM416 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM608 256c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM828.76 832c-14.93 72.804-79.71 128-156.76 128h-512c-88 0-160-72-160-160v-512c0-77.046 55.196-141.83 128-156.76v636.76c0 35.2 28.8 64 64 64h636.76z" />
|
||||
<glyph unicode="" d="M964.73 781.196c-93.902 109.45-233.21 178.804-388.73 178.804-282.77 0-512-229.23-512-512s229.23-512 512-512c155.52 0 294.828 69.356 388.728 178.804l-324.728 333.196 324.73 333.196zM704 839.398c39.432 0 71.398-31.964 71.398-71.398 0-39.432-31.966-71.398-71.398-71.398s-71.398 31.966-71.398 71.398c0 39.432 31.966 71.398 71.398 71.398z" />
|
||||
<glyph unicode="" d="M817.57 611.85c-193.566 143.858-260.266 259.018-305.566 348.148v0c-0.004 0-0.004 0.002-0.004 0.002v-0.002c-45.296-89.13-112-204.292-305.566-348.148-330.036-245.286-19.376-587.668 253.758-399.224-17.796-116.93-78.53-202.172-140.208-238.882v-37.744h384.032v37.74c-61.682 36.708-122.41 121.954-140.212 238.884 273.136-188.446 583.8 153.94 253.766 399.226z" />
|
||||
<glyph unicode="" d="M786.832 567.228c-59.032 0-112.086-24.596-149.852-64.694-15.996-16.984-43.762-37.112-73.8-54.81 14.11 53.868 58.676 121.7 89.628 151.456 39.64 38.17 63.984 91.83 63.984 151.5 0.006 114.894-91.476 208.096-204.788 209.32-113.32-1.222-204.796-94.426-204.796-209.318 0-59.672 24.344-113.33 63.986-151.5 30.954-29.756 75.52-97.588 89.628-151.456-30.042 17.7-57.806 37.826-73.8 54.81-37.768 40.098-90.82 64.694-149.85 64.694-114.386 0-207.080-93.664-207.080-209.328 0-115.638 92.692-209.338 207.080-209.338 59.042 0 112.082 25.356 149.85 65.452 16.804 17.872 46.444 40.138 78.292 58.632-3.002-147.692-73.532-256.168-145.318-298.906v-37.742h384.014v37.74c-71.792 42.736-142.32 151.216-145.32 298.906 31.852-18.494 61.488-40.768 78.292-58.632 37.766-40.094 90.808-65.452 149.852-65.452 114.386 0 207.078 93.7 207.078 209.338-0.002 115.664-92.692 209.328-207.080 209.328z" />
|
||||
<glyph unicode="" d="M512 960l-320-512 320-512 320 512z" />
|
||||
<glyph unicode="" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 512h448v-64h-448zM256 384h448v-64h-448zM256 256h448v-64h-448zM256 640h448v-64h-448z" />
|
||||
<glyph unicode="" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 384h448v-64h-448zM256 256h448v-64h-448zM320 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM480 576h-128c-52.8 0-96-28.8-96-64v-64h320v64c0 35.2-43.2 64-96 64z" />
|
||||
<glyph unicode="" d="M892.118 771.882l-120.234 120.236c-37.338 37.336-111.084 67.882-163.884 67.882h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h704c52.8 0 96 43.2 96 96v576c0 52.8-30.546 126.546-67.882 163.882zM640 824.438c2.196-0.804 4.452-1.68 6.758-2.636 18.060-7.482 30.598-16.176 34.616-20.194l120.236-120.238c4.018-4.018 12.712-16.554 20.194-34.614 0.956-2.306 1.832-4.562 2.636-6.756h-184.44v184.438zM832 64h-640v768h384v-256h256v-512z" />
|
||||
<glyph unicode="" d="M892.118 771.882l-120.234 120.236c-37.338 37.336-111.084 67.882-163.884 67.882h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h704c52.8 0 96 43.2 96 96v576c0 52.8-30.546 126.546-67.882 163.882zM640 824.438c2.196-0.804 4.452-1.68 6.758-2.636 18.060-7.482 30.598-16.176 34.616-20.194l120.236-120.238c4.018-4.018 12.712-16.554 20.194-34.614 0.956-2.306 1.832-4.562 2.636-6.756h-184.44v184.438zM832 64h-640v768h384v-256h256v-512zM256 448h512v-64h-512zM256 320h512v-64h-512zM256 192h512v-64h-512z" />
|
||||
<glyph unicode="" d="M903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M832 704h-192v64l-192 192h-448v-768h384v-256h640v576l-192 192zM832 613.49l101.49-101.49h-101.49v101.49zM448 869.49l101.49-101.49h-101.49v101.49zM64 896h320v-192h192v-448h-512v640zM960 0h-512v192h192v448h128v-192h192v-448z" />
|
||||
<glyph unicode="" d="M864 832h-64v-64h32v-512h-256v-256h-384v768h32v64h-64c-17.602 0-32-14.4-32-32v-832c0-17.6 14.398-32 32-32h504l232 232v632c0 17.6-14.4 32-32 32zM640 0v192h192l-192-192zM768 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM576 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886z" />
|
||||
<glyph unicode="" d="M640 704v256h-448l-192-192v-576h384v-256h640v768h-384zM192 869.49v-101.49h-101.49l101.49 101.49zM64 256v448h192v192h320v-192l-192-192v-256h-320zM576 613.49v-101.49h-101.49l101.49 101.49zM960 0h-512v448h192v192h320v-640z" />
|
||||
<glyph unicode="" d="M704 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM512 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886zM832 640v160c0 17.6-14.4 32-32 32h-64v-64h32v-128h-384v-448h-256v576h32v64h-64c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h448l192 192v512h-192zM832 26.51v101.49h101.49l-101.49-101.49zM960 192h-192v-192h-320v576h512v-384z" />
|
||||
<glyph unicode="" d="M320 896h-256v-256h256v256zM384 960v0-384h-384v384h384zM128 832h128v-128h-128zM960 896h-256v-256h256v256zM1024 960v0-384h-384v384h384zM768 832h128v-128h-128zM320 256h-256v-256h256v256zM384 320v0-384h-384v384h384zM128 192h128v-128h-128zM448 960h64v-64h-64zM512 896h64v-64h-64zM448 832h64v-64h-64zM512 768h64v-64h-64zM448 704h64v-64h-64zM512 640h64v-64h-64zM448 576h64v-64h-64zM448 448h64v-64h-64zM512 384h64v-64h-64zM448 320h64v-64h-64zM512 256h64v-64h-64zM448 192h64v-64h-64zM512 128h64v-64h-64zM448 64h64v-64h-64zM512 0h64v-64h-64zM960 448h64v-64h-64zM64 448h64v-64h-64zM128 512h64v-64h-64zM0 512h64v-64h-64zM256 512h64v-64h-64zM320 448h64v-64h-64zM384 512h64v-64h-64zM576 448h64v-64h-64zM640 512h64v-64h-64zM704 448h64v-64h-64zM768 512h64v-64h-64zM832 448h64v-64h-64zM896 512h64v-64h-64zM960 320h64v-64h-64zM576 320h64v-64h-64zM640 384h64v-64h-64zM704 320h64v-64h-64zM832 320h64v-64h-64zM896 384h64v-64h-64zM960 192h64v-64h-64zM576 192h64v-64h-64zM640 256h64v-64h-64zM768 256h64v-64h-64zM832 192h64v-64h-64zM896 256h64v-64h-64zM960 64h64v-64h-64zM640 128h64v-64h-64zM704 64h64v-64h-64zM768 128h64v-64h-64zM832 64h64v-64h-64zM640 0h64v-64h-64zM768 0h64v-64h-64zM896 0h64v-64h-64z" />
|
||||
<glyph unicode="" d="M575.996 640l127.998-127.998-255.994-255.994-127.998 127.998zM1001.526 662.496l-73.516 73.516-32.008-32.008c-16.378-16.38-39.010-26.51-64-26.51-49.988 0-90.514 40.522-90.514 90.51 0 25.002 10.14 47.638 26.534 64.018l31.988 31.986-73.518 73.516c-29.968 29.968-79.008 29.968-108.976 0l-595.040-595.038c-29.966-29.968-29.966-79.010 0-108.976l73.52-73.518 31.962 31.964c16.382 16.406 39.030 26.552 64.044 26.552 49.988 0 90.51-40.524 90.51-90.51 0-25.006-10.14-47.64-26.534-64.022l-31.984-31.986 73.516-73.518c29.966-29.966 79.008-29.966 108.976 0l595.040 595.040c29.964 29.976 29.964 79.016 0 108.984zM448.002 128.004l-256 256 384 384 256-256-384-384z" />
|
||||
<glyph unicode="" d="M128 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM768 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM960 448v384h-832c0 70.692-57.306 128-128 128v-64c35.29 0 64-28.71 64-64l48.074-412.054c-29.294-23.458-48.074-59.5-48.074-99.946 0-70.694 57.308-128 128-128h768v64h-768c-35.346 0-64 28.654-64 64 0 0.22 0.014 0.436 0.016 0.656l831.984 127.344z" />
|
||||
<glyph unicode="" d="M847.218 384c35.2 0 71.912 27.692 81.582 61.538l92.836 324.926c9.67 33.844-11.218 61.536-46.418 61.536h-655.218c0 70.692-57.308 128-128 128h-192v-128h192v-544c0-53.020 42.98-96 96-96h608c35.346 0 64 28.654 64 64s-28.654 64-64 64h-576v64h527.218zM320 704h578.806l-54.858-192h-523.948v192zM384 16c0-44-36-80-80-80h-32c-44 0-80 36-80 80v32c0 44 36 80 80 80h32c44 0 80-36 80-80v-32zM960 16c0-44-36-80-80-80h-32c-44 0-80 36-80 80v32c0 44 36 80 80 80h32c44 0 80-36 80-80v-32z" />
|
||||
<glyph unicode="" d="M977.582 765.538c-33.984 9.708-69.41-9.97-79.12-43.956l-5.022-17.582h-596.942l-8.992 71.938c-4.004 32.028-31.23 56.062-63.506 56.062h-160c-35.346 0-64-28.654-64-64s28.654-64 64-64h103.502l56.992-455.938c4.004-32.026 31.23-56.062 63.506-56.062h544c28.574 0 53.688 18.944 61.538 46.418l128 448c9.71 33.986-9.97 69.41-43.956 79.12zM512 448v64h127.996v-64h-127.996zM639.996 384v-64h-127.996v64h127.996zM512 576v64h127.996v-64h-127.996zM304.498 640h143.502v-64h-135.502l-8 64zM320.498 512h127.502v-64h-119.502l-8 64zM336.498 384h111.502v-64h-103.502l-8 64zM783.724 320h-79.728v64h98.014l-18.286-64zM820.296 448h-116.3v64h134.586l-18.286-64zM856.868 576h-152.872v64h171.158l-18.286-64zM256 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM640 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96z" />
|
||||
<glyph unicode="" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384zM512 448v128h128v64h-128v64h-64v-64h-128v-256h128v-128h-128v-64h128v-64h64v64h128.002l-0.002 256h-128zM448 448h-64v128h64v-128zM576.002 256h-64.002v128h64.002v-128z" />
|
||||
<glyph unicode="" d="M928 832h-832c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96zM96 768h832c17.346 0 32-14.654 32-32v-96h-896v96c0 17.346 14.654 32 32 32zM928 128h-832c-17.346 0-32 14.654-32 32v288h896v-288c0-17.346-14.654-32-32-32zM128 320h64v-128h-64zM256 320h64v-128h-64zM384 320h64v-128h-64z" />
|
||||
<glyph unicode="" d="M384 896h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 640h-320v64h320v-64zM896 896h-320c-35.204 0-64-28.8-64-64v-832c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v832c0 35.2-28.8 64-64 64zM896 320h-320v64h320v-64zM896 512h-320v64h320v-64zM384 384h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 128h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 448c0 106.040 85.96 192 192 192s192-85.96 192-192-85.96-192-192-192-192 85.96-192 192zM925.98 276.524v0l-177.42 73.49c12.518 30.184 19.44 63.276 19.44 97.986s-6.922 67.802-19.44 97.986l177.42 73.49c21.908-52.822 34.020-110.73 34.020-171.476s-12.114-118.654-34.020-171.476v0zM683.478 861.98v0 0l-73.49-177.42c-30.184 12.518-63.276 19.44-97.988 19.44s-67.802-6.922-97.986-19.44l-73.49 177.422c52.822 21.904 110.732 34.018 171.476 34.018 60.746 0 118.654-12.114 171.478-34.020zM98.020 619.476l177.422-73.49c-12.518-30.184-19.442-63.276-19.442-97.986s6.922-67.802 19.44-97.986l-177.42-73.49c-21.906 52.822-34.020 110.73-34.020 171.476s12.114 118.654 34.020 171.476zM340.524 34.020l73.49 177.42c30.184-12.518 63.276-19.44 97.986-19.44s67.802 6.922 97.986 19.44l73.49-177.42c-52.822-21.904-110.73-34.020-171.476-34.020-60.744 0-118.654 12.114-171.476 34.020z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM608 544l-288 160h-64v-64l160-288 288-160h64v64l-160 288zM512 384c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64z" />
|
||||
<glyph unicode="" d="M0 768l320 128v-768l-320-128zM704 768v-768l-320 106.666v768zM1024 896v-768l-256-102.4v768z" />
|
||||
<glyph unicode="" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
|
||||
<glyph unicode="" d="M576 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098 66.484 66.484 103.098 154.878 103.098 248.902 0 94.022-36.614 182.418-103.098 248.902-66.484 66.484-154.878 103.098-248.902 103.098-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM768 512v-128h-256v320h128v-192z" />
|
||||
<glyph unicode="" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254-90.512-90.512z" />
|
||||
<glyph unicode="" d="M576 410.51l109.254-109.256-90.508-90.508-146.746 146.744v218.51h128zM832 896c106.040 0 192-85.96 192-192 0-64.984-32.29-122.418-81.692-157.158-46.59 123.044-144.422 220.876-267.466 267.466 34.74 49.402 92.176 81.692 157.158 81.692zM349.158 814.308c-123.044-46.59-220.876-144.422-267.466-267.466-49.402 34.74-81.692 92.174-81.692 157.158 0 106.040 85.96 192 192 192 64.984 0 122.418-32.29 157.158-81.692zM512 768c-212.078 0-384-171.922-384-384 0-92.674 32.832-177.678 87.494-244.020l-23.494-203.98h64l63.992 115.388c56.484-32.678 122.058-51.388 192.008-51.388 69.948 0 135.52 18.71 192.004 51.386l-0.004-0.004 64-115.382h64l-23.502 203.968c54.668 66.346 87.502 151.352 87.502 244.032 0 212.078-171.922 384-384 384zM512 128c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.616-256-256-256z" />
|
||||
<glyph unicode="" d="M512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448zM512 24c-198.824 0-360 161.178-360 360 0 198.824 161.176 360 360 360 198.822 0 360-161.176 360-360 0-198.822-161.178-360-360-360zM934.784 672.826c16.042 28.052 25.216 60.542 25.216 95.174 0 106.040-85.96 192-192 192-61.818 0-116.802-29.222-151.92-74.596 131.884-27.236 245.206-105.198 318.704-212.578zM407.92 885.404c-35.116 45.374-90.102 74.596-151.92 74.596-106.040 0-192-85.96-192-192 0-34.632 9.174-67.122 25.216-95.174 73.5 107.38 186.822 185.342 318.704 212.578zM448 640h64v-320h-64v320zM512 384h192v-64h-192v64z" />
|
||||
<glyph unicode="" d="M1025.5 160c0 288-256 224-256 448 0 18.56-1.788 34.42-5.048 47.928-16.83 113.018-92.156 203.72-189.772 231.36 0.866 3.948 1.32 8.032 1.32 12.21 0 33.278-28.8 60.502-64 60.502-35.2 0-64-27.224-64-60.5 0-4.18 0.456-8.264 1.32-12.21-109.47-30.998-190.914-141.298-193.254-273.442-0.040-1.92-0.066-3.864-0.066-5.846 0-224.002-256-160.002-256-448.002 0-76.226 170.59-139.996 398.97-156.080 21.524-40.404 64.056-67.92 113.030-67.92s91.508 27.516 113.030 67.92c228.38 16.084 398.97 79.854 398.97 156.080 0 0.228-0.026 0.456-0.028 0.682l1.528-0.682zM826.246 105.904c-54.23-14.47-118.158-24.876-186.768-30.648-5.704 65.418-60.582 116.744-127.478 116.744s-121.774-51.326-127.478-116.744c-68.608 5.772-132.538 16.178-186.768 30.648-74.63 19.914-110.31 42.19-123.368 54.096 13.058 11.906 48.738 34.182 123.368 54.096 86.772 23.152 198.372 35.904 314.246 35.904s227.474-12.752 314.246-35.904c74.63-19.914 110.31-42.19 123.368-54.096-13.058-11.906-48.738-34.182-123.368-54.096z" />
|
||||
<glyph unicode="" d="M768 960h-576c-35.2 0-64-28.798-64-64v-896c0-35.2 28.798-64 64-64h576c35.2 0 64 28.8 64 64v896c0 35.202-28.8 64-64 64zM480-17.782c-27.492 0-49.782 22.29-49.782 49.782s22.29 49.782 49.782 49.782 49.782-22.29 49.782-49.782-22.29-49.782-49.782-49.782zM768 128h-576v704h576v-704z" />
|
||||
<glyph unicode="" d="M800 960h-640c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h640c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM480-32c-17.672 0-32 14.326-32 32s14.328 32 32 32 32-14.326 32-32-14.328-32-32-32zM768 64h-576v768h576v-768z" />
|
||||
<glyph unicode="" d="M981.188 671.892c-88.808 12.768-183.382 22.016-282.076 27.22l164.888 164.888-64 64-224.558-224.556c-21.006 0.368-42.156 0.556-63.442 0.556v0l-256 256-64-64 194.196-194.196c-120.922-4.242-236.338-14.524-343.386-29.912-27.532-107.726-42.81-226.752-42.81-351.892s15.278-244.166 42.804-351.89c143.642-20.652 302.34-32.11 469.196-32.11 166.856 0 325.55 11.458 469.188 32.11 27.534 107.724 42.812 226.75 42.812 351.89s-15.278 244.166-42.812 351.892zM863.892 85.406c-107.73-13.766-226.75-21.406-351.892-21.406-125.142 0-244.166 7.64-351.892 21.406-20.648 71.816-32.108 151.166-32.108 234.594 0 83.43 11.458 162.78 32.108 234.596 107.726 13.766 226.75 21.404 351.892 21.404 125.136 0 244.162-7.638 351.886-21.404 20.656-71.816 32.114-151.166 32.114-234.596 0-83.428-11.458-162.778-32.108-234.594z" />
|
||||
<glyph unicode="" d="M704 960h-384l-192-128v-256h768v256l-192 128zM640 640h-64v42.666c0 11.734-9.6 21.334-21.334 21.334h-85.332c-11.732 0-21.334-9.6-21.334-21.334v-42.666h-64v106.666c0 11.734 9.602 21.334 21.334 21.334h213.33c11.734 0 21.336-9.6 21.336-21.334v-106.666zM128 255.998h768v256.002h-768v-256.002zM384 426.668c0 11.734 9.602 21.332 21.334 21.332h213.33c11.734 0 21.336-9.598 21.336-21.332v-106.668h-64v42.668c0 11.734-9.6 21.332-21.334 21.332h-85.332c-11.732 0-21.334-9.598-21.334-21.332v-42.668h-64v106.668zM128-64h768v255.998h-768v-255.998zM384 106.668c0 11.734 9.602 21.332 21.334 21.332h213.33c11.734 0 21.336-9.598 21.336-21.332v-106.668h-64v42.668c0 11.734-9.6 21.332-21.334 21.332h-85.332c-11.732 0-21.334-9.598-21.334-21.332v-42.668h-64v106.668z" />
|
||||
<glyph unicode="" d="M704 768h-384l-320-384v-256c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v256l-320 384zM768 384l-128-128h-256l-128 128h-172.69l266.666 320h324.048l266.666-320h-172.69z" />
|
||||
<glyph unicode="" d="M704 768h-384l-320-384v-256c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v256l-320 384zM640 256h-256l-64 64h384l-64-64zM83.31 384l266.666 320h324.048l266.666-320h-857.38zM284.964 576h454.072l-53.334 64h-347.406zM178.298 448h667.406l-53.334 64h-560.74z" />
|
||||
<glyph unicode="" d="M898.496 960l67.244-571.56-75.48-8.88-60.052 510.44h-636.416l-60.052-510.44-75.48 8.88 67.242 571.56zM256 832h512v-64h-512zM256 704h512v-64h-512zM256 576h512v-64h-512zM256 448h512v-64h-512zM992 320h-960c-17.6 0-27.446-13.66-21.88-30.358l107.76-323.284c5.566-16.698 24.52-30.358 42.12-30.358h704c17.6 0 36.552 13.66 42.12 30.358l107.762 323.286c5.566 16.696-4.282 30.356-21.882 30.356zM640 192h-256v64h256v-64z" />
|
||||
<glyph unicode="" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
|
||||
<glyph unicode="" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM640 320v-192h-256v192h-192l320 256 320-256h-192zM154.51 768l64 64h586.976l64-64h-714.976z" />
|
||||
<glyph unicode="" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
|
||||
<glyph unicode="" d="M576 711.628v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
|
||||
<glyph unicode="" d="M262.14 960c-113.728-206.032-132.89-520.304 313.86-509.824v253.824l384-384-384-384v248.372c-534.96-13.942-594.572 472.214-313.86 775.628z" />
|
||||
<glyph unicode="" d="M448 184.372v-248.372l-384 384 384 384v-253.824c446.75-10.48 427.588 303.792 313.862 509.824 280.71-303.414 221.1-789.57-313.862-775.628z" />
|
||||
<glyph unicode="" d="M512 896c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
|
||||
<glyph unicode="" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256 0 141.384 128.942 256 288 256 159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM512 960c278.458 0 504.992-180.614 511.836-405.52-49.182 21.92-103.586 33.52-159.836 33.52-95.56 0-185.816-33.446-254.138-94.178-70.846-62.972-109.862-147.434-109.862-237.822 0-44.672 9.544-87.888 27.736-127.788-5.228-0.126-10.468-0.212-15.736-0.212-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" horiz-adv-x="1152" />
|
||||
<glyph unicode="" d="M480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" horiz-adv-x="1152" />
|
||||
<glyph unicode="" d="M512 768c-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.152 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.974-2.666 42.398-4.020 63.676-4.020 54.934 0 107.988 8.66 157.694 25.742 46.712 16.054 88.306 38.744 123.628 67.444 66.214 53.796 102.678 122.984 102.678 194.814 0 71.83-36.464 141.016-102.678 194.814-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742zM512 896v0c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
|
||||
<glyph unicode="" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256 0 141.384 128.942 256 288 256 159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM230.678 738.814c-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.15 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.948-2.662 42.344-4.016 63.594-4.020v-128c-27.128 0.002-53.754 1.738-79.742 5.042-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416 278.458 0 504.992-180.614 511.836-405.52-41.096 18.316-85.84 29.422-132.262 32.578-11.53 56.068-45.402 108.816-98.252 151.756-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444z" horiz-adv-x="1152" />
|
||||
<glyph unicode="" d="M728.992 448c137.754 87.334 231.008 255.208 231.008 448 0 21.676-1.192 43.034-3.478 64h-889.042c-2.29-20.968-3.48-42.326-3.48-64 0-192.792 93.254-360.666 231.006-448-137.752-87.334-231.006-255.208-231.006-448 0-21.676 1.19-43.034 3.478-64h889.042c2.288 20.966 3.478 42.324 3.478 64 0.002 192.792-93.252 360.666-231.006 448zM160 0c0 186.912 80.162 345.414 224 397.708v100.586c-143.838 52.29-224 210.792-224 397.706v0h704c0-186.914-80.162-345.416-224-397.706v-100.586c143.838-52.294 224-210.796 224-397.708h-704zM619.626 290.406c-71.654 40.644-75.608 93.368-75.626 125.366v64.228c0 31.994 3.804 84.914 75.744 125.664 38.504 22.364 71.808 56.348 97.048 98.336h-409.582c25.266-42.032 58.612-76.042 97.166-98.406 71.654-40.644 75.606-93.366 75.626-125.366v-64.228c0-31.992-3.804-84.914-75.744-125.664-72.622-42.18-126.738-125.684-143.090-226.336h501.67c-16.364 100.708-70.53 184.248-143.212 226.406z" />
|
||||
<glyph unicode="" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0 0 0 0 0 0 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0 0 0 0 0 0 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96 53.019 0 96-42.981 96-96 0 0 0 0 0 0 0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72-39.765 0-72 32.235-72 72z" />
|
||||
<glyph unicode="" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
|
||||
<glyph unicode="" d="M192 448c0 12.18 0.704 24.196 2.030 36.022l-184.98 60.104c-5.916-31.14-9.050-63.264-9.050-96.126 0-147.23 62.166-279.922 161.654-373.324l114.284 157.296c-52.124 56.926-83.938 132.758-83.938 216.028zM832 448c0-83.268-31.812-159.102-83.938-216.028l114.284-157.296c99.488 93.402 161.654 226.094 161.654 373.324 0 32.862-3.132 64.986-9.048 96.126l-184.98-60.104c1.324-11.828 2.028-23.842 2.028-36.022zM576 761.592c91.934-18.662 169.544-76.742 214.45-155.826l184.978 60.102c-73.196 155.42-222.24 268.060-399.428 290.156v-194.432zM233.55 605.768c44.906 79.084 122.516 137.164 214.45 155.826v194.43c-177.188-22.096-326.23-134.736-399.426-290.154l184.976-60.102zM644.556 156.672c-40.39-18.408-85.272-28.672-132.556-28.672s-92.166 10.264-132.554 28.67l-114.292-157.31c73.206-40.366 157.336-63.36 246.846-63.36s173.64 22.994 246.848 63.36l-114.292 157.312z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 704c141.384 0 256-114.616 256-256s-114.616-256-256-256-256 114.616-256 256 114.616 256 256 256zM817.47 142.53c-81.594-81.594-190.080-126.53-305.47-126.53-115.392 0-223.876 44.936-305.47 126.53-81.594 81.594-126.53 190.078-126.53 305.47 0 115.39 44.936 223.876 126.53 305.47l67.882-67.882c0 0 0 0 0 0-131.006-131.006-131.006-344.17 0-475.176 63.462-63.462 147.838-98.412 237.588-98.412 89.748 0 174.124 34.95 237.588 98.412 131.006 131.006 131.006 344.168 0 475.176l67.882 67.882c81.594-81.594 126.53-190.080 126.53-305.47 0-115.392-44.936-223.876-126.53-305.47z" />
|
||||
<glyph unicode="" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96 53.020 0 96 42.98 96 96 0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96-53.020 0-96-42.98-96-96 0-282.77 229.23-512 512-512z" />
|
||||
<glyph unicode="" d="M1024 576h-384l143.53 143.53c-72.53 72.526-168.96 112.47-271.53 112.47-102.57 0-199-39.944-271.53-112.47-72.526-72.53-112.47-168.96-112.47-271.53 0-102.57 39.944-199 112.47-271.53 72.53-72.526 168.96-112.47 271.53-112.47 102.57 0 199 39.944 271.528 112.472 6.056 6.054 11.86 12.292 17.456 18.668l96.32-84.282c-93.846-107.166-231.664-174.858-385.304-174.858-282.77 0-512 229.23-512 512 0 282.77 229.23 512 512 512 141.386 0 269.368-57.326 362.016-149.984l149.984 149.984v-384z" />
|
||||
<glyph unicode="" d="M64 960h384v-64h-384zM576 960h384v-64h-384zM952 640h-56v256h-256v-256h-256v256h-256v-256h-56c-39.6 0-72-32.4-72-72v-560c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v376h128v-376c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v560c0 39.6-32.4 72-72 72zM348 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM924 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
|
||||
<glyph unicode="" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />
|
||||
<glyph unicode="" d="M832 512h-64v192c0 141.384-114.616 256-256 256s-256-114.616-256-256v-192h-64c-35.2 0-64-28.8-64-64v-448c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v448c0 35.2-28.8 64-64 64zM512 128c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM640 512h-256v192c0 70.58 57.42 128 128 128s128-57.42 128-128v-192z" />
|
||||
<glyph unicode="" d="M592 512h-16v192c0 105.87-86.13 192-192 192h-128c-105.87 0-192-86.13-192-192v-192h-16c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h544c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48zM384 64h-128l27.84 139.2c-16.808 11.532-27.84 30.874-27.84 52.8 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-21.926-11.032-41.268-27.84-52.8l27.84-139.2zM448 512h-256v192c0 35.29 28.71 64 64 64h128c35.29 0 64-28.71 64-64v-192z" />
|
||||
<glyph unicode="" d="M768 896h-128c-105.87 0-192-86.13-192-192v-192h-400c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h544c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48h-16v192c0 35.29 28.71 64 64 64h128c35.29 0 64-28.71 64-64v-192h128v192c0 105.87-86.13 192-192 192zM384 64h-128l27.84 139.2c-16.808 11.532-27.84 30.874-27.84 52.8 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-21.926-11.032-41.268-27.84-52.8l27.84-139.2z" />
|
||||
<glyph unicode="" d="M1002.934 142.124l-460.552 394.76c21.448 40.298 33.618 86.282 33.618 135.116 0 159.058-128.942 288-288 288-29.094 0-57.172-4.332-83.646-12.354l166.39-166.39c24.89-24.89 24.89-65.62 0-90.51l-101.49-101.49c-24.89-24.89-65.62-24.89-90.51 0l-166.39 166.39c-8.022-26.474-12.354-54.552-12.354-83.646 0-159.058 128.942-288 288-288 48.834 0 94.818 12.17 135.116 33.62l394.76-460.552c22.908-26.724 62.016-28.226 86.904-3.338l101.492 101.492c24.888 24.888 23.386 63.994-3.338 86.902z" />
|
||||
<glyph unicode="" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
|
||||
<glyph unicode="" d="M896 512h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576zM768 704h128v-128h-128v128zM592 128c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v576h-128v-576h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-192h128v192h16zM448 320h128v-128h-128v128zM272 512c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576h16zM128 704h128v-128h-128v128z" />
|
||||
<glyph unicode="" d="M933.79 349.75c-53.726 93.054-21.416 212.304 72.152 266.488l-100.626 174.292c-28.75-16.854-62.176-26.518-97.846-26.518-107.536 0-194.708 87.746-194.708 195.99h-201.258c0.266-33.41-8.074-67.282-25.958-98.252-53.724-93.056-173.156-124.702-266.862-70.758l-100.624-174.292c28.97-16.472 54.050-40.588 71.886-71.478 53.638-92.908 21.512-211.92-71.708-266.224l100.626-174.292c28.65 16.696 61.916 26.254 97.4 26.254 107.196 0 194.144-87.192 194.7-194.958h201.254c-0.086 33.074 8.272 66.57 25.966 97.218 53.636 92.906 172.776 124.594 266.414 71.012l100.626 174.29c-28.78 16.466-53.692 40.498-71.434 71.228zM512 240.668c-114.508 0-207.336 92.824-207.336 207.334 0 114.508 92.826 207.334 207.336 207.334 114.508 0 207.332-92.826 207.332-207.334-0.002-114.51-92.824-207.334-207.332-207.334z" />
|
||||
<glyph unicode="" d="M363.722 237.948l41.298 57.816-45.254 45.256-57.818-41.296c-10.722 5.994-22.204 10.774-34.266 14.192l-11.682 70.084h-64l-11.68-70.086c-12.062-3.418-23.544-8.198-34.266-14.192l-57.818 41.298-45.256-45.256 41.298-57.816c-5.994-10.72-10.774-22.206-14.192-34.266l-70.086-11.682v-64l70.086-11.682c3.418-12.060 8.198-23.544 14.192-34.266l-41.298-57.816 45.254-45.256 57.818 41.296c10.722-5.994 22.204-10.774 34.266-14.192l11.682-70.084h64l11.68 70.086c12.062 3.418 23.544 8.198 34.266 14.192l57.818-41.296 45.254 45.256-41.298 57.816c5.994 10.72 10.774 22.206 14.192 34.266l70.088 11.68v64l-70.086 11.682c-3.418 12.060-8.198 23.544-14.192 34.266zM224 96c-35.348 0-64 28.654-64 64s28.652 64 64 64 64-28.654 64-64-28.652-64-64-64zM1024 576v64l-67.382 12.25c-1.242 8.046-2.832 15.978-4.724 23.79l57.558 37.1-24.492 59.128-66.944-14.468c-4.214 6.91-8.726 13.62-13.492 20.13l39.006 56.342-45.256 45.254-56.342-39.006c-6.512 4.766-13.22 9.276-20.13 13.494l14.468 66.944-59.128 24.494-37.1-57.558c-7.812 1.892-15.744 3.482-23.79 4.724l-12.252 67.382h-64l-12.252-67.382c-8.046-1.242-15.976-2.832-23.79-4.724l-37.098 57.558-59.128-24.492 14.468-66.944c-6.91-4.216-13.62-8.728-20.13-13.494l-56.342 39.006-45.254-45.254 39.006-56.342c-4.766-6.51-9.278-13.22-13.494-20.13l-66.944 14.468-24.492-59.128 57.558-37.1c-1.892-7.812-3.482-15.742-4.724-23.79l-67.384-12.252v-64l67.382-12.25c1.242-8.046 2.832-15.978 4.724-23.79l-57.558-37.1 24.492-59.128 66.944 14.468c4.216-6.91 8.728-13.618 13.494-20.13l-39.006-56.342 45.254-45.256 56.342 39.006c6.51-4.766 13.22-9.276 20.13-13.492l-14.468-66.944 59.128-24.492 37.102 57.558c7.81-1.892 15.742-3.482 23.788-4.724l12.252-67.384h64l12.252 67.382c8.044 1.242 15.976 2.832 23.79 4.724l37.1-57.558 59.128 24.492-14.468 66.944c6.91 4.216 13.62 8.726 20.13 13.492l56.342-39.006 45.256 45.256-39.006 56.342c4.766 6.512 9.276 13.22 13.492 20.13l66.944-14.468 24.492 59.13-57.558 37.1c1.892 7.812 3.482 15.742 4.724 23.79l67.382 12.25zM672 468.8c-76.878 0-139.2 62.322-139.2 139.2s62.32 139.2 139.2 139.2 139.2-62.322 139.2-139.2c0-76.878-62.32-139.2-139.2-139.2z" />
|
||||
<glyph unicode="" d="M1024 351.906v192.188l-146.774 24.462c-5.958 18.132-13.222 35.668-21.694 52.5l86.454 121.034-135.896 135.898-120.826-86.304c-16.91 8.554-34.538 15.888-52.768 21.902l-24.402 146.414h-192.188l-24.402-146.416c-18.23-6.014-35.858-13.348-52.766-21.902l-120.828 86.304-135.898-135.898 86.454-121.036c-8.47-16.83-15.734-34.366-21.692-52.498l-146.774-24.46v-192.188l147.118-24.52c5.96-17.968 13.21-35.348 21.642-52.030l-86.748-121.448 135.898-135.896 121.654 86.894c16.602-8.35 33.89-15.528 51.764-21.434l24.578-147.472h192.188l24.578 147.474c17.874 5.906 35.162 13.084 51.766 21.432l121.652-86.892 135.896 135.896-86.744 121.446c8.432 16.682 15.678 34.062 21.64 52.032l147.118 24.518zM512 320c-70.692 0-128 57.306-128 128 0 70.692 57.308 128 128 128 70.694 0 128-57.308 128-128 0-70.694-57.306-128-128-128z" />
|
||||
<glyph unicode="" d="M771.516 640c18.126 12.88 35.512 27.216 51.444 43.148 33.402 33.402 55.746 74.5 62.912 115.722 7.858 45.186-3.672 87.14-31.63 115.1-22.3 22.298-52.51 34.086-87.364 34.086-49.632 0-101.922-23.824-143.46-65.362-66.476-66.476-105.226-158.238-126.076-223.722-15.44 65.802-46.206 154.644-106.018 214.458-32.094 32.092-73.114 48.57-111.846 48.57-31.654 0-61.78-11.004-84.26-33.486-49.986-49.988-43.232-137.786 15.086-196.104 20.792-20.792 45.098-38.062 70.72-52.412h-217.024v-256h64v-448h768v448.002h64v256h-188.484zM674.326 831.782c27.724 27.724 62.322 44.274 92.55 44.274 10.7 0 25.708-2.254 36.45-12.998 26.030-26.028 11.412-86.308-31.28-128.998-43.946-43.946-103.060-74.168-154.432-94.060h-50.672c18.568 57.548 52.058 136.456 107.384 191.782zM233.934 799.11c-0.702 9.12-0.050 26.248 12.196 38.494 10.244 10.244 23.788 12.396 33.348 12.396v0c21.258 0 43.468-10.016 60.932-27.48 33.872-33.872 61.766-87.772 80.668-155.876 0.51-1.84 1.008-3.67 1.496-5.486-1.816 0.486-3.646 0.984-5.486 1.496-68.104 18.904-122.002 46.798-155.874 80.67-15.828 15.826-25.77 36.16-27.28 55.786zM448 0h-256v416h256v-416zM448 448h-320v128h320v-128zM832 0h-256v416h256v-416zM896 448h-320v128h320v-128z" />
|
||||
<glyph unicode="" d="M832 768v128h-640v-128h-192v-128c0-106.038 85.958-192 192-192 20.076 0 39.43 3.086 57.62 8.802 46.174-66.008 116.608-113.796 198.38-130.396v-198.406h-64c-70.694 0-128-57.306-128-128h512c0 70.694-57.306 128-128 128h-64v198.406c81.772 16.6 152.206 64.386 198.38 130.396 18.19-5.716 37.544-8.802 57.62-8.802 106.042 0 192 85.962 192 192v128h-192zM192 524c-63.962 0-116 52.038-116 116v64h116v-64c0-40.186 7.43-78.632 20.954-114.068-6.802-1.246-13.798-1.932-20.954-1.932zM948 640c0-63.962-52.038-116-116-116-7.156 0-14.152 0.686-20.954 1.932 13.524 35.436 20.954 73.882 20.954 114.068v64h116v-64z" />
|
||||
<glyph unicode="" d="M608 576c-32-32-32-32-32-64v-448h128c35.346 0 64-28.654 64-64h-512c0 35.346 28.654 64 64 64h128v448c0 32 0 32-32 64l-274.746 274.746c-24.89 24.89-16.454 45.254 18.746 45.254h704c35.2 0 43.634-20.364 18.746-45.254l-274.736-274.736c-0.004-0.004-0.006-0.008-0.010-0.010z" />
|
||||
<glyph unicode="" d="M832 640h-64v96c0 88.366-171.922 160-384 160-212.078 0-384-71.634-384-160v-576c0-88.366 171.922-160 384-160s384 71.634 384 160v96h64c105.6 0 192 86.4 192 192s-86.4 192-192 192zM176.056 770.398c57.942 19.090 131.79 29.602 207.944 29.602s150.004-10.512 207.944-29.602c36.994-12.188 59.408-25.246 71.41-34.398-12.002-9.152-34.416-22.208-71.41-34.398-57.94-19.090-131.79-29.602-207.944-29.602s-150.002 10.512-207.944 29.602c-36.994 12.19-59.408 25.246-71.41 34.398 12.002 9.152 34.416 22.208 71.41 34.398zM904.364 391.636c-8.828-8.828-27.89-23.636-56.364-23.636h-80v160h80c28.474 0 47.536-14.81 56.364-23.638s23.636-27.888 23.636-56.362-14.808-47.536-23.636-56.364z" />
|
||||
<glyph unicode="" d="M864 960c-88.372 0-160-71.632-160-160v-480h128v-384h192v864c0 88.368-71.634 160-160 160zM416 960c-17.676 0-32-14.328-32-32v-224c0-8.836-14.328-16-32-16-17.676 0-32 7.164-32 16v224c0 17.672-14.328 32-32 32-17.674 0-32-14.328-32-32v-224c0-8.836-14.328-16-32-16-17.674 0-32 7.164-32 16v224c0 17.672-14.328 32-32 32-17.674 0-32-14.328-32-32v-224c0-8.836-14.328-16-32-16s-32 7.164-32 16v224c0 17.672-14.328 32-32 32s-32-14.328-32-32v-288c0-28.318 25.058-44.11 53.004-64 35.21-25.064 74.996-56.636 74.996-128v-512h192v512c0 71.364 39.786 102.936 74.992 128 27.946 19.89 53.008 35.682 53.008 64v288c0 17.672-14.326 32-32 32z" />
|
||||
<glyph unicode="" d="M717.548 960c-168.764-278.986-302.3-141.782-497.59-342.43-172.336-177.066-112.582-390.306 32.524-463.744 143.23 73.188 289.768 236.822 398.45 473.724 0 0 97.666-299.144-201.49-587.374 145.268-170.148 391.828-51.772 460.726 218.918 74.898 294.274-120.388 593.896-192.62 700.906zM97.012-6.242c0.116-2.906 3.422-57.758 75.366-57.758 52.344 0 317.832 144.678 454.266 520.204-206.438-365.214-506.12-455.838-529.632-462.446z" />
|
||||
<glyph unicode="" d="M704 896l-320-320h-192l-192-256c0 0 203.416 56.652 322.066 30.084l-322.066-414.084 421.902 328.144c58.838-134.654-37.902-328.144-37.902-328.144l256 192v192l320 320 64 320-320-64z" />
|
||||
<glyph unicode="" d="M512 896c282.77 0 512-229.23 512-512 0-192.792-106.576-360.666-264.008-448h-495.984c-157.432 87.334-264.008 255.208-264.008 448 0 282.77 229.23 512 512 512zM801.914 94.086c77.438 77.44 120.086 180.398 120.086 289.914h-90v64h85.038c-7.014 44.998-21.39 88.146-42.564 128h-106.474v64h64.284c-9.438 11.762-19.552 23.096-30.37 33.914-46.222 46.22-101.54 80.038-161.914 99.798v-69.712h-64v85.040c-20.982 3.268-42.36 4.96-64 4.96s-43.018-1.69-64-4.96v-85.040h-64v69.712c-60.372-19.76-115.692-53.576-161.914-99.798-10.818-10.818-20.932-22.152-30.37-33.914h64.284v-64h-106.476c-21.174-39.854-35.552-83.002-42.564-128h85.040v-64h-90c0-109.516 42.648-212.474 120.086-289.914 10.71-10.71 21.924-20.728 33.56-30.086h192.354l36.572 512h54.856l36.572-512h192.354c11.636 9.358 22.852 19.378 33.56 30.086z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM302.836 125.848c11.106 30.632 17.164 63.688 17.164 98.152 0 124.35-78.81 230.292-189.208 270.606 10.21 84.924 48.254 163.498 109.678 224.924 72.53 72.526 168.96 112.47 271.53 112.47s199-39.944 271.53-112.47c61.428-61.426 99.468-140 109.682-224.924-110.402-40.314-189.212-146.256-189.212-270.606 0-34.468 6.060-67.52 17.166-98.15-61.706-40.242-133.77-61.85-209.166-61.85-75.394 0-147.458 21.608-209.164 61.848zM551.754 319.004c13.878-3.494 24.246-16.080 24.246-31.004v-64c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v64c0 14.924 10.368 27.51 24.246 31.004l23.754 448.996h32l23.754-448.996z" />
|
||||
<glyph unicode="" d="M768 320.032l-182.82 182.822 438.82 329.15-128.010 127.996-548.52-219.442-172.7 172.706c-49.78 49.778-119.302 61.706-154.502 26.508-35.198-35.198-23.268-104.726 26.51-154.5l172.686-172.684-219.464-548.582 127.99-128.006 329.19 438.868 182.826-182.828v-255.98h127.994l63.992 191.988 191.988 63.996v127.992l-255.98-0.004z" />
|
||||
<glyph unicode="" d="M1024 384l-128 256h-192v128c0 35.2-28.8 64-64 64h-576c-35.2 0-64-28.8-64-64v-512l64-64h81.166c-10.898-18.832-17.166-40.678-17.166-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.268 45.168-17.166 64h354.334c-10.898-18.832-17.168-40.678-17.168-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.27 45.168-17.168 64h81.168v192zM704 384v160h132.668l80-160h-212.668z" />
|
||||
<glyph unicode="" d="M704-64h320l-256 1024h-192l32-256h-192l32 256h-192l-256-1024h320l32 256h320l32-256zM368 320l32 256h224l32-256h-288z" />
|
||||
<glyph unicode="" d="M960 768v64l-448-128-448 128v-64l320-128v-256l-128-448h64l192 448 192-448h64l-128 448v256zM416 864c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96z" />
|
||||
<glyph unicode="" d="M1024 512h-100.924c-27.64 178.24-168.836 319.436-347.076 347.076v100.924h-128v-100.924c-178.24-27.64-319.436-168.836-347.076-347.076h-100.924v-128h100.924c27.64-178.24 168.836-319.436 347.076-347.076v-100.924h128v100.924c178.24 27.64 319.436 168.836 347.076 347.076h100.924v128zM792.822 512h-99.762c-19.284 54.55-62.51 97.778-117.060 117.060v99.762c107.514-24.49 192.332-109.31 216.822-216.822zM512 384c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64 0-35.346-28.654-64-64-64zM448 728.822v-99.762c-54.55-19.282-97.778-62.51-117.060-117.060h-99.762c24.49 107.512 109.31 192.332 216.822 216.822zM231.178 384h99.762c19.282-54.55 62.51-97.778 117.060-117.060v-99.762c-107.512 24.49-192.332 109.308-216.822 216.822zM576 167.178v99.762c54.55 19.284 97.778 62.51 117.060 117.060h99.762c-24.49-107.514-109.308-192.332-216.822-216.822z" />
|
||||
<glyph unicode="" d="M960 960l-448-128-448 128c0 0-4.5-51.698 0-128l448-140.090 448 140.090c4.498 76.302 0 128 0 128zM72.19 764.894c23.986-250.696 113.49-672.234 439.81-828.894 326.32 156.66 415.824 578.198 439.81 828.894l-439.81-165.358-439.81 165.358z" />
|
||||
<glyph unicode="" d="M384 960l-384-512h384l-256-512 896 640h-512l384 384z" />
|
||||
<glyph unicode="" d="M640 813.412v-135.958c36.206-15.804 69.5-38.408 98.274-67.18 60.442-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274c-60.44-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c28.774 28.774 62.068 51.378 98.274 67.182v135.956c-185.048-55.080-320-226.472-320-429.412 0-247.424 200.578-448 448-448 247.424 0 448 200.576 448 448 0 202.94-134.95 374.332-320 429.412zM448 960h128v-512h-128z" />
|
||||
<glyph unicode="" d="M1024 677.5l-90.506 90.5-178.746-178.752-101.5 101.502 178.75 178.75-90.5 90.5-178.75-178.75-114.748 114.75-86.626-86.624 512.002-512.002 86.624 86.624-114.752 114.752zM274.748 210.746c165.768-165.762 385.194-36.362 519.292 75.464l-443.824 443.824c-111.824-134.096-241.228-353.522-75.468-519.288zM191.998 255.996l127.994-127.996-191.992-191.992-127.996 127.994z" />
|
||||
<glyph unicode="" d="M891.004 599.94c-3.242 128.698-108.458 232.060-237.862 232.060-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.874-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848h99.76l218.51-218.51 218.51 218.51 119.482 0.012c96.138 0.184 174.008 78.212 174.008 174.446 0 82.090-56.678 150.9-132.996 169.482zM512 128l-192 192h128v192h128v-192h128l-192-192z" />
|
||||
<glyph unicode="" d="M892.268 573.51c2.444 11.11 3.732 22.648 3.732 34.49 0 88.366-71.634 160-160 160-14.222 0-28.014-1.868-41.132-5.352-24.798 77.352-97.29 133.352-182.868 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.622-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.388 114.616-256 256-256h128v-192h256v192h224c88.366 0 160 71.632 160 160 0 78.72-56.854 144.162-131.732 157.51zM576 320v-192h-128v192h-160l224 224 224-224h-160z" />
|
||||
<glyph unicode="" d="M896 448h-160l-224-224-224 224h-160l-128-256v-64h1024v64l-128 256zM0 64h1024v-64h-1024v64zM576 640v256h-128v-256h-224l288-288 288 288h-224z" />
|
||||
<glyph unicode="" d="M0 64h1024v-64h-1024zM1024 192v-64h-1024v64l128 256h256v-128h256v128h256zM224 640l288 288 288-288h-224v-256h-128v256z" />
|
||||
<glyph unicode="" d="M736 512l-256-256-256 256h160v384h192v-384zM480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64z" />
|
||||
<glyph unicode="" d="M480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64zM224 640l256 256 256-256h-160v-320h-192v320z" />
|
||||
<glyph unicode="" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM751.59 256c8.58 40.454 13.996 83.392 15.758 128h127.446c-3.336-44.196-13.624-87.114-30.68-128h-112.524zM208.41 576c-8.58-40.454-13.996-83.392-15.758-128h-127.444c3.336 44.194 13.622 87.114 30.678 128h112.524zM686.036 576c9.614-40.962 15.398-83.854 17.28-128h-191.316v128h174.036zM512 640v187.338c14.59-4.246 29.044-11.37 43.228-21.37 26.582-18.74 52.012-47.608 73.54-83.486 14.882-24.802 27.752-52.416 38.496-82.484h-155.264zM331.232 722.484c21.528 35.878 46.956 64.748 73.54 83.486 14.182 10 28.638 17.124 43.228 21.37v-187.34h-155.264c10.746 30.066 23.616 57.68 38.496 82.484zM448 576v-128h-191.314c1.88 44.146 7.666 87.038 17.278 128h174.036zM95.888 256c-17.056 40.886-27.342 83.804-30.678 128h127.444c1.762-44.608 7.178-87.546 15.758-128h-112.524zM256.686 384h191.314v-128h-174.036c-9.612 40.96-15.398 83.854-17.278 128zM448 192v-187.34c-14.588 4.246-29.044 11.372-43.228 21.37-26.584 18.74-52.014 47.61-73.54 83.486-14.882 24.804-27.75 52.418-38.498 82.484h155.266zM628.768 109.516c-21.528-35.876-46.958-64.746-73.54-83.486-14.184-9.998-28.638-17.124-43.228-21.37v187.34h155.266c-10.746-30.066-23.616-57.68-38.498-82.484zM512 256v128h191.314c-1.88-44.146-7.666-87.040-17.28-128h-174.034zM767.348 448c-1.762 44.608-7.178 87.546-15.758 128h112.524c17.056-40.886 27.344-83.806 30.68-128h-127.446zM830.658 640h-95.9c-18.638 58.762-44.376 110.294-75.316 151.428 42.536-20.34 81.058-47.616 114.714-81.272 21.48-21.478 40.362-44.938 56.502-70.156zM185.844 710.156c33.658 33.658 72.18 60.932 114.714 81.272-30.942-41.134-56.676-92.666-75.316-151.428h-95.898c16.138 25.218 35.022 48.678 56.5 70.156zM129.344 192h95.898c18.64-58.762 44.376-110.294 75.318-151.43-42.536 20.34-81.058 47.616-114.714 81.274-21.48 21.478-40.364 44.938-56.502 70.156zM774.156 121.844c-33.656-33.658-72.18-60.934-114.714-81.274 30.942 41.134 56.678 92.668 75.316 151.43h95.9c-16.14-25.218-35.022-48.678-56.502-70.156z" />
|
||||
<glyph unicode="" d="M874.040 810.038c96.702-96.704 149.96-225.28 149.96-362.040s-53.258-265.334-149.96-362.038c-96.706-96.702-225.28-149.96-362.040-149.96-136.76 0-265.334 53.258-362.040 149.96-96.702 96.704-149.96 225.278-149.96 362.038 0 136.76 53.254 265.336 149.96 362.040 96.706 96.704 225.28 149.962 362.040 149.962 136.76 0 265.334-53.258 362.040-149.962zM828.784 131.214c63.058 63.060 104.986 141.608 122.272 227.062-13.474-19.836-26.362-27.194-34.344 17.206-8.22 72.39-74.708 26.148-116.516 51.86-44.004-29.658-142.906 57.662-126.098-40.824 25.934-44.422 140.008 59.45 83.148-34.542-36.274-65.616-132.642-210.932-120.106-286.258 1.582-109.744-112.134-22.884-151.314 13.52-26.356 72.92-8.982 200.374-77.898 236.086-74.802 3.248-139.004 10.046-167.994 93.67-17.446 59.828 18.564 148.894 82.678 162.644 93.85 58.966 127.374-69.054 215.39-71.434 27.328 28.594 101.816 37.686 107.992 69.75-57.75 10.19 73.268 48.558-5.528 70.382-43.47-5.112-71.478-45.074-48.368-78.958-84.238-19.642-86.936 121.904-167.91 77.258-2.058-70.59-132.222-22.886-45.036-8.572 29.956 13.088-48.86 51.016-6.28 44.124 20.916 1.136 91.332 25.812 72.276 42.402 39.21 24.34 72.16-58.29 110.538 1.882 27.708 46.266-11.62 54.808-46.35 31.356-19.58 21.924 34.57 69.276 82.332 89.738 15.918 6.82 31.122 10.536 42.746 9.484 24.058-27.792 68.55-32.606 70.878 3.342-59.582 28.534-125.276 43.608-193.292 43.608-97.622 0-190.47-31.024-267.308-88.39 20.65-9.46 32.372-21.238 12.478-36.296-15.456-46.054-78.17-107.876-133.224-99.124-28.586-49.296-47.412-103.606-55.46-160.528 46.112-15.256 56.744-45.45 46.836-55.55-23.496-20.488-37.936-49.53-45.376-81.322 15.010-91.836 58.172-176.476 125.27-243.576 84.616-84.614 197.118-131.214 316.784-131.214 119.664 0 232.168 46.6 316.784 131.214z" />
|
||||
<glyph unicode="" d="M953.396 885.358l-4.028 4.042c-94.148 94.134-248.194 94.134-342.326 0l-218.106-218.136c-94.134-94.132-94.134-248.176 0-342.31l4.026-4.026c7.832-7.848 16.146-14.924 24.736-21.458l79.848 79.85c-9.302 5.494-18.126 12.072-26.116 20.060l-4.042 4.042c-51.114 51.098-51.114 134.272 0 185.39l218.128 218.112c51.116 51.118 134.274 51.118 185.386 0l4.042-4.024c51.1-51.116 51.1-134.292 0-185.39l-98.686-98.686c17.132-42.308 25.248-87.4 24.538-132.386l152.604 152.604c94.134 94.136 94.134 248.178-0.004 342.316zM631.042 571.066c-7.832 7.832-16.146 14.922-24.736 21.44l-79.848-79.832c9.304-5.496 18.126-12.074 26.116-20.062l4.042-4.040c51.116-51.116 51.116-134.272 0-185.388l-218.13-218.134c-51.118-51.102-134.276-51.102-185.388 0l-4.042 4.042c-51.098 51.12-51.098 134.276 0 185.388l98.688 98.686c-17.134 42.306-25.246 87.402-24.538 132.386l-152.602-152.598c-94.136-94.132-94.136-248.178 0-342.324l4.026-4.032c94.152-94.128 248.192-94.128 342.328 0l218.11 218.118c94.134 94.132 94.134 248.194 0 342.326l-4.026 4.024z" />
|
||||
<glyph unicode="" d="M512 704c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.616 256-256 256zM512 288v320c88.224 0 160-71.776 160-160s-71.776-160-160-160zM512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.256c24.992-24.992 24.992-65.516 0-90.51-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.992-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.994 65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.516 24.992 90.508 0 24.994-24.994 24.994-65.518 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0-24.994 24.994-24.994 65.518 0 90.51l45.256 45.256z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM128 448c0 212.078 171.922 384 384 384v-768c-212.078 0-384 171.922-384 384z" />
|
||||
<glyph unicode="" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-223.462-117.48 42.676 248.83-180.786 176.222 249.84 36.304 111.732 226.396 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
|
||||
<glyph unicode="" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-0.942-0.496 0.942 570.768 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
|
||||
<glyph unicode="" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538z" />
|
||||
<glyph unicode="" d="M1024 601.844c0-86.362-37.218-164.030-96.49-217.844h0.49l-320-320c-32-32-64-64-96-64s-64 32-96 64l-319.51 320c-59.272 53.814-96.49 131.482-96.49 217.844 0 162.458 131.698 294.156 294.156 294.156 86.362 0 164.030-37.218 217.844-96.49 53.814 59.272 131.482 96.49 217.844 96.49 162.456 0 294.156-131.698 294.156-294.156z" />
|
||||
<glyph unicode="" d="M1024 601.844c0 162.458-131.7 294.156-294.156 294.156-86.362 0-164.030-37.218-217.844-96.49-53.814 59.272-131.482 96.49-217.844 96.49-162.458 0-294.156-131.698-294.156-294.156 0-86.362 37.218-164.030 96.49-217.844h-0.49l320-320c32-32 64-64 96-64s64 32 96 64l319.51 320c59.272 53.814 96.49 131.482 96.49 217.844zM841.468 478.768l-323.978-324.258c-1.678-1.678-3.532-3.532-5.49-5.48-1.96 1.95-3.814 3.802-5.49 5.48l-323.978 324.256c-35.166 31.928-54.532 75.638-54.532 123.078 0 91.618 74.538 166.156 166.156 166.156 47.44 0 91.15-19.366 123.076-54.532l94.768-104.38 94.768 104.378c31.928 35.168 75.636 54.534 123.076 54.534 91.618 0 166.156-74.538 166.156-166.156 0-47.44-19.368-91.15-54.532-123.076z" />
|
||||
<glyph unicode="" d="M1024 601.844c0-86.362-37.218-164.030-96.49-217.844h0.49l-320-320c-32-32-64-64-96-64s-64 32-96 64l-319.51 320c-59.272 53.814-96.49 131.482-96.49 217.844 0 162.458 131.698 294.156 294.156 294.156 55.45 0 107.302-15.364 151.572-42.036l-93.728-149.964 224-128-128-320 352 384-224 128 78.892 118.34c23.932 6.288 49.046 9.66 74.952 9.66 162.456 0 294.156-131.698 294.156-294.156z" />
|
||||
<glyph unicode="" d="M928 384c73 0 32-192-32-192 32 0 0-160-64-160 0-64-64-96-128-96-270.352 0-175.264 67.65-448 96v512c240.922 72.268 480 253.424 480 416 53 0 192-64 0-384 0 0 160 0 192 0 96 0 64-192 0-192zM192 544v-512h64v-32h-128c-35.2 0-64 43.2-64 96v384c0 52.8 28.8 96 64 96h128v-32h-64z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM542.74 248.972c140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.956-161.518-297.566-330.85-297.566-119.242 0-223.858 64.282-282.892 160.948 70.41-55.058 194.534-65.808 325.288-39.976zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96zM352 588.5c-41.796 0-77.334-15.656-90.516-37.5-3.54 5.866-5.484 32.174-5.484 38.75 0 31.066 42.98 56.25 96 56.25 53.020 0 96-25.184 96-56.25 0-6.576-1.944-32.884-5.484-38.75-13.182 21.844-48.72 37.5-90.516 37.5z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.228-512-512 0-282.77 229.228-512 512-512 282.77 0 512 229.23 512 512 0 282.772-229.23 512-512 512zM704 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM352 647.938c59.646 0 102-22.332 102-57.282 0-7.398 3.812-42.994-0.17-49.594-14.828 24.576-54.81 42.188-101.83 42.188s-87.002-17.612-101.83-42.188c-3.982 6.6-0.17 42.196-0.17 49.594 0 34.95 42.354 57.282 102 57.282zM500.344 128c-119.242 0-223.858 64.28-282.892 160.952 70.41-55.060 194.534-65.81 325.288-39.978 140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.96-161.518-297.568-330.85-297.568z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM192 448v-64c0-140.8 115.2-256 256-256h128c140.8 0 256 115.2 256 256v64h-640zM384 203.012c-26.538 9.458-50.924 24.822-71.544 45.446-36.406 36.402-56.456 84.54-56.456 135.542h128v-180.988zM576 192h-128v192h128v-192zM711.544 248.458c-20.624-20.624-45.010-35.988-71.544-45.446v180.988h128c0-51.002-20.048-99.14-56.456-135.542zM225.352 576c0.002 0 0 0 0 0 9.768 0 18.108 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.956-16.69 19.722-16.69 9.768 0 18.108 7.056 19.724 16.688 1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.548-12.876 1.628-19.312 1.62-9.632 9.96-16.688 19.726-16.688zM609.352 576c0.002 0 0 0 0 0 9.77 0 18.112 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.958-16.69 19.722-16.69s18.108 7.056 19.722 16.688c1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.544-12.876 1.626-19.312 1.624-9.632 9.964-16.688 19.73-16.688z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 724c63.962 0 116-52.038 116-116 0-6.378-0.546-12.876-1.628-19.312-1.618-9.632-9.958-16.688-19.724-16.688s-18.108 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69-0.002 0 0 0-0.002 0-9.766 0-18.106 7.056-19.722 16.688-1.084 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM320 724c63.962 0 116-52.038 116-116 0-6.378-0.548-12.876-1.628-19.312-1.618-9.632-9.956-16.688-19.724-16.688-9.768 0-18.106 7.056-19.722 16.69-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69 0 0 0 0 0 0-9.766 0-18.106 7.056-19.724 16.688-1.082 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM192 384h192v-247.846c-110.094 28.606-192 129.124-192 247.846zM448 128v256h128v-256h-128zM640 136.154v247.846h192c0-118.722-81.904-219.24-192-247.846z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 704c17.6 0 32-14.4 32-32v-96c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192zM512 192c93.208 0 174.772 49.818 219.546 124.278l54.88-32.934c-55.966-93.070-157.916-155.344-274.426-155.344-48.458 0-94.384 10.796-135.54 30.082l33.162 55.278c31.354-13.714 65.964-21.36 102.378-21.36z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 128c-48.458 0-94.384 10.796-135.542 30.082l33.162 55.276c31.356-13.712 65.966-21.358 102.38-21.358 93.208 0 174.772 49.818 219.542 124.278l54.882-32.934c-55.964-93.070-157.914-155.344-274.424-155.344zM832 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-96z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396zM767.042 679.76c4.284-17.144-6.14-34.518-23.282-38.804-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64 0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284 4.286-17.146-6.138-34.518-23.284-38.806-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM745.74 358.38l22.488-76.776-437.008-128.002-22.488 76.776zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM331.244 153.614l-22.488 76.774 437 128 22.488-76.774-437-128z" />
|
||||
<glyph unicode="" d="M320 832v-347.808c-80.91 22.456-100.592 33.808-186 33.808-73.888 0-134-60.112-134-134 0-73.886 60.112-134 134-134 103.972 0 151.95-38.722 205.71-115.090 1.596-2.268 3.162-4.578 4.71-6.91h-88.42v-192h640v192h-57.004c4.302 63.662 22.192 81.12 44.084 102.446 16.89 16.452 37.912 36.928 53.276 74.030 16.13 38.954 23.644 89.646 23.644 159.524v64.98c0 61.938-51.268 112.326-114.286 112.326-10.47 0-20.876-1.424-30.9-4.19-20.996 19.71-49.002 30.964-78.814 30.964-10.468 0-20.876-1.424-30.898-4.19-20.998 19.71-49.006 30.964-78.816 30.964-18.036 0-35.1-4.142-50.286-11.488v148.634c0 70.694-57.306 128-128 128-70.692 0-128-57.306-128-128zM832 32c0-17.672-14.326-32-32-32s-32 14.328-32 32 14.326 32 32 32 32-14.328 32-32zM512 826v-256h64v6.532c0 26.646 22.558 48.326 50.286 48.326 17.37 0 33.29-8.468 42.586-22.654l16.244-24.788 25.958 14.298c7.562 4.166 16.182 6.368 24.926 6.368 17.37 0 33.288-8.468 42.582-22.652l16.244-24.79 25.96 14.298c7.562 4.166 16.182 6.368 24.928 6.368 27.726 0 50.286-21.68 50.286-48.326v-64.98c0-126.562-38.206-152.088-65.95-179.112-28.32-27.588-59.984-58.49-66.728-150.888h-334.374c-8.264 15.756-17.264 30.7-27.090 44.658-67.858 96.392-139.546 147.342-267.858 147.342-31.982 0-58 30.020-58 62s26.018 60 58 60c85.66 0 105.412-12.414 186-36.96 22.742-6.124 45.27-11.922 63.334-15.876l0.666 436.836c0 35.29 28.71 64 64 64s64-28.71 64-64z" />
|
||||
<glyph unicode="" d="M896 576h-347.808c22.456 80.91 33.808 100.592 33.808 186 0 73.888-60.112 134-134 134-73.886 0-134-60.112-134-134 0-103.972-38.722-151.95-115.090-205.71-2.268-1.596-4.578-3.162-6.91-4.71v88.42h-192v-640h192v57.004c63.662-4.302 81.12-22.192 102.446-44.084 16.452-16.89 36.928-37.912 74.030-53.276 38.954-16.13 89.646-23.644 159.524-23.644h64.98c61.938 0 112.326 51.268 112.326 114.286 0 10.47-1.424 20.876-4.19 30.9 19.71 20.996 30.964 49.002 30.964 78.814 0 10.468-1.424 20.876-4.19 30.898 19.71 20.998 30.964 49.006 30.964 78.816 0 18.036-4.142 35.1-11.488 50.286h148.634c70.694 0 128 57.306 128 128 0 70.692-57.306 128-128 128zM96 64c-17.672 0-32 14.326-32 32s14.328 32 32 32 32-14.326 32-32-14.328-32-32-32zM890 384h-256v-64h6.532c26.646 0 48.326-22.558 48.326-50.286 0-17.37-8.468-33.29-22.654-42.586l-24.788-16.244 14.298-25.958c4.166-7.562 6.368-16.182 6.368-24.926 0-17.37-8.468-33.288-22.652-42.582l-24.79-16.244 14.298-25.96c4.166-7.562 6.368-16.182 6.368-24.928 0-27.726-21.68-50.286-48.326-50.286h-64.98c-126.562 0-152.088 38.206-179.112 65.95-27.588 28.32-58.49 59.984-150.888 66.728v334.374c15.756 8.264 30.7 17.264 44.658 27.090 96.392 67.858 147.342 139.546 147.342 267.858 0 31.982 30.020 58 62 58s60-26.018 60-58c0-85.66-12.414-105.412-36.96-186-6.124-22.742-11.922-45.27-15.876-63.334l436.836-0.666c35.29 0 64-28.71 64-64s-28.71-64-64-64z" />
|
||||
<glyph unicode="" d="M320 64v347.808c-80.91-22.456-100.592-33.808-186-33.808-73.888 0-134 60.112-134 134 0 73.886 60.112 134 134 134 103.972 0 151.95 38.722 205.71 115.090 1.596 2.268 3.162 4.578 4.71 6.91h-88.42v192h640v-192h-57.004c4.302-63.662 22.192-81.12 44.084-102.446 16.89-16.452 37.912-36.928 53.276-74.030 16.13-38.954 23.644-89.646 23.644-159.524v-64.98c0-61.938-51.268-112.326-114.286-112.326-10.47 0-20.876 1.424-30.9 4.19-20.996-19.71-49.002-30.964-78.814-30.964-10.468 0-20.876 1.424-30.898 4.19-20.998-19.71-49.006-30.964-78.816-30.964-18.036 0-35.1 4.142-50.286 11.488v-148.634c0-70.694-57.306-128-128-128-70.692 0-128 57.306-128 128zM832 864c0 17.672-14.326 32-32 32s-32-14.328-32-32 14.326-32 32-32 32 14.328 32 32zM512 70v256h64v-6.532c0-26.646 22.558-48.326 50.286-48.326 17.37 0 33.29 8.468 42.586 22.654l16.244 24.788 25.958-14.298c7.562-4.166 16.182-6.368 24.926-6.368 17.37 0 33.288 8.468 42.582 22.652l16.244 24.79 25.96-14.298c7.562-4.166 16.182-6.368 24.928-6.368 27.726 0 50.286 21.68 50.286 48.326v64.98c0 126.562-38.206 152.088-65.95 179.112-28.32 27.588-59.984 58.49-66.728 150.888h-334.374c-8.264-15.756-17.264-30.7-27.090-44.658-67.858-96.392-139.546-147.342-267.858-147.342-31.982 0-58-30.020-58-62s26.018-60 58-60c85.66 0 105.412 12.414 186 36.96 22.742 6.124 45.27 11.922 63.334 15.876l0.666-436.836c0-35.29 28.71-64 64-64s64 28.71 64 64z" />
|
||||
<glyph unicode="" d="M128 576h347.808c-22.456 80.91-33.808 100.592-33.808 186 0 73.888 60.112 134 134 134 73.886 0 134-60.112 134-134 0-103.972 38.722-151.95 115.090-205.71 2.268-1.596 4.578-3.162 6.91-4.71v88.42h192v-640h-192v57.004c-63.662-4.302-81.12-22.192-102.446-44.084-16.452-16.89-36.928-37.912-74.030-53.276-38.954-16.13-89.646-23.644-159.524-23.644h-64.98c-61.938 0-112.326 51.268-112.326 114.286 0 10.47 1.424 20.876 4.19 30.9-19.71 20.996-30.964 49.002-30.964 78.814 0 10.468 1.424 20.876 4.19 30.898-19.71 20.998-30.964 49.006-30.964 78.816 0 18.036 4.142 35.1 11.488 50.286h-148.634c-70.694 0-128 57.306-128 128 0 70.692 57.306 128 128 128zM928 64c17.672 0 32 14.326 32 32s-14.328 32-32 32-32-14.326-32-32 14.328-32 32-32zM134 384h256v-64h-6.532c-26.646 0-48.326-22.558-48.326-50.286 0-17.37 8.468-33.29 22.654-42.586l24.788-16.244-14.298-25.958c-4.166-7.562-6.368-16.182-6.368-24.926 0-17.37 8.468-33.288 22.652-42.582l24.79-16.244-14.298-25.96c-4.166-7.562-6.368-16.182-6.368-24.928 0-27.726 21.68-50.286 48.326-50.286h64.98c126.562 0 152.088 38.206 179.112 65.95 27.588 28.32 58.49 59.984 150.888 66.728v334.374c-15.756 8.264-30.7 17.264-44.658 27.090-96.392 67.858-147.342 139.546-147.342 267.858 0 31.982-30.020 58-62 58s-60-26.018-60-58c0-85.66 12.414-105.412 36.96-186 6.124-22.742 11.922-45.27 15.876-63.334l-436.836-0.666c-35.29 0-64-28.71-64-64s28.71-64 64-64z" />
|
||||
<glyph unicode="" d="M512 801.276l-344.834-737.276h689.668l-344.834 737.276zM512 960v0c22.070 0 44.14-14.882 60.884-44.648l437.072-871.112c33.49-59.532 5-108.24-63.302-108.24h-869.308c-68.304 0-96.79 48.708-63.304 108.24l437.074 871.112c16.744 29.766 38.814 44.648 60.884 44.648zM448 192c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM512 576c35.346 0 64-28.654 64-64l-20-192h-88l-20 192c0 35.346 28.654 64 64 64z" />
|
||||
<glyph unicode="" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156 78.572-78.572 183.038-121.844 294.156-121.844 111.118 0 215.584 43.272 294.156 121.844 78.572 78.572 121.844 183.038 121.844 294.156 0 111.118-43.272 215.584-121.844 294.156-78.572 78.572-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512 0 282.77 229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
|
||||
<glyph unicode="" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156 78.572-78.572 183.038-121.844 294.156-121.844 111.118 0 215.584 43.272 294.156 121.844 78.572 78.572 121.844 183.038 121.844 294.156 0 111.118-43.272 215.584-121.844 294.156-78.572 78.572-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512 0 282.77 229.23 512 512 512z" />
|
||||
<glyph unicode="" d="M397.434 42.304l-397.868 391.6 197.378 194.27 200.49-197.332 429.62 422.852 197.378-194.27-626.998-617.12zM107.912 433.904l289.524-284.962 518.656 510.482-89.036 87.632-429.62-422.852-200.49 197.334-89.034-87.634z" />
|
||||
<glyph unicode="" d="M128 704h128v-192h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192zM128 896h128v-128h-128v128zM960 896v64h-192c-35.202 0-64-28.8-64-64v-320c0-35.2 28.798-64 64-64h192v64h-192v320h192zM640 800v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64zM576 576h-128v128h128v-128zM576 768h-128v128h128v-128zM832 384l-416-448-224 288 82 70 142-148 352 302z" />
|
||||
<glyph unicode="" d="M0 544v-192c0-17.672 14.328-32 32-32h960c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32h-960c-17.672 0-32-14.328-32-32z" />
|
||||
<glyph unicode="" d="M992 576h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
|
||||
<glyph unicode="" d="M384 448h-320v128h320v128l192-192-192-192zM1024 960v-832l-384-192v192h-384v256h64v-192h320v576l256 128h-576v-256h-64v320z" />
|
||||
<glyph unicode="" d="M768 320v128h-320v128h320v128l192-192zM704 384v-256h-320v-192l-384 192v832h704v-320h-64v256h-512l256-128v-576h256v192z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM384 672l384-224-384-224z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h128v-384h-128zM576 640h128v-384h-128z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h384v-384h-384z" />
|
||||
<glyph unicode="" d="M896 832v-768h-128v352l-320-320v320l-320-320v704l320-320v320l320-320v352z" />
|
||||
<glyph unicode="" d="M256 64v768h128v-352l320 320v-704l-320 320v-352z" />
|
||||
<glyph unicode="" d="M768 832v-768h-128v352l-320-320v704l320-320v352z" />
|
||||
<glyph unicode="" d="M0 192h1024v-128h-1024zM512 832l512-512h-1024z" />
|
||||
<glyph unicode="" d="M890.040 37.96c-12.286 0-24.568 4.686-33.942 14.058-18.744 18.746-18.744 49.136 0 67.882 87.638 87.642 135.904 204.16 135.904 328.1 0 123.938-48.266 240.458-135.904 328.098-18.744 18.746-18.744 49.138 0 67.882 18.744 18.744 49.138 18.744 67.882 0 105.77-105.772 164.022-246.4 164.022-395.98 0-149.582-58.252-290.208-164.022-395.98-9.372-9.374-21.656-14.060-33.94-14.060zM719.53 128.47c-12.286 0-24.568 4.686-33.942 14.058-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.592 126.53-190.076 126.53-305.468 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060zM549.020 218.98c-12.286 0-24.568 4.686-33.942 14.058-18.746 18.746-18.746 49.136 0 67.882 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882 18.746 18.744 49.136 18.744 67.882 0 118.53-118.53 118.53-311.392 0-429.922-9.372-9.37-21.656-14.056-33.94-14.056zM401.332 881.332c25.668 25.668 46.668 16.968 46.668-19.332v-828c0-36.3-21-44.998-46.668-19.33l-241.332 241.33h-160v384h160l241.332 241.332z" horiz-adv-x="1088" />
|
||||
<glyph unicode="" d="M719.53 128.47c-12.286 0-24.568 4.686-33.942 14.058-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.592 126.53-190.076 126.53-305.468 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060zM549.020 218.98c-12.286 0-24.568 4.686-33.942 14.058-18.746 18.746-18.746 49.136 0 67.882 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882 18.746 18.744 49.136 18.744 67.882 0 118.53-118.53 118.53-311.392 0-429.922-9.372-9.37-21.656-14.056-33.94-14.056zM401.332 881.332c25.668 25.668 46.668 16.968 46.668-19.332v-828c0-36.3-21-44.998-46.668-19.33l-241.332 241.33h-160v384h160l241.332 241.332z" />
|
||||
<glyph unicode="" d="M549.020 218.98c-12.286 0-24.568 4.686-33.942 14.058-18.746 18.746-18.746 49.136 0 67.882 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882 18.746 18.744 49.136 18.744 67.882 0 118.53-118.53 118.53-311.392 0-429.922-9.372-9.37-21.656-14.056-33.94-14.056zM401.332 881.332c25.668 25.668 46.668 16.968 46.668-19.332v-828c0-36.3-21-44.998-46.668-19.33l-241.332 241.33h-160v384h160l241.332 241.332z" />
|
||||
<glyph unicode="" d="M401.332 881.332c25.668 25.668 46.668 16.968 46.668-19.332v-828c0-36.3-21-44.998-46.668-19.33l-241.332 241.33h-160v384h160l241.332 241.332z" />
|
||||
<glyph unicode="" d="M401.332 881.332c25.668 25.668 46.668 16.968 46.668-19.332v-828c0-36.3-21-44.998-46.668-19.33l-241.332 241.33h-160v384h160l241.332 241.332zM960 340.852v-84.852h-84.852l-107.148 107.148-107.148-107.148h-84.852v84.852l107.148 107.148-107.148 107.148v84.852h84.852l107.148-107.148 107.148 107.148h84.852v-84.852l-107.148-107.148z" />
|
||||
<glyph unicode="" d="M256 960l256.002-256-512.002-512 256-256 512 512 256-255.998v767.998z" />
|
||||
<glyph unicode="" d="M1024 448l-512 512v-320h-511.998l-0.002-384h512v-320z" />
|
||||
<glyph unicode="" d="M1024 704l-256-256-512 512-256-256 512.002-512-256-256h767.998z" />
|
||||
<glyph unicode="" d="M512-64l512 512h-320v511.998l-384 0.002v-512h-320z" />
|
||||
<glyph unicode="" d="M768-64l-256 256 512 512-256 256-512-512.002-256 256v-767.998z" />
|
||||
<glyph unicode="" d="M0 448l512-512v320h511.998l0.002 384h-512v320z" />
|
||||
<glyph unicode="" d="M128 384c0-35.348 28.654-64 64-64s64 28.652 64 64v229.492l530.746-530.748c24.992-24.992 65.516-24.992 90.508 0 12.498 12.498 18.746 28.878 18.746 45.256s-6.248 32.758-18.746 45.254l-530.746 530.746h229.492c35.346 0 64 28.654 64 64s-28.654 64-64 64h-448v-448z" />
|
||||
<glyph unicode="" d="M877.254 557.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z" />
|
||||
<glyph unicode="" d="M832.020 832c-0.012 0-0.028 0-0.040 0h-383.98c-35.346 0-64-28.654-64-64s28.654-64 64-64h229.492l-530.746-530.746c-24.994-24.992-24.994-65.516 0-90.508 12.496-12.498 28.876-18.746 45.254-18.746s32.758 6.248 45.254 18.746l530.746 530.746v-229.492c0-35.346 28.654-64 64-64s64 28.654 64 64v448h-63.98z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM813.256 493.254l-256.002 256c-24.992 24.994-65.514 24.994-90.508 0s-24.994-65.516 0-90.51l146.744-146.744h-357.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h357.49l-146.746-146.744c-24.994-24.994-24.994-65.518 0-90.512 12.498-12.496 28.878-18.744 45.256-18.744s32.758 6.248 45.254 18.744l256.002 256c24.992 24.994 24.992 65.518 0 90.51z" />
|
||||
<glyph unicode="" d="M512-64c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 864c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416zM384 192c-35.346 0-64 28.654-64 64s28.654 64 64 64h165.488l-274.742 274.744c-24.994 24.994-24.994 65.518 0 90.512 12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.744l274.746-274.746v165.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-384h-384z" />
|
||||
<glyph unicode="" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512 229.23-512 512-512 512 229.23 512 512zM96 448c0 229.75 186.25 416 416 416s416-186.25 416-416-186.25-416-416-416-416 186.25-416 416zM557.254 146.744l256 256.002c24.994 24.992 24.994 65.514 0 90.508s-65.516 24.994-90.51 0l-146.744-146.744v357.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-357.49l-146.744 146.746c-24.994 24.994-65.518 24.994-90.512 0-12.496-12.498-18.744-28.878-18.744-45.256s6.248-32.758 18.744-45.254l256-256.002c24.994-24.992 65.518-24.992 90.51 0z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM640 192c35.346 0 64 28.654 64 64s-28.654 64-64 64h-165.488l274.742 274.744c24.994 24.994 24.994 65.518 0 90.512-12.496 12.496-28.876 18.744-45.254 18.744s-32.758-6.248-45.254-18.744l-274.746-274.746v165.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-384h384z" />
|
||||
<glyph unicode="" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM210.744 493.254l256.002 256c24.992 24.994 65.514 24.994 90.508 0s24.994-65.516 0-90.51l-146.744-146.744h357.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-357.49l146.746-146.744c24.994-24.994 24.994-65.518 0-90.512-12.498-12.496-28.878-18.744-45.256-18.744s-32.758 6.248-45.254 18.744l-256.002 256c-24.992 24.994-24.992 65.518 0 90.51z" />
|
||||
<glyph unicode="" d="M704 768h-704v-128h704v-192l256 256-256 256zM960 960v-512h64v512zM320 448l-256-256 256-256v192h704v128h-704zM0 448v-512h64v512z" />
|
||||
<glyph unicode="" d="M0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896zM768 736l-320-320-192 192-128-128 320-320 448 448-128 128z" />
|
||||
<glyph unicode="" d="M0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896z" />
|
||||
<glyph unicode="" d="M0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896zM256 704h512v-512h-512z" />
|
||||
<glyph unicode="" d="M256 64v-128l-192 160 192 160v-128h512v128l192-160-192-160v128zM832 896v-256l-64 128h-192v-448h128v-64h-384v64h128v448h-192l-64-128v256z" />
|
||||
<glyph unicode="" d="M707.88 475.348c37.498 44.542 60.12 102.008 60.12 164.652 0 141.16-114.842 256-256 256h-320v-896h384c141.158 0 256 114.842 256 256 0 92.956-49.798 174.496-124.12 219.348zM384 768h101.5c55.968 0 101.5-57.42 101.5-128s-45.532-128-101.5-128h-101.5v256zM543 128h-159v256h159c58.45 0 106-57.42 106-128s-47.55-128-106-128z" />
|
||||
<glyph unicode="" d="M704 896h128v-416c0-159.058-143.268-288-320-288-176.73 0-320 128.942-320 288v416h128v-416c0-40.166 18.238-78.704 51.354-108.506 36.896-33.204 86.846-51.494 140.646-51.494 53.8 0 103.75 18.29 140.646 51.494 33.116 29.802 51.354 68.34 51.354 108.506v416zM192 128h640v-128h-640z" />
|
||||
<glyph unicode="" d="M896 896v-64h-128l-320-768h128v-64h-448v64h128l320 768h-128v64z" />
|
||||
<glyph unicode="" d="M1024 448v-64h-234.506c27.504-38.51 42.506-82.692 42.506-128 0-70.878-36.66-139.026-100.58-186.964-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128h-512v64h299.518c-2.338 1.654-4.656 3.324-6.938 5.036-63.92 47.94-100.58 116.086-100.58 186.964 0 70.878 36.66 139.024 100.58 186.964 59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128-104.074 0-192-58.618-192-128 0-69.382 87.926-128 192-128 78.978 0 154.054-22.678 212.482-64h299.518z" />
|
||||
<glyph unicode="" d="M704 64h256l64 128v-256h-384v214.214c131.112 56.484 224 197.162 224 361.786 0 214.432-157.598 382.266-352 382.266-194.406 0-352-167.832-352-382.266 0-164.624 92.886-305.302 224-361.786v-214.214h-384v256l64-128h256v32.59c-187.63 66.46-320 227.402-320 415.41 0 247.424 229.23 448 512 448 282.77 0 512-200.576 512-448 0-188.008-132.37-348.95-320-415.41v-32.59z" />
|
||||
<glyph unicode="" d="M941.606 225.292l44.394 94.708h38l-64-384h-960v74.242l331.546 391.212-331.546 331.546v227h980l44-256h-34.376l-18.72 38.88c-35.318 73.364-61.904 89.12-138.904 89.12h-662l353.056-353.056-297.42-350.944h542.364c116.008 0 146.648 41.578 173.606 97.292z" />
|
||||
<glyph unicode="" d="M0 768v-704h1024v704h-1024zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-256v128h256zM64 448h256v-128h-256v128zM704 448h256v-128h-256v128zM704 512v128h256v-128h-256zM64 256h256v-128h-256v128zM704 128v128h256v-128h-256z" />
|
||||
<glyph unicode="" d="M0 896v-896h1024v896h-1024zM384 320v192h256v-192h-256zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
|
||||
<glyph unicode="" d="M0 896h1024v-128h-1024zM0 704h640v-128h-640zM0 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
|
||||
<glyph unicode="" d="M0 896h1024v-128h-1024zM192 704h640v-128h-640zM192 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
|
||||
<glyph unicode="" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
|
||||
<glyph unicode="" d="M0 896h1024v-128h-1024zM0 704h1024v-128h-1024zM0 512h1024v-128h-1024zM0 320h1024v-128h-1024zM0 128h1024v-128h-1024z" />
|
||||
<glyph unicode="" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
|
||||
<glyph unicode="" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
|
||||
<glyph unicode="" d="M192 896v-768h768v768h-768zM896 192h-640v640h640v-640zM128 64v640l-64 64v-768h768l-64 64zM429.254 274.746l192 192 146.746-146.746v384h-384l146.746-146.746-192-192z" />
|
||||
<glyph unicode="" d="M288 704l-256-256 256-256h128l-256 256 256 256h-128zM736 704h-128l256-256-256-256h128l256 256-256 256z" />
|
||||
<glyph unicode="" d="M128 448l256 256h-128l-256-256 256-256h128zM768 704h-128l256-256-256-256h128l256 256zM544 832l-160-768h96l160 768z" />
|
||||
<glyph unicode="" d="M853.512 960h-684.27c-94.1 0-169.242-77.786-169.242-171.878v-680.352c0-96.422 75.142-171.77 169.242-171.77h684.268c94.096 0 170.49 75.348 170.49 171.77v680.352c0 94.092-76.394 171.878-170.488 171.878zM704 928v-160h-160v160h160zM480 928v-160h-160v160h160zM32 768v20.122c0 77.128 61.566 139.878 137.242 139.878h86.758v-160h-224zM768 320h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128zM992 768h-224v160h85.512c76.364 0 138.488-62.75 138.488-139.878v-20.122z" />
|
||||
<glyph unicode="" d="M0.806 90.336c-0.244 2.532-0.452 5.070-0.584 7.63 0.13-2.56 0.34-5.098 0.584-7.63zM235.908 394.852c92.010-2.738 153.734 92.698 137.862 213.198-15.894 120.48-103.396 217.168-195.408 219.922-92.026 2.73-153.74-89.482-137.852-210 15.882-120.468 103.352-220.374 195.398-223.12zM1024 704v85.31c0 93.88-76.782 170.69-170.658 170.69h-682.656c-92.276 0-168.012-74.232-170.564-165.926 58.362 51.386 139.324 94.316 222.874 94.316 89.304 0 357.244 0 357.244 0l-79.948-67.618h-113.268c75.13-28.804 115.156-116.124 115.156-205.722 0-75.248-41.81-139.954-100.888-185.968-57.644-44.902-68.572-63.708-68.572-101.878 0-32.578 61.746-88 94.032-110.788 94.382-66.538 124.916-128.312 124.916-231.456 0-16.428-2.042-32.83-6.066-48.96h307.742c93.874 0 170.656 76.75 170.656 170.69v533.308h-192v-191.998h-64v192h-191.998v64h191.998v192h64v-192h192zM185.886 194.064c21.614 0 41.422 0.59 61.936 0.59-27.146 26.334-48.626 58.6-48.626 98.38 0 23.608 7.564 46.336 18.134 66.52-10.782-0.77-21.79-0.994-33.126-0.994-74.356 0-137.506 24.076-184.204 63.854v-67.242l0.006-201.73c53.44 25.374 116.888 40.622 185.88 40.622zM3.42 72.742c-1.112 5.458-1.966 11.006-2.542 16.634 0.574-5.628 1.43-11.176 2.542-16.634zM455.45 7.154c-15.058 58.806-68.454 87.964-142.888 139.568-27.072 8.732-56.894 13.874-88.894 14.208-89.618 0.964-173.108-34.942-220.216-88.372 15.92-77.706 85.034-136.558 167.234-136.558h286.444c1.816 11.128 2.696 22.632 2.696 34.432 0 12.534-1.534 24.792-4.376 36.722z" />
|
||||
<glyph unicode="" d="M437.006 141.838c0-75.068-46.39-134.392-177.758-139.176-76.984 43.786-141.49 106.952-186.908 182.866 23.69 58.496 97.692 103.046 182.316 102.114 24.022-0.252 46.41-4.114 66.744-10.7 55.908-38.866 101-63.152 112.324-107.448 2.114-8.964 3.282-18.206 3.282-27.656zM512 960c-147.94 0-281.196-62.77-374.666-163.098 36.934 20.452 80.538 32.638 126.902 32.638 67.068 0 256.438 0 256.438 0l-57.304-60.14h-67.31c47.496-27.212 72.752-83.248 72.752-145.012 0-56.692-31.416-102.38-75.78-137.058-43.28-33.802-51.492-47.966-51.492-76.734 0-24.542 51.722-61.098 75.5-78.936 82.818-62.112 99.578-101.184 99.578-178.87 0-78.726-68.936-157.104-185.866-183.742 56.348-21.338 117.426-33.048 181.248-33.048 282.77 0 512 229.23 512 512s-229.23 512-512 512zM768 576v-128h-64v128h-128v64h128v128h64v-128h128v-64h-128zM365.768 620.528c11.922-90.776-27.846-149.19-96.934-147.134-69.126 2.082-134.806 65.492-146.74 156.242-11.928 90.788 34.418 160.254 103.53 158.196 69.090-2.074 128.22-76.542 140.144-167.304zM220.886 317.932c-74.68 0-138.128-25.768-182.842-63.864-24.502 59.82-38.044 125.29-38.044 193.932 0 56.766 9.256 111.368 26.312 162.396 7.374-99.442 77.352-176.192 192.97-176.192 8.514 0 16.764 0.442 24.874 1.022-7.95-15.23-13.622-32.19-13.622-49.982 0-29.97 16.488-47.070 36.868-66.894-15.402 0-30.27-0.418-46.516-0.418z" />
|
||||
<glyph unicode="" d="M459.33 300.168l-170.654-295.668h564.654l170.67 295.668zM975.612 384l-292.934 507.5h-341.348l292.956-507.5zM292.836 807.486l-292.836-507.318 170.676-295.668 292.832 507.324z" />
|
||||
<glyph unicode="" d="M575.87-64h-191.87v512h-128v176.45l128 0.058-0.208 103.952c0 143.952 39.034 231.54 208.598 231.54h141.176v-176.484h-88.23c-66.032 0-69.206-24.656-69.206-70.684l-0.262-88.324h158.69l-18.704-176.45-139.854-0.058-0.13-512z" />
|
||||
<glyph unicode="" d="M853.344 960h-682.66c-93.872 0-170.684-76.814-170.684-170.688v-682.626c0-93.938 76.812-170.686 170.684-170.686l682.66 0.002c93.876 0 170.656 76.746 170.656 170.688v682.622c0 93.874-76.782 170.688-170.656 170.688zM870.592 448h-166.592v-448h-192v448h-92.526v146.564h92.526v95.186c0 129.342 55.792 206.25 207.87 206.25h175.244v-158.57h-143.13c-42.482 0.070-47.752-22.152-47.752-63.512l-0.232-79.354h192l-25.408-146.564z" />
|
||||
<glyph unicode="" d="M512 960c282.77 0 512-229.23 512-512 0-261.094-195.438-476.53-448-508.026v380.026h176l16 128h-192v64c0 35.346 28.654 64 64 64h128v128h-128c-106.040 0-192-85.96-192-192v-64h-96v-128h96v-380.026c-252.562 31.496-448 246.932-448 508.026 0 282.77 229.23 512 512 512z" />
|
||||
<glyph unicode="" d="M854 960h-684c-93.5 0-170-76.5-170-170v-684c0-93.5 76.5-170 170-170h684c93.5 0 170 76.5 170 170v684c0 93.5-76.5 170-170 170zM327.8 512h368.4c6.988-20.058 10.8-41.59 10.8-64 0-107.524-87.476-195-195-195-107.524 0-195 87.476-195 195 0 22.41 3.812 43.942 10.8 64zM896 511.95v-383.95c0-35.2-28.8-64-64-64h-640c-35.2 0-64 28.8-64 64v384h100.108c-4.642-20.602-7.108-42.016-7.108-64 0-160.458 130.542-291 291-291 160.458 0 291 130.542 291 291 0 21.984-2.464 43.398-7.108 64l100.108-0.050zM896 736c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h64c17.6 0 32-14.4 32-32v-64z" />
|
||||
<glyph unicode="" d="M1024 765.582c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
|
||||
<glyph unicode="" d="M853.31 960h-682.62c-93.878 0-170.69-76.816-170.69-170.692v-682.62c0-93.938 76.812-170.688 170.69-170.688h682.62c93.878 0 170.69 76.75 170.69 170.69v682.618c0 93.876-76.812 170.692-170.69 170.692zM812.868 521.874c-33.958-191.296-223.708-353.296-280.78-390.31-57.088-37.006-109.154 14.822-128.038 53.994-21.616 44.708-86.41 286.94-103.368 307.020-16.964 20.038-67.876-20.080-67.876-20.080l-24.692 32.376c0 0 103.382 123.448 182.040 138.878 83.404 16.366 83.28-128.066 103.34-208.242 19.4-77.564 32.44-121.952 49.376-121.952 16.97 0 49.382 43.262 84.852 109.57 35.536 66.376-1.538 125.010-70.972 83.292 27.786 166.652 290.062 206.72 256.118 15.454z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM812.868 521.874c-33.958-191.296-223.708-353.296-280.78-390.31-57.088-37.006-109.154 14.822-128.038 53.994-21.616 44.708-86.41 286.94-103.368 307.020-16.964 20.038-67.876-20.080-67.876-20.080l-24.692 32.376c0 0 103.382 123.448 182.040 138.878 83.404 16.366 83.28-128.066 103.34-208.242 19.4-77.564 32.44-121.952 49.376-121.952 16.97 0 49.382 43.262 84.852 109.57 35.536 66.376-1.538 125.010-70.972 83.292 27.786 166.652 290.062 206.72 256.118 15.454z" />
|
||||
<glyph unicode="" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM843.668 152.334c-113.332-37.334-334.666-110-376-120.334s-84-27.668-108 41.666c0 0-204 602.666-222.666 656s-36.848 85.486 5.332 102.334c97.376 38.894 198.666 88.5 217.334 32 16.702-50.546 194.666-608 194.666-608s209.332 73.668 266.666 89.668 77.002 26.668 92-52 44-104-69.332-141.334z" />
|
||||
<glyph unicode="" d="M0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224zM576 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224z" />
|
||||
<glyph unicode="" d="M800 544c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128 0 70.58-57.42 128-128 128zM800 640v0c123.71 0 224-100.288 224-224 0-123.71-100.29-224-224-224-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224zM0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224z" />
|
||||
<glyph unicode="" d="M853.376 960h-682.688c-93.876 0-170.688-76.812-170.688-170.682v-682.626c0-93.942 76.812-170.692 170.688-170.692h682.682c93.874 0 170.63 76.754 170.63 170.696v682.622c0 93.87-76.756 170.682-170.624 170.682zM288 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160c0-88.366-71.634-160-160-160zM736 288c-88.368 0-160 71.634-160 160s71.632 160 160 160 160-71.634 160-160c0-88.366-71.632-160-160-160z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-230.796-512-515.5s229.23-515.5 512-515.5 512 230.796 512 515.5-229.23 515.5-512 515.5zM288 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160c0-88.366-71.634-160-160-160zM736 288c-88.368 0-160 71.634-160 160s71.632 160 160 160 160-71.634 160-160c0-88.366-71.632-160-160-160z" />
|
||||
<glyph unicode="" d="M704 565.74l-364.456 364.456c53.89 19.276 111.94 29.804 172.456 29.804 67.904 0 132.704-13.25 192-37.256v-357.004zM768 256v635.486c153.034-88.528 256-253.978 256-443.486 0-67.904-13.25-132.704-37.256-192h-218.744zM320 192h635.486c-88.528-153.034-253.978-256-443.486-256-67.904 0-132.704 13.25-192 37.256v218.744zM426.26 736l-411.282-411.282c-9.764 39.49-14.978 80.774-14.978 123.282 0 193.382 107.226 361.702 265.452 448.808l160.808-160.808zM256 458.26v-453.746c-94.596 54.722-170.036 138.848-213.874 239.872l213.874 213.874z" />
|
||||
<glyph unicode="" d="M853.376 960h-682.688c-93.876 0-170.688-76.812-170.688-170.682v-682.626c0-93.942 76.812-170.692 170.688-170.692h682.68c93.876 0 170.632 76.754 170.632 170.696v682.622c0 93.87-76.756 170.682-170.624 170.682zM512 896c68.714 0 133.804-15.49 192-43.138v-287.122l-313.558 313.558c38.656 10.874 79.426 16.702 121.558 16.702zM64 448c0 175.888 101.376 328.074 248.874 401.386l113.386-113.386-356.974-356.974c-3.474 22.484-5.286 45.516-5.286 68.974zM256 80.338c-74.684 52.098-132.764 126.348-164.672 213.25l164.672 164.672v-377.922zM512 0c-68.714 0-133.804 15.49-192 43.138v148.862h559.662c-80.956-116.052-215.43-192-367.662-192zM916.862 256h-148.862v559.664c116.052-80.958 192-215.43 192-367.664 0-68.714-15.49-133.804-43.138-192z" />
|
||||
<glyph unicode="" d="M303.922 123.99c27.144 0 53.786 13.136 69.972 37.416 25.734 38.602 15.302 90.754-23.298 116.488l-66.074 44.048c11.308 3.080 23.194 4.756 35.478 4.756 74.392 0 134.696-60.304 134.696-134.698 0-74.394-60.306-134.698-134.698-134.698-72.404 0-131.444 57.132-134.548 128.774l71.954-47.968c14.322-9.548 30.506-14.118 46.518-14.118zM853.34 960c93.876 0 170.66-76.812 170.66-170.688v-682.628c0-93.936-76.784-170.684-170.66-170.684h-682.652c-93.876 0-170.688 76.75-170.688 170.682v203.028l121.334-80.888c-11.652-63.174 6.938-130.83 55.798-179.69 78.904-78.904 206.83-78.904 285.736 0 48.468 48.466 67.15 115.43 56.076 178.166l249.056 222.988c46.248 6.638 90.816 27.744 126.394 63.322 87.476 87.476 87.476 229.306 0 316.784-87.48 87.478-229.308 87.478-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.23c-31.848-1.632-63.378-10.764-91.726-27.392l-217.866 145.244v277.69c0 93.876 76.81 170.688 170.686 170.688h682.654zM896 672c0 88.366-71.634 160-160 160s-160-71.634-160-160 71.634-160 160-160 160 71.634 160 160zM640 672c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96z" />
|
||||
<glyph unicode="" d="M0 403.59c0-46.398 4.34-88.38 13.022-125.934 8.678-37.554 20.696-70.184 36.052-97.892 15.356-27.708 34.884-52.078 58.586-73.108 23.7-21.032 49.406-38.224 77.112-51.576 27.706-13.35 59.336-24.198 94.888-32.546 35.552-8.346 71.856-14.188 108.91-17.528 37.054-3.338 77.78-5.006 122.178-5.006 44.732 0 85.628 1.668 122.68 5.006 37.054 3.34 73.442 9.184 109.16 17.528 35.718 8.344 67.512 19.192 95.388 32.546 27.876 13.354 53.746 30.544 77.616 51.576 23.87 21.030 43.566 45.404 59.086 73.108 15.52 27.704 27.622 60.336 36.302 97.892 8.68 37.556 13.020 79.536 13.020 125.934 0 82.788-27.708 154.394-83.118 214.816 3.004 8.012 5.758 17.108 8.262 27.29 2.504 10.182 4.84 24.702 7.010 43.564 2.17 18.862 1.336 40.642-2.504 65.346-3.838 24.704-10.932 49.906-21.284 75.612l-7.51 1.502c-5.342 1-14.106 0.75-26.29-0.752-12.184-1.502-26.372-4.506-42.562-9.014-16.19-4.506-37.054-13.186-62.592-26.038-25.538-12.852-52.494-28.958-80.87-48.32-48.736 13.352-115.668 20.030-200.792 20.030-84.792 0-151.556-6.678-200.294-20.030-28.376 19.362-55.5 35.468-81.37 48.32-25.87 12.852-46.484 21.532-61.84 26.038-15.354 4.508-29.71 7.428-43.062 8.764-13.354 1.336-21.784 1.752-25.288 1.252-3.504-0.5-6.26-1.086-8.262-1.752-10.348-25.706-17.442-50.906-21.28-75.612-3.838-24.704-4.674-46.486-2.504-65.346 2.17-18.86 4.508-33.382 7.010-43.564 2.504-10.182 5.258-19.278 8.262-27.29-55.414-60.422-83.122-132.026-83.122-214.816zM125.684 277.906c0 48.070 21.866 92.136 65.596 132.194 13.018 12.020 28.208 21.114 45.566 27.292 17.358 6.176 36.97 9.68 58.836 10.516 21.866 0.834 42.812 0.668 62.842-0.502 20.028-1.168 44.732-2.754 74.108-4.756 29.376-2.004 54.748-3.004 76.112-3.004 21.366 0 46.736 1 76.112 3.004 29.378 2.002 54.078 3.588 74.11 4.756 20.030 1.17 40.974 1.336 62.842 0.502 21.866-0.836 41.476-4.34 58.838-10.516 17.356-6.176 32.544-15.27 45.564-27.292 43.73-39.394 65.598-83.456 65.598-132.194 0-28.712-3.59-54.162-10.768-76.364-7.178-22.2-16.358-40.81-27.542-55.83-11.184-15.020-26.704-27.79-46.568-38.306-19.862-10.516-39.222-18.61-58.084-24.288-18.862-5.674-43.066-10.098-72.608-13.27-29.546-3.172-55.916-5.092-79.118-5.758-23.2-0.668-52.66-1.002-88.378-1.002-35.718 0-65.178 0.334-88.378 1.002-23.2 0.666-49.574 2.586-79.116 5.758-29.542 3.172-53.744 7.596-72.606 13.27-18.86 5.678-38.222 13.774-58.084 24.288-19.862 10.514-35.386 23.282-46.568 38.306-11.182 15.022-20.364 33.63-27.54 55.83-7.178 22.202-10.766 47.656-10.766 76.364zM640 288c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96zM256 288c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96z" />
|
||||
<glyph unicode="" d="M512 128.108c-19.154 0-38.308 9.916-58.142 29.75-7.81 7.81-7.81 20.474 0 28.286 7.81 7.808 20.474 7.808 28.286 0 12.206-12.21 21.972-18.144 29.856-18.144 7.882 0 17.65 5.934 29.858 18.142 7.812 7.808 20.472 7.808 28.286 0 7.81-7.81 7.81-20.474 0-28.286-19.836-19.832-38.99-29.748-58.144-29.748zM0 434.508c0-49.892 4.266-95.122 12.8-135.682 8.534-40.56 20.534-75.74 36-105.532 15.466-29.792 35.022-55.904 58.666-78.34 23.644-22.436 49.332-40.92 77.066-55.458 27.734-14.536 59.466-26.296 95.2-35.266 35.732-8.974 72.088-15.256 109.066-18.846 36.978-3.59 77.69-5.384 122.134-5.384 44.444 0 85.242 1.79 122.398 5.38 37.156 3.59 73.602 9.872 109.332 18.846 35.734 8.974 67.558 20.73 95.468 35.266 27.91 14.538 53.778 33.026 77.598 55.458 23.824 22.436 43.47 48.548 58.934 78.34 15.47 29.794 27.56 64.974 36.27 105.532 8.71 40.56 13.066 85.788 13.066 135.68 0 89.38-27.736 166.372-83.2 230.982 3.2 8.616 5.954 18.486 8.266 29.614 2.308 11.128 4.532 26.832 6.664 47.112 2.138 20.282 1.336 43.704-2.398 70.264-3.734 26.564-10.754 53.664-21.066 81.302l-8 1.618c-5.332 1.076-14.042 0.718-26.132-1.080-12.086-1.794-26.222-5.022-42.398-9.69-16.176-4.664-37.066-13.908-62.668-27.728-25.598-13.818-52.62-31.318-81.066-52.496-48.356 14.718-115.020 30.116-200 30.116-84.976 0-151.822-15.396-200.53-30.114-28.446 21.18-55.556 38.588-81.334 52.228-25.78 13.642-46.402 22.974-61.868 27.998-15.468 5.024-29.778 8.256-42.934 9.69-13.156 1.436-21.602 1.886-25.334 1.346-3.732-0.538-6.488-1.166-8.266-1.884-10.314-27.64-17.424-54.74-21.336-81.304-3.91-26.56-4.8-49.892-2.666-69.992 2.134-20.102 4.444-35.898 6.934-47.382 2.49-11.486 5.334-21.358 8.534-29.614-55.466-64.25-83.2-141.242-83.2-230.98zM136.536 320.596c0 58.022 21.332 110.638 64 157.856 12.8 14.406 27.646 25.312 44.534 32.712 16.89 7.402 36.088 11.606 57.6 12.606 21.512 1 42.044 0.8 61.6-0.6 19.556-1.402 43.734-3.302 72.534-5.702 28.798-2.404 53.688-3.602 74.666-3.602 20.976 0 45.868 1.2 74.664 3.602 28.806 2.4 52.982 4.3 72.536 5.702 19.56 1.4 40.090 1.6 61.602 0.6 21.512-1.002 40.802-5.204 57.868-12.606 17.066-7.4 32-18.306 44.8-32.712 42.664-47.218 64-99.834 64-157.856 0-34.012-3.554-64.324-10.668-90.934-7.11-26.612-16.090-48.916-26.934-66.922-10.844-18.008-26.048-33.218-45.598-45.62-19.558-12.406-38.492-22.010-56.8-28.81-18.312-6.8-41.958-12.104-70.934-15.906-28.982-3.796-54.934-6.102-77.872-6.9-22.934-0.8-51.82-1.2-86.664-1.2-34.844 0-63.644 0.402-86.4 1.2-22.756 0.798-48.622 3.104-77.6 6.9-28.978 3.802-52.622 9.104-70.934 15.906-18.31 6.802-37.244 16.404-56.8 28.81-19.556 12.404-34.756 27.612-45.6 45.62-10.846 18.006-19.824 40.31-26.934 66.922-7.11 26.61-10.666 56.922-10.666 90.934zM256 351.996c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96zM640 351.996c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM816.056 143.944c-39.518-39.516-85.512-70.532-136.708-92.186-13.006-5.5-26.214-10.328-39.6-14.492v76.734c0 40.334-13.834 70-41.5 89 17.334 1.666 33.25 4 47.75 7s29.834 7.334 46 13 30.666 12.416 43.5 20.25 25.166 18 37 30.5 21.75 26.666 29.75 42.5 14.334 34.834 19 57 7 46.584 7 73.25c0 51.666-16.834 95.666-50.5 132 15.334 40 13.666 83.5-5 130.5l-12.5 1.5c-8.666 1-24.25-2.666-46.75-11s-47.75-22-75.75-41c-39.666 11-80.834 16.5-123.5 16.5-43 0-84-5.5-123-16.5-17.666 12-34.416 21.916-50.25 29.75-15.834 7.834-28.5 13.166-38 16s-18.334 4.584-26.5 5.25-13.416 0.834-15.75 0.5-4-0.666-5-1c-18.666-47.334-20.334-90.834-5-130.5-33.666-36.334-50.5-80.334-50.5-132 0-26.666 2.334-51.084 7-73.25s11-41.166 19-57 17.916-30 29.75-42.5 24.166-22.666 37-30.5 27.334-14.584 43.5-20.25 31.5-10 46-13 30.416-5.334 47.75-7c-27.334-18.666-41-48.334-41-89v-78.23c-15.098 4.494-29.98 9.804-44.6 15.988-51.194 21.654-97.188 52.67-136.706 92.186-39.516 39.518-70.534 85.512-92.186 136.708-22.398 52.958-33.756 109.262-33.756 167.348s11.358 114.39 33.758 167.35c21.654 51.194 52.67 97.188 92.186 136.706s85.512 70.534 136.706 92.186c52.96 22.4 109.264 33.758 167.35 33.758s114.39-11.358 167.35-33.758c51.196-21.654 97.19-52.67 136.708-92.186 39.516-39.516 70.532-85.512 92.186-136.706 22.398-52.96 33.756-109.264 33.756-167.35s-11.358-114.39-33.758-167.35c-21.654-51.194-52.67-97.19-92.186-136.706z" />
|
||||
<glyph unicode="" d="M235.278 711.28c-50.792 0-94.484-16.806-131.084-50.416-38.086-35.852-57.14-80.66-57.14-134.436 0-35.852 10.376-69.462 31.294-100.832 18.674-29.126 38.18-47.806 63.778-56.024v-2.242c-25.598-10.448-36.966-36.59-36.966-78.418 0-32.124 11.372-56.022 36.966-71.708v-2.242c-70.654-23.146-102.992-66.094-102.992-128.83 0-54.534 23.748-94.488 70.066-119.878 36.59-20.172 83.578-30.254 140.346-30.254 138.17 0 207.406 57.882 207.406 173.664 0 72.446-53.322 116.882-160.128 133.316-24.646 3.726-43.286 12.696-55.982 26.89-9.708 9.708-14.542 19.418-14.542 29.126 0 27.632 14.958 43.696 44.82 48.176 45.558 6.714 82.728 27.824 111.486 63.296 28.75 35.48 43.13 77.118 43.13 124.916 0 14.938-4.518 30.996-10.488 48.172 19.418 4.488 33.050 8.594 43.292 12.332v115.392c-45.054-17.928-86.99-26.884-122.842-26.884-31.374 17.922-63.824 26.884-100.42 26.884zM247.602 152.23c62.744 0 94.104-19.042 94.104-57.14 0-40.336-28.754-60.492-86.264-60.492-65.724 0-98.586 19.422-98.586 58.254-0.002 39.59 30.244 59.378 90.746 59.378zM239.76 448c-47.054 0-70.586 25.764-70.586 77.308 0 55.262 23.532 82.906 70.586 82.906 22.402 0 39.958-8.596 52.652-25.768 10.458-15.69 15.69-34.36 15.69-56.022 0-52.278-22.786-78.424-68.342-78.424zM580.384 960c-21.656 0-40.14-8.214-55.454-24.648-15.314-16.436-22.97-36.216-22.97-59.376 0-22.41 7.658-41.82 22.97-58.258 15.308-16.434 33.792-24.64 55.454-24.64 20.91 0 39.028 8.208 54.34 24.64 15.312 16.438 22.96 35.848 22.96 58.258 0 23.16-7.648 42.944-22.96 59.376-15.318 16.434-33.43 24.648-54.34 24.648zM643.13 704.002h-126.606c1.496-14.336-0.64-36.042-0.64-71.14v-348.432c0-35.856 2.136-64.774 0.64-76.036h126.606c-1.5 16.376-5.394 44.668-5.394 82.758v343.946c-0.006 32.864 3.894 54.568 5.394 68.904zM922.336 315.8c-32.872 0-49.082 25.028-49.082 75.066v206.64h49.864c8.96 0 17.032 0.492 27.118-0.246 10.086-0.748 14.152-0.25 19.278-0.25v106.99h-96.258v47.616c0 17.922 2.816 34.302 5.054 44.542h-129.958c2.242-10.24 2.028-25.876 2.028-46.79v-45.368h-56.32v-106.988c15.364 2.24 29.090 3.356 38.796 3.356l17.524-1.118v-202.786c0-62.742 7.958-108.672 23.636-137.8 20.922-38.84 57.622-58.258 112.136-58.258 38.848 0 73.118 7.464 98.714 22.41v112.032c-20.474-12.7-39.382-19.048-62.53-19.048z" />
|
||||
<glyph unicode="" d="M263.472 200.632c0-27.052 22.894-40.582 68.668-40.582 40.064 0 60.088 14.042 60.088 42.134 0 26.538-21.846 39.796-65.544 39.796-42.146 0.004-63.212-13.776-63.212-41.348zM853.348 960h-682.66c-93.876 0-170.688-76.81-170.688-170.688v-682.626c0-93.936 76.812-170.686 170.688-170.686h682.66c93.868 0 170.652 76.75 170.652 170.688v682.624c0 93.878-76.782 170.688-170.652 170.688zM475.728 551.012c-7.284-2.604-17.688-5.458-31.212-8.586 4.16-11.966 6.246-23.152 6.246-33.554 0-33.292-10.018-62.298-30.044-87.012-20.030-24.708-45.912-39.406-77.646-44.086-20.804-3.126-31.208-14.312-31.208-33.558 0-6.762 3.378-13.53 10.144-20.29 8.844-9.886 21.848-16.132 39.018-18.734 74.39-11.442 111.586-42.394 111.586-92.854 0-80.642-48.124-120.962-144.362-120.962-39.542 0-72.056 7.026-97.544 21.070-32.258 17.688-48.376 45.52-48.376 83.5 0 43.704 24.192 73.616 72.564 89.738v1.56c-17.684 10.924-26.526 27.57-26.526 49.944 0 29.132 8.324 47.344 24.968 54.622v1.562c-16.646 5.724-31.474 18.732-44.48 39.024-14.564 21.852-21.85 45.26-21.85 70.23 0 37.458 13.27 68.67 39.792 93.64 25.496 23.414 55.928 35.116 91.306 35.116 25.494 0 49.158-6.238 71.010-18.722 24.97 0 53.842 6.24 86.626 18.722l-0.012-80.37zM602.178 281.006h-88.186c1.042 10.402 1.558 28.084 1.558 53.064v242.692c0 24.454-0.522 41.364-1.558 50.718h88.186c-1.042-9.884-1.562-26.27-1.562-49.164v-239.564c0-26.534 0.522-45.784 1.562-57.746zM596.318 705.518c-10.664-11.444-23.282-17.162-37.846-17.162-15.086 0-27.958 5.718-38.626 17.162-10.666 11.452-16.002 24.972-16.002 40.578 0 16.134 5.336 29.912 16.002 41.366 10.666 11.442 23.54 17.168 38.626 17.168 14.564 0 27.184-5.726 37.846-17.168 10.666-11.456 15.998-25.23 15.998-41.366 0-15.606-5.332-29.128-15.998-40.578zM841.69 291.152c-19.254-10.41-42.406-15.606-69.458-15.606-37.97 0-64.248 13.52-78.81 40.574-10.93 20.29-16.386 52.28-16.386 95.98v139.684h0.778v1.562l-11.706 0.782c-6.764 0-15.612-0.782-26.534-2.342v75.694h38.234v30.432c0 14.57-0.778 26.28-2.34 35.12h90.518c-1.55-9.88-2.336-21.066-2.336-33.552v-31.998h67.886v-75.692c-2.598 0-7.41 0.258-14.436 0.778-7.024 0.522-13.656 0.786-19.898 0.786h-33.554v-145.144c0-34.864 11.45-52.29 34.334-52.29 16.126 0 30.696 4.418 43.708 13.264v-78.032zM321.216 559.594c-32.776 0-49.164-19.254-49.164-57.746 0-35.902 16.388-53.848 49.164-53.848 31.736 0 47.602 18.208 47.602 54.626 0 15.090-3.64 28.094-10.922 39.022-8.846 11.962-21.074 17.946-36.68 17.946z" />
|
||||
<glyph unicode="" d="M128 448.008c0-148.026 88.322-275.968 216.43-336.578l-183.178 488.784c-21.308-46.508-33.252-97.982-33.252-152.206zM771.228 466.872c0 46.234-17.054 78.236-31.654 103.142-19.458 30.82-37.72 56.894-37.72 87.716 0 34.374 26.766 66.376 64.486 66.376 1.704 0 3.32-0.204 4.976-0.302-68.316 60.97-159.34 98.196-259.308 98.196-134.16 0-252.186-67.046-320.844-168.568 9.010-0.282 17.506-0.454 24.712-0.454 40.154 0 102.34 4.752 102.34 4.752 20.69 1.182 23.132-28.434 2.458-30.822 0 0-20.81-2.368-43.952-3.55l139.834-405.106 84.044 245.456-59.822 159.65c-20.688 1.184-40.278 3.55-40.278 3.55-20.702 1.192-18.272 32.002 2.438 30.822 0 0 63.4-4.752 101.134-4.752 40.146 0 102.35 4.752 102.35 4.752 20.702 1.182 23.14-28.434 2.446-30.822 0 0-20.834-2.372-43.948-3.55l138.78-402.018 38.312 124.632c16.58 51.75 29.216 88.9 29.216 120.9zM518.742 415.296l-115.226-326.058c34.416-9.858 70.794-15.238 108.488-15.238 44.716 0 87.604 7.518 127.518 21.2-1.018 1.602-1.974 3.304-2.75 5.154l-118.030 314.942zM848.962 627.428c1.652-11.91 2.588-24.686 2.588-38.458 0-37.93-7.292-80.596-29.202-133.95l-117.286-330.272c114.162 64.828 190.938 185.288 190.938 323.258 0 65.030-17.060 126.16-47.038 179.422zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448z" />
|
||||
<glyph unicode="" d="M518.742 415.296l118.030-314.942c0.778-1.85 1.732-3.55 2.75-5.154-39.912-13.682-82.804-21.2-127.518-21.2-37.694 0-74.072 5.38-108.488 15.238l115.226 326.058zM896 448.006c0-137.97-76.776-258.43-190.94-323.258l117.286 330.272c21.912 53.354 29.204 96.020 29.204 133.95 0 13.772-0.938 26.548-2.588 38.458 29.978-53.262 47.038-114.392 47.038-179.422zM128 448.008c0 54.224 11.944 105.698 33.252 152.206l183.178-488.784c-128.108 60.61-216.43 188.552-216.43 336.578zM191.164 653.432c68.658 101.522 186.684 168.568 320.844 168.568 99.968 0 190.992-37.226 259.308-98.196-1.656 0.098-3.27 0.302-4.976 0.302-37.72 0-64.486-32.002-64.486-66.376 0-30.822 18.262-56.896 37.72-87.716 14.6-24.906 31.654-56.908 31.654-103.142 0-32.002-12.636-69.15-29.216-120.9l-38.312-124.632-138.78 402.018c23.116 1.178 43.948 3.55 43.948 3.55 20.694 2.388 18.258 32.004-2.446 30.822 0 0-62.204-4.752-102.35-4.752-37.734 0-101.134 4.752-101.134 4.752-20.71 1.18-23.14-29.63-2.438-30.822 0 0 19.59-2.366 40.278-3.55l59.822-159.65-84.044-245.456-139.834 405.106c23.142 1.182 43.952 3.55 43.952 3.55 20.674 2.388 18.232 32.004-2.458 30.822 0 0-62.186-4.752-102.34-4.752-7.206 0-15.702 0.172-24.712 0.454zM852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM960 448c0-247.424-200.576-448-448-448s-448 200.576-448 448 200.576 448 448 448 448-200.576 448-448z" />
|
||||
<glyph unicode="" d="M266.004 683.322c32.832 32.844 86.002 32.844 118.804 0.032l7.826-7.868 101.104 101.156-7.874 7.88c-57.624 57.7-138.514 77.878-212.42 60.522-10.594 65.182-67.088 114.924-135.174 114.956-75.65 0-136.954-61.442-136.97-137.158 0-65.336 45.59-120 106.662-133.83-23.138-77.45-4.242-164.834 56.846-225.984l227.826-227.9 100.996 101.214-227.81 227.886c-32.682 32.722-32.742 86.126 0.184 119.094zM1022.712 822.842c0.016 75.762-61.318 137.158-136.984 137.158-69.234 0-126.478-51.444-135.682-118.238-77.074 22.664-163.784 3.496-224.64-57.408l-227.84-227.9 101.102-101.172 227.766 227.856c32.94 32.966 85.988 32.906 118.684 0.184 32.8-32.83 32.8-86.114-0.032-118.956l-7.794-7.836 101.010-101.248 7.858 7.928c60.458 60.566 79.678 146.756 57.612 223.638 67.15 8.834 118.94 66.364 118.94 135.994zM906.266 208.936c18.102 74.458-1.976 156.324-60.108 214.5l-227.49 227.992-101.102-101.122 227.52-228.012c32.94-32.996 32.864-86.096 0.184-118.848-32.802-32.814-86.004-32.814-118.836 0.030l-7.766 7.79-100.994-101.246 7.732-7.728c61.516-61.594 149.618-80.438 227.368-56.488 12.632-62.682 67.934-109.804 134.258-109.804 75.604 0 136.968 61.35 136.968 137.126 0 69.2-51.18 126.456-117.734 135.81zM612.344 431.316l-227.536-227.992c-32.71-32.768-86.034-32.828-118.944 0.124-32.818 32.904-32.832 86.098-0.044 118.97l7.808 7.774-101.086 101.124-7.734-7.712c-58.76-58.802-78.56-141.834-59.45-216.982-60.398-14.26-105.358-68.634-105.358-133.496-0.016-75.746 61.332-137.126 136.982-137.126 65.1 0.032 119.588 45.418 133.54 106.382 74.702-18.552 156.998 1.304 215.344 59.756l227.49 227.96-101.012 101.218z" />
|
||||
<glyph unicode="" d="M864 640c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.8 64-64 64zM96 640c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.802 64-64 64zM192 224c0-53.020 42.98-96 96-96h32v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128h64v-128c0-35.2 28.802-64 64-64s64 28.8 64 64v128h32c53.020 0 96 42.98 96 96v352h-576v-352zM598.598 870.506l40.504 77.806c2.032 3.902 0.5 8.758-3.402 10.79s-8.758 0.5-10.79-3.402l-41.118-78.986c-32.198 12.448-67.194 19.286-103.792 19.286-36.596 0-71.592-6.838-103.796-19.286l-41.116 78.984c-2.032 3.902-6.886 5.434-10.79 3.402s-5.434-6.886-3.402-10.79l40.5-77.808c-90.63-41.018-156.24-127.584-167.62-230.504h572.44c-11.376 102.924-76.986 189.488-167.618 230.508zM352 689.6c-25.626 0-46.4 20.774-46.4 46.4s20.774 46.4 46.4 46.4 46.4-20.774 46.4-46.4c-0.002-25.626-20.774-46.4-46.4-46.4zM608 689.6c-25.626 0-46.402 20.774-46.402 46.4s20.778 46.4 46.402 46.4 46.398-20.774 46.398-46.4c0-25.626-20.772-46.4-46.398-46.4z" />
|
||||
<glyph unicode="" d="M412.23 448.086c-47.708 24.518-94.086 36.958-137.88 36.958-5.956 0-11.952-0.18-17.948-0.708-55.88-4.624-106.922-19.368-139.75-30.828-8.708-3.198-17.634-6.576-26.83-10.306l-89.822-311.394c61.702 22.832 116.292 33.938 166.27 33.938 80.846 0 139.528-30.208 187.992-61.304 22.962 77.918 78.044 266.090 94.482 322.324-11.95 7.284-24.076 14.57-36.514 21.32zM528.348 368.93l-90.446-314.148c26.832-15.372 117.098-64.050 186.212-64.050 55.792 0 118.252 14.296 190.834 43.792l86.356 301.976c-58.632-18.922-114.876-28.52-167.464-28.52-95.95 0-163.114 31.098-205.492 60.95zM292.822 591.21c77.118-0.798 134.152-30.208 181.416-60.502l92.752 317.344c-19.546 11.196-70.806 39.094-107.858 48.6-24.386 5.684-50.020 8.616-77.204 8.616-51.796-0.976-108.388-13.946-172.888-39.8l-88.44-310.596c64.808 24.436 120.644 36.34 172.086 36.34 0.046-0.002 0.136-0.002 0.136-0.002zM1024 761.876c-58.814-22.832-116.208-34.466-171.028-34.466-91.686 0-159.292 31.802-203.094 62.366l-91.95-318.236c61.746-39.708 128.29-59.878 198.122-59.878 56.948 0 115.94 13.68 175.462 40.688l-0.182 2.222 3.734 0.886 88.936 306.418z" />
|
||||
<glyph unicode="" d="M0.35 448l-0.35 312.074 384 52.144v-364.218zM448 821.518l511.872 74.482v-448h-511.872zM959.998 384l-0.126-448-511.872 72.016v375.984zM384 16.164l-383.688 52.594-0.020 315.242h383.708z" />
|
||||
<glyph unicode="" d="M891.96 445.796c-18.086 0-35.348-3.52-51.064-9.856-10.506 114.358-110.29 204.060-232 204.060-29.786 0-58.682-5.63-84.318-15.164-9.96-3.702-12.578-7.52-12.578-14.916v-402.714c0-7.766 6.24-14.234 14.124-14.996 0.336-0.034 363.536-0.21 365.89-0.21 72.904 0 131.986 56.816 131.986 126.894s-59.134 126.902-132.040 126.902zM400 192h32l16 224.22-16 223.78h-32l-16-223.78zM304 192h-32l-16 162.75 16 157.25h32l16-160zM144 192h32l16 128-16 128h-32l-16-128zM16 256h32l16 64-16 64h-32l-16-64z" />
|
||||
<glyph unicode="" d="M853.372 960h-682.684c-93.874 0-170.686-76.806-170.686-170.68v-469.316l15.998 63.996h32l16-64-16-64h-32l-16 63.996v-213.304c0.002-93.938 76.814-170.692 170.688-170.692h682.684c93.878 0 170.628 76.754 170.628 170.692v212.202c0-70.078-59.082-126.894-131.986-126.894-2.354 0-365.554 0.176-365.89 0.21-7.882 0.762-14.124 7.23-14.124 14.996v402.714c0 7.394 2.618 11.212 12.578 14.916 25.636 9.534 54.534 15.164 84.318 15.164 121.708 0 221.492-89.702 231.998-204.058 15.716 6.336 32.978 9.856 51.064 9.856 72.906 0 132.042-56.824 132.042-126.902v470.422c0 93.876-76.758 170.682-170.628 170.682zM176 192h-32l-16 128 16 128h32l16-128-16-128zM304 192h-32l-16 162.75 16 157.25h32l16-160-16-160zM432 192h-32l-16 224.22 16 223.78h32l16-223.78-16-224.22z" />
|
||||
<glyph unicode="" d="M975.31 382.062c2.812 20.8 4.43 41.946 4.43 63.472 0 258.31-210.542 467.744-470.206 467.744-25.808 0-51.11-2.12-75.732-6.16-44.144 28.768-96.684 45.534-153.224 45.534-155.046 0-280.578-125.616-280.578-280.612 0-56.396 16.598-108.788 45.18-152.778-3.85-24.034-5.818-48.646-5.818-73.718 0-258.352 210.434-467.764 470.17-467.764 29.314 0 57.854 2.854 85.592 7.866 43.1-26.738 93.868-42.296 148.292-42.296 155.004-0.002 280.584 125.646 280.584 280.626-0.006 58.586-17.92 113.056-48.69 158.086zM553.48 100.808c-149.41-7.784-219.328 25.274-283.378 85.382-71.53 67.134-42.796 143.708 15.48 147.602 58.244 3.888 93.214-66.026 124.3-85.472 31.048-19.376 149.188-63.52 211.588 7.816 67.952 77.656-45.188 117.84-128.118 130.004-118.406 17.532-267.9 81.584-256.27 207.814 11.632 126.148 107.164 190.828 207.7 199.952 128.154 11.634 211.582-19.414 277.57-75.72 76.3-65.058 35.016-137.788-13.598-143.64-48.424-5.818-102.808 107.008-209.582 108.704-110.054 1.728-184.434-114.522-48.572-147.568 135.932-33.010 281.5-46.572 333.922-170.834 52.458-124.274-81.508-256.25-231.042-264.040z" />
|
||||
<glyph unicode="" d="M256 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM643.112 183.222c16.482 12.986 40.376 10.154 53.364-6.332 12.988-16.486 10.152-40.378-6.334-53.366-45.896-36.158-115.822-59.524-178.142-59.524-62.322 0-132.248 23.366-178.144 59.522-16.486 12.99-19.32 36.882-6.332 53.368 12.99 16.482 36.882 19.318 53.366 6.332 26.422-20.818 78.722-43.222 131.11-43.222 52.388 0 104.688 22.404 131.112 43.222zM1024 448c0 70.692-57.308 128-128 128-48.116 0-89.992-26.57-111.852-65.82-65.792 35.994-145.952 59.246-233.28 64.608l76.382 171.526 146.194-42.2c13.152-37.342 48.718-64.114 90.556-64.114 53.020 0 96 42.98 96 96s-42.98 96-96 96c-36.56 0-68.342-20.442-84.554-50.514l-162.906 47.024c-18.224 5.258-37.538-3.722-45.252-21.052l-103.77-233.026c-85.138-5.996-163.262-29.022-227.636-64.236-21.864 39.25-63.766 65.804-111.882 65.804-70.692 0-128-57.308-128-128 0-52.312 31.402-97.254 76.372-117.102-8.070-24.028-12.372-49.104-12.372-74.898 0-176.73 200.576-320 448-320 247.422 0 448 143.27 448 320 0 25.792-4.3 50.862-12.368 74.886 44.97 19.85 76.368 64.802 76.368 117.114zM864 772c19.882 0 36-16.118 36-36s-16.118-36-36-36-36 16.118-36 36 16.118 36 36 36zM64 448c0 35.29 28.71 64 64 64 25.508 0 47.572-15.004 57.846-36.646-33.448-25.366-61.166-54.626-81.666-86.738-23.524 9.47-40.18 32.512-40.18 59.384zM512 12c-205.45 0-372 109.242-372 244s166.55 244 372 244c205.45 0 372-109.242 372-244s-166.55-244-372-244zM919.82 388.616c-20.5 32.112-48.218 61.372-81.666 86.738 10.276 21.642 32.338 36.646 57.846 36.646 35.29 0 64-28.71 64-64 0-26.872-16.656-49.914-40.18-59.384z" />
|
||||
<glyph unicode="" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM384 128h-128v448h128v-448zM320 640c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM832 128h-128v256c0 35.346-28.654 64-64 64s-64-28.654-64-64v-256h-128v448h128v-79.472c26.398 36.264 66.752 79.472 112 79.472 79.53 0 144-71.634 144-160v-288z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM345.482 319.594h-92.534c-5.576 0-9.74 2.494-12.098 6.292-2.438 3.952-2.564 9.066 0 14.16l98.324 173.070c0.104 0.19 0.104 0.316 0 0.526l-62.568 108.038c-2.588 5.138-2.966 10.212-0.526 14.158 2.358 3.818 7.044 5.77 12.62 5.77h92.534c14.2 0 21.158-9.124 25.768-17.308 0 0 63.24-110.050 63.618-110.656-3.746-6.59-99.9-176.22-99.9-176.22-4.732-8.516-11.398-17.83-25.238-17.83zM783.050 747.862l-204.882-361.344c-0.124-0.194-0.124-0.428 0-0.612l130.458-237.75c2.59-5.116 2.652-10.32 0.192-14.264-2.356-3.794-6.708-5.892-12.282-5.892h-92.434c-14.176 0-21.266 9.398-25.848 17.58 0 0-131.152 239.992-131.488 240.614 6.56 11.582 205.916 364.226 205.916 364.226 4.96 8.896 10.954 17.58 24.774 17.58h93.484c5.578 0 9.954-2.098 12.304-5.894 2.44-3.948 2.374-9.146-0.194-14.244z" />
|
||||
<glyph unicode="" d="M367.562 960c-243.358 0-367.562-140.162-367.562-401.856v0-549.034l238.39 238.628v278.896c0 108.416 28.73 177.406 125.118 192.894v0c33.672 6.584 103.75 4.278 148.306 4.278v0-165.596c0-1.51 0.208-4.206 0.594-5.586v0c1.87-6.704 7.93-11.616 15.116-11.63v0c4.062-0.008 7.868 2.104 11.79 5.97v0l413.122 412.974-584.874 0.062zM785.61 648.254v-278.89c0-108.414-28.736-177.414-125.116-192.894v0c-33.672-6.582-103.756-4.278-148.312-4.278v0 165.594c0 1.5-0.206 4.204-0.594 5.582v0c-1.864 6.712-7.922 11.622-15.112 11.63v0c-4.064 0.008-7.866-2.112-11.79-5.966v0l-413.124-412.966 584.874-0.066c243.354 0 367.564 140.168 367.564 401.852v0 549.028l-238.39-238.626z" />
|
||||
<glyph unicode="" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM939.934 20.058c-23.252-23.252-54.004-36.058-86.592-36.058h-682.656c-32.588 0-63.348 12.806-86.608 36.062-23.266 23.26-36.078 54.024-36.078 86.626v682.622c0 32.584 12.814 63.342 36.082 86.61 23.266 23.266 54.024 36.080 86.604 36.080h682.656c7.098 0 14.1-0.644 20.966-1.836l-211.298-290.060-98.044 98.050c-13.806 13.808-32.17 21.412-51.706 21.412-19.532 0-37.896-7.602-51.716-21.412l-44.514-44.516c-2.498 3.404-5.090 6.764-7.878 10.024-60.648 70.878-167.27 79.208-238.148 18.542-70.886-60.638-79.186-167.25-18.536-238.14 13.91-16.268 30.262-29.198 48.030-38.794 0.36-18.24 7.458-36.374 21.338-50.264l239.704-239.68c13.814-13.82 32.182-21.434 51.72-21.434 19.542 0 37.906 7.616 51.706 21.43l239.698 239.682c13.82 13.816 21.434 32.184 21.434 51.72s-7.614 37.906-21.43 51.716l-27.578 27.58 198.91 174.942v-574.274c0-32.606-12.808-63.372-36.066-86.63zM440.396 629.124l55.082 55.084c4.75 4.746 11.064 7.36 17.782 7.36 6.714 0 13.024-2.612 17.764-7.352l103.376-103.382-112.36-154.242c-11.094-12.376-20.87-5.864-24.726-1.266-1.324 1.558-27.686 36.074-61.774 80.782 16.924 38.738 18.756 82.814 4.856 123.016zM500.040 287.964c0 0 8.706-8.080 18.316-0.274l221.918 187.262 30.456-30.458c4.75-4.748 7.368-11.058 7.368-17.772s-2.618-13.024-7.372-17.776l-239.712-239.692c-4.74-4.746-11.044-7.362-17.754-7.362-6.712 0-13.024 2.618-17.776 7.372l-237.26 237.238c27.618-3.714 56.072-0.626 82.646 9.48l159.17-128.018z" />
|
||||
<glyph unicode="" d="M1023.69 960h-113.078l-247.602-339.896-98.044 98.050c-13.806 13.808-32.17 21.412-51.706 21.412-19.532 0-37.896-7.602-51.716-21.412l-44.514-44.516c-2.498 3.404-5.090 6.764-7.878 10.024-60.648 70.878-167.27 79.208-238.148 18.542-70.886-60.638-79.186-167.25-18.536-238.14 13.91-16.268 30.262-29.198 48.030-38.794 0.36-18.24 7.458-36.374 21.338-50.264l239.704-239.68c13.814-13.82 32.182-21.434 51.72-21.434 19.542 0 37.906 7.616 51.706 21.43l239.698 239.682c13.82 13.816 21.434 32.184 21.434 51.72s-7.614 37.906-21.43 51.716l-27.578 27.58 246.602 208.090v245.89zM495.478 684.208c4.75 4.746 11.064 7.36 17.782 7.36 6.714 0 13.024-2.612 17.764-7.352l103.376-103.382-112.36-154.242c-11.094-12.376-20.87-5.864-24.726-1.266-1.324 1.558-27.686 36.074-61.774 80.782 16.924 38.74 18.756 82.816 4.856 123.018l55.082 55.082zM770.728 444.496c4.75-4.748 7.368-11.058 7.368-17.772s-2.618-13.024-7.372-17.776l-239.71-239.694c-4.74-4.746-11.044-7.362-17.754-7.362-6.712 0-13.024 2.618-17.776 7.372l-237.26 237.238c27.618-3.714 56.072-0.626 82.646 9.48l159.17-128.018c0 0 8.706-8.080 18.316-0.274l221.918 187.262 30.454-30.456z" />
|
||||
<glyph unicode="" d="M880.634 829.226c25.698-12.576 48.094-30.486 64.502-52.482 34.536-46.3 44.236-109.372 28.836-187.466-15.56-79.026-50.416-145.734-101.166-194.044-9.282-9.702-19.222-18.746-29.804-27.080-54.356-42.802-122.998-65.428-198.508-65.428h-240.060l-64.564-302.726h-132.424l10.086 46.3h46.128l64.564 302.726h188.27c180.25 0 330.938 111.078 371.258 299.936 45.722 213.834-107.598 311.038-239.41 311.038h-449.278l-199.064-913.7h152.032l-24.032-110.3h263.66l64.564 302.726h188.27c180.25 0 330.938 111.078 371.258 299.936 33.716 157.68-40.804 251.932-135.118 290.564zM422.344 773.918h129.132c64.592 0 107.602-55.538 88.786-124.956-16.136-69.44-83.386-124.976-150.64-124.976h-123.758l56.48 249.932z" />
|
||||
<glyph unicode="" d="M880.634 829.226c25.698-12.576 48.094-30.486 64.502-52.482 34.536-46.3 44.236-109.372 28.836-187.466-15.56-79.026-50.416-145.734-101.166-194.044-9.282-9.702-19.222-18.746-29.804-27.080-54.356-42.802-122.998-65.428-198.508-65.428h-240.060l-64.564-302.726h-132.424l10.086 46.3h46.128l64.564 302.726h188.27c180.25 0 330.938 111.078 371.258 299.936 45.722 213.834-107.598 311.038-239.41 311.038h-449.278l-199.064-913.7h152.032l-24.032-110.3h263.66l64.564 302.726h188.27c180.25 0 330.938 111.078 371.258 299.936 33.716 157.68-40.804 251.932-135.118 290.564zM640.262 648.962c-13.724-59.060-64.428-108.040-120.656-121.368l30.738 136.022h92.986c-0.728-4.806-1.722-9.69-3.068-14.654zM422.344 773.918h129.132c36.76 0 66.508-18.004 81.87-46.3h-134.154l-46.016-203.63h-87.312l56.48 249.93z" />
|
||||
<glyph unicode="" d="M648.342 896c28.332 0 56.918-5.804 82.666-16.784 27.084-11.548 49.324-27.924 66.104-48.672 33.598-41.542 43.038-98.132 28.050-168.218-16.306-76.378-54.398-139.96-110.16-183.87-54.356-42.802-122.998-65.428-198.508-65.428h-240.060l-64.564-302.728h-132.424l171.176 785.7h397.72M285.786 459.986h203.836c47.436 0 95.494 18.17 135.318 51.164 38.82 32.162 66.274 75.522 77.396 122.2 13.902 52.524 4.63 105.152-25.514 144.554-29.176 38.14-74.864 60.014-125.346 60.014h-180.282l-85.408-377.932M648.342 960h-449.278l-199.064-913.7h152.032l-24.032-110.3h263.66l64.564 302.726h188.27c180.25 0 330.938 111.078 371.258 299.936 33.716 157.68-40.804 251.932-135.118 290.564 25.698-12.576 48.094-30.486 64.502-52.482 34.536-46.3 44.236-109.372 28.836-187.466-15.56-79.026-50.416-145.734-101.166-194.044-9.282-9.702-19.222-18.746-29.804-27.080-54.356-42.802-122.998-65.428-198.508-65.428h-240.060l-64.564-302.726h-132.424l10.086 46.3h46.128l64.564 302.726h188.27c180.25 0 330.938 111.078 371.258 299.936 45.722 213.834-107.598 311.038-239.41 311.038v0zM365.864 523.986l56.482 249.932h129.132c64.592 0 107.602-55.538 88.786-124.956-16.136-69.44-83.386-124.976-150.64-124.976h-123.76z" />
|
||||
<glyph unicode="" d="M608.876 306.532c-17.282-17.426-2.668-49.128-2.668-49.128l130.090-217.218c0 0 21.36-28.64 39.864-28.64 18.59 0 36.954 15.27 36.954 15.27l102.844 147.008c0 0 10.36 18.546 10.598 34.792 0.372 23.106-34.454 29.434-34.454 29.434l-243.488 78.192c-0.002-0.004-23.858 6.328-39.74-9.71zM596.532 416.016c12.46-21.128 46.828-14.972 46.828-14.972l242.938 71.006c0 0 33.106 13.466 37.832 31.418 4.64 17.954-5.46 39.622-5.46 39.622l-116.098 136.752c0 0-10.062 17.292-30.938 19.032-23.016 1.958-37.18-25.898-37.18-25.898l-137.27-216.010c0-0.004-12.134-21.516-0.652-40.95zM481.754 500.232c28.608 7.044 33.148 48.604 33.148 48.604l-1.944 345.87c0 0-4.314 42.666-23.486 54.232-30.070 18.242-38.982 8.718-47.596 7.444l-201.696-74.944c0 0-19.754-6.536-30.042-23.018-14.69-23.352 14.928-57.544 14.928-57.544l209.644-285.756c0 0 20.69-21.396 47.044-14.888zM431.944 360.262c0.722 26.676-32.030 42.7-32.030 42.7l-216.796 109.524c0 0-32.126 13.246-47.722 4.016-11.95-7.060-22.536-19.84-23.572-31.134l-14.12-173.812c0 0-2.116-30.114 5.69-43.82 11.054-19.442 47.428-5.902 47.428-5.902l253.096 55.942c9.832 6.61 27.074 7.204 28.026 42.486zM494.88 266.458c-21.726 11.156-47.724-11.95-47.724-11.95l-169.468-186.566c0 0-21.144-28.528-15.768-46.050 5.066-16.418 13.454-24.578 25.318-30.328l170.192-53.726c0 0 20.634-4.286 36.258 0.242 22.18 6.43 18.094 41.152 18.094 41.152l3.848 252.602c-0.002-0.002-0.868 24.334-20.75 34.624z" />
|
||||
<glyph unicode="" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM784.63 658.572h-432.54l10.302-115.75h411.968l-31.042-347.010-231.844-64.254-231.572 64.254-15.83 177.512h113.494l8.048-90.232 125.862-33.916 0.278 0.078 125.934 33.992 13.070 146.55h-391.74l-30.494 341.8h566.214l-10.108-113.024z" />
|
||||
<glyph unicode="" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM810.762 97.176l-297.226-82.376v-0.466l-0.776 0.234-0.782-0.234v0.466l-297.222 82.376-70.242 787.486h736.496l-70.248-787.486zM650.754 429.796l-13.070-146.552-126.21-34.070-125.862 33.916-8.050 90.234h-113.49l15.83-177.512 232.076-64.176 231.342 64.176 31.040 347.012h-411.966l-10.302 115.748h432.534l10.112 113.026h-566.218l30.498-341.802z" />
|
||||
<glyph unicode="" d="M152.388 911.478l-34.36-171.926h699.748l-21.884-111.054h-700.188l-33.892-171.898h699.684l-39.018-196.064-282.012-93.422-244.4 93.422 16.728 85.042h-171.898l-40.896-206.352 404.226-154.704 466.006 154.704 153.768 772.252z" />
|
||||
<glyph unicode="" d="M258.278 513.458l-146.532 253.802c93.818 117.464 238.234 192.74 400.254 192.74 187.432 0 351.31-100.736 440.532-251h-417.77c-7.504 0.65-15.092 1-22.762 1-121.874 0-224.578-83.644-253.722-196.542zM695.306 635h293.46c22.74-57.93 35.234-121.004 35.234-187 0-280.826-226.1-508.804-506.186-511.926l209.394 362.678c29.48 42.378 46.792 93.826 46.792 149.248 0 73.17-30.164 139.42-78.694 187zM326 448c0 102.56 83.44 186 186 186s186-83.44 186-186c0-102.56-83.44-186-186-186-102.56 0-186 83.44-186 186zM582.182 195.558l-146.578-253.878c-246.532 36.884-435.604 249.516-435.604 506.32 0 91.218 23.884 176.846 65.696 251.024l209.030-362.054c41.868-89.112 132.476-150.97 237.274-150.97 24.3 0 47.836 3.34 70.182 9.558z" />
|
||||
<glyph unicode="" d="M1022.526 625.86l-11.86-76.080c0 0-16.954 140.856-37.732 193.514-31.846 80.688-46.014 80.040-46.108 79.922 21.33-54.204 17.462-83.324 17.462-83.324s-37.792 102.998-137.712 135.768c-110.686 36.282-170.57 26.364-177.488 24.486-1.050 0.008-2.064 0.010-3.030 0.010 0.818-0.062 1.612-0.146 2.426-0.212-0.034-0.020-0.090-0.042-0.082-0.052 0.45-0.548 122.306-21.302 143.916-50.996 0 0-51.76 0-103.272-14.842-2.328-0.666 189.524-23.964 228.746-215.674 0 0-21.030 43.876-47.040 51.328 17.106-52.036 12.714-150.776-3.576-199.85-2.096-6.312-4.24 27.282-36.328 41.75 10.28-73.646-0.616-190.456-51.708-222.632-3.982-2.504 32.030 115.31 7.242 69.762-142.708-218.802-311.404-100.972-387.248-49.11 38.866-8.462 112.654 1.318 145.314 25.612 0.042 0.030 0.078 0.056 0.118 0.086 35.468 24.252 56.472 41.964 75.334 37.772 18.874-4.214 31.438 14.726 16.78 31.53-14.676 16.838-50.314 39.978-98.524 27.366-34-8.904-76.134-46.522-140.448-8.432-49.364 29.25-54.012 53.546-54.45 70.376 1.218 5.966 2.754 11.536 4.576 16.624 5.682 15.87 22.912 20.658 32.494 24.438 16.256-2.792 30.262-7.862 44.968-15.406 0.19 4.894 0.252 11.39-0.018 18.76 1.41 2.802 0.538 11.252-1.722 21.58-1.302 10.308-3.42 20.974-6.752 30.692 0.012 0.002 0.020 0.010 0.030 0.014 0.056 0.018 0.108 0.040 0.156 0.070 0.078 0.044 0.146 0.112 0.208 0.19 0.012 0.020 0.030 0.034 0.044 0.052 0.082 0.124 0.154 0.272 0.198 0.466 1.020 4.618 12.022 13.524 25.718 23.1 12.272 8.58 26.702 17.696 38.068 24.752 10.060 6.248 17.72 10.882 19.346 12.098 0.618 0.466 1.358 1.012 2.164 1.636 0.15 0.116 0.3 0.232 0.454 0.354 0.094 0.074 0.19 0.148 0.286 0.226 5.41 4.308 13.484 12.448 15.178 29.578 0.004 0.042 0.010 0.080 0.012 0.122 0.050 0.504 0.092 1.014 0.13 1.534 0.028 0.362 0.050 0.726 0.072 1.096 0.014 0.284 0.032 0.566 0.044 0.856 0.030 0.674 0.050 1.364 0.060 2.064 0 0.040 0.002 0.076 0.004 0.116 0.022 1.658-0.006 3.386-0.104 5.202-0.054 1.014-0.126 1.93-0.298 2.762-0.008 0.044-0.018 0.092-0.028 0.136-0.018 0.082-0.036 0.164-0.058 0.244-0.036 0.146-0.076 0.292-0.122 0.43-0.006 0.018-0.010 0.032-0.016 0.046-0.052 0.16-0.112 0.314-0.174 0.464-0.004 0.006-0.004 0.010-0.006 0.016-1.754 4.108-8.32 5.658-35.442 6.118-0.026 0.002-0.050 0.002-0.076 0.002v0c-11.066 0.188-25.538 0.194-44.502 0.118-33.25-0.134-51.628 32.504-57.494 45.132 8.040 44.46 31.276 76.142 69.45 97.626 0.722 0.406 0.58 0.742-0.274 0.978 7.464 4.514-90.246 0.124-135.186-57.036-39.888 9.914-74.654 9.246-104.616 2.214-5.754 0.162-12.924 0.88-21.434 2.652-19.924 18.056-48.448 51.402-49.976 91.208 0 0-0.092-0.072-0.252-0.204-0.020 0.382-0.056 0.76-0.072 1.142 0 0-60.716-46.664-51.628-173.882-0.022-2.036-0.064-3.986-0.12-5.874-16.432-22.288-24.586-41.020-25.192-45.156-14.56-29.644-29.334-74.254-41.356-141.98 0 0 8.408 26.666 25.284 56.866-12.412-38.022-22.164-97.156-16.436-185.856 0 0 1.514 19.666 6.874 47.994 4.186-55.010 22.518-122.924 68.858-202.788 88.948-153.32 225.67-230.74 376.792-242.616 26.836-2.212 54.050-2.264 81.424-0.186 2.516 0.178 5.032 0.364 7.55 0.574 30.964 2.174 62.134 6.852 93.238 14.366 425.172 102.798 378.942 616.198 378.942 616.198z" />
|
||||
<glyph unicode="" d="M734.202 331.17h236.050c1.82 16.37 2.548 33.098 2.548 50.196 0 80.224-21.534 155.468-59.124 220.266 38.88 103.308 37.492 190.988-14.556 243.39-49.496 49.28-182.29 41.28-332.412-25.198-11.104 0.84-22.318 1.272-33.638 1.272-206.048 0-378.926-141.794-426.708-332.85 64.638 82.754 132.638 142.754 223.478 186.448-8.26-7.74-56.454-55.652-64.56-63.764-239.548-239.478-315.090-552.306-233.806-633.604 61.786-61.774 173.758-51.342 302.376 11.648 59.806-30.458 127.5-47.63 199.218-47.63 193.134 0 356.804 124.316 416.090 297.448h-237.868c-32.734-60.382-96.748-101.48-170.218-101.48-73.468 0-137.484 41.098-170.216 101.48-14.55 27.274-22.914 58.554-22.914 91.656v0.722h386.26zM348.302 447.196c5.456 97.11 86.2 174.584 184.766 174.584s179.312-77.472 184.766-174.584h-369.532zM896.966 796.192c33.526-33.88 32.688-96.214 4.012-174.022-49.136 74.908-120.518 133.936-204.792 167.64 90.106 38.638 163.406 43.756 200.78 6.382zM93.482-7.256c-42.782 42.796-29.884 132.618 25.23 240.832 34.308-96.27 101.156-177.090 187.336-229.154-95.43-43.318-173.536-50.674-212.566-11.678z" />
|
||||
<glyph unicode="" d="M510.046 960c-279.724 0-480.748-202.896-480.748-507.224 0-270.818 195.502-516.776 480.784-516.776 288.078 0 484.62 245.886 484.62 516.776 0 306.76-207.446 507.224-484.656 507.224zM688.358 461.458c-0.068-169.352-9.098-410.482-178.276-410.482v-0.034c-166.784 0-173.432 241.266-173.432 410.308 0 198.38 18.56 388.568 173.432 388.568 154.874 0 178.276-192.584 178.276-388.36z" />
|
||||
<glyph unicode="" d="M512 896c-24.064 0-47.708-1.792-70.824-5.212-0.3 0.782-0.624 1.548-0.982 2.296 12.826 10.002 19.55 23.83 16.634 37.552-3.734 17.564-22.394 29.364-46.434 29.364-5.18 0-10.458-0.562-15.68-1.672-30.168-6.414-50.146-28.622-45.482-50.562 2.834-13.338 14.292-23.338 30.164-27.384-0.032-0.972-0.016-1.95 0.042-2.934-200.622-57.53-347.438-242.338-347.438-461.448 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM364.882 911.092c-2.706 12.726 12.48 27.19 33.158 31.584 4.132 0.878 8.29 1.324 12.354 1.324 16.036 0 28.694-6.864 30.784-16.69 1.596-7.51-3.070-15.61-11.386-21.904-7.034 4.966-16.016 7.126-25.1 5.196-9.044-1.922-16.348-7.508-20.758-14.856-10.184 2.45-17.508 8.084-19.052 15.346zM769.386 158.614c-43.968-43.968-97.21-75.278-155.31-92.154l-42.396 68.768-10.746-79.958c-16.090-2.152-32.426-3.27-48.934-3.27-97.228 0-188.636 37.864-257.386 106.614-43.968 43.966-75.278 97.21-92.154 155.308l68.768 42.398-79.96 10.746c-2.15 16.090-3.268 32.426-3.268 48.934 0 97.228 37.862 188.636 106.614 257.386 43.968 43.968 97.212 75.278 155.31 92.156l42.396-68.77 10.748 79.96c16.088 2.15 32.424 3.268 48.932 3.268 97.228 0 188.636-37.862 257.386-106.614 43.968-43.968 75.278-97.212 92.154-155.31l-68.77-42.398 79.96-10.746c2.152-16.088 3.27-32.424 3.27-48.932 0-97.228-37.864-188.636-106.614-257.386zM760.902 664.902l-196.978-149.704c-14.644 7.658-30.876 12.062-47.416 12.726l-51.080 107.18-3.068-118.664c-13.284-6.536-25.104-15.664-34.876-26.95l-63.088 22.364 46.092-48.538c-6.334-13.518-9.866-28.030-10.434-42.824l-107.158-51.066 118.738-3.068c0.38-0.768 0.774-1.526 1.17-2.282l-149.704-196.98 196.978 149.704c14.644-7.656 30.874-12.060 47.416-12.724l51.080-107.182 3.066 118.664c13.286 6.538 25.106 15.664 34.878 26.952l63.090-22.368-46.094 48.54c6.336 13.52 9.868 28.030 10.436 42.824l107.156 51.066-118.736 3.070c-0.378 0.766-0.774 1.524-1.17 2.28l149.702 196.98zM512.102 515.466v0zM492.042 509.902c6.726 1.43 13.444 2.118 20.056 2.118 4.144 0 8.25-0.27 12.294-0.796l0.092-0.032-0.010 0.022c8.732-1.144 17.176-3.5 25.132-6.896l-71.546-54.376-54.38-71.552c-2.376 5.594-4.27 11.484-5.58 17.652-11.026 51.86 22.080 102.836 73.942 113.86zM562.12 334.116v0 0c-9.056-5.544-19.182-9.684-30.16-12.018-6.726-1.43-13.444-2.118-20.054-2.118-4.15 0-8.258 0.272-12.308 0.798l-0.068 0.010c-8.734 1.142-17.174 3.5-25.132 6.894l71.544 54.376 54.38 71.554c2.376-5.594 4.27-11.486 5.58-17.654 8.69-40.882-10.056-81.2-43.782-101.842z" />
|
||||
<glyph unicode="" d="M957.796 576h-57.406c-35.166 0-65.988 29.742-68.39 64v0c0.004 182.668-147.258 320-331.19 320h-167.824c-183.812 0-332.856-148-332.986-330.666v-362.798c0-182.654 149.174-330.536 332.984-330.536h358.42c183.948 0 332.596 147.882 332.596 330.536v234.382c0 36.502-29.44 75.082-66.204 75.082zM320 704h192c35.2 0 64-28.8 64-64s-28.8-64-64-64h-192c-35.2 0-64 28.8-64 64s28.8 64 64 64zM704 192h-384c-35.2 0-64 28.8-64 64s28.8 64 64 64h384c35.2 0 64-28.8 64-64s-28.8-64-64-64z" />
|
||||
<glyph unicode="" d="M853.348 960h-682.698c-94.246 0-170.65-76.418-170.65-170.682v-682.636c0-94.266 76.404-170.682 170.65-170.682h682.696c94.25 0 170.648 76.416 170.648 170.682l0.006 682.636c0 94.264-76.404 170.682-170.652 170.682zM896 311.902c0-136.99-111.486-247.902-249.444-247.902h-268.818c-137.856 0-249.738 110.912-249.738 247.902v272.098c0.096 137 111.88 248 249.738 248h125.868c137.952 0 248.398-103 248.394-240 1.802-25.694 24.922-48 51.292-48h43.052c27.574 0 49.656-28.934 49.656-56.312v-175.786zM704 320c0-35.2-28.8-64-64-64h-256c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h256c35.2 0 64-28.8 64-64v0zM576 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v0z" />
|
||||
<glyph unicode="" d="M576.032 512l-0.002-234.184c0-59.418-0.77-93.656 5.53-110.5 6.25-16.754 21.918-34.146 38.99-44.202 22.684-13.588 48.542-20.376 77.708-20.376 51.854 0 82.478 6.848 133.742 40.54v-153.944c-43.7-20.552-81.866-32.594-117.324-40.922-35.5-8.242-73.86-12.406-115.064-12.406-46.828 0-74.456 5.886-110.41 17.656-35.958 11.868-66.66 28.806-92.020 50.54-25.45 21.922-43.022 45.208-52.848 69.832-9.826 24.636-14.716 60.414-14.716 107.244v359.1h-137.426v145.006c40.208 13.042 85.164 31.788 113.78 56.152 28.754 24.45 51.766 53.706 69.106 87.944 17.392 34.146 29.348 77.712 35.872 130.516h165.084l-0.002-255.996h255.968v-192h-255.968z" />
|
||||
<glyph unicode="" d="M853.38 960h-682.692c-93.878 0-170.686-76.814-170.686-170.686v-682.626c0-93.938 76.808-170.688 170.686-170.688h682.692c93.87 0 170.62 76.75 170.62 170.688v682.628c-0.008 93.87-76.758 170.684-170.62 170.684zM731.716 135.312c-30.152-14.188-57.528-24.188-82-29.938-24.496-5.69-50.96-8.558-79.402-8.558-32.312 0-51.376 4.058-76.188 12.188-24.808 8.188-46 19.872-63.5 34.872-17.558 15.128-29.686 31.198-36.466 48.194-6.784 17.004-10.156 41.692-10.156 74.004v247.802h-95.996v100.066c27.744 9 59.936 21.934 79.684 38.75 19.84 16.872 35.718 37.058 47.684 60.684 12.004 23.566 20.25 53.626 24.752 90.066h100.5v-163.442h163.372v-126.126h-163.378v-181.188c0-41-0.528-64.626 3.816-76.25 4.312-11.56 15.126-23.56 26.902-30.5 15.656-9.376 33.504-14.060 53.626-14.060 35.786 0 71.378 11.626 106.75 34.876v-111.44z" />
|
||||
<glyph unicode="" d="M848 320l-14.858 416.020c-0.628 17.59 13.258 31.98 30.858 31.98h128c17.6 0 29.468-14.176 26.376-31.502l-74.376-416.498M960 184c0-30.8-25.2-56-56-56h-16c-30.8 0-56 25.2-56 56v16c0 30.8 25.2 56 56 56h16c30.8 0 56-25.2 56-56v-16zM384 768c-212.078 0-384-143.268-384-320 0-176.73 171.922-320 384-320 212.078 0 384 143.27 384 320 0 176.732-171.922 320-384 320zM640 512h-74.262l-117.738-117.74v-74.26h96v-64h-256v64h96v74.26l-181.74 181.74h-42.062v64h191.606v-64h-42.064l106.26-106.26 32 32v74.26h192v-64z" />
|
||||
<glyph unicode="" d="M567.656 223.084c-81.944-38.118-158.158-37.716-209.34-34.020-61.052 4.41-110.158 21.124-131.742 35.732-13.3 9.006-31.384 5.522-40.39-7.782-9.004-13.302-5.52-31.386 7.782-40.39 34.698-23.486 96.068-40.954 160.162-45.58 10.866-0.784 22.798-1.278 35.646-1.278 55.782 0 126.626 5.316 202.42 40.57 14.564 6.778 20.878 24.074 14.104 38.64-6.776 14.566-24.076 20.872-38.642 14.108zM890.948 266.184c2.786 252.688 28.762 730.206-454.97 691.612-477.6-38.442-350.964-542.968-358.082-711.95-6.308-89.386-35.978-198.648-77.896-309.846h129.1c13.266 47.122 23.024 93.72 27.232 138.15 7.782-5.428 16.108-10.674 24.994-15.7 14.458-8.518 26.884-19.844 40.040-31.834 30.744-28.018 65.59-59.774 133.712-63.752 4.572-0.262 9.174-0.394 13.676-0.394 68.896 0 116.014 30.154 153.878 54.382 18.14 11.612 33.818 21.64 48.564 26.452 41.91 13.12 78.532 34.296 105.904 61.252 4.276 4.208 8.242 8.538 11.962 12.948 15.246-55.878 36.118-118.758 59.288-181.504h275.65c-66.174 102.224-134.436 202.374-133.052 330.184zM124.11 403.648c0 0.016 0 0.030-0.002 0.046-4.746 82.462 34.71 151.832 88.126 154.936 53.412 3.106 100.56-61.228 105.304-143.692 0-0.014 0.004-0.030 0.004-0.044 0.256-4.446 0.368-8.846 0.37-13.206-16.924-4.256-32.192-10.436-45.872-17.63-0.052 0.612-0.092 1.216-0.152 1.83 0 0.008 0 0.018 0 0.026-4.57 46.81-29.572 82.16-55.852 78.958-26.28-3.204-43.88-43.75-39.312-90.558 0-0.010 0.004-0.018 0.004-0.026 1.992-20.408 7.868-38.636 16.042-52.444-2.034-1.604-7.784-5.812-14.406-10.656-4.97-3.634-11.020-8.058-18.314-13.43-19.882 26.094-33.506 63.58-35.94 105.89zM665.26 199.822c-1.9-43.586-58.908-84.592-111.582-101.044l-0.296-0.096c-21.9-7.102-41.428-19.6-62.104-32.83-34.732-22.224-70.646-45.208-122.522-45.208-3.404 0-6.894 0.104-10.326 0.296-47.516 2.778-69.742 23.032-97.88 48.676-14.842 13.526-30.19 27.514-49.976 39.124l-0.424 0.244c-42.706 24.104-69.212 54.082-70.908 80.194-0.842 12.98 4.938 24.218 17.182 33.4 26.636 19.972 44.478 33.022 56.284 41.658 13.11 9.588 17.068 12.48 20 15.264 2.096 1.986 4.364 4.188 6.804 6.562 24.446 23.774 65.36 63.562 128.15 63.562 38.404 0 80.898-14.8 126.17-43.902 21.324-13.878 39.882-20.286 63.38-28.4 16.156-5.578 34.468-11.902 58.992-22.404l0.396-0.164c22.88-9.404 49.896-26.564 48.66-54.932zM652.646 302.194c-4.4 2.214-8.974 4.32-13.744 6.286-22.106 9.456-39.832 15.874-54.534 20.998 8.116 15.894 13.16 35.72 13.624 57.242 0 0.010 0 0.022 0 0.030 1.126 52.374-25.288 94.896-58.996 94.976-33.71 0.078-61.95-42.314-63.076-94.686 0-0.010 0-0.018 0-0.028-0.038-1.714-0.042-3.416-0.020-5.11-20.762 9.552-41.18 16.49-61.166 20.76-0.092 1.968-0.204 3.932-0.244 5.92 0 0.016 0 0.036 0 0.050-1.938 95.412 56.602 174.39 130.754 176.402 74.15 2.014 135.828-73.7 137.772-169.11 0-0.018 0-0.038 0-0.052 0.874-43.146-10.66-82.866-30.37-113.678z" />
|
||||
<glyph unicode="" d="M791.498 415.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958 78.394 0 100.428-41.958 169.050-40.67 69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 796.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
|
||||
<glyph unicode="" d="M513 192c-132.312 0-261.674 19.372-386.1 57.698l20.248 60.742c117.904-36.158 240.476-54.44 365.852-54.44 16.344 0 32.638 0.328 48.882 0.948 4.226 77.56 14.118 127.052 14.118 127.052s-64 0-192 0c0 175.010 59.818 330.054 124.93 447h-508.93v-766h566.176c-4.672 45.684-6.304 88.86-6.154 127.84-15.632-0.548-31.306-0.84-47.022-0.84zM192 704h64v-128h-64v128zM1024 831h-427.13c-1.948-3.196-3.894-6.414-5.84-9.686-38.416-64.572-68.936-130.758-90.716-196.72-18.206-55.132-30.302-110.232-36.172-164.594h204.858l-18.458-90.834c-0.314-1.616-8.17-42.844-12.2-106.942 81.864 8.126 162.222 24.206 240.514 48.214l20.248-60.742c-85.566-26.356-173.464-43.748-263.052-52.042-0.036-4.376-0.056-8.79-0.042-13.28 0.124-40.63 2.346-80.57 6.602-119.376h381.388v766.002zM832 576h-64v128h64v-128zM587.264-64h78.168c-5.46 21.814-10.188 44.192-14.138 67.086-3.494 20.252-6.382 40.92-8.686 61.914h-76.432c4.232-41.378 10.95-84.802 21.088-129zM688.448 960h-96.396c-25.75-34.87-54.932-78.37-83.12-129h87.938c33.674 55.312 67.164 99.402 91.578 129z" />
|
||||
<glyph unicode="" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM746.516 199.112c-177.558 0-239.138 80.056-271.972 179.604l-32.85 102.636c-24.638 74.926-53.374 133.424-143.684 133.424-62.62 0-126.246-45.158-126.246-171.398 0-98.528 50.288-160.112 121.114-160.112 80.042 0 133.42 59.53 133.42 59.53l32.85-89.288c0 0-55.436-54.394-171.398-54.394-143.692 0-223.75 84.152-223.75 240.164 0 162.162 80.058 257.61 230.928 257.61 136.506 0 205.28-49.264 248.376-182.692l33.872-102.626c24.636-74.93 67.734-129.324 171.396-129.324 69.792 0 106.734 15.398 106.734 53.368 0 29.77-17.44 51.32-69.784 63.64l-69.8 16.414c-85.174 20.524-119.044 64.658-119.044 134.452 0 111.872 90.32 146.768 182.686 146.768 104.69 0 168.322-37.976 176.532-130.344l-102.634-12.32c-4.108 44.132-30.792 62.61-80.054 62.61-45.164 0-72.872-20.53-72.872-55.426 0-30.79 13.342-49.266 58.494-59.53l65.684-14.364c88.27-20.532 135.492-63.64 135.492-146.772-0.004-102.634-86.216-141.63-213.49-141.63z" />
|
||||
<glyph unicode="" d="M853.376 960h-682.69c-93.876 0-170.686-76.816-170.686-170.692v-682.624c0-93.93 76.81-170.684 170.686-170.684h682.69c93.874 0 170.624 76.752 170.624 170.684v682.624c0 93.876-76.75 170.692-170.624 170.692zM960 106.684c0-28.334-11.14-55.082-31.37-75.316-20.222-20.228-46.948-31.368-75.254-31.368h-341.376v448h-448v341.308c0 28.308 11.15 55.050 31.396 75.296 20.244 20.246 46.984 31.396 75.29 31.396h341.314v-448h448v-341.316z" />
|
||||
<glyph unicode="" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM512 640c-35.29 0-64-28.71-64-64v-256c0-105.872-86.13-192-192-192s-192 86.128-192 192v128h128v-128c0-35.29 28.71-64 64-64s64 28.71 64 64v256c0 105.87 86.13 192 192 192s192-86.13 192-178v-62l-82-24-46 24v62c0 21.29-28.71 50-64 50zM960 320c0-105.872-86.13-192-192-192s-192 86.128-192 206v124l46-24 82 24v-124c0-49.29 28.71-78 64-78s64 28.71 64 64v128h128v-128z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 704c-35.29 0-64-28.71-64-64v-256c0-105.87-86.13-192-192-192s-192 86.13-192 192v128h128v-128c0-35.29 28.71-64 64-64s64 28.71 64 64v256c0 105.87 86.13 192 192 192s192-86.13 192-178v-62l-82-24-46 24v62c0 21.29-28.71 50-64 50zM768 192c-105.87 0-192 86.13-192 206v124l46-24 82 24v-124c0-49.29 28.71-78 64-78s64 28.71 64 64v128h128v-128c0-105.87-86.13-192-192-192z" />
|
||||
<glyph unicode="" d="M1024 320v-384h-1024v384h128v-256h768v256zM192 256h640v-128h-640zM207.152 394.534l27.698 124.964 624.832-138.496-27.698-124.964zM279.658 651.442l54.092 116.006 580.032-270.464-54.092-116.006zM991.722 598.524l-77.922-101.55-507.746 389.608 56.336 73.418h58.244z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM561.644 275.882c-46.52 3.614-66.042 26.656-102.504 48.808-20.060-105.176-44.564-206.016-117.14-258.686-22.404 158.968 32.894 278.364 58.57 405.114-43.784 73.706 5.27 222.034 97.62 185.474 113.626-44.948-98.4-274.008 43.932-302.616 148.62-29.868 209.288 257.858 117.142 351.424-133.158 135.106-387.598 3.080-356.31-190.356 7.614-47.292 56.472-61.638 19.524-126.902-85.22 18.892-110.65 86.102-107.376 175.712 5.268 146.674 131.784 249.364 258.686 263.566 160.484 17.964 311.106-58.908 331.906-209.876 23.412-170.39-72.448-354.93-244.050-341.662z" />
|
||||
<glyph unicode="" d="M853.35 960h-682.702c-94.25 0-170.648-76.42-170.648-170.686v-682.63c0-94.266 76.398-170.684 170.648-170.684h682.702c94.25 0 170.65 76.418 170.65 170.684v682.63c0 94.266-76.4 170.686-170.65 170.686zM561.644 275.882c-46.52 3.614-66.042 26.656-102.504 48.808-20.060-105.178-44.562-206.018-117.138-258.688-22.404 158.968 32.894 278.364 58.57 405.114-43.786 73.706 5.27 222.034 97.62 185.474 113.626-44.948-98.4-274.008 43.932-302.616 148.62-29.868 209.288 257.858 117.142 351.424-133.158 135.106-387.598 3.080-356.31-190.356 7.614-47.292 56.472-61.638 19.524-126.902-85.22 18.892-110.65 86.102-107.376 175.712 5.268 146.674 131.784 249.364 258.686 263.566 160.484 17.964 311.106-58.908 331.906-209.876 23.41-170.388-72.45-354.928-244.052-341.66z" />
|
||||
<glyph unicode="" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM311.778 293.212h-111.264c-6.702 0-11.708 3.008-14.542 7.584-2.934 4.758-3.084 10.928 0 17.068l118.22 208.626c0.126 0.228 0.126 0.38 0 0.632l-75.23 130.232c-3.112 6.196-3.566 12.314-0.632 17.068 2.834 4.602 8.47 6.954 15.172 6.954h111.264c17.070 0 25.44-10.998 30.978-20.862 0 0 76.040-132.66 76.498-133.392-4.504-7.94-120.118-212.42-120.118-212.42-5.688-10.262-13.704-21.49-30.346-21.49zM837.912 809.462l-246.352-435.58c-0.15-0.23-0.15-0.51 0-0.734l156.862-286.59c3.112-6.168 3.186-12.442 0.226-17.194-2.83-4.576-8.066-7.104-14.766-7.104h-111.14c-17.044 0-25.566 11.326-31.080 21.192 0 0-157.696 289.292-158.1 290.046 7.888 13.96 247.594 439.046 247.594 439.046 5.968 10.724 13.174 21.192 29.788 21.192h112.406c6.702 0 11.962-2.53 14.792-7.106 2.932-4.752 2.856-11.022-0.23-17.168z" />
|
||||
<glyph unicode="" d="M842.012 370.52c-13.648 13.446-43.914 20.566-89.972 21.172-31.178 0.344-68.702-2.402-108.17-7.928-17.674 10.198-35.892 21.294-50.188 34.658-38.462 35.916-70.568 85.772-90.576 140.594 1.304 5.12 2.414 9.62 3.448 14.212 0 0 21.666 123.060 15.93 164.666-0.79 5.706-1.274 7.362-2.808 11.796l-1.882 4.834c-5.896 13.592-17.448 27.994-35.566 27.208l-10.916 0.344c-20.2 0-36.664-10.332-40.986-25.774-13.138-48.434 0.418-120.892 24.982-214.738l-6.288-15.286c-17.588-42.876-39.63-86.060-59.078-124.158l-2.528-4.952c-20.46-40.038-39.024-74.026-55.854-102.822l-17.376-9.188c-1.264-0.668-31.044-16.418-38.028-20.644-59.256-35.382-98.522-75.54-105.036-107.416-2.072-10.17-0.53-23.186 10.014-29.214l16.806-8.458c7.29-3.652 14.978-5.502 22.854-5.502 42.204 0 91.2 52.572 158.696 170.366 77.93 25.368 166.654 46.456 244.414 58.090 59.258-33.368 132.142-56.546 178.142-56.546 8.168 0 15.212 0.778 20.932 2.296 8.822 2.336 16.258 7.366 20.792 14.192 8.926 13.432 10.734 31.932 8.312 50.876-0.722 5.624-5.212 12.576-10.070 17.322zM211.646 145.952c7.696 21.042 38.16 62.644 83.204 99.556 2.832 2.296 9.808 8.832 16.194 14.902-47.102-75.124-78.646-105.066-99.398-114.458zM478.434 760.314c13.566 0 21.284-34.194 21.924-66.254 0.64-32.060-6.858-54.56-16.158-71.208-7.702 24.648-11.426 63.5-11.426 88.904 0 0-0.566 48.558 5.66 48.558zM398.852 322.506c9.45 16.916 19.282 34.756 29.33 53.678 24.492 46.316 39.958 82.556 51.478 112.346 22.91-41.684 51.444-77.12 84.986-105.512 4.184-3.542 8.618-7.102 13.274-10.65-68.21-13.496-127.164-29.91-179.068-49.862zM828.904 326.348c-4.154-2.598-16.054-4.1-23.708-4.1-24.706 0-55.272 11.294-98.126 29.666 16.468 1.218 31.562 1.838 45.1 1.838 24.782 0 32.12 0.108 56.35-6.072s24.538-18.734 20.384-21.332zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M690.22 488.318c-60.668 28.652-137.972 34.42-194.834-6.048 69.14 6.604 144.958-4.838 195.106-57.124 48 55.080 124.114 65.406 192.958 59.732-57.488 38.144-133.22 33.024-193.23 3.44zM665.648 354.25c-68.378 1.578-134.434-23.172-191.1-60.104-107.176 45.588-242.736 37.124-334.002-38.982 26.33 0.934 52.006 7.446 78.056 10.792 95.182 9.488 196.588-14.142 268.512-79.824 29.772 43.542 71.644 78.242 119.652 99.922 63.074 30.52 134.16 33.684 202.82 34.52-41.688 28.648-94.616 33.954-143.938 33.676zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M639.778 484.108h44.212l-51.012-226.178-66.326 318.010h-106.55l-77.114-318.010-57.816 318.010h-111.394l113.092-511.882h108.838l76.294 302.708 68.256-302.708h100.336l129.63 511.882h-170.446zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M743.028 576h-135.294l-95.732-141.032-95.74 141.032h-135.288l162.162-242.464-182.974-269.536h262.24v91.576h-60.556l50.156 74.994 111.396-166.57h140.442l-182.976 269.536zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M416 832h96v-64h-96zM320 768h96v-64h-96zM416 704h96v-64h-96zM320 640h96v-64h-96zM416 576h96v-64h-96zM320 512h96v-64h-96zM416 448v-64h-96v-224c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v288h-96zM480 192h-128v64h128v-64zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M192 448h192v-64h-192v64zM192 320h192v-64h-192v64zM192 192h192v-64h-192v64zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608zM576 256h188.792c-14.826-73.032-79.386-128-156.792-128-88.366 0-160 71.634-160 160 0 77.406 54.97 141.966 128 156.792v-188.792zM672 512c88.366 0 160-71.634 160-160 0-10.958-1.108-21.66-3.208-32h-188.792v188.792c10.34 2.1 21.042 3.208 32 3.208z" />
|
||||
<glyph unicode="" d="M448 384l-64 64-192-192 192-192 64 64-128 128zM576 128l64-64 192 192-192 192-64-64 128-128zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M384 348.554v114.226c0 15.128 6.696 29.436 18.854 40.286 12.16 10.848 28.192 16.826 45.146 16.826v57.11c-70.4 0-128-51.4-128-114.222v-85.666c0-15.772-14.328-28.558-32-28.558h-32v-57.11h32c17.674 0 32-12.79 32-28.558v-85.676c0-62.814 57.6-114.214 128-114.214v57.112c-16.954 0-32.988 5.976-45.146 16.826-12.158 10.852-18.854 25.154-18.854 40.278v114.234c0 15.77-14.328 28.554-32 28.554 17.674-0.002 32 12.788 32 28.552zM640 291.446v-114.234c0-15.124-6.696-29.426-18.854-40.278-12.158-10.85-28.19-16.826-45.146-16.826v-57.112c70.402 0 128 51.4 128 114.214v85.676c0 15.772 14.328 28.558 32 28.558h32v57.11h-32c-17.672 0-32 12.79-32 28.558v85.668c0 62.824-57.598 114.222-128 114.222v-57.11c16.958 0 32.988-5.978 45.146-16.83 12.16-10.848 18.854-25.156 18.854-40.284v-114.228c0-15.766 14.328-28.552 32-28.552-17.672 0.002-32-12.788-32-28.552zM903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
|
||||
<glyph unicode="" d="M819.58 146.372c-106.666 0.418-163.498 52.582-202.992 144.502l-11.298 25.082-97.37 222c-32.292 78.586-112.422 131.672-202.834 131.672-122.334 0-221.584-99.252-221.584-221.672 0-122.418 99.248-221.668 221.584-221.668 85.338 0 159.542 48.25 196.582 119l39.376-90.832c-55.912-68.17-140.876-111.584-235.954-111.584-168.51 0-305.090 136.502-305.090 305.086 0 168.504 136.58 305.172 305.084 305.172 127.166 0 229.836-67.918 282-188.252 3.956-9.336 55.158-129.086 99.826-231 27.668-63.082 51.26-104.918 127.756-107.504 75.168-2.582 126.756 43.168 126.756 101.008 0 56.5-39.336 70.082-105.75 92.164-119.382 39.334-181.006 78.834-181.006 173.502 0 92.336 62.832 153.918 164.914 153.918 66.496 0 114.506-29.586 147.76-88.586l-65.256-33.332c-24.59 34.414-51.708 48-86.172 48-47.912 0-82.126-33.336-82.126-77.666 0-62.922 56.294-72.422 135.006-98.254 105.958-34.5 155.208-73.92 155.208-172.336 0.002-103.336-88.672-178.588-204.42-178.42z" />
|
||||
<glyph unicode="" d="M534.626 937.372c-12.444 12.444-37.026 22.628-54.626 22.628h-384c-17.6 0-32-14.4-32-32v-960c0-17.6 14.4-32 32-32h768c17.6 0 32 14.4 32 32v576c0 17.6-10.182 42.182-22.626 54.626l-338.748 338.746zM832 0h-704v896h351.158c2.916-0.48 8.408-2.754 10.81-4.478l337.556-337.554c1.722-2.402 3.996-7.894 4.476-10.81v-543.158zM864 960h-192c-17.6 0-21.818-10.182-9.374-22.626l210.746-210.746c12.446-12.446 22.628-8.228 22.628 9.372v192c0 17.6-14.4 32-32 32z" />
|
||||
<glyph unicode="" d="M259.544 448.002c0 65.416 53.030 118.446 118.446 118.446s118.446-53.030 118.446-118.446c0-65.416-53.030-118.446-118.446-118.446-65.416 0-118.446 53.030-118.446 118.446zM512.004 960c-282.774 0-512.004-229.232-512.004-512s229.226-512 512.004-512c282.764 0 511.996 229.23 511.996 512 0 282.768-229.23 512-511.996 512zM379.396 0.718c-153.956 89.574-257.468 256.324-257.468 447.282 0 190.958 103.512 357.708 257.462 447.282 154.010-89.562 257.59-256.288 257.59-447.282 0-190.988-103.58-357.718-257.584-447.282z" />
|
||||
<glyph unicode="" d="M384 768c247.424 0 448-200.578 448-448h-96c0 94.024-36.614 182.418-103.098 248.902-66.484 66.484-154.88 103.098-248.902 103.098v96zM384 960c353.46 0 640-286.54 640-640h-96c0 73.48-14.37 144.714-42.71 211.718-27.396 64.768-66.634 122.956-116.624 172.948-49.992 49.992-108.18 89.23-172.948 116.624-67.004 28.34-138.236 42.71-211.718 42.71v96zM574.39 510.392c43.758-43.756 65.596-101.106 65.57-158.45-63.96-95.996-63.96-223.942-63.96-223.942-256 0-448-192-448-192l-37.13 37.13 283.582 283.582c3.116-0.466 6.302-0.712 9.548-0.712 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-3.246 0.246-6.434 0.712-9.548l-283.582-283.582-37.13 37.13c0 0 192 192 192 448 0 0 127.998 0 223.998 64 57.328 0 114.654-21.87 158.392-65.608z" />
|
||||
<glyph unicode="" d="M895.94 326.498c-0.012 0.706-0.030 1.402-0.042 2.106-0.032 1.428-0.070 2.854-0.118 4.28-10.030 315.648-383.78 627.116-383.78 627.116s-373.754-311.468-383.78-627.122c-0.044-1.43-0.088-2.852-0.12-4.282-0.014-0.704-0.030-1.402-0.042-2.106-0.036-2.16-0.056-4.324-0.056-6.496 0-2.368 0.028-4.722 0.070-7.078 0.004-0.196 0.006-0.39 0.014-0.586 4.078-208.532 174.396-376.33 383.914-376.33 209.516 0 379.832 167.798 383.918 376.336 0.004 0.196 0.008 0.392 0.010 0.586 0.042 2.356 0.072 4.714 0.072 7.078 0 2.172-0.024 4.336-0.060 6.498zM767.95 315.26l-0.008-0.406c-1.318-67.286-28.532-130.334-76.626-177.548-48.142-47.272-111.83-73.306-179.316-73.306-12.462 0-24.794 0.894-36.924 2.638 139.056 82.846 232.216 234.704 232.216 408.322 0 19.456-1.18 38.634-3.452 57.48 40.272-73.94 62.064-142.8 64.002-203.626l0.004-0.144c0.032-0.948 0.052-1.892 0.078-2.844l0.028-1.448c0.028-1.456 0.048-2.918 0.048-4.378 0-1.584-0.020-3.162-0.050-4.74z" />
|
||||
<glyph unicode="" d="M1024 384v384h-192v64c0 35.2-28.8 64-64 64h-704c-35.2 0-64-28.8-64-64v-192c0-35.2 28.8-64 64-64h704c35.2 0 64 28.8 64 64v64h128v-256h-576v-128h-32c-17.674 0-32-14.326-32-32v-320c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v320c0 17.674-14.326 32-32 32h-32v64h576zM768 768h-704v64h704v-64z" />
|
||||
<glyph unicode="" d="M896 768h-768v-640h768v640zM1024 896v0-896h-1024v896h1024zM832 192h-640v128l192 320 263-320 185 128v-64zM640 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96z" />
|
||||
<glyph unicode="" d="M0 832v-832h1024v832h-1024zM960 64h-896v704h896v-704zM704 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM896 128h-768l192 512 256-320 128 96z" />
|
||||
<glyph unicode="" d="M128 704v-640h896v640h-896zM960 170.666l-128 213.334-145.066-120.888-110.934 184.888-384-320v512h768v-469.334zM256 480c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM896 832h-896v-640h64v576h832z" />
|
||||
<glyph unicode="" d="M304 352c0-114.876 93.124-208 208-208s208 93.124 208 208-93.124 208-208 208-208-93.124-208-208zM960 704h-224c-16 64-32 128-96 128h-256c-64 0-80-64-96-128h-224c-35.2 0-64-28.8-64-64v-576c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v576c0 35.2-28.8 64-64 64zM512 68c-156.85 0-284 127.148-284 284 0 156.85 127.15 284 284 284 156.852 0 284-127.15 284-284 0-156.852-127.146-284-284-284zM960 512h-128v64h128v-64z" />
|
||||
<glyph unicode="" d="M320 768l704 192v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.366 100.29 160 224 160 34.358 0 66.902-5.532 96-15.406v329.588l-448-122.182v-480c0-88.366-100.288-160-224-160-123.712 0-224 71.634-224 160 0 88.366 100.288 160 224 160 34.358 0 66.902-5.532 96-15.406v527.406z" />
|
||||
<glyph unicode="" d="M736.020 324.040c20.366 36.73 31.98 78.986 31.98 123.96 0 103.314-61.208 192.324-149.334 232.772 32.724 29.298 53.334 71.85 53.334 119.228 0 88.366-71.634 160-160 160-88.366 0-160-71.634-160-160 0-47.38 20.61-89.93 53.334-119.228-88.126-40.448-149.334-129.458-149.334-232.772 0-44.974 11.612-87.23 31.98-123.96-133.892-77.466-223.98-222.228-223.98-388.040h896c0 165.812-90.088 310.574-223.98 388.040z" />
|
||||
<glyph unicode="" d="M1024 530.744c0 200.926-58.792 363.938-131.482 365.226 0.292 0.006 0.578 0.030 0.872 0.030h-82.942c0 0-194.8-146.336-475.23-203.754-8.56-45.292-14.030-99.274-14.030-161.502 0-62.228 5.466-116.208 14.030-161.5 280.428-57.418 475.23-203.756 475.23-203.756h82.942c-0.292 0-0.578 0.024-0.872 0.032 72.696 1.288 131.482 164.298 131.482 365.224zM864.824 220.748c-9.382 0-19.532 9.742-24.746 15.548-12.63 14.064-24.792 35.96-35.188 63.328-23.256 61.232-36.066 143.31-36.066 231.124 0 87.81 12.81 169.89 36.066 231.122 10.394 27.368 22.562 49.266 35.188 63.328 5.214 5.812 15.364 15.552 24.746 15.552 9.38 0 19.536-9.744 24.744-15.552 12.634-14.064 24.796-35.958 35.188-63.328 23.258-61.23 36.068-143.312 36.068-231.122 0-87.804-12.81-169.888-36.068-231.124-10.39-27.368-22.562-49.264-35.188-63.328-5.208-5.806-15.36-15.548-24.744-15.548zM251.812 530.744c0 51.95 3.81 102.43 11.052 149.094-47.372-6.554-88.942-10.324-140.34-10.324-67.058 0-67.058 0-67.058 0l-55.466-94.686v-88.17l55.46-94.686c0 0 0 0 67.060 0 51.398 0 92.968-3.774 140.34-10.324-7.236 46.664-11.048 97.146-11.048 149.096zM368.15 317.828l-127.998 24.51 81.842-321.544c4.236-16.634 20.744-25.038 36.686-18.654l118.556 47.452c15.944 6.376 22.328 23.964 14.196 39.084l-123.282 229.152zM864.824 411.27c-3.618 0-7.528 3.754-9.538 5.992-4.87 5.42-9.556 13.86-13.562 24.408-8.962 23.6-13.9 55.234-13.9 89.078 0 33.844 4.938 65.478 13.9 89.078 4.006 10.548 8.696 18.988 13.562 24.408 2.010 2.24 5.92 5.994 9.538 5.994 3.616 0 7.53-3.756 9.538-5.994 4.87-5.42 9.556-13.858 13.56-24.408 8.964-23.598 13.902-55.234 13.902-89.078 0-33.842-4.938-65.478-13.902-89.078-4.004-10.548-8.696-18.988-13.56-24.408-2.008-2.238-5.92-5.992-9.538-5.992z" />
|
||||
<glyph unicode="" d="M640 384c105.87 0 201.87-43.066 271.402-112.598l-90.468-90.468c-46.354 46.356-110.356 75.066-180.934 75.066s-134.578-28.71-180.934-75.066l-90.468 90.468c69.532 69.532 165.532 112.598 271.402 112.598zM187.452 452.548c120.88 120.88 281.598 187.452 452.548 187.452s331.668-66.572 452.55-187.452l-90.51-90.508c-96.706 96.704-225.28 149.96-362.040 149.96-136.762 0-265.334-53.256-362.038-149.962l-90.51 90.51zM988.784 825.562c106.702-45.132 202.516-109.728 284.782-191.996v0l-90.508-90.508c-145.056 145.056-337.92 224.942-543.058 224.942-205.14 0-398-79.886-543.058-224.942l-90.51 90.51c82.268 82.266 178.082 146.862 284.784 191.994 110.504 46.738 227.852 70.438 348.784 70.438 120.932 0 238.278-23.7 348.784-70.438zM576 64c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64z" horiz-adv-x="1280" />
|
||||
<glyph unicode="" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-220.054 138.836-407.664 333.686-480.068l-13.686-31.932h384l-13.686 31.932c194.85 72.404 333.686 260.014 333.686 480.068zM486.79 325.174c-22.808 9.788-38.79 32.436-38.79 58.826 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0-26.39-15.978-49.044-38.786-58.834l-25.214 58.834-25.21-58.826zM538.268 322.708c58.092 12.118 101.732 63.602 101.732 125.292 0 70.694-57.306 128-128 128-70.692 0-128-57.306-128-128 0-61.692 43.662-113.122 101.76-125.228l-74.624-174.122c-91.23 39.15-155.136 129.784-155.136 235.35 0 141.384 114.616 268 256 268s256-126.616 256-268c0-105.566-63.906-196.2-155.136-235.35l-74.596 174.058zM688.448-27.708l-73.924 172.486c126.446 42.738 217.476 162.346 217.476 303.222 0 176.73-143.268 320-320 320-176.73 0-320-143.27-320-320 0-140.876 91.030-260.484 217.476-303.222l-73.924-172.486c-159.594 68.488-271.386 227.034-271.386 411.708 0 247.332 200.502 459.834 447.834 459.834 247.332 0 447.834-212.502 447.834-459.834 0-184.674-111.792-343.22-271.386-411.708z" />
|
||||
<glyph unicode="" d="M384 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM664.348 729.474c99.852-54.158 167.652-159.898 167.652-281.474s-67.8-227.316-167.652-281.474c44.066 70.126 71.652 170.27 71.652 281.474 0 111.204-27.586 211.348-71.652 281.474zM288 448c0-111.204 27.584-211.348 71.652-281.474-99.852 54.16-167.652 159.898-167.652 281.474 0 121.576 67.8 227.314 167.652 281.474-44.068-70.126-71.652-170.27-71.652-281.474zM96 448c0-171.9 54.404-326.184 140.652-431.722-142.302 90.948-236.652 250.314-236.652 431.722 0 181.408 94.35 340.774 236.652 431.722-86.248-105.538-140.652-259.822-140.652-431.722zM787.352 879.72c142.298-90.946 236.648-250.312 236.648-431.72s-94.35-340.774-236.648-431.72c86.244 105.536 140.648 259.82 140.648 431.72 0 171.9-54.404 326.184-140.648 431.72z" />
|
||||
<glyph unicode="" d="M896 832v-832h-672c-53.022 0-96 42.98-96 96 0 53.018 42.978 96 96 96h608v768h-640c-70.398 0-128-57.6-128-128v-768c0-70.4 57.602-128 128-128h768v896h-64zM256 128h576v-64h-576z" />
|
||||
<glyph unicode="" d="M576.234 670.73l242.712 81.432 203.584-606.784-242.712-81.432zM0 64h256v704h-256v-704zM64 640h128v-64h-128v64zM320 64h256v704h-256v-704zM384 640h128v-64h-128v64z" />
|
||||
<glyph unicode="" d="M512 960l-512-320h1024l-512 320zM800 576l32-64v-384h128v384l32 64h-192zM544 576l32-64v-384h128v384l32 64h-192zM288 576l32-64v-384h128v384l32 64h-192zM32 576l32-64v-384h128v384l32 64h-192zM32 64l-32-128h1024l-32 128h-960zM576 768c0-35.346-28.654-64-64-64s-64 28.654-64 64 28.654 64 64 64c35.346 0 64-28.654 64-64z" />
|
||||
<glyph unicode="" d="M832 640v160c0 17.6-14.4 32-32 32h-224v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-224c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h448l192 192v512h-192zM384 895.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 704v64h512v-64h-512zM832 26.51v101.49h101.49l-101.49-101.49zM960 192h-192v-192h-320v576h512v-384z" />
|
||||
<glyph unicode="" d="M704 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM512 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886zM832 640v160c0 17.6-14.4 32-32 32h-64v-64h32v-128h-192l-192-192v-256h-256v576h32v64h-64c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM576 549.49v-101.49h-101.49l101.49 101.49zM960 0h-512v384h192v192h320v-576z" />
|
||||
<glyph unicode="" d="M1024 640l-512 256-512-256 512-256 512 256zM512 811.030l342.058-171.030-342.058-171.030-342.058 171.030 342.058 171.030zM921.444 499.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722zM921.444 307.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722z" />
|
||||
<glyph unicode="" d="M0 640h1024l-64-640h-896l-64 640zM928 768l32-64h-896l64 128h352l32-64h416z" />
|
||||
<glyph unicode="" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" />
|
||||
<glyph unicode="" d="M927.812 960h-288.562c-52.906 0-126.796-30.606-164.204-68.014l-446.99-446.99c-37.408-37.408-37.408-98.624 0-136.032l344.91-344.906c37.408-37.41 98.622-37.41 136.030 0l446.99 446.988c37.408 37.41 68.014 111.302 68.014 164.204v288.562c0 52.904-43.286 96.188-96.188 96.188zM800 640c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
|
||||
<glyph unicode="" d="M992 896h-224c-52.8 0-126.546-30.546-163.882-67.882l-376.236-376.236c-37.334-37.334-37.334-98.428 0-135.764l280.236-280.234c37.334-37.336 98.428-37.336 135.764 0l376.234 376.234c37.338 37.336 67.884 111.082 67.884 163.882v224c0 52.8-43.2 96-96 96zM864 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM86.626 361.374l342.378-342.378c-36.264-19.16-82.462-13.538-112.886 16.888l-280.236 280.234c-37.334 37.336-37.334 98.43 0 135.764l376.236 376.236c37.336 37.336 111.082 67.882 163.882 67.882l-489.374-489.372c-12.444-12.446-12.444-32.808 0-45.254z" horiz-adv-x="1088" />
|
||||
<glyph unicode="" d="M0 832h128v-640h-128zM192 832h64v-640h-64zM320 832h64v-640h-64zM512 832h64v-640h-64zM768 832h64v-640h-64zM960 832h64v-640h-64zM640 832h32v-640h-32zM448 832h32v-640h-32zM864 832h32v-640h-32zM0 128h64v-64h-64zM192 128h64v-64h-64zM320 128h64v-64h-64zM640 128h64v-64h-64zM960 128h64v-64h-64zM768 128h128v-64h-128zM448 128h128v-64h-128z" />
|
||||
<glyph unicode="" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" />
|
||||
<glyph unicode="" d="M1017.378 384.006c8.004-55.482 13.216-131.392-11.664-160.446-41.142-48.044-301.712-48.044-301.712 48.042 0 48.398 42.856 80.134 1.712 128.178-40.472 47.262-113.026 48.030-193.714 48.042-80.686-0.012-153.242-0.78-193.714-48.042-41.142-48.046 1.714-79.78 1.714-128.178 0-96.086-260.57-96.086-301.714-48.044-24.878 29.054-19.668 104.964-11.662 160.446 6.16 37.038 21.724 76.996 71.548 127.994 0 0.002 0.002 0.002 0.002 0.004 74.738 69.742 187.846 126.738 429.826 127.968v0.030c1.344 0 2.664-0.010 4-0.014 1.338 0.004 2.656 0.014 4 0.014v-0.028c241.98-1.23 355.088-58.226 429.826-127.968 0.002-0.002 0.002-0.004 0.002-0.004 49.824-50.996 65.39-90.954 71.55-127.994z" />
|
||||
<glyph unicode="" d="M960 704c35.346 0 64 28.654 64 64v128h-128v64h-832c-35.2 0-64-28.798-64-64v-896c0-35.2 28.796-64 64-64h832v256h64c35.346 0 64 28.654 64 64v128h-128v64h64c35.346 0 64 28.654 64 64v128h-128v64h64zM576 703.67c70.51 0 127.67-57.16 127.67-127.67s-57.16-127.67-127.67-127.67c-70.51 0-127.67 57.16-127.67 127.67s57.16 127.67 127.67 127.67zM256 0h-64v896h64v-896zM768 192h-384v64c0 70.694 57.308 128 128 128v0h128c70.696 0 128-57.306 128-128v-64z" />
|
||||
<glyph unicode="" d="M898.36 896h-770.36v-128h-93.64c-17.6 0-34.36-12.528-34.36-30.128v-64c0-17.6 16.76-33.872 34.36-33.872h93.64v-64h-93.64c-17.6 0-34.36-12.528-34.36-30.128v-64c0-17.6 16.76-33.872 34.36-33.872h93.64v-64h-93.64c-17.6 0-34.36-12.528-34.36-30.128v-64c0-17.598 16.76-33.872 34.36-33.872h93.64v-64h-93.64c-17.6 0-34.36-12.528-34.36-30.128v-64c0-17.6 16.76-33.872 34.36-33.872h93.64v-128h770.36c35.348 0 61.64 30.526 61.64 65.872v832c0 35.346-26.292 62.128-61.64 62.128zM320 0h-128v64h34.36c17.6 0 29.64 16.272 29.64 33.872v64c0 17.602-12.042 30.128-29.64 30.128h-34.36v64h34.36c17.6 0 29.64 16.272 29.64 33.872v64c0 17.602-12.042 30.128-29.64 30.128h-34.36v64h34.36c17.6 0 29.64 16.272 29.64 33.872v64c0 17.602-12.042 30.128-29.64 30.128h-34.36v64h34.36c17.6 0 29.64 16.272 29.64 33.872v64c0 17.602-12.040 30.128-29.64 30.128h-34.36v64h128v-832z" />
|
||||
<glyph unicode="" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
|
||||
<glyph unicode="" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
|
||||
<glyph unicode="" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
|
||||
<glyph unicode="" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 444c-108.248 0-196 87.752-196 196s87.752 196 196 196 196-87.752 196-196-87.752-196-196-196zM388 640c0 68.483 55.517 124 124 124s124-55.517 124-124c0-68.483-55.517-124-124-124-68.483 0-124 55.517-124 124z" />
|
||||
<glyph unicode="" d="M512.002 766.788v65.212h128v64c0 35.346-28.654 64-64.002 64h-191.998c-35.346 0-64-28.654-64-64v-64h128v-65.212c-214.798-16.338-384-195.802-384-414.788 0-229.75 186.25-416 416-416 229.75 0 416 186.25 416 416 0 218.984-169.202 398.448-384 414.788zM706.276 125.726c-60.442-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c58.040 58.038 134.448 91.018 216.114 93.548l-21.678-314.020c-1.86-26.29 12.464-37.802 31.836-37.802s33.698 11.512 31.836 37.802l-21.676 314.022c81.666-2.532 158.076-35.512 216.116-93.55 60.44-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274z" />
|
||||
<glyph unicode="" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" />
|
||||
<glyph unicode="" d="M896 832h-96v-32c0-35.29-28.71-64-64-64s-64 28.71-64 64v32h-320v-32c0-35.29-28.71-64-64-64s-64 28.71-64 64v32h-96c-35.2 0-64-28.8-64-64v-704c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v704c0 35.2-28.8 64-64 64zM896 64.116c-0.034-0.040-0.076-0.082-0.116-0.116h-767.77c-0.040 0.034-0.082 0.076-0.114 0.116v575.884h768v-575.884zM288 768c17.672 0 32 14.328 32 32v128c0 17.672-14.328 32-32 32s-32-14.328-32-32v-128c0-17.672 14.328-32 32-32zM736 768c17.672 0 32 14.328 32 32v128c0 17.672-14.328 32-32 32s-32-14.328-32-32v-128c0-17.672 14.328-32 32-32zM576 576h-320v-64h256v-128h-256v-64h256v-128h-256v-64h320zM704 128h64v448h-128v-64h64zM872-24h-720c-35.2 0-64 20.8-64 56v-32c0-35.2 28.8-64 64-64h720c35.2 0 64 28.8 64 64v32c0-35.2-28.8-56-64-56z" />
|
||||
<glyph unicode="" d="M256 896h512v-128h-512zM960 704h-896c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h192v-256h512v256h192c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM704 64h-384v320h384v-320zM974.4 608c0-25.626-20.774-46.4-46.398-46.4-25.626 0-46.402 20.774-46.402 46.4s20.776 46.4 46.402 46.4c25.626 0 46.398-20.774 46.398-46.4z" />
|
||||
<glyph unicode="" d="M1088 832h-1024c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h1024c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM640 704h128v-128h-128v128zM832 512v-128h-128v128h128zM448 704h128v-128h-128v128zM640 512v-128h-128v128h128zM256 704h128v-128h-128v128zM448 512v-128h-128v128h128zM128 704h64v-128h-64v128zM128 512h128v-128h-128v128zM192 192h-64v128h64v-128zM768 192h-512v128h512v-128zM1024 192h-192v128h192v-128zM1024 384h-128v128h128v-128zM1024 576h-192v128h192v-128z" horiz-adv-x="1152" />
|
||||
<glyph unicode="" d="M1024 128v768h-1024v-768h448v-64h-192v-64h512v64h-192v64h448zM128 768h768v-512h-768v512z" />
|
||||
<glyph unicode="" d="M896 256v512c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-512h-128v-192h1024v192h-128zM640 128h-256v64h256v-64zM832 256h-640v511.886c0.034 0.040 0.076 0.082 0.114 0.114h639.77c0.040-0.034 0.082-0.076 0.116-0.116v-511.884z" />
|
||||
<glyph unicode="" d="M736 960h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h448c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 912h256v-32h-256v32zM512 0c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM768 192h-512v640h512v-640z" />
|
||||
<glyph unicode="" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
|
||||
<glyph unicode="" d="M448 384h128v256h192l-256 256-256-256h192zM640 528v-98.712l293.066-109.288-421.066-157.018-421.066 157.018 293.066 109.288v98.712l-384-144v-256l512-192 512 192v256z" />
|
||||
<glyph unicode="" d="M896 960h-896v-1024h1024v896l-128 128zM512 832h128v-256h-128v256zM896 64h-768v768h64v-320h576v320h74.978l53.022-53.018v-714.982z" />
|
||||
<glyph unicode="" d="M192 64h640c106.038 0 192 85.96 192 192h-1024c0-106.040 85.962-192 192-192zM832 192h64v-64h-64v64zM960 832h-896l-64-512h1024z" />
|
||||
<glyph unicode="" d="M512 896c-141.384 0-269.376-57.32-362.032-149.978l-149.968 149.978v-384h384l-143.532 143.522c69.496 69.492 165.492 112.478 271.532 112.478 212.068 0 384-171.924 384-384 0-114.696-50.292-217.636-130.018-288l84.666-96c106.302 93.816 173.352 231.076 173.352 384 0 282.77-229.23 512-512 512z" />
|
||||
<glyph unicode="" d="M0 384c0-152.924 67.048-290.184 173.35-384l84.666 96c-79.726 70.364-130.016 173.304-130.016 288 0 212.076 171.93 384 384 384 106.042 0 202.038-42.986 271.53-112.478l-143.53-143.522h384v384l-149.97-149.978c-92.654 92.658-220.644 149.978-362.030 149.978-282.77 0-512-229.23-512-512z" />
|
||||
<glyph unicode="" d="M0 576h1024v384zM1024 0v384h-1024z" />
|
||||
<glyph unicode="" d="M576 960v-1024h384zM0-64h384v1024z" />
|
||||
<glyph unicode="" d="M480 832c-50.666 0-99.582-7.95-145.386-23.628-42.924-14.694-81.114-35.436-113.502-61.646-60.044-48.59-93.112-110.802-93.112-175.174 0-35.99 10.066-70.948 29.92-103.898 20.686-34.34 51.898-65.794 90.26-90.958 30.44-19.968 50.936-51.952 56.362-87.95 0.902-5.99 1.63-12.006 2.18-18.032 2.722 2.52 5.424 5.114 8.114 7.794 24.138 24.040 56.688 37.312 90.322 37.312 5.348 0 10.718-0.336 16.094-1.018 19.36-2.452 39.124-3.696 58.748-3.696 50.666 0 99.58 7.948 145.384 23.628 42.926 14.692 81.116 35.434 113.504 61.644 60.046 48.59 93.112 110.802 93.112 175.174 0 64.372-33.066 126.582-93.112 175.174-32.388 26.212-70.578 46.952-113.504 61.646-45.804 15.678-94.718 23.628-145.384 23.628zM480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" horiz-adv-x="1152" />
|
||||
<glyph unicode="" d="M622.826 257.264c-22.11 3.518-22.614 64.314-22.614 64.314s64.968 64.316 79.128 150.802c38.090 0 61.618 91.946 23.522 124.296 1.59 34.054 48.96 267.324-190.862 267.324-239.822 0-192.45-233.27-190.864-267.324-38.094-32.35-14.57-124.296 23.522-124.296 14.158-86.486 79.128-150.802 79.128-150.802s-0.504-60.796-22.614-64.314c-71.22-11.332-337.172-128.634-337.172-257.264h896c0 128.63-265.952 245.932-337.174 257.264z" />
|
||||
<glyph unicode="" d="M734.994 154.626c-18.952 2.988-19.384 54.654-19.384 54.654s55.688 54.656 67.824 128.152c32.652 0 52.814 78.138 20.164 105.628 1.362 28.94 41.968 227.176-163.598 227.176-205.564 0-164.958-198.236-163.598-227.176-32.654-27.49-12.488-105.628 20.162-105.628 12.134-73.496 67.826-128.152 67.826-128.152s-0.432-51.666-19.384-54.654c-61.048-9.632-289.006-109.316-289.006-218.626h768c0 109.31-227.958 208.994-289.006 218.626zM344.054 137.19c44.094 27.15 97.626 52.308 141.538 67.424-15.752 22.432-33.294 52.936-44.33 89.062-15.406 12.566-27.944 30.532-35.998 52.602-8.066 22.104-11.122 46.852-8.608 69.684 1.804 16.392 6.478 31.666 13.65 45.088-4.35 46.586-7.414 138.034 52.448 204.732 23.214 25.866 52.556 44.46 87.7 55.686-6.274 64.76-39.16 140.77-166.454 140.77-205.564 0-164.958-198.236-163.598-227.176-32.654-27.49-12.488-105.628 20.162-105.628 12.134-73.496 67.826-128.152 67.826-128.152s-0.432-51.666-19.384-54.654c-61.048-9.634-289.006-109.318-289.006-218.628h329.596c4.71 3.074 9.506 6.14 14.458 9.19z" />
|
||||
<glyph unicode="" d="M848-64h-672c-26.51 0-48 21.49-48 48 0 68.862 29.068 152.204 77.758 222.942 40.692 59.118 90.684 103.62 144.678 129.61-23.798 21.644-44.294 48.026-60.508 78.122-26 48.262-39.746 104.048-39.746 161.328 0 79.606 26.204 154.822 73.786 211.79 49.664 59.46 116.442 92.208 188.032 92.208s138.368-32.748 188.034-92.21c47.58-56.968 73.786-132.182 73.786-211.79 0-57.28-13.744-113.066-39.744-161.328-16.214-30.096-36.71-56.478-60.51-78.122 53.994-25.99 103.986-70.492 144.678-129.61 48.688-70.736 77.756-154.078 77.756-222.94 0-26.51-21.49-48-48-48zM230.074 32h563.852c-9.226 39.34-28.52 82.384-54.762 120.51-41.454 60.226-93.176 99.622-145.638 110.926-22.106 4.764-37.888 24.31-37.888 46.924v34.292c0 17.26 9.266 33.19 24.27 41.722 59.478 33.832 97.912 108.266 97.912 189.626 0 114.692-74.384 208-165.818 208-91.432 0-165.818-93.308-165.818-208 0-81.36 38.434-155.792 97.914-189.626 15.002-8.534 24.268-24.462 24.268-41.722v-34.292c0-22.614-15.784-42.16-37.888-46.924-52.462-11.304-104.184-50.7-145.64-110.926-26.246-38.126-45.536-81.17-54.764-120.51z" />
|
||||
<glyph unicode="" d="M976-64h-672c-26.51 0-48 21.49-48 48 0 68.862 29.068 152.204 77.758 222.942 40.692 59.118 90.684 103.62 144.678 129.61-23.798 21.644-44.294 48.026-60.508 78.122-26 48.262-39.746 104.048-39.746 161.328 0 79.606 26.204 154.822 73.786 211.79 49.664 59.46 116.442 92.208 188.032 92.208s138.368-32.748 188.034-92.21c47.58-56.968 73.786-132.182 73.786-211.79 0-57.28-13.744-113.066-39.744-161.328-16.214-30.096-36.71-56.478-60.51-78.122 53.994-25.99 103.986-70.492 144.678-129.61 48.688-70.736 77.756-154.078 77.756-222.94 0-26.51-21.49-48-48-48zM358.074 32h563.852c-9.226 39.34-28.52 82.384-54.762 120.51-41.454 60.226-93.176 99.622-145.638 110.926-22.106 4.764-37.888 24.31-37.888 46.924v34.292c0 17.26 9.266 33.19 24.27 41.722 59.478 33.832 97.912 108.266 97.912 189.626 0 114.692-74.384 208-165.818 208s-165.818-93.308-165.818-208c0-81.36 38.434-155.792 97.914-189.626 15.002-8.534 24.268-24.462 24.268-41.722v-34.292c0-22.614-15.784-42.16-37.888-46.924-52.462-11.304-104.184-50.7-145.64-110.926-26.246-38.126-45.536-81.17-54.764-120.51zM197.114 96h-95.040c9.228 39.34 28.518 82.384 54.76 120.51 41.456 60.226 93.178 99.622 145.64 110.926 22.106 4.764 37.888 24.31 37.888 46.924v34.292c0 17.26-9.266 33.19-24.268 41.722-59.48 33.834-97.914 108.266-97.914 189.626 0 114.692 74.384 208 165.818 208 6.254 0 12.426-0.452 18.502-1.302 26.358 29.334 56.234 53.174 88.642 71.004-33.192 17.232-69.5 26.298-107.142 26.298-71.59 0-138.368-32.748-188.034-92.21-47.58-56.968-73.784-132.184-73.784-211.79 0-57.28 13.744-113.066 39.746-161.328 16.214-30.096 36.71-56.476 60.508-78.122-53.994-25.99-103.986-70.492-144.678-129.61-48.69-70.736-77.758-154.078-77.758-222.94 0-26.51 21.49-48 48-48h132.386c1.476 31.026 7.198 63.412 16.728 96z" />
|
||||
<glyph unicode="" d="M256 640c0 141.385 114.615 256 256 256s256-114.615 256-256c0-141.385-114.615-256-256-256-141.385 0-256 114.615-256 256zM768 320h-512c-141.384 0-256-114.618-256-256v-64h1024v64c0 141.382-114.616 256-256 256z" />
|
||||
<glyph unicode="" d="M320 768c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192-106.039 0-192 85.961-192 192zM768.078 512h-35.424l-199.104-404.244 74.45 372.244-96 96-96-96 74.45-372.244-199.102 404.244h-35.424c-127.924 0-127.924-85.986-127.924-192v-320h768v320c0 106.014 0 192-127.922 192z" />
|
||||
<glyph unicode="" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224-123.712 0-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224-123.71 0-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
|
||||
<glyph unicode="" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
|
||||
<glyph unicode="" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384 0-212.078 171.922-384 384-384 95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
|
||||
<glyph unicode="" d="M1024 960v-384l-138.26 138.26-212-212-107.48 107.48 212 212-138.26 138.26zM245.74 821.74l212-212-107.48-107.48-212 212-138.26-138.26v384h384zM885.74 181.74l138.26 138.26v-384h-384l138.26 138.26-212 212 107.48 107.48zM457.74 286.26l-212-212 138.26-138.26h-384v384l138.26-138.26 212 212z" />
|
||||
<glyph unicode="" d="M64 384h384v-384l-138.26 138.26-202-202-107.48 107.48 202 202zM821.74 245.74l202-202-107.48-107.48-202 202-138.26-138.26v384h384zM960 512h-384v384l138.26-138.26 202 202 107.48-107.48-202-202zM309.74 757.74l138.26 138.26v-384h-384l138.26 138.26-202 202 107.48 107.48z" />
|
||||
<glyph unicode="" d="M1024 960v-416l-160 160-192-192-96 96 192 192-160 160zM448 288l-192-192 160-160h-416v416l160-160 192 192z" />
|
||||
<glyph unicode="" d="M448 384v-416l-160 160-192-192-96 96 192 192-160 160zM1024 864l-192-192 160-160h-416v416l160-160 192 192z" />
|
||||
<glyph unicode="" d="M1002.132 645.758l-101.106 101.104c-24.792 24.794-65.37 65.368-90.162 90.164l-101.106 101.104c-24.792 24.794-68.954 29.166-98.13 9.716l-276.438-184.292c-29.176-19.452-40.218-61.028-24.536-92.39l70.486-140.974c2.154-4.306 4.646-8.896 7.39-13.66l-356.53-356.53-32-224h192v64h128v128h128v128h128v71.186c6.396-3.812 12.534-7.216 18.192-10.044l140.97-70.488c31.366-15.682 72.94-4.638 92.39 24.538l184.294 276.44c19.454 29.172 15.078 73.33-9.714 98.126zM150.628 105.374l-45.254 45.254 311.572 311.57 45.254-45.254-311.572-311.57zM917.020 536.236l-45.256-45.256c-12.446-12.444-32.808-12.444-45.254 0l-271.53 271.53c-12.446 12.444-12.446 32.81 0 45.254l45.256 45.256c12.446 12.444 32.808 12.444 45.254 0l271.53-271.53c12.446-12.444 12.446-32.81 0-45.254z" />
|
||||
<glyph unicode="" d="M704 960c-176.73 0-320-143.268-320-320 0-20.026 1.858-39.616 5.376-58.624l-389.376-389.376v-192c0-35.346 28.654-64 64-64h64v64h128v128h128v128h128l83.042 83.042c34.010-12.316 70.696-19.042 108.958-19.042 176.73 0 320 143.268 320 320s-143.27 320-320 320zM799.874 639.874c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
|
||||
<glyph unicode="" d="M1009.996 131.024l-301.544 301.544c-18.668 18.668-49.214 18.668-67.882 0l-22.626-22.626-184 184 302.056 302.058h-320l-142.058-142.058-14.060 14.058h-67.882v-67.882l14.058-14.058-206.058-206.060 160-160 206.058 206.058 184-184-22.626-22.626c-18.668-18.668-18.668-49.214 0-67.882l301.544-301.544c18.668-18.668 49.214-18.668 67.882 0l113.136 113.136c18.67 18.666 18.67 49.214 0.002 67.882z" />
|
||||
<glyph unicode="" d="M256 768l-128 128h-64v-64l128-128zM320 960h64v-128h-64zM576 640h128v-64h-128zM640 832v64h-64l-128-128 64-64zM0 640h128v-64h-128zM320 384h64v-128h-64zM64 384v-64h64l128 128-64 64zM1010 78l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 416l-192 192 64 64 192-192-64-64z" />
|
||||
<glyph unicode="" d="M896 704h-192v128c0 35.2-28.8 64-64 64h-256c-35.2 0-64-28.8-64-64v-128h-192c-70.4 0-128-57.6-128-128v-512c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM384 832h256v-128h-256v128zM768 256h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128z" />
|
||||
<glyph unicode="" d="M1024 384v64h-193.29c-5.862 72.686-31.786 139.026-71.67 192.25h161.944l70.060 280.24-62.090 15.522-57.94-231.76h-174.68c-0.892 0.694-1.796 1.374-2.698 2.056 6.71 19.502 10.362 40.422 10.362 62.194 0.002 105.76-85.958 191.498-191.998 191.498s-192-85.738-192-191.5c0-21.772 3.65-42.692 10.362-62.194-0.9-0.684-1.804-1.362-2.698-2.056h-174.68l-57.94 231.76-62.090-15.522 70.060-280.24h161.944c-39.884-53.222-65.806-119.562-71.668-192.248h-193.29v-64h193.37c3.802-45.664 15.508-88.812 33.638-127.75h-123.992l-70.060-280.238 62.090-15.524 57.94 231.762h112.354c58.692-78.032 147.396-127.75 246.66-127.75s187.966 49.718 246.662 127.75h112.354l57.94-231.762 62.090 15.524-70.060 280.238h-123.992c18.13 38.938 29.836 82.086 33.636 127.75h193.37z" />
|
||||
<glyph unicode="" d="M448 384v448c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448c0 72.034-17.028 140.084-47.236 200.382l-400.764-200.382zM912.764 712.382c-73.552 146.816-225.374 247.618-400.764 247.618v-448l400.764 200.382z" />
|
||||
<glyph unicode="" d="M128 64h896v-128h-1024v1024h128zM288 128c-53.020 0-96 42.98-96 96s42.98 96 96 96c2.828 0 5.622-0.148 8.388-0.386l103.192 171.986c-9.84 15.070-15.58 33.062-15.58 52.402 0 53.020 42.98 96 96 96 53.020 0 96-42.98 96-96 0-19.342-5.74-37.332-15.58-52.402l103.192-171.986c2.766 0.238 5.56 0.386 8.388 0.386 2.136 0 4.248-0.094 6.35-0.23l170.356 298.122c-10.536 15.408-16.706 34.036-16.706 54.11 0 53.020 42.98 96 96 96 53.020 0 96-42.98 96-96 0-53.020-42.98-96-96-96-2.14 0-4.248 0.094-6.35 0.232l-170.356-298.124c10.536-15.406 16.706-34.036 16.706-54.11 0-53.020-42.98-96-96-96-53.020 0-96 42.98-96 96 0 19.34 5.74 37.332 15.578 52.402l-103.19 171.984c-2.766-0.238-5.56-0.386-8.388-0.386s-5.622 0.146-8.388 0.386l-103.192-171.986c9.84-15.068 15.58-33.060 15.58-52.4 0-53.020-42.98-96-96-96z" />
|
||||
<glyph unicode="" d="M0 128h1024v-128h-1024zM128 384h128v-192h-128zM320 640h128v-448h-128zM512 448h128v-256h-128zM704 832h128v-640h-128z" />
|
||||
<glyph unicode="" d="M288 576h-192c-17.6 0-32-14.4-32-32v-576c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v576c0 17.6-14.4 32-32 32zM288 0h-192v256h192v-256zM608 704h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM608 0h-192v320h192v-320zM928 832h-192c-17.6 0-32-14.4-32-32v-832c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v832c0 17.6-14.4 32-32 32zM928 0h-192v384h192v-384z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384zM448 704c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM448 256v-64h128v64l-64 320z" />
|
||||
<glyph unicode="" d="M1010.174 44.25l-548.634 499.458 25.534 25.598c20.894 20.954 32.188 48.030 33.918 75.61 1.002 0.45 2.002 0.912 2.958 1.442l102.99 64.402c13.934 16.392 12.916 42.268-2.284 57.502l-179.12 179.608c-15.19 15.234-40.998 16.262-57.344 2.284l-64.236-103.268c-0.526-0.966-0.99-1.966-1.44-2.974-27.502-1.736-54.5-13.056-75.398-34.006l-97.428-97.702c-20.898-20.956-32.184-48.026-33.918-75.604-1.004-0.45-2.004-0.916-2.964-1.446l-102.986-64.406c-13.942-16.39-12.916-42.264 2.276-57.496l179.12-179.604c15.194-15.238 40.996-16.262 57.35-2.286l64.228 103.27c0.528 0.958 0.988 1.96 1.442 2.966 27.502 1.738 54.504 13.050 75.398 34.004l28.292 28.372 498.122-550.114c14.436-15.944 36.7-18.518 49.474-5.712l50.356 50.488c12.764 12.808 10.196 35.132-5.706 49.614z" />
|
||||
<glyph unicode="" d="M321.008-64c-68.246 142.008-31.902 223.378 20.55 300.044 57.44 83.956 72.244 167.066 72.244 167.066 0 0 45.154-58.7 27.092-150.508 79.772 88.8 94.824 230.28 82.782 284.464 180.314-126.012 257.376-398.856 153.522-601.066 552.372 312.532 137.398 780.172 65.154 832.85 24.082-52.676 28.648-141.85-20-185.126-82.352 312.276-285.972 376.276-285.972 376.276 24.082-161.044-87.296-337.144-194.696-468.73-3.774 64.216-7.782 108.528-41.55 169.98-7.58-116.656-96.732-211.748-120.874-328.628-32.702-158.286 24.496-274.18 241.748-396.622z" />
|
||||
<glyph unicode="" d="M956.29 155.518l-316.29 527.024v213.458h32c17.6 0 32 14.4 32 32s-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32s14.4-32 32-32h32v-213.458l-316.288-527.024c-72.442-120.734-16.512-219.518 124.288-219.518h640c140.8 0 196.73 98.784 124.29 219.518zM241.038 320l206.962 344.938v231.062h128v-231.062l206.964-344.938h-541.926z" />
|
||||
<glyph unicode="" d="M859.502 933.458l-4.594 26.542h-246.908l6.602-37.542c22.346-127.1 74.322-436.536 74.322-564.458 0-98.15-79.368-178-176.924-178-97.556 0-176.922 79.85-176.922 178 0 127.926 51.976 437.36 74.324 564.458l6.598 37.542h-246.908l-4.594-26.542c-27.076-156.422-72.498-439.186-72.498-575.458 0-232.692 188.412-422 420-422 231.588 0 420 189.308 420 422 0 136.266-45.422 419.032-72.498 575.458zM512 0c-196.298 0-356 160.598-356 358 0 80.772 16.92 217.076 36.166 346h116.346c-19.994-131.234-37.434-268.056-37.434-346 0-133.44 108.078-242 240.922-242 132.846 0 240.924 108.56 240.924 242 0 77.942-17.442 214.764-37.436 346h116.346c19.246-128.926 36.166-265.232 36.166-346 0-197.402-159.702-358-356-358z" />
|
||||
<glyph unicode="" d="M192-64h640l64 704h-768zM640 832v128h-256v-128h-320v-192l64 64h768l64-64v192h-320zM576 832h-128v64h128v-64z" />
|
||||
<glyph unicode="" d="M800 832h-576c-53.020 0-96-42.98-96-96v-32h768v32c0 53.020-42.98 96-96 96zM632.32 896l14.116-101h-268.872l14.114 101h240.642M640 960h-256c-26.4 0-50.99-21.392-54.642-47.538l-18.714-133.924c-3.654-26.146 14.956-47.538 41.356-47.538h320c26.4 0 45.010 21.392 41.358 47.538l-18.714 133.924c-3.654 26.146-28.244 47.538-54.644 47.538v0zM816 640h-608c-35.2 0-61.392-28.682-58.206-63.738l52.412-576.526c3.186-35.054 34.594-63.736 69.794-63.736h480c35.2 0 66.608 28.682 69.794 63.736l52.41 576.526c3.188 35.056-23.004 63.738-58.204 63.738zM384 64h-96l-32 448h128v-448zM576 64h-128v448h128v-448zM736 64h-96v448h128l-32-448z" />
|
||||
<glyph unicode="" d="M960 704h-256v64c0 35.2-28.8 64-64 64h-256c-35.204 0-64-28.8-64-64v-64h-256c-35.2 0-64-28.8-64-64v-576c0-35.202 28.796-64 64-64h896c35.2 0 64 28.798 64 64v576c0 35.2-28.8 64-64 64zM384 767.884c0.034 0.040 0.074 0.082 0.114 0.116h255.772c0.042-0.034 0.082-0.076 0.118-0.116v-63.884h-256.004v63.884zM960 448h-128v-96c0-17.602-14.4-32-32-32h-64c-17.604 0-32 14.398-32 32v96h-384v-96c0-17.602-14.4-32-32-32h-64c-17.602 0-32 14.398-32 32v96h-128v64h896v-64z" />
|
||||
<glyph unicode="" d="M448 165.49l-205.254 237.254 58.508 58.51 146.746-114.744 274.744 242.744 58.512-58.508zM831.772 832c0.078-0.066 0.162-0.15 0.228-0.23v-767.542c-0.066-0.078-0.15-0.162-0.228-0.228h-639.544c-0.080 0.066-0.162 0.15-0.228 0.228v767.544c0.066 0.080 0.15 0.162 0.23 0.228h-128.23v-768c0-70.4 57.6-128 128-128h640c70.4 0 128 57.6 128 128v768h-128.228zM640 832v64c0 35.346-28.654 64-64 64h-128c-35.346 0-64-28.654-64-64v-64h-128v-128h512v128h-128zM576 832h-128v64h128v-64z" />
|
||||
<glyph unicode="" d="M0 960h256v-256h-256zM384 896h640v-128h-640zM0 576h256v-256h-256zM384 512h640v-128h-640zM0 192h256v-256h-256zM384 128h640v-128h-640z" />
|
||||
<glyph unicode="" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128z" />
|
||||
<glyph unicode="" d="M384 128h640v-128h-640zM384 512h640v-128h-640zM384 896h640v-128h-640zM192 960v-256h-64v192h-64v64zM128 434v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 256v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
|
||||
<glyph unicode="" d="M0 576h704v-128h-704v128zM0 768h704v-128h-704v128zM0 384h704v-128h-704v128zM0 192h704v-128h-704v128zM768 384l128-192 128 192h-256zM1024 448l-128 192-128-192h256z" />
|
||||
<glyph unicode="" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
|
||||
<glyph unicode="" d="M976 192h-16v208c0 61.756-50.242 112-112 112h-272v128h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-128h-272c-61.756 0-112-50.244-112-112v-208h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48zM192 0h-128v128h128v-128zM576 0h-128v128h128v-128zM448 704v128h128v-128h-128zM960 0h-128v128h128v-128z" />
|
||||
<glyph unicode="" d="M1024 302.458c0 82.090-56.678 150.9-132.996 169.48-3.242 128.7-108.458 232.062-237.862 232.062-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.874-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848l656.262 0.012c96.138 0.184 174.008 78.212 174.008 174.446z" />
|
||||
<glyph unicode="" d="M832 787.694c76.466 0 145.092 41.622 192 73.106v-595.69c-46.908-31.486-115.534-73.11-192-73.11s-145.092 22.67-192 54.156c-46.908 31.48-115.534 54.15-192 54.15-76.466 0-145.090-38.916-192-70.396v595.69c46.91 31.484 115.534 70.4 192 70.4s145.092-22.668 192-54.152c46.908-31.484 115.534-54.154 192-54.154zM128 960c35.346 0 64-28.654 64-64v-960h-128v960c0 35.346 28.654 64 64 64z" />
|
||||
<glyph unicode="" d="M697.832 632.952l-64.952 64.922-324.81-324.742c-53.814-53.792-53.814-141.048 0-194.844 53.804-53.792 141.060-53.792 194.874 0l389.772 389.708c89.714 89.662 89.714 235.062 0 324.726-89.666 89.704-235.112 89.704-324.782 0l-409.23-409.178c-0.29-0.304-0.612-0.576-0.876-0.846-125.102-125.096-125.102-327.856 0-452.906 125.054-125.056 327.868-125.056 452.988 0 0.274 0.274 0.516 0.568 0.82 0.876l0.032-0.034 279.332 279.292-64.986 64.92-279.33-279.262c-0.296-0.268-0.564-0.57-0.846-0.844-89.074-89.058-233.98-89.058-323.076 0-89.062 89.042-89.062 233.922 0 322.978 0.304 0.304 0.604 0.582 0.888 0.846l-0.046 0.060 409.28 409.166c53.712 53.738 141.144 53.738 194.886 0 53.712-53.734 53.712-141.148 0-194.84l-389.772-389.7c-17.936-17.922-47.054-17.922-64.972 0-17.894 17.886-17.894 47.032 0 64.92l324.806 324.782z" />
|
||||
<glyph unicode="" d="M512 768c-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.314 0 416.878 130.042 512 320-95.116 189.958-288.686 320-512 320zM764.45 598.296c60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.298-75.594-48.216-162.89-73.702-252.448-73.702-89.56 0-176.856 25.486-252.45 73.704-60.16 38.372-111.14 89.772-149.434 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.858 7.3-9.958-27.328-15.408-56.822-15.408-87.596 0-141.384 114.616-256 256-256s256 114.616 256 256c0 30.774-5.45 60.268-15.408 87.598 3.98-2.378 7.938-4.802 11.858-7.302zM512 550c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96z" />
|
||||
<glyph unicode="" d="M839.322 663.584c77.644-55.030 141.37-129.092 184.678-215.584-95.122-189.958-288.686-320-512-320-62.566 0-122.792 10.212-179.178 29.084l77.956 77.956c33.058-7.3 66.972-11.040 101.222-11.040 89.558 0 176.854 25.486 252.446 73.704 60.162 38.376 111.144 89.776 149.436 150.298-37.052 58.566-86.014 108.55-143.65 146.494l69.090 69.088zM512 262c-22.724 0-44.752 2.976-65.728 8.534l313.186 313.184c5.562-20.972 8.542-42.994 8.542-65.718 0-141.384-114.616-256-256-256zM960 960h-53.738l-219.612-219.612c-55.076 17.924-113.754 27.612-174.65 27.612-223.318 0-416.882-130.042-512-320 42.658-85.192 105.128-158.308 181.194-213.068l-181.194-181.194v-53.738h53.738l906.262 906.262v53.738zM416 646c48.044 0 87.846-35.294 94.892-81.37l-109.524-109.524c-46.074 7.048-81.368 46.85-81.368 94.894 0 53.020 42.98 96 96 96zM110.116 448c38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.858 7.3-9.958-27.328-15.408-56.822-15.408-87.596 0-58.524 19.65-112.448 52.698-155.562l-58.55-58.55c-56.072 37.642-103.754 86.772-140.032 144.112z" />
|
||||
<glyph unicode="" d="M512 640c-209.368 0-395.244-100.556-512-256 116.756-155.446 302.632-256 512-256 209.368 0 395.244 100.554 512 256-116.756 155.444-302.632 256-512 256zM448 512c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM773.616 254.704c-39.648-20.258-81.652-35.862-124.846-46.376-44.488-10.836-90.502-16.328-136.77-16.328-46.266 0-92.282 5.492-136.768 16.324-43.194 10.518-85.198 26.122-124.846 46.376-63.020 32.202-120.222 76.41-167.64 129.298 47.418 52.888 104.62 97.1 167.64 129.298 32.336 16.522 66.242 29.946 101.082 40.040-19.888-30.242-31.468-66.434-31.468-105.336 0-106.040 85.962-192 192-192 106.038 0 192 85.96 192 192 0 38.902-11.582 75.094-31.466 105.34 34.838-10.096 68.744-23.52 101.082-40.042 63.022-32.198 120.218-76.408 167.638-129.298-47.42-52.886-104.618-97.1-167.638-129.296zM860.918 716.278c-108.72 55.554-226.112 83.722-348.918 83.722-122.806 0-240.198-28.168-348.918-83.722-58.772-30.032-113.732-67.904-163.082-112.076v-109.206c55.338 58.566 120.694 107.754 192.194 144.29 99.62 50.904 207.218 76.714 319.806 76.714s220.186-25.81 319.804-76.716c71.502-36.536 136.858-85.724 192.196-144.29v109.206c-49.35 44.174-104.308 82.046-163.082 112.078z" />
|
||||
<glyph unicode="" d="M192 960v-1024l320 320 320-320v1024z" />
|
||||
<glyph unicode="" d="M256 832v-896l320 320 320-320v896zM768 960h-640v-896l64 64v768h576z" />
|
||||
<glyph unicode="" d="M512 538c-49.626 0-90-40.374-90-90s40.374-90 90-90c49.626 0 90 40.374 90 90 0 49.626-40.374 90-90 90zM512 640v0c106.040 0 192-85.96 192-192s-85.96-192-192-192c-106.040 0-192 85.96-192 192 0 106.040 85.96 192 192 192zM877.254 173.254c24.996-24.994 24.994-65.516 0-90.508-24.994-24.996-65.514-24.996-90.508 0l-64 64c-24.996 24.994-24.996 65.514 0 90.508 24.992 24.994 65.514 24.996 90.508 0l64-64zM301.254 749.254c24.996-24.994 24.994-65.516 0-90.508-24.994-24.996-65.514-24.996-90.508 0l-64 64c-24.996 24.994-24.996 65.514 0 90.508 24.992 24.994 65.514 24.996 90.508 0l64-64zM786.744 813.254c24.994 24.996 65.516 24.994 90.508 0 24.996-24.994 24.996-65.514 0.002-90.508l-64-64c-24.996-24.996-65.516-24.996-90.508 0-24.996 24.992-24.996 65.514 0 90.508l63.998 64zM210.746 237.254c24.994 24.996 65.514 24.994 90.508 0 24.996-24.994 24.996-65.514 0-90.508l-64-64c-24.994-24.996-65.514-24.996-90.508 0-24.994 24.992-24.996 65.514 0 90.508l64 64zM512 896c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 192c35.346 0 64-28.652 64-64v-64c0-35.348-28.654-64-64-64s-64 28.652-64 64v64c0 35.348 28.654 64 64 64zM64 448c0 35.346 28.654 64 64 64h64c35.346 0 64-28.654 64-64 0-35.348-28.654-64-64-64h-64c-35.346 0-64 28.652-64 64zM768 448c0 35.346 28.652 64 64 64h64c35.348 0 64-28.654 64-64s-28.652-64-64-64h-64c-35.348 0-64 28.654-64 64z" />
|
||||
<glyph unicode="" d="M96 512c-73 0-32 192 32 192-32 0 0 160 64 160 0 64 64 96 128 96 270.352 0 175.264-67.65 448-96v-512c-240.922-72.268-480-253.424-480-416-53 0-192 64 0 384 0 0-160 0-192 0-96 0-64 192 0 192zM832 352v512h-64v32h128c35.2 0 64-43.2 64-96v-384c0-52.8-28.8-96-64-96h-128v32h64z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM512 361.24c115.95 0 226.23 30.806 320 84.92-14.574-178.438-153.128-318.16-320-318.16-166.868 0-305.422 139.872-320 318.304 93.77-54.112 204.050-85.064 320-85.064zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.348 0 64-42.98 64-96s-28.652-96-64-96-64 42.98-64 96 28.652 96 64 96zM320 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM512 64c-166.868 0-305.422 139.872-320 318.304 93.77-54.114 204.050-85.064 320-85.064 115.95 0 226.23 30.806 320 84.92-14.574-178.438-153.128-318.16-320-318.16z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM704.098 332.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM768 384v-64h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM768 320h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512v-64zM704 576c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM319.902 179.26l-82.328 49.396c55.962 93.070 157.916 155.344 274.426 155.344 116.508 0 218.462-62.274 274.426-155.344l-82.328-49.396c-39.174 65.148-110.542 108.74-192.098 108.74-81.558 0-152.924-43.592-192.098-108.74z" />
|
||||
<glyph unicode="" d="M639.996 512c-35.346 0-64 28.654-63.998 64.002 0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.146-6.14-34.518-23.284-38.806-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64zM280.242 640.956c-17.144 4.286-27.568 21.66-23.282 38.804 4.286 17.146 21.66 27.572 38.806 23.284 1.444-0.362 35.806-9.050 70.548-26.422 36.382-18.19 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.316 0.098-3.484 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64 0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.312 16.9-56.936 21.35zM512 224c81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74zM1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
|
||||
<glyph unicode="" d="M1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284 4.286-17.146-6.138-34.518-23.284-38.806-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74 81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 256c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96-35.346 0-64 42.981-64 96z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96zM512 128c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM704 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM726.106 320h64.864c9.246-72.506-32.452-144.53-103.958-170.56-82.904-30.176-174.9 12.716-205.080 95.616-18.108 49.744-73.306 75.482-123.048 57.372-45.562-16.588-70.956-64.298-60.988-110.424h-64.86c-9.242 72.508 32.45 144.528 103.956 170.56 82.904 30.178 174.902-12.716 205.082-95.614 18.104-49.748 73.306-75.482 123.044-57.372 45.562 16.584 70.956 64.298 60.988 110.422z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM687.010 149.44c-82.902-30.18-174.9 12.712-205.080 95.614-18.108 49.742-73.306 75.478-123.048 57.372-45.562-16.588-70.958-64.296-60.988-110.424h-64.86c-9.244 72.508 32.45 144.532 103.956 170.56 82.904 30.18 174.902-12.712 205.082-95.614 18.108-49.742 73.306-75.476 123.046-57.37 45.562 16.584 70.958 64.294 60.988 110.422h64.864c9.24-72.506-32.454-144.532-103.96-170.56z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM640 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM384 256h256v-64h-256v64z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM640 192h-256v64h256v-64zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM448 704h128v-128h-128zM640 192h-256v64h64v192h-64v64h192v-256h64z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM448 768h128v-128h-128v128zM640 128h-256v64h64v256h-64v64h192v-320h64v-64z" />
|
||||
<glyph unicode="" d="M0 448c0-282.77 229.23-512 512-512 282.772 0 512 229.23 512 512s-229.228 512-512 512c-282.77 0-512-229.23-512-512zM896 448c0-73.236-20.512-141.68-56.088-199.912l-527.822 527.824c58.23 35.578 126.674 56.088 199.91 56.088 212.076 0 384-171.922 384-384zM128 448c0 73.236 20.512 141.678 56.090 199.912l527.822-527.824c-58.234-35.578-126.676-56.088-199.912-56.088-212.076 0-384 171.922-384 384z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM768 613.49l-165.488-165.49 165.488-165.488v-90.512h-90.512l-165.488 165.488-165.49-165.488h-90.51v90.512l165.49 165.488-165.49 165.49v90.51h90.51l165.49-165.49 165.488 165.49h90.512v-90.51z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM416 128l-212 276 94 98 118-150 370 302 46-46-416-480z" />
|
||||
<glyph unicode="" d="M1024 224l-288 736h-448l-288-288v-448l288-288h448l288 288v448l-288 288zM576 128h-128v128h128v-128zM576 384h-128v384h128v-384z" />
|
||||
<glyph unicode="" d="M1014.662 137.34c-0.004 0.004-0.008 0.008-0.012 0.010l-310.644 310.65 310.644 310.65c0.004 0.004 0.008 0.006 0.012 0.010 3.344 3.346 5.762 7.254 7.312 11.416 4.246 11.376 1.824 24.682-7.324 33.83l-146.746 146.746c-9.148 9.146-22.45 11.566-33.828 7.32-4.16-1.55-8.070-3.968-11.418-7.31 0-0.004-0.004-0.006-0.008-0.010l-310.648-310.652-310.648 310.65c-0.004 0.004-0.006 0.006-0.010 0.010-3.346 3.342-7.254 5.76-11.414 7.31-11.38 4.248-24.682 1.826-33.83-7.32l-146.748-146.748c-9.148-9.148-11.568-22.452-7.322-33.828 1.552-4.16 3.97-8.072 7.312-11.416 0.004-0.002 0.006-0.006 0.010-0.010l310.65-310.648-310.65-310.652c-0.002-0.004-0.006-0.006-0.008-0.010-3.342-3.346-5.76-7.254-7.314-11.414-4.248-11.376-1.826-24.682 7.322-33.83l146.748-146.746c9.15-9.148 22.452-11.568 33.83-7.322 4.16 1.552 8.070 3.97 11.416 7.312 0.002 0.004 0.006 0.006 0.010 0.010l310.648 310.65 310.648-310.65c0.004-0.002 0.008-0.006 0.012-0.008 3.348-3.344 7.254-5.762 11.414-7.314 11.378-4.246 24.684-1.826 33.828 7.322l146.746 146.748c9.148 9.148 11.57 22.454 7.324 33.83-1.552 4.16-3.97 8.068-7.314 11.414z" />
|
||||
<glyph unicode="" d="M864 832l-480-480-224 224-160-160 384-384 640 640z" />
|
||||
<glyph unicode="" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704 288l-224 160 224 160zM448 288l-224 160 224 160z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 608l224-160-224-160zM576 608l224-160-224-160z" />
|
||||
<glyph unicode="" d="M192 832l640-384-640-384z" />
|
||||
<glyph unicode="" d="M128 832h320v-768h-320zM576 832h320v-768h-320z" />
|
||||
<glyph unicode="" d="M128 832h768v-768h-768z" />
|
||||
<glyph unicode="" d="M576 800v-320l320 320v-704l-320 320v-320l-352 352z" />
|
||||
<glyph unicode="" d="M512 96v320l-320-320v704l320-320v320l352-352z" />
|
||||
<glyph unicode="" d="M128 64v768h128v-352l320 320v-320l320 320v-704l-320 320v-320l-320 320v-352z" />
|
||||
<glyph unicode="" d="M428.164 896.082c11.976 0 19.836-11.878 19.838-34.082v-828c0-22.206-7.856-34.082-19.836-34.082-7.604 0-16.868 4.788-26.834 14.752l-241.332 241.33h-160v384h160l241.332 241.332c9.966 9.966 19.228 14.75 26.832 14.75zM1024 384h-192v-192h-128v192h-192v128h192v192h128v-192h192z" />
|
||||
<glyph unicode="" d="M428.164 896.082c11.976 0 19.836-11.878 19.838-34.082v-828c0-22.206-7.856-34.082-19.836-34.082-7.604 0-16.868 4.788-26.834 14.752l-241.332 241.33h-160v384h160l241.332 241.332c9.966 9.966 19.228 14.75 26.832 14.75zM512 512h512v-128h-512z" />
|
||||
<glyph unicode="" d="M128 640h640v-192l256 256-256 256v-192h-768v-384h128zM896 256h-640v192l-256-256 256-256v192h768v384h-128z" />
|
||||
<glyph unicode="" d="M874.022 810.020c-92.652 92.656-220.636 149.98-362.022 149.98-219.488 0-406.69-138.128-479.498-332.188l119.876-44.954c54.604 145.546 195.006 249.142 359.622 249.142 106.040 0 202.020-43 271.506-112.494l-143.506-143.506h384v384l-149.978-149.98zM512 64c-106.040 0-202.026 42.992-271.512 112.488l143.512 143.512h-384v-384l149.994 149.994c92.646-92.662 220.618-149.994 362.006-149.994 219.49 0 406.692 138.128 479.5 332.188l-119.876 44.954c-54.604-145.546-195.006-249.142-359.624-249.142z" />
|
||||
<glyph unicode="" d="M320 320v192h192l-256 256-256-256h192v-320h384l-128 128zM832 384v320h-384l128-128h128v-192h-192l256-256 256 256z" />
|
||||
<glyph unicode="" d="M1024 704l-256 256v-192c-130.772 0-230.752-31.208-305.65-95.408-5.25-4.5-10.284-9.1-15.162-13.774 27.52-38.164 48.716-77.516 67.772-115.090 48.322 58.402 118.054 96.272 253.040 96.272v-384c-216.446 0-265.126 97.36-326.756 220.622-34.306 68.612-69.78 139.56-135.592 195.97-74.9 64.2-174.88 95.408-305.652 95.408v-128c216.446 0 265.126-97.36 326.756-220.622 34.306-68.612 69.78-139.56 135.592-195.97 74.9-64.2 174.882-95.408 305.652-95.408v-192l256 256-256 256 256 256zM0 256v-128c130.772 0 230.75 31.208 305.65 95.408 5.25 4.498 10.284 9.1 15.162 13.776-27.52 38.162-48.718 77.516-67.772 115.090-48.32-58.402-118.052-96.274-253.040-96.274z" />
|
||||
<glyph unicode="" d="M0 192l256 256 512-512 256 256-512 512 255.998 256h-767.998z" />
|
||||
<glyph unicode="" d="M512.002 960l-512.002-512h320v-511.998l384-0.002v512h320z" />
|
||||
<glyph unicode="" d="M621.254 82.746l320 320c24.994 24.992 24.994 65.516 0 90.51l-320 320c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.516 0-90.51l210.746-210.746h-613.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h613.49l-210.746-210.746c-12.496-12.496-18.744-28.876-18.744-45.254s6.248-32.758 18.744-45.254c24.994-24.994 65.516-24.994 90.51 0z" />
|
||||
<glyph unicode="" d="M896 512c0 35.348-28.652 64-64 64-35.346 0-64-28.652-64-64v-229.492l-530.746 530.748c-24.992 24.992-65.516 24.992-90.508 0-12.498-12.498-18.746-28.878-18.746-45.256s6.248-32.758 18.746-45.254l530.746-530.746h-229.492c-35.346 0-64-28.654-64-64s28.654-64 64-64h448v448z" />
|
||||
<glyph unicode="" d="M146.746 338.746l320-320c24.992-24.994 65.516-24.994 90.51 0l320 320c24.992 24.994 24.992 65.516 0 90.51-24.994 24.994-65.516 24.994-90.51 0l-210.746-210.746v613.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-613.49l-210.746 210.746c-12.496 12.496-28.876 18.744-45.254 18.744s-32.758-6.248-45.254-18.744c-24.994-24.994-24.994-65.516 0-90.51z" />
|
||||
<glyph unicode="" d="M576 64c35.348 0 64 28.652 64 64 0 35.346-28.652 64-64 64h-229.492l530.748 530.746c24.992 24.992 24.992 65.516 0 90.508-12.498 12.498-28.878 18.746-45.256 18.746s-32.758-6.248-45.254-18.746l-530.746-530.746v229.492c0 35.346-28.654 64-64 64s-64-28.654-64-64v-448h448z" />
|
||||
<glyph unicode="" d="M402.746 813.254l-320-320c-24.994-24.992-24.994-65.516 0-90.508l320-320c24.994-24.992 65.516-24.992 90.51 0 24.996 24.992 24.996 65.516 0 90.508l-210.748 210.746h613.492c35.346 0 64 28.652 64 64 0 35.346-28.654 64-64 64h-613.492l210.746 210.746c12.496 12.496 18.746 28.876 18.746 45.254s-6.248 32.758-18.744 45.254c-24.996 24.994-65.516 24.994-90.51 0z" />
|
||||
<glyph unicode="" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM640 704c35.346 0 64-28.654 64-64s-28.654-64-64-64h-165.488l274.742-274.744c24.994-24.994 24.994-65.518 0-90.512-12.496-12.496-28.876-18.744-45.254-18.744s-32.758 6.248-45.254 18.744l-274.746 274.746v-165.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v384h384z" />
|
||||
<glyph unicode="" d="M1024 448c0-282.77-229.23-512-512-512s-512 229.23-512 512 229.23 512 512 512 512-229.23 512-512zM96 448c0-229.75 186.25-416 416-416s416 186.25 416 416-186.25 416-416 416-416-186.25-416-416zM557.254 749.256l256-256.002c24.994-24.992 24.994-65.514 0-90.508s-65.516-24.994-90.51 0l-146.744 146.744v-357.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v357.49l-146.744-146.746c-24.994-24.994-65.518-24.994-90.512 0-12.496 12.498-18.744 28.878-18.744 45.256s6.248 32.758 18.744 45.254l256 256.002c24.994 24.992 65.518 24.992 90.51 0z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM384 704c-35.346 0-64-28.654-64-64s28.654-64 64-64h165.488l-274.742-274.744c-24.994-24.994-24.994-65.518 0-90.512 12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.744l274.746 274.746v-165.49c0-35.346 28.654-64 64-64s64 28.654 64 64v384h-384z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384zM320 448c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192-106.039 0-192 85.961-192 192z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384z" />
|
||||
<glyph unicode="" d="M832 704l192 192-64 64-192-192h-448v192h-128v-192h-192v-128h192v-512h512v-192h128v192h192v128h-192v448zM320 640h320l-320-320v320zM384 256l320 320v-320h-320z" />
|
||||
<glyph unicode="" d="M890.774 250.846c-45.654 45.556-103.728 69.072-157.946 69.072h-29.112l-63.904 64.008 255.62 256.038c63.904 64.010 63.904 192.028 0 256.038l-383.43-384.056-383.432 384.054c-63.904-64.008-63.904-192.028 0-256.038l255.622-256.034-63.906-64.008h-29.114c-54.22 0-112.292-23.518-157.948-69.076-81.622-81.442-92.65-202.484-24.63-270.35 29.97-29.902 70.288-44.494 112.996-44.494 54.216 0 112.29 23.514 157.946 69.072 53.584 53.464 76.742 124 67.084 185.348l65.384 65.488 65.376-65.488c-9.656-61.348 13.506-131.882 67.084-185.348 45.662-45.558 103.732-69.072 157.948-69.072 42.708 0 83.024 14.592 112.994 44.496 68.020 67.866 56.988 188.908-24.632 270.35zM353.024 114.462c-7.698-17.882-19.010-34.346-33.626-48.926-14.636-14.604-31.172-25.918-49.148-33.624-16.132-6.916-32.96-10.568-48.662-10.568-15.146 0-36.612 3.402-52.862 19.612-16.136 16.104-19.52 37.318-19.52 52.288 0 15.542 3.642 32.21 10.526 48.212 7.7 17.884 19.014 34.346 33.626 48.926 14.634 14.606 31.172 25.914 49.15 33.624 16.134 6.914 32.96 10.568 48.664 10.568 15.146 0 36.612-3.4 52.858-19.614 16.134-16.098 19.522-37.316 19.522-52.284 0.002-15.542-3.638-32.216-10.528-48.214zM512.004 293.404c-49.914 0-90.376 40.532-90.376 90.526 0 49.992 40.462 90.52 90.376 90.52s90.372-40.528 90.372-90.52c0-49.998-40.46-90.526-90.372-90.526zM855.272 40.958c-16.248-16.208-37.712-19.612-52.86-19.612-15.704 0-32.53 3.652-48.666 10.568-17.972 7.706-34.508 19.020-49.142 33.624-14.614 14.58-25.926 31.042-33.626 48.926-6.886 15.998-10.526 32.672-10.526 48.212 0 14.966 3.384 36.188 19.52 52.286 16.246 16.208 37.712 19.614 52.86 19.614 15.7 0 32.53-3.654 48.66-10.568 17.978-7.708 34.516-19.018 49.15-33.624 14.61-14.58 25.924-31.042 33.626-48.926 6.884-15.998 10.526-32.67 10.526-48.212-0.002-14.97-3.39-36.186-19.522-52.288z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-71.634-512-160v-96l384-384v-320c0-35.346 57.306-64 128-64 70.692 0 128 28.654 128 64v320l384 384v96c0 88.366-229.23 160-512 160zM94.384 821.176c23.944 13.658 57.582 26.62 97.278 37.488 87.944 24.076 201.708 37.336 320.338 37.336 118.628 0 232.394-13.26 320.338-37.336 39.696-10.868 73.334-23.83 97.28-37.488 15.792-9.006 24.324-16.624 28.296-21.176-3.972-4.552-12.506-12.168-28.296-21.176-23.946-13.658-57.584-26.62-97.28-37.488-87.942-24.076-201.708-37.336-320.338-37.336-118.63 0-232.394 13.26-320.338 37.336-39.696 10.868-73.334 23.83-97.278 37.488-15.792 9.008-24.324 16.624-28.298 21.176 3.974 4.552 12.506 12.168 28.298 21.176z" />
|
||||
<glyph unicode="" d="M0 832l384-384v-384l256 64v320l384 384z" />
|
||||
<glyph unicode="" d="M799.596 943.792c-90.526 0-148.62 16.208-241.848 16.208-301.284 0-441.792-171.584-441.792-345.872 0-102.678 48.64-136.458 144.564-136.458-6.758 14.864-18.914 31.080-18.914 104.034 0 204.010 77.006 263.458 175.636 267.51 0 0-80.918-793.374-315.778-888.542v-24.672h316.594l108.026 512h197.844l44.072 128h-214.908l51.944 246.19c59.446-12.156 117.542-24.316 167.532-24.316 62.148 0 118.894 18.914 149.968 162.126-37.826-12.16-78.362-16.208-122.94-16.208z" />
|
||||
<glyph unicode="" d="M896 192h128l-160-192-160 192h128v512h-128l160 192 160-192h-128zM640 896v-256l-64 128h-192v-704h128v-64h-384v64h128v704h-192l-64-128v256z" />
|
||||
<glyph unicode="" d="M384 768h128v-64h-128zM576 768h128v-64h-128zM896 768v-256h-192v64h128v128h-64v64zM320 576h128v-64h-128zM512 576h128v-64h-128zM192 704v-128h64v-64h-128v256h192v-64zM384 384h128v-64h-128zM576 384h128v-64h-128zM896 384v-256h-192v64h128v128h-64v64zM320 192h128v-64h-128zM512 192h128v-64h-128zM192 320v-128h64v-64h-128v256h192v-64zM960 896h-896v-896h896v896zM1024 960v0-1024h-1024v1024h1024z" />
|
||||
<glyph unicode="" d="M384 960h512v-128h-128v-896h-128v896h-128v-896h-128v512c-141.384 0-256 114.616-256 256s114.616 256 256 256z" />
|
||||
<glyph unicode="" d="M512 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM0 256l256 256-256 256z" />
|
||||
<glyph unicode="" d="M256 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM1024 768l-256-256 256-256z" />
|
||||
<glyph unicode="" d="M0 768h1024v-64h-1024zM0 640h704v-64h-704zM0 512h1024v-64h-1024zM0 384h704v-64h-704zM0 256h1024v-64h-1024zM0 128h704v-64h-704z" />
|
||||
<glyph unicode="" d="M0 768h1024v-64h-1024zM192 640h640v-64h-640zM192 384h640v-64h-640zM192 128h640v-64h-640zM0 512h1024v-64h-1024zM0 256h1024v-64h-1024z" />
|
||||
<glyph unicode="" d="M0 768h1024v-64h-1024zM320 640h704v-64h-704zM0 512h1024v-64h-1024zM320 384h704v-64h-704zM0 256h1024v-64h-1024zM320 128h704v-64h-704z" />
|
||||
<glyph unicode="" d="M0 640h1024v-64h-1024zM0 384h1024v-64h-1024zM0 128h1024v-64h-1024zM0 768h1024v-64h-1024zM0 512h1024v-64h-1024zM0 256h1024v-64h-1024z" />
|
||||
<glyph unicode="" d="M0 896v-896h1024v896h-1024zM960 64h-896v768h896v-768zM896 768h-768v-640h768v640zM448 448h-64v-64h-64v-64h-64v64h64v64h64v64h-64v64h-64v64h64v-64h64v-64h64v-64zM704 320h-192v64h192v-64z" />
|
||||
<glyph unicode="" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
|
||||
<glyph unicode="" d="M853.31 960h-682.62c-93.88 0-170.69-76.784-170.69-170.658v-682.656c0-93.876 76.81-170.686 170.69-170.686h682.622c93.938 0 170.688 76.81 170.688 170.686v682.656c0 93.874-76.75 170.658-170.69 170.658zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.94-185.598-185.6c-1.444 5.338-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.206l182.118 182.118 90.422-105.496 90.424 105.494 182.116-182.118c-5.34-1.442-10.886-2.204-16.54-2.204zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.598 185.598 187.664 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
|
||||
<glyph unicode="" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM853.342 832c7.988 0 15.546-2.334 22.020-6.342l-363.362-300.404-363.354 300.4c6.478 4.010 14.044 6.346 22.040 6.346h682.656zM170.686 64c-1.924 0-3.82 0.146-5.684 0.408l225.626 312.966-29.256 29.254-233.372-233.37v611.138l384-464.396 384 464.394v-611.136l-233.372 233.37-29.254-29.254 225.628-312.968c-1.858-0.26-3.746-0.406-5.662-0.406h-682.654z" />
|
||||
<glyph unicode="" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM182.628 73.374l-77.256 77.254 256 256 29.256-29.254-208-304zM153.372 761.372l29.256 29.256 329.372-265.374 329.374 265.374 29.254-29.256-358.628-422.626-358.628 422.626zM841.374 73.374l-208 304 29.254 29.254 256-256-77.254-77.254z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.942-185.598-185.598c-1.444 5.336-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.208l182.118 182.118 90.422-105.498 90.424 105.494 182.116-182.12c-5.34-1.44-10.886-2.202-16.54-2.202zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.6 185.598 187.666 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
|
||||
<glyph unicode="" d="M789.534 896c0 0-200.956 0-267.94 0-120.122 0-233.17-91.006-233.17-196.422 0-107.726 81.882-194.666 204.088-194.666 8.498 0 16.756 0.17 24.84 0.752-7.928-15.186-13.6-32.288-13.6-50.042 0-29.938 16.104-54.21 36.468-74.024-15.386 0-30.242-0.448-46.452-0.448-148.782 0.002-263.3-94.76-263.3-193.022 0-96.778 125.542-157.312 274.334-157.312 169.624 0 263.306 96.244 263.306 193.028 0 77.602-22.896 124.072-93.686 174.134-24.216 17.142-70.532 58.836-70.532 83.344 0 28.72 8.196 42.868 51.428 76.646 44.312 34.624 75.674 83.302 75.674 139.916 0 67.406-30.022 133.098-86.374 154.772h84.956l59.96 43.344zM695.948 240.542c2.126-8.972 3.284-18.208 3.284-27.628 0-78.2-50.39-139.31-194.974-139.31-102.842 0-177.116 65.104-177.116 143.3 0 76.642 92.126 140.444 194.964 139.332 24-0.254 46.368-4.116 66.668-10.69 55.828-38.828 95.876-60.76 107.174-105.004zM531.286 532.224c-69.038 2.064-134.636 77.226-146.552 167.86-11.916 90.666 34.37 160.042 103.388 157.99 69.008-2.074 134.636-74.814 146.558-165.458 11.906-90.66-34.39-162.458-103.394-160.392z" />
|
||||
<glyph unicode="" d="M559.066 896c0 0-200.956 0-267.94 0-120.12 0-233.17-91.006-233.17-196.422 0-107.726 81.882-194.666 204.088-194.666 8.498 0 16.756 0.17 24.842 0.752-7.93-15.186-13.602-32.288-13.602-50.042 0-29.938 16.104-54.21 36.468-74.024-15.386 0-30.242-0.448-46.452-0.448-148.782 0.002-263.3-94.758-263.3-193.020 0-96.778 125.542-157.314 274.334-157.314 169.624 0 263.306 96.244 263.306 193.028 0 77.6-22.896 124.072-93.686 174.134-24.216 17.144-70.53 58.836-70.53 83.344 0 28.72 8.196 42.868 51.428 76.646 44.312 34.624 75.672 83.302 75.672 139.916 0 67.406-30.020 133.098-86.372 154.772h84.954l59.96 43.344zM465.48 240.542c2.126-8.972 3.284-18.206 3.284-27.628 0-78.2-50.392-139.31-194.974-139.31-102.842 0-177.116 65.104-177.116 143.3 0 76.642 92.126 140.444 194.964 139.332 24-0.254 46.368-4.116 66.67-10.69 55.826-38.826 95.876-60.762 107.172-105.004zM300.818 532.224c-69.038 2.064-134.636 77.226-146.552 167.86-11.916 90.666 34.37 160.042 103.388 157.99 69.010-2.074 134.638-74.814 146.558-165.458 11.906-90.66-34.39-162.458-103.394-160.392zM832 704v192h-64v-192h-192v-64h192v-192h64v192h192v64z" />
|
||||
<glyph unicode="" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM838.052 618.166c0.328-7.342 0.49-14.728 0.49-22.148 0-226.214-169.216-487.068-478.658-487.068-95.004 0-183.434 28.348-257.886 76.918 13.16-1.588 26.552-2.394 40.13-2.394 78.822 0 151.358 27.37 208.934 73.282-73.616 1.38-135.744 50.876-157.154 118.882 10.274-2 20.812-3.074 31.652-3.074 15.344 0 30.206 2.096 44.32 6.008-76.96 15.732-134.95 84.916-134.95 167.856 0 0.722 0 1.438 0.016 2.152 22.68-12.82 48.624-20.52 76.2-21.41-45.142 30.698-74.842 83.092-74.842 142.488 0 31.37 8.294 60.778 22.778 86.058 82.974-103.57 206.936-171.72 346.754-178.862-2.87 12.532-4.358 25.596-4.358 39.014 0 94.538 75.326 171.18 168.23 171.18 48.39 0 92.118-20.786 122.802-54.058 38.32 7.676 74.324 21.92 106.832 41.542-12.562-39.976-39.234-73.522-73.966-94.71 34.026 4.138 66.452 13.34 96.62 26.954-22.546-34.324-51.070-64.476-83.944-88.61z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM806.242 598.912c0.292-6.508 0.442-13.056 0.442-19.638 0-200.622-152.708-431.964-431.958-431.964-85.736 0-165.536 25.136-232.726 68.214 11.876-1.408 23.962-2.126 36.216-2.126 71.13 0 136.59 24.276 188.55 64.994-66.434 1.22-122.5 45.122-141.824 105.432 9.274-1.768 18.784-2.722 28.566-2.722 13.846 0 27.258 1.856 39.998 5.324-69.452 13.952-121.786 75.312-121.786 148.868 0 0.64 0 1.278 0.016 1.91 20.47-11.37 43.878-18.2 68.764-18.988-40.74 27.222-67.54 73.692-67.54 126.368 0 27.822 7.488 53.904 20.556 76.324 74.878-91.854 186.748-152.292 312.924-158.628-2.588 11.118-3.93 22.702-3.93 34.604 0 83.84 67.98 151.812 151.818 151.812 43.666 0 83.124-18.436 110.818-47.94 34.58 6.808 67.074 19.442 96.412 36.84-11.336-35.454-35.41-65.206-66.752-83.994 30.71 3.668 59.968 11.832 87.194 23.904-20.35-30.448-46.090-57.186-75.758-78.594z" />
|
||||
<glyph unicode="" d="M136.294 209.070c-75.196 0-136.292-61.334-136.292-136.076 0-75.154 61.1-135.802 136.292-135.802 75.466 0 136.494 60.648 136.494 135.802-0.002 74.742-61.024 136.076-136.494 136.076zM0.156 612.070v-196.258c127.784 0 247.958-49.972 338.458-140.512 90.384-90.318 140.282-211.036 140.282-339.3h197.122c-0.002 372.82-303.282 676.070-675.862 676.070zM0.388 960v-196.356c455.782 0 826.756-371.334 826.756-827.644h196.856c0 564.47-459.254 1024-1023.612 1024z" />
|
||||
<glyph unicode="" d="M853.34 960h-682.654c-93.876 0-170.686-76.812-170.686-170.688v-682.628c0-93.934 76.812-170.684 170.688-170.684h682.652c93.876 0 170.66 76.748 170.66 170.684v682.628c0 93.876-76.784 170.688-170.66 170.688zM278.944 128.752c-47.97 0-86.944 38.692-86.944 86.628 0 47.684 38.972 86.812 86.944 86.812 48.158 0 87.060-39.128 87.060-86.812-0.002-47.936-38.904-86.628-87.060-86.628zM497.468 128.004c0 81.81-31.808 158.818-89.46 216.444-57.714 57.75-134.376 89.626-215.904 89.626v125.186c237.652 0 431.126-193.442 431.126-431.254l-125.762-0.002zM719.628 128.004c0 291.062-236.658 527.94-527.376 527.94v125.248c360.002 0 652.946-293.124 652.946-653.192l-125.57 0.004z" />
|
||||
<glyph unicode="" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 192c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM496 192c0 132.336-107.664 240-240 240v96c185.272 0 336-150.728 336-336h-96zM688 192c0 115.39-44.936 223.876-126.53 305.47-81.594 81.594-190.078 126.53-305.47 126.53v96c141.034 0 273.626-54.922 373.354-154.648 99.724-99.726 154.646-232.318 154.646-373.352h-96z" />
|
||||
<glyph unicode="" d="M832 832h-640c-105.6 0-192-86.4-192-192v-384c0-105.6 86.4-192 192-192h640c105.6 0 192 86.4 192 192v384c0 105.6-86.4 192-192 192zM384 192v512l320-256-320-256z" />
|
||||
<glyph unicode="" d="M832 832h-640c-105.6 0-192-86.4-192-192v-384c0-105.6 86.4-192 192-192h640c105.6 0 192 86.4 192 192v384c0 105.6-86.4 192-192 192zM960 256c0-33.978-13.374-66.062-37.654-90.346-24.284-24.28-56.366-37.654-90.346-37.654h-640c-33.978 0-66.062 13.374-90.344 37.654-24.282 24.284-37.656 56.368-37.656 90.346v384c0 33.978 13.374 66.062 37.656 90.344s56.366 37.656 90.344 37.656h640c33.978 0 66.062-13.374 90.346-37.656 24.282-24.282 37.654-56.366 37.654-90.344v-384zM384 192l320 256-320 256z" />
|
||||
<glyph unicode="" d="M0 651.63l41.594-54.544c0 0 85.77 67.608 114.36 33.802 28.588-33.802 137.736-441.956 174.17-517.246 31.8-66.030 119.518-153.32 215.714-90.982 96.136 62.34 415.84 335.286 473.066 657.616 57.18 322.226-384.72 254.726-431.53-26.010 116.99 70.236 179.436-28.538 119.57-140.372-59.758-111.724-114.36-184.592-142.952-184.592-28.538 0-50.49 74.768-83.188 205.446-33.798 135.102-33.592 378.46-174.116 350.87-132.518-26.012-306.688-233.988-306.688-233.988z" />
|
||||
<glyph unicode="" d="M512.002-64c-282.32 0-512.002 229.682-512.002 512s229.682 512 512.002 512c282.322 0 511.998-229.682 511.998-512s-229.676-512-511.998-512zM943.798 377.914c-14.962 4.72-135.364 40.632-272.41 18.698 57.204-157.186 80.478-285.208 84.958-311.808 98.114 66.336 167.958 171.426 187.452 293.11zM682.832 44.762c-6.506 38.37-31.898 172.090-93.298 331.64-0.96-0.328-1.922-0.64-2.88-0.972-246.67-85.958-335.216-257.016-343.086-273.104 74.15-57.824 167.336-92.32 268.436-92.32 60.58 0 118.318 12.39 170.828 34.756zM187.098 154.922c9.908 16.96 129.93 215.684 355.476 288.594 5.704 1.84 11.448 3.57 17.236 5.2-10.98 24.844-22.94 49.714-35.456 74.216-218.398-65.36-430.324-62.63-449.46-62.236-0.132-4.442-0.222-8.89-0.222-13.366 0-112.32 42.58-214.874 112.426-292.408zM83.912 536.904c19.558-0.26 199.736-1.042 404.302 53.282-72.46 128.812-150.612 237.11-162.142 252.92-122.348-57.708-213.802-170.496-242.16-306.202zM409.518 872.5c12.088-16.184 91.518-124.348 163.18-256.014 155.508 58.284 221.34 146.77 229.208 157.974-77.23 68.518-178.782 110.2-289.902 110.2-35.29 0-69.6-4.232-102.486-12.16zM850.522 723.888c-9.216-12.474-82.504-106.418-244.202-172.434 10.178-20.832 19.934-42.018 29.016-63.344 3.216-7.56 6.354-15.084 9.418-22.57 145.518 18.298 290.104-11.028 304.526-14.078-0.968 103.224-37.85 198.010-98.758 272.426z" />
|
||||
<glyph unicode="" d="M538.752 444.076c-197.352-63.796-302.372-237.678-311.042-252.522-61.116 67.842-98.374 157.576-98.374 255.858 0 3.916 0.078 7.81 0.196 11.696 16.744-0.342 202.18-2.732 393.278 54.458 10.952-21.44 21.416-43.202 31.024-64.94-5.064-1.426-10.092-2.94-15.082-4.55zM765.666 733.654c-6.882-9.804-64.486-87.23-200.556-138.228-62.704 115.206-132.206 209.85-142.782 224.012 28.776 6.936 58.798 10.64 89.674 10.64 97.23 0 186.088-36.47 253.664-96.424zM491.188 572.412c-178.996-47.532-336.65-46.848-353.766-46.622 24.814 118.742 104.836 217.432 211.892 267.926 10.088-13.834 78.472-108.594 141.874-221.304zM577.32 384.5c0.84 0.292 1.68 0.564 2.522 0.852 53.724-139.606 75.942-256.612 81.636-290.186-45.946-19.568-96.466-30.41-149.476-30.41-88.464 0-170.002 30.184-234.882 80.78 6.886 14.078 84.364 163.754 300.2 238.964zM852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM512.002 0c-247.030 0-448.002 200.97-448.002 448 0 247.028 200.972 448 448.002 448 247.032 0 447.998-200.972 447.998-448 0-247.030-200.966-448-447.998-448zM651.464 403.036c119.916 19.192 225.266-12.232 238.36-16.36-17.060-106.474-78.172-198.428-164.020-256.472-3.922 23.276-24.288 135.294-74.34 272.832zM594.532 538.524c141.484 57.764 205.608 139.964 213.674 150.88 53.292-65.116 85.566-148.052 86.412-238.372-12.618 2.668-139.13 28.328-266.458 12.316-2.682 6.552-5.426 13.134-8.242 19.75-7.944 18.66-16.482 37.198-25.386 55.426z" />
|
||||
<glyph unicode="" d="M765.666 733.654c-6.882-9.804-64.486-87.23-200.556-138.228-62.704 115.206-132.206 209.85-142.782 224.012 28.776 6.936 58.798 10.64 89.674 10.64 97.23 0 186.088-36.47 253.664-96.424zM538.752 444.076c-197.352-63.796-302.372-237.678-311.042-252.522-61.116 67.842-98.374 157.576-98.374 255.858 0 3.916 0.078 7.81 0.196 11.696 16.744-0.342 202.18-2.732 393.278 54.458 10.952-21.44 21.416-43.202 31.024-64.94-5.064-1.426-10.092-2.94-15.082-4.55zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512.002 0c-247.030 0-448.002 200.97-448.002 448 0 247.028 200.972 448 448.002 448 247.032 0 447.998-200.972 447.998-448 0-247.030-200.966-448-447.998-448zM619.918 483.098c-7.946 18.66-16.482 37.198-25.388 55.428 141.484 57.762 205.61 139.964 213.676 150.878 53.292-65.116 85.566-148.052 86.412-238.372-12.618 2.668-139.13 28.328-266.458 12.316-2.682 6.552-5.426 13.134-8.242 19.75zM491.188 572.412c-178.996-47.532-336.65-46.848-353.766-46.622 24.814 118.742 104.836 217.432 211.892 267.926 10.088-13.834 78.472-108.594 141.874-221.304zM577.32 384.5c0.84 0.292 1.68 0.564 2.522 0.852 53.724-139.606 75.942-256.612 81.636-290.186-45.946-19.568-96.466-30.41-149.476-30.41-88.464 0-170.002 30.184-234.882 80.78 6.886 14.078 84.364 163.754 300.2 238.964zM651.464 403.036c119.916 19.192 225.266-12.232 238.36-16.36-17.060-106.474-78.172-198.428-164.020-256.472-3.922 23.276-24.288 135.294-74.34 272.832z" />
|
||||
<glyph unicode="" d="M384 64h-384l448 896 448-896h-384v128h128v64h-128v128h-128zM384 64h128v-128h-128z" />
|
||||
<glyph unicode="" d="M448 384h128v-256h-128zM852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM576 128v-128h-128v128h-256l320 704 320-704h-256z" />
|
||||
<glyph unicode="" d="M561.856 553c-39.042 2.282-84.082-0.048-136.25-8.95l120.334-216.888 478.060 131.266c-5.154 12.26-12.686 24.226-22.662 35.798-49.474 57.278-156.74 108.374-273.604 131.418l0.002 0.026c-114.644 26.874-238.802 25.744-365.96 6.548-4.584-0.688-9.144-1.422-13.68-2.184l-42.272 78.292c-41.142-5.492-79.808-14.050-115.606-25.474l40.26-84.198c-65.76-25.476-119.722-61.76-158.658-105.432-64.212-73.064-89.59-164.908-58.746-254.352 6.204-18.042 14.588-35.16 24.936-51.196l478.068 131.298-132.75 245.848c4.558 0.88 9.196 1.768 13.928 2.624 214.682 38.298 332.102-20.864 396.416-83.83l-163.558-39.648-68.258 109.034zM174.722 333.61c-14.758 67.352-3.012 142.526 90.404 192.594l73.138-152.948-163.542-39.646z" />
|
||||
<glyph unicode="" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM960 192h-384v236c0 0 70.334-1 108-40v-68h154.41c-11.82 37.882-37.068 75.112-73.128 106.664-61.98 54.23-163.194 81.336-253.282 81.336v-316h-448v96c0 43.396 14.65 86.538 42.364 124.76 24.594 33.918 58.864 63.832 101.86 88.914 50.432 29.418 110.562 50.708 175.776 62.778v139.548h128v-128c147 0 221.612-26.396 303.778-74.326 42.996-25.082 77.266-54.996 101.86-88.914 27.714-38.222 42.362-81.364 42.362-124.76v-96zM199.59 320c11.82 37.882 37.070 75.112 73.128 106.664 31.54 27.596 69.62 49.188 111.282 63.756v-170.42h-184.41z" />
|
||||
<glyph unicode="" d="M704 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM958.392 830.392c-87.478 87.476-229.306 87.476-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.228c-27.506-1.41-54.776-8.416-79.966-21.016l-157.892 123.424c-36.55 28.574-89.342 22.102-117.912-14.448-28.572-36.55-22.102-89.342 14.448-117.912l155.934-121.892c-16.96-66.782 0.672-140.538 52.93-192.794 78.906-78.904 206.832-78.904 285.736 0 48.466 48.466 67.15 115.428 56.076 178.166l249.054 222.986c46.248 6.638 90.816 27.744 126.394 63.322 87.478 87.476 87.478 229.306 0 316.784zM384 57.302c-74.39 0-134.698 60.304-134.698 134.698 0 0.712 0.042 1.414 0.054 2.124l66.912-52.304c15.36-12.006 33.582-17.824 51.674-17.824 24.962 0 49.672 11.080 66.238 32.272 28.572 36.55 22.102 89.342-14.448 117.912l-63.5 49.636c8.962 1.878 18.248 2.88 27.768 2.88 74.392 0 134.698-60.304 134.698-134.698s-60.306-134.696-134.698-134.696zM800 512c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 251 KiB |
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>Generated by IcoMoon</metadata>
|
||||
<defs>
|
||||
<font id="meteo" horiz-adv-x="1024">
|
||||
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
||||
<missing-glyph horiz-adv-x="1024" />
|
||||
<glyph unicode=" " d="" horiz-adv-x="512" />
|
||||
<glyph unicode="" d="M355.23 384c14.876 73.042 79.376 128 156.792 128 77.418 0 141.916-54.958 156.752-128h64c-15.668 108.25-108.168 192-220.752 192-112.542 0-205.082-83.75-220.75-192h63.958zM512.022 640c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32-17.664 0-32-14.334-32-32v-64c0-17.666 14.336-32 32-32zM806.146 646.166c-12.498 12.5-32.748 12.5-45.25 0l-45.25-45.25c-12.498-12.5-12.498-32.75 0-45.25 12.502-12.5 32.752-12.5 45.25 0l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25zM308.354 600.916l-45.25 45.25c-12.498 12.5-32.746 12.5-45.25 0-12.498-12.5-12.498-32.75 0-45.25l45.25-45.25c12.504-12.5 32.752-12.5 45.25 0 12.504 12.5 12.504 32.75 0 45.25zM704.022 320h-384c-17.664 0-32-14.334-32-32s14.336-32 32-32h384c17.666 0 32 14.334 32 32s-14.334 32-32 32zM640.022 192h-256c-17.664 0-32-14.334-32-32s14.336-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" d="M512 672c-123.5 0-224-100.5-224-224s100.5-224 224-224 224 100.5 224 224c0 123.5-100.5 224-224 224zM512 288c-88.376 0-160 71.624-160 160s71.624 160 160 160 160-71.624 160-160-71.624-160-160-160zM512 736c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM512 160c-17.666 0-32-14.334-32-32v-64c0-17.666 14.334-32 32-32s32 14.334 32 32v64c0 17.666-14.334 32-32 32zM760.876 651.666l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25s-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM263.124 244.332l-45.25-45.25c-12.5-12.498-12.5-32.748 0-45.248s32.75-12.5 45.25 0l45.25 45.248c12.5 12.542 12.5 32.752 0 45.25-12.498 12.502-32.75 12.544-45.25 0zM224 448c0 17.666-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32zM896 480h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32zM263.082 651.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM760.918 244.376c-12.542 12.5-32.752 12.5-45.25 0-12.502-12.5-12.542-32.75 0-45.25l45.25-45.25c12.498-12.5 32.748-12.5 45.248 0s12.5 32.748 0 45.25l-45.248 45.25z" />
|
||||
<glyph unicode="" d="M699.704 273.7c-99.752-99.832-262.166-99.832-362 0-99.832 99.834-99.832 262.25 0 362.042 26.418 26.374 58.624 46.5 95.664 59.624 11.668 4.084 24.586 1.124 33.25-7.584 8.752-8.75 11.71-21.666 7.586-33.25-25.084-70.75-8-147.332 44.498-199.834 52.418-52.456 129.002-69.5 199.834-44.5 11.584 4.124 24.542 1.166 33.25-7.584 8.752-8.666 11.668-21.624 7.542-33.25-13.042-37.040-33.208-69.246-59.624-95.664zM382.954 590.492c-74.876-74.876-74.876-196.708 0-271.542 80-80.042 216.25-72.834 286 16.334-71.918-4.5-142.75 21.458-195.5 74.168-52.75 52.708-78.666 123.542-74.168 195.458-5.748-4.502-11.208-9.294-16.332-14.418z" />
|
||||
<glyph unicode="" d="M542 706c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM542 130c-17.666 0-32-14.334-32-32v-64c0-17.666 14.334-32 32-32s32 14.334 32 32v64c0 17.666-14.334 32-32 32zM293.124 214.332l-45.25-45.25c-12.5-12.498-12.5-32.748 0-45.248s32.75-12.5 45.25 0l45.25 45.248c12.5 12.542 12.5 32.752 0 45.25-12.498 12.502-32.75 12.544-45.25 0zM254 418c0 17.666-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32h64c17.666 0 32 14.334 32 32zM293.082 621.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM670 642c-22.376 0-43.624-4.334-64-10.416-20.376 6.084-41.624 10.416-64 10.416-123.5 0-224-100.5-224-224s100.5-224 224-224c22.376 0 43.624 4.332 64 10.418 20.376-6.086 41.624-10.418 64-10.418 123.5 0 224 100.5 224 224s-100.5 224-224 224zM510.458 261.166c-73.292 14.666-128.458 79.252-128.458 156.834 0 77.584 55.166 142.166 128.458 156.834-39.79-40.458-64.458-95.75-64.458-156.834s24.668-116.376 64.458-156.834z" />
|
||||
<glyph unicode="" d="M990 514h-163.25c-16.126 143.584-136.874 256-284.75 256-99.624 0-187.5-50.916-239.25-128h-208.75c-17.666 0-32-14.334-32-32s14.334-32 32-32h177.666c-7.248-20.416-11.958-41.792-14.416-64h-99.25c-17.666 0-32-14.334-32-32s14.334-32 32-32h99.25c2.458-22.168 7.168-43.624 14.416-64h-171.834c-20.914 0-37.832-14.334-37.832-32s16.918-32 37.832-32h202.918c51.75-77.124 139.624-128 239.25-128 99.624 0 187.5 50.876 239.248 128h74.92c20.914 0 37.832 14.334 37.832 32s-16.918 32-37.832 32h-43.834c7.248 20.376 11.916 41.832 14.416 64h163.25c17.666 0 32 14.334 32 32s-14.334 32-32 32zM340.458 578h201.542c17.666 0 32 14.334 32 32s-14.334 32-32 32h-156.292c40.418 39.458 95.458 64 156.292 64 112.582 0 205.084-83.75 220.75-192h-441.5c3.25 22.624 9.668 44.084 19.208 64zM542 258c-60.834 0-115.876 24.582-156.292 64h312.542c-40.374-39.418-95.416-64-156.25-64zM743.5 386h-403.042c-9.54 19.916-15.958 41.376-19.208 64h441.5c-3.25-22.624-9.668-44.084-19.25-64z" />
|
||||
<glyph unicode="" d="M862 576c-53 0-96-43-96-96 0-11.292 2.334-21.916 5.876-32h-613.876c-17.666 0-32-14.334-32-32s14.334-32 32-32h704c53 0 96 43 96 96s-43 96-96 96zM158 512h384c53 0 96 43 96 96s-43 96-96 96-96-43-96-96c0-11.292 2.334-21.916 5.876-32h-293.876c-17.666 0-32-14.334-32-32s14.334-32 32-32zM670 320c-1.876 0-3.668-0.416-5.582-0.582-1.25 0.082-2.292 0.582-3.542 0.582h-493.708c-22.75 0-41.168-14.334-41.168-32s18.418-32 41.168-32h412.708c-3.542-10.084-5.876-20.752-5.876-32 0-53 43-96 96-96s96 43 96 96-43 96-96 96z" />
|
||||
<glyph unicode="" d="M765.744 375.5l-65.25 37.668c2.084 11.332 3.5 22.916 3.5 34.832 0 11.958-1.416 23.584-3.584 34.916l65.25 37.708c30.666 17.75 41.084 56.876 23.458 87.376-17.708 30.624-56.75 41.124-87.376 23.5l-65.876-38.042c-17.624 15-37.708 26.834-59.876 34.708v75.834c0 35.334-28.624 64-64 64-35.332 0-64-28.666-64-64v-75.792c-22.166-7.876-42.25-19.71-59.874-34.708l-65.752 37.958c-30.624 17.666-69.792 7.208-87.498-23.416-17.626-30.584-7.124-69.708 23.498-87.376l65.126-37.626c-2.124-11.376-3.502-23.042-3.502-35.042 0-11.916 1.376-23.542 3.502-34.876l-65.168-37.624c-30.668-17.668-41.168-56.876-23.458-87.5 17.622-30.5 56.79-41 87.458-23.376l65.666 37.958c17.626-15 37.75-26.916 60-34.834v-75.746c0-35.376 28.668-64 64-64 35.376 0 64 28.624 64 64v75.834c22.25 7.916 42.376 19.75 59.916 34.79l65.834-37.998c30.624-17.624 69.752-7.124 87.376 23.376 17.714 30.622 7.256 69.748-23.37 87.498zM447.994 448c0 35.334 28.624 64 64 64 35.334 0 64-28.666 64-64 0-35.332-28.666-64-64-64-35.374 0-64 28.668-64 64z" />
|
||||
<glyph unicode="" d="M416 832c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM664.876 747.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM32 512h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM704 544c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM167.082 747.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM800 448c-10.624 0-21.124-0.75-31.584-2.25-33.542 45.75-78.248 80.666-128.916 103-2.582 121.25-101.624 219.25-223.5 219.25-123.5 0-224-100.5-224-224 0-34.876 8.668-67.5 23-96.876-119.25-4.874-215-102.748-215-223.124 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM416 704c79.624 0 145.124-58.334 157.416-134.5-20.042 4-40.498 6.5-61.416 6.5-91.876 0-177-39.624-236.75-106.5-11.874 22.334-19.25 47.416-19.25 74.5 0 88.376 71.624 160 160 160zM800 64c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c15.5 0 30.124-2.916 44.25-7.082 5.624-1.584 11.334-2.834 16.624-5.042 8.75 17.124 19.75 32.792 31.958 47.5 46.752 56.248 116.292 92.624 195.168 92.624 20.25 0 39.668-2.916 58.5-7.418 21.124-4.998 41.084-12.582 59.668-22.582 46.582-24.75 84.832-63.084 108.914-110.126 18.794 7.75 39.336 12.126 60.918 12.126 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" d="M870.124 435.668c9.75 7.25 19.624 14.376 28.458 23.208 26.416 26.458 46.542 58.666 59.584 95.708 4.166 11.584 1.208 24.584-7.544 33.25-8.708 8.75-21.624 11.708-33.246 7.584-70.792-25-147.376-8-199.792 44.5-52.5 52.502-69.584 129.042-44.5 199.792 4.084 11.626 1.166 24.542-7.584 33.292-8.666 8.666-21.624 11.668-33.25 7.582-37.084-13.164-69.25-33.246-95.668-59.664-67.082-67-87.958-162-64.958-247.584-86.5-11.042-164.25-57-216.042-127.586-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224.002 0-123.498 100.5-223.998 224-223.998 27.376 0 54.168 5 79.418 14.668 57.914-50.5 131.582-78.668 208.582-78.668 77.084 0 150.666 28.168 208.582 78.668 25.25-9.668 52.042-14.668 79.418-14.668 123.5 0 224 100.5 224 223.998 0.002 98.878-64.832 182.044-153.874 211.67zM581.832 775.668c5.084 5.166 10.542 9.958 16.292 14.458-4.5-71.958 21.458-142.75 74.208-195.458 52.752-52.75 123.542-78.666 195.502-74.208-27.584-35.168-65.584-57.042-106.252-66.376-54.75 69.5-135.208 113.25-223.916 120.374-24.542 67.918-10.166 146.876 44.166 201.21zM800 64c-34.25 0-65.832 11-91.876 29.334-46.958-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.624-29.334-91.876-29.334-88.376 0-160 71.624-160 159.998 0 88.376 71.624 160 160 160 21.624 0 42.124-4.376 60.876-12.124 40.376 78.71 119.5 133.792 212.624 139.086 4.876 0.29 9.624 1.042 14.5 1.042 25.832 0 50.624-4.042 74-11.166 31.582-9.668 60.376-25.416 85.376-45.708 23.876-19.376 43.876-43.124 59.624-69.792 2.666-4.5 5.668-8.75 8.082-13.458 18.792 7.75 39.336 12.124 60.918 12.124 88.376 0 160-71.624 160-160s-71.624-160.002-160-160.002z" />
|
||||
<glyph unicode="" d="M512 770c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM760.876 685.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0zM128 450h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM800 482c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM263.082 685.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM291.25 450h64c-2.124 10.334-3.25 21.042-3.25 32 0 88.376 71.624 160 160 160 88.376 0 160-71.624 160-160 0-10.958-1.124-21.666-3.25-32h64c1.584 10.542 3.25 21.042 3.25 32 0 123.5-100.5 224-224 224s-224-100.5-224-224c0-10.958 1.75-21.458 3.25-32zM896 386h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 258h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 130h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" d="M128 321.998h768c17.666 0 32 14.334 32 32s-14.334 32-32 32h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32zM896 257.998h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM896 129.998h-768c-17.666 0-32-14.334-32-32s14.334-32 32-32h768c17.666 0 32 14.334 32 32s-14.334 32-32 32zM410.084 450c-0.666 0.666-1.502 1.084-2.166 1.75-74.876 74.876-74.876 196.668 0 271.584 5.124 5.084 10.54 9.916 16.292 14.416-4.502-71.916 21.458-142.75 74.208-195.458 52.748-52.792 123.58-78.666 195.498-74.166-5.334-6.792-11.748-12.25-17.792-18.124h83.042c10.084 16.084 18.5 33.5 25.166 52.126 4.042 11.708 1.084 24.666-7.666 33.334-8.582 8.708-21.584 11.708-33.248 7.582-70.752-24.998-147.292-7.958-199.75 44.5-52.502 52.5-69.584 129.042-44.502 199.792 4.166 11.624 1.166 24.542-7.582 33.292-8.668 8.708-21.626 11.666-33.25 7.542-37.042-13.084-69.25-33.208-95.666-59.584-86.418-86.42-97.71-219.544-34.544-318.586h81.96z" />
|
||||
<glyph unicode="" d="M67.208 448c-2.084 10.334-3.208 21.042-3.208 32 0 88.376 71.624 160 160 160 21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160 0-10.958-1.124-21.666-3.25-32h64c1.584 10.542 3.25 21.042 3.25 32 0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-10.958 1.708-21.458 3.25-32h63.958zM992 384h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32zM992 256h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32zM992 128h-960c-17.666 0-32-14.334-32-32s14.334-32 32-32h960c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" d="M224 640h576c17.666 0 32 14.334 32 32s-14.334 32-32 32h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32zM800 576h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32zM800 448h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32zM800 320h-576c-17.666 0-32-14.334-32-32s14.334-32 32-32h576c17.666 0 32 14.334 32 32s-14.334 32-32 32z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 448c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160zM450 0c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM192 192c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" d="M834.084 627.834c-47.958 49.084-114.25 77.542-183.46 77.542-69.124 0-135.376-28.458-183.33-77.542-105.626-4.918-190.042-92.376-190.042-199.168 0-109.916 89.418-199.332 199.376-199.332 11.668 0 23.208 1 34.542 2.998 41.458-27.082 89.834-41.708 139.458-41.708 49.708 0 98.126 14.626 139.544 41.708 11.414-1.998 22.916-2.998 34.582-2.998 109.874 0 199.25 89.416 199.25 199.332-0.004 106.792-84.38 194.25-189.92 199.168zM824.75 293.334c-16.624 0-32.75 2.998-48 8.834-35-30.5-79.5-47.544-126.126-47.544-46.498 0-90.998 17.044-125.998 47.544-15.25-5.836-31.5-8.834-48-8.834-74.624 0-135.376 60.75-135.376 135.332 0 74.626 60.75 135.376 135.376 135.376 6.376 0 12.75-0.458 19.042-1.376 36.208 49.166 93.082 78.708 154.956 78.708 61.876 0 118.876-29.542 155.002-78.708 6.25 0.916 12.624 1.376 19.124 1.376 74.624 0 135.25-60.75 135.25-135.376 0-74.582-60.624-135.332-135.25-135.332zM288 256h-256c-17.666 0-32-14.334-32-32s14.334-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32zM32 320h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32zM96 448h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32z" />
|
||||
<glyph unicode="" d="M834.084 818.416c-47.96 49.126-114.25 77.584-183.46 77.584-69.124 0-135.376-28.458-183.33-77.584-105.626-4.876-190.042-92.334-190.042-199.084 0-109.956 89.418-199.416 199.376-199.416 11.668 0 23.208 1.002 34.542 3 41.458-27.042 89.834-41.666 139.458-41.666 49.708 0 98.126 14.624 139.544 41.666 11.414-1.998 22.916-3 34.582-3 109.876 0 199.25 89.46 199.25 199.416-0.004 106.752-84.38 194.252-189.92 199.084zM824.75 483.916c-16.624 0-32.75 3-48 8.916-35-30.5-79.5-47.584-126.126-47.584-46.498 0-90.998 17.084-125.998 47.584-15.25-5.918-31.5-8.916-48-8.916-74.624 0-135.376 60.75-135.376 135.416 0 74.584 60.75 135.334 135.376 135.334 6.376 0 12.75-0.5 19.042-1.376 36.208 49.168 93.082 78.71 154.956 78.71 61.876 0 118.876-29.542 155.002-78.708 6.25 0.876 12.624 1.376 19.124 1.376 74.624 0 135.25-60.75 135.25-135.334 0-74.668-60.624-135.418-135.25-135.418zM288 446.624h-256c-17.666 0-32-14.292-32-32 0-17.706 14.334-32 32-32h256c17.666 0 32 14.294 32 32 0 17.708-14.334 32-32 32zM32 510.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM96 638.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM448 192c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" d="M652.084 72.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 77.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 448c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" d="M652.084 264.624l-36 20.75c1.084 6.25 1.916 12.624 1.916 19.25 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.754 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292s0.75-13 1.918-19.246l-35.916-20.752c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 269.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25-102.376 0-196.624-48.834-256.416-130.25-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c23.624 0 46.668 4.416 68.876 11.668 2.124 10.164 5.458 20.082 10.75 29.29 7.876 13.708 19.124 24.624 32 33.004-6.624 6.458-13.876 12.208-19.75 19.376-26-18.338-57.626-29.338-91.876-29.338-88.376 0-160 71.624-160 160 0 88.376 71.624 160 160 160 21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160 0-88.376-71.624-160-160-160-34.25 0-65.832 11-91.876 29.334-5.876-7.166-13.208-12.918-19.792-19.376 12.918-8.414 24.25-19.376 32.084-33.124 5.416-9.292 8.708-19.168 10.832-29.166 22.128-7.252 45.128-11.668 68.752-11.668 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" d="M652.084 72.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 77.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM948.332 167.5l-24.166 6.416c-0.582 7.666-2.416 14.958-5.792 21.958l17.542 17.542c8.25 8.25 8.208 21.584 0 29.708-8.166 8.208-21.416 8.25-29.666 0l-17.582-17.5c-6.918 3.25-14.292 5.124-21.918 5.75l-6.418 24.124c-2.998 11.166-14.5 17.876-25.748 14.876-11.208-3.042-17.75-14.542-14.834-25.75l6.418-23.792c-3.168-2.168-6.168-4.584-9-7.334-2.75-2.834-5.084-5.832-7.252-8.918l-23.792 6.418c-11.208 2.998-22.792-3.752-25.792-14.876-2.998-11.25 3.752-22.708 14.834-25.75l24-6.458c0.668-7.542 2.584-14.916 5.958-21.918l-17.624-17.624c-8.166-8.208-8.124-21.458 0.084-29.624 8.166-8.166 21.416-8.25 29.584-0.084l17.664 17.666c6.918-3.414 14.336-5.332 22.002-5.914l6.332-24.042c3.084-11.208 14.5-17.876 25.752-14.876 11.166 3 17.914 14.498 14.916 25.834l-6.418 23.792c3 2.124 6.084 4.5 8.918 7.25 2.75 2.792 5.084 5.876 7.248 8.958l23.834-6.418c11.208-3 22.75 3.708 25.708 14.834 3 11.17-3.624 22.668-14.792 25.752zM876.624 154.124c-8.25-8.25-21.542-8.208-29.75 0-8.124 8.124-8.208 21.458 0 29.708 8.208 8.166 21.542 8.166 29.75 0 8.126-8.208 8.126-21.582 0-29.708zM237.876 275l-23.75-6.376c-2.208 3-4.5 6.042-7.292 8.876-2.832 2.75-5.832 5.124-8.958 7.25l6.376 23.876c3 11.208-3.668 22.75-14.75 25.708-11.25 3-22.75-3.668-25.75-14.834l-6.5-24.124c-7.624-0.624-14.916-2.5-21.876-5.792l-17.624 17.542c-8.25 8.25-21.5 8.208-29.668 0-8.208-8.208-8.208-21.5 0-29.708l17.542-17.542c-3.292-7-5.208-14.376-5.792-21.958l-24.084-6.416c-11.25-3.084-17.918-14.5-14.916-25.75 3.042-11.166 14.542-17.75 25.792-14.834l23.75 6.46c2.124-3.208 4.5-6.21 7.376-9.002 2.75-2.75 5.75-5.208 8.876-7.25l-6.376-23.792c-3-11.25 3.668-22.834 14.832-25.834 11.252-3 22.668 3.666 25.668 14.876l6.5 24c7.624 0.624 15 2.542 22 5.876l17.582-17.584c8.168-8.248 21.418-8.082 29.668 0.084 8.124 8.124 8.25 21.416 0 29.624l-17.624 17.624c3.376 6.92 5.376 14.376 5.876 22.002l24.124 6.376c11.124 3.042 17.792 14.5 14.792 25.75-3.002 11.12-14.502 17.788-25.794 14.872zM177.124 218.084c-8.208-8.208-21.5-8.208-29.75 0-8.124 8.166-8.124 21.542 0 29.666 8.25 8.166 21.542 8.166 29.75 0s8.126-21.5 0-29.666zM1024 608c0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224zM708.124 477.334c-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 448c-19.418 0-38.418 3.5-56.5 10.416l-36 13.834-29-25.334c-46.5-40.582-105.624-62.916-166.5-62.916s-120 22.334-166.5 62.916l-29 25.334-36-13.834c-18-6.916-37.082-10.416-56.5-10.416-88.25 0-160 71.792-160 160s71.75 160 160 160c7.584 0 15-0.542 22.5-1.584l37.916-5.5 22.708 30.916c48.626 66.21 123.294 104.168 204.876 104.168 81.624 0 156.25-37.916 204.834-104.126l22.75-30.958 37.998 5.5c7.418 1.042 14.834 1.584 22.418 1.584 88.25 0 160-71.792 160-160s-71.75-160-160-160zM192 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM512 256c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM832 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM704 64c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM320 64c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64z" />
|
||||
<glyph unicode="" d="M1024 479.998c0 98.334-80 178.292-178.334 178.292-4.792 0-9.542-0.208-14.292-0.582-46.25 57.708-115.958 91.956-191.376 91.956-75.376 0-145.124-34.248-191.376-91.958-4.75 0.376-9.542 0.582-14.376 0.582-98.246 0.002-178.246-79.956-178.246-178.29 0-10.292 1.376-20.208 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.498-224-223.998 0-123.502 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.376-18.084 98.166-47.332 135.998 29.164 31.792 47.332 73.666 47.332 120zM800 64c-34.25 0-65.832 10.998-91.876 29.332-46.958-56.582-116.876-93.332-196.124-93.332-79.25 0-149.168 36.75-196.124 93.332-26-18.334-57.624-29.332-91.876-29.332-88.376 0-160 71.624-160 160s71.624 159.998 160 159.998c21.624 0 42.124-4.376 60.876-12.124 1.124 2.124 2.5 4 3.624 6.042 11.25 20.542 25.124 39.376 41.332 56.084 46.168 47.832 110.334 78 182.168 78 99.418 0 184.668-57.332 227.082-140.124 11.292 4.624 23.336 7.626 35.75 9.624l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.832 42.042-26.748 57.292-46.376 21-27.042 34.084-60.708 34.084-97.624 0-88.376-71.624-160-160-160zM931.124 404.75c-36.958 26.916-82 43.248-131.124 43.248-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.042 130.25-256.416 130.25-68.25 0-132.624-22.084-185.876-60.668 14.958 45.708 57.458 78.958 108.124 78.958 15.5 0 30.124-3.124 43.5-8.664 30.376 59.124 91.25 100.040 162.25 100.040s131.916-40.914 162.168-100.040c13.458 5.54 28.166 8.664 43.498 8.664 63.168 0 114.334-51.166 114.334-114.292 0.002-28.956-11.122-55.080-28.874-75.246z" />
|
||||
<glyph unicode="" d="M1024 690.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 36.708-32 80.208-53.876 126.414-66.416l-45.832-30.584 64-64-64-128 192 128-64 64 9.624 19.166c73.5 2.25 143.5 29.458 198.958 77.834 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.164 31.75 47.332 73.624 47.332 120zM800 274.334c-34.25 0-65.832 11-91.876 29.292-38-45.792-91.5-77.458-152.458-88.25l-47.542-4.624c-77.624 1.248-146.124 37.248-192.248 92.872-26-18.292-57.624-29.292-91.876-29.292-88.376 0-160 71.582-160 160 0 88.334 71.624 160 160 160 21.624 0 42.124-4.418 60.876-12.166 1.124 2.166 2.5 4 3.624 6.084 11.25 20.542 25.124 39.334 41.332 56.084 46.168 47.792 110.334 78 182.168 78 99.418 0 184.668-57.334 227.082-140.166 11.292 4.666 23.336 7.666 35.75 9.666l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.834 42.042-26.75 57.292-46.416 21-27.042 34.084-60.668 34.084-97.584 0-88.418-71.624-160-160-160zM931.124 615.084c-36.958 26.876-82 43.25-131.124 43.25-10.624 0-21.124-0.75-31.584-2.25-59.748 81.374-154.040 130.25-256.416 130.25-68.25 0-132.624-22.124-185.876-60.708 14.958 45.706 57.458 78.956 108.124 78.956 15.5 0 30.124-3.124 43.5-8.666 30.376 59.168 91.252 100.084 162.252 100.084s131.916-40.916 162.168-100.084c13.458 5.542 28.166 8.666 43.498 8.666 63.168 0 114.334-51.166 114.334-114.248 0-29-11.124-55.126-28.876-75.25z" />
|
||||
<glyph unicode="" d="M384 192l64-64-64-192 192 192-64 64 64 128-192-128zM1024 690.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 2.208-1.918 4.832-3.25 7.082-5.124l56.624 37.75c-18.876 13.376-36.5 28.25-51.25 46-26-18.292-57.624-29.292-91.876-29.292-88.376 0-160 71.582-160 160 0 88.334 71.624 160 160 160 21.624 0 42.124-4.418 60.876-12.166 1.124 2.166 2.5 4 3.624 6.084 11.25 20.542 25.124 39.334 41.332 56.084 46.168 47.792 110.334 78 182.168 78 99.418 0 184.668-57.334 227.082-140.166 11.292 4.666 23.336 7.666 35.75 9.666l25.168 2.5c24.668 0 47.75-6.084 68.624-16 22.624-10.834 42.042-26.75 57.292-46.416 21-27.042 34.084-60.668 34.084-97.584 0-88.418-71.624-160-160-160-34.25 0-65.832 11-91.876 29.292-28-33.75-64.876-59.124-106.292-75.124l-11.958-23.876 36.5-36.5c34.124 13.292 66.042 32.376 94.208 56.876 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.166 31.746 47.334 73.62 47.334 119.996zM931.124 615.084c-36.958 26.876-82 43.25-131.124 43.25-10.624 0-21.124-0.75-31.584-2.25-59.748 81.374-154.040 130.25-256.416 130.25-68.25 0-132.624-22.124-185.876-60.708 14.958 45.706 57.458 78.956 108.124 78.956 15.5 0 30.124-3.124 43.5-8.666 30.376 59.168 91.252 100.084 162.252 100.084s131.916-40.916 162.168-100.084c13.458 5.542 28.166 8.666 43.498 8.666 63.168 0 114.334-51.166 114.334-114.248 0-29-11.124-55.126-28.876-75.25z" />
|
||||
<glyph unicode="" d="M512 672c-123.5 0-224-100.5-224-224 0-123.498 100.5-224 224-224s224 100.502 224 224c0 123.5-100.5 224-224 224zM512 736c17.666 0 32 14.292 32 32v64c0 17.666-14.334 32-32 32-17.708 0-32-14.334-32-32v-64c0-17.708 14.292-32 32-32zM512 160c-17.708 0-32-14.334-32-32v-64c0-17.708 14.292-32 32-32 17.666 0 32 14.292 32 32v64c0 17.666-14.334 32-32 32zM760.834 651.666l45.25 45.25c12.5 12.5 12.5 32.75 0 45.25-12.502 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.502-12.5-12.502-32.75 0-45.25 12.5-12.498 32.748-12.498 45.25 0zM263.082 244.292l-45.246-45.25c-12.504-12.5-12.504-32.752 0-45.25 12.498-12.5 32.746-12.5 45.246 0l45.25 45.25c12.502 12.582 12.502 32.75 0 45.25-12.498 12.5-32.748 12.584-45.25 0zM224 448c0 17.666-14.334 32-32 32h-64c-17.708 0-32-14.334-32-32 0-17.708 14.292-32 32-32h64c17.666 0 32 14.292 32 32zM896 480h-64c-17.708 0-32-14.334-32-32 0-17.708 14.292-32 32-32h64c17.666 0 32 14.292 32 32 0 17.666-14.334 32-32 32zM263.042 651.666c12.498-12.5 32.75-12.5 45.25 0 12.498 12.5 12.498 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.752 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM760.918 244.376c-12.586 12.5-32.752 12.5-45.25 0-12.5-12.498-12.586-32.75 0-45.25l45.25-45.25c12.498-12.498 32.748-12.498 45.25 0 12.498 12.5 12.498 32.752 0 45.25l-45.25 45.25z" />
|
||||
<glyph unicode="" d="M496.164 432.136c-63.040 63.084-79.958 154.21-52.040 233.084-30.5-10.79-59.336-27.666-83.708-52.040-87.502-87.5-87.502-229.334 0-316.79 87.458-87.46 229.25-87.504 316.748 0 24.458 24.372 41.292 53.208 52.042 83.708-78.83-27.918-169.998-11-233.042 52.038z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM450 0c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM192 192c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" d="M834.084 627.834c-47.958 49.084-114.25 77.542-183.46 77.542-69.124 0-135.376-28.458-183.374-77.542-105.624-4.918-190-92.376-190-199.168 0-109.916 89.418-199.332 199.376-199.332 11.624 0 23.208 1 34.5 2.998 41.5-27.082 89.876-41.708 139.498-41.708 49.708 0 98.126 14.626 139.544 41.708 11.414-1.998 22.916-2.998 34.582-2.998 109.874 0 199.25 89.416 199.25 199.332 0 106.792-84.376 194.25-189.916 199.168zM288 256h-256c-17.666 0-32-14.334-32-32s14.334-32 32-32h256c17.666 0 32 14.334 32 32s-14.334 32-32 32zM32 320h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32zM96 448h128c17.666 0 32 14.334 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.334-32-32s14.334-32 32-32z" />
|
||||
<glyph unicode="" d="M834.084 818.416c-47.96 49.126-114.25 77.584-183.46 77.584-69.124 0-135.376-28.458-183.33-77.584-105.626-4.876-190.042-92.334-190.042-199.084 0-109.956 89.418-199.416 199.376-199.416 11.668 0 23.208 1.002 34.542 3 41.458-27.042 89.834-41.666 139.458-41.666 49.708 0 98.126 14.624 139.544 41.666 11.414-1.998 22.916-3 34.582-3 109.874 0 199.25 89.46 199.25 199.416-0.004 106.752-84.38 194.252-189.92 199.084zM288 446.624h-256c-17.666 0-32-14.292-32-32 0-17.706 14.334-32 32-32h256c17.666 0 32 14.294 32 32 0 17.708-14.334 32-32 32zM32 510.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM96 638.624h128c17.666 0 32 14.292 32 32s-14.334 32-32 32h-128c-17.666 0-32-14.292-32-32s14.334-32 32-32zM448 192c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128zM704 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" d="M652.084 72.624l-36 20.752c1.084 6.248 1.914 12.622 1.914 19.248 0 6.624-0.83 13-1.998 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.334-15.834-35.334-35.376v-41.75c-12.25-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.582 4-48.332-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.082-19.124v-41.876c0-19.498 15.834-35.248 35.334-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 77.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.332-15.792 35.332-35.292-15.832-35.376-35.332-35.376zM800 832c-10.624 0-21.124-0.75-31.584-2.25-59.75 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" d="M652.084 72.624l-36 20.752c1.084 6.248 1.916 12.622 1.916 19.248 0 6.624-0.832 13-2 19.25l36.084 20.792c16.834 9.834 22.582 31.458 12.916 48.208-9.752 16.958-31.334 22.75-48.25 13l-36.376-21c-9.752 8.292-20.75 14.792-33 19.208v41.792c0 19.542-15.876 35.376-35.376 35.376s-35.332-15.834-35.332-35.376v-41.75c-12.252-4.376-23.292-10.958-33.042-19.25l-36.292 21c-16.958 9.75-38.584 4-48.334-12.958-9.75-16.834-3.876-38.5 13-48.252l35.918-20.75c-1.168-6.292-1.918-12.668-1.918-19.292 0-6.626 0.75-13 1.918-19.248l-35.916-20.75c-16.918-9.75-22.75-31.5-13-48.376s31.376-22.624 48.25-12.876l36.334 20.876c9.748-8.25 20.792-14.75 33.084-19.124v-41.876c0-19.498 15.832-35.248 35.332-35.248s35.376 15.75 35.376 35.248v41.876c12.25 4.376 23.376 10.876 33.042 19.25l36.334-21c16.916-9.75 38.498-4 48.25 12.876 9.748 16.874 3.998 38.5-12.918 48.374zM512 77.25c-19.5 0-35.376 15.876-35.376 35.376s15.876 35.292 35.376 35.292 35.334-15.792 35.334-35.292-15.834-35.376-35.334-35.376zM948.332 167.5l-24.166 6.416c-0.582 7.666-2.416 14.958-5.792 21.958l17.542 17.542c8.25 8.25 8.208 21.584 0 29.708-8.166 8.208-21.416 8.25-29.666 0l-17.582-17.5c-6.918 3.25-14.292 5.124-21.918 5.75l-6.418 24.124c-2.998 11.166-14.5 17.876-25.748 14.876-11.208-3.042-17.75-14.542-14.834-25.75l6.418-23.792c-3.168-2.168-6.168-4.584-9-7.334-2.75-2.834-5.084-5.832-7.252-8.918l-23.792 6.418c-11.208 2.998-22.792-3.752-25.792-14.876-2.998-11.25 3.752-22.708 14.834-25.75l24-6.458c0.668-7.542 2.584-14.916 5.958-21.918l-17.624-17.624c-8.166-8.208-8.124-21.458 0.084-29.624 8.166-8.166 21.416-8.25 29.584-0.084l17.664 17.666c6.918-3.414 14.336-5.332 22.002-5.914l6.332-24.042c3.084-11.208 14.5-17.876 25.752-14.876 11.166 3 17.914 14.498 14.916 25.834l-6.418 23.792c3 2.124 6.084 4.5 8.918 7.25 2.75 2.792 5.084 5.876 7.248 8.958l23.834-6.418c11.208-3 22.75 3.708 25.708 14.834 3 11.17-3.624 22.668-14.792 25.752zM876.624 154.124c-8.25-8.25-21.542-8.208-29.75 0-8.124 8.124-8.208 21.458 0 29.708 8.208 8.166 21.542 8.166 29.75 0 8.126-8.208 8.126-21.582 0-29.708zM237.876 275l-23.75-6.376c-2.208 3-4.5 6.042-7.292 8.876-2.832 2.75-5.832 5.124-8.958 7.25l6.376 23.876c3 11.208-3.668 22.75-14.75 25.708-11.25 3-22.75-3.668-25.75-14.834l-6.5-24.124c-7.624-0.624-14.916-2.5-21.876-5.792l-17.624 17.542c-8.25 8.25-21.5 8.208-29.668 0-8.208-8.208-8.208-21.5 0-29.708l17.542-17.542c-3.292-7-5.208-14.376-5.792-21.958l-24.084-6.416c-11.25-3.084-17.918-14.5-14.916-25.75 3.042-11.166 14.542-17.75 25.792-14.834l23.75 6.46c2.124-3.208 4.5-6.21 7.376-9.002 2.75-2.75 5.75-5.208 8.876-7.25l-6.376-23.792c-3-11.25 3.668-22.834 14.832-25.834 11.252-3 22.668 3.666 25.668 14.876l6.5 24c7.624 0.624 15 2.542 22 5.876l17.582-17.584c8.168-8.248 21.418-8.082 29.668 0.084 8.124 8.124 8.25 21.416 0 29.624l-17.624 17.624c3.376 6.92 5.376 14.376 5.876 22.002l24.124 6.376c11.124 3.042 17.792 14.5 14.792 25.75-3.002 11.12-14.502 17.788-25.794 14.872zM177.124 218.084c-8.208-8.208-21.5-8.208-29.75 0-8.124 8.166-8.124 21.542 0 29.666 8.25 8.166 21.542 8.166 29.75 0s8.126-21.5 0-29.666zM1024 608c0 123.5-100.5 224-224 224-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM192 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM512 256c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM832 320c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM704 64c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64zM320 64c-35.376 0-64-28.624-64-64s28.624-64 64-64 64 28.624 64 64-28.624 64-64 64z" />
|
||||
<glyph unicode="" d="M976.668 465.166c29.248-37.832 47.332-84.624 47.332-136 0-123.498-100.5-224-224-224-27.376 0-54.168 5-79.418 14.666-57.916-50.498-131.498-78.666-208.582-78.666-77 0-150.668 28.168-208.582 78.666-25.25-9.666-52.042-14.666-79.418-14.666-123.5 0-224 100.502-224 224 0 123.5 100.5 224 224 224 10.624 0 21.124-0.75 31.584-2.25 1.042 1.458 2.332 2.75 3.416 4.166-1.624 9.876-3 19.792-3 30.082 0 98.334 80 178.292 178.25 178.292 4.832 0 9.624-0.208 14.376-0.584 46.25 57.708 116 91.958 191.376 91.958 75.418 0 145.124-34.25 191.376-91.958 4.75 0.376 9.5 0.584 14.292 0.584 98.33 0.002 178.33-79.956 178.33-178.29 0-46.332-18.168-88.208-47.332-120z" />
|
||||
<glyph unicode="" d="M1024 690.334c0 98.292-80 178.248-178.334 178.248-4.792 0-9.542-0.166-14.292-0.54-46.25 57.666-115.956 91.958-191.374 91.958-75.376 0-145.124-34.292-191.376-91.958-4.75 0.374-9.542 0.54-14.376 0.54-98.248 0-178.248-79.958-178.248-178.248 0-10.292 1.376-20.25 3-30.084-1.084-1.416-2.376-2.708-3.416-4.166-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.502 100.5-224 224-224 27.376 0 54.168 4.998 79.418 14.666 36.708-32 80.208-53.876 126.414-66.416l-45.832-30.584 64-64-64-128 192 128-64 64 9.624 19.166c73.5 2.25 143.5 29.458 198.958 77.834 25.25-9.668 52.042-14.666 79.418-14.666 123.5 0 224 100.498 224 224 0 51.332-18.084 98.166-47.332 136 29.164 31.75 47.332 73.624 47.332 120z" />
|
||||
<glyph unicode="" d="M576 238.25v587.916c0 38.584-28.668 69.834-64 69.834-35.334 0-64-31.25-64-69.834v-587.916c-38.084-22.166-64-63.002-64-110.25 0-70.666 57.332-128 128-128 70.666 0 128 57.334 128 128 0 47.248-25.876 88.084-64 110.25z" />
|
||||
<glyph unicode="" d="M512 960c-282.792 0-512-229.208-512-512 0-282.75 229.208-512 512-512 282.75 0 512 229.25 512 512 0 282.792-229.25 512-512 512zM512 64c-211.75 0-384 172.25-384 384s172.25 384 384 384 384-172.25 384-384-172.25-384-384-384zM320 256l256 128 128 256-256-128-128-256z" />
|
||||
<glyph unicode="" d="M318.188 402.708h-2.084l-67.042 102.376-81.876 120.874h-63.5v-352.79h70.124v222.208h3.042l58.208-89.084 89.376-133.124h63.876v352.79h-70.124v-223.25zM412.938 251.668h51.668l129.582 392.664h-52.25l-129-392.664zM797.438 625.958h-71.666l-123.958-352.79h74.75l23.042 72.75h122.918l21.498-72.75h76.292l-122.876 352.79zM718.562 404.75l14.292 46.584 27.208 91.664h2l27.708-93.208 13.792-45.042h-85z" />
|
||||
<glyph unicode="" d="M418.334 607.25c-7.208 6.792-15.584 12.166-25.084 16.124-9.624 3.876-19.876 5.876-30.75 5.876-10.916 0-21.168-2-30.75-5.876-9.5-3.958-17.876-9.334-25.082-16.124-7.168-6.834-12.792-14.834-16.918-24.084-4.084-9.21-6.124-18.958-6.124-29.166 0-10.25 2.042-20 6.124-29.21 4.124-9.208 9.75-17.25 16.918-24.040 7.208-6.834 15.582-12.25 25.082-16.126 9.582-3.958 19.834-5.916 30.75-5.916 10.876 0 21.124 1.958 30.75 5.916 9.5 3.876 17.876 9.292 25.084 16.126 7.166 6.79 12.792 14.834 16.832 24.040 4.084 9.21 6.208 18.958 6.208 29.21 0 10.208-2.124 19.958-6.208 29.166-4.042 9.252-9.666 17.252-16.832 24.084zM387.624 529.918c-6.876-6.834-15.25-10.25-25.124-10.25s-18.25 3.418-25.124 10.25c-6.792 6.834-10.25 14.834-10.25 24.084 0 9.5 3.458 17.666 10.25 24.29 6.876 6.666 15.25 9.958 25.124 9.958s18.25-3.292 25.124-9.958c6.75-6.624 10.208-14.79 10.208-24.29 0-9.252-3.456-17.252-10.208-24.084zM670.5 336.418c-12.124-3.46-24.166-5.166-36.124-5.166-7.876 0-15.624 1.208-23.292 3.58-7.708 2.418-14.708 6.168-20.998 11.292-6.334 5.126-11.46 11.668-15.334 19.708-3.918 8-5.916 17.834-5.916 29.418v102.916c0 11.584 1.998 21.5 5.916 29.708 3.874 8.166 8.918 14.834 15.082 19.958 6.168 5.124 13.084 8.792 21 11 7.834 2.21 15.668 3.334 23.542 3.334 11.958 0 24.248-1.75 36.874-5.376 12.626-3.582 24.376-9.998 35.336-19.208l33.792 54.292c-13.708 11.916-29.958 20.624-48.958 26.124-18.918 5.416-38.584 8.166-59.086 8.166-16.708 0-33.166-2.416-49.166-7.168-16.042-4.792-30.292-11.958-42.75-21.5-12.416-9.584-22.542-21.416-30.166-35.582-7.75-14.168-11.582-30.666-11.582-49.416v-132.084c0-19.124 3.958-35.75 11.832-49.918 7.834-14.168 18.082-25.958 30.668-35.332 12.664-9.416 26.958-16.458 42.998-21.25 16.084-4.75 32.458-7.168 49.208-7.168 20.792 0 40.542 3.084 59.376 9.208 18.75 6.166 34.624 14.708 47.624 25.584l-33.292 54.292c-12.252-9.58-24.5-16.038-36.584-19.412z" />
|
||||
<glyph unicode="" d="M800 640c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224 0 123.5-100.5 224-224 224zM800 256c-34.25 0-65.832 11-91.876 29.334-46.956-56.582-116.876-93.334-196.124-93.334-79.25 0-149.168 36.752-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" d="M416 832c17.666 0 32 14.334 32 32v64c0 17.666-14.334 32-32 32s-32-14.334-32-32v-64c0-17.666 14.334-32 32-32zM664.876 747.666l45.25 45.25c12.498 12.5 12.498 32.75 0 45.25-12.5 12.5-32.75 12.5-45.25 0l-45.25-45.25c-12.5-12.5-12.5-32.75 0-45.25 12.498-12.5 32.75-12.5 45.25 0zM32 512h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32s14.334-32 32-32zM704 544c0-17.666 14.334-32 32-32h64c17.666 0 32 14.334 32 32s-14.334 32-32 32h-64c-17.666 0-32-14.334-32-32zM167.082 747.666c12.502-12.5 32.752-12.5 45.25 0 12.502 12.5 12.502 32.75 0 45.25l-45.25 45.25c-12.5 12.5-32.748 12.5-45.25 0-12.5-12.5-12.5-32.75 0-45.25l45.25-45.25zM800 448c-10.624 0-21.124-0.75-31.584-2.25-33.542 45.75-78.248 80.666-128.916 103-2.582 121.25-101.624 219.25-223.5 219.25-123.5 0-224-100.5-224-224 0-34.876 8.668-67.5 23-96.876-119.25-4.874-215-102.748-215-223.124 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM512 576c-91.876 0-177-39.624-236.75-106.5-11.874 22.334-19.25 47.416-19.25 74.5 0 88.376 71.624 160 160 160 79.624 0 145.124-58.334 157.416-134.5-20.040 4-40.498 6.5-61.416 6.5z" />
|
||||
<glyph unicode="" d="M417.062 605.458c-7.208 6.792-15.582 12.168-25.082 16.124-9.624 3.876-19.876 5.876-30.75 5.876-10.918 0-21.168-2-30.75-5.876-9.5-3.958-17.876-9.334-25.084-16.124-7.166-6.832-12.792-14.832-16.918-24.082-4.084-9.21-6.124-18.958-6.124-29.168 0-10.25 2.040-20 6.124-29.208 4.126-9.208 9.752-17.25 16.918-24.042 7.208-6.832 15.584-12.25 25.084-16.124 9.582-3.958 19.832-5.916 30.75-5.916 10.876 0 21.124 1.958 30.75 5.916 9.5 3.876 17.876 9.292 25.082 16.124 7.168 6.792 12.792 14.834 16.832 24.042 4.084 9.208 6.21 18.958 6.21 29.208 0 10.208-2.126 19.958-6.21 29.168-4.040 9.25-9.664 17.25-16.832 24.082zM386.354 528.126c-6.876-6.834-15.25-10.252-25.124-10.252s-18.25 3.418-25.124 10.252c-6.792 6.832-10.25 14.832-10.25 24.082 0 9.5 3.458 17.666 10.25 24.292 6.876 6.666 15.25 9.958 25.124 9.958s18.25-3.292 25.124-9.958c6.748-6.624 10.208-14.792 10.208-24.292 0-9.25-3.46-17.25-10.208-24.082zM741.644 558.334v63h-243.164v-352.792h70.126v143.876h147.958v62.958h-147.958v82.958h173.038z" />
|
||||
<glyph unicode="" d="M870.124 435.668c9.75 7.25 19.624 14.374 28.458 23.208 26.416 26.458 46.542 58.666 59.584 95.708 4.166 11.584 1.208 24.584-7.544 33.25-8.708 8.75-21.624 11.708-33.246 7.584-70.792-25-147.376-8-199.792 44.5-52.498 52.5-69.582 129.042-44.498 199.792 4.084 11.624 1.166 24.542-7.584 33.292-8.666 8.666-21.624 11.666-33.25 7.582-37.084-13.166-69.25-33.25-95.668-59.666-67.082-67-87.958-162-64.958-247.584-86.5-11.042-164.25-57-216.042-127.584-10.458 1.5-20.958 2.25-31.584 2.25-123.5 0-224-100.498-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5.002 79.418 14.668 57.912-50.5 131.58-78.668 208.58-78.668 77.084 0 150.666 28.168 208.582 78.668 25.25-9.666 52.042-14.668 79.418-14.668 123.5 0 224 100.5 224 224 0.002 98.876-64.832 182.042-153.874 211.668zM581.832 775.666c5.084 5.166 10.542 9.958 16.292 14.458-4.5-71.958 21.458-142.75 74.208-195.458 52.752-52.75 123.542-78.666 195.502-74.208-27.584-35.168-65.584-57.042-106.252-66.376-54.75 69.5-135.208 113.248-223.916 120.374-24.542 67.918-10.166 146.878 44.166 201.21z" />
|
||||
<glyph unicode="" d="M800 640c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224 0 123.5-100.5 224-224 224z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25-102.376 0-196.624-48.834-256.416-130.25-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 43.082-37.542 94.832-62.582 150.208-73.042l-69.626-69.624 64-64-64-192 192 192-64 64 22 65.998c68.916 4.876 134.25 31.086 186.582 76.668 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM800 448c-34.25 0-65.832 11-91.876 29.334-37.876-45.666-91.124-77.25-151.75-88.208l-44.374-5.126c-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25-102.376 0-196.624-48.834-256.416-130.25-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 24.582-21.416 52.5-37.916 81.832-50.832l49.832 49.748c-46.916 15.252-88.332 42.542-119.208 79.752-25.998-18.334-57.624-29.334-91.874-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160c-34.25 0-65.832 11-91.876 29.334-20.75-25.042-46.624-45.334-75.25-61.168l-26.874-80.666c41.75 13.124 81 33.876 114.582 63.166 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224zM384 256l64-64-64-192 192 192-64 64 64 192-192-192z" />
|
||||
<glyph unicode="" d="M800 832c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25-102.376 0-196.624-48.834-256.416-130.25-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224s100.5-224 224-224c27.376 0 54.168 5 79.418 14.666 43.082-37.542 94.832-62.582 150.208-73.042l-69.626-69.624 64-64-64-192 192 192-64 64 22 65.998c68.916 4.876 134.25 31.086 186.582 76.668 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224s-100.5 224-224 224z" />
|
||||
<glyph unicode="" d="M800 768c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224 0 123.5-100.5 224-224 224zM448 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
<glyph unicode="" d="M800 768c-10.624 0-21.124-0.75-31.584-2.25-59.748 81.416-154.040 130.25-256.416 130.25s-196.624-48.834-256.416-130.25c-10.46 1.5-20.96 2.25-31.584 2.25-123.5 0-224-100.5-224-224 0-123.5 100.5-224 224-224 27.376 0 54.168 5 79.418 14.666 57.914-50.5 131.582-78.666 208.582-78.666 77.084 0 150.666 28.166 208.582 78.666 25.25-9.666 52.042-14.666 79.418-14.666 123.5 0 224 100.5 224 224 0 123.5-100.5 224-224 224zM800 384c-34.25 0-65.832 11-91.876 29.334-46.956-56.584-116.876-93.334-196.124-93.334-79.25 0-149.168 36.75-196.124 93.334-26-18.334-57.626-29.334-91.876-29.334-88.376 0-160 71.624-160 160s71.624 160 160 160c21.624 0 42.124-4.416 60.876-12.166 42.458 82.832 127.706 140.166 227.124 140.166s184.668-57.334 227.082-140.166c18.794 7.75 39.336 12.166 60.918 12.166 88.376 0 160-71.624 160-160s-71.624-160-160-160zM448 64c0-35.376 28.624-64 64-64s64 28.624 64 64-64 128-64 128-64-92.624-64-128z" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
|
@ -0,0 +1,65 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
This is a custom SVG font generated by IcoMoon.
|
||||
<iconset grid="16"></iconset>
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="VideoJS" horiz-adv-x="512" >
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph class="hidden" unicode="" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
|
||||
<glyph unicode="" d="M 64,416L 224,416L 224,32L 64,32zM 288,416L 448,416L 448,32L 288,32z" />
|
||||
<glyph unicode="" d="M 200.666,440.666 C 213.5,453.5 224,449.15 224,431 L 224,17 C 224-1.15 213.5-5.499 200.666,7.335 L 80,128 L 0,128 L 0,320 L 80,320 L 200.666,440.666 Z" />
|
||||
<glyph unicode="" d="M 274.51,109.49c-6.143,0-12.284,2.343-16.971,7.029c-9.373,9.373-9.373,24.568,0,33.941
|
||||
c 40.55,40.55, 40.55,106.529,0,147.078c-9.373,9.373-9.373,24.569,0,33.941c 9.373,9.372, 24.568,9.372, 33.941,0
|
||||
c 59.265-59.265, 59.265-155.696,0-214.961C 286.794,111.833, 280.652,109.49, 274.51,109.49zM 200.666,440.666 C 213.5,453.5 224,449.15 224,431 L 224,17 C 224-1.15 213.5-5.499 200.666,7.335 L 80,128 L 0,128 L 0,320 L 80,320 L 200.666,440.666 Z" />
|
||||
<glyph unicode="" d="M 359.765,64.235c-6.143,0-12.284,2.343-16.971,7.029c-9.372,9.372-9.372,24.568,0,33.941
|
||||
c 65.503,65.503, 65.503,172.085,0,237.588c-9.372,9.373-9.372,24.569,0,33.941c 9.372,9.371, 24.569,9.372, 33.941,0
|
||||
C 417.532,335.938, 440,281.696, 440,224c0-57.695-22.468-111.938-63.265-152.735C 372.049,66.578, 365.907,64.235, 359.765,64.235zM 274.51,109.49c-6.143,0-12.284,2.343-16.971,7.029c-9.373,9.373-9.373,24.568,0,33.941
|
||||
c 40.55,40.55, 40.55,106.529,0,147.078c-9.373,9.373-9.373,24.569,0,33.941c 9.373,9.372, 24.568,9.372, 33.941,0
|
||||
c 59.265-59.265, 59.265-155.696,0-214.961C 286.794,111.833, 280.652,109.49, 274.51,109.49zM 200.666,440.666 C 213.5,453.5 224,449.15 224,431 L 224,17 C 224-1.15 213.5-5.499 200.666,7.335 L 80,128 L 0,128 L 0,320 L 80,320 L 200.666,440.666 Z" />
|
||||
<glyph unicode="" d="M 445.020,18.98c-6.143,0-12.284,2.343-16.971,7.029c-9.372,9.373-9.372,24.568,0,33.941
|
||||
C 471.868,103.771, 496.001,162.030, 496.001,224c0,61.969-24.133,120.229-67.952,164.049c-9.372,9.373-9.372,24.569,0,33.941
|
||||
c 9.372,9.372, 24.569,9.372, 33.941,0c 52.885-52.886, 82.011-123.2, 82.011-197.99c0-74.791-29.126-145.104-82.011-197.99
|
||||
C 457.304,21.323, 451.162,18.98, 445.020,18.98zM 359.765,64.235c-6.143,0-12.284,2.343-16.971,7.029c-9.372,9.372-9.372,24.568,0,33.941
|
||||
c 65.503,65.503, 65.503,172.085,0,237.588c-9.372,9.373-9.372,24.569,0,33.941c 9.372,9.371, 24.569,9.372, 33.941,0
|
||||
C 417.532,335.938, 440,281.696, 440,224c0-57.695-22.468-111.938-63.265-152.735C 372.049,66.578, 365.907,64.235, 359.765,64.235zM 274.51,109.49c-6.143,0-12.284,2.343-16.971,7.029c-9.373,9.373-9.373,24.568,0,33.941
|
||||
c 40.55,40.55, 40.55,106.529,0,147.078c-9.373,9.373-9.373,24.569,0,33.941c 9.373,9.372, 24.568,9.372, 33.941,0
|
||||
c 59.265-59.265, 59.265-155.696,0-214.961C 286.794,111.833, 280.652,109.49, 274.51,109.49zM 200.666,440.666 C 213.5,453.5 224,449.15 224,431 L 224,17 C 224-1.15 213.5-5.499 200.666,7.335 L 80,128 L 0,128 L 0,320 L 80,320 L 200.666,440.666 Z" horiz-adv-x="544" />
|
||||
<glyph unicode="" d="M 256,480L 96,224L 256-32L 416,224 z" />
|
||||
<glyph unicode="" d="M 0,480 L 687.158,480 L 687.158-35.207 L 0-35.207 L 0,480 z M 622.731,224.638 C 621.878,314.664 618.46,353.922 597.131,381.656 C 593.291,387.629 586.038,391.042 580.065,395.304 C 559.158,410.669 460.593,416.211 346.247,416.211 C 231.896,416.211 128.642,410.669 108.162,395.304 C 101.762,391.042 94.504,387.629 90.242,381.656 C 69.331,353.922 66.349,314.664 65.069,224.638 C 66.349,134.607 69.331,95.353 90.242,67.62 C 94.504,61.22 101.762,58.233 108.162,53.967 C 128.642,38.18 231.896,33.060 346.247,32.207 C 460.593,33.060 559.158,38.18 580.065,53.967 C 586.038,58.233 593.291,61.22 597.131,67.62 C 618.46,95.353 621.878,134.607 622.731,224.638 z M 331.179,247.952 C 325.389,318.401 287.924,359.905 220.901,359.905 C 159.672,359.905 111.54,304.689 111.54,215.965 C 111.54,126.859 155.405,71.267 227.907,71.267 C 285.79,71.267 326.306,113.916 332.701,184.742 L 263.55,184.742 C 260.81,158.468 249.843,138.285 226.69,138.285 C 190.136,138.285 183.435,174.462 183.435,212.92 C 183.435,265.854 198.665,292.886 223.951,292.886 C 246.492,292.886 260.81,276.511 262.939,247.952 L 331.179,247.952 z M 570.013,247.952 C 564.228,318.401 526.758,359.905 459.74,359.905 C 398.507,359.905 350.379,304.689 350.379,215.965 C 350.379,126.859 394.244,71.267 466.746,71.267 C 524.625,71.267 565.14,113.916 571.536,184.742 L 502.384,184.742 C 499.649,158.468 488.682,138.285 465.529,138.285 C 428.971,138.285 422.27,174.462 422.27,212.92 C 422.27,265.854 437.504,292.886 462.785,292.886 C 485.327,292.886 499.649,276.511 501.778,247.952 L 570.013,247.952 z " horiz-adv-x="687.158" />
|
||||
<glyph unicode="" d="M 64,416L 448,416L 448,32L 64,32z" />
|
||||
<glyph unicode="" d="M 192,416A64,64 12780 1 1 320,416A64,64 12780 1 1 192,416zM 327.765,359.765A64,64 12780 1 1 455.765,359.765A64,64 12780 1 1 327.765,359.765zM 416,224A32,32 12780 1 1 480,224A32,32 12780 1 1 416,224zM 359.765,88.235A32,32 12780 1 1 423.765,88.23500000000001A32,32 12780 1 1 359.765,88.23500000000001zM 224.001,32A32,32 12780 1 1 288.001,32A32,32 12780 1 1 224.001,32zM 88.236,88.235A32,32 12780 1 1 152.236,88.23500000000001A32,32 12780 1 1 88.236,88.23500000000001zM 72.236,359.765A48,48 12780 1 1 168.236,359.765A48,48 12780 1 1 72.236,359.765zM 28,224A36,36 12780 1 1 100,224A36,36 12780 1 1 28,224z" />
|
||||
<glyph unicode="" d="M 224,192 L 224-16 L 144,64 L 48-32 L 0,16 L 96,112 L 16,192 ZM 512,432 L 416,336 L 496,256 L 288,256 L 288,464 L 368,384 L 464,480 Z" />
|
||||
<glyph unicode="" d="M 256,448 C 397.385,448 512,354.875 512,240 C 512,125.124 397.385,32 256,32 C 242.422,32 229.095,32.867 216.088,34.522 C 161.099-20.467 95.463-30.328 32-31.776 L 32-18.318 C 66.268-1.529 96,29.052 96,64 C 96,68.877 95.621,73.665 94.918,78.348 C 37.020,116.48 0,174.725 0,240 C 0,354.875 114.615,448 256,448 Z" />
|
||||
<glyph unicode="" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,352
|
||||
c 70.692,0, 128-57.308, 128-128s-57.308-128-128-128s-128,57.308-128,128S 185.308,352, 256,352z M 408.735,71.265
|
||||
C 367.938,30.468, 313.695,8, 256,8c-57.696,0-111.938,22.468-152.735,63.265C 62.468,112.062, 40,166.304, 40,224
|
||||
c0,57.695, 22.468,111.938, 63.265,152.735l 33.941-33.941c0,0,0,0,0,0c-65.503-65.503-65.503-172.085,0-237.588
|
||||
C 168.937,73.475, 211.125,56, 256,56c 44.874,0, 87.062,17.475, 118.794,49.206c 65.503,65.503, 65.503,172.084,0,237.588l 33.941,33.941
|
||||
C 449.532,335.938, 472,281.695, 472,224C 472,166.304, 449.532,112.062, 408.735,71.265z" />
|
||||
<glyph unicode="" d="M 512,224c-0.639,33.431-7.892,66.758-21.288,97.231c-13.352,30.5-32.731,58.129-56.521,80.96
|
||||
c-23.776,22.848-51.972,40.91-82.492,52.826C 321.197,466.979, 288.401,472.693, 256,472c-32.405-0.641-64.666-7.687-94.167-20.678
|
||||
c-29.524-12.948-56.271-31.735-78.367-54.788c-22.112-23.041-39.58-50.354-51.093-79.899C 20.816,287.104, 15.309,255.375, 16,224
|
||||
c 0.643-31.38, 7.482-62.574, 20.067-91.103c 12.544-28.55, 30.738-54.414, 53.055-75.774c 22.305-21.377, 48.736-38.252, 77.307-49.36
|
||||
C 194.988-3.389, 225.652-8.688, 256-8c 30.354,0.645, 60.481,7.277, 88.038,19.457c 27.575,12.141, 52.558,29.74, 73.183,51.322
|
||||
c 20.641,21.57, 36.922,47.118, 47.627,74.715c 6.517,16.729, 10.94,34.2, 13.271,51.899c 0.623-0.036, 1.249-0.060, 1.881-0.060
|
||||
c 17.673,0, 32,14.326, 32,32c0,0.898-0.047,1.786-0.119,2.666L 512,223.999 z M 461.153,139.026c-11.736-26.601-28.742-50.7-49.589-70.59
|
||||
c-20.835-19.905-45.5-35.593-72.122-45.895C 312.828,12.202, 284.297,7.315, 256,8c-28.302,0.649-56.298,6.868-81.91,18.237
|
||||
c-25.625,11.333-48.842,27.745-67.997,47.856c-19.169,20.099-34.264,43.882-44.161,69.529C 51.997,169.264, 47.318,196.729, 48,224
|
||||
c 0.651,27.276, 6.664,54.206, 17.627,78.845c 10.929,24.65, 26.749,46.985, 46.123,65.405c 19.365,18.434, 42.265,32.935, 66.937,42.428
|
||||
C 203.356,420.208, 229.755,424.681, 256,424c 26.25-0.653, 52.114-6.459, 75.781-17.017c 23.676-10.525, 45.128-25.751, 62.812-44.391
|
||||
c 17.698-18.629, 31.605-40.647, 40.695-64.344C 444.412,274.552, 448.679,249.219, 448,224l 0.119,0 c-0.072-0.88-0.119-1.768-0.119-2.666
|
||||
c0-16.506, 12.496-30.087, 28.543-31.812C 473.431,172.111, 468.278,155.113, 461.153,139.026z" />
|
||||
<glyph unicode="" d="M 256,480 C 116.626,480 3.271,368.619 0.076,230.013 C 3.036,350.945 94.992,448 208,448 C 322.875,448 416,347.712 416,224 C 416,197.49 437.49,176 464,176 C 490.51,176 512,197.49 512,224 C 512,365.385 397.385,480 256,480 ZM 256-32 C 395.374-32 508.729,79.381 511.924,217.987 C 508.964,97.055 417.008,0 304,0 C 189.125,0 96,100.288 96,224 C 96,250.51 74.51,272 48,272 C 21.49,272 0,250.51 0,224 C 0,82.615 114.615-32 256-32 Z" />
|
||||
<glyph unicode="" d="M 432,128c-22.58,0-42.96-9.369-57.506-24.415L 158.992,211.336C 159.649,215.462, 160,219.689, 160,224
|
||||
s-0.351,8.538-1.008,12.663l 215.502,107.751C 389.040,329.369, 409.42,320, 432,320c 44.183,0, 80,35.817, 80,80S 476.183,480, 432,480
|
||||
s-80-35.817-80-80c0-4.311, 0.352-8.538, 1.008-12.663L 137.506,279.585C 122.96,294.63, 102.58,304, 80,304c-44.183,0-80-35.818-80-80
|
||||
c0-44.184, 35.817-80, 80-80c 22.58,0, 42.96,9.369, 57.506,24.414l 215.502-107.751C 352.352,56.538, 352,52.311, 352,48
|
||||
c0-44.184, 35.817-80, 80-80s 80,35.816, 80,80C 512,92.182, 476.183,128, 432,128z" />
|
||||
<glyph unicode="" d="M 96,416L 416,224L 96,32 z" />
|
||||
<glyph unicode="" d="M 512,480 L 512,272 L 432,352 L 336,256 L 288,304 L 384,400 L 304,480 ZM 224,144 L 128,48 L 208-32 L 0-32 L 0,176 L 80,96 L 176,192 Z" />
|
||||
<glyph unicode=" " horiz-adv-x="256" />
|
||||
</font></defs></svg>
|
||||
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 911 B |
|
After Width: | Height: | Size: 985 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 632 B |