update code
|
@ -0,0 +1,11 @@
|
|||
# 页面标题
|
||||
VUE_APP_TITLE = 北跨泾河-产发工程数字管理平台
|
||||
|
||||
# 开发环境配置
|
||||
ENV = 'development'
|
||||
|
||||
# 北跨泾河-产发工程数字管理平台/开发环境
|
||||
VUE_APP_BASE_API = '/jhapi'
|
||||
|
||||
# 路由懒加载
|
||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
|
@ -0,0 +1,8 @@
|
|||
# 页面标题
|
||||
VUE_APP_TITLE = 北跨泾河-产发工程数字管理平台
|
||||
|
||||
# 生产环境配置
|
||||
ENV = 'production'
|
||||
|
||||
# 北跨泾河-产发工程数字管理平台/生产环境
|
||||
VUE_APP_BASE_API = '/jhapi'
|
|
@ -0,0 +1,10 @@
|
|||
# 页面标题
|
||||
VUE_APP_TITLE = 北跨泾河-产发工程数字管理平台
|
||||
|
||||
NODE_ENV = production
|
||||
|
||||
# 测试环境配置
|
||||
ENV = 'staging'
|
||||
|
||||
# 北跨泾河-产发工程数字管理平台/测试环境
|
||||
VUE_APP_BASE_API = '/stage-api'
|
|
@ -0,0 +1,6 @@
|
|||
/node_modules
|
||||
/dist
|
||||
/src/*
|
||||
/package-lock.json
|
||||
.DS_Store
|
||||
vue.config.js
|
|
@ -1,11 +1,23 @@
|
|||
# ---> Vue
|
||||
# gitignore template for Vue.js projects
|
||||
#
|
||||
# Recommended template: Node.gitignore
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
/doc
|
||||
|
||||
# TODO: where does this rule come from?
|
||||
docs/_book
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# TODO: where does this rule come from?
|
||||
test/
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
|
25
README.md
|
@ -1,3 +1,24 @@
|
|||
# jhbigscreen
|
||||
# v3
|
||||
|
||||
jhbigscreen
|
||||
## Project setup
|
||||
```
|
||||
yarn install
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
```
|
||||
yarn serve
|
||||
```
|
||||
|
||||
### Compiles and minifies for production
|
||||
```
|
||||
yarn build
|
||||
```
|
||||
|
||||
### Lints and fixes files
|
||||
```
|
||||
yarn lint
|
||||
```
|
||||
|
||||
### Customize configuration
|
||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
module.exports = {
|
||||
presets: [
|
||||
'@vue/cli-plugin-babel/preset'
|
||||
]
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "esnext",
|
||||
"baseUrl": "./",
|
||||
"moduleResolution": "node",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/*"
|
||||
]
|
||||
},
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"scripthost"
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"name": "v3",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "0.24.0",
|
||||
"core-js": "^3.8.3",
|
||||
"dayjs": "^1.11.9",
|
||||
"element-ui": "^2.15.13",
|
||||
"file-saver": "2.0.5",
|
||||
"js-cookie": "^3.0.5",
|
||||
"less": "^4.1.3",
|
||||
"less-loader": "^11.1.3",
|
||||
"vue": "^2.6.14",
|
||||
"vue-router": "^4.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.16",
|
||||
"@babel/eslint-parser": "^7.12.16",
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-vue": "^8.0.3",
|
||||
"vue-template-compiler": "^2.6.14"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
"env": {
|
||||
"node": true
|
||||
},
|
||||
"extends": [
|
||||
"plugin:vue/essential",
|
||||
"eslint:recommended"
|
||||
],
|
||||
"parserOptions": {
|
||||
"parser": "@babel/eslint-parser"
|
||||
},
|
||||
"rules": {}
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,148 @@
|
|||
.screen-module{
|
||||
padding: 10px;
|
||||
}
|
||||
.module-title{
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
padding-left: 15px;
|
||||
font-size: 16px;
|
||||
}
|
||||
.module-title-red{
|
||||
padding-left: 40px;
|
||||
}
|
||||
|
||||
.screen-one-1-1{
|
||||
height: 310px;
|
||||
background: url("../images/one/1x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-1-2{
|
||||
height: 310px;
|
||||
background: url("../images/one/1x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-1-3{
|
||||
height: 310px;
|
||||
background: url("../images/one/1x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-1-4{
|
||||
height: 310px;
|
||||
background: url("../images/one/1x4.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
.screen-one-2-1{
|
||||
height: 640px;
|
||||
background: url("../images/one/2x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-2-2{
|
||||
height: 640px;
|
||||
background: url("../images/one/2x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-2-3{
|
||||
height: 640px;
|
||||
background: url("../images/one/2x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-2-4{
|
||||
height: 640px;
|
||||
background: url("../images/one/2x4.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
.screen-one-3-1{
|
||||
height: 970px;
|
||||
background: url("../images/one/3x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-3-2{
|
||||
height: 970px;
|
||||
background: url("../images/one/3x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-3-3{
|
||||
height: 970px;
|
||||
background: url("../images/one/3x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-3-4{
|
||||
height: 970px;
|
||||
background: url("../images/one/3x4.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.screen-two-1-1{
|
||||
height: 290px;
|
||||
background: url("../images/two/1x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-1-2{
|
||||
height: 290px;
|
||||
background: url("../images/two/1x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-1-3{
|
||||
height: 290px;
|
||||
background: url("../images/two/1x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-1-4{
|
||||
height: 290px;
|
||||
background: url("../images/two/1x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
|
||||
.screen-two-2-1{
|
||||
height: 600px;
|
||||
background: url("../images/two/2x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-2-2{
|
||||
height: 600px;
|
||||
background: url("../images/two/2x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-2-3{
|
||||
height: 600px;
|
||||
background: url("../images/two/2x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-2-4{
|
||||
height: 600px;
|
||||
background: url("../images/two/2x4.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
.screen-two-3-1{
|
||||
height: 920px;
|
||||
background: url("../images/two/3x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-3-2{
|
||||
height: 920px;
|
||||
background: url("../images/two/3x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-3-3{
|
||||
height: 920px;
|
||||
background: url("../images/two/3x3.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-two-3-4{
|
||||
height: 920px;
|
||||
background: url("../images/two/3x4.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.screen-red-1-1{
|
||||
height: 310px;
|
||||
background: url("../images/red/1x1.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-red-1-2{
|
||||
height: 310px;
|
||||
background: url("../images/red/1x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-red-2-2{
|
||||
height: 640px;
|
||||
background: url("../images/red/2x2.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
|
||||
.screen-big{
|
||||
height: 310px;
|
||||
background: url("../images/red/big_bgd.png") no-repeat center/100% 100%;
|
||||
}
|
||||
|
||||
.screen-one-0-5{
|
||||
height: 475px;
|
||||
background: url("../images/red/0x5.png") no-repeat center/100% 100%;
|
||||
}
|
||||
.screen-one-video{
|
||||
height: 970px;
|
||||
background: url("../images/red/video.png") no-repeat center/100% 100%;
|
||||
}
|
|
@ -0,0 +1,176 @@
|
|||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "title-font";
|
||||
src:url(../fonts/HYLXTJ.eot),url(../fonts/HYLXTJ.svg),url(../fonts/HYLXTJ.ttf),url(../fonts/HYLXTJ.woff),url(../fonts/HYLXTJ.woff2)
|
||||
}
|
||||
@font-face {
|
||||
font-family: "number-font";
|
||||
src:url(../fonts/PUTHIAfont.eot),url(../fonts/PUTHIAfont.svg),url(../fonts/PUTHIAfont.ttf),url(../fonts/PUTHIAfont.woff),url(../fonts/PUTHIAfont.woff2)
|
||||
}
|
||||
p,label,ul{
|
||||
margin: 0;
|
||||
font-weight: 400;
|
||||
}
|
||||
table{
|
||||
width: 100%;
|
||||
}
|
||||
body{
|
||||
min-width: 1500px;
|
||||
min-height: 800px;
|
||||
}
|
||||
[v-cloak] {
|
||||
display: none;
|
||||
}
|
||||
#app{
|
||||
height: 100vh;
|
||||
min-height: 800px;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
}
|
||||
.login-bgd{
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width:1400px;
|
||||
background: url("../images/login_bgd.png") no-repeat 50%;
|
||||
background-size: cover;
|
||||
}
|
||||
.login-max{
|
||||
height: 100%;
|
||||
position: relative;
|
||||
display: flex;
|
||||
}
|
||||
.login-content{
|
||||
width: 520px;
|
||||
}
|
||||
.login-content-max{
|
||||
padding: 100px 50px;
|
||||
}
|
||||
.login-logo{
|
||||
text-align: center;
|
||||
}
|
||||
.login-title{
|
||||
padding: 20px;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
font-size: 28px;
|
||||
text-align: center;
|
||||
}
|
||||
.login-content-form{
|
||||
padding:30px;
|
||||
position: relative;
|
||||
}
|
||||
.login-mode-max{
|
||||
display: flex;
|
||||
border-bottom: 1px solid #aaaaaa;
|
||||
}
|
||||
.login-mode{
|
||||
width: 50%;
|
||||
text-align: center;
|
||||
padding: 15px 0;
|
||||
cursor: pointer;
|
||||
color: #aaaaaa;
|
||||
}
|
||||
.login-mode.active{
|
||||
color: #0063b1;
|
||||
font-weight: bold;
|
||||
}
|
||||
.login-mode-hr-max{
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
.login-mode-hr {
|
||||
border-top: 3px solid #0162b1;
|
||||
width: 50%;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
transition: left 0.3s;
|
||||
|
||||
}
|
||||
.login-form-fill{
|
||||
padding:0 30px;
|
||||
}
|
||||
.login-form-text{
|
||||
padding: 15px 0 20px 5px;
|
||||
color: #888888;
|
||||
}
|
||||
.login-form-fill-min{
|
||||
padding: 10px 0;
|
||||
}
|
||||
.login-form-fill-min input{
|
||||
height: 50px;
|
||||
font-size: 16px;
|
||||
}
|
||||
.login-form-state{
|
||||
padding: 15px 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.login-forgot-password{
|
||||
font-size: 14px;
|
||||
color: #3da2ff;
|
||||
cursor: pointer;
|
||||
}
|
||||
.login-form-btn{
|
||||
padding: 15px 0;
|
||||
}
|
||||
.login-tips{
|
||||
height: 40px;
|
||||
color: #ff0000;
|
||||
text-align: center;
|
||||
}
|
||||
.login-submit-btn{
|
||||
background: #0162b1;
|
||||
text-align: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
color: #ffffff;
|
||||
cursor: pointer;
|
||||
}
|
||||
.login-submit-btn:hover{
|
||||
background: #0274d1;
|
||||
}
|
||||
.login-submit-btn:active{
|
||||
background: #0162b1;
|
||||
}
|
||||
.login-form-code{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.login-form-code button{
|
||||
width: 150px;
|
||||
height: 50px;
|
||||
border: 0;
|
||||
background: #0162b1;
|
||||
cursor: pointer;
|
||||
color: #ffffff;
|
||||
}
|
||||
.login-form-code button:hover{
|
||||
background: #0274d1;
|
||||
}
|
||||
.login-form-code button:active{
|
||||
background: #0162b1;
|
||||
}
|
||||
.left-enter,
|
||||
.left-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateX(-100px);
|
||||
}
|
||||
.left-enter-active,
|
||||
.left-leave-active{
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
.right-enter,
|
||||
.right-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateX(100px);
|
||||
}
|
||||
.right-enter-active,
|
||||
.right-leave-active{
|
||||
transition: all 0.5s ease;
|
||||
}
|
After Width: | Height: | Size: 3.2 MiB |
|
@ -0,0 +1,310 @@
|
|||
<?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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
|
||||
<defs>
|
||||
<font id="PUTHIAfontRegular" horiz-adv-x="962" >
|
||||
<font-face
|
||||
font-family="PUTHIAfont"
|
||||
font-weight="5"
|
||||
font-stretch="normal"
|
||||
units-per-em="1750"
|
||||
panose-1="0 0 0 0 0 0 0 0 0 0"
|
||||
ascent="1556"
|
||||
descent="-194"
|
||||
x-height="681"
|
||||
cap-height="1269"
|
||||
bbox="-73 -149 1459 1556"
|
||||
underline-thickness="17"
|
||||
underline-position="-122"
|
||||
unicode-range="U+0020-00D7"
|
||||
/>
|
||||
<missing-glyph horiz-adv-x="1556"
|
||||
d="M97 0v1556h1362v-1556h-1362zM1362 97v1362h-1168v-1362h1168z" />
|
||||
<glyph glyph-name=".notdef" horiz-adv-x="1556"
|
||||
d="M97 0v1556h1362v-1556h-1362zM1362 97v1362h-1168v-1362h1168z" />
|
||||
<glyph glyph-name=".null" unicode="×" horiz-adv-x="0"
|
||||
/>
|
||||
<glyph glyph-name=".null" unicode="Ł" horiz-adv-x="0"
|
||||
/>
|
||||
<glyph glyph-name=".null" unicode="ý" horiz-adv-x="0"
|
||||
/>
|
||||
<glyph glyph-name="nonmarkingreturn"
|
||||
/>
|
||||
<glyph glyph-name="space" unicode=" "
|
||||
/>
|
||||
<glyph glyph-name="exclam" unicode="!"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22
|
||||
t10 -18z" />
|
||||
<glyph glyph-name="quotedbl" unicode="""
|
||||
d="M162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="quotesingle" unicode="'"
|
||||
d="M162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="parenleft" unicode="("
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137
|
||||
q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="parenright" unicode=")"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5
|
||||
t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="plus" unicode="+"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="comma" unicode="," horiz-adv-x="114"
|
||||
d="M-52 33q-16 18 -16 44q0 37 28.5 66.5t67.5 29.5q47 0 79 -38q15 -21 15 -53q0 -49 -25 -92l-33 -52q-11 -19 -33.5 -39.5t-37.5 -29t-38 -18.5l36 61q10 19 15.5 38t5.5 35q0 9 -5 22l-30 8q-18 7 -29 18z" />
|
||||
<glyph glyph-name="hyphen" unicode="-"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41z" />
|
||||
<glyph glyph-name="hyphen" unicode="­"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41z" />
|
||||
<glyph glyph-name="period" unicode="." horiz-adv-x="114"
|
||||
d="M-73 -7l6 154h176l-14 -154h-168z" />
|
||||
<glyph glyph-name="slash" unicode="/"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55
|
||||
l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="zero" unicode="0"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137
|
||||
q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22
|
||||
t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="one" unicode="1"
|
||||
d="M861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="two" unicode="2"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="three" unicode="3"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z
|
||||
" />
|
||||
<glyph glyph-name="four" unicode="4"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20
|
||||
q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="five" unicode="5"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="six" unicode="6"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22
|
||||
q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="seven" unicode="7"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41
|
||||
q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="eight" unicode="8"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32
|
||||
q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="nine" unicode="9"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22
|
||||
t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="colon" unicode=":" horiz-adv-x="431"
|
||||
d="M132 847l13 175h189l-20 -175h-182zM103 371l14 175h189l-21 -175h-182z" />
|
||||
<glyph glyph-name="semicolon" unicode=";"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58z" />
|
||||
<glyph glyph-name="less" unicode="<"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58z" />
|
||||
<glyph glyph-name="equal" unicode="="
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41z" />
|
||||
<glyph glyph-name="greater" unicode=">"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="question" unicode="?"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="A" unicode="A"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5
|
||||
q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="B" unicode="B"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="C" unicode="C"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58z" />
|
||||
<glyph glyph-name="D" unicode="D"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22
|
||||
l39 -33z" />
|
||||
<glyph glyph-name="E" unicode="E"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="F" unicode="F"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="G" unicode="G"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137
|
||||
q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="H" unicode="H"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="I" unicode="I"
|
||||
d="M861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="J" unicode="J"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51
|
||||
l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="K" unicode="K"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="L" unicode="L"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34
|
||||
q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="M" unicode="M"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57
|
||||
q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="N" unicode="N"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77
|
||||
l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="O" unicode="O"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="P" unicode="P"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5
|
||||
q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="Q" unicode="Q"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="R" unicode="R"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58z" />
|
||||
<glyph glyph-name="S" unicode="S"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="T" unicode="T"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="U" unicode="U"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34
|
||||
q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22
|
||||
l39 -33z" />
|
||||
<glyph glyph-name="V" unicode="V"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32
|
||||
q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="W" unicode="W"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34
|
||||
q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="X" unicode="X"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="Y" unicode="Y"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57
|
||||
q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32
|
||||
q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="Z" unicode="Z"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="bracketleft" unicode="["
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137
|
||||
q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="backslash" unicode="\"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41
|
||||
q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="bracketright" unicode="]"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5
|
||||
t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="asciicircum" unicode="^"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55
|
||||
l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="underscore" unicode="_"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41z" />
|
||||
<glyph glyph-name="grave" unicode="`"
|
||||
d="M162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="a" unicode="a"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5
|
||||
q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="b" unicode="b"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="c" unicode="c"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58z" />
|
||||
<glyph glyph-name="d" unicode="d"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22
|
||||
l39 -33z" />
|
||||
<glyph glyph-name="e" unicode="e"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="f" unicode="f"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="g" unicode="g"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137
|
||||
q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="h" unicode="h"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="i" unicode="i"
|
||||
d="M861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="j" unicode="j"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51
|
||||
l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="k" unicode="k"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="l" unicode="l"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34
|
||||
q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="m" unicode="m"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57
|
||||
q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="n" unicode="n"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77
|
||||
l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="o" unicode="o"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="p" unicode="p"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60
|
||||
l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5
|
||||
q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="q" unicode="q"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="r" unicode="r"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58z" />
|
||||
<glyph glyph-name="s" unicode="s"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="t" unicode="t"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369
|
||||
l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16z" />
|
||||
<glyph glyph-name="u" unicode="u"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34
|
||||
q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22
|
||||
l39 -33z" />
|
||||
<glyph glyph-name="v" unicode="v"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32
|
||||
q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="w" unicode="w"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57q-43 -33 -48 -34
|
||||
q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="x" unicode="x"
|
||||
d="M756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM162 1219q12 35 23 47l14 15l127 -137l-37 -327
|
||||
l-73 -57q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54
|
||||
q32 30 44 32q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="y" unicode="y"
|
||||
d="M749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22l65 51h390l46 -45q31 -31 31 -41zM162 1219q12 35 23 47l14 15l127 -137l-37 -327l-73 -57
|
||||
q-43 -33 -48 -34q-10 3 -22.5 22.5t-18 30.5t-8.5 16zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18zM812 150l-9 -22q-8 -16 -33 -41q-10 5 -56 51l-70 77l42 380l56 54q32 30 44 32
|
||||
q13 -3 38 -22l39 -33z" />
|
||||
<glyph glyph-name="z" unicode="z"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346zM749 62q-2 -3 -9 -10t-15.5 -14.5t-21.5 -9.5h-518q-19 0 -39 12l-26 18l129 133h377zM756 702q0 -8 -34 -39l-55 -49h-392l-56 49q-34 32 -34 39q5 6 12.5 13t26.5 22
|
||||
l65 51h390l46 -45q31 -31 31 -41zM107 641l30 25q20 15 28 15q7 -2 43 -38l59 -60l-36 -369l-131 -137q-11 7 -27 35q-14 29 -21 58zM861 768l-39 -32q-23 -18 -32 -20q-13 3 -46 36l-51 55l44 334q14 18 27 33.5t47.5 54t46.5 40.5q10 -1 27 -27q8 -10 15 -22t10 -18z" />
|
||||
<glyph glyph-name="asciitilde" unicode="~"
|
||||
d="M224 1304l18 15q8 6 15.5 8.5t19.5 2.5h489q16 -3 37 -13q23 -8 23 -22q0 -8 -45 -59l-74 -81h-346z" />
|
||||
<glyph glyph-name="nonbreakingspace" unicode=" "
|
||||
/>
|
||||
<glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="77"
|
||||
d="M14 1272q-16 17 -16 44q0 35 30 68q28 28 67 28q46 0 70 -29t24 -62q0 -48 -28.5 -97t-55 -80.5t-84.5 -53.5q15 21 30.5 50.5t21.5 48t6 35.5q0 10 -6 22l-30 8q-19 8 -29 18z" />
|
||||
<hkern u1="M" u2="7" k="339" />
|
||||
<hkern u1="W" u2="j" k="329" />
|
||||
<hkern u1="W" u2="J" k="329" />
|
||||
<hkern u1="m" u2="7" k="339" />
|
||||
<hkern u1="w" u2="j" k="331" />
|
||||
<hkern u1="w" u2="J" k="329" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 285 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 4.8 MiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 145 KiB |
After Width: | Height: | Size: 289 KiB |
After Width: | Height: | Size: 307 KiB |
After Width: | Height: | Size: 294 KiB |
After Width: | Height: | Size: 173 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 176 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 469 B |
After Width: | Height: | Size: 471 B |
After Width: | Height: | Size: 256 B |
After Width: | Height: | Size: 846 KiB |
After Width: | Height: | Size: 775 KiB |
After Width: | Height: | Size: 807 KiB |
After Width: | Height: | Size: 887 B |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 1020 B |
After Width: | Height: | Size: 601 B |
After Width: | Height: | Size: 612 B |
After Width: | Height: | Size: 608 B |
After Width: | Height: | Size: 318 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 323 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 630 B |
After Width: | Height: | Size: 632 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 711 B |
After Width: | Height: | Size: 545 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 509 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 630 B |
After Width: | Height: | Size: 856 B |
After Width: | Height: | Size: 965 B |
After Width: | Height: | Size: 916 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 604 B |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 605 B |
After Width: | Height: | Size: 683 B |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 924 B |
After Width: | Height: | Size: 806 B |
After Width: | Height: | Size: 982 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 1.3 KiB |